From 75f685369dd82be07a13d12828b6128669ee45b8 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Tue, 28 Feb 2023 22:59:50 -0800 Subject: [PATCH 001/725] OpenAPI spec 1.2 (Added chatgpt and asr APIs) --- .openapi-generator/VERSION | 2 +- api.ts | 625 +++++++++++++++++++++++++++++++++---- base.ts | 9 +- common.ts | 10 +- configuration.ts | 2 +- dist/api.d.ts | 453 ++++++++++++++++++++++++--- dist/api.js | 328 +++++++++++++++++-- dist/base.d.ts | 5 +- dist/base.js | 2 - dist/common.d.ts | 6 +- dist/common.js | 2 + index.ts | 2 +- 12 files changed, 1287 insertions(+), 159 deletions(-) diff --git a/.openapi-generator/VERSION b/.openapi-generator/VERSION index 0df17dd0f..c0be8a799 100644 --- a/.openapi-generator/VERSION +++ b/.openapi-generator/VERSION @@ -1 +1 @@ -6.2.1 \ No newline at end of file +6.4.0 \ No newline at end of file diff --git a/api.ts b/api.ts index 8e83852eb..8d32c7951 100644 --- a/api.ts +++ b/api.ts @@ -4,7 +4,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.1.0 + * The version of the OpenAPI document: 1.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -13,13 +13,77 @@ */ -import { Configuration } from './configuration'; -import globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios'; +import type { Configuration } from './configuration'; +import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios'; +import globalAxios from 'axios'; // Some imports not used depending on template conditions // @ts-ignore import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common'; +import type { RequestArgs } from './base'; // @ts-ignore -import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from './base'; +import { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError } from './base'; + +/** + * + * @export + * @interface ChatCompletionRequestMessage + */ +export interface ChatCompletionRequestMessage { + /** + * The role of the author of this message. + * @type {string} + * @memberof ChatCompletionRequestMessage + */ + 'role': ChatCompletionRequestMessageRoleEnum; + /** + * The contents of the message + * @type {string} + * @memberof ChatCompletionRequestMessage + */ + 'content': string; + /** + * The name of the user in a multi-user chat + * @type {string} + * @memberof ChatCompletionRequestMessage + */ + 'name'?: string; +} + +export const ChatCompletionRequestMessageRoleEnum = { + System: 'system', + User: 'user', + Assistant: 'assistant' +} as const; + +export type ChatCompletionRequestMessageRoleEnum = typeof ChatCompletionRequestMessageRoleEnum[keyof typeof ChatCompletionRequestMessageRoleEnum]; + +/** + * + * @export + * @interface ChatCompletionResponseMessage + */ +export interface ChatCompletionResponseMessage { + /** + * The role of the author of this message. + * @type {string} + * @memberof ChatCompletionResponseMessage + */ + 'role': ChatCompletionResponseMessageRoleEnum; + /** + * The contents of the message + * @type {string} + * @memberof ChatCompletionResponseMessage + */ + 'content': string; +} + +export const ChatCompletionResponseMessageRoleEnum = { + System: 'system', + User: 'user', + Assistant: 'assistant' +} as const; + +export type ChatCompletionResponseMessageRoleEnum = typeof ChatCompletionResponseMessageRoleEnum[keyof typeof ChatCompletionResponseMessageRoleEnum]; /** * @@ -76,7 +140,7 @@ export interface CreateAnswerRequest { */ 'max_rerank'?: number | null; /** - * What [sampling temperature](https://towardsdatascience.com/how-to-sample-from-language-models-682bceb97277) to use. Higher values mean the model will take more risks and value 0 (argmax sampling) works better for scenarios with a well-defined answer. + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. * @type {number} * @memberof CreateAnswerRequest */ @@ -130,7 +194,7 @@ export interface CreateAnswerRequest { */ 'expand'?: Array | null; /** - * A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @type {string} * @memberof CreateAnswerRequest */ @@ -205,6 +269,154 @@ export interface CreateAnswerResponseSelectedDocumentsInner { */ 'text'?: string; } +/** + * + * @export + * @interface CreateChatCompletionRequest + */ +export interface CreateChatCompletionRequest { + /** + * ID of the model to use. Currently, only `gpt-3.5-turbo` and `gpt-3.5-turbo-0301` are supported. + * @type {string} + * @memberof CreateChatCompletionRequest + */ + 'model': string; + /** + * The messages to generate chat completions for, in the [chat format](/docs/guides/chat/introduction). + * @type {Array} + * @memberof CreateChatCompletionRequest + */ + 'messages': Array; + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both. + * @type {number} + * @memberof CreateChatCompletionRequest + */ + 'temperature'?: number | null; + /** + * An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. We generally recommend altering this or `temperature` but not both. + * @type {number} + * @memberof CreateChatCompletionRequest + */ + 'top_p'?: number | null; + /** + * How many chat completion choices to generate for each input message. + * @type {number} + * @memberof CreateChatCompletionRequest + */ + 'n'?: number | null; + /** + * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. + * @type {boolean} + * @memberof CreateChatCompletionRequest + */ + 'stream'?: boolean | null; + /** + * + * @type {CreateChatCompletionRequestStop} + * @memberof CreateChatCompletionRequest + */ + 'stop'?: CreateChatCompletionRequestStop; + /** + * Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model\'s likelihood to talk about new topics. [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) + * @type {number} + * @memberof CreateChatCompletionRequest + */ + 'presence_penalty'?: number | null; + /** + * Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model\'s likelihood to repeat the same line verbatim. [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) + * @type {number} + * @memberof CreateChatCompletionRequest + */ + 'frequency_penalty'?: number | null; + /** + * Modify the likelihood of specified tokens appearing in the completion. Accepts a json object that maps tokens (specified by their token ID in the tokenizer) to an associated bias value from -100 to 100. Mathematically, the bias is added to the logits generated by the model prior to sampling. The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection; values like -100 or 100 should result in a ban or exclusive selection of the relevant token. + * @type {object} + * @memberof CreateChatCompletionRequest + */ + 'logit_bias'?: object | null; + /** + * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + * @type {string} + * @memberof CreateChatCompletionRequest + */ + 'user'?: string; +} +/** + * @type CreateChatCompletionRequestStop + * Up to 4 sequences where the API will stop generating further tokens. + * @export + */ +export type CreateChatCompletionRequestStop = Array | string; + +/** + * + * @export + * @interface CreateChatCompletionResponse + */ +export interface CreateChatCompletionResponse { + /** + * + * @type {string} + * @memberof CreateChatCompletionResponse + */ + 'id': string; + /** + * + * @type {string} + * @memberof CreateChatCompletionResponse + */ + 'object': string; + /** + * + * @type {number} + * @memberof CreateChatCompletionResponse + */ + 'created': number; + /** + * + * @type {string} + * @memberof CreateChatCompletionResponse + */ + 'model': string; + /** + * + * @type {Array} + * @memberof CreateChatCompletionResponse + */ + 'choices': Array; + /** + * + * @type {CreateCompletionResponseUsage} + * @memberof CreateChatCompletionResponse + */ + 'usage'?: CreateCompletionResponseUsage; +} +/** + * + * @export + * @interface CreateChatCompletionResponseChoicesInner + */ +export interface CreateChatCompletionResponseChoicesInner { + /** + * + * @type {number} + * @memberof CreateChatCompletionResponseChoicesInner + */ + 'index'?: number; + /** + * + * @type {ChatCompletionResponseMessage} + * @memberof CreateChatCompletionResponseChoicesInner + */ + 'message'?: ChatCompletionResponseMessage; + /** + * + * @type {string} + * @memberof CreateChatCompletionResponseChoicesInner + */ + 'finish_reason'?: string; +} /** * * @export @@ -248,7 +460,7 @@ export interface CreateClassificationRequest { */ 'search_model'?: string | null; /** - * What sampling `temperature` to use. Higher values mean the model will take more risks. Try 0.9 for more creative applications, and 0 (argmax sampling) for ones with a well-defined answer. + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. * @type {number} * @memberof CreateClassificationRequest */ @@ -290,7 +502,7 @@ export interface CreateClassificationRequest { */ 'expand'?: Array | null; /** - * A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @type {string} * @memberof CreateClassificationRequest */ @@ -395,7 +607,7 @@ export interface CreateCompletionRequest { */ 'max_tokens'?: number | null; /** - * What [sampling temperature](https://towardsdatascience.com/how-to-sample-from-language-models-682bceb97277) to use. Higher values means the model will take more risks. Try 0.9 for more creative applications, and 0 (argmax sampling) for ones with a well-defined answer. We generally recommend altering this or `top_p` but not both. + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both. * @type {number} * @memberof CreateCompletionRequest */ @@ -461,7 +673,7 @@ export interface CreateCompletionRequest { */ 'logit_bias'?: object | null; /** - * A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @type {string} * @memberof CreateCompletionRequest */ @@ -618,7 +830,7 @@ export interface CreateCompletionResponseUsage { */ export interface CreateEditRequest { /** - * ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. + * ID of the model to use. You can use the `text-davinci-edit-001` or `code-davinci-edit-001` model with this endpoint. * @type {string} * @memberof CreateEditRequest */ @@ -642,7 +854,7 @@ export interface CreateEditRequest { */ 'n'?: number | null; /** - * What [sampling temperature](https://towardsdatascience.com/how-to-sample-from-language-models-682bceb97277) to use. Higher values means the model will take more risks. Try 0.9 for more creative applications, and 0 (argmax sampling) for ones with a well-defined answer. We generally recommend altering this or `top_p` but not both. + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both. * @type {number} * @memberof CreateEditRequest */ @@ -660,12 +872,6 @@ export interface CreateEditRequest { * @interface CreateEditResponse */ export interface CreateEditResponse { - /** - * - * @type {string} - * @memberof CreateEditResponse - */ - 'id': string; /** * * @type {string} @@ -678,12 +884,6 @@ export interface CreateEditResponse { * @memberof CreateEditResponse */ 'created': number; - /** - * - * @type {string} - * @memberof CreateEditResponse - */ - 'model': string; /** * * @type {Array} @@ -716,7 +916,7 @@ export interface CreateEmbeddingRequest { */ 'input': CreateEmbeddingRequestInput; /** - * A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @type {string} * @memberof CreateEmbeddingRequest */ @@ -724,7 +924,7 @@ export interface CreateEmbeddingRequest { } /** * @type CreateEmbeddingRequestInput - * Input text to get embeddings for, encoded as a string or array of tokens. To get embeddings for multiple inputs in a single request, pass an array of strings or array of token arrays. Each input must not exceed 2048 tokens in length. Unless you are embedding code, we suggest replacing newlines (`\\n`) in your input with a single space, as we have observed inferior results when newlines are present. + * Input text to get embeddings for, encoded as a string or array of tokens. To get embeddings for multiple inputs in a single request, pass an array of strings or array of token arrays. Each input must not exceed 8192 tokens in length. * @export */ export type CreateEmbeddingRequestInput = Array | Array | Array | string; @@ -823,7 +1023,7 @@ export interface CreateFineTuneRequest { */ 'validation_file'?: string | null; /** - * The name of the base model to fine-tune. You can select one of \"ada\", \"babbage\", \"curie\", \"davinci\", or a fine-tuned model created after 2022-04-21. To learn more about these models, see the [Models](https://beta.openai.com/docs/models) documentation. + * The name of the base model to fine-tune. You can select one of \"ada\", \"babbage\", \"curie\", \"davinci\", or a fine-tuned model created after 2022-04-21. To learn more about these models, see the [Models](https://platform.openai.com/docs/models) documentation. * @type {string} * @memberof CreateFineTuneRequest */ @@ -914,7 +1114,7 @@ export interface CreateImageRequest { */ 'response_format'?: CreateImageRequestResponseFormatEnum; /** - * A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @type {string} * @memberof CreateImageRequest */ @@ -1146,7 +1346,7 @@ export interface CreateSearchRequest { */ 'return_metadata'?: boolean | null; /** - * A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @type {string} * @memberof CreateSearchRequest */ @@ -1202,6 +1402,32 @@ export interface CreateSearchResponseDataInner { */ 'score'?: number; } +/** + * + * @export + * @interface CreateTranscriptionResponse + */ +export interface CreateTranscriptionResponse { + /** + * + * @type {string} + * @memberof CreateTranscriptionResponse + */ + 'text': string; +} +/** + * + * @export + * @interface CreateTranslationResponse + */ +export interface CreateTranslationResponse { + /** + * + * @type {string} + * @memberof CreateTranslationResponse + */ + 'text': string; +} /** * * @export @@ -1696,6 +1922,42 @@ export const OpenAIApiAxiosParamCreator = function (configuration?: Configuratio options: localVarRequestOptions, }; }, + /** + * + * @summary Creates a completion for the chat message + * @param {CreateChatCompletionRequest} createChatCompletionRequest + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createChatCompletion: async (createChatCompletionRequest: CreateChatCompletionRequest, options: AxiosRequestConfig = {}): Promise => { + // verify required parameter 'createChatCompletionRequest' is not null or undefined + assertParamExists('createChatCompletion', 'createChatCompletionRequest', createChatCompletionRequest) + const localVarPath = `/chat/completions`; + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + + + localVarHeaderParameter['Content-Type'] = 'application/json'; + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + localVarRequestOptions.data = serializeDataIfNeeded(createChatCompletionRequest, localVarRequestOptions, configuration) + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, /** * * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. @@ -1771,7 +2033,7 @@ export const OpenAIApiAxiosParamCreator = function (configuration?: Configuratio }, /** * - * @summary Creates a new edit for the provided input, instruction, and parameters + * @summary Creates a new edit for the provided input, instruction, and parameters. * @param {CreateEditRequest} createEditRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -1964,21 +2226,19 @@ export const OpenAIApiAxiosParamCreator = function (configuration?: Configuratio /** * * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. - * @param {File} mask An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. + * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. + * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} */ - createImageEdit: async (image: File, mask: File, prompt: string, n?: number, size?: string, responseFormat?: string, user?: string, options: AxiosRequestConfig = {}): Promise => { + createImageEdit: async (image: File, prompt: string, mask?: File, n?: number, size?: string, responseFormat?: string, user?: string, options: AxiosRequestConfig = {}): Promise => { // verify required parameter 'image' is not null or undefined assertParamExists('createImageEdit', 'image', image) - // verify required parameter 'mask' is not null or undefined - assertParamExists('createImageEdit', 'mask', mask) // verify required parameter 'prompt' is not null or undefined assertParamExists('createImageEdit', 'prompt', prompt) const localVarPath = `/images/edits`; @@ -2043,7 +2303,7 @@ export const OpenAIApiAxiosParamCreator = function (configuration?: Configuratio * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} */ @@ -2174,6 +2434,132 @@ export const OpenAIApiAxiosParamCreator = function (configuration?: Configuratio options: localVarRequestOptions, }; }, + /** + * + * @summary Transcribes audio into the input language. + * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createTranscription: async (file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options: AxiosRequestConfig = {}): Promise => { + // verify required parameter 'file' is not null or undefined + assertParamExists('createTranscription', 'file', file) + // verify required parameter 'model' is not null or undefined + assertParamExists('createTranscription', 'model', model) + const localVarPath = `/audio/transcriptions`; + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)(); + + + if (file !== undefined) { + localVarFormParams.append('file', file as any); + } + + if (model !== undefined) { + localVarFormParams.append('model', model as any); + } + + if (prompt !== undefined) { + localVarFormParams.append('prompt', prompt as any); + } + + if (responseFormat !== undefined) { + localVarFormParams.append('response_format', responseFormat as any); + } + + if (temperature !== undefined) { + localVarFormParams.append('temperature', temperature as any); + } + + + localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...localVarFormParams.getHeaders(), ...headersFromBaseOptions, ...options.headers}; + localVarRequestOptions.data = localVarFormParams; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * + * @summary Translates audio into into English. + * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createTranslation: async (file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options: AxiosRequestConfig = {}): Promise => { + // verify required parameter 'file' is not null or undefined + assertParamExists('createTranslation', 'file', file) + // verify required parameter 'model' is not null or undefined + assertParamExists('createTranslation', 'model', model) + const localVarPath = `/audio/translations`; + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)(); + + + if (file !== undefined) { + localVarFormParams.append('file', file as any); + } + + if (model !== undefined) { + localVarFormParams.append('model', model as any); + } + + if (prompt !== undefined) { + localVarFormParams.append('prompt', prompt as any); + } + + if (responseFormat !== undefined) { + localVarFormParams.append('response_format', responseFormat as any); + } + + if (temperature !== undefined) { + localVarFormParams.append('temperature', temperature as any); + } + + + localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...localVarFormParams.getHeaders(), ...headersFromBaseOptions, ...options.headers}; + localVarRequestOptions.data = localVarFormParams; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, /** * * @summary Delete a file. @@ -2606,6 +2992,17 @@ export const OpenAIApiFp = function(configuration?: Configuration) { const localVarAxiosArgs = await localVarAxiosParamCreator.createAnswer(createAnswerRequest, options); return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); }, + /** + * + * @summary Creates a completion for the chat message + * @param {CreateChatCompletionRequest} createChatCompletionRequest + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async createChatCompletion(createChatCompletionRequest: CreateChatCompletionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.createChatCompletion(createChatCompletionRequest, options); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, /** * * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. @@ -2631,7 +3028,7 @@ export const OpenAIApiFp = function(configuration?: Configuration) { }, /** * - * @summary Creates a new edit for the provided input, instruction, and parameters + * @summary Creates a new edit for the provided input, instruction, and parameters. * @param {CreateEditRequest} createEditRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -2688,18 +3085,18 @@ export const OpenAIApiFp = function(configuration?: Configuration) { /** * * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. - * @param {File} mask An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. + * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. + * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async createImageEdit(image: File, mask: File, prompt: string, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createImageEdit(image, mask, prompt, n, size, responseFormat, user, options); + async createImageEdit(image: File, prompt: string, mask?: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.createImageEdit(image, prompt, mask, n, size, responseFormat, user, options); return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); }, /** @@ -2709,7 +3106,7 @@ export const OpenAIApiFp = function(configuration?: Configuration) { * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} */ @@ -2741,6 +3138,36 @@ export const OpenAIApiFp = function(configuration?: Configuration) { const localVarAxiosArgs = await localVarAxiosParamCreator.createSearch(engineId, createSearchRequest, options); return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); }, + /** + * + * @summary Transcribes audio into the input language. + * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.createTranscription(file, model, prompt, responseFormat, temperature, options); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, + /** + * + * @summary Translates audio into into English. + * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async createTranslation(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.createTranslation(file, model, prompt, responseFormat, temperature, options); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, /** * * @summary Delete a file. @@ -2903,6 +3330,16 @@ export const OpenAIApiFactory = function (configuration?: Configuration, basePat createAnswer(createAnswerRequest: CreateAnswerRequest, options?: any): AxiosPromise { return localVarFp.createAnswer(createAnswerRequest, options).then((request) => request(axios, basePath)); }, + /** + * + * @summary Creates a completion for the chat message + * @param {CreateChatCompletionRequest} createChatCompletionRequest + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createChatCompletion(createChatCompletionRequest: CreateChatCompletionRequest, options?: any): AxiosPromise { + return localVarFp.createChatCompletion(createChatCompletionRequest, options).then((request) => request(axios, basePath)); + }, /** * * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. @@ -2926,7 +3363,7 @@ export const OpenAIApiFactory = function (configuration?: Configuration, basePat }, /** * - * @summary Creates a new edit for the provided input, instruction, and parameters + * @summary Creates a new edit for the provided input, instruction, and parameters. * @param {CreateEditRequest} createEditRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -2978,18 +3415,18 @@ export const OpenAIApiFactory = function (configuration?: Configuration, basePat /** * * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. - * @param {File} mask An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. + * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. + * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} */ - createImageEdit(image: File, mask: File, prompt: string, n?: number, size?: string, responseFormat?: string, user?: string, options?: any): AxiosPromise { - return localVarFp.createImageEdit(image, mask, prompt, n, size, responseFormat, user, options).then((request) => request(axios, basePath)); + createImageEdit(image: File, prompt: string, mask?: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: any): AxiosPromise { + return localVarFp.createImageEdit(image, prompt, mask, n, size, responseFormat, user, options).then((request) => request(axios, basePath)); }, /** * @@ -2998,7 +3435,7 @@ export const OpenAIApiFactory = function (configuration?: Configuration, basePat * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} */ @@ -3027,6 +3464,34 @@ export const OpenAIApiFactory = function (configuration?: Configuration, basePat createSearch(engineId: string, createSearchRequest: CreateSearchRequest, options?: any): AxiosPromise { return localVarFp.createSearch(engineId, createSearchRequest, options).then((request) => request(axios, basePath)); }, + /** + * + * @summary Transcribes audio into the input language. + * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: any): AxiosPromise { + return localVarFp.createTranscription(file, model, prompt, responseFormat, temperature, options).then((request) => request(axios, basePath)); + }, + /** + * + * @summary Translates audio into into English. + * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createTranslation(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: any): AxiosPromise { + return localVarFp.createTranslation(file, model, prompt, responseFormat, temperature, options).then((request) => request(axios, basePath)); + }, /** * * @summary Delete a file. @@ -3181,6 +3646,18 @@ export class OpenAIApi extends BaseAPI { return OpenAIApiFp(this.configuration).createAnswer(createAnswerRequest, options).then((request) => request(this.axios, this.basePath)); } + /** + * + * @summary Creates a completion for the chat message + * @param {CreateChatCompletionRequest} createChatCompletionRequest + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof OpenAIApi + */ + public createChatCompletion(createChatCompletionRequest: CreateChatCompletionRequest, options?: AxiosRequestConfig) { + return OpenAIApiFp(this.configuration).createChatCompletion(createChatCompletionRequest, options).then((request) => request(this.axios, this.basePath)); + } + /** * * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. @@ -3208,7 +3685,7 @@ export class OpenAIApi extends BaseAPI { /** * - * @summary Creates a new edit for the provided input, instruction, and parameters + * @summary Creates a new edit for the provided input, instruction, and parameters. * @param {CreateEditRequest} createEditRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -3270,19 +3747,19 @@ export class OpenAIApi extends BaseAPI { /** * * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. - * @param {File} mask An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. + * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. + * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof OpenAIApi */ - public createImageEdit(image: File, mask: File, prompt: string, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).createImageEdit(image, mask, prompt, n, size, responseFormat, user, options).then((request) => request(this.axios, this.basePath)); + public createImageEdit(image: File, prompt: string, mask?: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig) { + return OpenAIApiFp(this.configuration).createImageEdit(image, prompt, mask, n, size, responseFormat, user, options).then((request) => request(this.axios, this.basePath)); } /** @@ -3292,7 +3769,7 @@ export class OpenAIApi extends BaseAPI { * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof OpenAIApi @@ -3327,6 +3804,38 @@ export class OpenAIApi extends BaseAPI { return OpenAIApiFp(this.configuration).createSearch(engineId, createSearchRequest, options).then((request) => request(this.axios, this.basePath)); } + /** + * + * @summary Transcribes audio into the input language. + * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof OpenAIApi + */ + public createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig) { + return OpenAIApiFp(this.configuration).createTranscription(file, model, prompt, responseFormat, temperature, options).then((request) => request(this.axios, this.basePath)); + } + + /** + * + * @summary Translates audio into into English. + * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof OpenAIApi + */ + public createTranslation(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig) { + return OpenAIApiFp(this.configuration).createTranslation(file, model, prompt, responseFormat, temperature, options).then((request) => request(this.axios, this.basePath)); + } + /** * * @summary Delete a file. diff --git a/base.ts b/base.ts index 231329cf5..ad518a152 100644 --- a/base.ts +++ b/base.ts @@ -4,7 +4,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.1.0 + * The version of the OpenAPI document: 1.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -13,10 +13,11 @@ */ -import { Configuration } from "./configuration"; +import type { Configuration } from './configuration'; // Some imports not used depending on template conditions // @ts-ignore -import globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios'; +import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios'; +import globalAxios from 'axios'; export const BASE_PATH = "https://api.openai.com/v1".replace(/\/+$/, ""); @@ -64,8 +65,8 @@ export class BaseAPI { * @extends {Error} */ export class RequiredError extends Error { - name: "RequiredError" = "RequiredError"; constructor(public field: string, msg?: string) { super(msg); + this.name = "RequiredError" } } diff --git a/common.ts b/common.ts index 3bc7c137d..5e2425166 100644 --- a/common.ts +++ b/common.ts @@ -4,7 +4,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.1.0 + * The version of the OpenAPI document: 1.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -13,9 +13,10 @@ */ -import { Configuration } from "./configuration"; -import { RequiredError, RequestArgs } from "./base"; -import { AxiosInstance, AxiosResponse } from 'axios'; +import type { Configuration } from "./configuration"; +import type { RequestArgs } from "./base"; +import type { AxiosInstance, AxiosResponse } from 'axios'; +import { RequiredError } from "./base"; /** * @@ -84,6 +85,7 @@ export const setOAuthToObject = async function (object: any, name: string, scope } function setFlattenedQueryParams(urlSearchParams: URLSearchParams, parameter: any, key: string = ""): void { + if (parameter == null) return; if (typeof parameter === "object") { if (Array.isArray(parameter)) { (parameter as any[]).forEach(item => setFlattenedQueryParams(urlSearchParams, item, key)); diff --git a/configuration.ts b/configuration.ts index b89924749..2a51762e0 100644 --- a/configuration.ts +++ b/configuration.ts @@ -4,7 +4,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.1.0 + * The version of the OpenAPI document: 1.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/dist/api.d.ts b/dist/api.d.ts index 0e589cfa6..869b8359c 100644 --- a/dist/api.d.ts +++ b/dist/api.d.ts @@ -9,9 +9,66 @@ * https://openapi-generator.tech * Do not edit the class manually. */ -import { Configuration } from './configuration'; -import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios'; -import { RequestArgs, BaseAPI } from './base'; +import type { Configuration } from './configuration'; +import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios'; +import type { RequestArgs } from './base'; +import { BaseAPI } from './base'; +/** + * + * @export + * @interface ChatCompletionRequestMessage + */ +export interface ChatCompletionRequestMessage { + /** + * The role of the author of this message. + * @type {string} + * @memberof ChatCompletionRequestMessage + */ + 'role': ChatCompletionRequestMessageRoleEnum; + /** + * The contents of the message + * @type {string} + * @memberof ChatCompletionRequestMessage + */ + 'content': string; + /** + * The name of the user in a multi-user chat + * @type {string} + * @memberof ChatCompletionRequestMessage + */ + 'name'?: string; +} +export declare const ChatCompletionRequestMessageRoleEnum: { + readonly System: "system"; + readonly User: "user"; + readonly Assistant: "assistant"; +}; +export declare type ChatCompletionRequestMessageRoleEnum = typeof ChatCompletionRequestMessageRoleEnum[keyof typeof ChatCompletionRequestMessageRoleEnum]; +/** + * + * @export + * @interface ChatCompletionResponseMessage + */ +export interface ChatCompletionResponseMessage { + /** + * The role of the author of this message. + * @type {string} + * @memberof ChatCompletionResponseMessage + */ + 'role': ChatCompletionResponseMessageRoleEnum; + /** + * The contents of the message + * @type {string} + * @memberof ChatCompletionResponseMessage + */ + 'content': string; +} +export declare const ChatCompletionResponseMessageRoleEnum: { + readonly System: "system"; + readonly User: "user"; + readonly Assistant: "assistant"; +}; +export declare type ChatCompletionResponseMessageRoleEnum = typeof ChatCompletionResponseMessageRoleEnum[keyof typeof ChatCompletionResponseMessageRoleEnum]; /** * * @export @@ -67,7 +124,7 @@ export interface CreateAnswerRequest { */ 'max_rerank'?: number | null; /** - * What [sampling temperature](https://towardsdatascience.com/how-to-sample-from-language-models-682bceb97277) to use. Higher values mean the model will take more risks and value 0 (argmax sampling) works better for scenarios with a well-defined answer. + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. * @type {number} * @memberof CreateAnswerRequest */ @@ -121,7 +178,7 @@ export interface CreateAnswerRequest { */ 'expand'?: Array | null; /** - * A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @type {string} * @memberof CreateAnswerRequest */ @@ -195,6 +252,153 @@ export interface CreateAnswerResponseSelectedDocumentsInner { */ 'text'?: string; } +/** + * + * @export + * @interface CreateChatCompletionRequest + */ +export interface CreateChatCompletionRequest { + /** + * ID of the model to use. Currently, only `gpt-3.5-turbo` and `gpt-3.5-turbo-0301` are supported. + * @type {string} + * @memberof CreateChatCompletionRequest + */ + 'model': string; + /** + * The messages to generate chat completions for, in the [chat format](/docs/guides/chat/introduction). + * @type {Array} + * @memberof CreateChatCompletionRequest + */ + 'messages': Array; + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both. + * @type {number} + * @memberof CreateChatCompletionRequest + */ + 'temperature'?: number | null; + /** + * An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. We generally recommend altering this or `temperature` but not both. + * @type {number} + * @memberof CreateChatCompletionRequest + */ + 'top_p'?: number | null; + /** + * How many chat completion choices to generate for each input message. + * @type {number} + * @memberof CreateChatCompletionRequest + */ + 'n'?: number | null; + /** + * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. + * @type {boolean} + * @memberof CreateChatCompletionRequest + */ + 'stream'?: boolean | null; + /** + * + * @type {CreateChatCompletionRequestStop} + * @memberof CreateChatCompletionRequest + */ + 'stop'?: CreateChatCompletionRequestStop; + /** + * Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model\'s likelihood to talk about new topics. [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) + * @type {number} + * @memberof CreateChatCompletionRequest + */ + 'presence_penalty'?: number | null; + /** + * Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model\'s likelihood to repeat the same line verbatim. [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) + * @type {number} + * @memberof CreateChatCompletionRequest + */ + 'frequency_penalty'?: number | null; + /** + * Modify the likelihood of specified tokens appearing in the completion. Accepts a json object that maps tokens (specified by their token ID in the tokenizer) to an associated bias value from -100 to 100. Mathematically, the bias is added to the logits generated by the model prior to sampling. The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection; values like -100 or 100 should result in a ban or exclusive selection of the relevant token. + * @type {object} + * @memberof CreateChatCompletionRequest + */ + 'logit_bias'?: object | null; + /** + * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + * @type {string} + * @memberof CreateChatCompletionRequest + */ + 'user'?: string; +} +/** + * @type CreateChatCompletionRequestStop + * Up to 4 sequences where the API will stop generating further tokens. + * @export + */ +export declare type CreateChatCompletionRequestStop = Array | string; +/** + * + * @export + * @interface CreateChatCompletionResponse + */ +export interface CreateChatCompletionResponse { + /** + * + * @type {string} + * @memberof CreateChatCompletionResponse + */ + 'id': string; + /** + * + * @type {string} + * @memberof CreateChatCompletionResponse + */ + 'object': string; + /** + * + * @type {number} + * @memberof CreateChatCompletionResponse + */ + 'created': number; + /** + * + * @type {string} + * @memberof CreateChatCompletionResponse + */ + 'model': string; + /** + * + * @type {Array} + * @memberof CreateChatCompletionResponse + */ + 'choices': Array; + /** + * + * @type {CreateCompletionResponseUsage} + * @memberof CreateChatCompletionResponse + */ + 'usage'?: CreateCompletionResponseUsage; +} +/** + * + * @export + * @interface CreateChatCompletionResponseChoicesInner + */ +export interface CreateChatCompletionResponseChoicesInner { + /** + * + * @type {number} + * @memberof CreateChatCompletionResponseChoicesInner + */ + 'index'?: number; + /** + * + * @type {ChatCompletionResponseMessage} + * @memberof CreateChatCompletionResponseChoicesInner + */ + 'message'?: ChatCompletionResponseMessage; + /** + * + * @type {string} + * @memberof CreateChatCompletionResponseChoicesInner + */ + 'finish_reason'?: string; +} /** * * @export @@ -238,7 +442,7 @@ export interface CreateClassificationRequest { */ 'search_model'?: string | null; /** - * What sampling `temperature` to use. Higher values mean the model will take more risks. Try 0.9 for more creative applications, and 0 (argmax sampling) for ones with a well-defined answer. + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. * @type {number} * @memberof CreateClassificationRequest */ @@ -280,7 +484,7 @@ export interface CreateClassificationRequest { */ 'expand'?: Array | null; /** - * A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @type {string} * @memberof CreateClassificationRequest */ @@ -385,7 +589,7 @@ export interface CreateCompletionRequest { */ 'max_tokens'?: number | null; /** - * What [sampling temperature](https://towardsdatascience.com/how-to-sample-from-language-models-682bceb97277) to use. Higher values means the model will take more risks. Try 0.9 for more creative applications, and 0 (argmax sampling) for ones with a well-defined answer. We generally recommend altering this or `top_p` but not both. + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both. * @type {number} * @memberof CreateCompletionRequest */ @@ -451,7 +655,7 @@ export interface CreateCompletionRequest { */ 'logit_bias'?: object | null; /** - * A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @type {string} * @memberof CreateCompletionRequest */ @@ -606,7 +810,7 @@ export interface CreateCompletionResponseUsage { */ export interface CreateEditRequest { /** - * ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. + * ID of the model to use. You can use the `text-davinci-edit-001` or `code-davinci-edit-001` model with this endpoint. * @type {string} * @memberof CreateEditRequest */ @@ -630,7 +834,7 @@ export interface CreateEditRequest { */ 'n'?: number | null; /** - * What [sampling temperature](https://towardsdatascience.com/how-to-sample-from-language-models-682bceb97277) to use. Higher values means the model will take more risks. Try 0.9 for more creative applications, and 0 (argmax sampling) for ones with a well-defined answer. We generally recommend altering this or `top_p` but not both. + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both. * @type {number} * @memberof CreateEditRequest */ @@ -648,12 +852,6 @@ export interface CreateEditRequest { * @interface CreateEditResponse */ export interface CreateEditResponse { - /** - * - * @type {string} - * @memberof CreateEditResponse - */ - 'id': string; /** * * @type {string} @@ -666,12 +864,6 @@ export interface CreateEditResponse { * @memberof CreateEditResponse */ 'created': number; - /** - * - * @type {string} - * @memberof CreateEditResponse - */ - 'model': string; /** * * @type {Array} @@ -704,7 +896,7 @@ export interface CreateEmbeddingRequest { */ 'input': CreateEmbeddingRequestInput; /** - * A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @type {string} * @memberof CreateEmbeddingRequest */ @@ -712,7 +904,7 @@ export interface CreateEmbeddingRequest { } /** * @type CreateEmbeddingRequestInput - * Input text to get embeddings for, encoded as a string or array of tokens. To get embeddings for multiple inputs in a single request, pass an array of strings or array of token arrays. Each input must not exceed 2048 tokens in length. Unless you are embedding code, we suggest replacing newlines (`\\n`) in your input with a single space, as we have observed inferior results when newlines are present. + * Input text to get embeddings for, encoded as a string or array of tokens. To get embeddings for multiple inputs in a single request, pass an array of strings or array of token arrays. Each input must not exceed 8192 tokens in length. * @export */ export declare type CreateEmbeddingRequestInput = Array | Array | Array | string; @@ -810,7 +1002,7 @@ export interface CreateFineTuneRequest { */ 'validation_file'?: string | null; /** - * The name of the base model to fine-tune. You can select one of \"ada\", \"babbage\", \"curie\", \"davinci\", or a fine-tuned model created after 2022-04-21. To learn more about these models, see the [Models](https://beta.openai.com/docs/models) documentation. + * The name of the base model to fine-tune. You can select one of \"ada\", \"babbage\", \"curie\", \"davinci\", or a fine-tuned model created after 2022-04-21. To learn more about these models, see the [Models](https://platform.openai.com/docs/models) documentation. * @type {string} * @memberof CreateFineTuneRequest */ @@ -901,7 +1093,7 @@ export interface CreateImageRequest { */ 'response_format'?: CreateImageRequestResponseFormatEnum; /** - * A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @type {string} * @memberof CreateImageRequest */ @@ -1128,7 +1320,7 @@ export interface CreateSearchRequest { */ 'return_metadata'?: boolean | null; /** - * A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @type {string} * @memberof CreateSearchRequest */ @@ -1184,6 +1376,32 @@ export interface CreateSearchResponseDataInner { */ 'score'?: number; } +/** + * + * @export + * @interface CreateTranscriptionResponse + */ +export interface CreateTranscriptionResponse { + /** + * + * @type {string} + * @memberof CreateTranscriptionResponse + */ + 'text': string; +} +/** + * + * @export + * @interface CreateTranslationResponse + */ +export interface CreateTranslationResponse { + /** + * + * @type {string} + * @memberof CreateTranslationResponse + */ + 'text': string; +} /** * * @export @@ -1622,6 +1840,14 @@ export declare const OpenAIApiAxiosParamCreator: (configuration?: Configuration) * @throws {RequiredError} */ createAnswer: (createAnswerRequest: CreateAnswerRequest, options?: AxiosRequestConfig) => Promise; + /** + * + * @summary Creates a completion for the chat message + * @param {CreateChatCompletionRequest} createChatCompletionRequest + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createChatCompletion: (createChatCompletionRequest: CreateChatCompletionRequest, options?: AxiosRequestConfig) => Promise; /** * * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. @@ -1641,7 +1867,7 @@ export declare const OpenAIApiAxiosParamCreator: (configuration?: Configuration) createCompletion: (createCompletionRequest: CreateCompletionRequest, options?: AxiosRequestConfig) => Promise; /** * - * @summary Creates a new edit for the provided input, instruction, and parameters + * @summary Creates a new edit for the provided input, instruction, and parameters. * @param {CreateEditRequest} createEditRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -1683,17 +1909,17 @@ export declare const OpenAIApiAxiosParamCreator: (configuration?: Configuration) /** * * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. - * @param {File} mask An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. + * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. + * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} */ - createImageEdit: (image: File, mask: File, prompt: string, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig) => Promise; + createImageEdit: (image: File, prompt: string, mask?: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig) => Promise; /** * * @summary Creates a variation of a given image. @@ -1701,7 +1927,7 @@ export declare const OpenAIApiAxiosParamCreator: (configuration?: Configuration) * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} */ @@ -1724,6 +1950,30 @@ export declare const OpenAIApiAxiosParamCreator: (configuration?: Configuration) * @throws {RequiredError} */ createSearch: (engineId: string, createSearchRequest: CreateSearchRequest, options?: AxiosRequestConfig) => Promise; + /** + * + * @summary Transcribes audio into the input language. + * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createTranscription: (file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig) => Promise; + /** + * + * @summary Translates audio into into English. + * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createTranslation: (file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig) => Promise; /** * * @summary Delete a file. @@ -1842,6 +2092,14 @@ export declare const OpenAIApiFp: (configuration?: Configuration) => { * @throws {RequiredError} */ createAnswer(createAnswerRequest: CreateAnswerRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; + /** + * + * @summary Creates a completion for the chat message + * @param {CreateChatCompletionRequest} createChatCompletionRequest + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createChatCompletion(createChatCompletionRequest: CreateChatCompletionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. @@ -1861,7 +2119,7 @@ export declare const OpenAIApiFp: (configuration?: Configuration) => { createCompletion(createCompletionRequest: CreateCompletionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * - * @summary Creates a new edit for the provided input, instruction, and parameters + * @summary Creates a new edit for the provided input, instruction, and parameters. * @param {CreateEditRequest} createEditRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -1903,17 +2161,17 @@ export declare const OpenAIApiFp: (configuration?: Configuration) => { /** * * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. - * @param {File} mask An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. + * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. + * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} */ - createImageEdit(image: File, mask: File, prompt: string, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; + createImageEdit(image: File, prompt: string, mask?: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary Creates a variation of a given image. @@ -1921,7 +2179,7 @@ export declare const OpenAIApiFp: (configuration?: Configuration) => { * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} */ @@ -1944,6 +2202,30 @@ export declare const OpenAIApiFp: (configuration?: Configuration) => { * @throws {RequiredError} */ createSearch(engineId: string, createSearchRequest: CreateSearchRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; + /** + * + * @summary Transcribes audio into the input language. + * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; + /** + * + * @summary Translates audio into into English. + * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createTranslation(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary Delete a file. @@ -2062,6 +2344,14 @@ export declare const OpenAIApiFactory: (configuration?: Configuration, basePath? * @throws {RequiredError} */ createAnswer(createAnswerRequest: CreateAnswerRequest, options?: any): AxiosPromise; + /** + * + * @summary Creates a completion for the chat message + * @param {CreateChatCompletionRequest} createChatCompletionRequest + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createChatCompletion(createChatCompletionRequest: CreateChatCompletionRequest, options?: any): AxiosPromise; /** * * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. @@ -2081,7 +2371,7 @@ export declare const OpenAIApiFactory: (configuration?: Configuration, basePath? createCompletion(createCompletionRequest: CreateCompletionRequest, options?: any): AxiosPromise; /** * - * @summary Creates a new edit for the provided input, instruction, and parameters + * @summary Creates a new edit for the provided input, instruction, and parameters. * @param {CreateEditRequest} createEditRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -2123,17 +2413,17 @@ export declare const OpenAIApiFactory: (configuration?: Configuration, basePath? /** * * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. - * @param {File} mask An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. + * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. + * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} */ - createImageEdit(image: File, mask: File, prompt: string, n?: number, size?: string, responseFormat?: string, user?: string, options?: any): AxiosPromise; + createImageEdit(image: File, prompt: string, mask?: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: any): AxiosPromise; /** * * @summary Creates a variation of a given image. @@ -2141,7 +2431,7 @@ export declare const OpenAIApiFactory: (configuration?: Configuration, basePath? * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} */ @@ -2164,6 +2454,30 @@ export declare const OpenAIApiFactory: (configuration?: Configuration, basePath? * @throws {RequiredError} */ createSearch(engineId: string, createSearchRequest: CreateSearchRequest, options?: any): AxiosPromise; + /** + * + * @summary Transcribes audio into the input language. + * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: any): AxiosPromise; + /** + * + * @summary Translates audio into into English. + * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createTranslation(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: any): AxiosPromise; /** * * @summary Delete a file. @@ -2286,6 +2600,15 @@ export declare class OpenAIApi extends BaseAPI { * @memberof OpenAIApi */ createAnswer(createAnswerRequest: CreateAnswerRequest, options?: AxiosRequestConfig): Promise>; + /** + * + * @summary Creates a completion for the chat message + * @param {CreateChatCompletionRequest} createChatCompletionRequest + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof OpenAIApi + */ + createChatCompletion(createChatCompletionRequest: CreateChatCompletionRequest, options?: AxiosRequestConfig): Promise>; /** * * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. @@ -2307,7 +2630,7 @@ export declare class OpenAIApi extends BaseAPI { createCompletion(createCompletionRequest: CreateCompletionRequest, options?: AxiosRequestConfig): Promise>; /** * - * @summary Creates a new edit for the provided input, instruction, and parameters + * @summary Creates a new edit for the provided input, instruction, and parameters. * @param {CreateEditRequest} createEditRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -2354,18 +2677,18 @@ export declare class OpenAIApi extends BaseAPI { /** * * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. - * @param {File} mask An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. + * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. + * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof OpenAIApi */ - createImageEdit(image: File, mask: File, prompt: string, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig): Promise>; + createImageEdit(image: File, prompt: string, mask?: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig): Promise>; /** * * @summary Creates a variation of a given image. @@ -2373,7 +2696,7 @@ export declare class OpenAIApi extends BaseAPI { * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof OpenAIApi @@ -2399,6 +2722,32 @@ export declare class OpenAIApi extends BaseAPI { * @memberof OpenAIApi */ createSearch(engineId: string, createSearchRequest: CreateSearchRequest, options?: AxiosRequestConfig): Promise>; + /** + * + * @summary Transcribes audio into the input language. + * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof OpenAIApi + */ + createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig): Promise>; + /** + * + * @summary Translates audio into into English. + * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof OpenAIApi + */ + createTranslation(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig): Promise>; /** * * @summary Delete a file. diff --git a/dist/api.js b/dist/api.js index e678085ce..1a8fdef26 100644 --- a/dist/api.js +++ b/dist/api.js @@ -22,13 +22,23 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }); }; Object.defineProperty(exports, "__esModule", { value: true }); -exports.OpenAIApi = exports.OpenAIApiFactory = exports.OpenAIApiFp = exports.OpenAIApiAxiosParamCreator = exports.CreateImageRequestResponseFormatEnum = exports.CreateImageRequestSizeEnum = void 0; +exports.OpenAIApi = exports.OpenAIApiFactory = exports.OpenAIApiFp = exports.OpenAIApiAxiosParamCreator = exports.CreateImageRequestResponseFormatEnum = exports.CreateImageRequestSizeEnum = exports.ChatCompletionResponseMessageRoleEnum = exports.ChatCompletionRequestMessageRoleEnum = void 0; const axios_1 = require("axios"); // Some imports not used depending on template conditions // @ts-ignore const common_1 = require("./common"); // @ts-ignore const base_1 = require("./base"); +exports.ChatCompletionRequestMessageRoleEnum = { + System: 'system', + User: 'user', + Assistant: 'assistant' +}; +exports.ChatCompletionResponseMessageRoleEnum = { + System: 'system', + User: 'user', + Assistant: 'assistant' +}; exports.CreateImageRequestSizeEnum = { _256x256: '256x256', _512x512: '512x512', @@ -104,6 +114,36 @@ exports.OpenAIApiAxiosParamCreator = function (configuration) { options: localVarRequestOptions, }; }), + /** + * + * @summary Creates a completion for the chat message + * @param {CreateChatCompletionRequest} createChatCompletionRequest + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createChatCompletion: (createChatCompletionRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { + // verify required parameter 'createChatCompletionRequest' is not null or undefined + common_1.assertParamExists('createChatCompletion', 'createChatCompletionRequest', createChatCompletionRequest); + const localVarPath = `/chat/completions`; + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); + const localVarHeaderParameter = {}; + const localVarQueryParameter = {}; + localVarHeaderParameter['Content-Type'] = 'application/json'; + common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); + localVarRequestOptions.data = common_1.serializeDataIfNeeded(createChatCompletionRequest, localVarRequestOptions, configuration); + return { + url: common_1.toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }), /** * * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. @@ -167,7 +207,7 @@ exports.OpenAIApiAxiosParamCreator = function (configuration) { }), /** * - * @summary Creates a new edit for the provided input, instruction, and parameters + * @summary Creates a new edit for the provided input, instruction, and parameters. * @param {CreateEditRequest} createEditRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -328,21 +368,19 @@ exports.OpenAIApiAxiosParamCreator = function (configuration) { /** * * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. - * @param {File} mask An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. + * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. + * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} */ - createImageEdit: (image, mask, prompt, n, size, responseFormat, user, options = {}) => __awaiter(this, void 0, void 0, function* () { + createImageEdit: (image, prompt, mask, n, size, responseFormat, user, options = {}) => __awaiter(this, void 0, void 0, function* () { // verify required parameter 'image' is not null or undefined common_1.assertParamExists('createImageEdit', 'image', image); - // verify required parameter 'mask' is not null or undefined - common_1.assertParamExists('createImageEdit', 'mask', mask); // verify required parameter 'prompt' is not null or undefined common_1.assertParamExists('createImageEdit', 'prompt', prompt); const localVarPath = `/images/edits`; @@ -394,7 +432,7 @@ exports.OpenAIApiAxiosParamCreator = function (configuration) { * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} */ @@ -502,6 +540,110 @@ exports.OpenAIApiAxiosParamCreator = function (configuration) { options: localVarRequestOptions, }; }), + /** + * + * @summary Transcribes audio into the input language. + * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createTranscription: (file, model, prompt, responseFormat, temperature, options = {}) => __awaiter(this, void 0, void 0, function* () { + // verify required parameter 'file' is not null or undefined + common_1.assertParamExists('createTranscription', 'file', file); + // verify required parameter 'model' is not null or undefined + common_1.assertParamExists('createTranscription', 'model', model); + const localVarPath = `/audio/transcriptions`; + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); + const localVarHeaderParameter = {}; + const localVarQueryParameter = {}; + const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)(); + if (file !== undefined) { + localVarFormParams.append('file', file); + } + if (model !== undefined) { + localVarFormParams.append('model', model); + } + if (prompt !== undefined) { + localVarFormParams.append('prompt', prompt); + } + if (responseFormat !== undefined) { + localVarFormParams.append('response_format', responseFormat); + } + if (temperature !== undefined) { + localVarFormParams.append('temperature', temperature); + } + localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; + common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), localVarFormParams.getHeaders()), headersFromBaseOptions), options.headers); + localVarRequestOptions.data = localVarFormParams; + return { + url: common_1.toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }), + /** + * + * @summary Translates audio into into English. + * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createTranslation: (file, model, prompt, responseFormat, temperature, options = {}) => __awaiter(this, void 0, void 0, function* () { + // verify required parameter 'file' is not null or undefined + common_1.assertParamExists('createTranslation', 'file', file); + // verify required parameter 'model' is not null or undefined + common_1.assertParamExists('createTranslation', 'model', model); + const localVarPath = `/audio/translations`; + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); + const localVarHeaderParameter = {}; + const localVarQueryParameter = {}; + const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)(); + if (file !== undefined) { + localVarFormParams.append('file', file); + } + if (model !== undefined) { + localVarFormParams.append('model', model); + } + if (prompt !== undefined) { + localVarFormParams.append('prompt', prompt); + } + if (responseFormat !== undefined) { + localVarFormParams.append('response_format', responseFormat); + } + if (temperature !== undefined) { + localVarFormParams.append('temperature', temperature); + } + localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; + common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), localVarFormParams.getHeaders()), headersFromBaseOptions), options.headers); + localVarRequestOptions.data = localVarFormParams; + return { + url: common_1.toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }), /** * * @summary Delete a file. @@ -876,6 +1018,19 @@ exports.OpenAIApiFp = function (configuration) { return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); }); }, + /** + * + * @summary Creates a completion for the chat message + * @param {CreateChatCompletionRequest} createChatCompletionRequest + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createChatCompletion(createChatCompletionRequest, options) { + return __awaiter(this, void 0, void 0, function* () { + const localVarAxiosArgs = yield localVarAxiosParamCreator.createChatCompletion(createChatCompletionRequest, options); + return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); + }); + }, /** * * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. @@ -905,7 +1060,7 @@ exports.OpenAIApiFp = function (configuration) { }, /** * - * @summary Creates a new edit for the provided input, instruction, and parameters + * @summary Creates a new edit for the provided input, instruction, and parameters. * @param {CreateEditRequest} createEditRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -972,19 +1127,19 @@ exports.OpenAIApiFp = function (configuration) { /** * * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. - * @param {File} mask An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. + * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. + * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} */ - createImageEdit(image, mask, prompt, n, size, responseFormat, user, options) { + createImageEdit(image, prompt, mask, n, size, responseFormat, user, options) { return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createImageEdit(image, mask, prompt, n, size, responseFormat, user, options); + const localVarAxiosArgs = yield localVarAxiosParamCreator.createImageEdit(image, prompt, mask, n, size, responseFormat, user, options); return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); }); }, @@ -995,7 +1150,7 @@ exports.OpenAIApiFp = function (configuration) { * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} */ @@ -1033,6 +1188,40 @@ exports.OpenAIApiFp = function (configuration) { return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); }); }, + /** + * + * @summary Transcribes audio into the input language. + * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createTranscription(file, model, prompt, responseFormat, temperature, options) { + return __awaiter(this, void 0, void 0, function* () { + const localVarAxiosArgs = yield localVarAxiosParamCreator.createTranscription(file, model, prompt, responseFormat, temperature, options); + return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); + }); + }, + /** + * + * @summary Translates audio into into English. + * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createTranslation(file, model, prompt, responseFormat, temperature, options) { + return __awaiter(this, void 0, void 0, function* () { + const localVarAxiosArgs = yield localVarAxiosParamCreator.createTranslation(file, model, prompt, responseFormat, temperature, options); + return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); + }); + }, /** * * @summary Delete a file. @@ -1218,6 +1407,16 @@ exports.OpenAIApiFactory = function (configuration, basePath, axios) { createAnswer(createAnswerRequest, options) { return localVarFp.createAnswer(createAnswerRequest, options).then((request) => request(axios, basePath)); }, + /** + * + * @summary Creates a completion for the chat message + * @param {CreateChatCompletionRequest} createChatCompletionRequest + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createChatCompletion(createChatCompletionRequest, options) { + return localVarFp.createChatCompletion(createChatCompletionRequest, options).then((request) => request(axios, basePath)); + }, /** * * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. @@ -1241,7 +1440,7 @@ exports.OpenAIApiFactory = function (configuration, basePath, axios) { }, /** * - * @summary Creates a new edit for the provided input, instruction, and parameters + * @summary Creates a new edit for the provided input, instruction, and parameters. * @param {CreateEditRequest} createEditRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -1293,18 +1492,18 @@ exports.OpenAIApiFactory = function (configuration, basePath, axios) { /** * * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. - * @param {File} mask An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. + * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. + * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} */ - createImageEdit(image, mask, prompt, n, size, responseFormat, user, options) { - return localVarFp.createImageEdit(image, mask, prompt, n, size, responseFormat, user, options).then((request) => request(axios, basePath)); + createImageEdit(image, prompt, mask, n, size, responseFormat, user, options) { + return localVarFp.createImageEdit(image, prompt, mask, n, size, responseFormat, user, options).then((request) => request(axios, basePath)); }, /** * @@ -1313,7 +1512,7 @@ exports.OpenAIApiFactory = function (configuration, basePath, axios) { * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} */ @@ -1342,6 +1541,34 @@ exports.OpenAIApiFactory = function (configuration, basePath, axios) { createSearch(engineId, createSearchRequest, options) { return localVarFp.createSearch(engineId, createSearchRequest, options).then((request) => request(axios, basePath)); }, + /** + * + * @summary Transcribes audio into the input language. + * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createTranscription(file, model, prompt, responseFormat, temperature, options) { + return localVarFp.createTranscription(file, model, prompt, responseFormat, temperature, options).then((request) => request(axios, basePath)); + }, + /** + * + * @summary Translates audio into into English. + * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + createTranslation(file, model, prompt, responseFormat, temperature, options) { + return localVarFp.createTranslation(file, model, prompt, responseFormat, temperature, options).then((request) => request(axios, basePath)); + }, /** * * @summary Delete a file. @@ -1493,6 +1720,17 @@ class OpenAIApi extends base_1.BaseAPI { createAnswer(createAnswerRequest, options) { return exports.OpenAIApiFp(this.configuration).createAnswer(createAnswerRequest, options).then((request) => request(this.axios, this.basePath)); } + /** + * + * @summary Creates a completion for the chat message + * @param {CreateChatCompletionRequest} createChatCompletionRequest + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof OpenAIApi + */ + createChatCompletion(createChatCompletionRequest, options) { + return exports.OpenAIApiFp(this.configuration).createChatCompletion(createChatCompletionRequest, options).then((request) => request(this.axios, this.basePath)); + } /** * * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. @@ -1518,7 +1756,7 @@ class OpenAIApi extends base_1.BaseAPI { } /** * - * @summary Creates a new edit for the provided input, instruction, and parameters + * @summary Creates a new edit for the provided input, instruction, and parameters. * @param {CreateEditRequest} createEditRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -1575,19 +1813,19 @@ class OpenAIApi extends base_1.BaseAPI { /** * * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. - * @param {File} mask An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. + * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. + * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof OpenAIApi */ - createImageEdit(image, mask, prompt, n, size, responseFormat, user, options) { - return exports.OpenAIApiFp(this.configuration).createImageEdit(image, mask, prompt, n, size, responseFormat, user, options).then((request) => request(this.axios, this.basePath)); + createImageEdit(image, prompt, mask, n, size, responseFormat, user, options) { + return exports.OpenAIApiFp(this.configuration).createImageEdit(image, prompt, mask, n, size, responseFormat, user, options).then((request) => request(this.axios, this.basePath)); } /** * @@ -1596,7 +1834,7 @@ class OpenAIApi extends base_1.BaseAPI { * @param {number} [n] The number of images to generate. Must be between 1 and 10. * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which will help OpenAI to monitor and detect abuse. [Learn more](/docs/usage-policies/end-user-ids). + * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof OpenAIApi @@ -1628,6 +1866,36 @@ class OpenAIApi extends base_1.BaseAPI { createSearch(engineId, createSearchRequest, options) { return exports.OpenAIApiFp(this.configuration).createSearch(engineId, createSearchRequest, options).then((request) => request(this.axios, this.basePath)); } + /** + * + * @summary Transcribes audio into the input language. + * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof OpenAIApi + */ + createTranscription(file, model, prompt, responseFormat, temperature, options) { + return exports.OpenAIApiFp(this.configuration).createTranscription(file, model, prompt, responseFormat, temperature, options).then((request) => request(this.axios, this.basePath)); + } + /** + * + * @summary Translates audio into into English. + * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {string} model ID of the model to use. Only `whisper-1` is currently available. + * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. + * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. + * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof OpenAIApi + */ + createTranslation(file, model, prompt, responseFormat, temperature, options) { + return exports.OpenAIApiFp(this.configuration).createTranslation(file, model, prompt, responseFormat, temperature, options).then((request) => request(this.axios, this.basePath)); + } /** * * @summary Delete a file. diff --git a/dist/base.d.ts b/dist/base.d.ts index 944352353..4788799f0 100644 --- a/dist/base.d.ts +++ b/dist/base.d.ts @@ -9,8 +9,8 @@ * https://openapi-generator.tech * Do not edit the class manually. */ -import { Configuration } from "./configuration"; -import { AxiosInstance, AxiosRequestConfig } from 'axios'; +import type { Configuration } from './configuration'; +import type { AxiosInstance, AxiosRequestConfig } from 'axios'; export declare const BASE_PATH: string; /** * @@ -50,6 +50,5 @@ export declare class BaseAPI { */ export declare class RequiredError extends Error { field: string; - name: "RequiredError"; constructor(field: string, msg?: string); } diff --git a/dist/base.js b/dist/base.js index a87b90b28..3c094e47f 100644 --- a/dist/base.js +++ b/dist/base.js @@ -14,8 +14,6 @@ */ Object.defineProperty(exports, "__esModule", { value: true }); exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = exports.BASE_PATH = void 0; -// Some imports not used depending on template conditions -// @ts-ignore const axios_1 = require("axios"); exports.BASE_PATH = "https://api.openai.com/v1".replace(/\/+$/, ""); /** diff --git a/dist/common.d.ts b/dist/common.d.ts index 520dd4105..e4425a720 100644 --- a/dist/common.d.ts +++ b/dist/common.d.ts @@ -9,9 +9,9 @@ * https://openapi-generator.tech * Do not edit the class manually. */ -import { Configuration } from "./configuration"; -import { RequestArgs } from "./base"; -import { AxiosInstance, AxiosResponse } from 'axios'; +import type { Configuration } from "./configuration"; +import type { RequestArgs } from "./base"; +import type { AxiosInstance, AxiosResponse } from 'axios'; /** * * @export diff --git a/dist/common.js b/dist/common.js index 51c19753c..944bd2fe8 100644 --- a/dist/common.js +++ b/dist/common.js @@ -91,6 +91,8 @@ exports.setOAuthToObject = function (object, name, scopes, configuration) { }); }; function setFlattenedQueryParams(urlSearchParams, parameter, key = "") { + if (parameter == null) + return; if (typeof parameter === "object") { if (Array.isArray(parameter)) { parameter.forEach(item => setFlattenedQueryParams(urlSearchParams, item, key)); diff --git a/index.ts b/index.ts index 2c4c9da1c..186fb3e8e 100644 --- a/index.ts +++ b/index.ts @@ -4,7 +4,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.1.0 + * The version of the OpenAPI document: 1.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). From f9603476def5793d971bba1d8b433c331c891821 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Wed, 1 Mar 2023 10:09:35 -0800 Subject: [PATCH 002/725] 3.2.0 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index da120fda5..fdbaf66ae 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "openai", - "version": "3.1.0", + "version": "3.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "openai", - "version": "3.1.0", + "version": "3.2.0", "license": "MIT", "dependencies": { "axios": "^0.26.0", diff --git a/package.json b/package.json index 70c49f4e9..fea3efdcd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "3.1.0", + "version": "3.2.0", "description": "Node.js library for the OpenAI API", "repository": { "type": "git", From 7d6cc9709abe8bae16fa6b69349724977659a1c5 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Wed, 1 Mar 2023 14:01:49 -0800 Subject: [PATCH 003/725] add missing params --- api.ts | 28 +++++++++++++++++++++------- dist/api.d.ts | 20 +++++++++++++++----- dist/api.js | 23 +++++++++++++++-------- dist/base.d.ts | 2 +- dist/base.js | 2 +- dist/common.d.ts | 2 +- dist/common.js | 2 +- dist/configuration.d.ts | 2 +- dist/configuration.js | 2 +- dist/index.d.ts | 2 +- dist/index.js | 2 +- 11 files changed, 59 insertions(+), 28 deletions(-) diff --git a/api.ts b/api.ts index 8d32c7951..6dcf8db1d 100644 --- a/api.ts +++ b/api.ts @@ -317,6 +317,12 @@ export interface CreateChatCompletionRequest { * @memberof CreateChatCompletionRequest */ 'stop'?: CreateChatCompletionRequestStop; + /** + * The maximum number of tokens allowed for the generated answer. By default, the number of tokens the model can return will be (4096 - prompt tokens). + * @type {number} + * @memberof CreateChatCompletionRequest + */ + 'max_tokens'?: number; /** * Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model\'s likelihood to talk about new topics. [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) * @type {number} @@ -2442,10 +2448,11 @@ export const OpenAIApiAxiosParamCreator = function (configuration?: Configuratio * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - createTranscription: async (file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options: AxiosRequestConfig = {}): Promise => { + createTranscription: async (file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, language?: string, options: AxiosRequestConfig = {}): Promise => { // verify required parameter 'file' is not null or undefined assertParamExists('createTranscription', 'file', file) // verify required parameter 'model' is not null or undefined @@ -2484,6 +2491,10 @@ export const OpenAIApiAxiosParamCreator = function (configuration?: Configuratio localVarFormParams.append('temperature', temperature as any); } + if (language !== undefined) { + localVarFormParams.append('language', language as any); + } + localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; @@ -3146,11 +3157,12 @@ export const OpenAIApiFp = function(configuration?: Configuration) { * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createTranscription(file, model, prompt, responseFormat, temperature, options); + async createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, language?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.createTranscription(file, model, prompt, responseFormat, temperature, language, options); return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); }, /** @@ -3472,11 +3484,12 @@ export const OpenAIApiFactory = function (configuration?: Configuration, basePat * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: any): AxiosPromise { - return localVarFp.createTranscription(file, model, prompt, responseFormat, temperature, options).then((request) => request(axios, basePath)); + createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, language?: string, options?: any): AxiosPromise { + return localVarFp.createTranscription(file, model, prompt, responseFormat, temperature, language, options).then((request) => request(axios, basePath)); }, /** * @@ -3812,12 +3825,13 @@ export class OpenAIApi extends BaseAPI { * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof OpenAIApi */ - public createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).createTranscription(file, model, prompt, responseFormat, temperature, options).then((request) => request(this.axios, this.basePath)); + public createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, language?: string, options?: AxiosRequestConfig) { + return OpenAIApiFp(this.configuration).createTranscription(file, model, prompt, responseFormat, temperature, language, options).then((request) => request(this.axios, this.basePath)); } /** diff --git a/dist/api.d.ts b/dist/api.d.ts index 869b8359c..167eea44c 100644 --- a/dist/api.d.ts +++ b/dist/api.d.ts @@ -2,7 +2,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.1.0 + * The version of the OpenAPI document: 1.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -300,6 +300,12 @@ export interface CreateChatCompletionRequest { * @memberof CreateChatCompletionRequest */ 'stop'?: CreateChatCompletionRequestStop; + /** + * The maximum number of tokens allowed for the generated answer. By default, the number of tokens the model can return will be (4096 - prompt tokens). + * @type {number} + * @memberof CreateChatCompletionRequest + */ + 'max_tokens'?: number; /** * Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model\'s likelihood to talk about new topics. [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) * @type {number} @@ -1958,10 +1964,11 @@ export declare const OpenAIApiAxiosParamCreator: (configuration?: Configuration) * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - createTranscription: (file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig) => Promise; + createTranscription: (file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, language?: string, options?: AxiosRequestConfig) => Promise; /** * * @summary Translates audio into into English. @@ -2210,10 +2217,11 @@ export declare const OpenAIApiFp: (configuration?: Configuration) => { * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; + createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, language?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary Translates audio into into English. @@ -2462,10 +2470,11 @@ export declare const OpenAIApiFactory: (configuration?: Configuration, basePath? * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: any): AxiosPromise; + createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, language?: string, options?: any): AxiosPromise; /** * * @summary Translates audio into into English. @@ -2730,11 +2739,12 @@ export declare class OpenAIApi extends BaseAPI { * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof OpenAIApi */ - createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig): Promise>; + createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, language?: string, options?: AxiosRequestConfig): Promise>; /** * * @summary Translates audio into into English. diff --git a/dist/api.js b/dist/api.js index 1a8fdef26..b3a4f1758 100644 --- a/dist/api.js +++ b/dist/api.js @@ -5,7 +5,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.1.0 + * The version of the OpenAPI document: 1.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -548,10 +548,11 @@ exports.OpenAIApiAxiosParamCreator = function (configuration) { * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - createTranscription: (file, model, prompt, responseFormat, temperature, options = {}) => __awaiter(this, void 0, void 0, function* () { + createTranscription: (file, model, prompt, responseFormat, temperature, language, options = {}) => __awaiter(this, void 0, void 0, function* () { // verify required parameter 'file' is not null or undefined common_1.assertParamExists('createTranscription', 'file', file); // verify required parameter 'model' is not null or undefined @@ -582,6 +583,9 @@ exports.OpenAIApiAxiosParamCreator = function (configuration) { if (temperature !== undefined) { localVarFormParams.append('temperature', temperature); } + if (language !== undefined) { + localVarFormParams.append('language', language); + } localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; @@ -1196,12 +1200,13 @@ exports.OpenAIApiFp = function (configuration) { * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - createTranscription(file, model, prompt, responseFormat, temperature, options) { + createTranscription(file, model, prompt, responseFormat, temperature, language, options) { return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createTranscription(file, model, prompt, responseFormat, temperature, options); + const localVarAxiosArgs = yield localVarAxiosParamCreator.createTranscription(file, model, prompt, responseFormat, temperature, language, options); return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); }); }, @@ -1549,11 +1554,12 @@ exports.OpenAIApiFactory = function (configuration, basePath, axios) { * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - createTranscription(file, model, prompt, responseFormat, temperature, options) { - return localVarFp.createTranscription(file, model, prompt, responseFormat, temperature, options).then((request) => request(axios, basePath)); + createTranscription(file, model, prompt, responseFormat, temperature, language, options) { + return localVarFp.createTranscription(file, model, prompt, responseFormat, temperature, language, options).then((request) => request(axios, basePath)); }, /** * @@ -1874,12 +1880,13 @@ class OpenAIApi extends base_1.BaseAPI { * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. + * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof OpenAIApi */ - createTranscription(file, model, prompt, responseFormat, temperature, options) { - return exports.OpenAIApiFp(this.configuration).createTranscription(file, model, prompt, responseFormat, temperature, options).then((request) => request(this.axios, this.basePath)); + createTranscription(file, model, prompt, responseFormat, temperature, language, options) { + return exports.OpenAIApiFp(this.configuration).createTranscription(file, model, prompt, responseFormat, temperature, language, options).then((request) => request(this.axios, this.basePath)); } /** * diff --git a/dist/base.d.ts b/dist/base.d.ts index 4788799f0..0d7b20371 100644 --- a/dist/base.d.ts +++ b/dist/base.d.ts @@ -2,7 +2,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.1.0 + * The version of the OpenAPI document: 1.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/dist/base.js b/dist/base.js index 3c094e47f..5ce59c6a2 100644 --- a/dist/base.js +++ b/dist/base.js @@ -5,7 +5,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.1.0 + * The version of the OpenAPI document: 1.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/dist/common.d.ts b/dist/common.d.ts index e4425a720..29db8d713 100644 --- a/dist/common.d.ts +++ b/dist/common.d.ts @@ -2,7 +2,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.1.0 + * The version of the OpenAPI document: 1.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/dist/common.js b/dist/common.js index 944bd2fe8..03588cc4c 100644 --- a/dist/common.js +++ b/dist/common.js @@ -5,7 +5,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.1.0 + * The version of the OpenAPI document: 1.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/dist/configuration.d.ts b/dist/configuration.d.ts index f070ca8f9..cbe66166f 100644 --- a/dist/configuration.d.ts +++ b/dist/configuration.d.ts @@ -2,7 +2,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.1.0 + * The version of the OpenAPI document: 1.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/dist/configuration.js b/dist/configuration.js index 7ee24fa34..4a9f063f5 100644 --- a/dist/configuration.js +++ b/dist/configuration.js @@ -5,7 +5,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.1.0 + * The version of the OpenAPI document: 1.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/dist/index.d.ts b/dist/index.d.ts index e8fe57ea3..9e18678be 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -2,7 +2,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.1.0 + * The version of the OpenAPI document: 1.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/dist/index.js b/dist/index.js index 87443b1ba..4693b6f36 100644 --- a/dist/index.js +++ b/dist/index.js @@ -5,7 +5,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.1.0 + * The version of the OpenAPI document: 1.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). From 0363de20747e272a92e41da4a4c4293104aa9461 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Wed, 1 Mar 2023 14:02:03 -0800 Subject: [PATCH 004/725] 3.2.1 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index fdbaf66ae..7ad5e09ac 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "openai", - "version": "3.2.0", + "version": "3.2.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "openai", - "version": "3.2.0", + "version": "3.2.1", "license": "MIT", "dependencies": { "axios": "^0.26.0", diff --git a/package.json b/package.json index fea3efdcd..3109e3909 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "3.2.0", + "version": "3.2.1", "description": "Node.js library for the OpenAI API", "repository": { "type": "git", From 654393842431494984a8f79d139959f043baf266 Mon Sep 17 00:00:00 2001 From: Arni Fannar Date: Tue, 7 Mar 2023 20:03:47 +0000 Subject: [PATCH 005/725] Remove $ from npm install command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b00d5b425..e364f75bb 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ The OpenAI Node.js library provides convenient access to the OpenAI API from Nod ## Installation ```bash -$ npm install openai +npm install openai ``` ## Usage From 88a2f0b8e98c12bc5bc088042c412228829ddeef Mon Sep 17 00:00:00 2001 From: Mohit Yadav Date: Thu, 23 Mar 2023 14:04:20 +0530 Subject: [PATCH 006/725] docs: move beta.openai.com -> platform.openai.com --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b00d5b425..37bd22f61 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ The OpenAI Node.js library provides convenient access to the OpenAI API from Node.js applications. Most of the code in this library is generated from our [OpenAPI specification](https://github.com/openai/openai-openapi). -**Important note: this library is meant for server-side usage only, as using it in client-side browser code will expose your secret API key. [See here](https://beta.openai.com/docs/api-reference/authentication) for more details.** +**Important note: this library is meant for server-side usage only, as using it in client-side browser code will expose your secret API key. [See here](https://platform.openai.com/docs/api-reference/authentication) for more details.** ## Installation @@ -12,7 +12,7 @@ $ npm install openai ## Usage -The library needs to be configured with your account's secret key, which is available on the [website](https://beta.openai.com/account/api-keys). We recommend setting it as an environment variable. Here's an example of initializing the library with the API key loaded from an environment variable and creating a completion: +The library needs to be configured with your account's secret key, which is available on the [website](https://platform.openai.com/account/api-keys). We recommend setting it as an environment variable. Here's an example of initializing the library with the API key loaded from an environment variable and creating a completion: ```javascript const { Configuration, OpenAIApi } = require("openai"); @@ -29,13 +29,12 @@ const completion = await openai.createCompletion({ console.log(completion.data.choices[0].text); ``` -Check out the [full API documentation](https://beta.openai.com/docs/api-reference?lang=node.js) for examples of all the available functions. +Check out the [full API documentation](https://platform.openai.com/docs/api-reference?lang=node.js) for examples of all the available functions. ### Request options All of the available API request functions additionally contain an optional final parameter where you can pass custom [axios request options](https://axios-http.com/docs/req_config), for example: - ```javascript const completion = await openai.createCompletion( { From 28bd2a1cdf82b3e0e8e0ef6a31a2da847182c663 Mon Sep 17 00:00:00 2001 From: Logan Kilpatrick Date: Tue, 13 Jun 2023 08:16:37 -0500 Subject: [PATCH 007/725] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d4b7a5ee7..ede039a00 100644 --- a/README.md +++ b/README.md @@ -22,11 +22,11 @@ const configuration = new Configuration({ }); const openai = new OpenAIApi(configuration); -const completion = await openai.createCompletion({ - model: "text-davinci-003", - prompt: "Hello world", +const chat_completion = await openai.createChatCompletion({ + model: "gpt-3.5-turbo", + messages: [{role: "user", content: "Hello world"}], }); -console.log(completion.data.choices[0].text); +console.log(completion.data.choices[0].message); ``` Check out the [full API documentation](https://platform.openai.com/docs/api-reference?lang=node.js) for examples of all the available functions. From 452c7375b2b4fcbc685e8849adf6bc0d8e5021c9 Mon Sep 17 00:00:00 2001 From: Logan Kilpatrick Date: Tue, 13 Jun 2023 08:19:38 -0500 Subject: [PATCH 008/725] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d4b7a5ee7..a53992b8c 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ The OpenAI Node.js library provides convenient access to the OpenAI API from Node.js applications. Most of the code in this library is generated from our [OpenAPI specification](https://github.com/openai/openai-openapi). -**Important note: this library is meant for server-side usage only, as using it in client-side browser code will expose your secret API key. [See here](https://platform.openai.com/docs/api-reference/authentication) for more details.** +> ⚠️ **Important note: this library is meant for server-side usage only, as using it in client-side browser code will expose your secret API key. [See here](https://platform.openai.com/docs/api-reference/authentication) for more details.** ## Installation From 3a83abd767b9f87e548d2fd90b0091f05c0e6861 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Tue, 13 Jun 2023 08:36:07 -0700 Subject: [PATCH 009/725] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ede039a00..2f883da40 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ const configuration = new Configuration({ }); const openai = new OpenAIApi(configuration); -const chat_completion = await openai.createChatCompletion({ +const chatCompletion = await openai.createChatCompletion({ model: "gpt-3.5-turbo", messages: [{role: "user", content: "Hello world"}], }); From eea46324ecfd464744f74e4f4be7f5e857a88b20 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Tue, 13 Jun 2023 08:36:12 -0700 Subject: [PATCH 010/725] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f883da40..1726c3ea1 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ const chatCompletion = await openai.createChatCompletion({ model: "gpt-3.5-turbo", messages: [{role: "user", content: "Hello world"}], }); -console.log(completion.data.choices[0].message); +console.log(chatCompletion.data.choices[0].message); ``` Check out the [full API documentation](https://platform.openai.com/docs/api-reference?lang=node.js) for examples of all the available functions. From b8390a6cb5b1d1abdc6d41b4ec11d248f4611ce0 Mon Sep 17 00:00:00 2001 From: Logan Kilpatrick Date: Tue, 13 Jun 2023 10:39:04 -0500 Subject: [PATCH 011/725] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d645f940a..765d73647 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ npm install openai ## Usage -The library needs to be configured with your account's secret key, which is available on the [website](https://platform.openai.com/account/api-keys). We recommend setting it as an environment variable. Here's an example of initializing the library with the API key loaded from an environment variable and creating a completion: +The library needs to be configured with your account's secret key, which is available in your [OpenAI account page](https://platform.openai.com/account/api-keys). We recommend setting it as an environment variable. Here's an example of initializing the library with the API key loaded from an environment variable and creating a completion: ```javascript const { Configuration, OpenAIApi } = require("openai"); From b7cbca5852b4460e283c2cbed611d641e95c9e81 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Tue, 13 Jun 2023 10:10:36 -0700 Subject: [PATCH 012/725] generate spec 1.3.0 --- .openapi-generator/VERSION | 2 +- api.ts | 204 ++++++++++++++++++++++++++++++------- base.ts | 2 +- common.ts | 2 +- configuration.ts | 2 +- dist/api.d.ts | 201 ++++++++++++++++++++++++++++++------ dist/api.js | 40 ++++---- dist/base.d.ts | 2 +- dist/base.js | 2 +- dist/common.d.ts | 2 +- dist/common.js | 2 +- dist/configuration.d.ts | 2 +- dist/configuration.js | 2 +- dist/index.d.ts | 2 +- dist/index.js | 2 +- index.ts | 2 +- 16 files changed, 371 insertions(+), 100 deletions(-) diff --git a/.openapi-generator/VERSION b/.openapi-generator/VERSION index c0be8a799..cd802a1ec 100644 --- a/.openapi-generator/VERSION +++ b/.openapi-generator/VERSION @@ -1 +1 @@ -6.4.0 \ No newline at end of file +6.6.0 \ No newline at end of file diff --git a/api.ts b/api.ts index 6dcf8db1d..10505c0d4 100644 --- a/api.ts +++ b/api.ts @@ -4,7 +4,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.2.0 + * The version of the OpenAPI document: 1.3.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -23,6 +23,31 @@ import type { RequestArgs } from './base'; // @ts-ignore import { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError } from './base'; +/** + * + * @export + * @interface ChatCompletionFunctions + */ +export interface ChatCompletionFunctions { + /** + * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. + * @type {string} + * @memberof ChatCompletionFunctions + */ + 'name': string; + /** + * The description of what the function does. + * @type {string} + * @memberof ChatCompletionFunctions + */ + 'description'?: string; + /** + * The parameters the functions accepts, described as a JSON Schema object. See the [guide](/docs/guides/gpt/function-calling) for examples, and the [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for documentation about the format. + * @type {{ [key: string]: any; }} + * @memberof ChatCompletionFunctions + */ + 'parameters'?: { [key: string]: any; }; +} /** * * @export @@ -30,33 +55,59 @@ import { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError } from './base'; */ export interface ChatCompletionRequestMessage { /** - * The role of the author of this message. + * The role of the messages author. One of `system`, `user`, `assistant`, or `function`. * @type {string} * @memberof ChatCompletionRequestMessage */ 'role': ChatCompletionRequestMessageRoleEnum; /** - * The contents of the message + * The contents of the message. `content` is required for all messages except assistant messages with function calls. * @type {string} * @memberof ChatCompletionRequestMessage */ - 'content': string; + 'content'?: string; /** - * The name of the user in a multi-user chat + * The name of the author of this message. `name` is required if role is `function`, and it should be the name of the function whose response is in the `content`. May contain a-z, A-Z, 0-9, and underscores, with a maximum length of 64 characters. * @type {string} * @memberof ChatCompletionRequestMessage */ 'name'?: string; + /** + * + * @type {ChatCompletionRequestMessageFunctionCall} + * @memberof ChatCompletionRequestMessage + */ + 'function_call'?: ChatCompletionRequestMessageFunctionCall; } export const ChatCompletionRequestMessageRoleEnum = { System: 'system', User: 'user', - Assistant: 'assistant' + Assistant: 'assistant', + Function: 'function' } as const; export type ChatCompletionRequestMessageRoleEnum = typeof ChatCompletionRequestMessageRoleEnum[keyof typeof ChatCompletionRequestMessageRoleEnum]; +/** + * The name and arguments of a function that should be called, as generated by the model. + * @export + * @interface ChatCompletionRequestMessageFunctionCall + */ +export interface ChatCompletionRequestMessageFunctionCall { + /** + * The name of the function to call. + * @type {string} + * @memberof ChatCompletionRequestMessageFunctionCall + */ + 'name'?: string; + /** + * The arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function. + * @type {string} + * @memberof ChatCompletionRequestMessageFunctionCall + */ + 'arguments'?: string; +} /** * * @export @@ -70,17 +121,24 @@ export interface ChatCompletionResponseMessage { */ 'role': ChatCompletionResponseMessageRoleEnum; /** - * The contents of the message + * The contents of the message. * @type {string} * @memberof ChatCompletionResponseMessage */ - 'content': string; + 'content'?: string; + /** + * + * @type {ChatCompletionRequestMessageFunctionCall} + * @memberof ChatCompletionResponseMessage + */ + 'function_call'?: ChatCompletionRequestMessageFunctionCall; } export const ChatCompletionResponseMessageRoleEnum = { System: 'system', User: 'user', - Assistant: 'assistant' + Assistant: 'assistant', + Function: 'function' } as const; export type ChatCompletionResponseMessageRoleEnum = typeof ChatCompletionResponseMessageRoleEnum[keyof typeof ChatCompletionResponseMessageRoleEnum]; @@ -146,7 +204,7 @@ export interface CreateAnswerRequest { */ 'temperature'?: number | null; /** - * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. If you need more than this, please contact us through our [Help center](https://help.openai.com) and describe your use case. When `logprobs` is set, `completion` will be automatically added into `expand` to get the logprobs. + * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. When `logprobs` is set, `completion` will be automatically added into `expand` to get the logprobs. * @type {number} * @memberof CreateAnswerRequest */ @@ -276,17 +334,29 @@ export interface CreateAnswerResponseSelectedDocumentsInner { */ export interface CreateChatCompletionRequest { /** - * ID of the model to use. Currently, only `gpt-3.5-turbo` and `gpt-3.5-turbo-0301` are supported. + * ID of the model to use. See the [model endpoint compatibility](/docs/models/model-endpoint-compatibility) table for details on which models work with the Chat API. * @type {string} * @memberof CreateChatCompletionRequest */ 'model': string; /** - * The messages to generate chat completions for, in the [chat format](/docs/guides/chat/introduction). + * A list of messages comprising the conversation so far. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_format_inputs_to_ChatGPT_models.ipynb). * @type {Array} * @memberof CreateChatCompletionRequest */ 'messages': Array; + /** + * A list of functions the model may generate JSON inputs for. + * @type {Array} + * @memberof CreateChatCompletionRequest + */ + 'functions'?: Array; + /** + * + * @type {CreateChatCompletionRequestFunctionCall} + * @memberof CreateChatCompletionRequest + */ + 'function_call'?: CreateChatCompletionRequestFunctionCall; /** * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both. * @type {number} @@ -306,7 +376,7 @@ export interface CreateChatCompletionRequest { */ 'n'?: number | null; /** - * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. + * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). * @type {boolean} * @memberof CreateChatCompletionRequest */ @@ -318,7 +388,7 @@ export interface CreateChatCompletionRequest { */ 'stop'?: CreateChatCompletionRequestStop; /** - * The maximum number of tokens allowed for the generated answer. By default, the number of tokens the model can return will be (4096 - prompt tokens). + * The maximum number of [tokens](/tokenizer) to generate in the chat completion. The total length of input tokens and generated tokens is limited by the model\'s context length. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) for counting tokens. * @type {number} * @memberof CreateChatCompletionRequest */ @@ -348,6 +418,26 @@ export interface CreateChatCompletionRequest { */ 'user'?: string; } +/** + * @type CreateChatCompletionRequestFunctionCall + * Controls how the model responds to function calls. \"none\" means the model does not call a function, and responds to the end-user. \"auto\" means the model can pick between an end-user or calling a function. Specifying a particular function via `{\"name\":\\ \"my_function\"}` forces the model to call that function. \"none\" is the default when no functions are present. \"auto\" is the default if functions are present. + * @export + */ +export type CreateChatCompletionRequestFunctionCall = CreateChatCompletionRequestFunctionCallOneOf | string; + +/** + * + * @export + * @interface CreateChatCompletionRequestFunctionCallOneOf + */ +export interface CreateChatCompletionRequestFunctionCallOneOf { + /** + * The name of the function to call. + * @type {string} + * @memberof CreateChatCompletionRequestFunctionCallOneOf + */ + 'name': string; +} /** * @type CreateChatCompletionRequestStop * Up to 4 sequences where the API will stop generating further tokens. @@ -472,7 +562,7 @@ export interface CreateClassificationRequest { */ 'temperature'?: number | null; /** - * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. If you need more than this, please contact us through our [Help center](https://help.openai.com) and describe your use case. When `logprobs` is set, `completion` will be automatically added into `expand` to get the logprobs. + * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. When `logprobs` is set, `completion` will be automatically added into `expand` to get the logprobs. * @type {number} * @memberof CreateClassificationRequest */ @@ -607,7 +697,7 @@ export interface CreateCompletionRequest { */ 'suffix'?: string | null; /** - * The maximum number of [tokens](/tokenizer) to generate in the completion. The token count of your prompt plus `max_tokens` cannot exceed the model\'s context length. Most models have a context length of 2048 tokens (except for the newest models, which support 4096). + * The maximum number of [tokens](/tokenizer) to generate in the completion. The token count of your prompt plus `max_tokens` cannot exceed the model\'s context length. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) for counting tokens. * @type {number} * @memberof CreateCompletionRequest */ @@ -631,13 +721,13 @@ export interface CreateCompletionRequest { */ 'n'?: number | null; /** - * Whether to stream back partial progress. If set, tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. + * Whether to stream back partial progress. If set, tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). * @type {boolean} * @memberof CreateCompletionRequest */ 'stream'?: boolean | null; /** - * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. If you need more than this, please contact us through our [Help center](https://help.openai.com) and describe your use case. + * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. * @type {number} * @memberof CreateCompletionRequest */ @@ -930,7 +1020,7 @@ export interface CreateEmbeddingRequest { } /** * @type CreateEmbeddingRequestInput - * Input text to get embeddings for, encoded as a string or array of tokens. To get embeddings for multiple inputs in a single request, pass an array of strings or array of token arrays. Each input must not exceed 8192 tokens in length. + * Input text to embed, encoded as a string or array of tokens. To embed multiple inputs in a single request, pass an array of strings or array of token arrays. Each input must not exceed the max input tokens for the model (8191 tokens for `text-embedding-ada-002`). [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) for counting tokens. * @export */ export type CreateEmbeddingRequestInput = Array | Array | Array | string; @@ -1515,6 +1605,19 @@ export interface Engine { */ 'ready': boolean; } +/** + * + * @export + * @interface ErrorResponse + */ +export interface ErrorResponse { + /** + * + * @type {Error} + * @memberof ErrorResponse + */ + 'error': Error; +} /** * * @export @@ -1795,6 +1898,37 @@ export interface Model { */ 'owned_by': string; } +/** + * + * @export + * @interface ModelError + */ +export interface ModelError { + /** + * + * @type {string} + * @memberof ModelError + */ + 'type': string; + /** + * + * @type {string} + * @memberof ModelError + */ + 'message': string; + /** + * + * @type {string} + * @memberof ModelError + */ + 'param': string | null; + /** + * + * @type {string} + * @memberof ModelError + */ + 'code': string | null; +} /** * * @export @@ -1930,7 +2064,7 @@ export const OpenAIApiAxiosParamCreator = function (configuration?: Configuratio }, /** * - * @summary Creates a completion for the chat message + * @summary Creates a model response for the given chat conversation. * @param {CreateChatCompletionRequest} createChatCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -2003,7 +2137,7 @@ export const OpenAIApiAxiosParamCreator = function (configuration?: Configuratio }, /** * - * @summary Creates a completion for the provided prompt and parameters + * @summary Creates a completion for the provided prompt and parameters. * @param {CreateCompletionRequest} createCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -2443,7 +2577,7 @@ export const OpenAIApiAxiosParamCreator = function (configuration?: Configuratio /** * * @summary Transcribes audio into the input language. - * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -2511,7 +2645,7 @@ export const OpenAIApiAxiosParamCreator = function (configuration?: Configuratio /** * * @summary Translates audio into into English. - * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -3005,7 +3139,7 @@ export const OpenAIApiFp = function(configuration?: Configuration) { }, /** * - * @summary Creates a completion for the chat message + * @summary Creates a model response for the given chat conversation. * @param {CreateChatCompletionRequest} createChatCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -3028,7 +3162,7 @@ export const OpenAIApiFp = function(configuration?: Configuration) { }, /** * - * @summary Creates a completion for the provided prompt and parameters + * @summary Creates a completion for the provided prompt and parameters. * @param {CreateCompletionRequest} createCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -3152,7 +3286,7 @@ export const OpenAIApiFp = function(configuration?: Configuration) { /** * * @summary Transcribes audio into the input language. - * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -3168,7 +3302,7 @@ export const OpenAIApiFp = function(configuration?: Configuration) { /** * * @summary Translates audio into into English. - * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -3344,7 +3478,7 @@ export const OpenAIApiFactory = function (configuration?: Configuration, basePat }, /** * - * @summary Creates a completion for the chat message + * @summary Creates a model response for the given chat conversation. * @param {CreateChatCompletionRequest} createChatCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -3365,7 +3499,7 @@ export const OpenAIApiFactory = function (configuration?: Configuration, basePat }, /** * - * @summary Creates a completion for the provided prompt and parameters + * @summary Creates a completion for the provided prompt and parameters. * @param {CreateCompletionRequest} createCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -3479,7 +3613,7 @@ export const OpenAIApiFactory = function (configuration?: Configuration, basePat /** * * @summary Transcribes audio into the input language. - * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -3494,7 +3628,7 @@ export const OpenAIApiFactory = function (configuration?: Configuration, basePat /** * * @summary Translates audio into into English. - * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -3661,7 +3795,7 @@ export class OpenAIApi extends BaseAPI { /** * - * @summary Creates a completion for the chat message + * @summary Creates a model response for the given chat conversation. * @param {CreateChatCompletionRequest} createChatCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -3686,7 +3820,7 @@ export class OpenAIApi extends BaseAPI { /** * - * @summary Creates a completion for the provided prompt and parameters + * @summary Creates a completion for the provided prompt and parameters. * @param {CreateCompletionRequest} createCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -3820,7 +3954,7 @@ export class OpenAIApi extends BaseAPI { /** * * @summary Transcribes audio into the input language. - * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -3837,7 +3971,7 @@ export class OpenAIApi extends BaseAPI { /** * * @summary Translates audio into into English. - * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. diff --git a/base.ts b/base.ts index ad518a152..a2c5eb0d4 100644 --- a/base.ts +++ b/base.ts @@ -4,7 +4,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.2.0 + * The version of the OpenAPI document: 1.3.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/common.ts b/common.ts index 5e2425166..37662811c 100644 --- a/common.ts +++ b/common.ts @@ -4,7 +4,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.2.0 + * The version of the OpenAPI document: 1.3.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/configuration.ts b/configuration.ts index 2a51762e0..32127174c 100644 --- a/configuration.ts +++ b/configuration.ts @@ -4,7 +4,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.2.0 + * The version of the OpenAPI document: 1.3.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/dist/api.d.ts b/dist/api.d.ts index 167eea44c..d862f2bcb 100644 --- a/dist/api.d.ts +++ b/dist/api.d.ts @@ -2,7 +2,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.2.0 + * The version of the OpenAPI document: 1.3.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -13,6 +13,33 @@ import type { Configuration } from './configuration'; import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios'; import type { RequestArgs } from './base'; import { BaseAPI } from './base'; +/** + * + * @export + * @interface ChatCompletionFunctions + */ +export interface ChatCompletionFunctions { + /** + * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. + * @type {string} + * @memberof ChatCompletionFunctions + */ + 'name': string; + /** + * The description of what the function does. + * @type {string} + * @memberof ChatCompletionFunctions + */ + 'description'?: string; + /** + * The parameters the functions accepts, described as a JSON Schema object. See the [guide](/docs/guides/gpt/function-calling) for examples, and the [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for documentation about the format. + * @type {{ [key: string]: any; }} + * @memberof ChatCompletionFunctions + */ + 'parameters'?: { + [key: string]: any; + }; +} /** * * @export @@ -20,30 +47,56 @@ import { BaseAPI } from './base'; */ export interface ChatCompletionRequestMessage { /** - * The role of the author of this message. + * The role of the messages author. One of `system`, `user`, `assistant`, or `function`. * @type {string} * @memberof ChatCompletionRequestMessage */ 'role': ChatCompletionRequestMessageRoleEnum; /** - * The contents of the message + * The contents of the message. `content` is required for all messages except assistant messages with function calls. * @type {string} * @memberof ChatCompletionRequestMessage */ - 'content': string; + 'content'?: string; /** - * The name of the user in a multi-user chat + * The name of the author of this message. `name` is required if role is `function`, and it should be the name of the function whose response is in the `content`. May contain a-z, A-Z, 0-9, and underscores, with a maximum length of 64 characters. * @type {string} * @memberof ChatCompletionRequestMessage */ 'name'?: string; + /** + * + * @type {ChatCompletionRequestMessageFunctionCall} + * @memberof ChatCompletionRequestMessage + */ + 'function_call'?: ChatCompletionRequestMessageFunctionCall; } export declare const ChatCompletionRequestMessageRoleEnum: { readonly System: "system"; readonly User: "user"; readonly Assistant: "assistant"; + readonly Function: "function"; }; export declare type ChatCompletionRequestMessageRoleEnum = typeof ChatCompletionRequestMessageRoleEnum[keyof typeof ChatCompletionRequestMessageRoleEnum]; +/** + * The name and arguments of a function that should be called, as generated by the model. + * @export + * @interface ChatCompletionRequestMessageFunctionCall + */ +export interface ChatCompletionRequestMessageFunctionCall { + /** + * The name of the function to call. + * @type {string} + * @memberof ChatCompletionRequestMessageFunctionCall + */ + 'name'?: string; + /** + * The arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function. + * @type {string} + * @memberof ChatCompletionRequestMessageFunctionCall + */ + 'arguments'?: string; +} /** * * @export @@ -57,16 +110,23 @@ export interface ChatCompletionResponseMessage { */ 'role': ChatCompletionResponseMessageRoleEnum; /** - * The contents of the message + * The contents of the message. * @type {string} * @memberof ChatCompletionResponseMessage */ - 'content': string; + 'content'?: string; + /** + * + * @type {ChatCompletionRequestMessageFunctionCall} + * @memberof ChatCompletionResponseMessage + */ + 'function_call'?: ChatCompletionRequestMessageFunctionCall; } export declare const ChatCompletionResponseMessageRoleEnum: { readonly System: "system"; readonly User: "user"; readonly Assistant: "assistant"; + readonly Function: "function"; }; export declare type ChatCompletionResponseMessageRoleEnum = typeof ChatCompletionResponseMessageRoleEnum[keyof typeof ChatCompletionResponseMessageRoleEnum]; /** @@ -130,7 +190,7 @@ export interface CreateAnswerRequest { */ 'temperature'?: number | null; /** - * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. If you need more than this, please contact us through our [Help center](https://help.openai.com) and describe your use case. When `logprobs` is set, `completion` will be automatically added into `expand` to get the logprobs. + * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. When `logprobs` is set, `completion` will be automatically added into `expand` to get the logprobs. * @type {number} * @memberof CreateAnswerRequest */ @@ -259,17 +319,29 @@ export interface CreateAnswerResponseSelectedDocumentsInner { */ export interface CreateChatCompletionRequest { /** - * ID of the model to use. Currently, only `gpt-3.5-turbo` and `gpt-3.5-turbo-0301` are supported. + * ID of the model to use. See the [model endpoint compatibility](/docs/models/model-endpoint-compatibility) table for details on which models work with the Chat API. * @type {string} * @memberof CreateChatCompletionRequest */ 'model': string; /** - * The messages to generate chat completions for, in the [chat format](/docs/guides/chat/introduction). + * A list of messages comprising the conversation so far. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_format_inputs_to_ChatGPT_models.ipynb). * @type {Array} * @memberof CreateChatCompletionRequest */ 'messages': Array; + /** + * A list of functions the model may generate JSON inputs for. + * @type {Array} + * @memberof CreateChatCompletionRequest + */ + 'functions'?: Array; + /** + * + * @type {CreateChatCompletionRequestFunctionCall} + * @memberof CreateChatCompletionRequest + */ + 'function_call'?: CreateChatCompletionRequestFunctionCall; /** * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both. * @type {number} @@ -289,7 +361,7 @@ export interface CreateChatCompletionRequest { */ 'n'?: number | null; /** - * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. + * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). * @type {boolean} * @memberof CreateChatCompletionRequest */ @@ -301,7 +373,7 @@ export interface CreateChatCompletionRequest { */ 'stop'?: CreateChatCompletionRequestStop; /** - * The maximum number of tokens allowed for the generated answer. By default, the number of tokens the model can return will be (4096 - prompt tokens). + * The maximum number of [tokens](/tokenizer) to generate in the chat completion. The total length of input tokens and generated tokens is limited by the model\'s context length. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) for counting tokens. * @type {number} * @memberof CreateChatCompletionRequest */ @@ -331,6 +403,25 @@ export interface CreateChatCompletionRequest { */ 'user'?: string; } +/** + * @type CreateChatCompletionRequestFunctionCall + * Controls how the model responds to function calls. \"none\" means the model does not call a function, and responds to the end-user. \"auto\" means the model can pick between an end-user or calling a function. Specifying a particular function via `{\"name\":\\ \"my_function\"}` forces the model to call that function. \"none\" is the default when no functions are present. \"auto\" is the default if functions are present. + * @export + */ +export declare type CreateChatCompletionRequestFunctionCall = CreateChatCompletionRequestFunctionCallOneOf | string; +/** + * + * @export + * @interface CreateChatCompletionRequestFunctionCallOneOf + */ +export interface CreateChatCompletionRequestFunctionCallOneOf { + /** + * The name of the function to call. + * @type {string} + * @memberof CreateChatCompletionRequestFunctionCallOneOf + */ + 'name': string; +} /** * @type CreateChatCompletionRequestStop * Up to 4 sequences where the API will stop generating further tokens. @@ -454,7 +545,7 @@ export interface CreateClassificationRequest { */ 'temperature'?: number | null; /** - * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. If you need more than this, please contact us through our [Help center](https://help.openai.com) and describe your use case. When `logprobs` is set, `completion` will be automatically added into `expand` to get the logprobs. + * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. When `logprobs` is set, `completion` will be automatically added into `expand` to get the logprobs. * @type {number} * @memberof CreateClassificationRequest */ @@ -589,7 +680,7 @@ export interface CreateCompletionRequest { */ 'suffix'?: string | null; /** - * The maximum number of [tokens](/tokenizer) to generate in the completion. The token count of your prompt plus `max_tokens` cannot exceed the model\'s context length. Most models have a context length of 2048 tokens (except for the newest models, which support 4096). + * The maximum number of [tokens](/tokenizer) to generate in the completion. The token count of your prompt plus `max_tokens` cannot exceed the model\'s context length. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) for counting tokens. * @type {number} * @memberof CreateCompletionRequest */ @@ -613,13 +704,13 @@ export interface CreateCompletionRequest { */ 'n'?: number | null; /** - * Whether to stream back partial progress. If set, tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. + * Whether to stream back partial progress. If set, tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). * @type {boolean} * @memberof CreateCompletionRequest */ 'stream'?: boolean | null; /** - * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. If you need more than this, please contact us through our [Help center](https://help.openai.com) and describe your use case. + * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. * @type {number} * @memberof CreateCompletionRequest */ @@ -910,7 +1001,7 @@ export interface CreateEmbeddingRequest { } /** * @type CreateEmbeddingRequestInput - * Input text to get embeddings for, encoded as a string or array of tokens. To get embeddings for multiple inputs in a single request, pass an array of strings or array of token arrays. Each input must not exceed 8192 tokens in length. + * Input text to embed, encoded as a string or array of tokens. To embed multiple inputs in a single request, pass an array of strings or array of token arrays. Each input must not exceed the max input tokens for the model (8191 tokens for `text-embedding-ada-002`). [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) for counting tokens. * @export */ export declare type CreateEmbeddingRequestInput = Array | Array | Array | string; @@ -1489,6 +1580,19 @@ export interface Engine { */ 'ready': boolean; } +/** + * + * @export + * @interface ErrorResponse + */ +export interface ErrorResponse { + /** + * + * @type {Error} + * @memberof ErrorResponse + */ + 'error': Error; +} /** * * @export @@ -1769,6 +1873,37 @@ export interface Model { */ 'owned_by': string; } +/** + * + * @export + * @interface ModelError + */ +export interface ModelError { + /** + * + * @type {string} + * @memberof ModelError + */ + 'type': string; + /** + * + * @type {string} + * @memberof ModelError + */ + 'message': string; + /** + * + * @type {string} + * @memberof ModelError + */ + 'param': string | null; + /** + * + * @type {string} + * @memberof ModelError + */ + 'code': string | null; +} /** * * @export @@ -1848,7 +1983,7 @@ export declare const OpenAIApiAxiosParamCreator: (configuration?: Configuration) createAnswer: (createAnswerRequest: CreateAnswerRequest, options?: AxiosRequestConfig) => Promise; /** * - * @summary Creates a completion for the chat message + * @summary Creates a model response for the given chat conversation. * @param {CreateChatCompletionRequest} createChatCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -1865,7 +2000,7 @@ export declare const OpenAIApiAxiosParamCreator: (configuration?: Configuration) createClassification: (createClassificationRequest: CreateClassificationRequest, options?: AxiosRequestConfig) => Promise; /** * - * @summary Creates a completion for the provided prompt and parameters + * @summary Creates a completion for the provided prompt and parameters. * @param {CreateCompletionRequest} createCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -1959,7 +2094,7 @@ export declare const OpenAIApiAxiosParamCreator: (configuration?: Configuration) /** * * @summary Transcribes audio into the input language. - * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -1972,7 +2107,7 @@ export declare const OpenAIApiAxiosParamCreator: (configuration?: Configuration) /** * * @summary Translates audio into into English. - * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -2101,7 +2236,7 @@ export declare const OpenAIApiFp: (configuration?: Configuration) => { createAnswer(createAnswerRequest: CreateAnswerRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * - * @summary Creates a completion for the chat message + * @summary Creates a model response for the given chat conversation. * @param {CreateChatCompletionRequest} createChatCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -2118,7 +2253,7 @@ export declare const OpenAIApiFp: (configuration?: Configuration) => { createClassification(createClassificationRequest: CreateClassificationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * - * @summary Creates a completion for the provided prompt and parameters + * @summary Creates a completion for the provided prompt and parameters. * @param {CreateCompletionRequest} createCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -2212,7 +2347,7 @@ export declare const OpenAIApiFp: (configuration?: Configuration) => { /** * * @summary Transcribes audio into the input language. - * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -2225,7 +2360,7 @@ export declare const OpenAIApiFp: (configuration?: Configuration) => { /** * * @summary Translates audio into into English. - * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -2354,7 +2489,7 @@ export declare const OpenAIApiFactory: (configuration?: Configuration, basePath? createAnswer(createAnswerRequest: CreateAnswerRequest, options?: any): AxiosPromise; /** * - * @summary Creates a completion for the chat message + * @summary Creates a model response for the given chat conversation. * @param {CreateChatCompletionRequest} createChatCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -2371,7 +2506,7 @@ export declare const OpenAIApiFactory: (configuration?: Configuration, basePath? createClassification(createClassificationRequest: CreateClassificationRequest, options?: any): AxiosPromise; /** * - * @summary Creates a completion for the provided prompt and parameters + * @summary Creates a completion for the provided prompt and parameters. * @param {CreateCompletionRequest} createCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -2465,7 +2600,7 @@ export declare const OpenAIApiFactory: (configuration?: Configuration, basePath? /** * * @summary Transcribes audio into the input language. - * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -2478,7 +2613,7 @@ export declare const OpenAIApiFactory: (configuration?: Configuration, basePath? /** * * @summary Translates audio into into English. - * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -2611,7 +2746,7 @@ export declare class OpenAIApi extends BaseAPI { createAnswer(createAnswerRequest: CreateAnswerRequest, options?: AxiosRequestConfig): Promise>; /** * - * @summary Creates a completion for the chat message + * @summary Creates a model response for the given chat conversation. * @param {CreateChatCompletionRequest} createChatCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -2630,7 +2765,7 @@ export declare class OpenAIApi extends BaseAPI { createClassification(createClassificationRequest: CreateClassificationRequest, options?: AxiosRequestConfig): Promise>; /** * - * @summary Creates a completion for the provided prompt and parameters + * @summary Creates a completion for the provided prompt and parameters. * @param {CreateCompletionRequest} createCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -2734,7 +2869,7 @@ export declare class OpenAIApi extends BaseAPI { /** * * @summary Transcribes audio into the input language. - * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -2748,7 +2883,7 @@ export declare class OpenAIApi extends BaseAPI { /** * * @summary Translates audio into into English. - * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. diff --git a/dist/api.js b/dist/api.js index b3a4f1758..a4d889c6a 100644 --- a/dist/api.js +++ b/dist/api.js @@ -5,7 +5,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.2.0 + * The version of the OpenAPI document: 1.3.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -32,12 +32,14 @@ const base_1 = require("./base"); exports.ChatCompletionRequestMessageRoleEnum = { System: 'system', User: 'user', - Assistant: 'assistant' + Assistant: 'assistant', + Function: 'function' }; exports.ChatCompletionResponseMessageRoleEnum = { System: 'system', User: 'user', - Assistant: 'assistant' + Assistant: 'assistant', + Function: 'function' }; exports.CreateImageRequestSizeEnum = { _256x256: '256x256', @@ -116,7 +118,7 @@ exports.OpenAIApiAxiosParamCreator = function (configuration) { }), /** * - * @summary Creates a completion for the chat message + * @summary Creates a model response for the given chat conversation. * @param {CreateChatCompletionRequest} createChatCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -177,7 +179,7 @@ exports.OpenAIApiAxiosParamCreator = function (configuration) { }), /** * - * @summary Creates a completion for the provided prompt and parameters + * @summary Creates a completion for the provided prompt and parameters. * @param {CreateCompletionRequest} createCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -543,7 +545,7 @@ exports.OpenAIApiAxiosParamCreator = function (configuration) { /** * * @summary Transcribes audio into the input language. - * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -599,7 +601,7 @@ exports.OpenAIApiAxiosParamCreator = function (configuration) { /** * * @summary Translates audio into into English. - * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -1024,7 +1026,7 @@ exports.OpenAIApiFp = function (configuration) { }, /** * - * @summary Creates a completion for the chat message + * @summary Creates a model response for the given chat conversation. * @param {CreateChatCompletionRequest} createChatCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -1051,7 +1053,7 @@ exports.OpenAIApiFp = function (configuration) { }, /** * - * @summary Creates a completion for the provided prompt and parameters + * @summary Creates a completion for the provided prompt and parameters. * @param {CreateCompletionRequest} createCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -1195,7 +1197,7 @@ exports.OpenAIApiFp = function (configuration) { /** * * @summary Transcribes audio into the input language. - * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -1213,7 +1215,7 @@ exports.OpenAIApiFp = function (configuration) { /** * * @summary Translates audio into into English. - * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -1414,7 +1416,7 @@ exports.OpenAIApiFactory = function (configuration, basePath, axios) { }, /** * - * @summary Creates a completion for the chat message + * @summary Creates a model response for the given chat conversation. * @param {CreateChatCompletionRequest} createChatCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -1435,7 +1437,7 @@ exports.OpenAIApiFactory = function (configuration, basePath, axios) { }, /** * - * @summary Creates a completion for the provided prompt and parameters + * @summary Creates a completion for the provided prompt and parameters. * @param {CreateCompletionRequest} createCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -1549,7 +1551,7 @@ exports.OpenAIApiFactory = function (configuration, basePath, axios) { /** * * @summary Transcribes audio into the input language. - * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -1564,7 +1566,7 @@ exports.OpenAIApiFactory = function (configuration, basePath, axios) { /** * * @summary Translates audio into into English. - * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -1728,7 +1730,7 @@ class OpenAIApi extends base_1.BaseAPI { } /** * - * @summary Creates a completion for the chat message + * @summary Creates a model response for the given chat conversation. * @param {CreateChatCompletionRequest} createChatCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -1751,7 +1753,7 @@ class OpenAIApi extends base_1.BaseAPI { } /** * - * @summary Creates a completion for the provided prompt and parameters + * @summary Creates a completion for the provided prompt and parameters. * @param {CreateCompletionRequest} createCompletionRequest * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -1875,7 +1877,7 @@ class OpenAIApi extends base_1.BaseAPI { /** * * @summary Transcribes audio into the input language. - * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. @@ -1891,7 +1893,7 @@ class OpenAIApi extends base_1.BaseAPI { /** * * @summary Translates audio into into English. - * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. * @param {string} model ID of the model to use. Only `whisper-1` is currently available. * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. diff --git a/dist/base.d.ts b/dist/base.d.ts index 0d7b20371..e1986a6ab 100644 --- a/dist/base.d.ts +++ b/dist/base.d.ts @@ -2,7 +2,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.2.0 + * The version of the OpenAPI document: 1.3.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/dist/base.js b/dist/base.js index 5ce59c6a2..7dc003f14 100644 --- a/dist/base.js +++ b/dist/base.js @@ -5,7 +5,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.2.0 + * The version of the OpenAPI document: 1.3.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/dist/common.d.ts b/dist/common.d.ts index 29db8d713..6ef2798be 100644 --- a/dist/common.d.ts +++ b/dist/common.d.ts @@ -2,7 +2,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.2.0 + * The version of the OpenAPI document: 1.3.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/dist/common.js b/dist/common.js index 03588cc4c..36b545527 100644 --- a/dist/common.js +++ b/dist/common.js @@ -5,7 +5,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.2.0 + * The version of the OpenAPI document: 1.3.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/dist/configuration.d.ts b/dist/configuration.d.ts index cbe66166f..f0b3d1a44 100644 --- a/dist/configuration.d.ts +++ b/dist/configuration.d.ts @@ -2,7 +2,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.2.0 + * The version of the OpenAPI document: 1.3.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/dist/configuration.js b/dist/configuration.js index 4a9f063f5..8d0ee2611 100644 --- a/dist/configuration.js +++ b/dist/configuration.js @@ -5,7 +5,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.2.0 + * The version of the OpenAPI document: 1.3.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/dist/index.d.ts b/dist/index.d.ts index 9e18678be..80ab07ba6 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -2,7 +2,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.2.0 + * The version of the OpenAPI document: 1.3.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/dist/index.js b/dist/index.js index 4693b6f36..58f44dc9f 100644 --- a/dist/index.js +++ b/dist/index.js @@ -5,7 +5,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.2.0 + * The version of the OpenAPI document: 1.3.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/index.ts b/index.ts index 186fb3e8e..d564d1820 100644 --- a/index.ts +++ b/index.ts @@ -4,7 +4,7 @@ * OpenAI API * APIs for sampling from and fine-tuning language models * - * The version of the OpenAPI document: 1.2.0 + * The version of the OpenAPI document: 1.3.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). From dc821be3018c832650e21285bade265099f99efb Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Tue, 13 Jun 2023 10:11:07 -0700 Subject: [PATCH 013/725] 3.3.0 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 7ad5e09ac..0477e4022 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "openai", - "version": "3.2.1", + "version": "3.3.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "openai", - "version": "3.2.1", + "version": "3.3.0", "license": "MIT", "dependencies": { "axios": "^0.26.0", diff --git a/package.json b/package.json index 3109e3909..f866333d8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "3.2.1", + "version": "3.3.0", "description": "Node.js library for the OpenAI API", "repository": { "type": "git", From 206f8717cb827b0c57afd7e232642958ee54fa2a Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Thu, 15 Jun 2023 21:19:19 -0700 Subject: [PATCH 014/725] cleanup --- .gitignore | 1 - .npmignore | 1 - .openapi-generator-ignore | 5 - .openapi-generator/FILES | 6 - .openapi-generator/VERSION | 1 - LICENSE | 21 - README.md | 89 - api.ts | 4131 ------------------------------------ base.ts | 72 - common.ts | 150 -- configuration.ts | 127 -- dist/api.d.ts | 3003 -------------------------- dist/api.js | 2040 ------------------ dist/base.d.ts | 54 - dist/base.js | 59 - dist/common.d.ts | 65 - dist/common.js | 151 -- dist/configuration.d.ts | 91 - dist/configuration.js | 54 - dist/index.d.ts | 13 - dist/index.js | 27 - index.ts | 18 - package-lock.json | 191 -- package.json | 31 - tsconfig.json | 17 - 25 files changed, 10418 deletions(-) delete mode 100644 .gitignore delete mode 100644 .npmignore delete mode 100644 .openapi-generator-ignore delete mode 100644 .openapi-generator/FILES delete mode 100644 .openapi-generator/VERSION delete mode 100644 LICENSE delete mode 100644 README.md delete mode 100644 api.ts delete mode 100644 base.ts delete mode 100644 common.ts delete mode 100644 configuration.ts delete mode 100644 dist/api.d.ts delete mode 100644 dist/api.js delete mode 100644 dist/base.d.ts delete mode 100644 dist/base.js delete mode 100644 dist/common.d.ts delete mode 100644 dist/common.js delete mode 100644 dist/configuration.d.ts delete mode 100644 dist/configuration.js delete mode 100644 dist/index.d.ts delete mode 100644 dist/index.js delete mode 100644 index.ts delete mode 100644 package-lock.json delete mode 100644 package.json delete mode 100644 tsconfig.json diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 07e6e472c..000000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/node_modules diff --git a/.npmignore b/.npmignore deleted file mode 100644 index 999d88df6..000000000 --- a/.npmignore +++ /dev/null @@ -1 +0,0 @@ -# empty npmignore to ensure all required files (e.g., in the dist folder) are published by npm \ No newline at end of file diff --git a/.openapi-generator-ignore b/.openapi-generator-ignore deleted file mode 100644 index ce0eef51f..000000000 --- a/.openapi-generator-ignore +++ /dev/null @@ -1,5 +0,0 @@ -.gitignore -README.md -git_push.sh -package.json -package-lock.json \ No newline at end of file diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES deleted file mode 100644 index daef44100..000000000 --- a/.openapi-generator/FILES +++ /dev/null @@ -1,6 +0,0 @@ -.npmignore -api.ts -base.ts -common.ts -configuration.ts -index.ts diff --git a/.openapi-generator/VERSION b/.openapi-generator/VERSION deleted file mode 100644 index cd802a1ec..000000000 --- a/.openapi-generator/VERSION +++ /dev/null @@ -1 +0,0 @@ -6.6.0 \ No newline at end of file diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 4f14854c3..000000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License - -Copyright (c) OpenAI (https://openai.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/README.md b/README.md deleted file mode 100644 index 765d73647..000000000 --- a/README.md +++ /dev/null @@ -1,89 +0,0 @@ -# OpenAI Node.js Library - -The OpenAI Node.js library provides convenient access to the OpenAI API from Node.js applications. Most of the code in this library is generated from our [OpenAPI specification](https://github.com/openai/openai-openapi). - -> ⚠️ **Important note: this library is meant for server-side usage only, as using it in client-side browser code will expose your secret API key. [See here](https://platform.openai.com/docs/api-reference/authentication) for more details.** - -## Installation - -```bash -npm install openai -``` - -## Usage - -The library needs to be configured with your account's secret key, which is available in your [OpenAI account page](https://platform.openai.com/account/api-keys). We recommend setting it as an environment variable. Here's an example of initializing the library with the API key loaded from an environment variable and creating a completion: - -```javascript -const { Configuration, OpenAIApi } = require("openai"); - -const configuration = new Configuration({ - apiKey: process.env.OPENAI_API_KEY, -}); -const openai = new OpenAIApi(configuration); - -const chatCompletion = await openai.createChatCompletion({ - model: "gpt-3.5-turbo", - messages: [{role: "user", content: "Hello world"}], -}); -console.log(chatCompletion.data.choices[0].message); -``` - -Check out the [full API documentation](https://platform.openai.com/docs/api-reference?lang=node.js) for examples of all the available functions. - -### Request options - -All of the available API request functions additionally contain an optional final parameter where you can pass custom [axios request options](https://axios-http.com/docs/req_config), for example: - -```javascript -const completion = await openai.createCompletion( - { - model: "text-davinci-003", - prompt: "Hello world", - }, - { - timeout: 1000, - headers: { - "Example-Header": "example", - }, - } -); -``` - -### Error handling - -API requests can potentially return errors due to invalid inputs or other issues. These errors can be handled with a `try...catch` statement, and the error details can be found in either `error.response` or `error.message`: - -```javascript -try { - const completion = await openai.createCompletion({ - model: "text-davinci-003", - prompt: "Hello world", - }); - console.log(completion.data.choices[0].text); -} catch (error) { - if (error.response) { - console.log(error.response.status); - console.log(error.response.data); - } else { - console.log(error.message); - } -} -``` - -### Streaming completions - -Streaming completions (`stream=true`) are not natively supported in this package yet, but [a workaround exists](https://github.com/openai/openai-node/issues/18#issuecomment-1369996933) if needed. - -## Upgrade guide - -All breaking changes for major version releases are listed below. - -### 3.0.0 - -- The function signature of `createCompletion(engineId, params)` changed to `createCompletion(params)`. The value previously passed in as the `engineId` argument should now be passed in as `model` in the params object (e.g. `createCompletion({ model: "text-davinci-003", ... })`) -- Replace any `createCompletionFromModel(params)` calls with `createCompletion(params)` - -## Thanks - -Thank you to [ceifa](https://github.com/ceifa) for creating and maintaining the original unofficial `openai` npm package before we released this official library! ceifa's original package has been renamed to [gpt-x](https://www.npmjs.com/package/gpt-x). diff --git a/api.ts b/api.ts deleted file mode 100644 index 10505c0d4..000000000 --- a/api.ts +++ /dev/null @@ -1,4131 +0,0 @@ -/* tslint:disable */ -/* eslint-disable */ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.3.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -import type { Configuration } from './configuration'; -import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios'; -import globalAxios from 'axios'; -// Some imports not used depending on template conditions -// @ts-ignore -import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common'; -import type { RequestArgs } from './base'; -// @ts-ignore -import { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError } from './base'; - -/** - * - * @export - * @interface ChatCompletionFunctions - */ -export interface ChatCompletionFunctions { - /** - * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. - * @type {string} - * @memberof ChatCompletionFunctions - */ - 'name': string; - /** - * The description of what the function does. - * @type {string} - * @memberof ChatCompletionFunctions - */ - 'description'?: string; - /** - * The parameters the functions accepts, described as a JSON Schema object. See the [guide](/docs/guides/gpt/function-calling) for examples, and the [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for documentation about the format. - * @type {{ [key: string]: any; }} - * @memberof ChatCompletionFunctions - */ - 'parameters'?: { [key: string]: any; }; -} -/** - * - * @export - * @interface ChatCompletionRequestMessage - */ -export interface ChatCompletionRequestMessage { - /** - * The role of the messages author. One of `system`, `user`, `assistant`, or `function`. - * @type {string} - * @memberof ChatCompletionRequestMessage - */ - 'role': ChatCompletionRequestMessageRoleEnum; - /** - * The contents of the message. `content` is required for all messages except assistant messages with function calls. - * @type {string} - * @memberof ChatCompletionRequestMessage - */ - 'content'?: string; - /** - * The name of the author of this message. `name` is required if role is `function`, and it should be the name of the function whose response is in the `content`. May contain a-z, A-Z, 0-9, and underscores, with a maximum length of 64 characters. - * @type {string} - * @memberof ChatCompletionRequestMessage - */ - 'name'?: string; - /** - * - * @type {ChatCompletionRequestMessageFunctionCall} - * @memberof ChatCompletionRequestMessage - */ - 'function_call'?: ChatCompletionRequestMessageFunctionCall; -} - -export const ChatCompletionRequestMessageRoleEnum = { - System: 'system', - User: 'user', - Assistant: 'assistant', - Function: 'function' -} as const; - -export type ChatCompletionRequestMessageRoleEnum = typeof ChatCompletionRequestMessageRoleEnum[keyof typeof ChatCompletionRequestMessageRoleEnum]; - -/** - * The name and arguments of a function that should be called, as generated by the model. - * @export - * @interface ChatCompletionRequestMessageFunctionCall - */ -export interface ChatCompletionRequestMessageFunctionCall { - /** - * The name of the function to call. - * @type {string} - * @memberof ChatCompletionRequestMessageFunctionCall - */ - 'name'?: string; - /** - * The arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function. - * @type {string} - * @memberof ChatCompletionRequestMessageFunctionCall - */ - 'arguments'?: string; -} -/** - * - * @export - * @interface ChatCompletionResponseMessage - */ -export interface ChatCompletionResponseMessage { - /** - * The role of the author of this message. - * @type {string} - * @memberof ChatCompletionResponseMessage - */ - 'role': ChatCompletionResponseMessageRoleEnum; - /** - * The contents of the message. - * @type {string} - * @memberof ChatCompletionResponseMessage - */ - 'content'?: string; - /** - * - * @type {ChatCompletionRequestMessageFunctionCall} - * @memberof ChatCompletionResponseMessage - */ - 'function_call'?: ChatCompletionRequestMessageFunctionCall; -} - -export const ChatCompletionResponseMessageRoleEnum = { - System: 'system', - User: 'user', - Assistant: 'assistant', - Function: 'function' -} as const; - -export type ChatCompletionResponseMessageRoleEnum = typeof ChatCompletionResponseMessageRoleEnum[keyof typeof ChatCompletionResponseMessageRoleEnum]; - -/** - * - * @export - * @interface CreateAnswerRequest - */ -export interface CreateAnswerRequest { - /** - * ID of the model to use for completion. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @type {string} - * @memberof CreateAnswerRequest - */ - 'model': string; - /** - * Question to get answered. - * @type {string} - * @memberof CreateAnswerRequest - */ - 'question': string; - /** - * List of (question, answer) pairs that will help steer the model towards the tone and answer format you\'d like. We recommend adding 2 to 3 examples. - * @type {Array} - * @memberof CreateAnswerRequest - */ - 'examples': Array; - /** - * A text snippet containing the contextual information used to generate the answers for the `examples` you provide. - * @type {string} - * @memberof CreateAnswerRequest - */ - 'examples_context': string; - /** - * List of documents from which the answer for the input `question` should be derived. If this is an empty list, the question will be answered based on the question-answer examples. You should specify either `documents` or a `file`, but not both. - * @type {Array} - * @memberof CreateAnswerRequest - */ - 'documents'?: Array | null; - /** - * The ID of an uploaded file that contains documents to search over. See [upload file](/docs/api-reference/files/upload) for how to upload a file of the desired format and purpose. You should specify either `documents` or a `file`, but not both. - * @type {string} - * @memberof CreateAnswerRequest - */ - 'file'?: string | null; - /** - * ID of the model to use for [Search](/docs/api-reference/searches/create). You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @type {string} - * @memberof CreateAnswerRequest - */ - 'search_model'?: string | null; - /** - * The maximum number of documents to be ranked by [Search](/docs/api-reference/searches/create) when using `file`. Setting it to a higher value leads to improved accuracy but with increased latency and cost. - * @type {number} - * @memberof CreateAnswerRequest - */ - 'max_rerank'?: number | null; - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. - * @type {number} - * @memberof CreateAnswerRequest - */ - 'temperature'?: number | null; - /** - * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. When `logprobs` is set, `completion` will be automatically added into `expand` to get the logprobs. - * @type {number} - * @memberof CreateAnswerRequest - */ - 'logprobs'?: number | null; - /** - * The maximum number of tokens allowed for the generated answer - * @type {number} - * @memberof CreateAnswerRequest - */ - 'max_tokens'?: number | null; - /** - * - * @type {CreateAnswerRequestStop} - * @memberof CreateAnswerRequest - */ - 'stop'?: CreateAnswerRequestStop | null; - /** - * How many answers to generate for each question. - * @type {number} - * @memberof CreateAnswerRequest - */ - 'n'?: number | null; - /** - * Modify the likelihood of specified tokens appearing in the completion. Accepts a json object that maps tokens (specified by their token ID in the GPT tokenizer) to an associated bias value from -100 to 100. You can use this [tokenizer tool](/tokenizer?view=bpe) (which works for both GPT-2 and GPT-3) to convert text to token IDs. Mathematically, the bias is added to the logits generated by the model prior to sampling. The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection; values like -100 or 100 should result in a ban or exclusive selection of the relevant token. As an example, you can pass `{\"50256\": -100}` to prevent the <|endoftext|> token from being generated. - * @type {object} - * @memberof CreateAnswerRequest - */ - 'logit_bias'?: object | null; - /** - * A special boolean flag for showing metadata. If set to `true`, each document entry in the returned JSON will contain a \"metadata\" field. This flag only takes effect when `file` is set. - * @type {boolean} - * @memberof CreateAnswerRequest - */ - 'return_metadata'?: boolean | null; - /** - * If set to `true`, the returned JSON will include a \"prompt\" field containing the final prompt that was used to request a completion. This is mainly useful for debugging purposes. - * @type {boolean} - * @memberof CreateAnswerRequest - */ - 'return_prompt'?: boolean | null; - /** - * If an object name is in the list, we provide the full information of the object; otherwise, we only provide the object ID. Currently we support `completion` and `file` objects for expansion. - * @type {Array} - * @memberof CreateAnswerRequest - */ - 'expand'?: Array | null; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateAnswerRequest - */ - 'user'?: string; -} -/** - * @type CreateAnswerRequestStop - * Up to 4 sequences where the API will stop generating further tokens. The returned text will not contain the stop sequence. - * @export - */ -export type CreateAnswerRequestStop = Array | string; - -/** - * - * @export - * @interface CreateAnswerResponse - */ -export interface CreateAnswerResponse { - /** - * - * @type {string} - * @memberof CreateAnswerResponse - */ - 'object'?: string; - /** - * - * @type {string} - * @memberof CreateAnswerResponse - */ - 'model'?: string; - /** - * - * @type {string} - * @memberof CreateAnswerResponse - */ - 'search_model'?: string; - /** - * - * @type {string} - * @memberof CreateAnswerResponse - */ - 'completion'?: string; - /** - * - * @type {Array} - * @memberof CreateAnswerResponse - */ - 'answers'?: Array; - /** - * - * @type {Array} - * @memberof CreateAnswerResponse - */ - 'selected_documents'?: Array; -} -/** - * - * @export - * @interface CreateAnswerResponseSelectedDocumentsInner - */ -export interface CreateAnswerResponseSelectedDocumentsInner { - /** - * - * @type {number} - * @memberof CreateAnswerResponseSelectedDocumentsInner - */ - 'document'?: number; - /** - * - * @type {string} - * @memberof CreateAnswerResponseSelectedDocumentsInner - */ - 'text'?: string; -} -/** - * - * @export - * @interface CreateChatCompletionRequest - */ -export interface CreateChatCompletionRequest { - /** - * ID of the model to use. See the [model endpoint compatibility](/docs/models/model-endpoint-compatibility) table for details on which models work with the Chat API. - * @type {string} - * @memberof CreateChatCompletionRequest - */ - 'model': string; - /** - * A list of messages comprising the conversation so far. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_format_inputs_to_ChatGPT_models.ipynb). - * @type {Array} - * @memberof CreateChatCompletionRequest - */ - 'messages': Array; - /** - * A list of functions the model may generate JSON inputs for. - * @type {Array} - * @memberof CreateChatCompletionRequest - */ - 'functions'?: Array; - /** - * - * @type {CreateChatCompletionRequestFunctionCall} - * @memberof CreateChatCompletionRequest - */ - 'function_call'?: CreateChatCompletionRequestFunctionCall; - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both. - * @type {number} - * @memberof CreateChatCompletionRequest - */ - 'temperature'?: number | null; - /** - * An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. We generally recommend altering this or `temperature` but not both. - * @type {number} - * @memberof CreateChatCompletionRequest - */ - 'top_p'?: number | null; - /** - * How many chat completion choices to generate for each input message. - * @type {number} - * @memberof CreateChatCompletionRequest - */ - 'n'?: number | null; - /** - * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). - * @type {boolean} - * @memberof CreateChatCompletionRequest - */ - 'stream'?: boolean | null; - /** - * - * @type {CreateChatCompletionRequestStop} - * @memberof CreateChatCompletionRequest - */ - 'stop'?: CreateChatCompletionRequestStop; - /** - * The maximum number of [tokens](/tokenizer) to generate in the chat completion. The total length of input tokens and generated tokens is limited by the model\'s context length. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) for counting tokens. - * @type {number} - * @memberof CreateChatCompletionRequest - */ - 'max_tokens'?: number; - /** - * Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model\'s likelihood to talk about new topics. [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) - * @type {number} - * @memberof CreateChatCompletionRequest - */ - 'presence_penalty'?: number | null; - /** - * Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model\'s likelihood to repeat the same line verbatim. [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) - * @type {number} - * @memberof CreateChatCompletionRequest - */ - 'frequency_penalty'?: number | null; - /** - * Modify the likelihood of specified tokens appearing in the completion. Accepts a json object that maps tokens (specified by their token ID in the tokenizer) to an associated bias value from -100 to 100. Mathematically, the bias is added to the logits generated by the model prior to sampling. The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection; values like -100 or 100 should result in a ban or exclusive selection of the relevant token. - * @type {object} - * @memberof CreateChatCompletionRequest - */ - 'logit_bias'?: object | null; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateChatCompletionRequest - */ - 'user'?: string; -} -/** - * @type CreateChatCompletionRequestFunctionCall - * Controls how the model responds to function calls. \"none\" means the model does not call a function, and responds to the end-user. \"auto\" means the model can pick between an end-user or calling a function. Specifying a particular function via `{\"name\":\\ \"my_function\"}` forces the model to call that function. \"none\" is the default when no functions are present. \"auto\" is the default if functions are present. - * @export - */ -export type CreateChatCompletionRequestFunctionCall = CreateChatCompletionRequestFunctionCallOneOf | string; - -/** - * - * @export - * @interface CreateChatCompletionRequestFunctionCallOneOf - */ -export interface CreateChatCompletionRequestFunctionCallOneOf { - /** - * The name of the function to call. - * @type {string} - * @memberof CreateChatCompletionRequestFunctionCallOneOf - */ - 'name': string; -} -/** - * @type CreateChatCompletionRequestStop - * Up to 4 sequences where the API will stop generating further tokens. - * @export - */ -export type CreateChatCompletionRequestStop = Array | string; - -/** - * - * @export - * @interface CreateChatCompletionResponse - */ -export interface CreateChatCompletionResponse { - /** - * - * @type {string} - * @memberof CreateChatCompletionResponse - */ - 'id': string; - /** - * - * @type {string} - * @memberof CreateChatCompletionResponse - */ - 'object': string; - /** - * - * @type {number} - * @memberof CreateChatCompletionResponse - */ - 'created': number; - /** - * - * @type {string} - * @memberof CreateChatCompletionResponse - */ - 'model': string; - /** - * - * @type {Array} - * @memberof CreateChatCompletionResponse - */ - 'choices': Array; - /** - * - * @type {CreateCompletionResponseUsage} - * @memberof CreateChatCompletionResponse - */ - 'usage'?: CreateCompletionResponseUsage; -} -/** - * - * @export - * @interface CreateChatCompletionResponseChoicesInner - */ -export interface CreateChatCompletionResponseChoicesInner { - /** - * - * @type {number} - * @memberof CreateChatCompletionResponseChoicesInner - */ - 'index'?: number; - /** - * - * @type {ChatCompletionResponseMessage} - * @memberof CreateChatCompletionResponseChoicesInner - */ - 'message'?: ChatCompletionResponseMessage; - /** - * - * @type {string} - * @memberof CreateChatCompletionResponseChoicesInner - */ - 'finish_reason'?: string; -} -/** - * - * @export - * @interface CreateClassificationRequest - */ -export interface CreateClassificationRequest { - /** - * ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. - * @type {string} - * @memberof CreateClassificationRequest - */ - 'model': string; - /** - * Query to be classified. - * @type {string} - * @memberof CreateClassificationRequest - */ - 'query': string; - /** - * A list of examples with labels, in the following format: `[[\"The movie is so interesting.\", \"Positive\"], [\"It is quite boring.\", \"Negative\"], ...]` All the label strings will be normalized to be capitalized. You should specify either `examples` or `file`, but not both. - * @type {Array} - * @memberof CreateClassificationRequest - */ - 'examples'?: Array | null; - /** - * The ID of the uploaded file that contains training examples. See [upload file](/docs/api-reference/files/upload) for how to upload a file of the desired format and purpose. You should specify either `examples` or `file`, but not both. - * @type {string} - * @memberof CreateClassificationRequest - */ - 'file'?: string | null; - /** - * The set of categories being classified. If not specified, candidate labels will be automatically collected from the examples you provide. All the label strings will be normalized to be capitalized. - * @type {Array} - * @memberof CreateClassificationRequest - */ - 'labels'?: Array | null; - /** - * ID of the model to use for [Search](/docs/api-reference/searches/create). You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @type {string} - * @memberof CreateClassificationRequest - */ - 'search_model'?: string | null; - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. - * @type {number} - * @memberof CreateClassificationRequest - */ - 'temperature'?: number | null; - /** - * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. When `logprobs` is set, `completion` will be automatically added into `expand` to get the logprobs. - * @type {number} - * @memberof CreateClassificationRequest - */ - 'logprobs'?: number | null; - /** - * The maximum number of examples to be ranked by [Search](/docs/api-reference/searches/create) when using `file`. Setting it to a higher value leads to improved accuracy but with increased latency and cost. - * @type {number} - * @memberof CreateClassificationRequest - */ - 'max_examples'?: number | null; - /** - * Modify the likelihood of specified tokens appearing in the completion. Accepts a json object that maps tokens (specified by their token ID in the GPT tokenizer) to an associated bias value from -100 to 100. You can use this [tokenizer tool](/tokenizer?view=bpe) (which works for both GPT-2 and GPT-3) to convert text to token IDs. Mathematically, the bias is added to the logits generated by the model prior to sampling. The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection; values like -100 or 100 should result in a ban or exclusive selection of the relevant token. As an example, you can pass `{\"50256\": -100}` to prevent the <|endoftext|> token from being generated. - * @type {object} - * @memberof CreateClassificationRequest - */ - 'logit_bias'?: object | null; - /** - * If set to `true`, the returned JSON will include a \"prompt\" field containing the final prompt that was used to request a completion. This is mainly useful for debugging purposes. - * @type {boolean} - * @memberof CreateClassificationRequest - */ - 'return_prompt'?: boolean | null; - /** - * A special boolean flag for showing metadata. If set to `true`, each document entry in the returned JSON will contain a \"metadata\" field. This flag only takes effect when `file` is set. - * @type {boolean} - * @memberof CreateClassificationRequest - */ - 'return_metadata'?: boolean | null; - /** - * If an object name is in the list, we provide the full information of the object; otherwise, we only provide the object ID. Currently we support `completion` and `file` objects for expansion. - * @type {Array} - * @memberof CreateClassificationRequest - */ - 'expand'?: Array | null; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateClassificationRequest - */ - 'user'?: string; -} -/** - * - * @export - * @interface CreateClassificationResponse - */ -export interface CreateClassificationResponse { - /** - * - * @type {string} - * @memberof CreateClassificationResponse - */ - 'object'?: string; - /** - * - * @type {string} - * @memberof CreateClassificationResponse - */ - 'model'?: string; - /** - * - * @type {string} - * @memberof CreateClassificationResponse - */ - 'search_model'?: string; - /** - * - * @type {string} - * @memberof CreateClassificationResponse - */ - 'completion'?: string; - /** - * - * @type {string} - * @memberof CreateClassificationResponse - */ - 'label'?: string; - /** - * - * @type {Array} - * @memberof CreateClassificationResponse - */ - 'selected_examples'?: Array; -} -/** - * - * @export - * @interface CreateClassificationResponseSelectedExamplesInner - */ -export interface CreateClassificationResponseSelectedExamplesInner { - /** - * - * @type {number} - * @memberof CreateClassificationResponseSelectedExamplesInner - */ - 'document'?: number; - /** - * - * @type {string} - * @memberof CreateClassificationResponseSelectedExamplesInner - */ - 'text'?: string; - /** - * - * @type {string} - * @memberof CreateClassificationResponseSelectedExamplesInner - */ - 'label'?: string; -} -/** - * - * @export - * @interface CreateCompletionRequest - */ -export interface CreateCompletionRequest { - /** - * ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. - * @type {string} - * @memberof CreateCompletionRequest - */ - 'model': string; - /** - * - * @type {CreateCompletionRequestPrompt} - * @memberof CreateCompletionRequest - */ - 'prompt'?: CreateCompletionRequestPrompt | null; - /** - * The suffix that comes after a completion of inserted text. - * @type {string} - * @memberof CreateCompletionRequest - */ - 'suffix'?: string | null; - /** - * The maximum number of [tokens](/tokenizer) to generate in the completion. The token count of your prompt plus `max_tokens` cannot exceed the model\'s context length. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) for counting tokens. - * @type {number} - * @memberof CreateCompletionRequest - */ - 'max_tokens'?: number | null; - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both. - * @type {number} - * @memberof CreateCompletionRequest - */ - 'temperature'?: number | null; - /** - * An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. We generally recommend altering this or `temperature` but not both. - * @type {number} - * @memberof CreateCompletionRequest - */ - 'top_p'?: number | null; - /** - * How many completions to generate for each prompt. **Note:** Because this parameter generates many completions, it can quickly consume your token quota. Use carefully and ensure that you have reasonable settings for `max_tokens` and `stop`. - * @type {number} - * @memberof CreateCompletionRequest - */ - 'n'?: number | null; - /** - * Whether to stream back partial progress. If set, tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). - * @type {boolean} - * @memberof CreateCompletionRequest - */ - 'stream'?: boolean | null; - /** - * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. - * @type {number} - * @memberof CreateCompletionRequest - */ - 'logprobs'?: number | null; - /** - * Echo back the prompt in addition to the completion - * @type {boolean} - * @memberof CreateCompletionRequest - */ - 'echo'?: boolean | null; - /** - * - * @type {CreateCompletionRequestStop} - * @memberof CreateCompletionRequest - */ - 'stop'?: CreateCompletionRequestStop | null; - /** - * Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model\'s likelihood to talk about new topics. [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) - * @type {number} - * @memberof CreateCompletionRequest - */ - 'presence_penalty'?: number | null; - /** - * Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model\'s likelihood to repeat the same line verbatim. [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) - * @type {number} - * @memberof CreateCompletionRequest - */ - 'frequency_penalty'?: number | null; - /** - * Generates `best_of` completions server-side and returns the \"best\" (the one with the highest log probability per token). Results cannot be streamed. When used with `n`, `best_of` controls the number of candidate completions and `n` specifies how many to return – `best_of` must be greater than `n`. **Note:** Because this parameter generates many completions, it can quickly consume your token quota. Use carefully and ensure that you have reasonable settings for `max_tokens` and `stop`. - * @type {number} - * @memberof CreateCompletionRequest - */ - 'best_of'?: number | null; - /** - * Modify the likelihood of specified tokens appearing in the completion. Accepts a json object that maps tokens (specified by their token ID in the GPT tokenizer) to an associated bias value from -100 to 100. You can use this [tokenizer tool](/tokenizer?view=bpe) (which works for both GPT-2 and GPT-3) to convert text to token IDs. Mathematically, the bias is added to the logits generated by the model prior to sampling. The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection; values like -100 or 100 should result in a ban or exclusive selection of the relevant token. As an example, you can pass `{\"50256\": -100}` to prevent the <|endoftext|> token from being generated. - * @type {object} - * @memberof CreateCompletionRequest - */ - 'logit_bias'?: object | null; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateCompletionRequest - */ - 'user'?: string; -} -/** - * @type CreateCompletionRequestPrompt - * The prompt(s) to generate completions for, encoded as a string, array of strings, array of tokens, or array of token arrays. Note that <|endoftext|> is the document separator that the model sees during training, so if a prompt is not specified the model will generate as if from the beginning of a new document. - * @export - */ -export type CreateCompletionRequestPrompt = Array | Array | Array | string; - -/** - * @type CreateCompletionRequestStop - * Up to 4 sequences where the API will stop generating further tokens. The returned text will not contain the stop sequence. - * @export - */ -export type CreateCompletionRequestStop = Array | string; - -/** - * - * @export - * @interface CreateCompletionResponse - */ -export interface CreateCompletionResponse { - /** - * - * @type {string} - * @memberof CreateCompletionResponse - */ - 'id': string; - /** - * - * @type {string} - * @memberof CreateCompletionResponse - */ - 'object': string; - /** - * - * @type {number} - * @memberof CreateCompletionResponse - */ - 'created': number; - /** - * - * @type {string} - * @memberof CreateCompletionResponse - */ - 'model': string; - /** - * - * @type {Array} - * @memberof CreateCompletionResponse - */ - 'choices': Array; - /** - * - * @type {CreateCompletionResponseUsage} - * @memberof CreateCompletionResponse - */ - 'usage'?: CreateCompletionResponseUsage; -} -/** - * - * @export - * @interface CreateCompletionResponseChoicesInner - */ -export interface CreateCompletionResponseChoicesInner { - /** - * - * @type {string} - * @memberof CreateCompletionResponseChoicesInner - */ - 'text'?: string; - /** - * - * @type {number} - * @memberof CreateCompletionResponseChoicesInner - */ - 'index'?: number; - /** - * - * @type {CreateCompletionResponseChoicesInnerLogprobs} - * @memberof CreateCompletionResponseChoicesInner - */ - 'logprobs'?: CreateCompletionResponseChoicesInnerLogprobs | null; - /** - * - * @type {string} - * @memberof CreateCompletionResponseChoicesInner - */ - 'finish_reason'?: string; -} -/** - * - * @export - * @interface CreateCompletionResponseChoicesInnerLogprobs - */ -export interface CreateCompletionResponseChoicesInnerLogprobs { - /** - * - * @type {Array} - * @memberof CreateCompletionResponseChoicesInnerLogprobs - */ - 'tokens'?: Array; - /** - * - * @type {Array} - * @memberof CreateCompletionResponseChoicesInnerLogprobs - */ - 'token_logprobs'?: Array; - /** - * - * @type {Array} - * @memberof CreateCompletionResponseChoicesInnerLogprobs - */ - 'top_logprobs'?: Array; - /** - * - * @type {Array} - * @memberof CreateCompletionResponseChoicesInnerLogprobs - */ - 'text_offset'?: Array; -} -/** - * - * @export - * @interface CreateCompletionResponseUsage - */ -export interface CreateCompletionResponseUsage { - /** - * - * @type {number} - * @memberof CreateCompletionResponseUsage - */ - 'prompt_tokens': number; - /** - * - * @type {number} - * @memberof CreateCompletionResponseUsage - */ - 'completion_tokens': number; - /** - * - * @type {number} - * @memberof CreateCompletionResponseUsage - */ - 'total_tokens': number; -} -/** - * - * @export - * @interface CreateEditRequest - */ -export interface CreateEditRequest { - /** - * ID of the model to use. You can use the `text-davinci-edit-001` or `code-davinci-edit-001` model with this endpoint. - * @type {string} - * @memberof CreateEditRequest - */ - 'model': string; - /** - * The input text to use as a starting point for the edit. - * @type {string} - * @memberof CreateEditRequest - */ - 'input'?: string | null; - /** - * The instruction that tells the model how to edit the prompt. - * @type {string} - * @memberof CreateEditRequest - */ - 'instruction': string; - /** - * How many edits to generate for the input and instruction. - * @type {number} - * @memberof CreateEditRequest - */ - 'n'?: number | null; - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both. - * @type {number} - * @memberof CreateEditRequest - */ - 'temperature'?: number | null; - /** - * An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. We generally recommend altering this or `temperature` but not both. - * @type {number} - * @memberof CreateEditRequest - */ - 'top_p'?: number | null; -} -/** - * - * @export - * @interface CreateEditResponse - */ -export interface CreateEditResponse { - /** - * - * @type {string} - * @memberof CreateEditResponse - */ - 'object': string; - /** - * - * @type {number} - * @memberof CreateEditResponse - */ - 'created': number; - /** - * - * @type {Array} - * @memberof CreateEditResponse - */ - 'choices': Array; - /** - * - * @type {CreateCompletionResponseUsage} - * @memberof CreateEditResponse - */ - 'usage': CreateCompletionResponseUsage; -} -/** - * - * @export - * @interface CreateEmbeddingRequest - */ -export interface CreateEmbeddingRequest { - /** - * ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. - * @type {string} - * @memberof CreateEmbeddingRequest - */ - 'model': string; - /** - * - * @type {CreateEmbeddingRequestInput} - * @memberof CreateEmbeddingRequest - */ - 'input': CreateEmbeddingRequestInput; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateEmbeddingRequest - */ - 'user'?: string; -} -/** - * @type CreateEmbeddingRequestInput - * Input text to embed, encoded as a string or array of tokens. To embed multiple inputs in a single request, pass an array of strings or array of token arrays. Each input must not exceed the max input tokens for the model (8191 tokens for `text-embedding-ada-002`). [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) for counting tokens. - * @export - */ -export type CreateEmbeddingRequestInput = Array | Array | Array | string; - -/** - * - * @export - * @interface CreateEmbeddingResponse - */ -export interface CreateEmbeddingResponse { - /** - * - * @type {string} - * @memberof CreateEmbeddingResponse - */ - 'object': string; - /** - * - * @type {string} - * @memberof CreateEmbeddingResponse - */ - 'model': string; - /** - * - * @type {Array} - * @memberof CreateEmbeddingResponse - */ - 'data': Array; - /** - * - * @type {CreateEmbeddingResponseUsage} - * @memberof CreateEmbeddingResponse - */ - 'usage': CreateEmbeddingResponseUsage; -} -/** - * - * @export - * @interface CreateEmbeddingResponseDataInner - */ -export interface CreateEmbeddingResponseDataInner { - /** - * - * @type {number} - * @memberof CreateEmbeddingResponseDataInner - */ - 'index': number; - /** - * - * @type {string} - * @memberof CreateEmbeddingResponseDataInner - */ - 'object': string; - /** - * - * @type {Array} - * @memberof CreateEmbeddingResponseDataInner - */ - 'embedding': Array; -} -/** - * - * @export - * @interface CreateEmbeddingResponseUsage - */ -export interface CreateEmbeddingResponseUsage { - /** - * - * @type {number} - * @memberof CreateEmbeddingResponseUsage - */ - 'prompt_tokens': number; - /** - * - * @type {number} - * @memberof CreateEmbeddingResponseUsage - */ - 'total_tokens': number; -} -/** - * - * @export - * @interface CreateFineTuneRequest - */ -export interface CreateFineTuneRequest { - /** - * The ID of an uploaded file that contains training data. See [upload file](/docs/api-reference/files/upload) for how to upload a file. Your dataset must be formatted as a JSONL file, where each training example is a JSON object with the keys \"prompt\" and \"completion\". Additionally, you must upload your file with the purpose `fine-tune`. See the [fine-tuning guide](/docs/guides/fine-tuning/creating-training-data) for more details. - * @type {string} - * @memberof CreateFineTuneRequest - */ - 'training_file': string; - /** - * The ID of an uploaded file that contains validation data. If you provide this file, the data is used to generate validation metrics periodically during fine-tuning. These metrics can be viewed in the [fine-tuning results file](/docs/guides/fine-tuning/analyzing-your-fine-tuned-model). Your train and validation data should be mutually exclusive. Your dataset must be formatted as a JSONL file, where each validation example is a JSON object with the keys \"prompt\" and \"completion\". Additionally, you must upload your file with the purpose `fine-tune`. See the [fine-tuning guide](/docs/guides/fine-tuning/creating-training-data) for more details. - * @type {string} - * @memberof CreateFineTuneRequest - */ - 'validation_file'?: string | null; - /** - * The name of the base model to fine-tune. You can select one of \"ada\", \"babbage\", \"curie\", \"davinci\", or a fine-tuned model created after 2022-04-21. To learn more about these models, see the [Models](https://platform.openai.com/docs/models) documentation. - * @type {string} - * @memberof CreateFineTuneRequest - */ - 'model'?: string | null; - /** - * The number of epochs to train the model for. An epoch refers to one full cycle through the training dataset. - * @type {number} - * @memberof CreateFineTuneRequest - */ - 'n_epochs'?: number | null; - /** - * The batch size to use for training. The batch size is the number of training examples used to train a single forward and backward pass. By default, the batch size will be dynamically configured to be ~0.2% of the number of examples in the training set, capped at 256 - in general, we\'ve found that larger batch sizes tend to work better for larger datasets. - * @type {number} - * @memberof CreateFineTuneRequest - */ - 'batch_size'?: number | null; - /** - * The learning rate multiplier to use for training. The fine-tuning learning rate is the original learning rate used for pretraining multiplied by this value. By default, the learning rate multiplier is the 0.05, 0.1, or 0.2 depending on final `batch_size` (larger learning rates tend to perform better with larger batch sizes). We recommend experimenting with values in the range 0.02 to 0.2 to see what produces the best results. - * @type {number} - * @memberof CreateFineTuneRequest - */ - 'learning_rate_multiplier'?: number | null; - /** - * The weight to use for loss on the prompt tokens. This controls how much the model tries to learn to generate the prompt (as compared to the completion which always has a weight of 1.0), and can add a stabilizing effect to training when completions are short. If prompts are extremely long (relative to completions), it may make sense to reduce this weight so as to avoid over-prioritizing learning the prompt. - * @type {number} - * @memberof CreateFineTuneRequest - */ - 'prompt_loss_weight'?: number | null; - /** - * If set, we calculate classification-specific metrics such as accuracy and F-1 score using the validation set at the end of every epoch. These metrics can be viewed in the [results file](/docs/guides/fine-tuning/analyzing-your-fine-tuned-model). In order to compute classification metrics, you must provide a `validation_file`. Additionally, you must specify `classification_n_classes` for multiclass classification or `classification_positive_class` for binary classification. - * @type {boolean} - * @memberof CreateFineTuneRequest - */ - 'compute_classification_metrics'?: boolean | null; - /** - * The number of classes in a classification task. This parameter is required for multiclass classification. - * @type {number} - * @memberof CreateFineTuneRequest - */ - 'classification_n_classes'?: number | null; - /** - * The positive class in binary classification. This parameter is needed to generate precision, recall, and F1 metrics when doing binary classification. - * @type {string} - * @memberof CreateFineTuneRequest - */ - 'classification_positive_class'?: string | null; - /** - * If this is provided, we calculate F-beta scores at the specified beta values. The F-beta score is a generalization of F-1 score. This is only used for binary classification. With a beta of 1 (i.e. the F-1 score), precision and recall are given the same weight. A larger beta score puts more weight on recall and less on precision. A smaller beta score puts more weight on precision and less on recall. - * @type {Array} - * @memberof CreateFineTuneRequest - */ - 'classification_betas'?: Array | null; - /** - * A string of up to 40 characters that will be added to your fine-tuned model name. For example, a `suffix` of \"custom-model-name\" would produce a model name like `ada:ft-your-org:custom-model-name-2022-02-15-04-21-04`. - * @type {string} - * @memberof CreateFineTuneRequest - */ - 'suffix'?: string | null; -} -/** - * - * @export - * @interface CreateImageRequest - */ -export interface CreateImageRequest { - /** - * A text description of the desired image(s). The maximum length is 1000 characters. - * @type {string} - * @memberof CreateImageRequest - */ - 'prompt': string; - /** - * The number of images to generate. Must be between 1 and 10. - * @type {number} - * @memberof CreateImageRequest - */ - 'n'?: number | null; - /** - * The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @type {string} - * @memberof CreateImageRequest - */ - 'size'?: CreateImageRequestSizeEnum; - /** - * The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @type {string} - * @memberof CreateImageRequest - */ - 'response_format'?: CreateImageRequestResponseFormatEnum; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateImageRequest - */ - 'user'?: string; -} - -export const CreateImageRequestSizeEnum = { - _256x256: '256x256', - _512x512: '512x512', - _1024x1024: '1024x1024' -} as const; - -export type CreateImageRequestSizeEnum = typeof CreateImageRequestSizeEnum[keyof typeof CreateImageRequestSizeEnum]; -export const CreateImageRequestResponseFormatEnum = { - Url: 'url', - B64Json: 'b64_json' -} as const; - -export type CreateImageRequestResponseFormatEnum = typeof CreateImageRequestResponseFormatEnum[keyof typeof CreateImageRequestResponseFormatEnum]; - -/** - * - * @export - * @interface CreateModerationRequest - */ -export interface CreateModerationRequest { - /** - * - * @type {CreateModerationRequestInput} - * @memberof CreateModerationRequest - */ - 'input': CreateModerationRequestInput; - /** - * Two content moderations models are available: `text-moderation-stable` and `text-moderation-latest`. The default is `text-moderation-latest` which will be automatically upgraded over time. This ensures you are always using our most accurate model. If you use `text-moderation-stable`, we will provide advanced notice before updating the model. Accuracy of `text-moderation-stable` may be slightly lower than for `text-moderation-latest`. - * @type {string} - * @memberof CreateModerationRequest - */ - 'model'?: string; -} -/** - * @type CreateModerationRequestInput - * The input text to classify - * @export - */ -export type CreateModerationRequestInput = Array | string; - -/** - * - * @export - * @interface CreateModerationResponse - */ -export interface CreateModerationResponse { - /** - * - * @type {string} - * @memberof CreateModerationResponse - */ - 'id': string; - /** - * - * @type {string} - * @memberof CreateModerationResponse - */ - 'model': string; - /** - * - * @type {Array} - * @memberof CreateModerationResponse - */ - 'results': Array; -} -/** - * - * @export - * @interface CreateModerationResponseResultsInner - */ -export interface CreateModerationResponseResultsInner { - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInner - */ - 'flagged': boolean; - /** - * - * @type {CreateModerationResponseResultsInnerCategories} - * @memberof CreateModerationResponseResultsInner - */ - 'categories': CreateModerationResponseResultsInnerCategories; - /** - * - * @type {CreateModerationResponseResultsInnerCategoryScores} - * @memberof CreateModerationResponseResultsInner - */ - 'category_scores': CreateModerationResponseResultsInnerCategoryScores; -} -/** - * - * @export - * @interface CreateModerationResponseResultsInnerCategories - */ -export interface CreateModerationResponseResultsInnerCategories { - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'hate': boolean; - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'hate/threatening': boolean; - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'self-harm': boolean; - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'sexual': boolean; - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'sexual/minors': boolean; - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'violence': boolean; - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'violence/graphic': boolean; -} -/** - * - * @export - * @interface CreateModerationResponseResultsInnerCategoryScores - */ -export interface CreateModerationResponseResultsInnerCategoryScores { - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'hate': number; - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'hate/threatening': number; - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'self-harm': number; - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'sexual': number; - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'sexual/minors': number; - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'violence': number; - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'violence/graphic': number; -} -/** - * - * @export - * @interface CreateSearchRequest - */ -export interface CreateSearchRequest { - /** - * Query to search against the documents. - * @type {string} - * @memberof CreateSearchRequest - */ - 'query': string; - /** - * Up to 200 documents to search over, provided as a list of strings. The maximum document length (in tokens) is 2034 minus the number of tokens in the query. You should specify either `documents` or a `file`, but not both. - * @type {Array} - * @memberof CreateSearchRequest - */ - 'documents'?: Array | null; - /** - * The ID of an uploaded file that contains documents to search over. You should specify either `documents` or a `file`, but not both. - * @type {string} - * @memberof CreateSearchRequest - */ - 'file'?: string | null; - /** - * The maximum number of documents to be re-ranked and returned by search. This flag only takes effect when `file` is set. - * @type {number} - * @memberof CreateSearchRequest - */ - 'max_rerank'?: number | null; - /** - * A special boolean flag for showing metadata. If set to `true`, each document entry in the returned JSON will contain a \"metadata\" field. This flag only takes effect when `file` is set. - * @type {boolean} - * @memberof CreateSearchRequest - */ - 'return_metadata'?: boolean | null; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateSearchRequest - */ - 'user'?: string; -} -/** - * - * @export - * @interface CreateSearchResponse - */ -export interface CreateSearchResponse { - /** - * - * @type {string} - * @memberof CreateSearchResponse - */ - 'object'?: string; - /** - * - * @type {string} - * @memberof CreateSearchResponse - */ - 'model'?: string; - /** - * - * @type {Array} - * @memberof CreateSearchResponse - */ - 'data'?: Array; -} -/** - * - * @export - * @interface CreateSearchResponseDataInner - */ -export interface CreateSearchResponseDataInner { - /** - * - * @type {string} - * @memberof CreateSearchResponseDataInner - */ - 'object'?: string; - /** - * - * @type {number} - * @memberof CreateSearchResponseDataInner - */ - 'document'?: number; - /** - * - * @type {number} - * @memberof CreateSearchResponseDataInner - */ - 'score'?: number; -} -/** - * - * @export - * @interface CreateTranscriptionResponse - */ -export interface CreateTranscriptionResponse { - /** - * - * @type {string} - * @memberof CreateTranscriptionResponse - */ - 'text': string; -} -/** - * - * @export - * @interface CreateTranslationResponse - */ -export interface CreateTranslationResponse { - /** - * - * @type {string} - * @memberof CreateTranslationResponse - */ - 'text': string; -} -/** - * - * @export - * @interface DeleteFileResponse - */ -export interface DeleteFileResponse { - /** - * - * @type {string} - * @memberof DeleteFileResponse - */ - 'id': string; - /** - * - * @type {string} - * @memberof DeleteFileResponse - */ - 'object': string; - /** - * - * @type {boolean} - * @memberof DeleteFileResponse - */ - 'deleted': boolean; -} -/** - * - * @export - * @interface DeleteModelResponse - */ -export interface DeleteModelResponse { - /** - * - * @type {string} - * @memberof DeleteModelResponse - */ - 'id': string; - /** - * - * @type {string} - * @memberof DeleteModelResponse - */ - 'object': string; - /** - * - * @type {boolean} - * @memberof DeleteModelResponse - */ - 'deleted': boolean; -} -/** - * - * @export - * @interface Engine - */ -export interface Engine { - /** - * - * @type {string} - * @memberof Engine - */ - 'id': string; - /** - * - * @type {string} - * @memberof Engine - */ - 'object': string; - /** - * - * @type {number} - * @memberof Engine - */ - 'created': number | null; - /** - * - * @type {boolean} - * @memberof Engine - */ - 'ready': boolean; -} -/** - * - * @export - * @interface ErrorResponse - */ -export interface ErrorResponse { - /** - * - * @type {Error} - * @memberof ErrorResponse - */ - 'error': Error; -} -/** - * - * @export - * @interface FineTune - */ -export interface FineTune { - /** - * - * @type {string} - * @memberof FineTune - */ - 'id': string; - /** - * - * @type {string} - * @memberof FineTune - */ - 'object': string; - /** - * - * @type {number} - * @memberof FineTune - */ - 'created_at': number; - /** - * - * @type {number} - * @memberof FineTune - */ - 'updated_at': number; - /** - * - * @type {string} - * @memberof FineTune - */ - 'model': string; - /** - * - * @type {string} - * @memberof FineTune - */ - 'fine_tuned_model': string | null; - /** - * - * @type {string} - * @memberof FineTune - */ - 'organization_id': string; - /** - * - * @type {string} - * @memberof FineTune - */ - 'status': string; - /** - * - * @type {object} - * @memberof FineTune - */ - 'hyperparams': object; - /** - * - * @type {Array} - * @memberof FineTune - */ - 'training_files': Array; - /** - * - * @type {Array} - * @memberof FineTune - */ - 'validation_files': Array; - /** - * - * @type {Array} - * @memberof FineTune - */ - 'result_files': Array; - /** - * - * @type {Array} - * @memberof FineTune - */ - 'events'?: Array; -} -/** - * - * @export - * @interface FineTuneEvent - */ -export interface FineTuneEvent { - /** - * - * @type {string} - * @memberof FineTuneEvent - */ - 'object': string; - /** - * - * @type {number} - * @memberof FineTuneEvent - */ - 'created_at': number; - /** - * - * @type {string} - * @memberof FineTuneEvent - */ - 'level': string; - /** - * - * @type {string} - * @memberof FineTuneEvent - */ - 'message': string; -} -/** - * - * @export - * @interface ImagesResponse - */ -export interface ImagesResponse { - /** - * - * @type {number} - * @memberof ImagesResponse - */ - 'created': number; - /** - * - * @type {Array} - * @memberof ImagesResponse - */ - 'data': Array; -} -/** - * - * @export - * @interface ImagesResponseDataInner - */ -export interface ImagesResponseDataInner { - /** - * - * @type {string} - * @memberof ImagesResponseDataInner - */ - 'url'?: string; - /** - * - * @type {string} - * @memberof ImagesResponseDataInner - */ - 'b64_json'?: string; -} -/** - * - * @export - * @interface ListEnginesResponse - */ -export interface ListEnginesResponse { - /** - * - * @type {string} - * @memberof ListEnginesResponse - */ - 'object': string; - /** - * - * @type {Array} - * @memberof ListEnginesResponse - */ - 'data': Array; -} -/** - * - * @export - * @interface ListFilesResponse - */ -export interface ListFilesResponse { - /** - * - * @type {string} - * @memberof ListFilesResponse - */ - 'object': string; - /** - * - * @type {Array} - * @memberof ListFilesResponse - */ - 'data': Array; -} -/** - * - * @export - * @interface ListFineTuneEventsResponse - */ -export interface ListFineTuneEventsResponse { - /** - * - * @type {string} - * @memberof ListFineTuneEventsResponse - */ - 'object': string; - /** - * - * @type {Array} - * @memberof ListFineTuneEventsResponse - */ - 'data': Array; -} -/** - * - * @export - * @interface ListFineTunesResponse - */ -export interface ListFineTunesResponse { - /** - * - * @type {string} - * @memberof ListFineTunesResponse - */ - 'object': string; - /** - * - * @type {Array} - * @memberof ListFineTunesResponse - */ - 'data': Array; -} -/** - * - * @export - * @interface ListModelsResponse - */ -export interface ListModelsResponse { - /** - * - * @type {string} - * @memberof ListModelsResponse - */ - 'object': string; - /** - * - * @type {Array} - * @memberof ListModelsResponse - */ - 'data': Array; -} -/** - * - * @export - * @interface Model - */ -export interface Model { - /** - * - * @type {string} - * @memberof Model - */ - 'id': string; - /** - * - * @type {string} - * @memberof Model - */ - 'object': string; - /** - * - * @type {number} - * @memberof Model - */ - 'created': number; - /** - * - * @type {string} - * @memberof Model - */ - 'owned_by': string; -} -/** - * - * @export - * @interface ModelError - */ -export interface ModelError { - /** - * - * @type {string} - * @memberof ModelError - */ - 'type': string; - /** - * - * @type {string} - * @memberof ModelError - */ - 'message': string; - /** - * - * @type {string} - * @memberof ModelError - */ - 'param': string | null; - /** - * - * @type {string} - * @memberof ModelError - */ - 'code': string | null; -} -/** - * - * @export - * @interface OpenAIFile - */ -export interface OpenAIFile { - /** - * - * @type {string} - * @memberof OpenAIFile - */ - 'id': string; - /** - * - * @type {string} - * @memberof OpenAIFile - */ - 'object': string; - /** - * - * @type {number} - * @memberof OpenAIFile - */ - 'bytes': number; - /** - * - * @type {number} - * @memberof OpenAIFile - */ - 'created_at': number; - /** - * - * @type {string} - * @memberof OpenAIFile - */ - 'filename': string; - /** - * - * @type {string} - * @memberof OpenAIFile - */ - 'purpose': string; - /** - * - * @type {string} - * @memberof OpenAIFile - */ - 'status'?: string; - /** - * - * @type {object} - * @memberof OpenAIFile - */ - 'status_details'?: object | null; -} - -/** - * OpenAIApi - axios parameter creator - * @export - */ -export const OpenAIApiAxiosParamCreator = function (configuration?: Configuration) { - return { - /** - * - * @summary Immediately cancel a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to cancel - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - cancelFineTune: async (fineTuneId: string, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'fineTuneId' is not null or undefined - assertParamExists('cancelFineTune', 'fineTuneId', fineTuneId) - const localVarPath = `/fine-tunes/{fine_tune_id}/cancel` - .replace(`{${"fine_tune_id"}}`, encodeURIComponent(String(fineTuneId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Answers the specified question using the provided documents and examples. The endpoint first [searches](/docs/api-reference/searches) over provided documents or files to find relevant context. The relevant context is combined with the provided examples and question to create the prompt for [completion](/docs/api-reference/completions). - * @param {CreateAnswerRequest} createAnswerRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createAnswer: async (createAnswerRequest: CreateAnswerRequest, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'createAnswerRequest' is not null or undefined - assertParamExists('createAnswer', 'createAnswerRequest', createAnswerRequest) - const localVarPath = `/answers`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(createAnswerRequest, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Creates a model response for the given chat conversation. - * @param {CreateChatCompletionRequest} createChatCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createChatCompletion: async (createChatCompletionRequest: CreateChatCompletionRequest, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'createChatCompletionRequest' is not null or undefined - assertParamExists('createChatCompletion', 'createChatCompletionRequest', createChatCompletionRequest) - const localVarPath = `/chat/completions`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(createChatCompletionRequest, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. - * @param {CreateClassificationRequest} createClassificationRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createClassification: async (createClassificationRequest: CreateClassificationRequest, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'createClassificationRequest' is not null or undefined - assertParamExists('createClassification', 'createClassificationRequest', createClassificationRequest) - const localVarPath = `/classifications`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(createClassificationRequest, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Creates a completion for the provided prompt and parameters. - * @param {CreateCompletionRequest} createCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createCompletion: async (createCompletionRequest: CreateCompletionRequest, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'createCompletionRequest' is not null or undefined - assertParamExists('createCompletion', 'createCompletionRequest', createCompletionRequest) - const localVarPath = `/completions`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(createCompletionRequest, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Creates a new edit for the provided input, instruction, and parameters. - * @param {CreateEditRequest} createEditRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEdit: async (createEditRequest: CreateEditRequest, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'createEditRequest' is not null or undefined - assertParamExists('createEdit', 'createEditRequest', createEditRequest) - const localVarPath = `/edits`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(createEditRequest, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Creates an embedding vector representing the input text. - * @param {CreateEmbeddingRequest} createEmbeddingRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEmbedding: async (createEmbeddingRequest: CreateEmbeddingRequest, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'createEmbeddingRequest' is not null or undefined - assertParamExists('createEmbedding', 'createEmbeddingRequest', createEmbeddingRequest) - const localVarPath = `/embeddings`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(createEmbeddingRequest, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit. - * @param {File} file Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded. If the `purpose` is set to \\\"fine-tune\\\", each line is a JSON record with \\\"prompt\\\" and \\\"completion\\\" fields representing your [training examples](/docs/guides/fine-tuning/prepare-training-data). - * @param {string} purpose The intended purpose of the uploaded documents. Use \\\"fine-tune\\\" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows us to validate the format of the uploaded file. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFile: async (file: File, purpose: string, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'file' is not null or undefined - assertParamExists('createFile', 'file', file) - // verify required parameter 'purpose' is not null or undefined - assertParamExists('createFile', 'purpose', purpose) - const localVarPath = `/files`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)(); - - - if (file !== undefined) { - localVarFormParams.append('file', file as any); - } - - if (purpose !== undefined) { - localVarFormParams.append('purpose', purpose as any); - } - - - localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...localVarFormParams.getHeaders(), ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = localVarFormParams; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {CreateFineTuneRequest} createFineTuneRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFineTune: async (createFineTuneRequest: CreateFineTuneRequest, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'createFineTuneRequest' is not null or undefined - assertParamExists('createFineTune', 'createFineTuneRequest', createFineTuneRequest) - const localVarPath = `/fine-tunes`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(createFineTuneRequest, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Creates an image given a prompt. - * @param {CreateImageRequest} createImageRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImage: async (createImageRequest: CreateImageRequest, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'createImageRequest' is not null or undefined - assertParamExists('createImage', 'createImageRequest', createImageRequest) - const localVarPath = `/images/generations`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(createImageRequest, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. - * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. - * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageEdit: async (image: File, prompt: string, mask?: File, n?: number, size?: string, responseFormat?: string, user?: string, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'image' is not null or undefined - assertParamExists('createImageEdit', 'image', image) - // verify required parameter 'prompt' is not null or undefined - assertParamExists('createImageEdit', 'prompt', prompt) - const localVarPath = `/images/edits`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)(); - - - if (image !== undefined) { - localVarFormParams.append('image', image as any); - } - - if (mask !== undefined) { - localVarFormParams.append('mask', mask as any); - } - - if (prompt !== undefined) { - localVarFormParams.append('prompt', prompt as any); - } - - if (n !== undefined) { - localVarFormParams.append('n', n as any); - } - - if (size !== undefined) { - localVarFormParams.append('size', size as any); - } - - if (responseFormat !== undefined) { - localVarFormParams.append('response_format', responseFormat as any); - } - - if (user !== undefined) { - localVarFormParams.append('user', user as any); - } - - - localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...localVarFormParams.getHeaders(), ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = localVarFormParams; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Creates a variation of a given image. - * @param {File} image The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageVariation: async (image: File, n?: number, size?: string, responseFormat?: string, user?: string, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'image' is not null or undefined - assertParamExists('createImageVariation', 'image', image) - const localVarPath = `/images/variations`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)(); - - - if (image !== undefined) { - localVarFormParams.append('image', image as any); - } - - if (n !== undefined) { - localVarFormParams.append('n', n as any); - } - - if (size !== undefined) { - localVarFormParams.append('size', size as any); - } - - if (responseFormat !== undefined) { - localVarFormParams.append('response_format', responseFormat as any); - } - - if (user !== undefined) { - localVarFormParams.append('user', user as any); - } - - - localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...localVarFormParams.getHeaders(), ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = localVarFormParams; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Classifies if text violates OpenAI\'s Content Policy - * @param {CreateModerationRequest} createModerationRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createModeration: async (createModerationRequest: CreateModerationRequest, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'createModerationRequest' is not null or undefined - assertParamExists('createModeration', 'createModerationRequest', createModerationRequest) - const localVarPath = `/moderations`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(createModerationRequest, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary The search endpoint computes similarity scores between provided query and documents. Documents can be passed directly to the API if there are no more than 200 of them. To go beyond the 200 document limit, documents can be processed offline and then used for efficient retrieval at query time. When `file` is set, the search endpoint searches over all the documents in the given file and returns up to the `max_rerank` number of documents. These documents will be returned along with their search scores. The similarity score is a positive score that usually ranges from 0 to 300 (but can sometimes go higher), where a score above 200 usually means the document is semantically similar to the query. - * @param {string} engineId The ID of the engine to use for this request. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @param {CreateSearchRequest} createSearchRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createSearch: async (engineId: string, createSearchRequest: CreateSearchRequest, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'engineId' is not null or undefined - assertParamExists('createSearch', 'engineId', engineId) - // verify required parameter 'createSearchRequest' is not null or undefined - assertParamExists('createSearch', 'createSearchRequest', createSearchRequest) - const localVarPath = `/engines/{engine_id}/search` - .replace(`{${"engine_id"}}`, encodeURIComponent(String(engineId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - localVarHeaderParameter['Content-Type'] = 'application/json'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = serializeDataIfNeeded(createSearchRequest, localVarRequestOptions, configuration) - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Transcribes audio into the input language. - * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranscription: async (file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, language?: string, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'file' is not null or undefined - assertParamExists('createTranscription', 'file', file) - // verify required parameter 'model' is not null or undefined - assertParamExists('createTranscription', 'model', model) - const localVarPath = `/audio/transcriptions`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)(); - - - if (file !== undefined) { - localVarFormParams.append('file', file as any); - } - - if (model !== undefined) { - localVarFormParams.append('model', model as any); - } - - if (prompt !== undefined) { - localVarFormParams.append('prompt', prompt as any); - } - - if (responseFormat !== undefined) { - localVarFormParams.append('response_format', responseFormat as any); - } - - if (temperature !== undefined) { - localVarFormParams.append('temperature', temperature as any); - } - - if (language !== undefined) { - localVarFormParams.append('language', language as any); - } - - - localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...localVarFormParams.getHeaders(), ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = localVarFormParams; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Translates audio into into English. - * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranslation: async (file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'file' is not null or undefined - assertParamExists('createTranslation', 'file', file) - // verify required parameter 'model' is not null or undefined - assertParamExists('createTranslation', 'model', model) - const localVarPath = `/audio/translations`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)(); - - - if (file !== undefined) { - localVarFormParams.append('file', file as any); - } - - if (model !== undefined) { - localVarFormParams.append('model', model as any); - } - - if (prompt !== undefined) { - localVarFormParams.append('prompt', prompt as any); - } - - if (responseFormat !== undefined) { - localVarFormParams.append('response_format', responseFormat as any); - } - - if (temperature !== undefined) { - localVarFormParams.append('temperature', temperature as any); - } - - - localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...localVarFormParams.getHeaders(), ...headersFromBaseOptions, ...options.headers}; - localVarRequestOptions.data = localVarFormParams; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Delete a file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteFile: async (fileId: string, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'fileId' is not null or undefined - assertParamExists('deleteFile', 'fileId', fileId) - const localVarPath = `/files/{file_id}` - .replace(`{${"file_id"}}`, encodeURIComponent(String(fileId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Delete a fine-tuned model. You must have the Owner role in your organization. - * @param {string} model The model to delete - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteModel: async (model: string, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'model' is not null or undefined - assertParamExists('deleteModel', 'model', model) - const localVarPath = `/models/{model}` - .replace(`{${"model"}}`, encodeURIComponent(String(model))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Returns the contents of the specified file - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - downloadFile: async (fileId: string, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'fileId' is not null or undefined - assertParamExists('downloadFile', 'fileId', fileId) - const localVarPath = `/files/{file_id}/content` - .replace(`{${"file_id"}}`, encodeURIComponent(String(fileId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - listEngines: async (options: AxiosRequestConfig = {}): Promise => { - const localVarPath = `/engines`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Returns a list of files that belong to the user\'s organization. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFiles: async (options: AxiosRequestConfig = {}): Promise => { - const localVarPath = `/files`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Get fine-grained status updates for a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to get events for. - * @param {boolean} [stream] Whether to stream events for the fine-tune job. If set to true, events will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available. The stream will terminate with a `data: [DONE]` message when the job is finished (succeeded, cancelled, or failed). If set to false, only events generated so far will be returned. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTuneEvents: async (fineTuneId: string, stream?: boolean, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'fineTuneId' is not null or undefined - assertParamExists('listFineTuneEvents', 'fineTuneId', fineTuneId) - const localVarPath = `/fine-tunes/{fine_tune_id}/events` - .replace(`{${"fine_tune_id"}}`, encodeURIComponent(String(fineTuneId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - if (stream !== undefined) { - localVarQueryParameter['stream'] = stream; - } - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary List your organization\'s fine-tuning jobs - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTunes: async (options: AxiosRequestConfig = {}): Promise => { - const localVarPath = `/fine-tunes`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Lists the currently available models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listModels: async (options: AxiosRequestConfig = {}): Promise => { - const localVarPath = `/models`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Retrieves a model instance, providing basic information about it such as the owner and availability. - * @param {string} engineId The ID of the engine to use for this request - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - retrieveEngine: async (engineId: string, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'engineId' is not null or undefined - assertParamExists('retrieveEngine', 'engineId', engineId) - const localVarPath = `/engines/{engine_id}` - .replace(`{${"engine_id"}}`, encodeURIComponent(String(engineId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Returns information about a specific file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFile: async (fileId: string, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'fileId' is not null or undefined - assertParamExists('retrieveFile', 'fileId', fileId) - const localVarPath = `/files/{file_id}` - .replace(`{${"file_id"}}`, encodeURIComponent(String(fileId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Gets info about the fine-tune job. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {string} fineTuneId The ID of the fine-tune job - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFineTune: async (fineTuneId: string, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'fineTuneId' is not null or undefined - assertParamExists('retrieveFineTune', 'fineTuneId', fineTuneId) - const localVarPath = `/fine-tunes/{fine_tune_id}` - .replace(`{${"fine_tune_id"}}`, encodeURIComponent(String(fineTuneId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - /** - * - * @summary Retrieves a model instance, providing basic information about the model such as the owner and permissioning. - * @param {string} model The ID of the model to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveModel: async (model: string, options: AxiosRequestConfig = {}): Promise => { - // verify required parameter 'model' is not null or undefined - assertParamExists('retrieveModel', 'model', model) - const localVarPath = `/models/{model}` - .replace(`{${"model"}}`, encodeURIComponent(String(model))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - - const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; - const localVarHeaderParameter = {} as any; - const localVarQueryParameter = {} as any; - - - - setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; - - return { - url: toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }, - } -}; - -/** - * OpenAIApi - functional programming interface - * @export - */ -export const OpenAIApiFp = function(configuration?: Configuration) { - const localVarAxiosParamCreator = OpenAIApiAxiosParamCreator(configuration) - return { - /** - * - * @summary Immediately cancel a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to cancel - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async cancelFineTune(fineTuneId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.cancelFineTune(fineTuneId, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Answers the specified question using the provided documents and examples. The endpoint first [searches](/docs/api-reference/searches) over provided documents or files to find relevant context. The relevant context is combined with the provided examples and question to create the prompt for [completion](/docs/api-reference/completions). - * @param {CreateAnswerRequest} createAnswerRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - async createAnswer(createAnswerRequest: CreateAnswerRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createAnswer(createAnswerRequest, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Creates a model response for the given chat conversation. - * @param {CreateChatCompletionRequest} createChatCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createChatCompletion(createChatCompletionRequest: CreateChatCompletionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createChatCompletion(createChatCompletionRequest, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. - * @param {CreateClassificationRequest} createClassificationRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - async createClassification(createClassificationRequest: CreateClassificationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createClassification(createClassificationRequest, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Creates a completion for the provided prompt and parameters. - * @param {CreateCompletionRequest} createCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createCompletion(createCompletionRequest: CreateCompletionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createCompletion(createCompletionRequest, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Creates a new edit for the provided input, instruction, and parameters. - * @param {CreateEditRequest} createEditRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createEdit(createEditRequest: CreateEditRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createEdit(createEditRequest, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Creates an embedding vector representing the input text. - * @param {CreateEmbeddingRequest} createEmbeddingRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createEmbedding(createEmbeddingRequest: CreateEmbeddingRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createEmbedding(createEmbeddingRequest, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit. - * @param {File} file Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded. If the `purpose` is set to \\\"fine-tune\\\", each line is a JSON record with \\\"prompt\\\" and \\\"completion\\\" fields representing your [training examples](/docs/guides/fine-tuning/prepare-training-data). - * @param {string} purpose The intended purpose of the uploaded documents. Use \\\"fine-tune\\\" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows us to validate the format of the uploaded file. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createFile(file: File, purpose: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createFile(file, purpose, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {CreateFineTuneRequest} createFineTuneRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createFineTune(createFineTuneRequest: CreateFineTuneRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createFineTune(createFineTuneRequest, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Creates an image given a prompt. - * @param {CreateImageRequest} createImageRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createImage(createImageRequest: CreateImageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createImage(createImageRequest, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. - * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. - * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createImageEdit(image: File, prompt: string, mask?: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createImageEdit(image, prompt, mask, n, size, responseFormat, user, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Creates a variation of a given image. - * @param {File} image The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createImageVariation(image: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createImageVariation(image, n, size, responseFormat, user, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Classifies if text violates OpenAI\'s Content Policy - * @param {CreateModerationRequest} createModerationRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createModeration(createModerationRequest: CreateModerationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createModeration(createModerationRequest, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary The search endpoint computes similarity scores between provided query and documents. Documents can be passed directly to the API if there are no more than 200 of them. To go beyond the 200 document limit, documents can be processed offline and then used for efficient retrieval at query time. When `file` is set, the search endpoint searches over all the documents in the given file and returns up to the `max_rerank` number of documents. These documents will be returned along with their search scores. The similarity score is a positive score that usually ranges from 0 to 300 (but can sometimes go higher), where a score above 200 usually means the document is semantically similar to the query. - * @param {string} engineId The ID of the engine to use for this request. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @param {CreateSearchRequest} createSearchRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - async createSearch(engineId: string, createSearchRequest: CreateSearchRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createSearch(engineId, createSearchRequest, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Transcribes audio into the input language. - * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, language?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createTranscription(file, model, prompt, responseFormat, temperature, language, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Translates audio into into English. - * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async createTranslation(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.createTranslation(file, model, prompt, responseFormat, temperature, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Delete a file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async deleteFile(fileId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.deleteFile(fileId, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Delete a fine-tuned model. You must have the Owner role in your organization. - * @param {string} model The model to delete - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async deleteModel(model: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.deleteModel(model, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Returns the contents of the specified file - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async downloadFile(fileId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.downloadFile(fileId, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - async listEngines(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.listEngines(options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Returns a list of files that belong to the user\'s organization. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async listFiles(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.listFiles(options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Get fine-grained status updates for a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to get events for. - * @param {boolean} [stream] Whether to stream events for the fine-tune job. If set to true, events will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available. The stream will terminate with a `data: [DONE]` message when the job is finished (succeeded, cancelled, or failed). If set to false, only events generated so far will be returned. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async listFineTuneEvents(fineTuneId: string, stream?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.listFineTuneEvents(fineTuneId, stream, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary List your organization\'s fine-tuning jobs - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async listFineTunes(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.listFineTunes(options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Lists the currently available models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async listModels(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.listModels(options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Retrieves a model instance, providing basic information about it such as the owner and availability. - * @param {string} engineId The ID of the engine to use for this request - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - async retrieveEngine(engineId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.retrieveEngine(engineId, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Returns information about a specific file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async retrieveFile(fileId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.retrieveFile(fileId, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Gets info about the fine-tune job. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {string} fineTuneId The ID of the fine-tune job - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async retrieveFineTune(fineTuneId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.retrieveFineTune(fineTuneId, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - /** - * - * @summary Retrieves a model instance, providing basic information about the model such as the owner and permissioning. - * @param {string} model The ID of the model to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - async retrieveModel(model: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.retrieveModel(model, options); - return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); - }, - } -}; - -/** - * OpenAIApi - factory interface - * @export - */ -export const OpenAIApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) { - const localVarFp = OpenAIApiFp(configuration) - return { - /** - * - * @summary Immediately cancel a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to cancel - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - cancelFineTune(fineTuneId: string, options?: any): AxiosPromise { - return localVarFp.cancelFineTune(fineTuneId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Answers the specified question using the provided documents and examples. The endpoint first [searches](/docs/api-reference/searches) over provided documents or files to find relevant context. The relevant context is combined with the provided examples and question to create the prompt for [completion](/docs/api-reference/completions). - * @param {CreateAnswerRequest} createAnswerRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createAnswer(createAnswerRequest: CreateAnswerRequest, options?: any): AxiosPromise { - return localVarFp.createAnswer(createAnswerRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates a model response for the given chat conversation. - * @param {CreateChatCompletionRequest} createChatCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createChatCompletion(createChatCompletionRequest: CreateChatCompletionRequest, options?: any): AxiosPromise { - return localVarFp.createChatCompletion(createChatCompletionRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. - * @param {CreateClassificationRequest} createClassificationRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createClassification(createClassificationRequest: CreateClassificationRequest, options?: any): AxiosPromise { - return localVarFp.createClassification(createClassificationRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates a completion for the provided prompt and parameters. - * @param {CreateCompletionRequest} createCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createCompletion(createCompletionRequest: CreateCompletionRequest, options?: any): AxiosPromise { - return localVarFp.createCompletion(createCompletionRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates a new edit for the provided input, instruction, and parameters. - * @param {CreateEditRequest} createEditRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEdit(createEditRequest: CreateEditRequest, options?: any): AxiosPromise { - return localVarFp.createEdit(createEditRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates an embedding vector representing the input text. - * @param {CreateEmbeddingRequest} createEmbeddingRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEmbedding(createEmbeddingRequest: CreateEmbeddingRequest, options?: any): AxiosPromise { - return localVarFp.createEmbedding(createEmbeddingRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit. - * @param {File} file Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded. If the `purpose` is set to \\\"fine-tune\\\", each line is a JSON record with \\\"prompt\\\" and \\\"completion\\\" fields representing your [training examples](/docs/guides/fine-tuning/prepare-training-data). - * @param {string} purpose The intended purpose of the uploaded documents. Use \\\"fine-tune\\\" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows us to validate the format of the uploaded file. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFile(file: File, purpose: string, options?: any): AxiosPromise { - return localVarFp.createFile(file, purpose, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {CreateFineTuneRequest} createFineTuneRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFineTune(createFineTuneRequest: CreateFineTuneRequest, options?: any): AxiosPromise { - return localVarFp.createFineTune(createFineTuneRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates an image given a prompt. - * @param {CreateImageRequest} createImageRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImage(createImageRequest: CreateImageRequest, options?: any): AxiosPromise { - return localVarFp.createImage(createImageRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. - * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. - * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageEdit(image: File, prompt: string, mask?: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: any): AxiosPromise { - return localVarFp.createImageEdit(image, prompt, mask, n, size, responseFormat, user, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates a variation of a given image. - * @param {File} image The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageVariation(image: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: any): AxiosPromise { - return localVarFp.createImageVariation(image, n, size, responseFormat, user, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Classifies if text violates OpenAI\'s Content Policy - * @param {CreateModerationRequest} createModerationRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createModeration(createModerationRequest: CreateModerationRequest, options?: any): AxiosPromise { - return localVarFp.createModeration(createModerationRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary The search endpoint computes similarity scores between provided query and documents. Documents can be passed directly to the API if there are no more than 200 of them. To go beyond the 200 document limit, documents can be processed offline and then used for efficient retrieval at query time. When `file` is set, the search endpoint searches over all the documents in the given file and returns up to the `max_rerank` number of documents. These documents will be returned along with their search scores. The similarity score is a positive score that usually ranges from 0 to 300 (but can sometimes go higher), where a score above 200 usually means the document is semantically similar to the query. - * @param {string} engineId The ID of the engine to use for this request. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @param {CreateSearchRequest} createSearchRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createSearch(engineId: string, createSearchRequest: CreateSearchRequest, options?: any): AxiosPromise { - return localVarFp.createSearch(engineId, createSearchRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Transcribes audio into the input language. - * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, language?: string, options?: any): AxiosPromise { - return localVarFp.createTranscription(file, model, prompt, responseFormat, temperature, language, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Translates audio into into English. - * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranslation(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: any): AxiosPromise { - return localVarFp.createTranslation(file, model, prompt, responseFormat, temperature, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Delete a file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteFile(fileId: string, options?: any): AxiosPromise { - return localVarFp.deleteFile(fileId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Delete a fine-tuned model. You must have the Owner role in your organization. - * @param {string} model The model to delete - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteModel(model: string, options?: any): AxiosPromise { - return localVarFp.deleteModel(model, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Returns the contents of the specified file - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - downloadFile(fileId: string, options?: any): AxiosPromise { - return localVarFp.downloadFile(fileId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - listEngines(options?: any): AxiosPromise { - return localVarFp.listEngines(options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Returns a list of files that belong to the user\'s organization. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFiles(options?: any): AxiosPromise { - return localVarFp.listFiles(options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Get fine-grained status updates for a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to get events for. - * @param {boolean} [stream] Whether to stream events for the fine-tune job. If set to true, events will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available. The stream will terminate with a `data: [DONE]` message when the job is finished (succeeded, cancelled, or failed). If set to false, only events generated so far will be returned. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTuneEvents(fineTuneId: string, stream?: boolean, options?: any): AxiosPromise { - return localVarFp.listFineTuneEvents(fineTuneId, stream, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary List your organization\'s fine-tuning jobs - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTunes(options?: any): AxiosPromise { - return localVarFp.listFineTunes(options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Lists the currently available models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listModels(options?: any): AxiosPromise { - return localVarFp.listModels(options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Retrieves a model instance, providing basic information about it such as the owner and availability. - * @param {string} engineId The ID of the engine to use for this request - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - retrieveEngine(engineId: string, options?: any): AxiosPromise { - return localVarFp.retrieveEngine(engineId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Returns information about a specific file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFile(fileId: string, options?: any): AxiosPromise { - return localVarFp.retrieveFile(fileId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Gets info about the fine-tune job. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {string} fineTuneId The ID of the fine-tune job - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFineTune(fineTuneId: string, options?: any): AxiosPromise { - return localVarFp.retrieveFineTune(fineTuneId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Retrieves a model instance, providing basic information about the model such as the owner and permissioning. - * @param {string} model The ID of the model to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveModel(model: string, options?: any): AxiosPromise { - return localVarFp.retrieveModel(model, options).then((request) => request(axios, basePath)); - }, - }; -}; - -/** - * OpenAIApi - object-oriented interface - * @export - * @class OpenAIApi - * @extends {BaseAPI} - */ -export class OpenAIApi extends BaseAPI { - /** - * - * @summary Immediately cancel a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to cancel - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public cancelFineTune(fineTuneId: string, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).cancelFineTune(fineTuneId, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Answers the specified question using the provided documents and examples. The endpoint first [searches](/docs/api-reference/searches) over provided documents or files to find relevant context. The relevant context is combined with the provided examples and question to create the prompt for [completion](/docs/api-reference/completions). - * @param {CreateAnswerRequest} createAnswerRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public createAnswer(createAnswerRequest: CreateAnswerRequest, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).createAnswer(createAnswerRequest, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Creates a model response for the given chat conversation. - * @param {CreateChatCompletionRequest} createChatCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public createChatCompletion(createChatCompletionRequest: CreateChatCompletionRequest, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).createChatCompletion(createChatCompletionRequest, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. - * @param {CreateClassificationRequest} createClassificationRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public createClassification(createClassificationRequest: CreateClassificationRequest, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).createClassification(createClassificationRequest, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Creates a completion for the provided prompt and parameters. - * @param {CreateCompletionRequest} createCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public createCompletion(createCompletionRequest: CreateCompletionRequest, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).createCompletion(createCompletionRequest, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Creates a new edit for the provided input, instruction, and parameters. - * @param {CreateEditRequest} createEditRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public createEdit(createEditRequest: CreateEditRequest, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).createEdit(createEditRequest, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Creates an embedding vector representing the input text. - * @param {CreateEmbeddingRequest} createEmbeddingRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public createEmbedding(createEmbeddingRequest: CreateEmbeddingRequest, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).createEmbedding(createEmbeddingRequest, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit. - * @param {File} file Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded. If the `purpose` is set to \\\"fine-tune\\\", each line is a JSON record with \\\"prompt\\\" and \\\"completion\\\" fields representing your [training examples](/docs/guides/fine-tuning/prepare-training-data). - * @param {string} purpose The intended purpose of the uploaded documents. Use \\\"fine-tune\\\" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows us to validate the format of the uploaded file. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public createFile(file: File, purpose: string, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).createFile(file, purpose, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {CreateFineTuneRequest} createFineTuneRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public createFineTune(createFineTuneRequest: CreateFineTuneRequest, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).createFineTune(createFineTuneRequest, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Creates an image given a prompt. - * @param {CreateImageRequest} createImageRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public createImage(createImageRequest: CreateImageRequest, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).createImage(createImageRequest, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. - * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. - * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public createImageEdit(image: File, prompt: string, mask?: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).createImageEdit(image, prompt, mask, n, size, responseFormat, user, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Creates a variation of a given image. - * @param {File} image The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public createImageVariation(image: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).createImageVariation(image, n, size, responseFormat, user, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Classifies if text violates OpenAI\'s Content Policy - * @param {CreateModerationRequest} createModerationRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public createModeration(createModerationRequest: CreateModerationRequest, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).createModeration(createModerationRequest, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary The search endpoint computes similarity scores between provided query and documents. Documents can be passed directly to the API if there are no more than 200 of them. To go beyond the 200 document limit, documents can be processed offline and then used for efficient retrieval at query time. When `file` is set, the search endpoint searches over all the documents in the given file and returns up to the `max_rerank` number of documents. These documents will be returned along with their search scores. The similarity score is a positive score that usually ranges from 0 to 300 (but can sometimes go higher), where a score above 200 usually means the document is semantically similar to the query. - * @param {string} engineId The ID of the engine to use for this request. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @param {CreateSearchRequest} createSearchRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public createSearch(engineId: string, createSearchRequest: CreateSearchRequest, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).createSearch(engineId, createSearchRequest, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Transcribes audio into the input language. - * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, language?: string, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).createTranscription(file, model, prompt, responseFormat, temperature, language, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Translates audio into into English. - * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public createTranslation(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).createTranslation(file, model, prompt, responseFormat, temperature, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Delete a file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public deleteFile(fileId: string, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).deleteFile(fileId, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Delete a fine-tuned model. You must have the Owner role in your organization. - * @param {string} model The model to delete - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public deleteModel(model: string, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).deleteModel(model, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Returns the contents of the specified file - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public downloadFile(fileId: string, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).downloadFile(fileId, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public listEngines(options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).listEngines(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Returns a list of files that belong to the user\'s organization. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public listFiles(options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).listFiles(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Get fine-grained status updates for a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to get events for. - * @param {boolean} [stream] Whether to stream events for the fine-tune job. If set to true, events will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available. The stream will terminate with a `data: [DONE]` message when the job is finished (succeeded, cancelled, or failed). If set to false, only events generated so far will be returned. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public listFineTuneEvents(fineTuneId: string, stream?: boolean, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).listFineTuneEvents(fineTuneId, stream, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary List your organization\'s fine-tuning jobs - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public listFineTunes(options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).listFineTunes(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Lists the currently available models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public listModels(options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).listModels(options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Retrieves a model instance, providing basic information about it such as the owner and availability. - * @param {string} engineId The ID of the engine to use for this request - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public retrieveEngine(engineId: string, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).retrieveEngine(engineId, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Returns information about a specific file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public retrieveFile(fileId: string, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).retrieveFile(fileId, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Gets info about the fine-tune job. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {string} fineTuneId The ID of the fine-tune job - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public retrieveFineTune(fineTuneId: string, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).retrieveFineTune(fineTuneId, options).then((request) => request(this.axios, this.basePath)); - } - - /** - * - * @summary Retrieves a model instance, providing basic information about the model such as the owner and permissioning. - * @param {string} model The ID of the model to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - public retrieveModel(model: string, options?: AxiosRequestConfig) { - return OpenAIApiFp(this.configuration).retrieveModel(model, options).then((request) => request(this.axios, this.basePath)); - } -} - - diff --git a/base.ts b/base.ts deleted file mode 100644 index a2c5eb0d4..000000000 --- a/base.ts +++ /dev/null @@ -1,72 +0,0 @@ -/* tslint:disable */ -/* eslint-disable */ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.3.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -import type { Configuration } from './configuration'; -// Some imports not used depending on template conditions -// @ts-ignore -import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios'; -import globalAxios from 'axios'; - -export const BASE_PATH = "https://api.openai.com/v1".replace(/\/+$/, ""); - -/** - * - * @export - */ -export const COLLECTION_FORMATS = { - csv: ",", - ssv: " ", - tsv: "\t", - pipes: "|", -}; - -/** - * - * @export - * @interface RequestArgs - */ -export interface RequestArgs { - url: string; - options: AxiosRequestConfig; -} - -/** - * - * @export - * @class BaseAPI - */ -export class BaseAPI { - protected configuration: Configuration | undefined; - - constructor(configuration?: Configuration, protected basePath: string = BASE_PATH, protected axios: AxiosInstance = globalAxios) { - if (configuration) { - this.configuration = configuration; - this.basePath = configuration.basePath || this.basePath; - } - } -}; - -/** - * - * @export - * @class RequiredError - * @extends {Error} - */ -export class RequiredError extends Error { - constructor(public field: string, msg?: string) { - super(msg); - this.name = "RequiredError" - } -} diff --git a/common.ts b/common.ts deleted file mode 100644 index 37662811c..000000000 --- a/common.ts +++ /dev/null @@ -1,150 +0,0 @@ -/* tslint:disable */ -/* eslint-disable */ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.3.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -import type { Configuration } from "./configuration"; -import type { RequestArgs } from "./base"; -import type { AxiosInstance, AxiosResponse } from 'axios'; -import { RequiredError } from "./base"; - -/** - * - * @export - */ -export const DUMMY_BASE_URL = 'https://example.com/' - -/** - * - * @throws {RequiredError} - * @export - */ -export const assertParamExists = function (functionName: string, paramName: string, paramValue: unknown) { - if (paramValue === null || paramValue === undefined) { - throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`); - } -} - -/** - * - * @export - */ -export const setApiKeyToObject = async function (object: any, keyParamName: string, configuration?: Configuration) { - if (configuration && configuration.apiKey) { - const localVarApiKeyValue = typeof configuration.apiKey === 'function' - ? await configuration.apiKey(keyParamName) - : await configuration.apiKey; - object[keyParamName] = localVarApiKeyValue; - } -} - -/** - * - * @export - */ -export const setBasicAuthToObject = function (object: any, configuration?: Configuration) { - if (configuration && (configuration.username || configuration.password)) { - object["auth"] = { username: configuration.username, password: configuration.password }; - } -} - -/** - * - * @export - */ -export const setBearerAuthToObject = async function (object: any, configuration?: Configuration) { - if (configuration && configuration.accessToken) { - const accessToken = typeof configuration.accessToken === 'function' - ? await configuration.accessToken() - : await configuration.accessToken; - object["Authorization"] = "Bearer " + accessToken; - } -} - -/** - * - * @export - */ -export const setOAuthToObject = async function (object: any, name: string, scopes: string[], configuration?: Configuration) { - if (configuration && configuration.accessToken) { - const localVarAccessTokenValue = typeof configuration.accessToken === 'function' - ? await configuration.accessToken(name, scopes) - : await configuration.accessToken; - object["Authorization"] = "Bearer " + localVarAccessTokenValue; - } -} - -function setFlattenedQueryParams(urlSearchParams: URLSearchParams, parameter: any, key: string = ""): void { - if (parameter == null) return; - if (typeof parameter === "object") { - if (Array.isArray(parameter)) { - (parameter as any[]).forEach(item => setFlattenedQueryParams(urlSearchParams, item, key)); - } - else { - Object.keys(parameter).forEach(currentKey => - setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`) - ); - } - } - else { - if (urlSearchParams.has(key)) { - urlSearchParams.append(key, parameter); - } - else { - urlSearchParams.set(key, parameter); - } - } -} - -/** - * - * @export - */ -export const setSearchParams = function (url: URL, ...objects: any[]) { - const searchParams = new URLSearchParams(url.search); - setFlattenedQueryParams(searchParams, objects); - url.search = searchParams.toString(); -} - -/** - * - * @export - */ -export const serializeDataIfNeeded = function (value: any, requestOptions: any, configuration?: Configuration) { - const nonString = typeof value !== 'string'; - const needsSerialization = nonString && configuration && configuration.isJsonMime - ? configuration.isJsonMime(requestOptions.headers['Content-Type']) - : nonString; - return needsSerialization - ? JSON.stringify(value !== undefined ? value : {}) - : (value || ""); -} - -/** - * - * @export - */ -export const toPathString = function (url: URL) { - return url.pathname + url.search + url.hash -} - -/** - * - * @export - */ -export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) { - return >(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => { - const axiosRequestArgs = {...axiosArgs.options, url: (configuration?.basePath || basePath) + axiosArgs.url}; - return axios.request(axiosRequestArgs); - }; -} diff --git a/configuration.ts b/configuration.ts deleted file mode 100644 index 32127174c..000000000 --- a/configuration.ts +++ /dev/null @@ -1,127 +0,0 @@ -/* tslint:disable */ -/* eslint-disable */ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.3.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -const packageJson = require("../package.json"); - -export interface ConfigurationParameters { - apiKey?: string | Promise | ((name: string) => string) | ((name: string) => Promise); - organization?: string; - username?: string; - password?: string; - accessToken?: string | Promise | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise); - basePath?: string; - baseOptions?: any; - formDataCtor?: new () => any; -} - -export class Configuration { - /** - * parameter for apiKey security - * @param name security name - * @memberof Configuration - */ - apiKey?: string | Promise | ((name: string) => string) | ((name: string) => Promise); - /** - * OpenAI organization id - * - * @type {string} - * @memberof Configuration - */ - organization?: string; - /** - * parameter for basic security - * - * @type {string} - * @memberof Configuration - */ - username?: string; - /** - * parameter for basic security - * - * @type {string} - * @memberof Configuration - */ - password?: string; - /** - * parameter for oauth2 security - * @param name security name - * @param scopes oauth2 scope - * @memberof Configuration - */ - accessToken?: string | Promise | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise); - /** - * override base path - * - * @type {string} - * @memberof Configuration - */ - basePath?: string; - /** - * base options for axios calls - * - * @type {any} - * @memberof Configuration - */ - baseOptions?: any; - /** - * The FormData constructor that will be used to create multipart form data - * requests. You can inject this here so that execution environments that - * do not support the FormData class can still run the generated client. - * - * @type {new () => FormData} - */ - formDataCtor?: new () => any; - - constructor(param: ConfigurationParameters = {}) { - this.apiKey = param.apiKey; - this.organization = param.organization; - this.username = param.username; - this.password = param.password; - this.accessToken = param.accessToken; - this.basePath = param.basePath; - this.baseOptions = param.baseOptions; - this.formDataCtor = param.formDataCtor; - - if (!this.baseOptions) { - this.baseOptions = {}; - } - this.baseOptions.headers = { - 'User-Agent': `OpenAI/NodeJS/${packageJson.version}`, - 'Authorization': `Bearer ${this.apiKey}`, - ...this.baseOptions.headers, - } - if (this.organization) { - this.baseOptions.headers['OpenAI-Organization'] = this.organization; - } - if (!this.formDataCtor) { - this.formDataCtor = require("form-data"); - } - } - - /** - * Check if the given MIME is a JSON MIME. - * JSON MIME examples: - * application/json - * application/json; charset=UTF8 - * APPLICATION/JSON - * application/vnd.company+json - * @param mime - MIME (Multipurpose Internet Mail Extensions) - * @return True if the given MIME is JSON, false otherwise. - */ - public isJsonMime(mime: string): boolean { - const jsonMime: RegExp = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i'); - return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json'); - } -} \ No newline at end of file diff --git a/dist/api.d.ts b/dist/api.d.ts deleted file mode 100644 index d862f2bcb..000000000 --- a/dist/api.d.ts +++ /dev/null @@ -1,3003 +0,0 @@ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.3.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ -import type { Configuration } from './configuration'; -import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios'; -import type { RequestArgs } from './base'; -import { BaseAPI } from './base'; -/** - * - * @export - * @interface ChatCompletionFunctions - */ -export interface ChatCompletionFunctions { - /** - * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. - * @type {string} - * @memberof ChatCompletionFunctions - */ - 'name': string; - /** - * The description of what the function does. - * @type {string} - * @memberof ChatCompletionFunctions - */ - 'description'?: string; - /** - * The parameters the functions accepts, described as a JSON Schema object. See the [guide](/docs/guides/gpt/function-calling) for examples, and the [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for documentation about the format. - * @type {{ [key: string]: any; }} - * @memberof ChatCompletionFunctions - */ - 'parameters'?: { - [key: string]: any; - }; -} -/** - * - * @export - * @interface ChatCompletionRequestMessage - */ -export interface ChatCompletionRequestMessage { - /** - * The role of the messages author. One of `system`, `user`, `assistant`, or `function`. - * @type {string} - * @memberof ChatCompletionRequestMessage - */ - 'role': ChatCompletionRequestMessageRoleEnum; - /** - * The contents of the message. `content` is required for all messages except assistant messages with function calls. - * @type {string} - * @memberof ChatCompletionRequestMessage - */ - 'content'?: string; - /** - * The name of the author of this message. `name` is required if role is `function`, and it should be the name of the function whose response is in the `content`. May contain a-z, A-Z, 0-9, and underscores, with a maximum length of 64 characters. - * @type {string} - * @memberof ChatCompletionRequestMessage - */ - 'name'?: string; - /** - * - * @type {ChatCompletionRequestMessageFunctionCall} - * @memberof ChatCompletionRequestMessage - */ - 'function_call'?: ChatCompletionRequestMessageFunctionCall; -} -export declare const ChatCompletionRequestMessageRoleEnum: { - readonly System: "system"; - readonly User: "user"; - readonly Assistant: "assistant"; - readonly Function: "function"; -}; -export declare type ChatCompletionRequestMessageRoleEnum = typeof ChatCompletionRequestMessageRoleEnum[keyof typeof ChatCompletionRequestMessageRoleEnum]; -/** - * The name and arguments of a function that should be called, as generated by the model. - * @export - * @interface ChatCompletionRequestMessageFunctionCall - */ -export interface ChatCompletionRequestMessageFunctionCall { - /** - * The name of the function to call. - * @type {string} - * @memberof ChatCompletionRequestMessageFunctionCall - */ - 'name'?: string; - /** - * The arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function. - * @type {string} - * @memberof ChatCompletionRequestMessageFunctionCall - */ - 'arguments'?: string; -} -/** - * - * @export - * @interface ChatCompletionResponseMessage - */ -export interface ChatCompletionResponseMessage { - /** - * The role of the author of this message. - * @type {string} - * @memberof ChatCompletionResponseMessage - */ - 'role': ChatCompletionResponseMessageRoleEnum; - /** - * The contents of the message. - * @type {string} - * @memberof ChatCompletionResponseMessage - */ - 'content'?: string; - /** - * - * @type {ChatCompletionRequestMessageFunctionCall} - * @memberof ChatCompletionResponseMessage - */ - 'function_call'?: ChatCompletionRequestMessageFunctionCall; -} -export declare const ChatCompletionResponseMessageRoleEnum: { - readonly System: "system"; - readonly User: "user"; - readonly Assistant: "assistant"; - readonly Function: "function"; -}; -export declare type ChatCompletionResponseMessageRoleEnum = typeof ChatCompletionResponseMessageRoleEnum[keyof typeof ChatCompletionResponseMessageRoleEnum]; -/** - * - * @export - * @interface CreateAnswerRequest - */ -export interface CreateAnswerRequest { - /** - * ID of the model to use for completion. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @type {string} - * @memberof CreateAnswerRequest - */ - 'model': string; - /** - * Question to get answered. - * @type {string} - * @memberof CreateAnswerRequest - */ - 'question': string; - /** - * List of (question, answer) pairs that will help steer the model towards the tone and answer format you\'d like. We recommend adding 2 to 3 examples. - * @type {Array} - * @memberof CreateAnswerRequest - */ - 'examples': Array; - /** - * A text snippet containing the contextual information used to generate the answers for the `examples` you provide. - * @type {string} - * @memberof CreateAnswerRequest - */ - 'examples_context': string; - /** - * List of documents from which the answer for the input `question` should be derived. If this is an empty list, the question will be answered based on the question-answer examples. You should specify either `documents` or a `file`, but not both. - * @type {Array} - * @memberof CreateAnswerRequest - */ - 'documents'?: Array | null; - /** - * The ID of an uploaded file that contains documents to search over. See [upload file](/docs/api-reference/files/upload) for how to upload a file of the desired format and purpose. You should specify either `documents` or a `file`, but not both. - * @type {string} - * @memberof CreateAnswerRequest - */ - 'file'?: string | null; - /** - * ID of the model to use for [Search](/docs/api-reference/searches/create). You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @type {string} - * @memberof CreateAnswerRequest - */ - 'search_model'?: string | null; - /** - * The maximum number of documents to be ranked by [Search](/docs/api-reference/searches/create) when using `file`. Setting it to a higher value leads to improved accuracy but with increased latency and cost. - * @type {number} - * @memberof CreateAnswerRequest - */ - 'max_rerank'?: number | null; - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. - * @type {number} - * @memberof CreateAnswerRequest - */ - 'temperature'?: number | null; - /** - * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. When `logprobs` is set, `completion` will be automatically added into `expand` to get the logprobs. - * @type {number} - * @memberof CreateAnswerRequest - */ - 'logprobs'?: number | null; - /** - * The maximum number of tokens allowed for the generated answer - * @type {number} - * @memberof CreateAnswerRequest - */ - 'max_tokens'?: number | null; - /** - * - * @type {CreateAnswerRequestStop} - * @memberof CreateAnswerRequest - */ - 'stop'?: CreateAnswerRequestStop | null; - /** - * How many answers to generate for each question. - * @type {number} - * @memberof CreateAnswerRequest - */ - 'n'?: number | null; - /** - * Modify the likelihood of specified tokens appearing in the completion. Accepts a json object that maps tokens (specified by their token ID in the GPT tokenizer) to an associated bias value from -100 to 100. You can use this [tokenizer tool](/tokenizer?view=bpe) (which works for both GPT-2 and GPT-3) to convert text to token IDs. Mathematically, the bias is added to the logits generated by the model prior to sampling. The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection; values like -100 or 100 should result in a ban or exclusive selection of the relevant token. As an example, you can pass `{\"50256\": -100}` to prevent the <|endoftext|> token from being generated. - * @type {object} - * @memberof CreateAnswerRequest - */ - 'logit_bias'?: object | null; - /** - * A special boolean flag for showing metadata. If set to `true`, each document entry in the returned JSON will contain a \"metadata\" field. This flag only takes effect when `file` is set. - * @type {boolean} - * @memberof CreateAnswerRequest - */ - 'return_metadata'?: boolean | null; - /** - * If set to `true`, the returned JSON will include a \"prompt\" field containing the final prompt that was used to request a completion. This is mainly useful for debugging purposes. - * @type {boolean} - * @memberof CreateAnswerRequest - */ - 'return_prompt'?: boolean | null; - /** - * If an object name is in the list, we provide the full information of the object; otherwise, we only provide the object ID. Currently we support `completion` and `file` objects for expansion. - * @type {Array} - * @memberof CreateAnswerRequest - */ - 'expand'?: Array | null; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateAnswerRequest - */ - 'user'?: string; -} -/** - * @type CreateAnswerRequestStop - * Up to 4 sequences where the API will stop generating further tokens. The returned text will not contain the stop sequence. - * @export - */ -export declare type CreateAnswerRequestStop = Array | string; -/** - * - * @export - * @interface CreateAnswerResponse - */ -export interface CreateAnswerResponse { - /** - * - * @type {string} - * @memberof CreateAnswerResponse - */ - 'object'?: string; - /** - * - * @type {string} - * @memberof CreateAnswerResponse - */ - 'model'?: string; - /** - * - * @type {string} - * @memberof CreateAnswerResponse - */ - 'search_model'?: string; - /** - * - * @type {string} - * @memberof CreateAnswerResponse - */ - 'completion'?: string; - /** - * - * @type {Array} - * @memberof CreateAnswerResponse - */ - 'answers'?: Array; - /** - * - * @type {Array} - * @memberof CreateAnswerResponse - */ - 'selected_documents'?: Array; -} -/** - * - * @export - * @interface CreateAnswerResponseSelectedDocumentsInner - */ -export interface CreateAnswerResponseSelectedDocumentsInner { - /** - * - * @type {number} - * @memberof CreateAnswerResponseSelectedDocumentsInner - */ - 'document'?: number; - /** - * - * @type {string} - * @memberof CreateAnswerResponseSelectedDocumentsInner - */ - 'text'?: string; -} -/** - * - * @export - * @interface CreateChatCompletionRequest - */ -export interface CreateChatCompletionRequest { - /** - * ID of the model to use. See the [model endpoint compatibility](/docs/models/model-endpoint-compatibility) table for details on which models work with the Chat API. - * @type {string} - * @memberof CreateChatCompletionRequest - */ - 'model': string; - /** - * A list of messages comprising the conversation so far. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_format_inputs_to_ChatGPT_models.ipynb). - * @type {Array} - * @memberof CreateChatCompletionRequest - */ - 'messages': Array; - /** - * A list of functions the model may generate JSON inputs for. - * @type {Array} - * @memberof CreateChatCompletionRequest - */ - 'functions'?: Array; - /** - * - * @type {CreateChatCompletionRequestFunctionCall} - * @memberof CreateChatCompletionRequest - */ - 'function_call'?: CreateChatCompletionRequestFunctionCall; - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both. - * @type {number} - * @memberof CreateChatCompletionRequest - */ - 'temperature'?: number | null; - /** - * An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. We generally recommend altering this or `temperature` but not both. - * @type {number} - * @memberof CreateChatCompletionRequest - */ - 'top_p'?: number | null; - /** - * How many chat completion choices to generate for each input message. - * @type {number} - * @memberof CreateChatCompletionRequest - */ - 'n'?: number | null; - /** - * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). - * @type {boolean} - * @memberof CreateChatCompletionRequest - */ - 'stream'?: boolean | null; - /** - * - * @type {CreateChatCompletionRequestStop} - * @memberof CreateChatCompletionRequest - */ - 'stop'?: CreateChatCompletionRequestStop; - /** - * The maximum number of [tokens](/tokenizer) to generate in the chat completion. The total length of input tokens and generated tokens is limited by the model\'s context length. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) for counting tokens. - * @type {number} - * @memberof CreateChatCompletionRequest - */ - 'max_tokens'?: number; - /** - * Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model\'s likelihood to talk about new topics. [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) - * @type {number} - * @memberof CreateChatCompletionRequest - */ - 'presence_penalty'?: number | null; - /** - * Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model\'s likelihood to repeat the same line verbatim. [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) - * @type {number} - * @memberof CreateChatCompletionRequest - */ - 'frequency_penalty'?: number | null; - /** - * Modify the likelihood of specified tokens appearing in the completion. Accepts a json object that maps tokens (specified by their token ID in the tokenizer) to an associated bias value from -100 to 100. Mathematically, the bias is added to the logits generated by the model prior to sampling. The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection; values like -100 or 100 should result in a ban or exclusive selection of the relevant token. - * @type {object} - * @memberof CreateChatCompletionRequest - */ - 'logit_bias'?: object | null; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateChatCompletionRequest - */ - 'user'?: string; -} -/** - * @type CreateChatCompletionRequestFunctionCall - * Controls how the model responds to function calls. \"none\" means the model does not call a function, and responds to the end-user. \"auto\" means the model can pick between an end-user or calling a function. Specifying a particular function via `{\"name\":\\ \"my_function\"}` forces the model to call that function. \"none\" is the default when no functions are present. \"auto\" is the default if functions are present. - * @export - */ -export declare type CreateChatCompletionRequestFunctionCall = CreateChatCompletionRequestFunctionCallOneOf | string; -/** - * - * @export - * @interface CreateChatCompletionRequestFunctionCallOneOf - */ -export interface CreateChatCompletionRequestFunctionCallOneOf { - /** - * The name of the function to call. - * @type {string} - * @memberof CreateChatCompletionRequestFunctionCallOneOf - */ - 'name': string; -} -/** - * @type CreateChatCompletionRequestStop - * Up to 4 sequences where the API will stop generating further tokens. - * @export - */ -export declare type CreateChatCompletionRequestStop = Array | string; -/** - * - * @export - * @interface CreateChatCompletionResponse - */ -export interface CreateChatCompletionResponse { - /** - * - * @type {string} - * @memberof CreateChatCompletionResponse - */ - 'id': string; - /** - * - * @type {string} - * @memberof CreateChatCompletionResponse - */ - 'object': string; - /** - * - * @type {number} - * @memberof CreateChatCompletionResponse - */ - 'created': number; - /** - * - * @type {string} - * @memberof CreateChatCompletionResponse - */ - 'model': string; - /** - * - * @type {Array} - * @memberof CreateChatCompletionResponse - */ - 'choices': Array; - /** - * - * @type {CreateCompletionResponseUsage} - * @memberof CreateChatCompletionResponse - */ - 'usage'?: CreateCompletionResponseUsage; -} -/** - * - * @export - * @interface CreateChatCompletionResponseChoicesInner - */ -export interface CreateChatCompletionResponseChoicesInner { - /** - * - * @type {number} - * @memberof CreateChatCompletionResponseChoicesInner - */ - 'index'?: number; - /** - * - * @type {ChatCompletionResponseMessage} - * @memberof CreateChatCompletionResponseChoicesInner - */ - 'message'?: ChatCompletionResponseMessage; - /** - * - * @type {string} - * @memberof CreateChatCompletionResponseChoicesInner - */ - 'finish_reason'?: string; -} -/** - * - * @export - * @interface CreateClassificationRequest - */ -export interface CreateClassificationRequest { - /** - * ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. - * @type {string} - * @memberof CreateClassificationRequest - */ - 'model': string; - /** - * Query to be classified. - * @type {string} - * @memberof CreateClassificationRequest - */ - 'query': string; - /** - * A list of examples with labels, in the following format: `[[\"The movie is so interesting.\", \"Positive\"], [\"It is quite boring.\", \"Negative\"], ...]` All the label strings will be normalized to be capitalized. You should specify either `examples` or `file`, but not both. - * @type {Array} - * @memberof CreateClassificationRequest - */ - 'examples'?: Array | null; - /** - * The ID of the uploaded file that contains training examples. See [upload file](/docs/api-reference/files/upload) for how to upload a file of the desired format and purpose. You should specify either `examples` or `file`, but not both. - * @type {string} - * @memberof CreateClassificationRequest - */ - 'file'?: string | null; - /** - * The set of categories being classified. If not specified, candidate labels will be automatically collected from the examples you provide. All the label strings will be normalized to be capitalized. - * @type {Array} - * @memberof CreateClassificationRequest - */ - 'labels'?: Array | null; - /** - * ID of the model to use for [Search](/docs/api-reference/searches/create). You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @type {string} - * @memberof CreateClassificationRequest - */ - 'search_model'?: string | null; - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. - * @type {number} - * @memberof CreateClassificationRequest - */ - 'temperature'?: number | null; - /** - * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. When `logprobs` is set, `completion` will be automatically added into `expand` to get the logprobs. - * @type {number} - * @memberof CreateClassificationRequest - */ - 'logprobs'?: number | null; - /** - * The maximum number of examples to be ranked by [Search](/docs/api-reference/searches/create) when using `file`. Setting it to a higher value leads to improved accuracy but with increased latency and cost. - * @type {number} - * @memberof CreateClassificationRequest - */ - 'max_examples'?: number | null; - /** - * Modify the likelihood of specified tokens appearing in the completion. Accepts a json object that maps tokens (specified by their token ID in the GPT tokenizer) to an associated bias value from -100 to 100. You can use this [tokenizer tool](/tokenizer?view=bpe) (which works for both GPT-2 and GPT-3) to convert text to token IDs. Mathematically, the bias is added to the logits generated by the model prior to sampling. The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection; values like -100 or 100 should result in a ban or exclusive selection of the relevant token. As an example, you can pass `{\"50256\": -100}` to prevent the <|endoftext|> token from being generated. - * @type {object} - * @memberof CreateClassificationRequest - */ - 'logit_bias'?: object | null; - /** - * If set to `true`, the returned JSON will include a \"prompt\" field containing the final prompt that was used to request a completion. This is mainly useful for debugging purposes. - * @type {boolean} - * @memberof CreateClassificationRequest - */ - 'return_prompt'?: boolean | null; - /** - * A special boolean flag for showing metadata. If set to `true`, each document entry in the returned JSON will contain a \"metadata\" field. This flag only takes effect when `file` is set. - * @type {boolean} - * @memberof CreateClassificationRequest - */ - 'return_metadata'?: boolean | null; - /** - * If an object name is in the list, we provide the full information of the object; otherwise, we only provide the object ID. Currently we support `completion` and `file` objects for expansion. - * @type {Array} - * @memberof CreateClassificationRequest - */ - 'expand'?: Array | null; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateClassificationRequest - */ - 'user'?: string; -} -/** - * - * @export - * @interface CreateClassificationResponse - */ -export interface CreateClassificationResponse { - /** - * - * @type {string} - * @memberof CreateClassificationResponse - */ - 'object'?: string; - /** - * - * @type {string} - * @memberof CreateClassificationResponse - */ - 'model'?: string; - /** - * - * @type {string} - * @memberof CreateClassificationResponse - */ - 'search_model'?: string; - /** - * - * @type {string} - * @memberof CreateClassificationResponse - */ - 'completion'?: string; - /** - * - * @type {string} - * @memberof CreateClassificationResponse - */ - 'label'?: string; - /** - * - * @type {Array} - * @memberof CreateClassificationResponse - */ - 'selected_examples'?: Array; -} -/** - * - * @export - * @interface CreateClassificationResponseSelectedExamplesInner - */ -export interface CreateClassificationResponseSelectedExamplesInner { - /** - * - * @type {number} - * @memberof CreateClassificationResponseSelectedExamplesInner - */ - 'document'?: number; - /** - * - * @type {string} - * @memberof CreateClassificationResponseSelectedExamplesInner - */ - 'text'?: string; - /** - * - * @type {string} - * @memberof CreateClassificationResponseSelectedExamplesInner - */ - 'label'?: string; -} -/** - * - * @export - * @interface CreateCompletionRequest - */ -export interface CreateCompletionRequest { - /** - * ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. - * @type {string} - * @memberof CreateCompletionRequest - */ - 'model': string; - /** - * - * @type {CreateCompletionRequestPrompt} - * @memberof CreateCompletionRequest - */ - 'prompt'?: CreateCompletionRequestPrompt | null; - /** - * The suffix that comes after a completion of inserted text. - * @type {string} - * @memberof CreateCompletionRequest - */ - 'suffix'?: string | null; - /** - * The maximum number of [tokens](/tokenizer) to generate in the completion. The token count of your prompt plus `max_tokens` cannot exceed the model\'s context length. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) for counting tokens. - * @type {number} - * @memberof CreateCompletionRequest - */ - 'max_tokens'?: number | null; - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both. - * @type {number} - * @memberof CreateCompletionRequest - */ - 'temperature'?: number | null; - /** - * An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. We generally recommend altering this or `temperature` but not both. - * @type {number} - * @memberof CreateCompletionRequest - */ - 'top_p'?: number | null; - /** - * How many completions to generate for each prompt. **Note:** Because this parameter generates many completions, it can quickly consume your token quota. Use carefully and ensure that you have reasonable settings for `max_tokens` and `stop`. - * @type {number} - * @memberof CreateCompletionRequest - */ - 'n'?: number | null; - /** - * Whether to stream back partial progress. If set, tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). - * @type {boolean} - * @memberof CreateCompletionRequest - */ - 'stream'?: boolean | null; - /** - * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. - * @type {number} - * @memberof CreateCompletionRequest - */ - 'logprobs'?: number | null; - /** - * Echo back the prompt in addition to the completion - * @type {boolean} - * @memberof CreateCompletionRequest - */ - 'echo'?: boolean | null; - /** - * - * @type {CreateCompletionRequestStop} - * @memberof CreateCompletionRequest - */ - 'stop'?: CreateCompletionRequestStop | null; - /** - * Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model\'s likelihood to talk about new topics. [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) - * @type {number} - * @memberof CreateCompletionRequest - */ - 'presence_penalty'?: number | null; - /** - * Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model\'s likelihood to repeat the same line verbatim. [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) - * @type {number} - * @memberof CreateCompletionRequest - */ - 'frequency_penalty'?: number | null; - /** - * Generates `best_of` completions server-side and returns the \"best\" (the one with the highest log probability per token). Results cannot be streamed. When used with `n`, `best_of` controls the number of candidate completions and `n` specifies how many to return – `best_of` must be greater than `n`. **Note:** Because this parameter generates many completions, it can quickly consume your token quota. Use carefully and ensure that you have reasonable settings for `max_tokens` and `stop`. - * @type {number} - * @memberof CreateCompletionRequest - */ - 'best_of'?: number | null; - /** - * Modify the likelihood of specified tokens appearing in the completion. Accepts a json object that maps tokens (specified by their token ID in the GPT tokenizer) to an associated bias value from -100 to 100. You can use this [tokenizer tool](/tokenizer?view=bpe) (which works for both GPT-2 and GPT-3) to convert text to token IDs. Mathematically, the bias is added to the logits generated by the model prior to sampling. The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection; values like -100 or 100 should result in a ban or exclusive selection of the relevant token. As an example, you can pass `{\"50256\": -100}` to prevent the <|endoftext|> token from being generated. - * @type {object} - * @memberof CreateCompletionRequest - */ - 'logit_bias'?: object | null; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateCompletionRequest - */ - 'user'?: string; -} -/** - * @type CreateCompletionRequestPrompt - * The prompt(s) to generate completions for, encoded as a string, array of strings, array of tokens, or array of token arrays. Note that <|endoftext|> is the document separator that the model sees during training, so if a prompt is not specified the model will generate as if from the beginning of a new document. - * @export - */ -export declare type CreateCompletionRequestPrompt = Array | Array | Array | string; -/** - * @type CreateCompletionRequestStop - * Up to 4 sequences where the API will stop generating further tokens. The returned text will not contain the stop sequence. - * @export - */ -export declare type CreateCompletionRequestStop = Array | string; -/** - * - * @export - * @interface CreateCompletionResponse - */ -export interface CreateCompletionResponse { - /** - * - * @type {string} - * @memberof CreateCompletionResponse - */ - 'id': string; - /** - * - * @type {string} - * @memberof CreateCompletionResponse - */ - 'object': string; - /** - * - * @type {number} - * @memberof CreateCompletionResponse - */ - 'created': number; - /** - * - * @type {string} - * @memberof CreateCompletionResponse - */ - 'model': string; - /** - * - * @type {Array} - * @memberof CreateCompletionResponse - */ - 'choices': Array; - /** - * - * @type {CreateCompletionResponseUsage} - * @memberof CreateCompletionResponse - */ - 'usage'?: CreateCompletionResponseUsage; -} -/** - * - * @export - * @interface CreateCompletionResponseChoicesInner - */ -export interface CreateCompletionResponseChoicesInner { - /** - * - * @type {string} - * @memberof CreateCompletionResponseChoicesInner - */ - 'text'?: string; - /** - * - * @type {number} - * @memberof CreateCompletionResponseChoicesInner - */ - 'index'?: number; - /** - * - * @type {CreateCompletionResponseChoicesInnerLogprobs} - * @memberof CreateCompletionResponseChoicesInner - */ - 'logprobs'?: CreateCompletionResponseChoicesInnerLogprobs | null; - /** - * - * @type {string} - * @memberof CreateCompletionResponseChoicesInner - */ - 'finish_reason'?: string; -} -/** - * - * @export - * @interface CreateCompletionResponseChoicesInnerLogprobs - */ -export interface CreateCompletionResponseChoicesInnerLogprobs { - /** - * - * @type {Array} - * @memberof CreateCompletionResponseChoicesInnerLogprobs - */ - 'tokens'?: Array; - /** - * - * @type {Array} - * @memberof CreateCompletionResponseChoicesInnerLogprobs - */ - 'token_logprobs'?: Array; - /** - * - * @type {Array} - * @memberof CreateCompletionResponseChoicesInnerLogprobs - */ - 'top_logprobs'?: Array; - /** - * - * @type {Array} - * @memberof CreateCompletionResponseChoicesInnerLogprobs - */ - 'text_offset'?: Array; -} -/** - * - * @export - * @interface CreateCompletionResponseUsage - */ -export interface CreateCompletionResponseUsage { - /** - * - * @type {number} - * @memberof CreateCompletionResponseUsage - */ - 'prompt_tokens': number; - /** - * - * @type {number} - * @memberof CreateCompletionResponseUsage - */ - 'completion_tokens': number; - /** - * - * @type {number} - * @memberof CreateCompletionResponseUsage - */ - 'total_tokens': number; -} -/** - * - * @export - * @interface CreateEditRequest - */ -export interface CreateEditRequest { - /** - * ID of the model to use. You can use the `text-davinci-edit-001` or `code-davinci-edit-001` model with this endpoint. - * @type {string} - * @memberof CreateEditRequest - */ - 'model': string; - /** - * The input text to use as a starting point for the edit. - * @type {string} - * @memberof CreateEditRequest - */ - 'input'?: string | null; - /** - * The instruction that tells the model how to edit the prompt. - * @type {string} - * @memberof CreateEditRequest - */ - 'instruction': string; - /** - * How many edits to generate for the input and instruction. - * @type {number} - * @memberof CreateEditRequest - */ - 'n'?: number | null; - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both. - * @type {number} - * @memberof CreateEditRequest - */ - 'temperature'?: number | null; - /** - * An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. We generally recommend altering this or `temperature` but not both. - * @type {number} - * @memberof CreateEditRequest - */ - 'top_p'?: number | null; -} -/** - * - * @export - * @interface CreateEditResponse - */ -export interface CreateEditResponse { - /** - * - * @type {string} - * @memberof CreateEditResponse - */ - 'object': string; - /** - * - * @type {number} - * @memberof CreateEditResponse - */ - 'created': number; - /** - * - * @type {Array} - * @memberof CreateEditResponse - */ - 'choices': Array; - /** - * - * @type {CreateCompletionResponseUsage} - * @memberof CreateEditResponse - */ - 'usage': CreateCompletionResponseUsage; -} -/** - * - * @export - * @interface CreateEmbeddingRequest - */ -export interface CreateEmbeddingRequest { - /** - * ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. - * @type {string} - * @memberof CreateEmbeddingRequest - */ - 'model': string; - /** - * - * @type {CreateEmbeddingRequestInput} - * @memberof CreateEmbeddingRequest - */ - 'input': CreateEmbeddingRequestInput; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateEmbeddingRequest - */ - 'user'?: string; -} -/** - * @type CreateEmbeddingRequestInput - * Input text to embed, encoded as a string or array of tokens. To embed multiple inputs in a single request, pass an array of strings or array of token arrays. Each input must not exceed the max input tokens for the model (8191 tokens for `text-embedding-ada-002`). [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) for counting tokens. - * @export - */ -export declare type CreateEmbeddingRequestInput = Array | Array | Array | string; -/** - * - * @export - * @interface CreateEmbeddingResponse - */ -export interface CreateEmbeddingResponse { - /** - * - * @type {string} - * @memberof CreateEmbeddingResponse - */ - 'object': string; - /** - * - * @type {string} - * @memberof CreateEmbeddingResponse - */ - 'model': string; - /** - * - * @type {Array} - * @memberof CreateEmbeddingResponse - */ - 'data': Array; - /** - * - * @type {CreateEmbeddingResponseUsage} - * @memberof CreateEmbeddingResponse - */ - 'usage': CreateEmbeddingResponseUsage; -} -/** - * - * @export - * @interface CreateEmbeddingResponseDataInner - */ -export interface CreateEmbeddingResponseDataInner { - /** - * - * @type {number} - * @memberof CreateEmbeddingResponseDataInner - */ - 'index': number; - /** - * - * @type {string} - * @memberof CreateEmbeddingResponseDataInner - */ - 'object': string; - /** - * - * @type {Array} - * @memberof CreateEmbeddingResponseDataInner - */ - 'embedding': Array; -} -/** - * - * @export - * @interface CreateEmbeddingResponseUsage - */ -export interface CreateEmbeddingResponseUsage { - /** - * - * @type {number} - * @memberof CreateEmbeddingResponseUsage - */ - 'prompt_tokens': number; - /** - * - * @type {number} - * @memberof CreateEmbeddingResponseUsage - */ - 'total_tokens': number; -} -/** - * - * @export - * @interface CreateFineTuneRequest - */ -export interface CreateFineTuneRequest { - /** - * The ID of an uploaded file that contains training data. See [upload file](/docs/api-reference/files/upload) for how to upload a file. Your dataset must be formatted as a JSONL file, where each training example is a JSON object with the keys \"prompt\" and \"completion\". Additionally, you must upload your file with the purpose `fine-tune`. See the [fine-tuning guide](/docs/guides/fine-tuning/creating-training-data) for more details. - * @type {string} - * @memberof CreateFineTuneRequest - */ - 'training_file': string; - /** - * The ID of an uploaded file that contains validation data. If you provide this file, the data is used to generate validation metrics periodically during fine-tuning. These metrics can be viewed in the [fine-tuning results file](/docs/guides/fine-tuning/analyzing-your-fine-tuned-model). Your train and validation data should be mutually exclusive. Your dataset must be formatted as a JSONL file, where each validation example is a JSON object with the keys \"prompt\" and \"completion\". Additionally, you must upload your file with the purpose `fine-tune`. See the [fine-tuning guide](/docs/guides/fine-tuning/creating-training-data) for more details. - * @type {string} - * @memberof CreateFineTuneRequest - */ - 'validation_file'?: string | null; - /** - * The name of the base model to fine-tune. You can select one of \"ada\", \"babbage\", \"curie\", \"davinci\", or a fine-tuned model created after 2022-04-21. To learn more about these models, see the [Models](https://platform.openai.com/docs/models) documentation. - * @type {string} - * @memberof CreateFineTuneRequest - */ - 'model'?: string | null; - /** - * The number of epochs to train the model for. An epoch refers to one full cycle through the training dataset. - * @type {number} - * @memberof CreateFineTuneRequest - */ - 'n_epochs'?: number | null; - /** - * The batch size to use for training. The batch size is the number of training examples used to train a single forward and backward pass. By default, the batch size will be dynamically configured to be ~0.2% of the number of examples in the training set, capped at 256 - in general, we\'ve found that larger batch sizes tend to work better for larger datasets. - * @type {number} - * @memberof CreateFineTuneRequest - */ - 'batch_size'?: number | null; - /** - * The learning rate multiplier to use for training. The fine-tuning learning rate is the original learning rate used for pretraining multiplied by this value. By default, the learning rate multiplier is the 0.05, 0.1, or 0.2 depending on final `batch_size` (larger learning rates tend to perform better with larger batch sizes). We recommend experimenting with values in the range 0.02 to 0.2 to see what produces the best results. - * @type {number} - * @memberof CreateFineTuneRequest - */ - 'learning_rate_multiplier'?: number | null; - /** - * The weight to use for loss on the prompt tokens. This controls how much the model tries to learn to generate the prompt (as compared to the completion which always has a weight of 1.0), and can add a stabilizing effect to training when completions are short. If prompts are extremely long (relative to completions), it may make sense to reduce this weight so as to avoid over-prioritizing learning the prompt. - * @type {number} - * @memberof CreateFineTuneRequest - */ - 'prompt_loss_weight'?: number | null; - /** - * If set, we calculate classification-specific metrics such as accuracy and F-1 score using the validation set at the end of every epoch. These metrics can be viewed in the [results file](/docs/guides/fine-tuning/analyzing-your-fine-tuned-model). In order to compute classification metrics, you must provide a `validation_file`. Additionally, you must specify `classification_n_classes` for multiclass classification or `classification_positive_class` for binary classification. - * @type {boolean} - * @memberof CreateFineTuneRequest - */ - 'compute_classification_metrics'?: boolean | null; - /** - * The number of classes in a classification task. This parameter is required for multiclass classification. - * @type {number} - * @memberof CreateFineTuneRequest - */ - 'classification_n_classes'?: number | null; - /** - * The positive class in binary classification. This parameter is needed to generate precision, recall, and F1 metrics when doing binary classification. - * @type {string} - * @memberof CreateFineTuneRequest - */ - 'classification_positive_class'?: string | null; - /** - * If this is provided, we calculate F-beta scores at the specified beta values. The F-beta score is a generalization of F-1 score. This is only used for binary classification. With a beta of 1 (i.e. the F-1 score), precision and recall are given the same weight. A larger beta score puts more weight on recall and less on precision. A smaller beta score puts more weight on precision and less on recall. - * @type {Array} - * @memberof CreateFineTuneRequest - */ - 'classification_betas'?: Array | null; - /** - * A string of up to 40 characters that will be added to your fine-tuned model name. For example, a `suffix` of \"custom-model-name\" would produce a model name like `ada:ft-your-org:custom-model-name-2022-02-15-04-21-04`. - * @type {string} - * @memberof CreateFineTuneRequest - */ - 'suffix'?: string | null; -} -/** - * - * @export - * @interface CreateImageRequest - */ -export interface CreateImageRequest { - /** - * A text description of the desired image(s). The maximum length is 1000 characters. - * @type {string} - * @memberof CreateImageRequest - */ - 'prompt': string; - /** - * The number of images to generate. Must be between 1 and 10. - * @type {number} - * @memberof CreateImageRequest - */ - 'n'?: number | null; - /** - * The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @type {string} - * @memberof CreateImageRequest - */ - 'size'?: CreateImageRequestSizeEnum; - /** - * The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @type {string} - * @memberof CreateImageRequest - */ - 'response_format'?: CreateImageRequestResponseFormatEnum; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateImageRequest - */ - 'user'?: string; -} -export declare const CreateImageRequestSizeEnum: { - readonly _256x256: "256x256"; - readonly _512x512: "512x512"; - readonly _1024x1024: "1024x1024"; -}; -export declare type CreateImageRequestSizeEnum = typeof CreateImageRequestSizeEnum[keyof typeof CreateImageRequestSizeEnum]; -export declare const CreateImageRequestResponseFormatEnum: { - readonly Url: "url"; - readonly B64Json: "b64_json"; -}; -export declare type CreateImageRequestResponseFormatEnum = typeof CreateImageRequestResponseFormatEnum[keyof typeof CreateImageRequestResponseFormatEnum]; -/** - * - * @export - * @interface CreateModerationRequest - */ -export interface CreateModerationRequest { - /** - * - * @type {CreateModerationRequestInput} - * @memberof CreateModerationRequest - */ - 'input': CreateModerationRequestInput; - /** - * Two content moderations models are available: `text-moderation-stable` and `text-moderation-latest`. The default is `text-moderation-latest` which will be automatically upgraded over time. This ensures you are always using our most accurate model. If you use `text-moderation-stable`, we will provide advanced notice before updating the model. Accuracy of `text-moderation-stable` may be slightly lower than for `text-moderation-latest`. - * @type {string} - * @memberof CreateModerationRequest - */ - 'model'?: string; -} -/** - * @type CreateModerationRequestInput - * The input text to classify - * @export - */ -export declare type CreateModerationRequestInput = Array | string; -/** - * - * @export - * @interface CreateModerationResponse - */ -export interface CreateModerationResponse { - /** - * - * @type {string} - * @memberof CreateModerationResponse - */ - 'id': string; - /** - * - * @type {string} - * @memberof CreateModerationResponse - */ - 'model': string; - /** - * - * @type {Array} - * @memberof CreateModerationResponse - */ - 'results': Array; -} -/** - * - * @export - * @interface CreateModerationResponseResultsInner - */ -export interface CreateModerationResponseResultsInner { - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInner - */ - 'flagged': boolean; - /** - * - * @type {CreateModerationResponseResultsInnerCategories} - * @memberof CreateModerationResponseResultsInner - */ - 'categories': CreateModerationResponseResultsInnerCategories; - /** - * - * @type {CreateModerationResponseResultsInnerCategoryScores} - * @memberof CreateModerationResponseResultsInner - */ - 'category_scores': CreateModerationResponseResultsInnerCategoryScores; -} -/** - * - * @export - * @interface CreateModerationResponseResultsInnerCategories - */ -export interface CreateModerationResponseResultsInnerCategories { - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'hate': boolean; - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'hate/threatening': boolean; - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'self-harm': boolean; - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'sexual': boolean; - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'sexual/minors': boolean; - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'violence': boolean; - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'violence/graphic': boolean; -} -/** - * - * @export - * @interface CreateModerationResponseResultsInnerCategoryScores - */ -export interface CreateModerationResponseResultsInnerCategoryScores { - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'hate': number; - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'hate/threatening': number; - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'self-harm': number; - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'sexual': number; - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'sexual/minors': number; - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'violence': number; - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'violence/graphic': number; -} -/** - * - * @export - * @interface CreateSearchRequest - */ -export interface CreateSearchRequest { - /** - * Query to search against the documents. - * @type {string} - * @memberof CreateSearchRequest - */ - 'query': string; - /** - * Up to 200 documents to search over, provided as a list of strings. The maximum document length (in tokens) is 2034 minus the number of tokens in the query. You should specify either `documents` or a `file`, but not both. - * @type {Array} - * @memberof CreateSearchRequest - */ - 'documents'?: Array | null; - /** - * The ID of an uploaded file that contains documents to search over. You should specify either `documents` or a `file`, but not both. - * @type {string} - * @memberof CreateSearchRequest - */ - 'file'?: string | null; - /** - * The maximum number of documents to be re-ranked and returned by search. This flag only takes effect when `file` is set. - * @type {number} - * @memberof CreateSearchRequest - */ - 'max_rerank'?: number | null; - /** - * A special boolean flag for showing metadata. If set to `true`, each document entry in the returned JSON will contain a \"metadata\" field. This flag only takes effect when `file` is set. - * @type {boolean} - * @memberof CreateSearchRequest - */ - 'return_metadata'?: boolean | null; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateSearchRequest - */ - 'user'?: string; -} -/** - * - * @export - * @interface CreateSearchResponse - */ -export interface CreateSearchResponse { - /** - * - * @type {string} - * @memberof CreateSearchResponse - */ - 'object'?: string; - /** - * - * @type {string} - * @memberof CreateSearchResponse - */ - 'model'?: string; - /** - * - * @type {Array} - * @memberof CreateSearchResponse - */ - 'data'?: Array; -} -/** - * - * @export - * @interface CreateSearchResponseDataInner - */ -export interface CreateSearchResponseDataInner { - /** - * - * @type {string} - * @memberof CreateSearchResponseDataInner - */ - 'object'?: string; - /** - * - * @type {number} - * @memberof CreateSearchResponseDataInner - */ - 'document'?: number; - /** - * - * @type {number} - * @memberof CreateSearchResponseDataInner - */ - 'score'?: number; -} -/** - * - * @export - * @interface CreateTranscriptionResponse - */ -export interface CreateTranscriptionResponse { - /** - * - * @type {string} - * @memberof CreateTranscriptionResponse - */ - 'text': string; -} -/** - * - * @export - * @interface CreateTranslationResponse - */ -export interface CreateTranslationResponse { - /** - * - * @type {string} - * @memberof CreateTranslationResponse - */ - 'text': string; -} -/** - * - * @export - * @interface DeleteFileResponse - */ -export interface DeleteFileResponse { - /** - * - * @type {string} - * @memberof DeleteFileResponse - */ - 'id': string; - /** - * - * @type {string} - * @memberof DeleteFileResponse - */ - 'object': string; - /** - * - * @type {boolean} - * @memberof DeleteFileResponse - */ - 'deleted': boolean; -} -/** - * - * @export - * @interface DeleteModelResponse - */ -export interface DeleteModelResponse { - /** - * - * @type {string} - * @memberof DeleteModelResponse - */ - 'id': string; - /** - * - * @type {string} - * @memberof DeleteModelResponse - */ - 'object': string; - /** - * - * @type {boolean} - * @memberof DeleteModelResponse - */ - 'deleted': boolean; -} -/** - * - * @export - * @interface Engine - */ -export interface Engine { - /** - * - * @type {string} - * @memberof Engine - */ - 'id': string; - /** - * - * @type {string} - * @memberof Engine - */ - 'object': string; - /** - * - * @type {number} - * @memberof Engine - */ - 'created': number | null; - /** - * - * @type {boolean} - * @memberof Engine - */ - 'ready': boolean; -} -/** - * - * @export - * @interface ErrorResponse - */ -export interface ErrorResponse { - /** - * - * @type {Error} - * @memberof ErrorResponse - */ - 'error': Error; -} -/** - * - * @export - * @interface FineTune - */ -export interface FineTune { - /** - * - * @type {string} - * @memberof FineTune - */ - 'id': string; - /** - * - * @type {string} - * @memberof FineTune - */ - 'object': string; - /** - * - * @type {number} - * @memberof FineTune - */ - 'created_at': number; - /** - * - * @type {number} - * @memberof FineTune - */ - 'updated_at': number; - /** - * - * @type {string} - * @memberof FineTune - */ - 'model': string; - /** - * - * @type {string} - * @memberof FineTune - */ - 'fine_tuned_model': string | null; - /** - * - * @type {string} - * @memberof FineTune - */ - 'organization_id': string; - /** - * - * @type {string} - * @memberof FineTune - */ - 'status': string; - /** - * - * @type {object} - * @memberof FineTune - */ - 'hyperparams': object; - /** - * - * @type {Array} - * @memberof FineTune - */ - 'training_files': Array; - /** - * - * @type {Array} - * @memberof FineTune - */ - 'validation_files': Array; - /** - * - * @type {Array} - * @memberof FineTune - */ - 'result_files': Array; - /** - * - * @type {Array} - * @memberof FineTune - */ - 'events'?: Array; -} -/** - * - * @export - * @interface FineTuneEvent - */ -export interface FineTuneEvent { - /** - * - * @type {string} - * @memberof FineTuneEvent - */ - 'object': string; - /** - * - * @type {number} - * @memberof FineTuneEvent - */ - 'created_at': number; - /** - * - * @type {string} - * @memberof FineTuneEvent - */ - 'level': string; - /** - * - * @type {string} - * @memberof FineTuneEvent - */ - 'message': string; -} -/** - * - * @export - * @interface ImagesResponse - */ -export interface ImagesResponse { - /** - * - * @type {number} - * @memberof ImagesResponse - */ - 'created': number; - /** - * - * @type {Array} - * @memberof ImagesResponse - */ - 'data': Array; -} -/** - * - * @export - * @interface ImagesResponseDataInner - */ -export interface ImagesResponseDataInner { - /** - * - * @type {string} - * @memberof ImagesResponseDataInner - */ - 'url'?: string; - /** - * - * @type {string} - * @memberof ImagesResponseDataInner - */ - 'b64_json'?: string; -} -/** - * - * @export - * @interface ListEnginesResponse - */ -export interface ListEnginesResponse { - /** - * - * @type {string} - * @memberof ListEnginesResponse - */ - 'object': string; - /** - * - * @type {Array} - * @memberof ListEnginesResponse - */ - 'data': Array; -} -/** - * - * @export - * @interface ListFilesResponse - */ -export interface ListFilesResponse { - /** - * - * @type {string} - * @memberof ListFilesResponse - */ - 'object': string; - /** - * - * @type {Array} - * @memberof ListFilesResponse - */ - 'data': Array; -} -/** - * - * @export - * @interface ListFineTuneEventsResponse - */ -export interface ListFineTuneEventsResponse { - /** - * - * @type {string} - * @memberof ListFineTuneEventsResponse - */ - 'object': string; - /** - * - * @type {Array} - * @memberof ListFineTuneEventsResponse - */ - 'data': Array; -} -/** - * - * @export - * @interface ListFineTunesResponse - */ -export interface ListFineTunesResponse { - /** - * - * @type {string} - * @memberof ListFineTunesResponse - */ - 'object': string; - /** - * - * @type {Array} - * @memberof ListFineTunesResponse - */ - 'data': Array; -} -/** - * - * @export - * @interface ListModelsResponse - */ -export interface ListModelsResponse { - /** - * - * @type {string} - * @memberof ListModelsResponse - */ - 'object': string; - /** - * - * @type {Array} - * @memberof ListModelsResponse - */ - 'data': Array; -} -/** - * - * @export - * @interface Model - */ -export interface Model { - /** - * - * @type {string} - * @memberof Model - */ - 'id': string; - /** - * - * @type {string} - * @memberof Model - */ - 'object': string; - /** - * - * @type {number} - * @memberof Model - */ - 'created': number; - /** - * - * @type {string} - * @memberof Model - */ - 'owned_by': string; -} -/** - * - * @export - * @interface ModelError - */ -export interface ModelError { - /** - * - * @type {string} - * @memberof ModelError - */ - 'type': string; - /** - * - * @type {string} - * @memberof ModelError - */ - 'message': string; - /** - * - * @type {string} - * @memberof ModelError - */ - 'param': string | null; - /** - * - * @type {string} - * @memberof ModelError - */ - 'code': string | null; -} -/** - * - * @export - * @interface OpenAIFile - */ -export interface OpenAIFile { - /** - * - * @type {string} - * @memberof OpenAIFile - */ - 'id': string; - /** - * - * @type {string} - * @memberof OpenAIFile - */ - 'object': string; - /** - * - * @type {number} - * @memberof OpenAIFile - */ - 'bytes': number; - /** - * - * @type {number} - * @memberof OpenAIFile - */ - 'created_at': number; - /** - * - * @type {string} - * @memberof OpenAIFile - */ - 'filename': string; - /** - * - * @type {string} - * @memberof OpenAIFile - */ - 'purpose': string; - /** - * - * @type {string} - * @memberof OpenAIFile - */ - 'status'?: string; - /** - * - * @type {object} - * @memberof OpenAIFile - */ - 'status_details'?: object | null; -} -/** - * OpenAIApi - axios parameter creator - * @export - */ -export declare const OpenAIApiAxiosParamCreator: (configuration?: Configuration) => { - /** - * - * @summary Immediately cancel a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to cancel - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - cancelFineTune: (fineTuneId: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Answers the specified question using the provided documents and examples. The endpoint first [searches](/docs/api-reference/searches) over provided documents or files to find relevant context. The relevant context is combined with the provided examples and question to create the prompt for [completion](/docs/api-reference/completions). - * @param {CreateAnswerRequest} createAnswerRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createAnswer: (createAnswerRequest: CreateAnswerRequest, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Creates a model response for the given chat conversation. - * @param {CreateChatCompletionRequest} createChatCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createChatCompletion: (createChatCompletionRequest: CreateChatCompletionRequest, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. - * @param {CreateClassificationRequest} createClassificationRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createClassification: (createClassificationRequest: CreateClassificationRequest, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Creates a completion for the provided prompt and parameters. - * @param {CreateCompletionRequest} createCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createCompletion: (createCompletionRequest: CreateCompletionRequest, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Creates a new edit for the provided input, instruction, and parameters. - * @param {CreateEditRequest} createEditRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEdit: (createEditRequest: CreateEditRequest, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Creates an embedding vector representing the input text. - * @param {CreateEmbeddingRequest} createEmbeddingRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEmbedding: (createEmbeddingRequest: CreateEmbeddingRequest, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit. - * @param {File} file Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded. If the `purpose` is set to \\\"fine-tune\\\", each line is a JSON record with \\\"prompt\\\" and \\\"completion\\\" fields representing your [training examples](/docs/guides/fine-tuning/prepare-training-data). - * @param {string} purpose The intended purpose of the uploaded documents. Use \\\"fine-tune\\\" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows us to validate the format of the uploaded file. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFile: (file: File, purpose: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {CreateFineTuneRequest} createFineTuneRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFineTune: (createFineTuneRequest: CreateFineTuneRequest, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Creates an image given a prompt. - * @param {CreateImageRequest} createImageRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImage: (createImageRequest: CreateImageRequest, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. - * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. - * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageEdit: (image: File, prompt: string, mask?: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Creates a variation of a given image. - * @param {File} image The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageVariation: (image: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Classifies if text violates OpenAI\'s Content Policy - * @param {CreateModerationRequest} createModerationRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createModeration: (createModerationRequest: CreateModerationRequest, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary The search endpoint computes similarity scores between provided query and documents. Documents can be passed directly to the API if there are no more than 200 of them. To go beyond the 200 document limit, documents can be processed offline and then used for efficient retrieval at query time. When `file` is set, the search endpoint searches over all the documents in the given file and returns up to the `max_rerank` number of documents. These documents will be returned along with their search scores. The similarity score is a positive score that usually ranges from 0 to 300 (but can sometimes go higher), where a score above 200 usually means the document is semantically similar to the query. - * @param {string} engineId The ID of the engine to use for this request. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @param {CreateSearchRequest} createSearchRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createSearch: (engineId: string, createSearchRequest: CreateSearchRequest, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Transcribes audio into the input language. - * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranscription: (file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, language?: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Translates audio into into English. - * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranslation: (file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Delete a file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteFile: (fileId: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Delete a fine-tuned model. You must have the Owner role in your organization. - * @param {string} model The model to delete - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteModel: (model: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Returns the contents of the specified file - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - downloadFile: (fileId: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - listEngines: (options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Returns a list of files that belong to the user\'s organization. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFiles: (options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Get fine-grained status updates for a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to get events for. - * @param {boolean} [stream] Whether to stream events for the fine-tune job. If set to true, events will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available. The stream will terminate with a `data: [DONE]` message when the job is finished (succeeded, cancelled, or failed). If set to false, only events generated so far will be returned. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTuneEvents: (fineTuneId: string, stream?: boolean, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary List your organization\'s fine-tuning jobs - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTunes: (options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Lists the currently available models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listModels: (options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Retrieves a model instance, providing basic information about it such as the owner and availability. - * @param {string} engineId The ID of the engine to use for this request - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - retrieveEngine: (engineId: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Returns information about a specific file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFile: (fileId: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Gets info about the fine-tune job. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {string} fineTuneId The ID of the fine-tune job - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFineTune: (fineTuneId: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Retrieves a model instance, providing basic information about the model such as the owner and permissioning. - * @param {string} model The ID of the model to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveModel: (model: string, options?: AxiosRequestConfig) => Promise; -}; -/** - * OpenAIApi - functional programming interface - * @export - */ -export declare const OpenAIApiFp: (configuration?: Configuration) => { - /** - * - * @summary Immediately cancel a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to cancel - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - cancelFineTune(fineTuneId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Answers the specified question using the provided documents and examples. The endpoint first [searches](/docs/api-reference/searches) over provided documents or files to find relevant context. The relevant context is combined with the provided examples and question to create the prompt for [completion](/docs/api-reference/completions). - * @param {CreateAnswerRequest} createAnswerRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createAnswer(createAnswerRequest: CreateAnswerRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Creates a model response for the given chat conversation. - * @param {CreateChatCompletionRequest} createChatCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createChatCompletion(createChatCompletionRequest: CreateChatCompletionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. - * @param {CreateClassificationRequest} createClassificationRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createClassification(createClassificationRequest: CreateClassificationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Creates a completion for the provided prompt and parameters. - * @param {CreateCompletionRequest} createCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createCompletion(createCompletionRequest: CreateCompletionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Creates a new edit for the provided input, instruction, and parameters. - * @param {CreateEditRequest} createEditRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEdit(createEditRequest: CreateEditRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Creates an embedding vector representing the input text. - * @param {CreateEmbeddingRequest} createEmbeddingRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEmbedding(createEmbeddingRequest: CreateEmbeddingRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit. - * @param {File} file Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded. If the `purpose` is set to \\\"fine-tune\\\", each line is a JSON record with \\\"prompt\\\" and \\\"completion\\\" fields representing your [training examples](/docs/guides/fine-tuning/prepare-training-data). - * @param {string} purpose The intended purpose of the uploaded documents. Use \\\"fine-tune\\\" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows us to validate the format of the uploaded file. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFile(file: File, purpose: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {CreateFineTuneRequest} createFineTuneRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFineTune(createFineTuneRequest: CreateFineTuneRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Creates an image given a prompt. - * @param {CreateImageRequest} createImageRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImage(createImageRequest: CreateImageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. - * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. - * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageEdit(image: File, prompt: string, mask?: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Creates a variation of a given image. - * @param {File} image The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageVariation(image: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Classifies if text violates OpenAI\'s Content Policy - * @param {CreateModerationRequest} createModerationRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createModeration(createModerationRequest: CreateModerationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary The search endpoint computes similarity scores between provided query and documents. Documents can be passed directly to the API if there are no more than 200 of them. To go beyond the 200 document limit, documents can be processed offline and then used for efficient retrieval at query time. When `file` is set, the search endpoint searches over all the documents in the given file and returns up to the `max_rerank` number of documents. These documents will be returned along with their search scores. The similarity score is a positive score that usually ranges from 0 to 300 (but can sometimes go higher), where a score above 200 usually means the document is semantically similar to the query. - * @param {string} engineId The ID of the engine to use for this request. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @param {CreateSearchRequest} createSearchRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createSearch(engineId: string, createSearchRequest: CreateSearchRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Transcribes audio into the input language. - * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, language?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Translates audio into into English. - * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranslation(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Delete a file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteFile(fileId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Delete a fine-tuned model. You must have the Owner role in your organization. - * @param {string} model The model to delete - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteModel(model: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Returns the contents of the specified file - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - downloadFile(fileId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - listEngines(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Returns a list of files that belong to the user\'s organization. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFiles(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Get fine-grained status updates for a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to get events for. - * @param {boolean} [stream] Whether to stream events for the fine-tune job. If set to true, events will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available. The stream will terminate with a `data: [DONE]` message when the job is finished (succeeded, cancelled, or failed). If set to false, only events generated so far will be returned. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTuneEvents(fineTuneId: string, stream?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary List your organization\'s fine-tuning jobs - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTunes(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Lists the currently available models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listModels(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Retrieves a model instance, providing basic information about it such as the owner and availability. - * @param {string} engineId The ID of the engine to use for this request - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - retrieveEngine(engineId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Returns information about a specific file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFile(fileId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Gets info about the fine-tune job. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {string} fineTuneId The ID of the fine-tune job - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFineTune(fineTuneId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Retrieves a model instance, providing basic information about the model such as the owner and permissioning. - * @param {string} model The ID of the model to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveModel(model: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; -}; -/** - * OpenAIApi - factory interface - * @export - */ -export declare const OpenAIApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { - /** - * - * @summary Immediately cancel a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to cancel - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - cancelFineTune(fineTuneId: string, options?: any): AxiosPromise; - /** - * - * @summary Answers the specified question using the provided documents and examples. The endpoint first [searches](/docs/api-reference/searches) over provided documents or files to find relevant context. The relevant context is combined with the provided examples and question to create the prompt for [completion](/docs/api-reference/completions). - * @param {CreateAnswerRequest} createAnswerRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createAnswer(createAnswerRequest: CreateAnswerRequest, options?: any): AxiosPromise; - /** - * - * @summary Creates a model response for the given chat conversation. - * @param {CreateChatCompletionRequest} createChatCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createChatCompletion(createChatCompletionRequest: CreateChatCompletionRequest, options?: any): AxiosPromise; - /** - * - * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. - * @param {CreateClassificationRequest} createClassificationRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createClassification(createClassificationRequest: CreateClassificationRequest, options?: any): AxiosPromise; - /** - * - * @summary Creates a completion for the provided prompt and parameters. - * @param {CreateCompletionRequest} createCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createCompletion(createCompletionRequest: CreateCompletionRequest, options?: any): AxiosPromise; - /** - * - * @summary Creates a new edit for the provided input, instruction, and parameters. - * @param {CreateEditRequest} createEditRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEdit(createEditRequest: CreateEditRequest, options?: any): AxiosPromise; - /** - * - * @summary Creates an embedding vector representing the input text. - * @param {CreateEmbeddingRequest} createEmbeddingRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEmbedding(createEmbeddingRequest: CreateEmbeddingRequest, options?: any): AxiosPromise; - /** - * - * @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit. - * @param {File} file Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded. If the `purpose` is set to \\\"fine-tune\\\", each line is a JSON record with \\\"prompt\\\" and \\\"completion\\\" fields representing your [training examples](/docs/guides/fine-tuning/prepare-training-data). - * @param {string} purpose The intended purpose of the uploaded documents. Use \\\"fine-tune\\\" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows us to validate the format of the uploaded file. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFile(file: File, purpose: string, options?: any): AxiosPromise; - /** - * - * @summary Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {CreateFineTuneRequest} createFineTuneRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFineTune(createFineTuneRequest: CreateFineTuneRequest, options?: any): AxiosPromise; - /** - * - * @summary Creates an image given a prompt. - * @param {CreateImageRequest} createImageRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImage(createImageRequest: CreateImageRequest, options?: any): AxiosPromise; - /** - * - * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. - * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. - * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageEdit(image: File, prompt: string, mask?: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: any): AxiosPromise; - /** - * - * @summary Creates a variation of a given image. - * @param {File} image The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageVariation(image: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: any): AxiosPromise; - /** - * - * @summary Classifies if text violates OpenAI\'s Content Policy - * @param {CreateModerationRequest} createModerationRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createModeration(createModerationRequest: CreateModerationRequest, options?: any): AxiosPromise; - /** - * - * @summary The search endpoint computes similarity scores between provided query and documents. Documents can be passed directly to the API if there are no more than 200 of them. To go beyond the 200 document limit, documents can be processed offline and then used for efficient retrieval at query time. When `file` is set, the search endpoint searches over all the documents in the given file and returns up to the `max_rerank` number of documents. These documents will be returned along with their search scores. The similarity score is a positive score that usually ranges from 0 to 300 (but can sometimes go higher), where a score above 200 usually means the document is semantically similar to the query. - * @param {string} engineId The ID of the engine to use for this request. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @param {CreateSearchRequest} createSearchRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createSearch(engineId: string, createSearchRequest: CreateSearchRequest, options?: any): AxiosPromise; - /** - * - * @summary Transcribes audio into the input language. - * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, language?: string, options?: any): AxiosPromise; - /** - * - * @summary Translates audio into into English. - * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranslation(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: any): AxiosPromise; - /** - * - * @summary Delete a file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteFile(fileId: string, options?: any): AxiosPromise; - /** - * - * @summary Delete a fine-tuned model. You must have the Owner role in your organization. - * @param {string} model The model to delete - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteModel(model: string, options?: any): AxiosPromise; - /** - * - * @summary Returns the contents of the specified file - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - downloadFile(fileId: string, options?: any): AxiosPromise; - /** - * - * @summary Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - listEngines(options?: any): AxiosPromise; - /** - * - * @summary Returns a list of files that belong to the user\'s organization. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFiles(options?: any): AxiosPromise; - /** - * - * @summary Get fine-grained status updates for a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to get events for. - * @param {boolean} [stream] Whether to stream events for the fine-tune job. If set to true, events will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available. The stream will terminate with a `data: [DONE]` message when the job is finished (succeeded, cancelled, or failed). If set to false, only events generated so far will be returned. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTuneEvents(fineTuneId: string, stream?: boolean, options?: any): AxiosPromise; - /** - * - * @summary List your organization\'s fine-tuning jobs - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTunes(options?: any): AxiosPromise; - /** - * - * @summary Lists the currently available models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listModels(options?: any): AxiosPromise; - /** - * - * @summary Retrieves a model instance, providing basic information about it such as the owner and availability. - * @param {string} engineId The ID of the engine to use for this request - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - retrieveEngine(engineId: string, options?: any): AxiosPromise; - /** - * - * @summary Returns information about a specific file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFile(fileId: string, options?: any): AxiosPromise; - /** - * - * @summary Gets info about the fine-tune job. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {string} fineTuneId The ID of the fine-tune job - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFineTune(fineTuneId: string, options?: any): AxiosPromise; - /** - * - * @summary Retrieves a model instance, providing basic information about the model such as the owner and permissioning. - * @param {string} model The ID of the model to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveModel(model: string, options?: any): AxiosPromise; -}; -/** - * OpenAIApi - object-oriented interface - * @export - * @class OpenAIApi - * @extends {BaseAPI} - */ -export declare class OpenAIApi extends BaseAPI { - /** - * - * @summary Immediately cancel a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to cancel - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - cancelFineTune(fineTuneId: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Answers the specified question using the provided documents and examples. The endpoint first [searches](/docs/api-reference/searches) over provided documents or files to find relevant context. The relevant context is combined with the provided examples and question to create the prompt for [completion](/docs/api-reference/completions). - * @param {CreateAnswerRequest} createAnswerRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createAnswer(createAnswerRequest: CreateAnswerRequest, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Creates a model response for the given chat conversation. - * @param {CreateChatCompletionRequest} createChatCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createChatCompletion(createChatCompletionRequest: CreateChatCompletionRequest, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. - * @param {CreateClassificationRequest} createClassificationRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createClassification(createClassificationRequest: CreateClassificationRequest, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Creates a completion for the provided prompt and parameters. - * @param {CreateCompletionRequest} createCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createCompletion(createCompletionRequest: CreateCompletionRequest, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Creates a new edit for the provided input, instruction, and parameters. - * @param {CreateEditRequest} createEditRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createEdit(createEditRequest: CreateEditRequest, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Creates an embedding vector representing the input text. - * @param {CreateEmbeddingRequest} createEmbeddingRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createEmbedding(createEmbeddingRequest: CreateEmbeddingRequest, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit. - * @param {File} file Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded. If the `purpose` is set to \\\"fine-tune\\\", each line is a JSON record with \\\"prompt\\\" and \\\"completion\\\" fields representing your [training examples](/docs/guides/fine-tuning/prepare-training-data). - * @param {string} purpose The intended purpose of the uploaded documents. Use \\\"fine-tune\\\" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows us to validate the format of the uploaded file. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createFile(file: File, purpose: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {CreateFineTuneRequest} createFineTuneRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createFineTune(createFineTuneRequest: CreateFineTuneRequest, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Creates an image given a prompt. - * @param {CreateImageRequest} createImageRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createImage(createImageRequest: CreateImageRequest, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. - * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. - * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createImageEdit(image: File, prompt: string, mask?: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Creates a variation of a given image. - * @param {File} image The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createImageVariation(image: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Classifies if text violates OpenAI\'s Content Policy - * @param {CreateModerationRequest} createModerationRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createModeration(createModerationRequest: CreateModerationRequest, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary The search endpoint computes similarity scores between provided query and documents. Documents can be passed directly to the API if there are no more than 200 of them. To go beyond the 200 document limit, documents can be processed offline and then used for efficient retrieval at query time. When `file` is set, the search endpoint searches over all the documents in the given file and returns up to the `max_rerank` number of documents. These documents will be returned along with their search scores. The similarity score is a positive score that usually ranges from 0 to 300 (but can sometimes go higher), where a score above 200 usually means the document is semantically similar to the query. - * @param {string} engineId The ID of the engine to use for this request. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @param {CreateSearchRequest} createSearchRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createSearch(engineId: string, createSearchRequest: CreateSearchRequest, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Transcribes audio into the input language. - * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, language?: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Translates audio into into English. - * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createTranslation(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Delete a file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - deleteFile(fileId: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Delete a fine-tuned model. You must have the Owner role in your organization. - * @param {string} model The model to delete - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - deleteModel(model: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Returns the contents of the specified file - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - downloadFile(fileId: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - listEngines(options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Returns a list of files that belong to the user\'s organization. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - listFiles(options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Get fine-grained status updates for a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to get events for. - * @param {boolean} [stream] Whether to stream events for the fine-tune job. If set to true, events will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available. The stream will terminate with a `data: [DONE]` message when the job is finished (succeeded, cancelled, or failed). If set to false, only events generated so far will be returned. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - listFineTuneEvents(fineTuneId: string, stream?: boolean, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary List your organization\'s fine-tuning jobs - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - listFineTunes(options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Lists the currently available models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - listModels(options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Retrieves a model instance, providing basic information about it such as the owner and availability. - * @param {string} engineId The ID of the engine to use for this request - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - retrieveEngine(engineId: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Returns information about a specific file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - retrieveFile(fileId: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Gets info about the fine-tune job. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {string} fineTuneId The ID of the fine-tune job - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - retrieveFineTune(fineTuneId: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Retrieves a model instance, providing basic information about the model such as the owner and permissioning. - * @param {string} model The ID of the model to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - retrieveModel(model: string, options?: AxiosRequestConfig): Promise>; -} diff --git a/dist/api.js b/dist/api.js deleted file mode 100644 index a4d889c6a..000000000 --- a/dist/api.js +++ /dev/null @@ -1,2040 +0,0 @@ -"use strict"; -/* tslint:disable */ -/* eslint-disable */ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.3.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.OpenAIApi = exports.OpenAIApiFactory = exports.OpenAIApiFp = exports.OpenAIApiAxiosParamCreator = exports.CreateImageRequestResponseFormatEnum = exports.CreateImageRequestSizeEnum = exports.ChatCompletionResponseMessageRoleEnum = exports.ChatCompletionRequestMessageRoleEnum = void 0; -const axios_1 = require("axios"); -// Some imports not used depending on template conditions -// @ts-ignore -const common_1 = require("./common"); -// @ts-ignore -const base_1 = require("./base"); -exports.ChatCompletionRequestMessageRoleEnum = { - System: 'system', - User: 'user', - Assistant: 'assistant', - Function: 'function' -}; -exports.ChatCompletionResponseMessageRoleEnum = { - System: 'system', - User: 'user', - Assistant: 'assistant', - Function: 'function' -}; -exports.CreateImageRequestSizeEnum = { - _256x256: '256x256', - _512x512: '512x512', - _1024x1024: '1024x1024' -}; -exports.CreateImageRequestResponseFormatEnum = { - Url: 'url', - B64Json: 'b64_json' -}; -/** - * OpenAIApi - axios parameter creator - * @export - */ -exports.OpenAIApiAxiosParamCreator = function (configuration) { - return { - /** - * - * @summary Immediately cancel a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to cancel - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - cancelFineTune: (fineTuneId, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'fineTuneId' is not null or undefined - common_1.assertParamExists('cancelFineTune', 'fineTuneId', fineTuneId); - const localVarPath = `/fine-tunes/{fine_tune_id}/cancel` - .replace(`{${"fine_tune_id"}}`, encodeURIComponent(String(fineTuneId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Answers the specified question using the provided documents and examples. The endpoint first [searches](/docs/api-reference/searches) over provided documents or files to find relevant context. The relevant context is combined with the provided examples and question to create the prompt for [completion](/docs/api-reference/completions). - * @param {CreateAnswerRequest} createAnswerRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createAnswer: (createAnswerRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'createAnswerRequest' is not null or undefined - common_1.assertParamExists('createAnswer', 'createAnswerRequest', createAnswerRequest); - const localVarPath = `/answers`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - localVarHeaderParameter['Content-Type'] = 'application/json'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = common_1.serializeDataIfNeeded(createAnswerRequest, localVarRequestOptions, configuration); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Creates a model response for the given chat conversation. - * @param {CreateChatCompletionRequest} createChatCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createChatCompletion: (createChatCompletionRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'createChatCompletionRequest' is not null or undefined - common_1.assertParamExists('createChatCompletion', 'createChatCompletionRequest', createChatCompletionRequest); - const localVarPath = `/chat/completions`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - localVarHeaderParameter['Content-Type'] = 'application/json'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = common_1.serializeDataIfNeeded(createChatCompletionRequest, localVarRequestOptions, configuration); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. - * @param {CreateClassificationRequest} createClassificationRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createClassification: (createClassificationRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'createClassificationRequest' is not null or undefined - common_1.assertParamExists('createClassification', 'createClassificationRequest', createClassificationRequest); - const localVarPath = `/classifications`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - localVarHeaderParameter['Content-Type'] = 'application/json'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = common_1.serializeDataIfNeeded(createClassificationRequest, localVarRequestOptions, configuration); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Creates a completion for the provided prompt and parameters. - * @param {CreateCompletionRequest} createCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createCompletion: (createCompletionRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'createCompletionRequest' is not null or undefined - common_1.assertParamExists('createCompletion', 'createCompletionRequest', createCompletionRequest); - const localVarPath = `/completions`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - localVarHeaderParameter['Content-Type'] = 'application/json'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = common_1.serializeDataIfNeeded(createCompletionRequest, localVarRequestOptions, configuration); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Creates a new edit for the provided input, instruction, and parameters. - * @param {CreateEditRequest} createEditRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEdit: (createEditRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'createEditRequest' is not null or undefined - common_1.assertParamExists('createEdit', 'createEditRequest', createEditRequest); - const localVarPath = `/edits`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - localVarHeaderParameter['Content-Type'] = 'application/json'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = common_1.serializeDataIfNeeded(createEditRequest, localVarRequestOptions, configuration); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Creates an embedding vector representing the input text. - * @param {CreateEmbeddingRequest} createEmbeddingRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEmbedding: (createEmbeddingRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'createEmbeddingRequest' is not null or undefined - common_1.assertParamExists('createEmbedding', 'createEmbeddingRequest', createEmbeddingRequest); - const localVarPath = `/embeddings`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - localVarHeaderParameter['Content-Type'] = 'application/json'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = common_1.serializeDataIfNeeded(createEmbeddingRequest, localVarRequestOptions, configuration); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit. - * @param {File} file Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded. If the `purpose` is set to \\\"fine-tune\\\", each line is a JSON record with \\\"prompt\\\" and \\\"completion\\\" fields representing your [training examples](/docs/guides/fine-tuning/prepare-training-data). - * @param {string} purpose The intended purpose of the uploaded documents. Use \\\"fine-tune\\\" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows us to validate the format of the uploaded file. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFile: (file, purpose, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'file' is not null or undefined - common_1.assertParamExists('createFile', 'file', file); - // verify required parameter 'purpose' is not null or undefined - common_1.assertParamExists('createFile', 'purpose', purpose); - const localVarPath = `/files`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)(); - if (file !== undefined) { - localVarFormParams.append('file', file); - } - if (purpose !== undefined) { - localVarFormParams.append('purpose', purpose); - } - localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), localVarFormParams.getHeaders()), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = localVarFormParams; - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {CreateFineTuneRequest} createFineTuneRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFineTune: (createFineTuneRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'createFineTuneRequest' is not null or undefined - common_1.assertParamExists('createFineTune', 'createFineTuneRequest', createFineTuneRequest); - const localVarPath = `/fine-tunes`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - localVarHeaderParameter['Content-Type'] = 'application/json'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = common_1.serializeDataIfNeeded(createFineTuneRequest, localVarRequestOptions, configuration); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Creates an image given a prompt. - * @param {CreateImageRequest} createImageRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImage: (createImageRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'createImageRequest' is not null or undefined - common_1.assertParamExists('createImage', 'createImageRequest', createImageRequest); - const localVarPath = `/images/generations`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - localVarHeaderParameter['Content-Type'] = 'application/json'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = common_1.serializeDataIfNeeded(createImageRequest, localVarRequestOptions, configuration); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. - * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. - * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageEdit: (image, prompt, mask, n, size, responseFormat, user, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'image' is not null or undefined - common_1.assertParamExists('createImageEdit', 'image', image); - // verify required parameter 'prompt' is not null or undefined - common_1.assertParamExists('createImageEdit', 'prompt', prompt); - const localVarPath = `/images/edits`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)(); - if (image !== undefined) { - localVarFormParams.append('image', image); - } - if (mask !== undefined) { - localVarFormParams.append('mask', mask); - } - if (prompt !== undefined) { - localVarFormParams.append('prompt', prompt); - } - if (n !== undefined) { - localVarFormParams.append('n', n); - } - if (size !== undefined) { - localVarFormParams.append('size', size); - } - if (responseFormat !== undefined) { - localVarFormParams.append('response_format', responseFormat); - } - if (user !== undefined) { - localVarFormParams.append('user', user); - } - localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), localVarFormParams.getHeaders()), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = localVarFormParams; - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Creates a variation of a given image. - * @param {File} image The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageVariation: (image, n, size, responseFormat, user, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'image' is not null or undefined - common_1.assertParamExists('createImageVariation', 'image', image); - const localVarPath = `/images/variations`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)(); - if (image !== undefined) { - localVarFormParams.append('image', image); - } - if (n !== undefined) { - localVarFormParams.append('n', n); - } - if (size !== undefined) { - localVarFormParams.append('size', size); - } - if (responseFormat !== undefined) { - localVarFormParams.append('response_format', responseFormat); - } - if (user !== undefined) { - localVarFormParams.append('user', user); - } - localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), localVarFormParams.getHeaders()), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = localVarFormParams; - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Classifies if text violates OpenAI\'s Content Policy - * @param {CreateModerationRequest} createModerationRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createModeration: (createModerationRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'createModerationRequest' is not null or undefined - common_1.assertParamExists('createModeration', 'createModerationRequest', createModerationRequest); - const localVarPath = `/moderations`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - localVarHeaderParameter['Content-Type'] = 'application/json'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = common_1.serializeDataIfNeeded(createModerationRequest, localVarRequestOptions, configuration); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary The search endpoint computes similarity scores between provided query and documents. Documents can be passed directly to the API if there are no more than 200 of them. To go beyond the 200 document limit, documents can be processed offline and then used for efficient retrieval at query time. When `file` is set, the search endpoint searches over all the documents in the given file and returns up to the `max_rerank` number of documents. These documents will be returned along with their search scores. The similarity score is a positive score that usually ranges from 0 to 300 (but can sometimes go higher), where a score above 200 usually means the document is semantically similar to the query. - * @param {string} engineId The ID of the engine to use for this request. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @param {CreateSearchRequest} createSearchRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createSearch: (engineId, createSearchRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'engineId' is not null or undefined - common_1.assertParamExists('createSearch', 'engineId', engineId); - // verify required parameter 'createSearchRequest' is not null or undefined - common_1.assertParamExists('createSearch', 'createSearchRequest', createSearchRequest); - const localVarPath = `/engines/{engine_id}/search` - .replace(`{${"engine_id"}}`, encodeURIComponent(String(engineId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - localVarHeaderParameter['Content-Type'] = 'application/json'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = common_1.serializeDataIfNeeded(createSearchRequest, localVarRequestOptions, configuration); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Transcribes audio into the input language. - * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranscription: (file, model, prompt, responseFormat, temperature, language, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'file' is not null or undefined - common_1.assertParamExists('createTranscription', 'file', file); - // verify required parameter 'model' is not null or undefined - common_1.assertParamExists('createTranscription', 'model', model); - const localVarPath = `/audio/transcriptions`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)(); - if (file !== undefined) { - localVarFormParams.append('file', file); - } - if (model !== undefined) { - localVarFormParams.append('model', model); - } - if (prompt !== undefined) { - localVarFormParams.append('prompt', prompt); - } - if (responseFormat !== undefined) { - localVarFormParams.append('response_format', responseFormat); - } - if (temperature !== undefined) { - localVarFormParams.append('temperature', temperature); - } - if (language !== undefined) { - localVarFormParams.append('language', language); - } - localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), localVarFormParams.getHeaders()), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = localVarFormParams; - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Translates audio into into English. - * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranslation: (file, model, prompt, responseFormat, temperature, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'file' is not null or undefined - common_1.assertParamExists('createTranslation', 'file', file); - // verify required parameter 'model' is not null or undefined - common_1.assertParamExists('createTranslation', 'model', model); - const localVarPath = `/audio/translations`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)(); - if (file !== undefined) { - localVarFormParams.append('file', file); - } - if (model !== undefined) { - localVarFormParams.append('model', model); - } - if (prompt !== undefined) { - localVarFormParams.append('prompt', prompt); - } - if (responseFormat !== undefined) { - localVarFormParams.append('response_format', responseFormat); - } - if (temperature !== undefined) { - localVarFormParams.append('temperature', temperature); - } - localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), localVarFormParams.getHeaders()), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = localVarFormParams; - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Delete a file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteFile: (fileId, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'fileId' is not null or undefined - common_1.assertParamExists('deleteFile', 'fileId', fileId); - const localVarPath = `/files/{file_id}` - .replace(`{${"file_id"}}`, encodeURIComponent(String(fileId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Delete a fine-tuned model. You must have the Owner role in your organization. - * @param {string} model The model to delete - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteModel: (model, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'model' is not null or undefined - common_1.assertParamExists('deleteModel', 'model', model); - const localVarPath = `/models/{model}` - .replace(`{${"model"}}`, encodeURIComponent(String(model))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Returns the contents of the specified file - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - downloadFile: (fileId, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'fileId' is not null or undefined - common_1.assertParamExists('downloadFile', 'fileId', fileId); - const localVarPath = `/files/{file_id}/content` - .replace(`{${"file_id"}}`, encodeURIComponent(String(fileId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - listEngines: (options = {}) => __awaiter(this, void 0, void 0, function* () { - const localVarPath = `/engines`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Returns a list of files that belong to the user\'s organization. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFiles: (options = {}) => __awaiter(this, void 0, void 0, function* () { - const localVarPath = `/files`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Get fine-grained status updates for a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to get events for. - * @param {boolean} [stream] Whether to stream events for the fine-tune job. If set to true, events will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available. The stream will terminate with a `data: [DONE]` message when the job is finished (succeeded, cancelled, or failed). If set to false, only events generated so far will be returned. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTuneEvents: (fineTuneId, stream, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'fineTuneId' is not null or undefined - common_1.assertParamExists('listFineTuneEvents', 'fineTuneId', fineTuneId); - const localVarPath = `/fine-tunes/{fine_tune_id}/events` - .replace(`{${"fine_tune_id"}}`, encodeURIComponent(String(fineTuneId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - if (stream !== undefined) { - localVarQueryParameter['stream'] = stream; - } - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary List your organization\'s fine-tuning jobs - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTunes: (options = {}) => __awaiter(this, void 0, void 0, function* () { - const localVarPath = `/fine-tunes`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Lists the currently available models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listModels: (options = {}) => __awaiter(this, void 0, void 0, function* () { - const localVarPath = `/models`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Retrieves a model instance, providing basic information about it such as the owner and availability. - * @param {string} engineId The ID of the engine to use for this request - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - retrieveEngine: (engineId, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'engineId' is not null or undefined - common_1.assertParamExists('retrieveEngine', 'engineId', engineId); - const localVarPath = `/engines/{engine_id}` - .replace(`{${"engine_id"}}`, encodeURIComponent(String(engineId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Returns information about a specific file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFile: (fileId, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'fileId' is not null or undefined - common_1.assertParamExists('retrieveFile', 'fileId', fileId); - const localVarPath = `/files/{file_id}` - .replace(`{${"file_id"}}`, encodeURIComponent(String(fileId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Gets info about the fine-tune job. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {string} fineTuneId The ID of the fine-tune job - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFineTune: (fineTuneId, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'fineTuneId' is not null or undefined - common_1.assertParamExists('retrieveFineTune', 'fineTuneId', fineTuneId); - const localVarPath = `/fine-tunes/{fine_tune_id}` - .replace(`{${"fine_tune_id"}}`, encodeURIComponent(String(fineTuneId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Retrieves a model instance, providing basic information about the model such as the owner and permissioning. - * @param {string} model The ID of the model to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveModel: (model, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'model' is not null or undefined - common_1.assertParamExists('retrieveModel', 'model', model); - const localVarPath = `/models/{model}` - .replace(`{${"model"}}`, encodeURIComponent(String(model))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - }; -}; -/** - * OpenAIApi - functional programming interface - * @export - */ -exports.OpenAIApiFp = function (configuration) { - const localVarAxiosParamCreator = exports.OpenAIApiAxiosParamCreator(configuration); - return { - /** - * - * @summary Immediately cancel a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to cancel - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - cancelFineTune(fineTuneId, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.cancelFineTune(fineTuneId, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Answers the specified question using the provided documents and examples. The endpoint first [searches](/docs/api-reference/searches) over provided documents or files to find relevant context. The relevant context is combined with the provided examples and question to create the prompt for [completion](/docs/api-reference/completions). - * @param {CreateAnswerRequest} createAnswerRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createAnswer(createAnswerRequest, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createAnswer(createAnswerRequest, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Creates a model response for the given chat conversation. - * @param {CreateChatCompletionRequest} createChatCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createChatCompletion(createChatCompletionRequest, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createChatCompletion(createChatCompletionRequest, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. - * @param {CreateClassificationRequest} createClassificationRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createClassification(createClassificationRequest, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createClassification(createClassificationRequest, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Creates a completion for the provided prompt and parameters. - * @param {CreateCompletionRequest} createCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createCompletion(createCompletionRequest, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createCompletion(createCompletionRequest, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Creates a new edit for the provided input, instruction, and parameters. - * @param {CreateEditRequest} createEditRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEdit(createEditRequest, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createEdit(createEditRequest, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Creates an embedding vector representing the input text. - * @param {CreateEmbeddingRequest} createEmbeddingRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEmbedding(createEmbeddingRequest, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createEmbedding(createEmbeddingRequest, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit. - * @param {File} file Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded. If the `purpose` is set to \\\"fine-tune\\\", each line is a JSON record with \\\"prompt\\\" and \\\"completion\\\" fields representing your [training examples](/docs/guides/fine-tuning/prepare-training-data). - * @param {string} purpose The intended purpose of the uploaded documents. Use \\\"fine-tune\\\" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows us to validate the format of the uploaded file. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFile(file, purpose, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createFile(file, purpose, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {CreateFineTuneRequest} createFineTuneRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFineTune(createFineTuneRequest, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createFineTune(createFineTuneRequest, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Creates an image given a prompt. - * @param {CreateImageRequest} createImageRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImage(createImageRequest, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createImage(createImageRequest, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. - * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. - * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageEdit(image, prompt, mask, n, size, responseFormat, user, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createImageEdit(image, prompt, mask, n, size, responseFormat, user, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Creates a variation of a given image. - * @param {File} image The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageVariation(image, n, size, responseFormat, user, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createImageVariation(image, n, size, responseFormat, user, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Classifies if text violates OpenAI\'s Content Policy - * @param {CreateModerationRequest} createModerationRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createModeration(createModerationRequest, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createModeration(createModerationRequest, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary The search endpoint computes similarity scores between provided query and documents. Documents can be passed directly to the API if there are no more than 200 of them. To go beyond the 200 document limit, documents can be processed offline and then used for efficient retrieval at query time. When `file` is set, the search endpoint searches over all the documents in the given file and returns up to the `max_rerank` number of documents. These documents will be returned along with their search scores. The similarity score is a positive score that usually ranges from 0 to 300 (but can sometimes go higher), where a score above 200 usually means the document is semantically similar to the query. - * @param {string} engineId The ID of the engine to use for this request. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @param {CreateSearchRequest} createSearchRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createSearch(engineId, createSearchRequest, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createSearch(engineId, createSearchRequest, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Transcribes audio into the input language. - * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranscription(file, model, prompt, responseFormat, temperature, language, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createTranscription(file, model, prompt, responseFormat, temperature, language, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Translates audio into into English. - * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranslation(file, model, prompt, responseFormat, temperature, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createTranslation(file, model, prompt, responseFormat, temperature, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Delete a file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteFile(fileId, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteFile(fileId, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Delete a fine-tuned model. You must have the Owner role in your organization. - * @param {string} model The model to delete - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteModel(model, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteModel(model, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Returns the contents of the specified file - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - downloadFile(fileId, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.downloadFile(fileId, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - listEngines(options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.listEngines(options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Returns a list of files that belong to the user\'s organization. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFiles(options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.listFiles(options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Get fine-grained status updates for a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to get events for. - * @param {boolean} [stream] Whether to stream events for the fine-tune job. If set to true, events will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available. The stream will terminate with a `data: [DONE]` message when the job is finished (succeeded, cancelled, or failed). If set to false, only events generated so far will be returned. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTuneEvents(fineTuneId, stream, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.listFineTuneEvents(fineTuneId, stream, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary List your organization\'s fine-tuning jobs - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTunes(options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.listFineTunes(options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Lists the currently available models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listModels(options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.listModels(options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Retrieves a model instance, providing basic information about it such as the owner and availability. - * @param {string} engineId The ID of the engine to use for this request - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - retrieveEngine(engineId, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.retrieveEngine(engineId, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Returns information about a specific file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFile(fileId, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.retrieveFile(fileId, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Gets info about the fine-tune job. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {string} fineTuneId The ID of the fine-tune job - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFineTune(fineTuneId, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.retrieveFineTune(fineTuneId, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Retrieves a model instance, providing basic information about the model such as the owner and permissioning. - * @param {string} model The ID of the model to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveModel(model, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.retrieveModel(model, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - }; -}; -/** - * OpenAIApi - factory interface - * @export - */ -exports.OpenAIApiFactory = function (configuration, basePath, axios) { - const localVarFp = exports.OpenAIApiFp(configuration); - return { - /** - * - * @summary Immediately cancel a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to cancel - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - cancelFineTune(fineTuneId, options) { - return localVarFp.cancelFineTune(fineTuneId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Answers the specified question using the provided documents and examples. The endpoint first [searches](/docs/api-reference/searches) over provided documents or files to find relevant context. The relevant context is combined with the provided examples and question to create the prompt for [completion](/docs/api-reference/completions). - * @param {CreateAnswerRequest} createAnswerRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createAnswer(createAnswerRequest, options) { - return localVarFp.createAnswer(createAnswerRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates a model response for the given chat conversation. - * @param {CreateChatCompletionRequest} createChatCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createChatCompletion(createChatCompletionRequest, options) { - return localVarFp.createChatCompletion(createChatCompletionRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. - * @param {CreateClassificationRequest} createClassificationRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createClassification(createClassificationRequest, options) { - return localVarFp.createClassification(createClassificationRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates a completion for the provided prompt and parameters. - * @param {CreateCompletionRequest} createCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createCompletion(createCompletionRequest, options) { - return localVarFp.createCompletion(createCompletionRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates a new edit for the provided input, instruction, and parameters. - * @param {CreateEditRequest} createEditRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEdit(createEditRequest, options) { - return localVarFp.createEdit(createEditRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates an embedding vector representing the input text. - * @param {CreateEmbeddingRequest} createEmbeddingRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEmbedding(createEmbeddingRequest, options) { - return localVarFp.createEmbedding(createEmbeddingRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit. - * @param {File} file Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded. If the `purpose` is set to \\\"fine-tune\\\", each line is a JSON record with \\\"prompt\\\" and \\\"completion\\\" fields representing your [training examples](/docs/guides/fine-tuning/prepare-training-data). - * @param {string} purpose The intended purpose of the uploaded documents. Use \\\"fine-tune\\\" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows us to validate the format of the uploaded file. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFile(file, purpose, options) { - return localVarFp.createFile(file, purpose, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {CreateFineTuneRequest} createFineTuneRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFineTune(createFineTuneRequest, options) { - return localVarFp.createFineTune(createFineTuneRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates an image given a prompt. - * @param {CreateImageRequest} createImageRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImage(createImageRequest, options) { - return localVarFp.createImage(createImageRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. - * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. - * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageEdit(image, prompt, mask, n, size, responseFormat, user, options) { - return localVarFp.createImageEdit(image, prompt, mask, n, size, responseFormat, user, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates a variation of a given image. - * @param {File} image The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageVariation(image, n, size, responseFormat, user, options) { - return localVarFp.createImageVariation(image, n, size, responseFormat, user, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Classifies if text violates OpenAI\'s Content Policy - * @param {CreateModerationRequest} createModerationRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createModeration(createModerationRequest, options) { - return localVarFp.createModeration(createModerationRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary The search endpoint computes similarity scores between provided query and documents. Documents can be passed directly to the API if there are no more than 200 of them. To go beyond the 200 document limit, documents can be processed offline and then used for efficient retrieval at query time. When `file` is set, the search endpoint searches over all the documents in the given file and returns up to the `max_rerank` number of documents. These documents will be returned along with their search scores. The similarity score is a positive score that usually ranges from 0 to 300 (but can sometimes go higher), where a score above 200 usually means the document is semantically similar to the query. - * @param {string} engineId The ID of the engine to use for this request. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @param {CreateSearchRequest} createSearchRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createSearch(engineId, createSearchRequest, options) { - return localVarFp.createSearch(engineId, createSearchRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Transcribes audio into the input language. - * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranscription(file, model, prompt, responseFormat, temperature, language, options) { - return localVarFp.createTranscription(file, model, prompt, responseFormat, temperature, language, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Translates audio into into English. - * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranslation(file, model, prompt, responseFormat, temperature, options) { - return localVarFp.createTranslation(file, model, prompt, responseFormat, temperature, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Delete a file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteFile(fileId, options) { - return localVarFp.deleteFile(fileId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Delete a fine-tuned model. You must have the Owner role in your organization. - * @param {string} model The model to delete - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteModel(model, options) { - return localVarFp.deleteModel(model, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Returns the contents of the specified file - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - downloadFile(fileId, options) { - return localVarFp.downloadFile(fileId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - listEngines(options) { - return localVarFp.listEngines(options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Returns a list of files that belong to the user\'s organization. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFiles(options) { - return localVarFp.listFiles(options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Get fine-grained status updates for a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to get events for. - * @param {boolean} [stream] Whether to stream events for the fine-tune job. If set to true, events will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available. The stream will terminate with a `data: [DONE]` message when the job is finished (succeeded, cancelled, or failed). If set to false, only events generated so far will be returned. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTuneEvents(fineTuneId, stream, options) { - return localVarFp.listFineTuneEvents(fineTuneId, stream, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary List your organization\'s fine-tuning jobs - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTunes(options) { - return localVarFp.listFineTunes(options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Lists the currently available models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listModels(options) { - return localVarFp.listModels(options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Retrieves a model instance, providing basic information about it such as the owner and availability. - * @param {string} engineId The ID of the engine to use for this request - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - retrieveEngine(engineId, options) { - return localVarFp.retrieveEngine(engineId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Returns information about a specific file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFile(fileId, options) { - return localVarFp.retrieveFile(fileId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Gets info about the fine-tune job. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {string} fineTuneId The ID of the fine-tune job - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFineTune(fineTuneId, options) { - return localVarFp.retrieveFineTune(fineTuneId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Retrieves a model instance, providing basic information about the model such as the owner and permissioning. - * @param {string} model The ID of the model to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveModel(model, options) { - return localVarFp.retrieveModel(model, options).then((request) => request(axios, basePath)); - }, - }; -}; -/** - * OpenAIApi - object-oriented interface - * @export - * @class OpenAIApi - * @extends {BaseAPI} - */ -class OpenAIApi extends base_1.BaseAPI { - /** - * - * @summary Immediately cancel a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to cancel - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - cancelFineTune(fineTuneId, options) { - return exports.OpenAIApiFp(this.configuration).cancelFineTune(fineTuneId, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Answers the specified question using the provided documents and examples. The endpoint first [searches](/docs/api-reference/searches) over provided documents or files to find relevant context. The relevant context is combined with the provided examples and question to create the prompt for [completion](/docs/api-reference/completions). - * @param {CreateAnswerRequest} createAnswerRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createAnswer(createAnswerRequest, options) { - return exports.OpenAIApiFp(this.configuration).createAnswer(createAnswerRequest, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Creates a model response for the given chat conversation. - * @param {CreateChatCompletionRequest} createChatCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createChatCompletion(createChatCompletionRequest, options) { - return exports.OpenAIApiFp(this.configuration).createChatCompletion(createChatCompletionRequest, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. - * @param {CreateClassificationRequest} createClassificationRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createClassification(createClassificationRequest, options) { - return exports.OpenAIApiFp(this.configuration).createClassification(createClassificationRequest, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Creates a completion for the provided prompt and parameters. - * @param {CreateCompletionRequest} createCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createCompletion(createCompletionRequest, options) { - return exports.OpenAIApiFp(this.configuration).createCompletion(createCompletionRequest, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Creates a new edit for the provided input, instruction, and parameters. - * @param {CreateEditRequest} createEditRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createEdit(createEditRequest, options) { - return exports.OpenAIApiFp(this.configuration).createEdit(createEditRequest, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Creates an embedding vector representing the input text. - * @param {CreateEmbeddingRequest} createEmbeddingRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createEmbedding(createEmbeddingRequest, options) { - return exports.OpenAIApiFp(this.configuration).createEmbedding(createEmbeddingRequest, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit. - * @param {File} file Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded. If the `purpose` is set to \\\"fine-tune\\\", each line is a JSON record with \\\"prompt\\\" and \\\"completion\\\" fields representing your [training examples](/docs/guides/fine-tuning/prepare-training-data). - * @param {string} purpose The intended purpose of the uploaded documents. Use \\\"fine-tune\\\" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows us to validate the format of the uploaded file. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createFile(file, purpose, options) { - return exports.OpenAIApiFp(this.configuration).createFile(file, purpose, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {CreateFineTuneRequest} createFineTuneRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createFineTune(createFineTuneRequest, options) { - return exports.OpenAIApiFp(this.configuration).createFineTune(createFineTuneRequest, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Creates an image given a prompt. - * @param {CreateImageRequest} createImageRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createImage(createImageRequest, options) { - return exports.OpenAIApiFp(this.configuration).createImage(createImageRequest, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. - * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. - * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createImageEdit(image, prompt, mask, n, size, responseFormat, user, options) { - return exports.OpenAIApiFp(this.configuration).createImageEdit(image, prompt, mask, n, size, responseFormat, user, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Creates a variation of a given image. - * @param {File} image The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createImageVariation(image, n, size, responseFormat, user, options) { - return exports.OpenAIApiFp(this.configuration).createImageVariation(image, n, size, responseFormat, user, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Classifies if text violates OpenAI\'s Content Policy - * @param {CreateModerationRequest} createModerationRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createModeration(createModerationRequest, options) { - return exports.OpenAIApiFp(this.configuration).createModeration(createModerationRequest, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary The search endpoint computes similarity scores between provided query and documents. Documents can be passed directly to the API if there are no more than 200 of them. To go beyond the 200 document limit, documents can be processed offline and then used for efficient retrieval at query time. When `file` is set, the search endpoint searches over all the documents in the given file and returns up to the `max_rerank` number of documents. These documents will be returned along with their search scores. The similarity score is a positive score that usually ranges from 0 to 300 (but can sometimes go higher), where a score above 200 usually means the document is semantically similar to the query. - * @param {string} engineId The ID of the engine to use for this request. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @param {CreateSearchRequest} createSearchRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createSearch(engineId, createSearchRequest, options) { - return exports.OpenAIApiFp(this.configuration).createSearch(engineId, createSearchRequest, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Transcribes audio into the input language. - * @param {File} file The audio file object (not file name) to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createTranscription(file, model, prompt, responseFormat, temperature, language, options) { - return exports.OpenAIApiFp(this.configuration).createTranscription(file, model, prompt, responseFormat, temperature, language, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Translates audio into into English. - * @param {File} file The audio file object (not file name) translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createTranslation(file, model, prompt, responseFormat, temperature, options) { - return exports.OpenAIApiFp(this.configuration).createTranslation(file, model, prompt, responseFormat, temperature, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Delete a file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - deleteFile(fileId, options) { - return exports.OpenAIApiFp(this.configuration).deleteFile(fileId, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Delete a fine-tuned model. You must have the Owner role in your organization. - * @param {string} model The model to delete - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - deleteModel(model, options) { - return exports.OpenAIApiFp(this.configuration).deleteModel(model, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Returns the contents of the specified file - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - downloadFile(fileId, options) { - return exports.OpenAIApiFp(this.configuration).downloadFile(fileId, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - listEngines(options) { - return exports.OpenAIApiFp(this.configuration).listEngines(options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Returns a list of files that belong to the user\'s organization. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - listFiles(options) { - return exports.OpenAIApiFp(this.configuration).listFiles(options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Get fine-grained status updates for a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to get events for. - * @param {boolean} [stream] Whether to stream events for the fine-tune job. If set to true, events will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available. The stream will terminate with a `data: [DONE]` message when the job is finished (succeeded, cancelled, or failed). If set to false, only events generated so far will be returned. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - listFineTuneEvents(fineTuneId, stream, options) { - return exports.OpenAIApiFp(this.configuration).listFineTuneEvents(fineTuneId, stream, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary List your organization\'s fine-tuning jobs - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - listFineTunes(options) { - return exports.OpenAIApiFp(this.configuration).listFineTunes(options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Lists the currently available models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - listModels(options) { - return exports.OpenAIApiFp(this.configuration).listModels(options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Retrieves a model instance, providing basic information about it such as the owner and availability. - * @param {string} engineId The ID of the engine to use for this request - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - retrieveEngine(engineId, options) { - return exports.OpenAIApiFp(this.configuration).retrieveEngine(engineId, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Returns information about a specific file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - retrieveFile(fileId, options) { - return exports.OpenAIApiFp(this.configuration).retrieveFile(fileId, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Gets info about the fine-tune job. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {string} fineTuneId The ID of the fine-tune job - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - retrieveFineTune(fineTuneId, options) { - return exports.OpenAIApiFp(this.configuration).retrieveFineTune(fineTuneId, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Retrieves a model instance, providing basic information about the model such as the owner and permissioning. - * @param {string} model The ID of the model to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - retrieveModel(model, options) { - return exports.OpenAIApiFp(this.configuration).retrieveModel(model, options).then((request) => request(this.axios, this.basePath)); - } -} -exports.OpenAIApi = OpenAIApi; diff --git a/dist/base.d.ts b/dist/base.d.ts deleted file mode 100644 index e1986a6ab..000000000 --- a/dist/base.d.ts +++ /dev/null @@ -1,54 +0,0 @@ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.3.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ -import type { Configuration } from './configuration'; -import type { AxiosInstance, AxiosRequestConfig } from 'axios'; -export declare const BASE_PATH: string; -/** - * - * @export - */ -export declare const COLLECTION_FORMATS: { - csv: string; - ssv: string; - tsv: string; - pipes: string; -}; -/** - * - * @export - * @interface RequestArgs - */ -export interface RequestArgs { - url: string; - options: AxiosRequestConfig; -} -/** - * - * @export - * @class BaseAPI - */ -export declare class BaseAPI { - protected basePath: string; - protected axios: AxiosInstance; - protected configuration: Configuration | undefined; - constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance); -} -/** - * - * @export - * @class RequiredError - * @extends {Error} - */ -export declare class RequiredError extends Error { - field: string; - constructor(field: string, msg?: string); -} diff --git a/dist/base.js b/dist/base.js deleted file mode 100644 index 7dc003f14..000000000 --- a/dist/base.js +++ /dev/null @@ -1,59 +0,0 @@ -"use strict"; -/* tslint:disable */ -/* eslint-disable */ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.3.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ -Object.defineProperty(exports, "__esModule", { value: true }); -exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = exports.BASE_PATH = void 0; -const axios_1 = require("axios"); -exports.BASE_PATH = "https://api.openai.com/v1".replace(/\/+$/, ""); -/** - * - * @export - */ -exports.COLLECTION_FORMATS = { - csv: ",", - ssv: " ", - tsv: "\t", - pipes: "|", -}; -/** - * - * @export - * @class BaseAPI - */ -class BaseAPI { - constructor(configuration, basePath = exports.BASE_PATH, axios = axios_1.default) { - this.basePath = basePath; - this.axios = axios; - if (configuration) { - this.configuration = configuration; - this.basePath = configuration.basePath || this.basePath; - } - } -} -exports.BaseAPI = BaseAPI; -; -/** - * - * @export - * @class RequiredError - * @extends {Error} - */ -class RequiredError extends Error { - constructor(field, msg) { - super(msg); - this.field = field; - this.name = "RequiredError"; - } -} -exports.RequiredError = RequiredError; diff --git a/dist/common.d.ts b/dist/common.d.ts deleted file mode 100644 index 6ef2798be..000000000 --- a/dist/common.d.ts +++ /dev/null @@ -1,65 +0,0 @@ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.3.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ -import type { Configuration } from "./configuration"; -import type { RequestArgs } from "./base"; -import type { AxiosInstance, AxiosResponse } from 'axios'; -/** - * - * @export - */ -export declare const DUMMY_BASE_URL = "https://example.com/"; -/** - * - * @throws {RequiredError} - * @export - */ -export declare const assertParamExists: (functionName: string, paramName: string, paramValue: unknown) => void; -/** - * - * @export - */ -export declare const setApiKeyToObject: (object: any, keyParamName: string, configuration?: Configuration) => Promise; -/** - * - * @export - */ -export declare const setBasicAuthToObject: (object: any, configuration?: Configuration) => void; -/** - * - * @export - */ -export declare const setBearerAuthToObject: (object: any, configuration?: Configuration) => Promise; -/** - * - * @export - */ -export declare const setOAuthToObject: (object: any, name: string, scopes: string[], configuration?: Configuration) => Promise; -/** - * - * @export - */ -export declare const setSearchParams: (url: URL, ...objects: any[]) => void; -/** - * - * @export - */ -export declare const serializeDataIfNeeded: (value: any, requestOptions: any, configuration?: Configuration) => any; -/** - * - * @export - */ -export declare const toPathString: (url: URL) => string; -/** - * - * @export - */ -export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => >(axios?: AxiosInstance, basePath?: string) => Promise; diff --git a/dist/common.js b/dist/common.js deleted file mode 100644 index 36b545527..000000000 --- a/dist/common.js +++ /dev/null @@ -1,151 +0,0 @@ -"use strict"; -/* tslint:disable */ -/* eslint-disable */ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.3.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.createRequestFunction = exports.toPathString = exports.serializeDataIfNeeded = exports.setSearchParams = exports.setOAuthToObject = exports.setBearerAuthToObject = exports.setBasicAuthToObject = exports.setApiKeyToObject = exports.assertParamExists = exports.DUMMY_BASE_URL = void 0; -const base_1 = require("./base"); -/** - * - * @export - */ -exports.DUMMY_BASE_URL = 'https://example.com/'; -/** - * - * @throws {RequiredError} - * @export - */ -exports.assertParamExists = function (functionName, paramName, paramValue) { - if (paramValue === null || paramValue === undefined) { - throw new base_1.RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`); - } -}; -/** - * - * @export - */ -exports.setApiKeyToObject = function (object, keyParamName, configuration) { - return __awaiter(this, void 0, void 0, function* () { - if (configuration && configuration.apiKey) { - const localVarApiKeyValue = typeof configuration.apiKey === 'function' - ? yield configuration.apiKey(keyParamName) - : yield configuration.apiKey; - object[keyParamName] = localVarApiKeyValue; - } - }); -}; -/** - * - * @export - */ -exports.setBasicAuthToObject = function (object, configuration) { - if (configuration && (configuration.username || configuration.password)) { - object["auth"] = { username: configuration.username, password: configuration.password }; - } -}; -/** - * - * @export - */ -exports.setBearerAuthToObject = function (object, configuration) { - return __awaiter(this, void 0, void 0, function* () { - if (configuration && configuration.accessToken) { - const accessToken = typeof configuration.accessToken === 'function' - ? yield configuration.accessToken() - : yield configuration.accessToken; - object["Authorization"] = "Bearer " + accessToken; - } - }); -}; -/** - * - * @export - */ -exports.setOAuthToObject = function (object, name, scopes, configuration) { - return __awaiter(this, void 0, void 0, function* () { - if (configuration && configuration.accessToken) { - const localVarAccessTokenValue = typeof configuration.accessToken === 'function' - ? yield configuration.accessToken(name, scopes) - : yield configuration.accessToken; - object["Authorization"] = "Bearer " + localVarAccessTokenValue; - } - }); -}; -function setFlattenedQueryParams(urlSearchParams, parameter, key = "") { - if (parameter == null) - return; - if (typeof parameter === "object") { - if (Array.isArray(parameter)) { - parameter.forEach(item => setFlattenedQueryParams(urlSearchParams, item, key)); - } - else { - Object.keys(parameter).forEach(currentKey => setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`)); - } - } - else { - if (urlSearchParams.has(key)) { - urlSearchParams.append(key, parameter); - } - else { - urlSearchParams.set(key, parameter); - } - } -} -/** - * - * @export - */ -exports.setSearchParams = function (url, ...objects) { - const searchParams = new URLSearchParams(url.search); - setFlattenedQueryParams(searchParams, objects); - url.search = searchParams.toString(); -}; -/** - * - * @export - */ -exports.serializeDataIfNeeded = function (value, requestOptions, configuration) { - const nonString = typeof value !== 'string'; - const needsSerialization = nonString && configuration && configuration.isJsonMime - ? configuration.isJsonMime(requestOptions.headers['Content-Type']) - : nonString; - return needsSerialization - ? JSON.stringify(value !== undefined ? value : {}) - : (value || ""); -}; -/** - * - * @export - */ -exports.toPathString = function (url) { - return url.pathname + url.search + url.hash; -}; -/** - * - * @export - */ -exports.createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configuration) { - return (axios = globalAxios, basePath = BASE_PATH) => { - const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url }); - return axios.request(axiosRequestArgs); - }; -}; diff --git a/dist/configuration.d.ts b/dist/configuration.d.ts deleted file mode 100644 index f0b3d1a44..000000000 --- a/dist/configuration.d.ts +++ /dev/null @@ -1,91 +0,0 @@ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.3.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ -export interface ConfigurationParameters { - apiKey?: string | Promise | ((name: string) => string) | ((name: string) => Promise); - organization?: string; - username?: string; - password?: string; - accessToken?: string | Promise | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise); - basePath?: string; - baseOptions?: any; - formDataCtor?: new () => any; -} -export declare class Configuration { - /** - * parameter for apiKey security - * @param name security name - * @memberof Configuration - */ - apiKey?: string | Promise | ((name: string) => string) | ((name: string) => Promise); - /** - * OpenAI organization id - * - * @type {string} - * @memberof Configuration - */ - organization?: string; - /** - * parameter for basic security - * - * @type {string} - * @memberof Configuration - */ - username?: string; - /** - * parameter for basic security - * - * @type {string} - * @memberof Configuration - */ - password?: string; - /** - * parameter for oauth2 security - * @param name security name - * @param scopes oauth2 scope - * @memberof Configuration - */ - accessToken?: string | Promise | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise); - /** - * override base path - * - * @type {string} - * @memberof Configuration - */ - basePath?: string; - /** - * base options for axios calls - * - * @type {any} - * @memberof Configuration - */ - baseOptions?: any; - /** - * The FormData constructor that will be used to create multipart form data - * requests. You can inject this here so that execution environments that - * do not support the FormData class can still run the generated client. - * - * @type {new () => FormData} - */ - formDataCtor?: new () => any; - constructor(param?: ConfigurationParameters); - /** - * Check if the given MIME is a JSON MIME. - * JSON MIME examples: - * application/json - * application/json; charset=UTF8 - * APPLICATION/JSON - * application/vnd.company+json - * @param mime - MIME (Multipurpose Internet Mail Extensions) - * @return True if the given MIME is JSON, false otherwise. - */ - isJsonMime(mime: string): boolean; -} diff --git a/dist/configuration.js b/dist/configuration.js deleted file mode 100644 index 8d0ee2611..000000000 --- a/dist/configuration.js +++ /dev/null @@ -1,54 +0,0 @@ -"use strict"; -/* tslint:disable */ -/* eslint-disable */ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.3.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ -Object.defineProperty(exports, "__esModule", { value: true }); -exports.Configuration = void 0; -const packageJson = require("../package.json"); -class Configuration { - constructor(param = {}) { - this.apiKey = param.apiKey; - this.organization = param.organization; - this.username = param.username; - this.password = param.password; - this.accessToken = param.accessToken; - this.basePath = param.basePath; - this.baseOptions = param.baseOptions; - this.formDataCtor = param.formDataCtor; - if (!this.baseOptions) { - this.baseOptions = {}; - } - this.baseOptions.headers = Object.assign({ 'User-Agent': `OpenAI/NodeJS/${packageJson.version}`, 'Authorization': `Bearer ${this.apiKey}` }, this.baseOptions.headers); - if (this.organization) { - this.baseOptions.headers['OpenAI-Organization'] = this.organization; - } - if (!this.formDataCtor) { - this.formDataCtor = require("form-data"); - } - } - /** - * Check if the given MIME is a JSON MIME. - * JSON MIME examples: - * application/json - * application/json; charset=UTF8 - * APPLICATION/JSON - * application/vnd.company+json - * @param mime - MIME (Multipurpose Internet Mail Extensions) - * @return True if the given MIME is JSON, false otherwise. - */ - isJsonMime(mime) { - const jsonMime = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i'); - return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json'); - } -} -exports.Configuration = Configuration; diff --git a/dist/index.d.ts b/dist/index.d.ts deleted file mode 100644 index 80ab07ba6..000000000 --- a/dist/index.d.ts +++ /dev/null @@ -1,13 +0,0 @@ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.3.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ -export * from "./api"; -export * from "./configuration"; diff --git a/dist/index.js b/dist/index.js deleted file mode 100644 index 58f44dc9f..000000000 --- a/dist/index.js +++ /dev/null @@ -1,27 +0,0 @@ -"use strict"; -/* tslint:disable */ -/* eslint-disable */ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.3.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __exportStar = (this && this.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p); -}; -Object.defineProperty(exports, "__esModule", { value: true }); -__exportStar(require("./api"), exports); -__exportStar(require("./configuration"), exports); diff --git a/index.ts b/index.ts deleted file mode 100644 index d564d1820..000000000 --- a/index.ts +++ /dev/null @@ -1,18 +0,0 @@ -/* tslint:disable */ -/* eslint-disable */ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.3.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ - - -export * from "./api"; -export * from "./configuration"; - diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 0477e4022..000000000 --- a/package-lock.json +++ /dev/null @@ -1,191 +0,0 @@ -{ - "name": "openai", - "version": "3.3.0", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "name": "openai", - "version": "3.3.0", - "license": "MIT", - "dependencies": { - "axios": "^0.26.0", - "form-data": "^4.0.0" - }, - "devDependencies": { - "@types/node": "^12.11.5", - "typescript": "^3.6.4" - } - }, - "node_modules/@types/node": { - "version": "12.20.37", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.37.tgz", - "integrity": "sha512-i1KGxqcvJaLQali+WuypQnXwcplhtNtjs66eNsZpp2P2FL/trJJxx/VWsM0YCL2iMoIJrbXje48lvIQAQ4p2ZA==", - "dev": true - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" - }, - "node_modules/axios": { - "version": "0.26.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.26.0.tgz", - "integrity": "sha512-lKoGLMYtHvFrPVt3r+RBMp9nh34N0M8zEfCWqdWZx6phynIEhQqAdydpyBAAG211zlhX9Rgu08cOamy6XjE5Og==", - "dependencies": { - "follow-redirects": "^1.14.8" - } - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/follow-redirects": { - "version": "1.14.8", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.8.tgz", - "integrity": "sha512-1x0S9UVJHsQprFcEC/qnNzBLcIxsjAV905f/UkQxbclCsoTWlacCNOpQa/anodLl2uaEKFhfWOvM2Qg77+15zA==", - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/mime-db": { - "version": "1.51.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz", - "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.34", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz", - "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==", - "dependencies": { - "mime-db": "1.51.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/typescript": { - "version": "3.9.10", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.10.tgz", - "integrity": "sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==", - "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - } - } - }, - "dependencies": { - "@types/node": { - "version": "12.20.37", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.37.tgz", - "integrity": "sha512-i1KGxqcvJaLQali+WuypQnXwcplhtNtjs66eNsZpp2P2FL/trJJxx/VWsM0YCL2iMoIJrbXje48lvIQAQ4p2ZA==", - "dev": true - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" - }, - "axios": { - "version": "0.26.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.26.0.tgz", - "integrity": "sha512-lKoGLMYtHvFrPVt3r+RBMp9nh34N0M8zEfCWqdWZx6phynIEhQqAdydpyBAAG211zlhX9Rgu08cOamy6XjE5Og==", - "requires": { - "follow-redirects": "^1.14.8" - } - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" - }, - "follow-redirects": { - "version": "1.14.8", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.8.tgz", - "integrity": "sha512-1x0S9UVJHsQprFcEC/qnNzBLcIxsjAV905f/UkQxbclCsoTWlacCNOpQa/anodLl2uaEKFhfWOvM2Qg77+15zA==" - }, - "form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } - }, - "mime-db": { - "version": "1.51.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz", - "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==" - }, - "mime-types": { - "version": "2.1.34", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz", - "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==", - "requires": { - "mime-db": "1.51.0" - } - }, - "typescript": { - "version": "3.9.10", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.10.tgz", - "integrity": "sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==", - "dev": true - } - } -} diff --git a/package.json b/package.json deleted file mode 100644 index f866333d8..000000000 --- a/package.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "name": "openai", - "version": "3.3.0", - "description": "Node.js library for the OpenAI API", - "repository": { - "type": "git", - "url": "git@github.com:openai/openai-node.git" - }, - "keywords": [ - "openai", - "open", - "ai", - "gpt-3", - "gpt3" - ], - "author": "OpenAI", - "license": "MIT", - "main": "./dist/index.js", - "types": "./dist/index.d.ts", - "scripts": { - "build": "tsc --outDir dist/" - }, - "dependencies": { - "axios": "^0.26.0", - "form-data": "^4.0.0" - }, - "devDependencies": { - "@types/node": "^12.11.5", - "typescript": "^3.6.4" - } -} diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index 2e9a191f8..000000000 --- a/tsconfig.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "compilerOptions": { - "declaration": true, - "target": "es6", - "module": "commonjs", - "noImplicitAny": true, - "outDir": "dist", - "rootDir": ".", - "typeRoots": [ - "node_modules/@types" - ] - }, - "exclude": [ - "dist", - "node_modules" - ] -} From 9d818a1d89543be431ec90b27dba76640c301d86 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Thu, 15 Jun 2023 22:36:11 -0700 Subject: [PATCH 015/725] v4.0.0-beta.0 --- .eslintrc.js | 10 + .gitignore | 3 + .npmignore | 2 + .prettierignore | 1 + .prettierrc | 6 + .stats.yml | 1 + LICENSE | 201 + README.md | 223 + api.md | 157 + bin/check-test-server | 50 + build | 12 + check-version.ts | 18 + core.ts | 814 ++++ error.ts | 125 + examples/demo.ts | 28 + examples/errors.ts | 28 + examples/fine-tune-data.jsonl | 3 + examples/fine-tunes.ts | 37 + fetch-polyfill.ts | 69 + index.ts | 157 + jest.config.js | 8 + package.json | 47 + resource.ts | 24 + resources/answers.ts | 180 + resources/audio/audio.ts | 10 + resources/audio/index.ts | 4 + resources/audio/transcriptions.ts | 64 + resources/audio/translations.ts | 57 + resources/chat/chat.ts | 8 + resources/chat/completions.ts | 559 +++ resources/chat/index.ts | 3 + resources/classifications.ts | 169 + resources/completions.ts | 371 ++ resources/edits.ts | 96 + resources/embeddings.ts | 65 + resources/files.ts | 104 + resources/fine-tunes.ts | 277 ++ resources/images.ts | 153 + resources/index.ts | 36 + resources/models.ts | 53 + resources/moderations.ts | 85 + streaming.ts | 205 + tests/api-resources/answers.test.ts | 242 + .../audio/transcriptions.test.ts | 28 + .../api-resources/audio/translations.test.ts | 27 + tests/api-resources/chat/completions.test.ts | 40 + tests/api-resources/classifications.test.ts | 36 + tests/api-resources/completions.test.ts | 32 + tests/api-resources/edits.test.ts | 25 + tests/api-resources/embeddings.test.ts | 22 + tests/api-resources/files.test.ts | 64 + tests/api-resources/fine-tunes.test.ts | 78 + tests/api-resources/images.test.ts | 61 + tests/api-resources/models.test.ts | 40 + tests/api-resources/moderations.test.ts | 18 + tests/form.test.ts | 27 + tests/index.test.ts | 76 + tests/responses.test.ts | 25 + tsconfig.cjs.json | 8 + tsconfig.json | 39 + typings/digest-fetch/index.d.ts | 33 + version.ts | 1 + yarn.lock | 4118 +++++++++++++++++ 63 files changed, 9563 insertions(+) create mode 100644 .eslintrc.js create mode 100644 .gitignore create mode 100644 .npmignore create mode 100644 .prettierignore create mode 100644 .prettierrc create mode 100644 .stats.yml create mode 100644 LICENSE create mode 100644 README.md create mode 100644 api.md create mode 100755 bin/check-test-server create mode 100755 build create mode 100644 check-version.ts create mode 100644 core.ts create mode 100644 error.ts create mode 100755 examples/demo.ts create mode 100644 examples/errors.ts create mode 100644 examples/fine-tune-data.jsonl create mode 100755 examples/fine-tunes.ts create mode 100644 fetch-polyfill.ts create mode 100644 index.ts create mode 100644 jest.config.js create mode 100644 package.json create mode 100644 resource.ts create mode 100644 resources/answers.ts create mode 100644 resources/audio/audio.ts create mode 100644 resources/audio/index.ts create mode 100644 resources/audio/transcriptions.ts create mode 100644 resources/audio/translations.ts create mode 100644 resources/chat/chat.ts create mode 100644 resources/chat/completions.ts create mode 100644 resources/chat/index.ts create mode 100644 resources/classifications.ts create mode 100644 resources/completions.ts create mode 100644 resources/edits.ts create mode 100644 resources/embeddings.ts create mode 100644 resources/files.ts create mode 100644 resources/fine-tunes.ts create mode 100644 resources/images.ts create mode 100644 resources/index.ts create mode 100644 resources/models.ts create mode 100644 resources/moderations.ts create mode 100644 streaming.ts create mode 100644 tests/api-resources/answers.test.ts create mode 100644 tests/api-resources/audio/transcriptions.test.ts create mode 100644 tests/api-resources/audio/translations.test.ts create mode 100644 tests/api-resources/chat/completions.test.ts create mode 100644 tests/api-resources/classifications.test.ts create mode 100644 tests/api-resources/completions.test.ts create mode 100644 tests/api-resources/edits.test.ts create mode 100644 tests/api-resources/embeddings.test.ts create mode 100644 tests/api-resources/files.test.ts create mode 100644 tests/api-resources/fine-tunes.test.ts create mode 100644 tests/api-resources/images.test.ts create mode 100644 tests/api-resources/models.test.ts create mode 100644 tests/api-resources/moderations.test.ts create mode 100644 tests/form.test.ts create mode 100644 tests/index.test.ts create mode 100644 tests/responses.test.ts create mode 100644 tsconfig.cjs.json create mode 100644 tsconfig.json create mode 100644 typings/digest-fetch/index.d.ts create mode 100644 version.ts create mode 100644 yarn.lock diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 000000000..60f0e7a35 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,10 @@ +module.exports = { + parser: '@typescript-eslint/parser', + plugins: ['@typescript-eslint', 'unused-imports', 'prettier'], + rules: { + 'no-unused-vars': 'off', + 'prettier/prettier': 'error', + 'unused-imports/no-unused-imports': 'error', + }, + root: true, +}; diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..14ec4464c --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +node_modules +yarn-error.log +dist diff --git a/.npmignore b/.npmignore new file mode 100644 index 000000000..93cab344d --- /dev/null +++ b/.npmignore @@ -0,0 +1,2 @@ +node_modules +yarn-error.log diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 000000000..1b763b1ba --- /dev/null +++ b/.prettierignore @@ -0,0 +1 @@ +CHANGELOG.md diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 000000000..6f72f437c --- /dev/null +++ b/.prettierrc @@ -0,0 +1,6 @@ +{ + "arrowParens": "always", + "trailingComma": "all", + "singleQuote": true, + "printWidth": 110 +} diff --git a/.stats.yml b/.stats.yml new file mode 100644 index 000000000..f1c795f81 --- /dev/null +++ b/.stats.yml @@ -0,0 +1 @@ +configured_endpoints: 25 diff --git a/LICENSE b/LICENSE new file mode 100644 index 000000000..7b1b36a64 --- /dev/null +++ b/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2023 OpenAI + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/README.md b/README.md new file mode 100644 index 000000000..2f9dd2abf --- /dev/null +++ b/README.md @@ -0,0 +1,223 @@ +# OpenAI Node API Library + +[![NPM version](https://img.shields.io/npm/v/openai.svg)](https://npmjs.org/package/openai) + +The OpenAI Node library provides convenient access to the OpenAI REST API from applications written in server-side JavaScript. +It includes TypeScript definitions for all request params and response fields. + +> ⚠️ **Important note: this library is meant for server-side usage only, as using it in client-side browser code will expose your secret API key. [See here](https://platform.openai.com/docs/api-reference/authentication) for more details.** + +## Documentation + +To learn how to use the OpenAI API, check out our [API Reference](https://platform.openai.com/docs/api-reference) and [Documentation](https://platform.openai.com/docs). + +## Installation + +```sh +npm install --save openai +# or +yarn add openai +``` + +## Usage + +```js +import OpenAI from 'openai'; + +const openAI = new OpenAI({ + apiKey: 'my api key', // defaults to process.env["OPENAI_API_KEY"] +}); + +async function main() { + const completion = await openAI.completions.create({ + model: 'text-davinci-002', + prompt: 'Say this is a test', + max_tokens: 6, + temperature: 0, + }); + + console.log(completion.choices); +} +main().catch(console.error); +``` + +## Streaming Responses + +We provide support for streaming responses using Server Side Events (SSE). + +```ts +import OpenAI from 'openai'; + +const client = new OpenAI(); + +const stream = await client.completions.create({ + prompt: 'Say this is a test', + model: 'text-davinci-003', + stream: true, +}); +for await (const part of stream) { + process.stdout.write(part.choices[0]?.text || ''); +} +``` + +If you need to cancel a stream, you can `break` from the loop +or call `stream.controller.abort()`. + +### Usage with TypeScript + +Importing, instantiating, and interacting with the library are the same as above. +If you like, you may reference our types directly: + +```ts +import OpenAI from 'openai'; + +const openAI = new OpenAI({ + apiKey: 'my api key', // defaults to process.env["OPENAI_API_KEY"] +}); + +async function main() { + const params: OpenAI.CompletionCreateParams = { + model: 'text-davinci-002', + prompt: 'Say this is a test', + max_tokens: 6, + temperature: 0, + }; + const completion: OpenAI.Completion = await openAI.completions.create(params); +} +main().catch(console.error); +``` + +Documentation for each method, request param, and response field are available in docstrings and will appear on hover in most modern editors. + +## File Uploads + +Request parameters that correspond to file uploads can be passed as either a `FormData.Blob` or a `FormData.File` instance. + +We provide a `fileFromPath` helper function to easily create `FormData.File` instances from a given class. + +```ts +import OpenAI, { fileFromPath } from 'openai'; + +const openAI = new OpenAI(); + +const file = await fileFromPath('input.jsonl'); +await openAI.files.create({ file: file, purpose: 'fine-tune' }); +``` + +## Handling errors + +When the library is unable to connect to the API, +or if the API returns a non-success status code (i.e., 4xx or 5xx response), +a subclass of `APIError` will be thrown: + +```ts +async function main() { + const fineTune = await openAI.fineTunes + .create({ training_file: 'file-XGinujblHPwGLSztz8cPS8XY' }) + .catch((err) => { + if (err instanceof OpenAI.APIError) { + console.log(err.status); // 400 + console.log(err.name); // BadRequestError + + console.log(err.headers); // {server: 'nginx', ...} + } + }); +} +main().catch(console.error); +``` + +Error codes are as followed: + +| Status Code | Error Type | +| ----------- | -------------------------- | +| 400 | `BadRequestError` | +| 401 | `AuthenticationError` | +| 403 | `PermissionDeniedError` | +| 404 | `NotFoundError` | +| 422 | `UnprocessableEntityError` | +| 429 | `RateLimitError` | +| >=500 | `InternalServerError` | +| N/A | `APIConnectionError` | + +### Retries + +Certain errors will be automatically retried 2 times by default, with a short exponential backoff. +Connection errors (for example, due to a network connectivity problem), 409 Conflict, 429 Rate Limit, +and >=500 Internal errors will all be retried by default. + +You can use the `maxRetries` option to configure or disable this: + + +```js +// Configure the default for all requests: +const openAI = new OpenAI({ + maxRetries: 0, // default is 2 +}); + +// Or, configure per-request: +openAI.embeddings.create({ model: 'text-similarity-babbage-001',input: 'The food was delicious and the waiter...' }, { + maxRetries: 5, +}); +``` + +### Timeouts + +Requests time out after 60 seconds by default. You can configure this with a `timeout` option: + + +```ts +// Configure the default for all requests: +const openAI = new OpenAI({ + timeout: 20 * 1000, // 20 seconds (default is 60s) +}); + +// Override per-request: +openAI.edits.create({ model: 'text-davinci-edit-001',input: 'What day of the wek is it?',instruction: 'Fix the spelling mistakes' }, { + timeout: 5 * 1000, +}); +``` + +On timeout, an `APIConnectionTimeoutError` is thrown. + +Note that requests which time out will be [retried twice by default](#retries). + +## Configuring an HTTP(S) Agent (e.g., for proxies) + +By default, this library uses a stable agent for all http/https requests to reuse TCP connections, eliminating many TCP & TLS handshakes and shaving around 100ms off most requests. + +If you would like to disable or customize this behavior, for example to use the API behind a proxy, you can pass an `httpAgent` which is used for all requests (be they http or https), for example: + + +```ts +import http from 'http'; +import HttpsProxyAgent from 'https-proxy-agent'; + +// Configure the default for all requests: +const openAI = new OpenAI({ + httpAgent: new HttpsProxyAgent(process.env.PROXY_URL), +}); + +// Override per-request: +openAI.models.list({ + baseURL: 'http://localhost:8080/test-api', + httpAgent: new http.Agent({ keepAlive: false }), +}) +``` + +## Status + +This package is in beta. Its internals and interfaces are not stable +and subject to change without a major semver bump; +please reach out if you rely on any undocumented behavior. + +We are keen for your feedback; please open an [issue](https://www.github.com/openai/openai-node/issues) with questions, bugs, or suggestions. + +## Requirements + +The following runtimes are supported: + +- Node.js version 12 or higher. +- Deno v1.28.0 or higher (experimental). + Use `import OpenAI from "npm:openai"`. + +If you are interested in other runtime environments, please open or upvote an issue on GitHub. diff --git a/api.md b/api.md new file mode 100644 index 000000000..83790ac31 --- /dev/null +++ b/api.md @@ -0,0 +1,157 @@ +# Completions + +Models: + +- Completion +- CompletionChoice + +Methods: + +- client.completions.create({ ...params }) -> Completion + +# Chat + +## Completions + +Models: + +- ChatCompletion +- ChatCompletionEvent + +Methods: + +- client.chat.completions.create({ ...params }) -> ChatCompletion + +# Edits + +Models: + +- Edit + +Methods: + +- client.edits.create({ ...params }) -> Edit + +# Embeddings + +Models: + +- Embedding + +Methods: + +- client.embeddings.create({ ...params }) -> Embedding + +# Files + +Models: + +- File +- FileListResponse +- FileDeleteResponse +- FileRetrieveFileContentResponse + +Methods: + +- client.files.create({ ...params }) -> File +- client.files.retrieve(fileId) -> File +- client.files.list() -> FileListResponse +- client.files.del(fileId) -> FileDeleteResponse +- client.files.retrieveFileContent(fileId) -> Promise + +# Images + +Models: + +- Image +- ImagesResponse + +Methods: + +- client.images.createVariation({ ...params }) -> ImagesResponse +- client.images.edit({ ...params }) -> ImagesResponse +- client.images.generate({ ...params }) -> ImagesResponse + +# Audio + +## Transcriptions + +Models: + +- Transcription + +Methods: + +- client.audio.transcriptions.create({ ...params }) -> Transcription + +## Translations + +Models: + +- Translation + +Methods: + +- client.audio.translations.create({ ...params }) -> Translation + +# Answers + +Models: + +- AnswerCreateResponse + +Methods: + +- client.answers.create({ ...params }) -> AnswerCreateResponse + +# Classifications + +Models: + +- ClassificationCreateResponse + +Methods: + +- client.classifications.create({ ...params }) -> ClassificationCreateResponse + +# Moderations + +Models: + +- Moderation +- ModerationCreateResponse + +Methods: + +- client.moderations.create({ ...params }) -> ModerationCreateResponse + +# Models + +Models: + +- DeleteModelResponse +- ListModelsResponse +- Model + +Methods: + +- client.models.retrieve(model) -> Model +- client.models.list() -> ListModelsResponse +- client.models.del(model) -> DeleteModelResponse + +# FineTunes + +Models: + +- FineTune +- FineTuneEvent +- ListFineTuneEventsResponse +- ListFineTunesResponse + +Methods: + +- client.fineTunes.create({ ...params }) -> FineTune +- client.fineTunes.retrieve(fineTuneId) -> FineTune +- client.fineTunes.list() -> ListFineTunesResponse +- client.fineTunes.cancel(fineTuneId) -> FineTune +- client.fineTunes.listEvents(fineTuneId, { ...params }) -> ListFineTuneEventsResponse diff --git a/bin/check-test-server b/bin/check-test-server new file mode 100755 index 000000000..34efa9dac --- /dev/null +++ b/bin/check-test-server @@ -0,0 +1,50 @@ +#!/usr/bin/env bash + +RED='\033[0;31m' +GREEN='\033[0;32m' +YELLOW='\033[0;33m' +NC='\033[0m' # No Color + +function prism_is_running() { + curl --silent "http://localhost:4010/" >/dev/null 2>&1 +} + +function is_overriding_api_base_url() { + [ -n "$API_BASE_URL" ] +} + +if is_overriding_api_base_url ; then + # If someone is running the tests against the live API, we can trust they know + # what they're doing and exit early. + echo -e "${GREEN}✔ Running tests against ${API_BASE_URL}${NC}" + + exit 0 +elif prism_is_running ; then + echo -e "${GREEN}✔ Mock prism server is running with your OpenAPI spec${NC}" + echo + + exit 0 +else + echo -e "${RED}ERROR:${NC} The test suite will not run without a mock Prism server" + echo -e "running against your OpenAPI spec." + echo + echo -e "${YELLOW}To fix:${NC}" + echo + echo -e "1. Install Prism (requires Node 16+):" + echo + echo -e " With npm:" + echo -e " \$ ${YELLOW}npm install -g @stoplight/prism-cli${NC}" + echo + echo -e " With yarn:" + echo -e " \$ ${YELLOW}yarn global add @stoplight/prism-cli${NC}" + echo + echo -e "2. Run the mock server" + echo + echo -e " To run the server, pass in the path of your OpenAPI" + echo -e " spec to the prism command:" + echo + echo -e " \$ ${YELLOW}prism mock path/to/your.openapi.yml${NC}" + echo + + exit 1 +fi diff --git a/build b/build new file mode 100755 index 000000000..f49e6fa6e --- /dev/null +++ b/build @@ -0,0 +1,12 @@ +#!/usr/bin/env bash +set -euo pipefail + +rm -rf dist/* + +yarn tsn check-version.ts + +# build node: +yarn tsc -p tsconfig.cjs.json +yarn tsc-alias -p tsconfig.cjs.json + +yarn prettier --write . diff --git a/check-version.ts b/check-version.ts new file mode 100644 index 000000000..8bbd6a96b --- /dev/null +++ b/check-version.ts @@ -0,0 +1,18 @@ +import fs from 'fs'; + +const main = () => { + const pkg = JSON.parse(fs.readFileSync('package.json').toString()) as Record; + const version = pkg['version']; + if (!version) throw 'The version property is not set in the package.json file'; + if (typeof version !== 'string') { + throw `Unexpected type for the package.json version field; got ${typeof version}, expected string`; + } + + const contents = fs.readFileSync('version.ts', 'utf8'); + const output = contents.replace(/(export const VERSION = ')(.*)(')/g, `$1${version}$3`); + fs.writeFileSync('version.ts', output); +}; + +if (require.main === module) { + main(); +} diff --git a/core.ts b/core.ts new file mode 100644 index 000000000..f7d033740 --- /dev/null +++ b/core.ts @@ -0,0 +1,814 @@ +import qs from 'qs'; + +import type { Agent } from 'http'; +import type { RequestInfo, RequestInit, Response } from 'node-fetch'; +import { FormData, File, Blob } from 'formdata-node'; +import { FormDataEncoder } from 'form-data-encoder'; +import { Readable } from 'stream'; + +import { VERSION } from './version'; +import { Stream } from './streaming'; +import { APIError, APIConnectionError, APIConnectionTimeoutError } from './error'; +import { Fetch, getDefaultAgent, getFetch } from './fetch-polyfill'; + +const MAX_RETRIES = 2; + +export abstract class APIClient { + baseURL: string; + maxRetries: number; + timeout: number; + httpAgent: Agent | undefined; + + private fetch: Fetch; + protected idempotencyHeader?: string; + + constructor({ + baseURL, + maxRetries, + timeout = 60 * 1000, // 60s + httpAgent, + }: { + baseURL: string; + maxRetries?: number | undefined; + timeout: number | undefined; + httpAgent: Agent | undefined; + }) { + this.baseURL = baseURL; + this.maxRetries = validatePositiveInteger('maxRetries', maxRetries ?? MAX_RETRIES); + this.timeout = validatePositiveInteger('timeout', timeout); + this.httpAgent = httpAgent; + + this.fetch = getFetch(); + } + + protected authHeaders(): Headers { + return {}; + } + + /** + * Override this to add your own default headers, for example: + * + * { + * ...super.defaultHeaders(), + * Authorization: 'Bearer 123', + * } + */ + protected defaultHeaders(): Headers { + return { + Accept: 'application/json', + 'Content-Type': 'application/json', + 'User-Agent': this.getUserAgent(), + ...getPlatformHeaders(), + ...this.authHeaders(), + }; + } + + /** + * Override this to add your own headers validation: + */ + protected validateHeaders(headers: Headers, customHeaders: Headers) {} + + /** + * Override this to add your own qs.stringify options, for example: + * + * { + * ...super.qsOptions(), + * strictNullHandling: true, + * } + */ + protected qsOptions(): qs.IStringifyOptions | undefined { + return {}; + } + + protected defaultIdempotencyKey(): string { + return `stainless-node-retry-${uuid4()}`; + } + + get(path: string, opts?: RequestOptions): Promise { + return this.request({ method: 'get', path, ...opts }); + } + post(path: string, opts?: RequestOptions): Promise { + return this.request({ method: 'post', path, ...opts }); + } + patch(path: string, opts?: RequestOptions): Promise { + return this.request({ method: 'patch', path, ...opts }); + } + put(path: string, opts?: RequestOptions): Promise { + return this.request({ method: 'put', path, ...opts }); + } + delete(path: string, opts?: RequestOptions): Promise { + return this.request({ method: 'delete', path, ...opts }); + } + + getAPIList = AbstractPage>( + path: string, + Page: new (...args: any[]) => PageClass, + opts?: RequestOptions, + ): PagePromise { + return this.requestAPIList(Page, { method: 'get', path, ...opts }); + } + + buildRequest( + options: FinalRequestOptions, + ): { req: RequestInit; url: string; timeout: number } { + const { method, path, query, headers: headers = {} } = options; + const body = + options.body instanceof Readable ? options.body + : options.body ? JSON.stringify(options.body, null, 2) + : null; + const contentLength = typeof body === 'string' ? body.length.toString() : null; + + const url = this.buildURL(path!, query); + const httpAgent = options.httpAgent ?? this.httpAgent ?? getDefaultAgent(url); + const timeout = options.timeout ?? this.timeout; + validatePositiveInteger('timeout', timeout); + + if (this.idempotencyHeader && method !== 'get') { + if (!options.idempotencyKey) options.idempotencyKey = this.defaultIdempotencyKey(); + headers[this.idempotencyHeader] = options.idempotencyKey; + } + + const reqHeaders: Record = { + ...(contentLength && { 'Content-Length': contentLength }), + ...this.defaultHeaders(), + ...headers, + }; + + // Strip any headers being explicitly omitted with null + Object.keys(reqHeaders).forEach((key) => reqHeaders[key] === null && delete reqHeaders[key]); + + const req: RequestInit = { + method, + ...(body && { body }), + headers: reqHeaders, + ...(httpAgent && { agent: httpAgent }), + }; + + this.validateHeaders(reqHeaders, headers); + return { req, url, timeout }; + } + + /** + * Used as a callback for mutating the given `RequestInit` object. + * + * This is useful for cases where you want to add certain headers based off of + * the request properties, e.g. `method` or `url`. + */ + protected async prepareRequest(request: RequestInit, { url }: { url: string }): Promise {} + + protected makeStatusError( + status: number | undefined, + error: Object | undefined, + message: string | undefined, + headers: Headers | undefined, + ) { + return APIError.generate(status, error, message, headers); + } + + async request( + options: FinalRequestOptions, + retriesRemaining = options.maxRetries ?? this.maxRetries, + ): Promise> { + const { req, url, timeout } = this.buildRequest(options); + await this.prepareRequest(req, { url }); + + this.debug('request', url, options, req.headers); + + const controller = new AbortController(); + const response = await this.fetchWithTimeout(url, req, timeout, controller).catch(castToError); + + if (response instanceof Error) { + if (retriesRemaining) return this.retryRequest(options, retriesRemaining); + if (response.name === 'AbortError') throw new APIConnectionTimeoutError(); + throw new APIConnectionError({ cause: response }); + } + + const responseHeaders = createResponseHeaders(response.headers); + + if (!response.ok) { + if (retriesRemaining && this.shouldRetry(response)) { + return this.retryRequest(options, retriesRemaining, responseHeaders); + } + + const errText = await response.text().catch(() => 'Unknown'); + const errJSON = safeJSON(errText); + const errMessage = errJSON ? undefined : errText; + + this.debug('response', response.status, url, responseHeaders, errMessage); + + const err = this.makeStatusError(response.status, errJSON, errMessage, responseHeaders); + throw err; + } + + if (options.stream) { + // Note: there is an invariant here that isn't represented in the type system + // that if you set `stream: true` the response type must also be `Stream` + return new Stream(response, controller) as any; + } + + const contentType = response.headers.get('content-type'); + if (contentType?.includes('application/json')) { + const json = await response.json(); + + if (typeof json === 'object' && json != null) { + /** @deprecated – we expect to change this interface in the near future. */ + Object.defineProperty(json, 'responseHeaders', { + enumerable: false, + writable: false, + value: responseHeaders, + }); + } + + this.debug('response', response.status, url, responseHeaders, json); + + return json as APIResponse; + } + + // TODO handle blob, arraybuffer, other content types, etc. + const text = response.text(); + this.debug('response', response.status, url, responseHeaders, text); + return text as Promise; + } + + requestAPIList = AbstractPage>( + Page: new (...args: ConstructorParameters) => PageClass, + options: FinalRequestOptions, + ): PagePromise { + const requestPromise = this.request(options) as Promise>; + return new PagePromise(this, requestPromise, options, Page); + } + + buildURL(path: string, query: Req | undefined): string { + const url = + isAbsoluteURL(path) ? + new URL(path) + : new URL(this.baseURL + (this.baseURL.endsWith('/') && path.startsWith('/') ? path.slice(1) : path)); + + if (query) { + url.search = qs.stringify(query, this.qsOptions()); + } + + return url.toString(); + } + + async fetchWithTimeout( + url: RequestInfo, + { signal, ...options }: RequestInit = {}, + ms: number, + controller: AbortController, + ) { + if (signal) signal.addEventListener('abort', controller.abort); + + const timeout = setTimeout(() => controller.abort(), ms); + + return this.getRequestClient() + .fetch(url, { signal: controller.signal as any, ...options }) + .finally(() => { + clearTimeout(timeout); + }); + } + + protected getRequestClient(): RequestClient { + return { fetch: this.fetch }; + } + + private shouldRetry(response: Response): boolean { + // Note this is not a standard header. + const shouldRetryHeader = response.headers.get('x-should-retry'); + + // If the server explicitly says whether or not to retry, obey. + if (shouldRetryHeader === 'true') return true; + if (shouldRetryHeader === 'false') return false; + + // Retry on lock timeouts. + if (response.status === 409) return true; + + // Retry on rate limits. + if (response.status === 429) return true; + + // Retry internal errors. + if (response.status >= 500) return true; + + return false; + } + + private async retryRequest( + options: FinalRequestOptions, + retriesRemaining: number, + responseHeaders?: Headers | undefined, + ): Promise { + retriesRemaining -= 1; + + // About the Retry-After header: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Retry-After + // + // TODO: we may want to handle the case where the header is using the http-date syntax: "Retry-After: ". + // See https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Retry-After#syntax for details. + const retryAfter = parseInt(responseHeaders?.['retry-after'] || ''); + + const maxRetries = options.maxRetries ?? this.maxRetries; + const timeout = this.calculateRetryTimeoutSeconds(retriesRemaining, retryAfter, maxRetries) * 1000; + await sleep(timeout); + + return this.request(options, retriesRemaining); + } + + private calculateRetryTimeoutSeconds( + retriesRemaining: number, + retryAfter: number, + maxRetries: number, + ): number { + const initialRetryDelay = 0.5; + const maxRetryDelay = 2; + + // If the API asks us to wait a certain amount of time (and it's a reasonable amount), + // just do what it says. + if (Number.isInteger(retryAfter) && retryAfter <= 60) { + return retryAfter; + } + + const numRetries = maxRetries - retriesRemaining; + + // Apply exponential backoff, but not more than the max. + const sleepSeconds = Math.min(initialRetryDelay * Math.pow(numRetries - 1, 2), maxRetryDelay); + + // Apply some jitter, plus-or-minus half a second. + const jitter = Math.random() - 0.5; + + return sleepSeconds + jitter; + } + + private getUserAgent(): string { + return `${this.constructor.name}/JS ${VERSION}`; + } + + private debug(action: string, ...args: any[]) { + if (process.env['DEBUG'] === 'true') { + console.log(`${this.constructor.name}:DEBUG:${action}`, ...args); + } + } +} + +export class APIResource { + protected client: APIClient; + constructor(client: APIClient) { + this.client = client; + + this.get = client.get.bind(client); + this.post = client.post.bind(client); + this.patch = client.patch.bind(client); + this.put = client.put.bind(client); + this.delete = client.delete.bind(client); + this.getAPIList = client.getAPIList.bind(client); + } + + protected get: APIClient['get']; + protected post: APIClient['post']; + protected patch: APIClient['patch']; + protected put: APIClient['put']; + protected delete: APIClient['delete']; + protected getAPIList: APIClient['getAPIList']; +} + +export type PageInfo = { url: URL } | { params: Record | null }; + +export abstract class AbstractPage implements AsyncIterable { + #client: APIClient; + protected options: FinalRequestOptions; + + constructor(client: APIClient, response: APIResponse, options: FinalRequestOptions) { + this.#client = client; + this.options = options; + } + + /** + * @deprecated Use nextPageInfo instead + */ + abstract nextPageParams(): Partial> | null; + abstract nextPageInfo(): PageInfo | null; + + abstract getPaginatedItems(): Item[]; + + hasNextPage(): boolean { + const items = this.getPaginatedItems(); + if (!items.length) return false; + return this.nextPageInfo() != null; + } + + async getNextPage(): Promise> { + const nextInfo = this.nextPageInfo(); + if (!nextInfo) { + throw new Error( + 'No next page expected; please check `.hasNextPage()` before calling `.getNextPage()`.', + ); + } + const nextOptions = { ...this.options }; + if ('params' in nextInfo) { + nextOptions.query = { ...nextOptions.query, ...nextInfo.params }; + } else if ('url' in nextInfo) { + const params = [...Object.entries(nextOptions.query || {}), ...nextInfo.url.searchParams.entries()]; + for (const [key, value] of params) { + nextInfo.url.searchParams.set(key, value); + } + nextOptions.query = undefined; + nextOptions.path = nextInfo.url.toString(); + } + return await this.#client.requestAPIList(this.constructor as any, nextOptions); + } + + async *iterPages() { + // eslint-disable-next-line @typescript-eslint/no-this-alias + let page: AbstractPage = this; + yield page; + while (page.hasNextPage()) { + page = await page.getNextPage(); + yield page; + } + } + + async *[Symbol.asyncIterator]() { + for await (const page of this.iterPages()) { + for (const item of page.getPaginatedItems()) { + yield item; + } + } + } +} + +export class PagePromise< + PageClass extends AbstractPage, + Item = ReturnType[number], + > + extends Promise + implements AsyncIterable +{ + /** + * This subclass of Promise will resolve to an instantiated Page once the request completes. + */ + constructor( + client: APIClient, + requestPromise: Promise>, + options: FinalRequestOptions, + Page: new (...args: ConstructorParameters) => PageClass, + ) { + super((resolve, reject) => + requestPromise.then((response) => resolve(new Page(client, response, options))).catch(reject), + ); + } + + /** + * Enable subclassing Promise. + * Ref: https://stackoverflow.com/a/60328122 + */ + static get [Symbol.species]() { + return Promise; + } + + /** + * Allow auto-paginating iteration on an unawaited list call, eg: + * + * for await (const item of client.items.list()) { + * console.log(item) + * } + */ + async *[Symbol.asyncIterator]() { + const page = await this; + for await (const item of page) { + yield item; + } + } +} + +export const createResponseHeaders = ( + headers: Awaited>['headers'], +): Record => { + return new Proxy(Object.fromEntries(headers.entries()), { + get(target, name) { + const key = name.toString(); + return target[key.toLowerCase()] || target[key]; + }, + }); +}; + +type HTTPMethod = 'get' | 'post' | 'put' | 'patch' | 'delete'; + +export type RequestClient = { fetch: Fetch }; +export type Headers = Record; +export type KeysEnum = { [P in keyof Required]: true }; + +export type RequestOptions | Readable> = { + method?: HTTPMethod; + path?: string; + query?: Req | undefined; + body?: Req | undefined; + headers?: Headers | undefined; + + maxRetries?: number; + stream?: boolean | undefined; + timeout?: number; + httpAgent?: Agent; + idempotencyKey?: string; +}; + +// This is required so that we can determine if a given object matches the RequestOptions +// type at runtime. While this requires duplication, it is enforced by the TypeScript +// compiler such that any missing / extraneous keys will cause an error. +const requestOptionsKeys: KeysEnum = { + method: true, + path: true, + query: true, + body: true, + headers: true, + + maxRetries: true, + stream: true, + timeout: true, + httpAgent: true, + idempotencyKey: true, +}; + +export const isRequestOptions = (obj: unknown): obj is RequestOptions => { + return ( + typeof obj === 'object' && + obj !== null && + !isEmptyObj(obj) && + Object.keys(obj).every((k) => hasOwn(requestOptionsKeys, k)) + ); +}; + +export type FinalRequestOptions | Readable> = RequestOptions & { + method: HTTPMethod; + path: string; +}; + +export type APIResponse = T & { + responseHeaders: Headers; +}; + +declare const Deno: any; +type Arch = 'x32' | 'x64' | 'arm' | 'arm64' | `other:${string}` | 'unknown'; +type PlatformName = + | 'MacOS' + | 'Linux' + | 'Windows' + | 'FreeBSD' + | 'OpenBSD' + | 'iOS' + | 'Android' + | `Other:${string}` + | 'Unknown'; +type PlatformProperties = { + 'X-Stainless-Lang': 'js'; + 'X-Stainless-Package-Version': string; + 'X-Stainless-OS': PlatformName; + 'X-Stainless-Arch': Arch; + 'X-Stainless-Runtime': 'node' | 'deno' | 'unknown'; + 'X-Stainless-Runtime-Version': string; +}; +const getPlatformProperties = (): PlatformProperties => { + if (typeof Deno !== 'undefined' && Deno.build != null) { + return { + 'X-Stainless-Lang': 'js', + 'X-Stainless-Package-Version': VERSION, + 'X-Stainless-OS': normalizePlatform(Deno.build.os), + 'X-Stainless-Arch': normalizeArch(Deno.build.arch), + 'X-Stainless-Runtime': 'deno', + 'X-Stainless-Runtime-Version': Deno.version, + }; + } + if (typeof process !== 'undefined') { + return { + 'X-Stainless-Lang': 'js', + 'X-Stainless-Package-Version': VERSION, + 'X-Stainless-OS': normalizePlatform(process.platform), + 'X-Stainless-Arch': normalizeArch(process.arch), + 'X-Stainless-Runtime': 'node', + 'X-Stainless-Runtime-Version': process.version, + }; + } + // TODO add support for Cloudflare workers, browsers, etc. + return { + 'X-Stainless-Lang': 'js', + 'X-Stainless-Package-Version': VERSION, + 'X-Stainless-OS': 'Unknown', + 'X-Stainless-Arch': 'unknown', + 'X-Stainless-Runtime': 'unknown', + 'X-Stainless-Runtime-Version': 'unknown', + }; +}; + +const normalizeArch = (arch: string): Arch => { + // Node docs: + // - https://nodejs.org/api/process.html#processarch + // Deno docs: + // - https://doc.deno.land/deno/stable/~/Deno.build + if (arch === 'x32') return 'x32'; + if (arch === 'x86_64' || arch === 'x64') return 'x64'; + if (arch === 'arm') return 'arm'; + if (arch === 'aarch64' || arch === 'arm64') return 'arm64'; + if (arch) return `other:${arch}`; + return 'unknown'; +}; + +const normalizePlatform = (platform: string): PlatformName => { + // Node platforms: + // - https://nodejs.org/api/process.html#processplatform + // Deno platforms: + // - https://doc.deno.land/deno/stable/~/Deno.build + // - https://github.com/denoland/deno/issues/14799 + + platform = platform.toLowerCase(); + + // NOTE: this iOS check is untested and may not work + // Node does not work natively on IOS, there is a fork at + // https://github.com/nodejs-mobile/nodejs-mobile + // however it is unknown at the time of writing how to detect if it is running + if (platform.includes('ios')) return 'iOS'; + if (platform === 'android') return 'Android'; + if (platform === 'darwin') return 'MacOS'; + if (platform === 'win32') return 'Windows'; + if (platform === 'freebsd') return 'FreeBSD'; + if (platform === 'openbsd') return 'OpenBSD'; + if (platform === 'linux') return 'Linux'; + if (platform) return `Other:${platform}`; + return 'Unknown'; +}; + +let _platformHeaders: PlatformProperties; +const getPlatformHeaders = () => { + return (_platformHeaders ??= getPlatformProperties()); +}; + +export const safeJSON = (text: string) => { + try { + return JSON.parse(text); + } catch (err) { + return undefined; + } +}; + +// https://stackoverflow.com/a/19709846 +const startsWithSchemeRegexp = new RegExp('^(?:[a-z]+:)?//', 'i'); +const isAbsoluteURL = (url: string): boolean => { + return startsWithSchemeRegexp.test(url); +}; + +const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms)); + +const validatePositiveInteger = (name: string, n: number) => { + if (!Number.isInteger(n)) { + throw new Error(`${name} must be an integer`); + } + if (n < 0) { + throw new Error(`${name} must be a positive integer`); + } + return n; +}; + +export const castToError = (err: any): Error => { + if (err instanceof Error) return err; + return new Error(err); +}; + +/** + * Returns a multipart/form-data request if any part of the given request body contains a File / Blob value. + * Otherwise returns the request as is. + */ +export const maybeMultipartFormRequestOptions = >( + opts: RequestOptions, +): RequestOptions => { + // TODO: does this add unreasonable overhead in the case where we shouldn't use multipart/form-data? + const form = createForm(opts.body); + + for (const [_, entry] of form.entries()) { + const value = entry.valueOf(); + if (value instanceof File || value instanceof Blob) { + return getMultipartRequestOptions(form, opts); + } + } + + return opts; +}; + +export const multipartFormRequestOptions = >( + opts: RequestOptions, +): RequestOptions => { + return getMultipartRequestOptions(createForm(opts.body), opts); +}; + +const createForm = >(body: T | undefined): FormData => { + const form = new FormData(); + Object.entries(body || {}).forEach(([key, value]) => addFormValue(form, key, value)); + return form; +}; + +const getMultipartRequestOptions = >( + form: FormData, + opts: RequestOptions, +): RequestOptions => { + const encoder = new FormDataEncoder(form); + return { + ...opts, + headers: { ...opts.headers, ...encoder.headers, 'Content-Length': encoder.contentLength }, + body: Readable.from(encoder), + }; +}; + +const addFormValue = (form: FormData, key: string, value: unknown) => { + if (value == null) { + throw new TypeError( + `null is not a valid form data value, if you want to pass null then you need to use the string 'null'`, + ); + } + + // TODO: make nested formats configurable + if ( + typeof value === 'string' || + typeof value === 'number' || + typeof value === 'boolean' || + value instanceof File || + value instanceof Blob + ) { + form.append(key, value); + } else if (Array.isArray(value)) { + value.forEach((entry) => { + addFormValue(form, key + '[]', entry); + }); + } else if (typeof value === 'object') { + Object.entries(value).forEach(([name, prop]) => { + addFormValue(form, `${key}[${name}]`, prop); + }); + } else { + throw new TypeError( + `Invalid value given to form, expected a string, number, boolean, object, Array, File or Blob but got ${value} instead`, + ); + } +}; + +export const ensurePresent = (value: T | null | undefined): T => { + if (value == null) throw new Error(`Expected a value to be given but received ${value} instead.`); + return value; +}; + +export const coerceInteger = (value: unknown): number => { + if (typeof value === 'number') return Math.round(value); + if (typeof value === 'string') return parseInt(value, 10); + + throw new Error(`Could not coerce ${value} (type: ${typeof value}) into a number`); +}; + +export const coerceFloat = (value: unknown): number => { + if (typeof value === 'number') return value; + if (typeof value === 'string') return parseFloat(value); + + throw new Error(`Could not coerce ${value} (type: ${typeof value}) into a number`); +}; + +export const coerceBoolean = (value: unknown): boolean => { + if (typeof value === 'boolean') return value; + if (typeof value === 'string') return value === 'true'; + return Boolean(value); +}; + +// https://stackoverflow.com/a/34491287 +export function isEmptyObj(obj: Object | null | undefined): boolean { + if (!obj) return true; + for (const _k in obj) return false; + return true; +} + +// https://eslint.org/docs/latest/rules/no-prototype-builtins +export function hasOwn(obj: Object, key: string): boolean { + return Object.prototype.hasOwnProperty.call(obj, key); +} + +/** + * https://stackoverflow.com/a/2117523 + */ +const uuid4 = () => { + return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, (c) => { + const r = (Math.random() * 16) | 0; + const v = c === 'x' ? r : (r & 0x3) | 0x8; + return v.toString(16); + }); +}; + +export interface HeadersProtocol { + get: (header: string) => string | null | undefined; +} +export type HeadersLike = Record | HeadersProtocol; + +export const isHeadersProtocol = (headers: any): headers is HeadersProtocol => { + return typeof headers?.get === 'function'; +}; + +export const getHeader = (headers: HeadersLike, key: string): string | null | undefined => { + const lowerKey = key.toLowerCase(); + if (isHeadersProtocol(headers)) return headers.get(key) || headers.get(lowerKey); + const value = headers[key] || headers[lowerKey]; + if (Array.isArray(value)) { + if (value.length <= 1) return value[0]; + console.warn(`Received ${value.length} entries for the ${key} header, using the first entry.`); + return value[0]; + } + return value; +}; diff --git a/error.ts b/error.ts new file mode 100644 index 000000000..8ae65fa83 --- /dev/null +++ b/error.ts @@ -0,0 +1,125 @@ +// File generated from our OpenAPI spec by Stainless. + +import { castToError, Headers } from '~/core'; + +export class APIError extends Error { + readonly status: number | undefined; + readonly headers: Headers | undefined; + readonly error: Object | undefined; + + readonly code: string | null | undefined; + readonly param: string | null | undefined; + readonly type: string | undefined; + + constructor( + status: number | undefined, + error: Object | undefined, + message: string | undefined, + headers: Headers | undefined, + ) { + super(message || (error as any)?.message || 'Unknown error occurred.'); + this.status = status; + this.headers = headers; + + const data = error as Record; + this.error = data; + this.type = data?.['type']; + this.message = data?.['message']; + this.param = data?.['param']; + this.code = data?.['code']; + } + + static generate( + status: number | undefined, + errorResponse: Object | undefined, + message: string | undefined, + headers: Headers | undefined, + ) { + if (!status) { + return new APIConnectionError({ cause: castToError(errorResponse) }); + } + + const error = (errorResponse as Record)?.['error']; + + if (status === 400) { + return new BadRequestError(status, error, message, headers); + } + + if (status === 401) { + return new AuthenticationError(status, error, message, headers); + } + + if (status === 403) { + return new PermissionDeniedError(status, error, message, headers); + } + + if (status === 404) { + return new NotFoundError(status, error, message, headers); + } + + if (status === 409) { + return new ConflictError(status, error, message, headers); + } + + if (status === 422) { + return new UnprocessableEntityError(status, error, message, headers); + } + + if (status === 429) { + return new RateLimitError(status, error, message, headers); + } + + if (status >= 500) { + return new InternalServerError(status, error, message, headers); + } + + return new APIError(status, error, message, headers); + } +} + +export class APIConnectionError extends APIError { + override readonly status: undefined = undefined; + + constructor({ message, cause }: { message?: string; cause?: Error | undefined }) { + super(undefined, undefined, message || 'Connection error.', undefined); + // in some environments the 'cause' property is already declared + // @ts-ignore + if (cause) this.cause = cause; + } +} + +export class APIConnectionTimeoutError extends APIConnectionError { + constructor() { + super({ message: 'Request timed out.' }); + } +} + +export class BadRequestError extends APIError { + override readonly status: 400 = 400; +} + +export class AuthenticationError extends APIError { + override readonly status: 401 = 401; +} + +export class PermissionDeniedError extends APIError { + override readonly status: 403 = 403; +} + +export class NotFoundError extends APIError { + override readonly status: 404 = 404; +} + +export class ConflictError extends APIError { + override readonly status: 409 = 409; +} + +export class UnprocessableEntityError extends APIError { + override readonly status: 422 = 422; +} + +export class RateLimitError extends APIError { + override readonly status: 429 = 429; +} + +export class InternalServerError extends APIError {} diff --git a/examples/demo.ts b/examples/demo.ts new file mode 100755 index 000000000..807eca7cf --- /dev/null +++ b/examples/demo.ts @@ -0,0 +1,28 @@ +#!/usr/bin/env yarn tsn -T + +import OpenAI from 'openai'; + +// gets API Key from environment variable OPENAI_API_KEY +const client = new OpenAI(); + +async function main() { + // Non-streaming: + const result = await client.completions.create({ + prompt: 'Say this is a test', + model: 'text-davinci-003', + }); + console.log(result.choices[0]!.text); + + // Streaming: + const stream = await client.completions.create({ + prompt: 'Say this is a test', + model: 'text-davinci-003', + stream: true, + }); + for await (const part of stream) { + process.stdout.write(part.choices[0]?.text || ''); + } + process.stdout.write('\n'); +} + +main().catch(console.error); diff --git a/examples/errors.ts b/examples/errors.ts new file mode 100644 index 000000000..39976d818 --- /dev/null +++ b/examples/errors.ts @@ -0,0 +1,28 @@ +#!/usr/bin/env yarn tsn -T + +import OpenAI, { NotFoundError } from 'openai'; + +// gets API Key from environment variable OPENAI_API_KEY +const client = new OpenAI(); + +async function main() { + try { + await client.completions.create({ + prompt: 'Say this is a test', + model: 'unknown-model', + }); + } catch (err) { + if (err instanceof NotFoundError) { + console.log(`Caught NotFoundError!`); + console.log(err); + console.log(`message: `, err.message); + console.log(`code: `, err.code); + console.log(`type: `, err.type); + console.log(`param: `, err.param); + } else { + console.log(`Raised unknown error`); + } + } +} + +main().catch(console.error); diff --git a/examples/fine-tune-data.jsonl b/examples/fine-tune-data.jsonl new file mode 100644 index 000000000..b8b711d61 --- /dev/null +++ b/examples/fine-tune-data.jsonl @@ -0,0 +1,3 @@ +{"prompt": "", "completion": ""} +{"prompt": "", "completion": ""} +{"prompt": "", "completion": ""} diff --git a/examples/fine-tunes.ts b/examples/fine-tunes.ts new file mode 100755 index 000000000..66e8849c7 --- /dev/null +++ b/examples/fine-tunes.ts @@ -0,0 +1,37 @@ +#!/usr/bin/env yarn tsn -T + +/** + * Fine-tuning allows you to train models on your own data. + * + * See these guides for more information: + * - https://help.openai.com/en/articles/5528730-fine-tuning-a-classifier-to-improve-truthfulness + * - https://platform.openai.com/docs/guides/fine-tuning + */ + +import OpenAI, { fileFromPath } from 'openai'; + +// Gets the API Key from the environment variable `OPENAI_API_KEY` +const client = new OpenAI(); + +async function main() { + console.log(`Uploading file`); + const file = await client.files.create({ + file: await fileFromPath('examples/fine-tune-data.jsonl'), + purpose: 'fine-tune', + }); + console.log(`Uploaded file with ID: ${file.id}`); + console.log('-----'); + + console.log(`Starting fine-tuning`); + const fineTune = await client.fineTunes.create({ model: 'babbage', training_file: file.id }); + console.log(`Fine-tuning ID: ${fineTune.id}`); + console.log('-----'); + + console.log(`Streaming fine-tuning progress:`); + const stream = await client.fineTunes.listEvents(fineTune.id, { stream: true }); + for await (const part of stream) { + console.log(part.message); + } +} + +main().catch(console.error); diff --git a/fetch-polyfill.ts b/fetch-polyfill.ts new file mode 100644 index 000000000..ebc629550 --- /dev/null +++ b/fetch-polyfill.ts @@ -0,0 +1,69 @@ +import type NodeFetch from 'node-fetch'; +import type { RequestInfo, RequestInit, Response } from 'node-fetch'; +import type KeepAliveAgent from 'agentkeepalive'; +import type { Agent } from 'http'; +import { AbortController as AbortControllerPolyfill } from 'abort-controller'; + +declare const Deno: any; +// For now, we just pretend that Fetch is the same type as NodeFetch. +declare const fetch: Fetch | undefined; + +let nodeFetch: typeof NodeFetch | undefined = undefined; +let nodeFetchImportError: unknown; +let defaultHttpAgent: Agent; +let defaultHttpsAgent: Agent; + +// In a Node environment, we prefer `node-fetch` to other fetch implementations +// which may be present, because it allows keepAlive and others don't. +// Alternative, "Web Standards"-based environments typically provide fetch implementations +// which provide good performance for this by default, and may not support node-fetch. +const isProbablyNode = typeof process !== 'undefined' && typeof Deno === 'undefined'; +if (isProbablyNode) { + try { + /* eslint-disable @typescript-eslint/no-var-requires */ + nodeFetch = require('node-fetch').default; + const KeepAliveHttpAgent: typeof KeepAliveAgent = require('agentkeepalive'); + /* eslint-enable @typescript-eslint/no-var-requires */ + + defaultHttpAgent = new KeepAliveHttpAgent({ keepAlive: true, timeout: 5 * 60 * 1000 }); + defaultHttpsAgent = new KeepAliveHttpAgent.HttpsAgent({ keepAlive: true, timeout: 5 * 60 * 1000 }); + } catch (e) { + // We can fall back to a built-in "fetch". + nodeFetchImportError = e; + } +} + +// Polyfill global object if needed. +if (typeof AbortController === 'undefined') { + AbortController = AbortControllerPolyfill as typeof AbortController; +} + +export type Fetch = (url: RequestInfo, init?: RequestInit) => Promise; + +export const getFetch = (): Fetch => { + if (isProbablyNode && nodeFetch) { + return nodeFetch; + } + + // For other environments, use a global fetch function expected to already be present + if (typeof fetch === 'undefined' || typeof fetch !== 'function') { + if (isProbablyNode) { + throw new Error( + `Could not import "node-fetch", and no global "fetch" function is defined.`, + // @ts-expect-error This is only Node 16.9.0+, but isn't harmful in other contexts. + { cause: nodeFetchImportError }, + ); + } + throw new Error( + `Unexpected: running in a non-Node environment without a global "fetch" function defined.`, + ); + } + + return fetch; +}; + +export const getDefaultAgent = (url: string): Agent | undefined => { + if (defaultHttpsAgent && url.startsWith('https')) return defaultHttpsAgent; + if (defaultHttpAgent) return defaultHttpAgent; + return undefined; +}; diff --git a/index.ts b/index.ts new file mode 100644 index 000000000..333852a08 --- /dev/null +++ b/index.ts @@ -0,0 +1,157 @@ +// File generated from our OpenAPI spec by Stainless. + +import qs from 'qs'; +import * as Core from './core'; +import * as API from './resources'; +import * as Errors from '~/error'; +import type { Agent } from 'http'; +import * as FileFromPath from 'formdata-node/file-from-path'; + +type Config = { + /** + * Defaults to process.env["OPENAI_API_KEY"]. + */ + apiKey?: string; + baseURL?: string; + timeout?: number; + httpAgent?: Agent; + maxRetries?: number; + defaultHeaders?: Core.Headers; +}; + +/** Instantiate the API Client. */ +export class OpenAI extends Core.APIClient { + apiKey: string; + + private _options: Config; + + constructor(config?: Config) { + const options: Config = { + apiKey: process.env['OPENAI_API_KEY'] || '', + baseURL: 'https://api.openai.com/v1', + ...config, + }; + + if (!options.apiKey && options.apiKey !== null) { + throw new Error( + "The OPENAI_API_KEY environment variable is missing or empty; either provide it, or instantiate the OpenAI client with an apiKey option, like new OpenAI({ apiKey: 'my api key' }).", + ); + } + + super({ + baseURL: options.baseURL!, + timeout: options.timeout, + httpAgent: options.httpAgent, + maxRetries: options.maxRetries, + }); + this.apiKey = options.apiKey; + this._options = options; + } + + completions: API.Completions = new API.Completions(this); + chat: API.Chat = new API.Chat(this); + edits: API.Edits = new API.Edits(this); + embeddings: API.Embeddings = new API.Embeddings(this); + files: API.Files = new API.Files(this); + images: API.Images = new API.Images(this); + audio: API.Audio = new API.Audio(this); + answers: API.Answers = new API.Answers(this); + classifications: API.Classifications = new API.Classifications(this); + moderations: API.Moderations = new API.Moderations(this); + models: API.Models = new API.Models(this); + fineTunes: API.FineTunes = new API.FineTunes(this); + + protected override defaultHeaders(): Core.Headers { + return { + ...super.defaultHeaders(), + ...this._options.defaultHeaders, + }; + } + + protected override authHeaders(): Core.Headers { + return { Authorization: `Bearer ${this.apiKey}` }; + } + + protected override qsOptions(): qs.IStringifyOptions { + return { arrayFormat: 'comma' }; + } + + static APIError = Errors.APIError; + static APIConnectionError = Errors.APIConnectionError; + static APIConnectionTimeoutError = Errors.APIConnectionTimeoutError; + static NotFoundError = Errors.NotFoundError; + static ConflictError = Errors.ConflictError; + static RateLimitError = Errors.RateLimitError; + static BadRequestError = Errors.BadRequestError; + static AuthenticationError = Errors.AuthenticationError; + static InternalServerError = Errors.InternalServerError; + static PermissionDeniedError = Errors.PermissionDeniedError; + static UnprocessableEntityError = Errors.UnprocessableEntityError; +} + +export const { + APIError, + APIConnectionError, + APIConnectionTimeoutError, + NotFoundError, + ConflictError, + RateLimitError, + BadRequestError, + AuthenticationError, + InternalServerError, + PermissionDeniedError, + UnprocessableEntityError, +} = Errors; + +export import fileFromPath = FileFromPath.fileFromPath; + +export namespace OpenAI { + // Helper functions + export import fileFromPath = FileFromPath.fileFromPath; + + export import Completion = API.Completion; + export import CompletionChoice = API.CompletionChoice; + export import CompletionCreateParams = API.CompletionCreateParams; + + export import Edit = API.Edit; + export import EditCreateParams = API.EditCreateParams; + + export import Embedding = API.Embedding; + export import EmbeddingCreateParams = API.EmbeddingCreateParams; + + export import File = API.File; + export import FileListResponse = API.FileListResponse; + export import FileDeleteResponse = API.FileDeleteResponse; + export import FileRetrieveFileContentResponse = API.FileRetrieveFileContentResponse; + export import FileCreateParams = API.FileCreateParams; + + export import Image = API.Image; + export import ImagesResponse = API.ImagesResponse; + export import ImageCreateVariationParams = API.ImageCreateVariationParams; + export import ImageEditParams = API.ImageEditParams; + export import ImageGenerateParams = API.ImageGenerateParams; + + export import AnswerCreateResponse = API.AnswerCreateResponse; + export import AnswerCreateParams = API.AnswerCreateParams; + + export import ClassificationCreateResponse = API.ClassificationCreateResponse; + export import ClassificationCreateParams = API.ClassificationCreateParams; + + export import Moderation = API.Moderation; + export import ModerationCreateResponse = API.ModerationCreateResponse; + export import ModerationCreateParams = API.ModerationCreateParams; + + export import DeleteModelResponse = API.DeleteModelResponse; + export import ListModelsResponse = API.ListModelsResponse; + export import Model = API.Model; + + export import FineTune = API.FineTune; + export import FineTuneEvent = API.FineTuneEvent; + export import ListFineTuneEventsResponse = API.ListFineTuneEventsResponse; + export import ListFineTunesResponse = API.ListFineTunesResponse; + export import FineTuneCreateParams = API.FineTuneCreateParams; + export import FineTuneListEventsParams = API.FineTuneListEventsParams; +} + +exports = module.exports = OpenAI; +export default OpenAI; diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 000000000..8432893a3 --- /dev/null +++ b/jest.config.js @@ -0,0 +1,8 @@ +/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ +module.exports = { + preset: 'ts-jest', + testEnvironment: 'node', + moduleNameMapper: { + '^~/(.*)$': '/$1', + }, +}; diff --git a/package.json b/package.json new file mode 100644 index 000000000..15db691e8 --- /dev/null +++ b/package.json @@ -0,0 +1,47 @@ +{ + "name": "openai", + "version": "v4.0.0-beta.0", + "description": "Client library for the OpenAI API", + "author": "OpenAI ", + "types": "dist/cjs/index.d.ts", + "main": "dist/cjs/index.js", + "type": "commonjs", + "repository": "github:openai/openai-node", + "license": "Apache-2.0", + "private": false, + "scripts": { + "test": "bin/check-test-server && yarn jest", + "build": "bash ./build", + "prepack": "yarn build", + "format": "prettier --write .", + "tsn": "ts-node -r tsconfig-paths/register", + "fix": "eslint --fix --ext ts,js ." + }, + "dependencies": { + "@types/node": "^18.11.18", + "@types/node-fetch": "^2.6.1", + "@types/qs": "^6.9.7", + "abort-controller": "^3.0.0", + "agentkeepalive": "^4.2.1", + "digest-fetch": "^1.3.0", + "form-data-encoder": "1.7.2", + "formdata-node": "^4.3.2", + "node-fetch": "^2.6.7", + "qs": "^6.10.3" + }, + "devDependencies": { + "openai": "link:.", + "@types/jest": "^27.5.0", + "@typescript-eslint/eslint-plugin": "^5.33.0", + "@typescript-eslint/parser": "^5.33.0", + "eslint": "^8.22.0", + "eslint-plugin-unused-imports": "^2.0.0", + "jest": "^28.1.0", + "prettier": "rattrayalex/prettier#postfix-ternaries", + "ts-jest": "^28.0.2", + "ts-node": "^10.5.0", + "tsc-alias": "^1.6.9", + "tsconfig-paths": "^3.12.0", + "typescript": "^4.8.2" + } +} diff --git a/resource.ts b/resource.ts new file mode 100644 index 000000000..9c58ae78b --- /dev/null +++ b/resource.ts @@ -0,0 +1,24 @@ +// File generated from our OpenAPI spec by Stainless. + +import type { OpenAI } from './index'; + +export class APIResource { + protected client: OpenAI; + constructor(client: OpenAI) { + this.client = client; + + this.get = client.get.bind(client); + this.post = client.post.bind(client); + this.patch = client.patch.bind(client); + this.put = client.put.bind(client); + this.delete = client.delete.bind(client); + this.getAPIList = client.getAPIList.bind(client); + } + + protected get: OpenAI['get']; + protected post: OpenAI['post']; + protected patch: OpenAI['patch']; + protected put: OpenAI['put']; + protected delete: OpenAI['delete']; + protected getAPIList: OpenAI['getAPIList']; +} diff --git a/resources/answers.ts b/resources/answers.ts new file mode 100644 index 000000000..e64a2fa0f --- /dev/null +++ b/resources/answers.ts @@ -0,0 +1,180 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from '~/core'; +import { APIResource } from '~/resource'; + +export class Answers extends APIResource { + /** + * Answers the specified question using the provided documents and examples. + * + * The endpoint first [searches](/docs/api-reference/searches) over provided + * documents or files to find relevant context. The relevant context is combined + * with the provided examples and question to create the prompt for + * [completion](/docs/api-reference/completions). + */ + create( + body: AnswerCreateParams, + options?: Core.RequestOptions, + ): Promise> { + return this.post('/answers', { body, ...options }); + } +} + +export interface AnswerCreateResponse { + answers?: Array; + + completion?: string; + + model?: string; + + object?: string; + + search_model?: string; + + selected_documents?: Array; +} + +export namespace AnswerCreateResponse { + export interface SelectedDocuments { + document?: number; + + text?: string; + } +} + +export interface AnswerCreateParams { + /** + * List of (question, answer) pairs that will help steer the model towards the tone + * and answer format you'd like. We recommend adding 2 to 3 examples. + */ + examples: Array>; + + /** + * A text snippet containing the contextual information used to generate the + * answers for the `examples` you provide. + */ + examples_context: string; + + /** + * ID of the model to use for completion. You can select one of `ada`, `babbage`, + * `curie`, or `davinci`. + */ + model: string; + + /** + * Question to get answered. + */ + question: string; + + /** + * List of documents from which the answer for the input `question` should be + * derived. If this is an empty list, the question will be answered based on the + * question-answer examples. + * + * You should specify either `documents` or a `file`, but not both. + */ + documents?: Array | null; + + /** + * If an object name is in the list, we provide the full information of the object; + * otherwise, we only provide the object ID. Currently we support `completion` and + * `file` objects for expansion. + */ + expand?: Array | null; + + /** + * The ID of an uploaded file that contains documents to search over. See + * [upload file](/docs/api-reference/files/upload) for how to upload a file of the + * desired format and purpose. + * + * You should specify either `documents` or a `file`, but not both. + */ + file?: string | null; + + /** + * Modify the likelihood of specified tokens appearing in the completion. + * + * Accepts a json object that maps tokens (specified by their token ID in the GPT + * tokenizer) to an associated bias value from -100 to 100. You can use this + * [tokenizer tool](/tokenizer?view=bpe) (which works for both GPT-2 and GPT-3) to + * convert text to token IDs. Mathematically, the bias is added to the logits + * generated by the model prior to sampling. The exact effect will vary per model, + * but values between -1 and 1 should decrease or increase likelihood of selection; + * values like -100 or 100 should result in a ban or exclusive selection of the + * relevant token. + * + * As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> token + * from being generated. + */ + logit_bias?: unknown | null; + + /** + * Include the log probabilities on the `logprobs` most likely tokens, as well the + * chosen tokens. For example, if `logprobs` is 5, the API will return a list of + * the 5 most likely tokens. The API will always return the `logprob` of the + * sampled token, so there may be up to `logprobs+1` elements in the response. + * + * The maximum value for `logprobs` is 5. + * + * When `logprobs` is set, `completion` will be automatically added into `expand` + * to get the logprobs. + */ + logprobs?: number | null; + + /** + * The maximum number of documents to be ranked by + * [Search](/docs/api-reference/searches/create) when using `file`. Setting it to a + * higher value leads to improved accuracy but with increased latency and cost. + */ + max_rerank?: number | null; + + /** + * The maximum number of tokens allowed for the generated answer + */ + max_tokens?: number | null; + + /** + * How many answers to generate for each question. + */ + n?: number | null; + + /** + * A special boolean flag for showing metadata. If set to `true`, each document + * entry in the returned JSON will contain a "metadata" field. + * + * This flag only takes effect when `file` is set. + */ + return_metadata?: boolean | null; + + /** + * If set to `true`, the returned JSON will include a "prompt" field containing the + * final prompt that was used to request a completion. This is mainly useful for + * debugging purposes. + */ + return_prompt?: boolean | null; + + /** + * ID of the model to use for [Search](/docs/api-reference/searches/create). You + * can select one of `ada`, `babbage`, `curie`, or `davinci`. + */ + search_model?: string | null; + + /** + * Up to 4 sequences where the API will stop generating further tokens. The + * returned text will not contain the stop sequence. + */ + stop?: string | Array | null; + + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. + */ + temperature?: number | null; + + /** + * A unique identifier representing your end-user, which can help OpenAI to monitor + * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + */ + user?: string; +} diff --git a/resources/audio/audio.ts b/resources/audio/audio.ts new file mode 100644 index 000000000..503a82380 --- /dev/null +++ b/resources/audio/audio.ts @@ -0,0 +1,10 @@ +// File generated from our OpenAPI spec by Stainless. + +import { APIResource } from '~/resource'; +import { Transcriptions } from './transcriptions'; +import { Translations } from './translations'; + +export class Audio extends APIResource { + transcriptions: Transcriptions = new Transcriptions(this.client); + translations: Translations = new Translations(this.client); +} diff --git a/resources/audio/index.ts b/resources/audio/index.ts new file mode 100644 index 000000000..67b27a0d4 --- /dev/null +++ b/resources/audio/index.ts @@ -0,0 +1,4 @@ +// File generated from our OpenAPI spec by Stainless. + +export { Transcription, TranscriptionCreateParams } from './transcriptions'; +export { Translation, TranslationCreateParams } from './translations'; diff --git a/resources/audio/transcriptions.ts b/resources/audio/transcriptions.ts new file mode 100644 index 000000000..aba47a69a --- /dev/null +++ b/resources/audio/transcriptions.ts @@ -0,0 +1,64 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from '~/core'; +import { APIResource } from '~/resource'; +import type * as FormData from 'formdata-node'; +import { multipartFormRequestOptions } from '~/core'; + +export class Transcriptions extends APIResource { + /** + * Transcribes audio into the input language. + */ + create( + body: TranscriptionCreateParams, + options?: Core.RequestOptions, + ): Promise> { + return this.post('/audio/transcriptions', multipartFormRequestOptions({ body, ...options })); + } +} + +export interface Transcription { + text: string; +} + +export interface TranscriptionCreateParams { + /** + * The audio file object (not file name) to transcribe, in one of these formats: + * mp3, mp4, mpeg, mpga, m4a, wav, or webm. + */ + file: FormData.Blob | FormData.File; + + /** + * ID of the model to use. Only `whisper-1` is currently available. + */ + model: string; + + /** + * The language of the input audio. Supplying the input language in + * [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will + * improve accuracy and latency. + */ + language?: string; + + /** + * An optional text to guide the model's style or continue a previous audio + * segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the + * audio language. + */ + prompt?: string; + + /** + * The format of the transcript output, in one of these options: json, text, srt, + * verbose_json, or vtt. + */ + response_format?: string; + + /** + * The sampling temperature, between 0 and 1. Higher values like 0.8 will make the + * output more random, while lower values like 0.2 will make it more focused and + * deterministic. If set to 0, the model will use + * [log probability](https://en.wikipedia.org/wiki/Log_probability) to + * automatically increase the temperature until certain thresholds are hit. + */ + temperature?: number; +} diff --git a/resources/audio/translations.ts b/resources/audio/translations.ts new file mode 100644 index 000000000..bcfb723fb --- /dev/null +++ b/resources/audio/translations.ts @@ -0,0 +1,57 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from '~/core'; +import { APIResource } from '~/resource'; +import type * as FormData from 'formdata-node'; +import { multipartFormRequestOptions } from '~/core'; + +export class Translations extends APIResource { + /** + * Translates audio into into English. + */ + create( + body: TranslationCreateParams, + options?: Core.RequestOptions, + ): Promise> { + return this.post('/audio/translations', multipartFormRequestOptions({ body, ...options })); + } +} + +export interface Translation { + text: string; +} + +export interface TranslationCreateParams { + /** + * The audio file object (not file name) translate, in one of these formats: mp3, + * mp4, mpeg, mpga, m4a, wav, or webm. + */ + file: FormData.Blob | FormData.File; + + /** + * ID of the model to use. Only `whisper-1` is currently available. + */ + model: string; + + /** + * An optional text to guide the model's style or continue a previous audio + * segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in + * English. + */ + prompt?: string; + + /** + * The format of the transcript output, in one of these options: json, text, srt, + * verbose_json, or vtt. + */ + response_format?: string; + + /** + * The sampling temperature, between 0 and 1. Higher values like 0.8 will make the + * output more random, while lower values like 0.2 will make it more focused and + * deterministic. If set to 0, the model will use + * [log probability](https://en.wikipedia.org/wiki/Log_probability) to + * automatically increase the temperature until certain thresholds are hit. + */ + temperature?: number; +} diff --git a/resources/chat/chat.ts b/resources/chat/chat.ts new file mode 100644 index 000000000..4b2afb537 --- /dev/null +++ b/resources/chat/chat.ts @@ -0,0 +1,8 @@ +// File generated from our OpenAPI spec by Stainless. + +import { APIResource } from '~/resource'; +import { Completions } from './completions'; + +export class Chat extends APIResource { + completions: Completions = new Completions(this.client); +} diff --git a/resources/chat/completions.ts b/resources/chat/completions.ts new file mode 100644 index 000000000..c0064b43a --- /dev/null +++ b/resources/chat/completions.ts @@ -0,0 +1,559 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from '~/core'; +import { APIResource } from '~/resource'; +import { Stream } from '~/streaming'; + +export class Completions extends APIResource { + /** + * Creates a model response for the given chat conversation. + */ + create( + body: CompletionCreateParams.CreateChatCompletionRequestNonStreaming, + options?: Core.RequestOptions, + ): Promise>; + create( + body: CompletionCreateParams.CreateChatCompletionRequestStreaming, + options?: Core.RequestOptions, + ): Promise>>; + create( + body: CompletionCreateParams, + options?: Core.RequestOptions, + ): Promise>> { + return this.post('/chat/completions', { body, ...options, stream: body.stream ?? false }); + } +} + +export interface ChatCompletion { + choices: Array; + + created: number; + + id: string; + + model: string; + + object: string; + + usage?: ChatCompletion.Usage; +} + +export namespace ChatCompletion { + export interface Choices { + finish_reason?: 'stop' | 'length' | 'function_call'; + + index?: number; + + message?: Choices.Message; + } + + export namespace Choices { + export interface Message { + /** + * The role of the author of this message. + */ + role: 'system' | 'user' | 'assistant' | 'function'; + + /** + * The contents of the message. + */ + content?: string | null; + + /** + * The name and arguments of a function that should be called, as generated by the + * model. + */ + function_call?: Message.FunctionCall; + } + + export namespace Message { + /** + * The name and arguments of a function that should be called, as generated by the + * model. + */ + export interface FunctionCall { + /** + * The arguments to call the function with, as generated by the model in JSON + * format. Note that the model does not always generate valid JSON, and may + * hallucinate parameters not defined by your function schema. Validate the + * arguments in your code before calling your function. + */ + arguments?: string; + + /** + * The name of the function to call. + */ + name?: string; + } + } + } + + export interface Usage { + completion_tokens: number; + + prompt_tokens: number; + + total_tokens: number; + } +} + +export interface ChatCompletionEvent { + choices: Array; + + created: number; + + id: string; + + model: string; + + object: string; +} + +export namespace ChatCompletionEvent { + export interface Choices { + delta?: Choices.Delta; + + finish_reason?: 'stop' | 'length' | 'function_call'; + + index?: number; + } + + export namespace Choices { + export interface Delta { + /** + * The contents of the chunk message. + */ + content?: string | null; + + /** + * The name and arguments of a function that should be called, as generated by the + * model. + */ + function_call?: Delta.FunctionCall; + + /** + * The role of the author of this message. + */ + role?: 'system' | 'user' | 'assistant' | 'function'; + } + + export namespace Delta { + /** + * The name and arguments of a function that should be called, as generated by the + * model. + */ + export interface FunctionCall { + /** + * The arguments to call the function with, as generated by the model in JSON + * format. Note that the model does not always generate valid JSON, and may + * hallucinate parameters not defined by your function schema. Validate the + * arguments in your code before calling your function. + */ + arguments?: string; + + /** + * The name of the function to call. + */ + name?: string; + } + } + } +} + +export type CompletionCreateParams = + | CompletionCreateParams.CreateChatCompletionRequestNonStreaming + | CompletionCreateParams.CreateChatCompletionRequestStreaming; + +export namespace CompletionCreateParams { + export interface CreateChatCompletionRequestNonStreaming { + /** + * A list of messages comprising the conversation so far. + * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_format_inputs_to_ChatGPT_models.ipynb). + */ + messages: Array; + + /** + * ID of the model to use. See the + * [model endpoint compatibility](/docs/models/model-endpoint-compatibility) table + * for details on which models work with the Chat API. + */ + model: string; + + /** + * Number between -2.0 and 2.0. Positive values penalize new tokens based on their + * existing frequency in the text so far, decreasing the model's likelihood to + * repeat the same line verbatim. + * + * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) + */ + frequency_penalty?: number | null; + + /** + * Controls how the model responds to function calls. "none" means the model does + * not call a function, and responds to the end-user. "auto" means the model can + * pick between an end-user or calling a function. Specifying a particular function + * via `{"name":\ "my_function"}` forces the model to call that function. "none" is + * the default when no functions are present. "auto" is the default if functions + * are present. + */ + function_call?: + | 'none' + | 'auto' + | CompletionCreateParams.CreateChatCompletionRequestNonStreaming.FunctionCallOption; + + /** + * A list of functions the model may generate JSON inputs for. + */ + functions?: Array; + + /** + * Modify the likelihood of specified tokens appearing in the completion. + * + * Accepts a json object that maps tokens (specified by their token ID in the + * tokenizer) to an associated bias value from -100 to 100. Mathematically, the + * bias is added to the logits generated by the model prior to sampling. The exact + * effect will vary per model, but values between -1 and 1 should decrease or + * increase likelihood of selection; values like -100 or 100 should result in a ban + * or exclusive selection of the relevant token. + */ + logit_bias?: unknown | null; + + /** + * The maximum number of [tokens](/tokenizer) to generate in the chat completion. + * + * The total length of input tokens and generated tokens is limited by the model's + * context length. + * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) + * for counting tokens. + */ + max_tokens?: number; + + /** + * How many chat completion choices to generate for each input message. + */ + n?: number | null; + + /** + * Number between -2.0 and 2.0. Positive values penalize new tokens based on + * whether they appear in the text so far, increasing the model's likelihood to + * talk about new topics. + * + * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) + */ + presence_penalty?: number | null; + + /** + * Up to 4 sequences where the API will stop generating further tokens. + */ + stop?: string | null | Array; + + /** + * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be + * sent as data-only + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) + * as they become available, with the stream terminated by a `data: [DONE]` + * message. + * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). + */ + stream?: false | null; + + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. + * + * We generally recommend altering this or `top_p` but not both. + */ + temperature?: number | null; + + /** + * An alternative to sampling with temperature, called nucleus sampling, where the + * model considers the results of the tokens with top_p probability mass. So 0.1 + * means only the tokens comprising the top 10% probability mass are considered. + * + * We generally recommend altering this or `temperature` but not both. + */ + top_p?: number | null; + + /** + * A unique identifier representing your end-user, which can help OpenAI to monitor + * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + */ + user?: string; + } + + export namespace CreateChatCompletionRequestNonStreaming { + export interface Messages { + /** + * The role of the messages author. One of `system`, `user`, `assistant`, or + * `function`. + */ + role: 'system' | 'user' | 'assistant' | 'function'; + + /** + * The contents of the message. `content` is required for all messages except + * assistant messages with function calls. + */ + content?: string; + + /** + * The name and arguments of a function that should be called, as generated by the + * model. + */ + function_call?: Messages.FunctionCall; + + /** + * The name of the author of this message. `name` is required if role is + * `function`, and it should be the name of the function whose response is in the + * `content`. May contain a-z, A-Z, 0-9, and underscores, with a maximum length of + * 64 characters. + */ + name?: string; + } + + export namespace Messages { + /** + * The name and arguments of a function that should be called, as generated by the + * model. + */ + export interface FunctionCall { + /** + * The arguments to call the function with, as generated by the model in JSON + * format. Note that the model does not always generate valid JSON, and may + * hallucinate parameters not defined by your function schema. Validate the + * arguments in your code before calling your function. + */ + arguments?: string; + + /** + * The name of the function to call. + */ + name?: string; + } + } + + export interface FunctionCallOption { + /** + * The name of the function to call. + */ + name: string; + } + + export interface Functions { + /** + * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain + * underscores and dashes, with a maximum length of 64. + */ + name: string; + + /** + * The description of what the function does. + */ + description?: string; + + /** + * The parameters the functions accepts, described as a JSON Schema object. See the + * [guide](/docs/guides/gpt/function-calling) for examples, and the + * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for + * documentation about the format. + */ + parameters?: Record; + } + } + + export interface CreateChatCompletionRequestStreaming { + /** + * A list of messages comprising the conversation so far. + * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_format_inputs_to_ChatGPT_models.ipynb). + */ + messages: Array; + + /** + * ID of the model to use. See the + * [model endpoint compatibility](/docs/models/model-endpoint-compatibility) table + * for details on which models work with the Chat API. + */ + model: string; + + /** + * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be + * sent as data-only + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) + * as they become available, with the stream terminated by a `data: [DONE]` + * message. + * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). + */ + stream: true; + + /** + * Number between -2.0 and 2.0. Positive values penalize new tokens based on their + * existing frequency in the text so far, decreasing the model's likelihood to + * repeat the same line verbatim. + * + * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) + */ + frequency_penalty?: number | null; + + /** + * Controls how the model responds to function calls. "none" means the model does + * not call a function, and responds to the end-user. "auto" means the model can + * pick between an end-user or calling a function. Specifying a particular function + * via `{"name":\ "my_function"}` forces the model to call that function. "none" is + * the default when no functions are present. "auto" is the default if functions + * are present. + */ + function_call?: + | 'none' + | 'auto' + | CompletionCreateParams.CreateChatCompletionRequestStreaming.FunctionCallOption; + + /** + * A list of functions the model may generate JSON inputs for. + */ + functions?: Array; + + /** + * Modify the likelihood of specified tokens appearing in the completion. + * + * Accepts a json object that maps tokens (specified by their token ID in the + * tokenizer) to an associated bias value from -100 to 100. Mathematically, the + * bias is added to the logits generated by the model prior to sampling. The exact + * effect will vary per model, but values between -1 and 1 should decrease or + * increase likelihood of selection; values like -100 or 100 should result in a ban + * or exclusive selection of the relevant token. + */ + logit_bias?: unknown | null; + + /** + * The maximum number of [tokens](/tokenizer) to generate in the chat completion. + * + * The total length of input tokens and generated tokens is limited by the model's + * context length. + * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) + * for counting tokens. + */ + max_tokens?: number; + + /** + * How many chat completion choices to generate for each input message. + */ + n?: number | null; + + /** + * Number between -2.0 and 2.0. Positive values penalize new tokens based on + * whether they appear in the text so far, increasing the model's likelihood to + * talk about new topics. + * + * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) + */ + presence_penalty?: number | null; + + /** + * Up to 4 sequences where the API will stop generating further tokens. + */ + stop?: string | null | Array; + + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. + * + * We generally recommend altering this or `top_p` but not both. + */ + temperature?: number | null; + + /** + * An alternative to sampling with temperature, called nucleus sampling, where the + * model considers the results of the tokens with top_p probability mass. So 0.1 + * means only the tokens comprising the top 10% probability mass are considered. + * + * We generally recommend altering this or `temperature` but not both. + */ + top_p?: number | null; + + /** + * A unique identifier representing your end-user, which can help OpenAI to monitor + * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + */ + user?: string; + } + + export namespace CreateChatCompletionRequestStreaming { + export interface Messages { + /** + * The role of the messages author. One of `system`, `user`, `assistant`, or + * `function`. + */ + role: 'system' | 'user' | 'assistant' | 'function'; + + /** + * The contents of the message. `content` is required for all messages except + * assistant messages with function calls. + */ + content?: string; + + /** + * The name and arguments of a function that should be called, as generated by the + * model. + */ + function_call?: Messages.FunctionCall; + + /** + * The name of the author of this message. `name` is required if role is + * `function`, and it should be the name of the function whose response is in the + * `content`. May contain a-z, A-Z, 0-9, and underscores, with a maximum length of + * 64 characters. + */ + name?: string; + } + + export namespace Messages { + /** + * The name and arguments of a function that should be called, as generated by the + * model. + */ + export interface FunctionCall { + /** + * The arguments to call the function with, as generated by the model in JSON + * format. Note that the model does not always generate valid JSON, and may + * hallucinate parameters not defined by your function schema. Validate the + * arguments in your code before calling your function. + */ + arguments?: string; + + /** + * The name of the function to call. + */ + name?: string; + } + } + + export interface FunctionCallOption { + /** + * The name of the function to call. + */ + name: string; + } + + export interface Functions { + /** + * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain + * underscores and dashes, with a maximum length of 64. + */ + name: string; + + /** + * The description of what the function does. + */ + description?: string; + + /** + * The parameters the functions accepts, described as a JSON Schema object. See the + * [guide](/docs/guides/gpt/function-calling) for examples, and the + * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for + * documentation about the format. + */ + parameters?: Record; + } + } +} diff --git a/resources/chat/index.ts b/resources/chat/index.ts new file mode 100644 index 000000000..58b7e0c36 --- /dev/null +++ b/resources/chat/index.ts @@ -0,0 +1,3 @@ +// File generated from our OpenAPI spec by Stainless. + +export { ChatCompletion, ChatCompletionEvent, CompletionCreateParams } from './completions'; diff --git a/resources/classifications.ts b/resources/classifications.ts new file mode 100644 index 000000000..70cf2a75d --- /dev/null +++ b/resources/classifications.ts @@ -0,0 +1,169 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from '~/core'; +import { APIResource } from '~/resource'; + +export class Classifications extends APIResource { + /** + * Classifies the specified `query` using provided examples. + * + * The endpoint first [searches](/docs/api-reference/searches) over the labeled + * examples to select the ones most relevant for the particular query. Then, the + * relevant examples are combined with the query to construct a prompt to produce + * the final label via the [completions](/docs/api-reference/completions) endpoint. + * + * Labeled examples can be provided via an uploaded `file`, or explicitly listed in + * the request using the `examples` parameter for quick tests and small scale use + * cases. + */ + create( + body: ClassificationCreateParams, + options?: Core.RequestOptions, + ): Promise> { + return this.post('/classifications', { body, ...options }); + } +} + +export interface ClassificationCreateResponse { + completion?: string; + + label?: string; + + model?: string; + + object?: string; + + search_model?: string; + + selected_examples?: Array; +} + +export namespace ClassificationCreateResponse { + export interface SelectedExamples { + document?: number; + + label?: string; + + text?: string; + } +} + +export interface ClassificationCreateParams { + /** + * ID of the model to use. You can use the + * [List models](/docs/api-reference/models/list) API to see all of your available + * models, or see our [Model overview](/docs/models/overview) for descriptions of + * them. + */ + model: string; + + /** + * Query to be classified. + */ + query: string; + + /** + * A list of examples with labels, in the following format: + * + * `[["The movie is so interesting.", "Positive"], ["It is quite boring.", "Negative"], ...]` + * + * All the label strings will be normalized to be capitalized. + * + * You should specify either `examples` or `file`, but not both. + */ + examples?: Array> | null; + + /** + * If an object name is in the list, we provide the full information of the object; + * otherwise, we only provide the object ID. Currently we support `completion` and + * `file` objects for expansion. + */ + expand?: Array | null; + + /** + * The ID of the uploaded file that contains training examples. See + * [upload file](/docs/api-reference/files/upload) for how to upload a file of the + * desired format and purpose. + * + * You should specify either `examples` or `file`, but not both. + */ + file?: string | null; + + /** + * The set of categories being classified. If not specified, candidate labels will + * be automatically collected from the examples you provide. All the label strings + * will be normalized to be capitalized. + */ + labels?: Array | null; + + /** + * Modify the likelihood of specified tokens appearing in the completion. + * + * Accepts a json object that maps tokens (specified by their token ID in the GPT + * tokenizer) to an associated bias value from -100 to 100. You can use this + * [tokenizer tool](/tokenizer?view=bpe) (which works for both GPT-2 and GPT-3) to + * convert text to token IDs. Mathematically, the bias is added to the logits + * generated by the model prior to sampling. The exact effect will vary per model, + * but values between -1 and 1 should decrease or increase likelihood of selection; + * values like -100 or 100 should result in a ban or exclusive selection of the + * relevant token. + * + * As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> token + * from being generated. + */ + logit_bias?: unknown | null; + + /** + * Include the log probabilities on the `logprobs` most likely tokens, as well the + * chosen tokens. For example, if `logprobs` is 5, the API will return a list of + * the 5 most likely tokens. The API will always return the `logprob` of the + * sampled token, so there may be up to `logprobs+1` elements in the response. + * + * The maximum value for `logprobs` is 5. + * + * When `logprobs` is set, `completion` will be automatically added into `expand` + * to get the logprobs. + */ + logprobs?: number | null; + + /** + * The maximum number of examples to be ranked by + * [Search](/docs/api-reference/searches/create) when using `file`. Setting it to a + * higher value leads to improved accuracy but with increased latency and cost. + */ + max_examples?: number | null; + + /** + * A special boolean flag for showing metadata. If set to `true`, each document + * entry in the returned JSON will contain a "metadata" field. + * + * This flag only takes effect when `file` is set. + */ + return_metadata?: boolean | null; + + /** + * If set to `true`, the returned JSON will include a "prompt" field containing the + * final prompt that was used to request a completion. This is mainly useful for + * debugging purposes. + */ + return_prompt?: boolean | null; + + /** + * ID of the model to use for [Search](/docs/api-reference/searches/create). You + * can select one of `ada`, `babbage`, `curie`, or `davinci`. + */ + search_model?: string | null; + + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. + */ + temperature?: number | null; + + /** + * A unique identifier representing your end-user, which can help OpenAI to monitor + * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + */ + user?: string; +} diff --git a/resources/completions.ts b/resources/completions.ts new file mode 100644 index 000000000..ad3a1f743 --- /dev/null +++ b/resources/completions.ts @@ -0,0 +1,371 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from '~/core'; +import { APIResource } from '~/resource'; +import { Stream } from '~/streaming'; + +export class Completions extends APIResource { + /** + * Creates a completion for the provided prompt and parameters. + */ + create( + body: CompletionCreateParams.CreateCompletionRequestNonStreaming, + options?: Core.RequestOptions, + ): Promise>; + create( + body: CompletionCreateParams.CreateCompletionRequestStreaming, + options?: Core.RequestOptions, + ): Promise>>; + create( + body: CompletionCreateParams, + options?: Core.RequestOptions, + ): Promise>> { + return this.post('/completions', { body, ...options, stream: body.stream ?? false }); + } +} + +export interface Completion { + choices: Array; + + created: number; + + id: string; + + model: string; + + object: string; + + usage?: Completion.Usage; +} + +export namespace Completion { + export interface Usage { + completion_tokens: number; + + prompt_tokens: number; + + total_tokens: number; + } +} + +export interface CompletionChoice { + finish_reason: 'stop' | 'length'; + + index: number; + + logprobs: CompletionChoice.Logprobs | null; + + text: string; +} + +export namespace CompletionChoice { + export interface Logprobs { + text_offset?: Array; + + token_logprobs?: Array; + + tokens?: Array; + + top_logprobs?: Array; + } +} + +export type CompletionCreateParams = + | CompletionCreateParams.CreateCompletionRequestNonStreaming + | CompletionCreateParams.CreateCompletionRequestStreaming; + +export namespace CompletionCreateParams { + export interface CreateCompletionRequestNonStreaming { + /** + * ID of the model to use. You can use the + * [List models](/docs/api-reference/models/list) API to see all of your available + * models, or see our [Model overview](/docs/models/overview) for descriptions of + * them. + */ + model: string; + + /** + * The prompt(s) to generate completions for, encoded as a string, array of + * strings, array of tokens, or array of token arrays. + * + * Note that <|endoftext|> is the document separator that the model sees during + * training, so if a prompt is not specified the model will generate as if from the + * beginning of a new document. + */ + prompt: string | Array | Array | Array> | null; + + /** + * Generates `best_of` completions server-side and returns the "best" (the one with + * the highest log probability per token). Results cannot be streamed. + * + * When used with `n`, `best_of` controls the number of candidate completions and + * `n` specifies how many to return – `best_of` must be greater than `n`. + * + * **Note:** Because this parameter generates many completions, it can quickly + * consume your token quota. Use carefully and ensure that you have reasonable + * settings for `max_tokens` and `stop`. + */ + best_of?: number | null; + + /** + * Echo back the prompt in addition to the completion + */ + echo?: boolean | null; + + /** + * Number between -2.0 and 2.0. Positive values penalize new tokens based on their + * existing frequency in the text so far, decreasing the model's likelihood to + * repeat the same line verbatim. + * + * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) + */ + frequency_penalty?: number | null; + + /** + * Modify the likelihood of specified tokens appearing in the completion. + * + * Accepts a json object that maps tokens (specified by their token ID in the GPT + * tokenizer) to an associated bias value from -100 to 100. You can use this + * [tokenizer tool](/tokenizer?view=bpe) (which works for both GPT-2 and GPT-3) to + * convert text to token IDs. Mathematically, the bias is added to the logits + * generated by the model prior to sampling. The exact effect will vary per model, + * but values between -1 and 1 should decrease or increase likelihood of selection; + * values like -100 or 100 should result in a ban or exclusive selection of the + * relevant token. + * + * As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> token + * from being generated. + */ + logit_bias?: unknown | null; + + /** + * Include the log probabilities on the `logprobs` most likely tokens, as well the + * chosen tokens. For example, if `logprobs` is 5, the API will return a list of + * the 5 most likely tokens. The API will always return the `logprob` of the + * sampled token, so there may be up to `logprobs+1` elements in the response. + * + * The maximum value for `logprobs` is 5. + */ + logprobs?: number | null; + + /** + * The maximum number of [tokens](/tokenizer) to generate in the completion. + * + * The token count of your prompt plus `max_tokens` cannot exceed the model's + * context length. + * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) + * for counting tokens. + */ + max_tokens?: number | null; + + /** + * How many completions to generate for each prompt. + * + * **Note:** Because this parameter generates many completions, it can quickly + * consume your token quota. Use carefully and ensure that you have reasonable + * settings for `max_tokens` and `stop`. + */ + n?: number | null; + + /** + * Number between -2.0 and 2.0. Positive values penalize new tokens based on + * whether they appear in the text so far, increasing the model's likelihood to + * talk about new topics. + * + * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) + */ + presence_penalty?: number | null; + + /** + * Up to 4 sequences where the API will stop generating further tokens. The + * returned text will not contain the stop sequence. + */ + stop?: string | null | Array; + + /** + * Whether to stream back partial progress. If set, tokens will be sent as + * data-only + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) + * as they become available, with the stream terminated by a `data: [DONE]` + * message. + * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). + */ + stream?: false | null; + + /** + * The suffix that comes after a completion of inserted text. + */ + suffix?: string | null; + + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. + * + * We generally recommend altering this or `top_p` but not both. + */ + temperature?: number | null; + + /** + * An alternative to sampling with temperature, called nucleus sampling, where the + * model considers the results of the tokens with top_p probability mass. So 0.1 + * means only the tokens comprising the top 10% probability mass are considered. + * + * We generally recommend altering this or `temperature` but not both. + */ + top_p?: number | null; + + /** + * A unique identifier representing your end-user, which can help OpenAI to monitor + * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + */ + user?: string; + } + + export interface CreateCompletionRequestStreaming { + /** + * ID of the model to use. You can use the + * [List models](/docs/api-reference/models/list) API to see all of your available + * models, or see our [Model overview](/docs/models/overview) for descriptions of + * them. + */ + model: string; + + /** + * The prompt(s) to generate completions for, encoded as a string, array of + * strings, array of tokens, or array of token arrays. + * + * Note that <|endoftext|> is the document separator that the model sees during + * training, so if a prompt is not specified the model will generate as if from the + * beginning of a new document. + */ + prompt: string | Array | Array | Array> | null; + + /** + * Whether to stream back partial progress. If set, tokens will be sent as + * data-only + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) + * as they become available, with the stream terminated by a `data: [DONE]` + * message. + * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). + */ + stream: true; + + /** + * Generates `best_of` completions server-side and returns the "best" (the one with + * the highest log probability per token). Results cannot be streamed. + * + * When used with `n`, `best_of` controls the number of candidate completions and + * `n` specifies how many to return – `best_of` must be greater than `n`. + * + * **Note:** Because this parameter generates many completions, it can quickly + * consume your token quota. Use carefully and ensure that you have reasonable + * settings for `max_tokens` and `stop`. + */ + best_of?: number | null; + + /** + * Echo back the prompt in addition to the completion + */ + echo?: boolean | null; + + /** + * Number between -2.0 and 2.0. Positive values penalize new tokens based on their + * existing frequency in the text so far, decreasing the model's likelihood to + * repeat the same line verbatim. + * + * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) + */ + frequency_penalty?: number | null; + + /** + * Modify the likelihood of specified tokens appearing in the completion. + * + * Accepts a json object that maps tokens (specified by their token ID in the GPT + * tokenizer) to an associated bias value from -100 to 100. You can use this + * [tokenizer tool](/tokenizer?view=bpe) (which works for both GPT-2 and GPT-3) to + * convert text to token IDs. Mathematically, the bias is added to the logits + * generated by the model prior to sampling. The exact effect will vary per model, + * but values between -1 and 1 should decrease or increase likelihood of selection; + * values like -100 or 100 should result in a ban or exclusive selection of the + * relevant token. + * + * As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> token + * from being generated. + */ + logit_bias?: unknown | null; + + /** + * Include the log probabilities on the `logprobs` most likely tokens, as well the + * chosen tokens. For example, if `logprobs` is 5, the API will return a list of + * the 5 most likely tokens. The API will always return the `logprob` of the + * sampled token, so there may be up to `logprobs+1` elements in the response. + * + * The maximum value for `logprobs` is 5. + */ + logprobs?: number | null; + + /** + * The maximum number of [tokens](/tokenizer) to generate in the completion. + * + * The token count of your prompt plus `max_tokens` cannot exceed the model's + * context length. + * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) + * for counting tokens. + */ + max_tokens?: number | null; + + /** + * How many completions to generate for each prompt. + * + * **Note:** Because this parameter generates many completions, it can quickly + * consume your token quota. Use carefully and ensure that you have reasonable + * settings for `max_tokens` and `stop`. + */ + n?: number | null; + + /** + * Number between -2.0 and 2.0. Positive values penalize new tokens based on + * whether they appear in the text so far, increasing the model's likelihood to + * talk about new topics. + * + * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) + */ + presence_penalty?: number | null; + + /** + * Up to 4 sequences where the API will stop generating further tokens. The + * returned text will not contain the stop sequence. + */ + stop?: string | null | Array; + + /** + * The suffix that comes after a completion of inserted text. + */ + suffix?: string | null; + + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. + * + * We generally recommend altering this or `top_p` but not both. + */ + temperature?: number | null; + + /** + * An alternative to sampling with temperature, called nucleus sampling, where the + * model considers the results of the tokens with top_p probability mass. So 0.1 + * means only the tokens comprising the top 10% probability mass are considered. + * + * We generally recommend altering this or `temperature` but not both. + */ + top_p?: number | null; + + /** + * A unique identifier representing your end-user, which can help OpenAI to monitor + * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + */ + user?: string; + } +} diff --git a/resources/edits.ts b/resources/edits.ts new file mode 100644 index 000000000..856ba0089 --- /dev/null +++ b/resources/edits.ts @@ -0,0 +1,96 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from '~/core'; +import { APIResource } from '~/resource'; + +export class Edits extends APIResource { + /** + * Creates a new edit for the provided input, instruction, and parameters. + */ + create(body: EditCreateParams, options?: Core.RequestOptions): Promise> { + return this.post('/edits', { body, ...options }); + } +} + +export interface Edit { + choices: Array; + + created: number; + + object: string; + + usage: Edit.Usage; +} + +export namespace Edit { + export interface Choices { + finish_reason?: 'stop' | 'length'; + + index?: number; + + logprobs?: Choices.Logprobs | null; + + text?: string; + } + + export namespace Choices { + export interface Logprobs { + text_offset?: Array; + + token_logprobs?: Array; + + tokens?: Array; + + top_logprobs?: Array; + } + } + + export interface Usage { + completion_tokens: number; + + prompt_tokens: number; + + total_tokens: number; + } +} + +export interface EditCreateParams { + /** + * The instruction that tells the model how to edit the prompt. + */ + instruction: string; + + /** + * ID of the model to use. You can use the `text-davinci-edit-001` or + * `code-davinci-edit-001` model with this endpoint. + */ + model: string; + + /** + * The input text to use as a starting point for the edit. + */ + input?: string | null; + + /** + * How many edits to generate for the input and instruction. + */ + n?: number | null; + + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. + * + * We generally recommend altering this or `top_p` but not both. + */ + temperature?: number | null; + + /** + * An alternative to sampling with temperature, called nucleus sampling, where the + * model considers the results of the tokens with top_p probability mass. So 0.1 + * means only the tokens comprising the top 10% probability mass are considered. + * + * We generally recommend altering this or `temperature` but not both. + */ + top_p?: number | null; +} diff --git a/resources/embeddings.ts b/resources/embeddings.ts new file mode 100644 index 000000000..ae1c62f3e --- /dev/null +++ b/resources/embeddings.ts @@ -0,0 +1,65 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from '~/core'; +import { APIResource } from '~/resource'; + +export class Embeddings extends APIResource { + /** + * Creates an embedding vector representing the input text. + */ + create(body: EmbeddingCreateParams, options?: Core.RequestOptions): Promise> { + return this.post('/embeddings', { body, ...options }); + } +} + +export interface Embedding { + data: Array; + + model: string; + + object: string; + + usage: Embedding.Usage; +} + +export namespace Embedding { + export interface Data { + embedding: Array; + + index: number; + + object: string; + } + + export interface Usage { + prompt_tokens: number; + + total_tokens: number; + } +} + +export interface EmbeddingCreateParams { + /** + * Input text to embed, encoded as a string or array of tokens. To embed multiple + * inputs in a single request, pass an array of strings or array of token arrays. + * Each input must not exceed the max input tokens for the model (8191 tokens for + * `text-embedding-ada-002`). + * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) + * for counting tokens. + */ + input: string | Array | Array | Array>; + + /** + * ID of the model to use. You can use the + * [List models](/docs/api-reference/models/list) API to see all of your available + * models, or see our [Model overview](/docs/models/overview) for descriptions of + * them. + */ + model: string; + + /** + * A unique identifier representing your end-user, which can help OpenAI to monitor + * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + */ + user?: string; +} diff --git a/resources/files.ts b/resources/files.ts new file mode 100644 index 000000000..9ecadfd42 --- /dev/null +++ b/resources/files.ts @@ -0,0 +1,104 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from '~/core'; +import { APIResource } from '~/resource'; +import type * as FormData from 'formdata-node'; +import { multipartFormRequestOptions } from '~/core'; + +export class Files extends APIResource { + /** + * Upload a file that contains document(s) to be used across various + * endpoints/features. Currently, the size of all the files uploaded by one + * organization can be up to 1 GB. Please contact us if you need to increase the + * storage limit. + */ + create(body: FileCreateParams, options?: Core.RequestOptions): Promise> { + return this.post('/files', multipartFormRequestOptions({ body, ...options })); + } + + /** + * Returns information about a specific file. + */ + retrieve(fileId: string, options?: Core.RequestOptions): Promise> { + return this.get(`/files/${fileId}`, options); + } + + /** + * Returns a list of files that belong to the user's organization. + */ + list(options?: Core.RequestOptions): Promise> { + return this.get('/files', options); + } + + /** + * Delete a file. + */ + del(fileId: string, options?: Core.RequestOptions): Promise> { + return this.delete(`/files/${fileId}`, options); + } + + /** + * Returns the contents of the specified file + */ + retrieveFileContent( + fileId: string, + options?: Core.RequestOptions, + ): Promise>> { + return this.get(`/files/${fileId}/content`, { + ...options, + headers: { Accept: 'application/json', ...options?.headers }, + }); + } +} + +export interface File { + bytes: number; + + created_at: number; + + filename: string; + + id: string; + + object: string; + + purpose: string; + + status?: string; +} + +export interface FileListResponse { + data: Array; + + object: string; +} + +export interface FileDeleteResponse { + deleted: boolean; + + id: string; + + object: string; +} + +export type FileRetrieveFileContentResponse = string; + +export interface FileCreateParams { + /** + * Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be + * uploaded. + * + * If the `purpose` is set to "fine-tune", each line is a JSON record with "prompt" + * and "completion" fields representing your + * [training examples](/docs/guides/fine-tuning/prepare-training-data). + */ + file: FormData.Blob | FormData.File; + + /** + * The intended purpose of the uploaded documents. + * + * Use "fine-tune" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows + * us to validate the format of the uploaded file. + */ + purpose: string; +} diff --git a/resources/fine-tunes.ts b/resources/fine-tunes.ts new file mode 100644 index 000000000..4d88581eb --- /dev/null +++ b/resources/fine-tunes.ts @@ -0,0 +1,277 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from '~/core'; +import { APIResource } from '~/resource'; +import * as Files from '~/resources/files'; +import { Stream } from '~/streaming'; + +export class FineTunes extends APIResource { + /** + * Creates a job that fine-tunes a specified model from a given dataset. + * + * Response includes details of the enqueued job including job status and the name + * of the fine-tuned models once complete. + * + * [Learn more about Fine-tuning](/docs/guides/fine-tuning) + */ + create(body: FineTuneCreateParams, options?: Core.RequestOptions): Promise> { + return this.post('/fine-tunes', { body, ...options }); + } + + /** + * Gets info about the fine-tune job. + * + * [Learn more about Fine-tuning](/docs/guides/fine-tuning) + */ + retrieve(fineTuneId: string, options?: Core.RequestOptions): Promise> { + return this.get(`/fine-tunes/${fineTuneId}`, options); + } + + /** + * List your organization's fine-tuning jobs + */ + list(options?: Core.RequestOptions): Promise> { + return this.get('/fine-tunes', options); + } + + /** + * Immediately cancel a fine-tune job. + */ + cancel(fineTuneId: string, options?: Core.RequestOptions): Promise> { + return this.post(`/fine-tunes/${fineTuneId}/cancel`, options); + } + + /** + * Get fine-grained status updates for a fine-tune job. + */ + listEvents( + fineTuneId: string, + query?: FineTuneListEventsParams.ListEventsRequestNonStreaming, + options?: Core.RequestOptions, + ): Promise>; + listEvents( + fineTuneId: string, + query: FineTuneListEventsParams.ListEventsRequestStreaming, + options?: Core.RequestOptions, + ): Promise>>; + listEvents( + fineTuneId: string, + query?: FineTuneListEventsParams | undefined, + options?: Core.RequestOptions, + ): Promise>> { + return this.get(`/fine-tunes/${fineTuneId}/events`, { + query, + ...options, + stream: query?.stream ?? false, + }); + } +} + +export interface FineTune { + created_at: number; + + fine_tuned_model: string | null; + + hyperparams: unknown; + + id: string; + + model: string; + + object: string; + + organization_id: string; + + result_files: Array; + + status: string; + + training_files: Array; + + updated_at: number; + + validation_files: Array; + + events?: Array; +} + +export interface FineTuneEvent { + created_at: number; + + level: string; + + message: string; + + object: string; +} + +export interface ListFineTuneEventsResponse { + data: Array; + + object: string; +} + +export interface ListFineTunesResponse { + data: Array; + + object: string; +} + +export interface FineTuneCreateParams { + /** + * The ID of an uploaded file that contains training data. + * + * See [upload file](/docs/api-reference/files/upload) for how to upload a file. + * + * Your dataset must be formatted as a JSONL file, where each training example is a + * JSON object with the keys "prompt" and "completion". Additionally, you must + * upload your file with the purpose `fine-tune`. + * + * See the [fine-tuning guide](/docs/guides/fine-tuning/creating-training-data) for + * more details. + */ + training_file: string; + + /** + * The batch size to use for training. The batch size is the number of training + * examples used to train a single forward and backward pass. + * + * By default, the batch size will be dynamically configured to be ~0.2% of the + * number of examples in the training set, capped at 256 - in general, we've found + * that larger batch sizes tend to work better for larger datasets. + */ + batch_size?: number | null; + + /** + * If this is provided, we calculate F-beta scores at the specified beta values. + * The F-beta score is a generalization of F-1 score. This is only used for binary + * classification. + * + * With a beta of 1 (i.e. the F-1 score), precision and recall are given the same + * weight. A larger beta score puts more weight on recall and less on precision. A + * smaller beta score puts more weight on precision and less on recall. + */ + classification_betas?: Array | null; + + /** + * The number of classes in a classification task. + * + * This parameter is required for multiclass classification. + */ + classification_n_classes?: number | null; + + /** + * The positive class in binary classification. + * + * This parameter is needed to generate precision, recall, and F1 metrics when + * doing binary classification. + */ + classification_positive_class?: string | null; + + /** + * If set, we calculate classification-specific metrics such as accuracy and F-1 + * score using the validation set at the end of every epoch. These metrics can be + * viewed in the + * [results file](/docs/guides/fine-tuning/analyzing-your-fine-tuned-model). + * + * In order to compute classification metrics, you must provide a + * `validation_file`. Additionally, you must specify `classification_n_classes` for + * multiclass classification or `classification_positive_class` for binary + * classification. + */ + compute_classification_metrics?: boolean | null; + + /** + * The learning rate multiplier to use for training. The fine-tuning learning rate + * is the original learning rate used for pretraining multiplied by this value. + * + * By default, the learning rate multiplier is the 0.05, 0.1, or 0.2 depending on + * final `batch_size` (larger learning rates tend to perform better with larger + * batch sizes). We recommend experimenting with values in the range 0.02 to 0.2 to + * see what produces the best results. + */ + learning_rate_multiplier?: number | null; + + /** + * The name of the base model to fine-tune. You can select one of "ada", "babbage", + * "curie", "davinci", or a fine-tuned model created after 2022-04-21. To learn + * more about these models, see the + * [Models](https://platform.openai.com/docs/models) documentation. + */ + model?: string | null; + + /** + * The number of epochs to train the model for. An epoch refers to one full cycle + * through the training dataset. + */ + n_epochs?: number | null; + + /** + * The weight to use for loss on the prompt tokens. This controls how much the + * model tries to learn to generate the prompt (as compared to the completion which + * always has a weight of 1.0), and can add a stabilizing effect to training when + * completions are short. + * + * If prompts are extremely long (relative to completions), it may make sense to + * reduce this weight so as to avoid over-prioritizing learning the prompt. + */ + prompt_loss_weight?: number | null; + + /** + * A string of up to 40 characters that will be added to your fine-tuned model + * name. + * + * For example, a `suffix` of "custom-model-name" would produce a model name like + * `ada:ft-your-org:custom-model-name-2022-02-15-04-21-04`. + */ + suffix?: string | null; + + /** + * The ID of an uploaded file that contains validation data. + * + * If you provide this file, the data is used to generate validation metrics + * periodically during fine-tuning. These metrics can be viewed in the + * [fine-tuning results file](/docs/guides/fine-tuning/analyzing-your-fine-tuned-model). + * Your train and validation data should be mutually exclusive. + * + * Your dataset must be formatted as a JSONL file, where each validation example is + * a JSON object with the keys "prompt" and "completion". Additionally, you must + * upload your file with the purpose `fine-tune`. + * + * See the [fine-tuning guide](/docs/guides/fine-tuning/creating-training-data) for + * more details. + */ + validation_file?: string | null; +} + +export type FineTuneListEventsParams = + | FineTuneListEventsParams.ListEventsRequestNonStreaming + | FineTuneListEventsParams.ListEventsRequestStreaming; + +export namespace FineTuneListEventsParams { + export interface ListEventsRequestNonStreaming { + /** + * Whether to stream events for the fine-tune job. If set to true, events will be + * sent as data-only + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) + * as they become available. The stream will terminate with a `data: [DONE]` + * message when the job is finished (succeeded, cancelled, or failed). + * + * If set to false, only events generated so far will be returned. + */ + stream?: false; + } + + export interface ListEventsRequestStreaming { + /** + * Whether to stream events for the fine-tune job. If set to true, events will be + * sent as data-only + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) + * as they become available. The stream will terminate with a `data: [DONE]` + * message when the job is finished (succeeded, cancelled, or failed). + * + * If set to false, only events generated so far will be returned. + */ + stream: true; + } +} diff --git a/resources/images.ts b/resources/images.ts new file mode 100644 index 000000000..0a3af2b00 --- /dev/null +++ b/resources/images.ts @@ -0,0 +1,153 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from '~/core'; +import { APIResource } from '~/resource'; +import type * as FormData from 'formdata-node'; +import { multipartFormRequestOptions } from '~/core'; + +export class Images extends APIResource { + /** + * Creates a variation of a given image. + */ + createVariation( + body: ImageCreateVariationParams, + options?: Core.RequestOptions, + ): Promise> { + return this.post('/images/variations', multipartFormRequestOptions({ body, ...options })); + } + + /** + * Creates an edited or extended image given an original image and a prompt. + */ + edit(body: ImageEditParams, options?: Core.RequestOptions): Promise> { + return this.post('/images/edits', multipartFormRequestOptions({ body, ...options })); + } + + /** + * Creates an image given a prompt. + */ + generate( + body: ImageGenerateParams, + options?: Core.RequestOptions, + ): Promise> { + return this.post('/images/generations', { body, ...options }); + } +} + +export interface Image { + b64_json?: string; + + url?: string; +} + +export interface ImagesResponse { + created: number; + + data: Array; +} + +export interface ImageCreateVariationParams { + /** + * The image to use as the basis for the variation(s). Must be a valid PNG file, + * less than 4MB, and square. + */ + image: FormData.Blob | FormData.File; + + /** + * The number of images to generate. Must be between 1 and 10. + */ + n?: number | null; + + /** + * The format in which the generated images are returned. Must be one of `url` or + * `b64_json`. + */ + response_format?: 'url' | 'b64_json' | null; + + /** + * The size of the generated images. Must be one of `256x256`, `512x512`, or + * `1024x1024`. + */ + size?: '256x256' | '512x512' | '1024x1024' | null; + + /** + * A unique identifier representing your end-user, which can help OpenAI to monitor + * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + */ + user?: string; +} + +export interface ImageEditParams { + /** + * The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask + * is not provided, image must have transparency, which will be used as the mask. + */ + image: FormData.Blob | FormData.File; + + /** + * A text description of the desired image(s). The maximum length is 1000 + * characters. + */ + prompt: string; + + /** + * An additional image whose fully transparent areas (e.g. where alpha is zero) + * indicate where `image` should be edited. Must be a valid PNG file, less than + * 4MB, and have the same dimensions as `image`. + */ + mask?: FormData.Blob | FormData.File; + + /** + * The number of images to generate. Must be between 1 and 10. + */ + n?: number | null; + + /** + * The format in which the generated images are returned. Must be one of `url` or + * `b64_json`. + */ + response_format?: 'url' | 'b64_json' | null; + + /** + * The size of the generated images. Must be one of `256x256`, `512x512`, or + * `1024x1024`. + */ + size?: '256x256' | '512x512' | '1024x1024' | null; + + /** + * A unique identifier representing your end-user, which can help OpenAI to monitor + * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + */ + user?: string; +} + +export interface ImageGenerateParams { + /** + * A text description of the desired image(s). The maximum length is 1000 + * characters. + */ + prompt: string; + + /** + * The number of images to generate. Must be between 1 and 10. + */ + n?: number | null; + + /** + * The format in which the generated images are returned. Must be one of `url` or + * `b64_json`. + */ + response_format?: 'url' | 'b64_json' | null; + + /** + * The size of the generated images. Must be one of `256x256`, `512x512`, or + * `1024x1024`. + */ + size?: '256x256' | '512x512' | '1024x1024' | null; + + /** + * A unique identifier representing your end-user, which can help OpenAI to monitor + * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + */ + user?: string; +} diff --git a/resources/index.ts b/resources/index.ts new file mode 100644 index 000000000..d056fd386 --- /dev/null +++ b/resources/index.ts @@ -0,0 +1,36 @@ +// File generated from our OpenAPI spec by Stainless. + +export { AnswerCreateResponse, AnswerCreateParams, Answers } from './answers'; +export { Audio } from './audio/audio'; +export { Chat } from './chat/chat'; +export { ClassificationCreateResponse, ClassificationCreateParams, Classifications } from './classifications'; +export { Completion, CompletionChoice, CompletionCreateParams, Completions } from './completions'; +export { DeleteModelResponse, ListModelsResponse, Model, Models } from './models'; +export { Edit, EditCreateParams, Edits } from './edits'; +export { Embedding, EmbeddingCreateParams, Embeddings } from './embeddings'; +export { + File, + FileListResponse, + FileDeleteResponse, + FileRetrieveFileContentResponse, + FileCreateParams, + Files, +} from './files'; +export { + FineTune, + FineTuneEvent, + ListFineTuneEventsResponse, + ListFineTunesResponse, + FineTuneCreateParams, + FineTuneListEventsParams, + FineTunes, +} from './fine-tunes'; +export { + Image, + ImagesResponse, + ImageCreateVariationParams, + ImageEditParams, + ImageGenerateParams, + Images, +} from './images'; +export { Moderation, ModerationCreateResponse, ModerationCreateParams, Moderations } from './moderations'; diff --git a/resources/models.ts b/resources/models.ts new file mode 100644 index 000000000..cb7b0da5f --- /dev/null +++ b/resources/models.ts @@ -0,0 +1,53 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from '~/core'; +import { APIResource } from '~/resource'; + +export class Models extends APIResource { + /** + * Retrieves a model instance, providing basic information about the model such as + * the owner and permissioning. + */ + retrieve(model: string, options?: Core.RequestOptions): Promise> { + return this.get(`/models/${model}`, options); + } + + /** + * Lists the currently available models, and provides basic information about each + * one such as the owner and availability. + */ + list(options?: Core.RequestOptions): Promise> { + return this.get('/models', options); + } + + /** + * Delete a fine-tuned model. You must have the Owner role in your organization. + */ + del(model: string, options?: Core.RequestOptions): Promise> { + return this.delete(`/models/${model}`, options); + } +} + +export interface DeleteModelResponse { + deleted: boolean; + + id: string; + + object: string; +} + +export interface ListModelsResponse { + data: Array; + + object: string; +} + +export interface Model { + created: number; + + id: string; + + object: string; + + owned_by: string; +} diff --git a/resources/moderations.ts b/resources/moderations.ts new file mode 100644 index 000000000..3e9ba3718 --- /dev/null +++ b/resources/moderations.ts @@ -0,0 +1,85 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from '~/core'; +import { APIResource } from '~/resource'; + +export class Moderations extends APIResource { + /** + * Classifies if text violates OpenAI's Content Policy + */ + create( + body: ModerationCreateParams, + options?: Core.RequestOptions, + ): Promise> { + return this.post('/moderations', { body, ...options }); + } +} + +export interface Moderation { + categories: Moderation.Categories; + + category_scores: Moderation.CategoryScores; + + flagged: boolean; +} + +export namespace Moderation { + export interface Categories { + hate: boolean; + + 'hate/threatening': boolean; + + 'self-harm': boolean; + + sexual: boolean; + + 'sexual/minors': boolean; + + violence: boolean; + + 'violence/graphic': boolean; + } + + export interface CategoryScores { + hate: number; + + 'hate/threatening': number; + + 'self-harm': number; + + sexual: number; + + 'sexual/minors': number; + + violence: number; + + 'violence/graphic': number; + } +} + +export interface ModerationCreateResponse { + id: string; + + model: string; + + results: Array; +} + +export interface ModerationCreateParams { + /** + * The input text to classify + */ + input: string | Array; + + /** + * Two content moderations models are available: `text-moderation-stable` and + * `text-moderation-latest`. + * + * The default is `text-moderation-latest` which will be automatically upgraded + * over time. This ensures you are always using our most accurate model. If you use + * `text-moderation-stable`, we will provide advanced notice before updating the + * model. Accuracy of `text-moderation-stable` may be slightly lower than for + * `text-moderation-latest`. + */ + model?: string; +} diff --git a/streaming.ts b/streaming.ts new file mode 100644 index 000000000..c12bafb5b --- /dev/null +++ b/streaming.ts @@ -0,0 +1,205 @@ +import type { Response } from 'node-fetch'; +import { APIResponse, Headers, createResponseHeaders } from '~/core'; + +type ServerSentEvent = { + event: string | null; + data: string; + raw: string[]; +}; + +class SSEDecoder { + private data: string[]; + private event: string | null; + private chunks: string[]; + + constructor() { + this.event = null; + this.data = []; + this.chunks = []; + } + + decode(line: string) { + if (line.endsWith('\r')) { + line = line.substring(0, line.length - 1); + } + + if (!line) { + // empty line and we didn't previously encounter any messages + if (!this.event && !this.data.length) return null; + + const sse: ServerSentEvent = { + event: this.event, + data: this.data.join('\n'), + raw: this.chunks, + }; + + this.event = null; + this.data = []; + this.chunks = []; + + return sse; + } + + this.chunks.push(line); + + if (line.startsWith(':')) { + return null; + } + + let [fieldname, _, value] = partition(line, ':'); + + if (value.startsWith(' ')) { + value = value.substring(1); + } + + if (fieldname === 'event') { + this.event = value; + } else if (fieldname === 'data') { + this.data.push(value); + } + + return null; + } +} + +export class Stream implements AsyncIterable, APIResponse> { + response: Response; + responseHeaders: Headers; + controller: AbortController; + + private decoder: SSEDecoder; + + constructor(response: Response, controller: AbortController) { + this.response = response; + this.controller = controller; + this.decoder = new SSEDecoder(); + this.responseHeaders = createResponseHeaders(response.headers); + } + + private async *iterMessages(): AsyncGenerator { + if (!this.response.body) { + this.controller.abort(); + throw new Error(`Attempted to iterate over a response with no body`); + } + + const lineDecoder = new LineDecoder(); + + for await (const chunk of this.response.body) { + let text; + if (chunk instanceof Buffer) { + text = chunk.toString(); + } else { + text = chunk; + } + + for (const line of lineDecoder.decode(text)) { + const sse = this.decoder.decode(line); + if (sse) yield sse; + } + } + + for (const line of lineDecoder.flush()) { + const sse = this.decoder.decode(line); + if (sse) yield sse; + } + } + + async *[Symbol.asyncIterator](): AsyncIterator { + try { + for await (const sse of this.iterMessages()) { + if (sse.data.startsWith('[DONE]')) { + break; + } + + if (sse.event === null) { + try { + yield JSON.parse(sse.data); + } catch (e) { + console.error(`Could not parse message into JSON:`, sse.data); + console.error(`From chunk:`, sse.raw); + throw e; + } + } + } + } catch (e) { + // If the user calls `stream.controller.abort()`, we should exit without throwing. + if (e instanceof Error && e.name === 'AbortError') return; + throw e; + } finally { + // If the user `break`s, abort the ongoing request. + this.controller.abort(); + } + } +} + +const NEWLINE_CHARS = '\n\r\x0b\x0c\x1c\x1d\x1e\x85\u2028\u2029'; + +/** + * A re-implementation of httpx's `LineDecoder` in Python that handles incrementally + * reading lines from text. + * + * https://github.com/encode/httpx/blob/920333ea98118e9cf617f246905d7b202510941c/httpx/_decoders.py#L258 + */ +class LineDecoder { + buffer: string[]; + trailingCR: boolean; + + constructor() { + this.buffer = []; + this.trailingCR = false; + } + + decode(text: string): string[] { + if (this.trailingCR) { + text = '\r' + text; + this.trailingCR = false; + } + if (text.endsWith('\r')) { + this.trailingCR = true; + text = text.slice(0, -1); + } + + if (!text) { + return []; + } + + const trailing_newline = NEWLINE_CHARS.includes(text.slice(-1)); + let lines = text.split(/\r\n|[\n\r\x0b\x0c\x1c\x1d\x1e\x85\u2028\u2029]/g); + + if (lines.length === 1 && !trailing_newline) { + this.buffer.push(lines[0]!); + return []; + } + + if (this.buffer.length > 0) { + lines = [this.buffer.join('') + lines[0], ...lines.slice(1)]; + this.buffer = []; + } + + if (!trailing_newline) { + this.buffer = [lines.pop() || '']; + } + + return lines; + } + + flush(): string[] { + if (!this.buffer.length && !this.trailingCR) { + return []; + } + + const lines = [this.buffer.join('')]; + this.buffer = []; + this.trailingCR = false; + return lines; + } +} + +function partition(str: string, delimiter: string): [string, string, string] { + const index = str.indexOf(delimiter); + if (index !== -1) { + return [str.substring(0, index), delimiter, str.substring(index + delimiter.length)]; + } + + return [str, '', '']; +} diff --git a/tests/api-resources/answers.test.ts b/tests/api-resources/answers.test.ts new file mode 100644 index 000000000..4df121d09 --- /dev/null +++ b/tests/api-resources/answers.test.ts @@ -0,0 +1,242 @@ +// File generated from our OpenAPI spec by Stainless. + +import OpenAI from '~/index'; + +const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); + +describe('resource answers', () => { + test('create: only required params', async () => { + const response = await openAI.answers.create({ + examples: [['x', 'x']], + examples_context: + "Ottawa, Canada's capital, is located in the east of southern Ontario, near the city of Montréal and the U.S. border.", + model: 'string', + question: 'What is the capital of Japan?', + }); + }); + + test('create: required and optional params', async () => { + const response = await openAI.answers.create({ + examples: [['x', 'x']], + examples_context: + "Ottawa, Canada's capital, is located in the east of southern Ontario, near the city of Montréal and the U.S. border.", + model: 'string', + question: 'What is the capital of Japan?', + documents: [ + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + 'string', + ], + expand: [{}, {}, {}], + file: 'string', + logit_bias: {}, + logprobs: 0, + max_rerank: 0, + max_tokens: 0, + n: 1, + return_metadata: true, + return_prompt: true, + search_model: 'string', + stop: '\n', + temperature: 0, + user: 'user-1234', + }); + }); +}); diff --git a/tests/api-resources/audio/transcriptions.test.ts b/tests/api-resources/audio/transcriptions.test.ts new file mode 100644 index 000000000..b165bdd69 --- /dev/null +++ b/tests/api-resources/audio/transcriptions.test.ts @@ -0,0 +1,28 @@ +// File generated from our OpenAPI spec by Stainless. + +import { fileFromPath } from 'formdata-node/file-from-path'; +import OpenAI from '~/index'; + +const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); + +describe('resource transcriptions', () => { + // Prism choked, idk + test.skip('create: only required params', async () => { + const response = await openAI.audio.transcriptions.create({ + file: await fileFromPath('README.md'), + model: 'string', + }); + }); + + // Prism choked, idk + test.skip('create: required and optional params', async () => { + const response = await openAI.audio.transcriptions.create({ + file: await fileFromPath('README.md'), + model: 'string', + language: 'string', + prompt: 'string', + response_format: 'string', + temperature: 0, + }); + }); +}); diff --git a/tests/api-resources/audio/translations.test.ts b/tests/api-resources/audio/translations.test.ts new file mode 100644 index 000000000..0c2c44b2d --- /dev/null +++ b/tests/api-resources/audio/translations.test.ts @@ -0,0 +1,27 @@ +// File generated from our OpenAPI spec by Stainless. + +import { fileFromPath } from 'formdata-node/file-from-path'; +import OpenAI from '~/index'; + +const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); + +describe('resource translations', () => { + // Prism choked, idk + test.skip('create: only required params', async () => { + const response = await openAI.audio.translations.create({ + file: await fileFromPath('README.md'), + model: 'string', + }); + }); + + // Prism choked, idk + test.skip('create: required and optional params', async () => { + const response = await openAI.audio.translations.create({ + file: await fileFromPath('README.md'), + model: 'string', + prompt: 'string', + response_format: 'string', + temperature: 0, + }); + }); +}); diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts new file mode 100644 index 000000000..ca4e21195 --- /dev/null +++ b/tests/api-resources/chat/completions.test.ts @@ -0,0 +1,40 @@ +// File generated from our OpenAPI spec by Stainless. + +import OpenAI from '~/index'; + +const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); + +describe('resource completions', () => { + test('create: only required params', async () => { + const response = await openAI.chat.completions.create({ + messages: [{ role: 'system' }], + model: 'string', + }); + }); + + test('create: required and optional params', async () => { + const response = await openAI.chat.completions.create({ + messages: [ + { + role: 'system', + content: 'string', + name: 'string', + function_call: { name: 'string', arguments: 'string' }, + }, + ], + model: 'string', + frequency_penalty: -2, + function_call: 'none', + functions: [{ name: 'string', description: 'string', parameters: { foo: 'bar' } }], + logit_bias: {}, + max_tokens: 0, + n: 1, + presence_penalty: -2, + stop: 'string', + stream: false, + temperature: 1, + top_p: 1, + user: 'user-1234', + }); + }); +}); diff --git a/tests/api-resources/classifications.test.ts b/tests/api-resources/classifications.test.ts new file mode 100644 index 000000000..3f63dd56d --- /dev/null +++ b/tests/api-resources/classifications.test.ts @@ -0,0 +1,36 @@ +// File generated from our OpenAPI spec by Stainless. + +import OpenAI from '~/index'; + +const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); + +describe('resource classifications', () => { + test('create: only required params', async () => { + const response = await openAI.classifications.create({ + model: 'string', + query: 'The plot is not very attractive.', + }); + }); + + test('create: required and optional params', async () => { + const response = await openAI.classifications.create({ + model: 'string', + query: 'The plot is not very attractive.', + examples: [ + ['x', 'x'], + ['x', 'x'], + ], + expand: [{}, {}, {}], + file: 'string', + labels: ['string', 'string'], + logit_bias: {}, + logprobs: 0, + max_examples: 0, + return_metadata: true, + return_prompt: true, + search_model: 'string', + temperature: 0, + user: 'user-1234', + }); + }); +}); diff --git a/tests/api-resources/completions.test.ts b/tests/api-resources/completions.test.ts new file mode 100644 index 000000000..2d7e1c688 --- /dev/null +++ b/tests/api-resources/completions.test.ts @@ -0,0 +1,32 @@ +// File generated from our OpenAPI spec by Stainless. + +import OpenAI from '~/index'; + +const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); + +describe('resource completions', () => { + test('create: only required params', async () => { + const response = await openAI.completions.create({ model: 'string', prompt: 'This is a test.' }); + }); + + test('create: required and optional params', async () => { + const response = await openAI.completions.create({ + model: 'string', + prompt: 'This is a test.', + best_of: 0, + echo: true, + frequency_penalty: -2, + logit_bias: {}, + logprobs: 0, + max_tokens: 16, + n: 1, + presence_penalty: -2, + stop: '\n', + stream: false, + suffix: 'test.', + temperature: 1, + top_p: 1, + user: 'user-1234', + }); + }); +}); diff --git a/tests/api-resources/edits.test.ts b/tests/api-resources/edits.test.ts new file mode 100644 index 000000000..c1ef992f7 --- /dev/null +++ b/tests/api-resources/edits.test.ts @@ -0,0 +1,25 @@ +// File generated from our OpenAPI spec by Stainless. + +import OpenAI from '~/index'; + +const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); + +describe('resource edits', () => { + test('create: only required params', async () => { + const response = await openAI.edits.create({ + instruction: 'Fix the spelling mistakes.', + model: 'string', + }); + }); + + test('create: required and optional params', async () => { + const response = await openAI.edits.create({ + instruction: 'Fix the spelling mistakes.', + model: 'string', + input: 'What day of the wek is it?', + n: 1, + temperature: 1, + top_p: 1, + }); + }); +}); diff --git a/tests/api-resources/embeddings.test.ts b/tests/api-resources/embeddings.test.ts new file mode 100644 index 000000000..84e4b2d04 --- /dev/null +++ b/tests/api-resources/embeddings.test.ts @@ -0,0 +1,22 @@ +// File generated from our OpenAPI spec by Stainless. + +import OpenAI from '~/index'; + +const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); + +describe('resource embeddings', () => { + test('create: only required params', async () => { + const response = await openAI.embeddings.create({ + input: 'The quick brown fox jumped over the lazy dog', + model: 'string', + }); + }); + + test('create: required and optional params', async () => { + const response = await openAI.embeddings.create({ + input: 'The quick brown fox jumped over the lazy dog', + model: 'string', + user: 'user-1234', + }); + }); +}); diff --git a/tests/api-resources/files.test.ts b/tests/api-resources/files.test.ts new file mode 100644 index 000000000..8174840c7 --- /dev/null +++ b/tests/api-resources/files.test.ts @@ -0,0 +1,64 @@ +// File generated from our OpenAPI spec by Stainless. + +import { fileFromPath } from 'formdata-node/file-from-path'; +import OpenAI from '~/index'; + +const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); + +describe('resource files', () => { + // Prism tests are broken + test.skip('create: only required params', async () => { + const response = await openAI.files.create({ file: await fileFromPath('README.md'), purpose: 'string' }); + }); + + // Prism tests are broken + test.skip('create: required and optional params', async () => { + const response = await openAI.files.create({ file: await fileFromPath('README.md'), purpose: 'string' }); + }); + + test('retrieve', async () => { + const response = await openAI.files.retrieve('string'); + }); + + test('retrieve: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect(openAI.files.retrieve('string', { path: '/_stainless_unknown_path' })).rejects.toThrow( + OpenAI.NotFoundError, + ); + }); + + test('list', async () => { + const response = await openAI.files.list(); + }); + + test('list: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect(openAI.files.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( + OpenAI.NotFoundError, + ); + }); + + test('del', async () => { + const response = await openAI.files.del('string'); + }); + + test('del: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect(openAI.files.del('string', { path: '/_stainless_unknown_path' })).rejects.toThrow( + OpenAI.NotFoundError, + ); + }); + + // Prism tests are broken + test.skip('retrieveFileContent', async () => { + const response = await openAI.files.retrieveFileContent('string'); + }); + + // Prism tests are broken + test.skip('retrieveFileContent: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openAI.files.retrieveFileContent('string', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); +}); diff --git a/tests/api-resources/fine-tunes.test.ts b/tests/api-resources/fine-tunes.test.ts new file mode 100644 index 000000000..83428bdd9 --- /dev/null +++ b/tests/api-resources/fine-tunes.test.ts @@ -0,0 +1,78 @@ +// File generated from our OpenAPI spec by Stainless. + +import OpenAI from '~/index'; + +const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); + +describe('resource fineTunes', () => { + test('create: only required params', async () => { + const response = await openAI.fineTunes.create({ training_file: 'file-ajSREls59WBbvgSzJSVWxMCB' }); + }); + + test('create: required and optional params', async () => { + const response = await openAI.fineTunes.create({ + training_file: 'file-ajSREls59WBbvgSzJSVWxMCB', + batch_size: 0, + classification_betas: [0, 0, 0], + classification_n_classes: 0, + classification_positive_class: 'string', + compute_classification_metrics: true, + learning_rate_multiplier: 0, + model: 'string', + n_epochs: 0, + prompt_loss_weight: 0, + suffix: 'x', + validation_file: 'file-XjSREls59WBbvgSzJSVWxMCa', + }); + }); + + test('retrieve', async () => { + const response = await openAI.fineTunes.retrieve('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); + }); + + test('retrieve: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openAI.fineTunes.retrieve('ft-AF1WoRqd3aJAHsqc9NY7iL8F', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('list', async () => { + const response = await openAI.fineTunes.list(); + }); + + test('list: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect(openAI.fineTunes.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( + OpenAI.NotFoundError, + ); + }); + + test('cancel', async () => { + const response = await openAI.fineTunes.cancel('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); + }); + + test('cancel: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openAI.fineTunes.cancel('ft-AF1WoRqd3aJAHsqc9NY7iL8F', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + // Prism chokes on this + test.skip('listEvents', async () => { + const response = await openAI.fineTunes.listEvents('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); + }); + + // Prism chokes on this + test.skip('listEvents: request options and params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openAI.fineTunes.listEvents( + 'ft-AF1WoRqd3aJAHsqc9NY7iL8F', + { stream: false }, + { path: '/_stainless_unknown_path' }, + ), + ).rejects.toThrow(OpenAI.NotFoundError); + }); +}); diff --git a/tests/api-resources/images.test.ts b/tests/api-resources/images.test.ts new file mode 100644 index 000000000..70f0a9cce --- /dev/null +++ b/tests/api-resources/images.test.ts @@ -0,0 +1,61 @@ +// File generated from our OpenAPI spec by Stainless. + +import { fileFromPath } from 'formdata-node/file-from-path'; +import OpenAI from '~/index'; + +const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); + +describe('resource images', () => { + // Prism choked, idk + test.skip('createVariation: only required params', async () => { + const response = await openAI.images.createVariation({ image: await fileFromPath('README.md') }); + }); + + // Prism choked, idk + test.skip('createVariation: required and optional params', async () => { + const response = await openAI.images.createVariation({ + image: await fileFromPath('README.md'), + n: 1, + response_format: 'url', + size: '1024x1024', + user: 'user-1234', + }); + }); + + // Prism choked, idk + test.skip('edit: only required params', async () => { + const response = await openAI.images.edit({ + image: await fileFromPath('README.md'), + prompt: 'A cute baby sea otter wearing a beret', + }); + }); + + // Prism choked, idk + test.skip('edit: required and optional params', async () => { + const response = await openAI.images.edit({ + image: await fileFromPath('README.md'), + prompt: 'A cute baby sea otter wearing a beret', + mask: await fileFromPath('README.md'), + n: 1, + response_format: 'url', + size: '1024x1024', + user: 'user-1234', + }); + }); + + // Prism choked, idk + test.skip('generate: only required params', async () => { + const response = await openAI.images.generate({ prompt: 'A cute baby sea otter' }); + }); + + // Prism choked, idk + test.skip('generate: required and optional params', async () => { + const response = await openAI.images.generate({ + prompt: 'A cute baby sea otter', + n: 1, + response_format: 'url', + size: '1024x1024', + user: 'user-1234', + }); + }); +}); diff --git a/tests/api-resources/models.test.ts b/tests/api-resources/models.test.ts new file mode 100644 index 000000000..a54b5fabf --- /dev/null +++ b/tests/api-resources/models.test.ts @@ -0,0 +1,40 @@ +// File generated from our OpenAPI spec by Stainless. + +import OpenAI from '~/index'; + +const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); + +describe('resource models', () => { + test('retrieve', async () => { + const response = await openAI.models.retrieve('text-davinci-001'); + }); + + test('retrieve: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openAI.models.retrieve('text-davinci-001', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('list', async () => { + const response = await openAI.models.list(); + }); + + test('list: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect(openAI.models.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( + OpenAI.NotFoundError, + ); + }); + + test('del', async () => { + const response = await openAI.models.del('curie:ft-acmeco-2021-03-03-21-44-20'); + }); + + test('del: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openAI.models.del('curie:ft-acmeco-2021-03-03-21-44-20', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); +}); diff --git a/tests/api-resources/moderations.test.ts b/tests/api-resources/moderations.test.ts new file mode 100644 index 000000000..0a103db5c --- /dev/null +++ b/tests/api-resources/moderations.test.ts @@ -0,0 +1,18 @@ +// File generated from our OpenAPI spec by Stainless. + +import OpenAI from '~/index'; + +const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); + +describe('resource moderations', () => { + test('create: only required params', async () => { + const response = await openAI.moderations.create({ input: 'I want to kill them.' }); + }); + + test('create: required and optional params', async () => { + const response = await openAI.moderations.create({ + input: 'I want to kill them.', + model: 'text-moderation-stable', + }); + }); +}); diff --git a/tests/form.test.ts b/tests/form.test.ts new file mode 100644 index 000000000..cc58aeaf7 --- /dev/null +++ b/tests/form.test.ts @@ -0,0 +1,27 @@ +import { multipartFormRequestOptions } from '~/core'; +import { Blob } from 'formdata-node'; +import { fileFromPath } from 'formdata-node/file-from-path'; + +describe('form data validation', () => { + test('valid values do not error', async () => { + multipartFormRequestOptions({ + body: { + foo: 'foo', + string: 1, + bool: true, + file: await fileFromPath('README.md'), + blob: new Blob(['Some content'], { type: 'text/plain' }), + }, + }); + }); + + test('null', async () => { + expect(() => + multipartFormRequestOptions({ + body: { + null: null, + }, + }), + ).toThrow(TypeError); + }); +}); diff --git a/tests/index.test.ts b/tests/index.test.ts new file mode 100644 index 000000000..39bee011f --- /dev/null +++ b/tests/index.test.ts @@ -0,0 +1,76 @@ +// File generated from our OpenAPI spec by Stainless. + +import { Headers } from '~/core'; +import OpenAI from '../index'; + +describe('instantiate client', () => { + const env = process.env; + + beforeEach(() => { + jest.resetModules(); + process.env = { ...env }; + + console.warn = jest.fn(); + }); + + afterEach(() => { + process.env = env; + }); + + test('defaultHeaders are passed through', () => { + const client = new OpenAI({ defaultHeaders: { 'X-My-Default-Header': '2' }, apiKey: 'my api key' }); + + const { req } = client.buildRequest({ path: '/foo', method: 'post' }); + expect((req.headers as Headers)['X-My-Default-Header']).toEqual('2'); + }); + + describe('baseUrl', () => { + test('trailing slash', () => { + const client = new OpenAI({ baseURL: 'http://localhost:5000/custom/path/', apiKey: 'my api key' }); + expect(client.buildURL('/foo', null)).toEqual('http://localhost:5000/custom/path/foo'); + }); + + test('no trailing slash', () => { + const client = new OpenAI({ baseURL: 'http://localhost:5000/custom/path', apiKey: 'my api key' }); + expect(client.buildURL('/foo', null)).toEqual('http://localhost:5000/custom/path/foo'); + }); + }); + + test('maxRetries option is correctly set', () => { + const client = new OpenAI({ maxRetries: 1, apiKey: 'my api key' }); + expect(client.maxRetries).toEqual(1); + + // default + const client2 = new OpenAI({ apiKey: 'my api key' }); + expect(client2.maxRetries).toEqual(2); + }); + + test('with minimal arguments', () => { + // set API Key via env var + process.env['OPENAI_API_KEY'] = 'env var api key'; + const client = new OpenAI(); + expect(client.apiKey).toBe('env var api key'); + }); + + test('with apiKey argument', () => { + process.env['OPENAI_API_KEY'] = 'env var api key'; + + const client = new OpenAI({ apiKey: 'another api key' }); + expect(client.apiKey).toBe('another api key'); + }); + + test('with options argument', () => { + process.env['OPENAI_API_KEY'] = 'env var api key'; + + // apiKey + const client = new OpenAI({ apiKey: 'my api key' }); + expect(client.apiKey).toBe('my api key'); + }); + + test('with disabled authentication', () => { + // fails if no API Key provided + expect(() => { + new OpenAI(); + }).toThrow(); + }); +}); diff --git a/tests/responses.test.ts b/tests/responses.test.ts new file mode 100644 index 000000000..ffd0899c6 --- /dev/null +++ b/tests/responses.test.ts @@ -0,0 +1,25 @@ +import { createResponseHeaders } from '~/core'; +import { Headers } from 'node-fetch'; + +describe('response parsing', () => { + // TODO: test unicode characters + test('headers are case agnostic', async () => { + const headers = createResponseHeaders(new Headers({ 'Content-Type': 'foo', Accept: 'text/plain' })); + expect(headers['content-type']).toEqual('foo'); + expect(headers['Content-type']).toEqual('foo'); + expect(headers['Content-Type']).toEqual('foo'); + expect(headers['accept']).toEqual('text/plain'); + expect(headers['Accept']).toEqual('text/plain'); + expect(headers['Hello-World']).toBeUndefined(); + }); + + test('duplicate headers are concatenated', () => { + const headers = createResponseHeaders( + new Headers([ + ['Content-Type', 'text/xml'], + ['Content-Type', 'application/json'], + ]), + ); + expect(headers['content-type']).toBe('text/xml, application/json'); + }); +}); diff --git a/tsconfig.cjs.json b/tsconfig.cjs.json new file mode 100644 index 000000000..d78d65859 --- /dev/null +++ b/tsconfig.cjs.json @@ -0,0 +1,8 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "target": "es2016", + "module": "commonjs", + "outDir": "dist/cjs/" + } +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 000000000..8e82d667f --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,39 @@ +{ + "compilerOptions": { + "target": "es2019", + "lib": ["es2020"], + "module": "commonjs", + "moduleResolution": "node", + "esModuleInterop": true, + "rootDir": "./", + "baseUrl": "./", + "paths": { + "~/*": ["*"], + "digest-fetch": ["./typings/digest-fetch"] + }, + + "declaration": true, + "declarationMap": true, + "outDir": "dist", + "pretty": true, + "sourceMap": true, + "resolveJsonModule": true, + + "forceConsistentCasingInFileNames": true, + + "strict": true, + "noImplicitAny": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "strictBindCallApply": true, + "strictPropertyInitialization": true, + "noImplicitThis": true, + "alwaysStrict": true, + "exactOptionalPropertyTypes": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + "noPropertyAccessFromIndexSignature": true, + + "skipLibCheck": true + } +} diff --git a/typings/digest-fetch/index.d.ts b/typings/digest-fetch/index.d.ts new file mode 100644 index 000000000..f6bcbfda9 --- /dev/null +++ b/typings/digest-fetch/index.d.ts @@ -0,0 +1,33 @@ +declare module 'digest-fetch'; + +import type { RequestInfo, RequestInit, Response } from 'node-fetch'; + +type Algorithm = 'MD5' | 'MD5-sess'; + +type Options = { + algorithm?: Algorithm; + statusCode?: number; + cnonceSize?: number; + basic?: boolean; + precomputeHash?: boolean; + logger?: typeof console; +}; + +class DigestClient { + user: string; + password: string; + + private nonceRaw: string; + private logger?: typeof console; + private precomputedHash?: boolean; + private statusCode?: number; + private basic: boolean; + private cnonceSize: number; + private hasAuth: boolean; + private digest: { nc: number; algorithm: Algorithm; realm: string }; + + constructor(user: string, password: string, options: Options = {}); + async fetch(url: RequestInfo, options: RequestInit = {}): Promise; +} + +export default DigestClient; diff --git a/version.ts b/version.ts new file mode 100644 index 000000000..470bb9184 --- /dev/null +++ b/version.ts @@ -0,0 +1 @@ +export const VERSION = 'v4.0.0-beta.0'; diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 000000000..e208334c3 --- /dev/null +++ b/yarn.lock @@ -0,0 +1,4118 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@ampproject/remapping@^2.1.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" + integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== + dependencies: + "@jridgewell/gen-mapping" "^0.1.0" + "@jridgewell/trace-mapping" "^0.3.9" + +"@angular/compiler@12.2.16": + version "12.2.16" + resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-12.2.16.tgz#1aa9b3fbd3fe900118ab371d30c090fbc137a15f" + integrity sha512-nsYEw+yu8QyeqPf9nAmG419i1mtGM4v8+U+S3eQHQFXTgJzLymMykWHYu2ETdjUpNSLK6xcIQDBWtWnWSfJjAA== + dependencies: + tslib "^2.2.0" + +"@babel/code-frame@7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" + integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== + dependencies: + "@babel/highlight" "^7.18.6" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789" + integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg== + dependencies: + "@babel/highlight" "^7.16.7" + +"@babel/compat-data@^7.17.10": + version "7.17.10" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.17.10.tgz#711dc726a492dfc8be8220028b1b92482362baab" + integrity sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw== + +"@babel/core@^7.11.6", "@babel/core@^7.12.3": + version "7.17.10" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.17.10.tgz#74ef0fbf56b7dfc3f198fc2d927f4f03e12f4b05" + integrity sha512-liKoppandF3ZcBnIYFjfSDHZLKdLHGJRkoWtG8zQyGJBQfIYobpnVGI5+pLBNtS6psFLDzyq8+h5HiVljW9PNA== + dependencies: + "@ampproject/remapping" "^2.1.0" + "@babel/code-frame" "^7.16.7" + "@babel/generator" "^7.17.10" + "@babel/helper-compilation-targets" "^7.17.10" + "@babel/helper-module-transforms" "^7.17.7" + "@babel/helpers" "^7.17.9" + "@babel/parser" "^7.17.10" + "@babel/template" "^7.16.7" + "@babel/traverse" "^7.17.10" + "@babel/types" "^7.17.10" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.1" + semver "^6.3.0" + +"@babel/generator@^7.17.10", "@babel/generator@^7.7.2": + version "7.17.10" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.17.10.tgz#c281fa35b0c349bbe9d02916f4ae08fc85ed7189" + integrity sha512-46MJZZo9y3o4kmhBVc7zW7i8dtR1oIK/sdO5NcfcZRhTGYi+KKJRtHNgsU6c4VUcJmUNV/LQdebD/9Dlv4K+Tg== + dependencies: + "@babel/types" "^7.17.10" + "@jridgewell/gen-mapping" "^0.1.0" + jsesc "^2.5.1" + +"@babel/helper-compilation-targets@^7.17.10": + version "7.17.10" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.10.tgz#09c63106d47af93cf31803db6bc49fef354e2ebe" + integrity sha512-gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ== + dependencies: + "@babel/compat-data" "^7.17.10" + "@babel/helper-validator-option" "^7.16.7" + browserslist "^4.20.2" + semver "^6.3.0" + +"@babel/helper-environment-visitor@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz#ff484094a839bde9d89cd63cba017d7aae80ecd7" + integrity sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag== + dependencies: + "@babel/types" "^7.16.7" + +"@babel/helper-function-name@^7.17.9": + version "7.17.9" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz#136fcd54bc1da82fcb47565cf16fd8e444b1ff12" + integrity sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg== + dependencies: + "@babel/template" "^7.16.7" + "@babel/types" "^7.17.0" + +"@babel/helper-hoist-variables@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz#86bcb19a77a509c7b77d0e22323ef588fa58c246" + integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg== + dependencies: + "@babel/types" "^7.16.7" + +"@babel/helper-module-imports@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437" + integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg== + dependencies: + "@babel/types" "^7.16.7" + +"@babel/helper-module-transforms@^7.17.7": + version "7.17.7" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.17.7.tgz#3943c7f777139e7954a5355c815263741a9c1cbd" + integrity sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw== + dependencies: + "@babel/helper-environment-visitor" "^7.16.7" + "@babel/helper-module-imports" "^7.16.7" + "@babel/helper-simple-access" "^7.17.7" + "@babel/helper-split-export-declaration" "^7.16.7" + "@babel/helper-validator-identifier" "^7.16.7" + "@babel/template" "^7.16.7" + "@babel/traverse" "^7.17.3" + "@babel/types" "^7.17.0" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.8.0": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz#aa3a8ab4c3cceff8e65eb9e73d87dc4ff320b2f5" + integrity sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA== + +"@babel/helper-simple-access@^7.17.7": + version "7.17.7" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz#aaa473de92b7987c6dfa7ce9a7d9674724823367" + integrity sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA== + dependencies: + "@babel/types" "^7.17.0" + +"@babel/helper-split-export-declaration@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b" + integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw== + dependencies: + "@babel/types" "^7.16.7" + +"@babel/helper-validator-identifier@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" + integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== + +"@babel/helper-validator-identifier@^7.18.6": + version "7.19.1" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" + integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== + +"@babel/helper-validator-option@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23" + integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ== + +"@babel/helpers@^7.17.9": + version "7.17.9" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.17.9.tgz#b2af120821bfbe44f9907b1826e168e819375a1a" + integrity sha512-cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q== + dependencies: + "@babel/template" "^7.16.7" + "@babel/traverse" "^7.17.9" + "@babel/types" "^7.17.0" + +"@babel/highlight@^7.16.7": + version "7.17.9" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.17.9.tgz#61b2ee7f32ea0454612def4fccdae0de232b73e3" + integrity sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg== + dependencies: + "@babel/helper-validator-identifier" "^7.16.7" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/highlight@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" + integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== + dependencies: + "@babel/helper-validator-identifier" "^7.18.6" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/parser@7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.7.tgz#66fe23b3c8569220817d5feb8b9dcdc95bb4f71b" + integrity sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg== + +"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.7", "@babel/parser@^7.17.10": + version "7.17.10" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.17.10.tgz#873b16db82a8909e0fbd7f115772f4b739f6ce78" + integrity sha512-n2Q6i+fnJqzOaq2VkdXxy2TCPCWQZHiCo0XqmrCvDWcZQKRyZzYi4Z0yxlBuN0w+r2ZHmre+Q087DSrw3pbJDQ== + +"@babel/plugin-syntax-async-generators@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-bigint@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" + integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.8.3": + version "7.12.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-import-meta@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-json-strings@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-logical-assignment-operators@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-top-level-await@^7.8.3": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-typescript@^7.7.2": + version "7.17.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.17.10.tgz#80031e6042cad6a95ed753f672ebd23c30933195" + integrity sha512-xJefea1DWXW09pW4Tm9bjwVlPDyYA2it3fWlmEjpYz6alPvTUjL0EOzNzI/FEOyI3r4/J7uVH5UqKgl1TQ5hqQ== + dependencies: + "@babel/helper-plugin-utils" "^7.16.7" + +"@babel/template@^7.16.7", "@babel/template@^7.3.3": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.7.tgz#8d126c8701fde4d66b264b3eba3d96f07666d155" + integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w== + dependencies: + "@babel/code-frame" "^7.16.7" + "@babel/parser" "^7.16.7" + "@babel/types" "^7.16.7" + +"@babel/traverse@^7.17.10", "@babel/traverse@^7.17.3", "@babel/traverse@^7.17.9", "@babel/traverse@^7.7.2": + version "7.17.10" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.17.10.tgz#1ee1a5ac39f4eac844e6cf855b35520e5eb6f8b5" + integrity sha512-VmbrTHQteIdUUQNTb+zE12SHS/xQVIShmBPhlNP12hD5poF2pbITW1Z4172d03HegaQWhLffdkRJYtAzp0AGcw== + dependencies: + "@babel/code-frame" "^7.16.7" + "@babel/generator" "^7.17.10" + "@babel/helper-environment-visitor" "^7.16.7" + "@babel/helper-function-name" "^7.17.9" + "@babel/helper-hoist-variables" "^7.16.7" + "@babel/helper-split-export-declaration" "^7.16.7" + "@babel/parser" "^7.17.10" + "@babel/types" "^7.17.10" + debug "^4.1.0" + globals "^11.1.0" + +"@babel/types@^7.0.0", "@babel/types@^7.16.7", "@babel/types@^7.17.0", "@babel/types@^7.17.10", "@babel/types@^7.3.0", "@babel/types@^7.3.3": + version "7.17.10" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.17.10.tgz#d35d7b4467e439fcf06d195f8100e0fea7fc82c4" + integrity sha512-9O26jG0mBYfGkUYCYZRnBwbVLd1UZOICEr2Em6InB6jVfsAv1GKgwXHmrSg+WFWDmeKTA6vyTZiN8tCSM5Oo3A== + dependencies: + "@babel/helper-validator-identifier" "^7.16.7" + to-fast-properties "^2.0.0" + +"@bcoe/v8-coverage@^0.2.3": + version "0.2.3" + resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" + integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== + +"@cspotcode/source-map-consumer@0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@cspotcode/source-map-consumer/-/source-map-consumer-0.8.0.tgz#33bf4b7b39c178821606f669bbc447a6a629786b" + integrity sha512-41qniHzTU8yAGbCp04ohlmSrZf8bkf/iJsl3V0dRGsQN/5GFfx+LbCSsCpp2gqrqjTVg/K6O8ycoV35JIwAzAg== + +"@cspotcode/source-map-support@0.7.0": + version "0.7.0" + resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.7.0.tgz#4789840aa859e46d2f3173727ab707c66bf344f5" + integrity sha512-X4xqRHqN8ACt2aHVe51OxeA2HjbcL4MqFqXkrmQszJ1NOUuUu5u6Vqx/0lZSVNku7velL5FC/s5uEAj1lsBMhA== + dependencies: + "@cspotcode/source-map-consumer" "0.8.0" + +"@eslint/eslintrc@^1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.0.tgz#29f92c30bb3e771e4a2048c95fa6855392dfac4f" + integrity sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw== + dependencies: + ajv "^6.12.4" + debug "^4.3.2" + espree "^9.3.2" + globals "^13.15.0" + ignore "^5.2.0" + import-fresh "^3.2.1" + js-yaml "^4.1.0" + minimatch "^3.1.2" + strip-json-comments "^3.1.1" + +"@glimmer/env@0.1.7": + version "0.1.7" + resolved "https://registry.yarnpkg.com/@glimmer/env/-/env-0.1.7.tgz#fd2d2b55a9029c6b37a6c935e8c8871ae70dfa07" + integrity sha512-JKF/a9I9jw6fGoz8kA7LEQslrwJ5jms5CXhu/aqkBWk+PmZ6pTl8mlb/eJ/5ujBGTiQzBhy5AIWF712iA+4/mw== + +"@glimmer/interfaces@0.84.2": + version "0.84.2" + resolved "https://registry.yarnpkg.com/@glimmer/interfaces/-/interfaces-0.84.2.tgz#764cf92c954adcd1a851e5dc68ec1f6b654dc3bd" + integrity sha512-tMZxQpOddUVmHEOuripkNqVR7ba0K4doiYnFd4WyswqoHPlxqpBujbIamQ+bWCWEF0U4yxsXKa31ekS/JHkiBQ== + dependencies: + "@simple-dom/interface" "^1.4.0" + +"@glimmer/syntax@0.84.2": + version "0.84.2" + resolved "https://registry.yarnpkg.com/@glimmer/syntax/-/syntax-0.84.2.tgz#a3f65e51eec20f6adb79c6159d1ad1166fa5bccd" + integrity sha512-SPBd1tpIR9XeaXsXsMRCnKz63eLnIZ0d5G9QC4zIBFBC3pQdtG0F5kWeuRVCdfTIFuR+5WBMfk5jvg+3gbQhjg== + dependencies: + "@glimmer/interfaces" "0.84.2" + "@glimmer/util" "0.84.2" + "@handlebars/parser" "~2.0.0" + simple-html-tokenizer "^0.5.11" + +"@glimmer/util@0.84.2": + version "0.84.2" + resolved "https://registry.yarnpkg.com/@glimmer/util/-/util-0.84.2.tgz#2711ba40f25f44b2ea309cad49f5c2622c6211bc" + integrity sha512-VbhzE2s4rmU+qJF3gGBTL1IDjq+/G2Th51XErS8MQVMCmE4CU2pdwSzec8PyOowqCGUOrVIWuMzEI6VoPM4L4w== + dependencies: + "@glimmer/env" "0.1.7" + "@glimmer/interfaces" "0.84.2" + "@simple-dom/interface" "^1.4.0" + +"@handlebars/parser@~2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@handlebars/parser/-/parser-2.0.0.tgz#5e8b7298f31ff8f7b260e6b7363c7e9ceed7d9c5" + integrity sha512-EP9uEDZv/L5Qh9IWuMUGJRfwhXJ4h1dqKTT4/3+tY0eu7sPis7xh23j61SYUnNF4vqCQvvUXpDo9Bh/+q1zASA== + +"@humanwhocodes/config-array@^0.10.4": + version "0.10.4" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.10.4.tgz#01e7366e57d2ad104feea63e72248f22015c520c" + integrity sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw== + dependencies: + "@humanwhocodes/object-schema" "^1.2.1" + debug "^4.1.1" + minimatch "^3.0.4" + +"@humanwhocodes/gitignore-to-minimatch@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz#316b0a63b91c10e53f242efb4ace5c3b34e8728d" + integrity sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA== + +"@humanwhocodes/object-schema@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" + integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== + +"@iarna/toml@2.2.5": + version "2.2.5" + resolved "https://registry.yarnpkg.com/@iarna/toml/-/toml-2.2.5.tgz#b32366c89b43c6f8cefbdefac778b9c828e3ba8c" + integrity sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg== + +"@istanbuljs/load-nyc-config@^1.0.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" + integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== + dependencies: + camelcase "^5.3.1" + find-up "^4.1.0" + get-package-type "^0.1.0" + js-yaml "^3.13.1" + resolve-from "^5.0.0" + +"@istanbuljs/schema@^0.1.2": + version "0.1.3" + resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" + integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== + +"@jest/console@^28.1.0": + version "28.1.0" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-28.1.0.tgz#db78222c3d3b0c1db82f1b9de51094c2aaff2176" + integrity sha512-tscn3dlJFGay47kb4qVruQg/XWlmvU0xp3EJOjzzY+sBaI+YgwKcvAmTcyYU7xEiLLIY5HCdWRooAL8dqkFlDA== + dependencies: + "@jest/types" "^28.1.0" + "@types/node" "*" + chalk "^4.0.0" + jest-message-util "^28.1.0" + jest-util "^28.1.0" + slash "^3.0.0" + +"@jest/core@^28.1.0": + version "28.1.0" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-28.1.0.tgz#784a1e6ce5358b46fcbdcfbbd93b1b713ed4ea80" + integrity sha512-/2PTt0ywhjZ4NwNO4bUqD9IVJfmFVhVKGlhvSpmEfUCuxYf/3NHcKmRFI+I71lYzbTT3wMuYpETDCTHo81gC/g== + dependencies: + "@jest/console" "^28.1.0" + "@jest/reporters" "^28.1.0" + "@jest/test-result" "^28.1.0" + "@jest/transform" "^28.1.0" + "@jest/types" "^28.1.0" + "@types/node" "*" + ansi-escapes "^4.2.1" + chalk "^4.0.0" + ci-info "^3.2.0" + exit "^0.1.2" + graceful-fs "^4.2.9" + jest-changed-files "^28.0.2" + jest-config "^28.1.0" + jest-haste-map "^28.1.0" + jest-message-util "^28.1.0" + jest-regex-util "^28.0.2" + jest-resolve "^28.1.0" + jest-resolve-dependencies "^28.1.0" + jest-runner "^28.1.0" + jest-runtime "^28.1.0" + jest-snapshot "^28.1.0" + jest-util "^28.1.0" + jest-validate "^28.1.0" + jest-watcher "^28.1.0" + micromatch "^4.0.4" + pretty-format "^28.1.0" + rimraf "^3.0.0" + slash "^3.0.0" + strip-ansi "^6.0.0" + +"@jest/environment@^28.1.0": + version "28.1.0" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-28.1.0.tgz#dedf7d59ec341b9292fcf459fd0ed819eb2e228a" + integrity sha512-S44WGSxkRngzHslhV6RoAExekfF7Qhwa6R5+IYFa81mpcj0YgdBnRSmvHe3SNwOt64yXaE5GG8Y2xM28ii5ssA== + dependencies: + "@jest/fake-timers" "^28.1.0" + "@jest/types" "^28.1.0" + "@types/node" "*" + jest-mock "^28.1.0" + +"@jest/expect-utils@^28.1.0": + version "28.1.0" + resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-28.1.0.tgz#a5cde811195515a9809b96748ae8bcc331a3538a" + integrity sha512-5BrG48dpC0sB80wpeIX5FU6kolDJI4K0n5BM9a5V38MGx0pyRvUBSS0u2aNTdDzmOrCjhOg8pGs6a20ivYkdmw== + dependencies: + jest-get-type "^28.0.2" + +"@jest/expect@^28.1.0": + version "28.1.0" + resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-28.1.0.tgz#2e5a31db692597070932366a1602b5157f0f217c" + integrity sha512-be9ETznPLaHOmeJqzYNIXv1ADEzENuQonIoobzThOYPuK/6GhrWNIJDVTgBLCrz3Am73PyEU2urQClZp0hLTtA== + dependencies: + expect "^28.1.0" + jest-snapshot "^28.1.0" + +"@jest/fake-timers@^28.1.0": + version "28.1.0" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-28.1.0.tgz#ea77878aabd5c5d50e1fc53e76d3226101e33064" + integrity sha512-Xqsf/6VLeAAq78+GNPzI7FZQRf5cCHj1qgQxCjws9n8rKw8r1UYoeaALwBvyuzOkpU3c1I6emeMySPa96rxtIg== + dependencies: + "@jest/types" "^28.1.0" + "@sinonjs/fake-timers" "^9.1.1" + "@types/node" "*" + jest-message-util "^28.1.0" + jest-mock "^28.1.0" + jest-util "^28.1.0" + +"@jest/globals@^28.1.0": + version "28.1.0" + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-28.1.0.tgz#a4427d2eb11763002ff58e24de56b84ba79eb793" + integrity sha512-3m7sTg52OTQR6dPhsEQSxAvU+LOBbMivZBwOvKEZ+Rb+GyxVnXi9HKgOTYkx/S99T8yvh17U4tNNJPIEQmtwYw== + dependencies: + "@jest/environment" "^28.1.0" + "@jest/expect" "^28.1.0" + "@jest/types" "^28.1.0" + +"@jest/reporters@^28.1.0": + version "28.1.0" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-28.1.0.tgz#5183a28b9b593b6000fa9b89b031c7216b58a9a0" + integrity sha512-qxbFfqap/5QlSpIizH9c/bFCDKsQlM4uAKSOvZrP+nIdrjqre3FmKzpTtYyhsaVcOSNK7TTt2kjm+4BJIjysFA== + dependencies: + "@bcoe/v8-coverage" "^0.2.3" + "@jest/console" "^28.1.0" + "@jest/test-result" "^28.1.0" + "@jest/transform" "^28.1.0" + "@jest/types" "^28.1.0" + "@jridgewell/trace-mapping" "^0.3.7" + "@types/node" "*" + chalk "^4.0.0" + collect-v8-coverage "^1.0.0" + exit "^0.1.2" + glob "^7.1.3" + graceful-fs "^4.2.9" + istanbul-lib-coverage "^3.0.0" + istanbul-lib-instrument "^5.1.0" + istanbul-lib-report "^3.0.0" + istanbul-lib-source-maps "^4.0.0" + istanbul-reports "^3.1.3" + jest-util "^28.1.0" + jest-worker "^28.1.0" + slash "^3.0.0" + string-length "^4.0.1" + strip-ansi "^6.0.0" + terminal-link "^2.0.0" + v8-to-istanbul "^9.0.0" + +"@jest/schemas@^28.0.2": + version "28.0.2" + resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-28.0.2.tgz#08c30df6a8d07eafea0aef9fb222c5e26d72e613" + integrity sha512-YVDJZjd4izeTDkij00vHHAymNXQ6WWsdChFRK86qck6Jpr3DCL5W3Is3vslviRlP+bLuMYRLbdp98amMvqudhA== + dependencies: + "@sinclair/typebox" "^0.23.3" + +"@jest/source-map@^28.0.2": + version "28.0.2" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-28.0.2.tgz#914546f4410b67b1d42c262a1da7e0406b52dc90" + integrity sha512-Y9dxC8ZpN3kImkk0LkK5XCEneYMAXlZ8m5bflmSL5vrwyeUpJfentacCUg6fOb8NOpOO7hz2+l37MV77T6BFPw== + dependencies: + "@jridgewell/trace-mapping" "^0.3.7" + callsites "^3.0.0" + graceful-fs "^4.2.9" + +"@jest/test-result@^28.1.0": + version "28.1.0" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-28.1.0.tgz#fd149dee123510dd2fcadbbf5f0020f98ad7f12c" + integrity sha512-sBBFIyoPzrZho3N+80P35A5oAkSKlGfsEFfXFWuPGBsW40UAjCkGakZhn4UQK4iQlW2vgCDMRDOob9FGKV8YoQ== + dependencies: + "@jest/console" "^28.1.0" + "@jest/types" "^28.1.0" + "@types/istanbul-lib-coverage" "^2.0.0" + collect-v8-coverage "^1.0.0" + +"@jest/test-sequencer@^28.1.0": + version "28.1.0" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-28.1.0.tgz#ce7294bbe986415b9a30e218c7e705e6ebf2cdf2" + integrity sha512-tZCEiVWlWNTs/2iK9yi6o3AlMfbbYgV4uuZInSVdzZ7ftpHZhCMuhvk2HLYhCZzLgPFQ9MnM1YaxMnh3TILFiQ== + dependencies: + "@jest/test-result" "^28.1.0" + graceful-fs "^4.2.9" + jest-haste-map "^28.1.0" + slash "^3.0.0" + +"@jest/transform@^28.1.0": + version "28.1.0" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-28.1.0.tgz#224a3c9ba4cc98e2ff996c0a89a2d59db15c74ce" + integrity sha512-omy2xe5WxlAfqmsTjTPxw+iXRTRnf+NtX0ToG+4S0tABeb4KsKmPUHq5UBuwunHg3tJRwgEQhEp0M/8oiatLEA== + dependencies: + "@babel/core" "^7.11.6" + "@jest/types" "^28.1.0" + "@jridgewell/trace-mapping" "^0.3.7" + babel-plugin-istanbul "^6.1.1" + chalk "^4.0.0" + convert-source-map "^1.4.0" + fast-json-stable-stringify "^2.0.0" + graceful-fs "^4.2.9" + jest-haste-map "^28.1.0" + jest-regex-util "^28.0.2" + jest-util "^28.1.0" + micromatch "^4.0.4" + pirates "^4.0.4" + slash "^3.0.0" + write-file-atomic "^4.0.1" + +"@jest/types@^28.1.0": + version "28.1.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-28.1.0.tgz#508327a89976cbf9bd3e1cc74641a29fd7dfd519" + integrity sha512-xmEggMPr317MIOjjDoZ4ejCSr9Lpbt/u34+dvc99t7DS8YirW5rwZEhzKPC2BMUFkUhI48qs6qLUSGw5FuL0GA== + dependencies: + "@jest/schemas" "^28.0.2" + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^17.0.8" + chalk "^4.0.0" + +"@jridgewell/gen-mapping@^0.1.0": + version "0.1.1" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996" + integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== + dependencies: + "@jridgewell/set-array" "^1.0.0" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@jridgewell/resolve-uri@^3.0.3": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz#30cd49820a962aff48c8fffc5cd760151fca61fe" + integrity sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA== + +"@jridgewell/set-array@^1.0.0": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.1.tgz#36a6acc93987adcf0ba50c66908bd0b70de8afea" + integrity sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.13" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz#b6461fb0c2964356c469e115f504c95ad97ab88c" + integrity sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w== + +"@jridgewell/trace-mapping@^0.3.7", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.10" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.10.tgz#db436f0917d655393851bc258918c00226c9b183" + integrity sha512-Q0YbBd6OTsXm8Y21+YUSDXupHnodNC2M4O18jtd3iwJ3+vMZNdKGols0a9G6JOK0dcJ3IdUUHoh908ZI6qhk8Q== + dependencies: + "@jridgewell/resolve-uri" "^3.0.3" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@simple-dom/interface@^1.4.0": + version "1.4.0" + resolved "https://registry.yarnpkg.com/@simple-dom/interface/-/interface-1.4.0.tgz#e8feea579232017f89b0138e2726facda6fbb71f" + integrity sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA== + +"@sinclair/typebox@^0.23.3": + version "0.23.5" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.23.5.tgz#93f7b9f4e3285a7a9ade7557d9a8d36809cbc47d" + integrity sha512-AFBVi/iT4g20DHoujvMH1aEDn8fGJh4xsRGCP6d8RpLPMqsNPvW01Jcn0QysXTsg++/xj25NmJsGyH9xug/wKg== + +"@sinonjs/commons@^1.7.0": + version "1.8.3" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d" + integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ== + dependencies: + type-detect "4.0.8" + +"@sinonjs/fake-timers@^9.1.1": + version "9.1.2" + resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz#4eaab737fab77332ab132d396a3c0d364bd0ea8c" + integrity sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw== + dependencies: + "@sinonjs/commons" "^1.7.0" + +"@tsconfig/node10@^1.0.7": + version "1.0.8" + resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.8.tgz#c1e4e80d6f964fbecb3359c43bd48b40f7cadad9" + integrity sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg== + +"@tsconfig/node12@^1.0.7": + version "1.0.9" + resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.9.tgz#62c1f6dee2ebd9aead80dc3afa56810e58e1a04c" + integrity sha512-/yBMcem+fbvhSREH+s14YJi18sp7J9jpuhYByADT2rypfajMZZN4WQ6zBGgBKp53NKmqI36wFYDb3yaMPurITw== + +"@tsconfig/node14@^1.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.1.tgz#95f2d167ffb9b8d2068b0b235302fafd4df711f2" + integrity sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg== + +"@tsconfig/node16@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.2.tgz#423c77877d0569db20e1fc80885ac4118314010e" + integrity sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA== + +"@types/babel__core@^7.1.14": + version "7.1.19" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.19.tgz#7b497495b7d1b4812bdb9d02804d0576f43ee460" + integrity sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + "@types/babel__generator" "*" + "@types/babel__template" "*" + "@types/babel__traverse" "*" + +"@types/babel__generator@*": + version "7.6.4" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7" + integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== + dependencies: + "@babel/types" "^7.0.0" + +"@types/babel__template@*": + version "7.4.1" + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" + integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + +"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": + version "7.17.1" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.17.1.tgz#1a0e73e8c28c7e832656db372b779bfd2ef37314" + integrity sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA== + dependencies: + "@babel/types" "^7.3.0" + +"@types/graceful-fs@^4.1.3": + version "4.1.5" + resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" + integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== + dependencies: + "@types/node" "*" + +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" + integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== + +"@types/istanbul-lib-report@*": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" + integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== + dependencies: + "@types/istanbul-lib-coverage" "*" + +"@types/istanbul-reports@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" + integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== + dependencies: + "@types/istanbul-lib-report" "*" + +"@types/jest@^27.5.0": + version "27.5.0" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-27.5.0.tgz#e04ed1824ca6b1dd0438997ba60f99a7405d4c7b" + integrity sha512-9RBFx7r4k+msyj/arpfaa0WOOEcaAZNmN+j80KFbFCoSqCJGHTz7YMAMGQW9Xmqm5w6l5c25vbSjMwlikJi5+g== + dependencies: + jest-matcher-utils "^27.0.0" + pretty-format "^27.0.0" + +"@types/json-schema@^7.0.9": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" + integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== + +"@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== + +"@types/node-fetch@^2.6.1": + version "2.6.1" + resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.1.tgz#8f127c50481db65886800ef496f20bbf15518975" + integrity sha512-oMqjURCaxoSIsHSr1E47QHzbmzNR5rK8McHuNb11BOM9cHcIK3Avy0s/b2JlXHoQGTYS3NsvWzV1M0iK7l0wbA== + dependencies: + "@types/node" "*" + form-data "^3.0.0" + +"@types/node@*": + version "17.0.21" + resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.21.tgz#864b987c0c68d07b4345845c3e63b75edd143644" + integrity sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ== + +"@types/node@^18.11.18": + version "18.11.18" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.18.tgz#8dfb97f0da23c2293e554c5a50d61ef134d7697f" + integrity sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA== + +"@types/parse-json@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" + integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== + +"@types/prettier@^2.1.5": + version "2.6.0" + resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.6.0.tgz#efcbd41937f9ae7434c714ab698604822d890759" + integrity sha512-G/AdOadiZhnJp0jXCaBQU449W2h716OW/EoXeYkCytxKL06X1WCXB4DZpp8TpZ8eyIJVS1cw4lrlkkSYU21cDw== + +"@types/qs@^6.9.7": + version "6.9.7" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" + integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== + +"@types/stack-utils@^2.0.0": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" + integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== + +"@types/unist@^2.0.0", "@types/unist@^2.0.2": + version "2.0.6" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" + integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== + +"@types/yargs-parser@*": + version "21.0.0" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" + integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== + +"@types/yargs@^17.0.8": + version "17.0.10" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.10.tgz#591522fce85d8739bca7b8bb90d048e4478d186a" + integrity sha512-gmEaFwpj/7f/ROdtIlci1R1VYU1J4j95m8T+Tj3iBgiBFKg1foE/PSl93bBd5T9LDXNPo8UlNN6W0qwD8O5OaA== + dependencies: + "@types/yargs-parser" "*" + +"@typescript-eslint/eslint-plugin@^5.33.0": + version "5.33.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.33.0.tgz#059798888720ec52ffa96c5f868e31a8f70fa3ec" + integrity sha512-jHvZNSW2WZ31OPJ3enhLrEKvAZNyAFWZ6rx9tUwaessTc4sx9KmgMNhVcqVAl1ETnT5rU5fpXTLmY9YvC1DCNg== + dependencies: + "@typescript-eslint/scope-manager" "5.33.0" + "@typescript-eslint/type-utils" "5.33.0" + "@typescript-eslint/utils" "5.33.0" + debug "^4.3.4" + functional-red-black-tree "^1.0.1" + ignore "^5.2.0" + regexpp "^3.2.0" + semver "^7.3.7" + tsutils "^3.21.0" + +"@typescript-eslint/parser@^5.33.0": + version "5.33.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.33.0.tgz#26ec3235b74f0667414613727cb98f9b69dc5383" + integrity sha512-cgM5cJrWmrDV2KpvlcSkelTBASAs1mgqq+IUGKJvFxWrapHpaRy5EXPQz9YaKF3nZ8KY18ILTiVpUtbIac86/w== + dependencies: + "@typescript-eslint/scope-manager" "5.33.0" + "@typescript-eslint/types" "5.33.0" + "@typescript-eslint/typescript-estree" "5.33.0" + debug "^4.3.4" + +"@typescript-eslint/scope-manager@5.33.0": + version "5.33.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.33.0.tgz#509d7fa540a2c58f66bdcfcf278a3fa79002e18d" + integrity sha512-/Jta8yMNpXYpRDl8EwF/M8It2A9sFJTubDo0ATZefGXmOqlaBffEw0ZbkbQ7TNDK6q55NPHFshGBPAZvZkE8Pw== + dependencies: + "@typescript-eslint/types" "5.33.0" + "@typescript-eslint/visitor-keys" "5.33.0" + +"@typescript-eslint/type-utils@5.33.0": + version "5.33.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.33.0.tgz#92ad1fba973c078d23767ce2d8d5a601baaa9338" + integrity sha512-2zB8uEn7hEH2pBeyk3NpzX1p3lF9dKrEbnXq1F7YkpZ6hlyqb2yZujqgRGqXgRBTHWIUG3NGx/WeZk224UKlIA== + dependencies: + "@typescript-eslint/utils" "5.33.0" + debug "^4.3.4" + tsutils "^3.21.0" + +"@typescript-eslint/types@5.33.0": + version "5.33.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.33.0.tgz#d41c584831805554b063791338b0220b613a275b" + integrity sha512-nIMt96JngB4MYFYXpZ/3ZNU4GWPNdBbcB5w2rDOCpXOVUkhtNlG2mmm8uXhubhidRZdwMaMBap7Uk8SZMU/ppw== + +"@typescript-eslint/types@5.45.0": + version "5.45.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.45.0.tgz#794760b9037ee4154c09549ef5a96599621109c5" + integrity sha512-QQij+u/vgskA66azc9dCmx+rev79PzX8uDHpsqSjEFtfF2gBUTRCpvYMh2gw2ghkJabNkPlSUCimsyBEQZd1DA== + +"@typescript-eslint/typescript-estree@5.33.0": + version "5.33.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.33.0.tgz#02d9c9ade6f4897c09e3508c27de53ad6bfa54cf" + integrity sha512-tqq3MRLlggkJKJUrzM6wltk8NckKyyorCSGMq4eVkyL5sDYzJJcMgZATqmF8fLdsWrW7OjjIZ1m9v81vKcaqwQ== + dependencies: + "@typescript-eslint/types" "5.33.0" + "@typescript-eslint/visitor-keys" "5.33.0" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" + semver "^7.3.7" + tsutils "^3.21.0" + +"@typescript-eslint/typescript-estree@5.45.0": + version "5.45.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.45.0.tgz#f70a0d646d7f38c0dfd6936a5e171a77f1e5291d" + integrity sha512-maRhLGSzqUpFcZgXxg1qc/+H0bT36lHK4APhp0AEUVrpSwXiRAomm/JGjSG+kNUio5kAa3uekCYu/47cnGn5EQ== + dependencies: + "@typescript-eslint/types" "5.45.0" + "@typescript-eslint/visitor-keys" "5.45.0" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" + semver "^7.3.7" + tsutils "^3.21.0" + +"@typescript-eslint/utils@5.33.0": + version "5.33.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.33.0.tgz#46797461ce3146e21c095d79518cc0f8ec574038" + integrity sha512-JxOAnXt9oZjXLIiXb5ZIcZXiwVHCkqZgof0O8KPgz7C7y0HS42gi75PdPlqh1Tf109M0fyUw45Ao6JLo7S5AHw== + dependencies: + "@types/json-schema" "^7.0.9" + "@typescript-eslint/scope-manager" "5.33.0" + "@typescript-eslint/types" "5.33.0" + "@typescript-eslint/typescript-estree" "5.33.0" + eslint-scope "^5.1.1" + eslint-utils "^3.0.0" + +"@typescript-eslint/visitor-keys@5.33.0": + version "5.33.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.33.0.tgz#fbcbb074e460c11046e067bc3384b5d66b555484" + integrity sha512-/XsqCzD4t+Y9p5wd9HZiptuGKBlaZO5showwqODii5C0nZawxWLF+Q6k5wYHBrQv96h6GYKyqqMHCSTqta8Kiw== + dependencies: + "@typescript-eslint/types" "5.33.0" + eslint-visitor-keys "^3.3.0" + +"@typescript-eslint/visitor-keys@5.45.0": + version "5.45.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.45.0.tgz#e0d160e9e7fdb7f8da697a5b78e7a14a22a70528" + integrity sha512-jc6Eccbn2RtQPr1s7th6jJWQHBHI6GBVQkCHoJFQ5UreaKm59Vxw+ynQUPPY2u2Amquc+7tmEoC2G52ApsGNNg== + dependencies: + "@typescript-eslint/types" "5.45.0" + eslint-visitor-keys "^3.3.0" + +"openai@link:.": + version "0.0.0" + uid "" + +abort-controller@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" + integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== + dependencies: + event-target-shim "^5.0.0" + +acorn-jsx@5.3.2, acorn-jsx@^5.3.2: + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn-walk@^8.1.1: + version "8.2.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" + integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== + +acorn@8.8.1: + version "8.8.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73" + integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA== + +acorn@^8.4.1: + version "8.7.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.0.tgz#90951fde0f8f09df93549481e5fc141445b791cf" + integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ== + +acorn@^8.8.0: + version "8.8.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8" + integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== + +agentkeepalive@^4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.2.1.tgz#a7975cbb9f83b367f06c90cc51ff28fe7d499717" + integrity sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA== + dependencies: + debug "^4.1.0" + depd "^1.1.2" + humanize-ms "^1.2.1" + +ajv@^6.10.0, ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +angular-estree-parser@2.5.1: + version "2.5.1" + resolved "https://registry.yarnpkg.com/angular-estree-parser/-/angular-estree-parser-2.5.1.tgz#a08791f64f1a9453ecb99be5379f7f282e46c6ca" + integrity sha512-QP+1HEp9sUV3/ADU02IRc+Vn9vvWZS2rRkxiXCpSpZZx3BqcYTm2Eg/gWwLG3H9XASXnf9i1KyNOIYyRy5Ja+w== + dependencies: + lines-and-columns "^1.1.6" + tslib "^2.0.3" + +angular-html-parser@1.8.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/angular-html-parser/-/angular-html-parser-1.8.0.tgz#bd315b74e8069135a046902078c73d959d1cc51c" + integrity sha512-n5ZowjJJs1OPG3DHDSyUXZvscQzy7uQG227ncL1NzbJEPzfb2XtBZ9qT0PW7cbD7MViho3ijawXoRLCM0ih1rw== + dependencies: + tslib "^1.9.3" + +ansi-escapes@^4.2.1: + version "4.3.2" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-regex@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" + integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +ansi-styles@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" + integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== + +anymatch@^3.0.3, anymatch@~3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" + integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +arg@^4.1.0: + version "4.1.3" + resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= + +babel-jest@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-28.1.0.tgz#95a67f8e2e7c0042e7b3ad3951b8af41a533b5ea" + integrity sha512-zNKk0yhDZ6QUwfxh9k07GII6siNGMJWVUU49gmFj5gfdqDKLqa2RArXOF2CODp4Dr7dLxN2cvAV+667dGJ4b4w== + dependencies: + "@jest/transform" "^28.1.0" + "@types/babel__core" "^7.1.14" + babel-plugin-istanbul "^6.1.1" + babel-preset-jest "^28.0.2" + chalk "^4.0.0" + graceful-fs "^4.2.9" + slash "^3.0.0" + +babel-plugin-istanbul@^6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" + integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@istanbuljs/load-nyc-config" "^1.0.0" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-instrument "^5.0.4" + test-exclude "^6.0.0" + +babel-plugin-jest-hoist@^28.0.2: + version "28.0.2" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-28.0.2.tgz#9307d03a633be6fc4b1a6bc5c3a87e22bd01dd3b" + integrity sha512-Kizhn/ZL+68ZQHxSnHyuvJv8IchXD62KQxV77TBDV/xoBFBOfgRAk97GNs6hXdTTCiVES9nB2I6+7MXXrk5llQ== + dependencies: + "@babel/template" "^7.3.3" + "@babel/types" "^7.3.3" + "@types/babel__core" "^7.1.14" + "@types/babel__traverse" "^7.0.6" + +babel-preset-current-node-syntax@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" + integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== + dependencies: + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-bigint" "^7.8.3" + "@babel/plugin-syntax-class-properties" "^7.8.3" + "@babel/plugin-syntax-import-meta" "^7.8.3" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.8.3" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-top-level-await" "^7.8.3" + +babel-preset-jest@^28.0.2: + version "28.0.2" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-28.0.2.tgz#d8210fe4e46c1017e9fa13d7794b166e93aa9f89" + integrity sha512-sYzXIdgIXXroJTFeB3S6sNDWtlJ2dllCdTEsnZ65ACrMojj3hVNFRmnJ1HZtomGi+Be7aqpY/HJ92fr8OhKVkQ== + dependencies: + babel-plugin-jest-hoist "^28.0.2" + babel-preset-current-node-syntax "^1.0.0" + +bail@^1.0.0: + version "1.0.5" + resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776" + integrity sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ== + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base-64@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb" + integrity sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA== + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^3.0.2, braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +browserslist@^4.20.2: + version "4.20.3" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.20.3.tgz#eb7572f49ec430e054f56d52ff0ebe9be915f8bf" + integrity sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg== + dependencies: + caniuse-lite "^1.0.30001332" + electron-to-chromium "^1.4.118" + escalade "^3.1.1" + node-releases "^2.0.3" + picocolors "^1.0.0" + +bs-logger@0.x: + version "0.2.6" + resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" + integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== + dependencies: + fast-json-stable-stringify "2.x" + +bser@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== + dependencies: + node-int64 "^0.4.0" + +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +call-bind@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase@6.3.0, camelcase@^6.2.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +caniuse-lite@^1.0.30001332: + version "1.0.30001338" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001338.tgz#b5dd7a7941a51a16480bdf6ff82bded1628eec0d" + integrity sha512-1gLHWyfVoRDsHieO+CaeYe7jSo/MT7D7lhaXUiwwbuR5BwQxORs0f1tAwUSQr3YbxRXJvxHM/PA5FfPQRnsPeQ== + +ccount@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.1.0.tgz#246687debb6014735131be8abab2d93898f8d043" + integrity sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg== + +chalk@5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.0.1.tgz#ca57d71e82bb534a296df63bbacc4a1c22b2a4b6" + integrity sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w== + +chalk@^2.0.0, chalk@^2.4.1: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^4.0.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +char-regex@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" + integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== + +character-entities-legacy@^1.0.0: + version "1.1.4" + resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1" + integrity sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA== + +character-entities@^1.0.0: + version "1.2.4" + resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.4.tgz#e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b" + integrity sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw== + +character-reference-invalid@^1.0.0: + version "1.1.4" + resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560" + integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg== + +charenc@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" + integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA== + +chokidar@^3.5.3: + version "3.5.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +ci-info@3.3.0, ci-info@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.3.0.tgz#b4ed1fb6818dea4803a55c623041f9165d2066b2" + integrity sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw== + +cjk-regex@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/cjk-regex/-/cjk-regex-2.0.1.tgz#98cca187aa67931db14f0d9dde556150c8116d95" + integrity sha512-4YTL4Zxzy33EhD2YMBQg6qavT+3OrYYu45RHcLANXhbVTXmVcwNQIv0vL1TUWjOS7bH0n0dVcGAdJAGzWSAa3A== + dependencies: + regexp-util "^1.2.1" + unicode-regex "^2.0.0" + +cjs-module-lexer@^1.0.0: + version "1.2.2" + resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" + integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== + +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +clone@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== + +co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= + +collapse-white-space@1.0.6, collapse-white-space@^1.0.2: + version "1.0.6" + resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.6.tgz#e63629c0016665792060dbbeb79c42239d2c5287" + integrity sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ== + +collect-v8-coverage@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" + integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +combined-stream@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +commander@^2.19.0: + version "2.20.3" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +commander@^9.0.0: + version "9.3.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-9.3.0.tgz#f619114a5a2d2054e0d9ff1b31d5ccf89255e26b" + integrity sha512-hv95iU5uXPbK83mjrJKuZyFM/LBAoCV/XhVGkS5Je6tl7sxr6A0ITMw5WoRV46/UaJ46Nllm3Xt7IaJhXTIkzw== + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= + +convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" + integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== + dependencies: + safe-buffer "~5.1.1" + +cosmiconfig@7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d" + integrity sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.2.1" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.10.0" + +create-require@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" + integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== + +cross-spawn@^7.0.2, cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypt@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" + integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow== + +css-units-list@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/css-units-list/-/css-units-list-1.1.0.tgz#46cfb7022c9eb626d9a62589372b8439e1ddb91e" + integrity sha512-WnbCcmr1rHeUb5JbpIWyBjH0HiW6RIZRujOzVvwyE2aZGqtjLFUfiqB9nYmAPlYHNgvqvjhX8YeJv0uF25QoHg== + +dashify@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dashify/-/dashify-2.0.0.tgz#fff270ca2868ca427fee571de35691d6e437a648" + integrity sha512-hpA5C/YrPjucXypHPPc0oJ1l9Hf6wWbiOL7Ik42cxnsUOhWiCB/fylKbKqqJalW9FgkNQCw16YO8uW9Hs0Iy1A== + +debug@^4.1.0: + version "4.3.3" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" + integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== + dependencies: + ms "2.1.2" + +debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +dedent@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" + integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= + +deep-is@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +deepmerge@^4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" + integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== + +defaults@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" + integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== + dependencies: + clone "^1.0.2" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= + +depd@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= + +detect-newline@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" + integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== + +diff-sequences@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.5.1.tgz#eaecc0d327fd68c8d9672a1e64ab8dccb2ef5327" + integrity sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ== + +diff-sequences@^28.0.2: + version "28.0.2" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-28.0.2.tgz#40f8d4ffa081acbd8902ba35c798458d0ff1af41" + integrity sha512-YtEoNynLDFCRznv/XDalsKGSZDoj0U5kLnXvY0JSq3nBboRrZXjD81+eSiwi+nzcZDwedMmcowcxNwwgFW23mQ== + +diff@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" + integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== + +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + +digest-fetch@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/digest-fetch/-/digest-fetch-1.3.0.tgz#898e69264d00012a23cf26e8a3e40320143fc661" + integrity sha512-CGJuv6iKNM7QyZlM2T3sPAdZWd/p9zQiRNS9G+9COUCwzWFTs0Xp8NF5iePx7wtvhDykReiRRrSeNb4oMmB8lA== + dependencies: + base-64 "^0.1.0" + md5 "^2.3.0" + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +editorconfig-to-prettier@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/editorconfig-to-prettier/-/editorconfig-to-prettier-0.2.0.tgz#db4f4e96796c746673c863ccac881377ea83dbe8" + integrity sha512-tOcbAuPyYE9zOA1HF2xI9Xqm2TW7BE9E2lhwbz69ngtaJrBWQwL6akzyWA+UPx8jRss91KXMChyjHNpqaYFWuQ== + +editorconfig@0.15.3: + version "0.15.3" + resolved "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.15.3.tgz#bef84c4e75fb8dcb0ce5cee8efd51c15999befc5" + integrity sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g== + dependencies: + commander "^2.19.0" + lru-cache "^4.1.5" + semver "^5.6.0" + sigmund "^1.0.1" + +electron-to-chromium@^1.4.118: + version "1.4.137" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.137.tgz#186180a45617283f1c012284458510cd99d6787f" + integrity sha512-0Rcpald12O11BUogJagX3HsCN3FE83DSqWjgXoHo5a72KUKMSfI39XBgJpgNNxS9fuGzytaFjE06kZkiVFy2qA== + +emittery@^0.10.2: + version "0.10.2" + resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.10.2.tgz#902eec8aedb8c41938c46e9385e9db7e03182933" + integrity sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw== + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +emoji-regex@^9.2.2: + version "9.2.2" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" + integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz#4683126b500b61762f2dbebace1806e8be31b1c8" + integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= + +escape-string-regexp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" + integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== + +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +eslint-plugin-unused-imports@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-unused-imports/-/eslint-plugin-unused-imports-2.0.0.tgz#d8db8c4d0cfa0637a8b51ce3fd7d1b6bc3f08520" + integrity sha512-3APeS/tQlTrFa167ThtP0Zm0vctjr4M44HMpeg1P4bK6wItarumq0Ma82xorMKdFsWpphQBlRPzw/pxiVELX1A== + dependencies: + eslint-rule-composer "^0.3.0" + +eslint-rule-composer@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/eslint-rule-composer/-/eslint-rule-composer-0.3.0.tgz#79320c927b0c5c0d3d3d2b76c8b4a488f25bbaf9" + integrity sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg== + +eslint-scope@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +eslint-scope@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" + integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== + dependencies: + esrecurse "^4.3.0" + estraverse "^5.2.0" + +eslint-utils@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" + integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== + dependencies: + eslint-visitor-keys "^2.0.0" + +eslint-visitor-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" + integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== + +eslint-visitor-keys@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" + integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== + +eslint@^8.22.0: + version "8.22.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.22.0.tgz#78fcb044196dfa7eef30a9d65944f6f980402c48" + integrity sha512-ci4t0sz6vSRKdmkOGmprBo6fmI4PrphDFMy5JEq/fNS0gQkJM3rLmrqcp8ipMcdobH3KtUP40KniAE9W19S4wA== + dependencies: + "@eslint/eslintrc" "^1.3.0" + "@humanwhocodes/config-array" "^0.10.4" + "@humanwhocodes/gitignore-to-minimatch" "^1.0.2" + ajv "^6.10.0" + chalk "^4.0.0" + cross-spawn "^7.0.2" + debug "^4.3.2" + doctrine "^3.0.0" + escape-string-regexp "^4.0.0" + eslint-scope "^7.1.1" + eslint-utils "^3.0.0" + eslint-visitor-keys "^3.3.0" + espree "^9.3.3" + esquery "^1.4.0" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" + find-up "^5.0.0" + functional-red-black-tree "^1.0.1" + glob-parent "^6.0.1" + globals "^13.15.0" + globby "^11.1.0" + grapheme-splitter "^1.0.4" + ignore "^5.2.0" + import-fresh "^3.0.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + js-yaml "^4.1.0" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.4.1" + lodash.merge "^4.6.2" + minimatch "^3.1.2" + natural-compare "^1.4.0" + optionator "^0.9.1" + regexpp "^3.2.0" + strip-ansi "^6.0.1" + strip-json-comments "^3.1.0" + text-table "^0.2.0" + v8-compile-cache "^2.0.3" + +espree@9.4.1: + version "9.4.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.1.tgz#51d6092615567a2c2cff7833445e37c28c0065bd" + integrity sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg== + dependencies: + acorn "^8.8.0" + acorn-jsx "^5.3.2" + eslint-visitor-keys "^3.3.0" + +espree@^9.3.2, espree@^9.3.3: + version "9.3.3" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.3.tgz#2dd37c4162bb05f433ad3c1a52ddf8a49dc08e9d" + integrity sha512-ORs1Rt/uQTqUKjDdGCyrtYxbazf5umATSf/K4qxjmZHORR6HJk+2s/2Pqe+Kk49HHINC/xNIrGfgh8sZcll0ng== + dependencies: + acorn "^8.8.0" + acorn-jsx "^5.3.2" + eslint-visitor-keys "^3.3.0" + +esprima@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esquery@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" + integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1: + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.1.0, estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +esutils@2.0.3, esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +event-target-shim@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" + integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== + +execa@^5.0.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.0" + human-signals "^2.1.0" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.1" + onetime "^5.1.2" + signal-exit "^3.0.3" + strip-final-newline "^2.0.0" + +exit@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" + integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= + +expect@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/expect/-/expect-28.1.0.tgz#10e8da64c0850eb8c39a480199f14537f46e8360" + integrity sha512-qFXKl8Pmxk8TBGfaFKRtcQjfXEnKAs+dmlxdwvukJZorwrAabT7M3h8oLOG01I2utEhkmUTi17CHaPBovZsKdw== + dependencies: + "@jest/expect-utils" "^28.1.0" + jest-get-type "^28.0.2" + jest-matcher-utils "^28.1.0" + jest-message-util "^28.1.0" + jest-util "^28.1.0" + +extend@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-glob@3.2.12: + version "3.2.12" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" + integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-glob@^3.2.9: + version "3.2.11" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9" + integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-json-stable-stringify@2.1.0, fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fastq@^1.6.0: + version "1.13.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" + integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== + dependencies: + reusify "^1.0.4" + +fb-watchman@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" + integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== + dependencies: + bser "2.1.1" + +file-entry-cache@6.0.1, file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-cache-dir@3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" + integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== + dependencies: + commondir "^1.0.1" + make-dir "^3.0.2" + pkg-dir "^4.1.0" + +find-parent-dir@0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.1.tgz#c5c385b96858c3351f95d446cab866cbf9f11125" + integrity sha512-o4UcykWV/XN9wm+jMEtWLPlV8RXCZnMhQI6F6OdHeSez7iiJWePw8ijOlskJZMsaQoGR/b7dH6lO02HhaTN7+A== + +find-up@^4.0.0, find-up@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +flat-cache@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + dependencies: + flatted "^3.1.0" + rimraf "^3.0.2" + +flatted@^3.1.0: + version "3.2.6" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.6.tgz#022e9218c637f9f3fc9c35ab9c9193f05add60b2" + integrity sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ== + +flatten@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.3.tgz#c1283ac9f27b368abc1e36d1ff7b04501a30356b" + integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg== + +flow-parser@0.180.0: + version "0.180.0" + resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.180.0.tgz#05d49a88715ceca0457607499a018e2bf5908d72" + integrity sha512-kkzsuGAhckWgn/G+JfCyEa6BYslGrjlH4CJL0LZhdn9of9ukvi7SzVQSFsrEhuhh/zQUghfUEoaeZy1wjQXpUg== + +form-data-encoder@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-1.7.2.tgz#1f1ae3dccf58ed4690b86d87e4f57c654fbab040" + integrity sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A== + +form-data@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" + integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +formdata-node@^4.3.2: + version "4.3.3" + resolved "https://registry.yarnpkg.com/formdata-node/-/formdata-node-4.3.3.tgz#21415225be66e2c87a917bfc0fedab30a119c23c" + integrity sha512-coTew7WODO2vF+XhpUdmYz4UBvlsiTMSNaFYZlrXIqYbFd4W7bMwnoALNLE6uvNgzTg2j1JDF0ZImEfF06VPAA== + dependencies: + node-domexception "1.0.0" + web-streams-polyfill "4.0.0-beta.1" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= + +fsevents@^2.3.2, fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== + +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-intrinsic@^1.0.2: + version "1.1.1" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" + integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.1" + +get-package-type@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" + integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== + +get-stdin@8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53" + integrity sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg== + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-parent@^6.0.1: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +glob@^7.1.3, glob@^7.1.4: + version "7.2.0" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" + integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +globals@^13.15.0: + version "13.17.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4" + integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw== + dependencies: + type-fest "^0.20.2" + +globby@^11.0.4, globby@^11.1.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.2.9" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^3.0.0" + +graceful-fs@^4.2.9: + version "4.2.10" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" + integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== + +grapheme-splitter@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" + integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== + +graphql@15.6.1: + version "15.6.1" + resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.6.1.tgz#9125bdf057553525da251e19e96dab3d3855ddfc" + integrity sha512-3i5lu0z6dRvJ48QP9kFxBkJ7h4Kso7PS8eahyTFz5Jm6CvQfLtNIE8LX9N6JLnXTuwR+sIYnXzaWp6anOg0QQw== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-symbols@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +html-element-attributes@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/html-element-attributes/-/html-element-attributes-3.1.0.tgz#07869037b9020bec3bb1897263e97dd65829d15b" + integrity sha512-cHM9qM06tyWHwvGqDqVEBwoYtGgyq7X/GQt3dor38M1hYMZw1yVadaDQrwwQer6NefiYAoHaqFARI8ETMCAOYA== + +html-escaper@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" + integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== + +html-styles@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/html-styles/-/html-styles-1.0.0.tgz#a18061fd651f99c6b75c45c8e0549a3bc3e01a75" + integrity sha512-cDl5dcj73oI4Hy0DSUNh54CAwslNLJRCCoO+RNkVo+sBrjA/0+7E/xzvj3zH/GxbbBLGJhE0hBe1eg+0FINC6w== + +html-tag-names@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/html-tag-names/-/html-tag-names-2.0.1.tgz#5626263e7d7b15789fa35a9f816234156901adc6" + integrity sha512-PX8KyLG7dwsjis3NPj1u+/EJf2CgH2d+qzekQpnlCOPQ6Uu6T8+F2ZqQg+wtsP+WKhxK3QMN9Garcwr7fCRhxA== + +html-void-elements@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-2.0.1.tgz#29459b8b05c200b6c5ee98743c41b979d577549f" + integrity sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A== + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +humanize-ms@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" + integrity sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0= + dependencies: + ms "^2.0.0" + +ignore@5.2.0, ignore@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" + integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== + +import-fresh@^3.0.0, import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +import-local@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" + integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== + dependencies: + pkg-dir "^4.2.0" + resolve-cwd "^3.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= + +indexes-of@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" + integrity sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +is-alphabetical@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d" + integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg== + +is-alphanumerical@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf" + integrity sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A== + dependencies: + is-alphabetical "^1.0.0" + is-decimal "^1.0.0" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-buffer@^2.0.0: + version "2.0.5" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" + integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== + +is-buffer@~1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + +is-core-module@^2.8.1: + version "2.9.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.9.0.tgz#e1c34429cd51c6dd9e09e0799e396e27b19a9c69" + integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A== + dependencies: + has "^1.0.3" + +is-core-module@^2.9.0: + version "2.11.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" + integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== + dependencies: + has "^1.0.3" + +is-decimal@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5" + integrity sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw== + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-fullwidth-code-point@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz#fae3167c729e7463f8461ce512b080a49268aa88" + integrity sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ== + +is-generator-fn@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" + integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-hexadecimal@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7" + integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw== + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-plain-obj@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" + integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-whitespace-character@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz#0858edd94a95594c7c9dd0b5c174ec6e45ee4aa7" + integrity sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w== + +is-word-character@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-word-character/-/is-word-character-1.0.4.tgz#ce0e73216f98599060592f62ff31354ddbeb0230" + integrity sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + +istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" + integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== + +istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz#31d18bdd127f825dd02ea7bfdfd906f8ab840e9f" + integrity sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A== + dependencies: + "@babel/core" "^7.12.3" + "@babel/parser" "^7.14.7" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-coverage "^3.2.0" + semver "^6.3.0" + +istanbul-lib-report@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" + integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== + dependencies: + istanbul-lib-coverage "^3.0.0" + make-dir "^3.0.0" + supports-color "^7.1.0" + +istanbul-lib-source-maps@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" + integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== + dependencies: + debug "^4.1.1" + istanbul-lib-coverage "^3.0.0" + source-map "^0.6.1" + +istanbul-reports@^3.1.3: + version "3.1.4" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.4.tgz#1b6f068ecbc6c331040aab5741991273e609e40c" + integrity sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw== + dependencies: + html-escaper "^2.0.0" + istanbul-lib-report "^3.0.0" + +jest-changed-files@^28.0.2: + version "28.0.2" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-28.0.2.tgz#7d7810660a5bd043af9e9cfbe4d58adb05e91531" + integrity sha512-QX9u+5I2s54ZnGoMEjiM2WeBvJR2J7w/8ZUmH2um/WLAuGAYFQcsVXY9+1YL6k0H/AGUdH8pXUAv6erDqEsvIA== + dependencies: + execa "^5.0.0" + throat "^6.0.1" + +jest-circus@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-28.1.0.tgz#e229f590911bd54d60efaf076f7acd9360296dae" + integrity sha512-rNYfqfLC0L0zQKRKsg4n4J+W1A2fbyGH7Ss/kDIocp9KXD9iaL111glsLu7+Z7FHuZxwzInMDXq+N1ZIBkI/TQ== + dependencies: + "@jest/environment" "^28.1.0" + "@jest/expect" "^28.1.0" + "@jest/test-result" "^28.1.0" + "@jest/types" "^28.1.0" + "@types/node" "*" + chalk "^4.0.0" + co "^4.6.0" + dedent "^0.7.0" + is-generator-fn "^2.0.0" + jest-each "^28.1.0" + jest-matcher-utils "^28.1.0" + jest-message-util "^28.1.0" + jest-runtime "^28.1.0" + jest-snapshot "^28.1.0" + jest-util "^28.1.0" + pretty-format "^28.1.0" + slash "^3.0.0" + stack-utils "^2.0.3" + throat "^6.0.1" + +jest-cli@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-28.1.0.tgz#cd1d8adb9630102d5ba04a22895f63decdd7ac1f" + integrity sha512-fDJRt6WPRriHrBsvvgb93OxgajHHsJbk4jZxiPqmZbMDRcHskfJBBfTyjFko0jjfprP544hOktdSi9HVgl4VUQ== + dependencies: + "@jest/core" "^28.1.0" + "@jest/test-result" "^28.1.0" + "@jest/types" "^28.1.0" + chalk "^4.0.0" + exit "^0.1.2" + graceful-fs "^4.2.9" + import-local "^3.0.2" + jest-config "^28.1.0" + jest-util "^28.1.0" + jest-validate "^28.1.0" + prompts "^2.0.1" + yargs "^17.3.1" + +jest-config@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-28.1.0.tgz#fca22ca0760e746fe1ce1f9406f6b307ab818501" + integrity sha512-aOV80E9LeWrmflp7hfZNn/zGA4QKv/xsn2w8QCBP0t0+YqObuCWTSgNbHJ0j9YsTuCO08ZR/wsvlxqqHX20iUA== + dependencies: + "@babel/core" "^7.11.6" + "@jest/test-sequencer" "^28.1.0" + "@jest/types" "^28.1.0" + babel-jest "^28.1.0" + chalk "^4.0.0" + ci-info "^3.2.0" + deepmerge "^4.2.2" + glob "^7.1.3" + graceful-fs "^4.2.9" + jest-circus "^28.1.0" + jest-environment-node "^28.1.0" + jest-get-type "^28.0.2" + jest-regex-util "^28.0.2" + jest-resolve "^28.1.0" + jest-runner "^28.1.0" + jest-util "^28.1.0" + jest-validate "^28.1.0" + micromatch "^4.0.4" + parse-json "^5.2.0" + pretty-format "^28.1.0" + slash "^3.0.0" + strip-json-comments "^3.1.1" + +jest-diff@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.5.1.tgz#a07f5011ac9e6643cf8a95a462b7b1ecf6680def" + integrity sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw== + dependencies: + chalk "^4.0.0" + diff-sequences "^27.5.1" + jest-get-type "^27.5.1" + pretty-format "^27.5.1" + +jest-diff@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-28.1.0.tgz#77686fef899ec1873dbfbf9330e37dd429703269" + integrity sha512-8eFd3U3OkIKRtlasXfiAQfbovgFgRDb0Ngcs2E+FMeBZ4rUezqIaGjuyggJBp+llosQXNEWofk/Sz4Hr5gMUhA== + dependencies: + chalk "^4.0.0" + diff-sequences "^28.0.2" + jest-get-type "^28.0.2" + pretty-format "^28.1.0" + +jest-docblock@28.1.1: + version "28.1.1" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-28.1.1.tgz#6f515c3bf841516d82ecd57a62eed9204c2f42a8" + integrity sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA== + dependencies: + detect-newline "^3.0.0" + +jest-docblock@^28.0.2: + version "28.0.2" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-28.0.2.tgz#3cab8abea53275c9d670cdca814fc89fba1298c2" + integrity sha512-FH10WWw5NxLoeSdQlJwu+MTiv60aXV/t8KEwIRGEv74WARE1cXIqh1vGdy2CraHuWOOrnzTWj/azQKqW4fO7xg== + dependencies: + detect-newline "^3.0.0" + +jest-each@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-28.1.0.tgz#54ae66d6a0a5b1913e9a87588d26c2687c39458b" + integrity sha512-a/XX02xF5NTspceMpHujmOexvJ4GftpYXqr6HhhmKmExtMXsyIN/fvanQlt/BcgFoRKN4OCXxLQKth9/n6OPFg== + dependencies: + "@jest/types" "^28.1.0" + chalk "^4.0.0" + jest-get-type "^28.0.2" + jest-util "^28.1.0" + pretty-format "^28.1.0" + +jest-environment-node@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-28.1.0.tgz#6ed2150aa31babba0c488c5b4f4d813a585c68e6" + integrity sha512-gBLZNiyrPw9CSMlTXF1yJhaBgWDPVvH0Pq6bOEwGMXaYNzhzhw2kA/OijNF8egbCgDS0/veRv97249x2CX+udQ== + dependencies: + "@jest/environment" "^28.1.0" + "@jest/fake-timers" "^28.1.0" + "@jest/types" "^28.1.0" + "@types/node" "*" + jest-mock "^28.1.0" + jest-util "^28.1.0" + +jest-get-type@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.5.1.tgz#3cd613c507b0f7ace013df407a1c1cd578bcb4f1" + integrity sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw== + +jest-get-type@^28.0.2: + version "28.0.2" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-28.0.2.tgz#34622e628e4fdcd793d46db8a242227901fcf203" + integrity sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA== + +jest-haste-map@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-28.1.0.tgz#6c1ee2daf1c20a3e03dbd8e5b35c4d73d2349cf0" + integrity sha512-xyZ9sXV8PtKi6NCrJlmq53PyNVHzxmcfXNVvIRHpHmh1j/HChC4pwKgyjj7Z9us19JMw8PpQTJsFWOsIfT93Dw== + dependencies: + "@jest/types" "^28.1.0" + "@types/graceful-fs" "^4.1.3" + "@types/node" "*" + anymatch "^3.0.3" + fb-watchman "^2.0.0" + graceful-fs "^4.2.9" + jest-regex-util "^28.0.2" + jest-util "^28.1.0" + jest-worker "^28.1.0" + micromatch "^4.0.4" + walker "^1.0.7" + optionalDependencies: + fsevents "^2.3.2" + +jest-leak-detector@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-28.1.0.tgz#b65167776a8787443214d6f3f54935a4c73c8a45" + integrity sha512-uIJDQbxwEL2AMMs2xjhZl2hw8s77c3wrPaQ9v6tXJLGaaQ+4QrNJH5vuw7hA7w/uGT/iJ42a83opAqxGHeyRIA== + dependencies: + jest-get-type "^28.0.2" + pretty-format "^28.1.0" + +jest-matcher-utils@^27.0.0: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz#9c0cdbda8245bc22d2331729d1091308b40cf8ab" + integrity sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw== + dependencies: + chalk "^4.0.0" + jest-diff "^27.5.1" + jest-get-type "^27.5.1" + pretty-format "^27.5.1" + +jest-matcher-utils@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-28.1.0.tgz#2ae398806668eeabd293c61712227cb94b250ccf" + integrity sha512-onnax0n2uTLRQFKAjC7TuaxibrPSvZgKTcSCnNUz/tOjJ9UhxNm7ZmPpoQavmTDUjXvUQ8KesWk2/VdrxIFzTQ== + dependencies: + chalk "^4.0.0" + jest-diff "^28.1.0" + jest-get-type "^28.0.2" + pretty-format "^28.1.0" + +jest-message-util@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-28.1.0.tgz#7e8f0b9049e948e7b94c2a52731166774ba7d0af" + integrity sha512-RpA8mpaJ/B2HphDMiDlrAZdDytkmwFqgjDZovM21F35lHGeUeCvYmm6W+sbQ0ydaLpg5bFAUuWG1cjqOl8vqrw== + dependencies: + "@babel/code-frame" "^7.12.13" + "@jest/types" "^28.1.0" + "@types/stack-utils" "^2.0.0" + chalk "^4.0.0" + graceful-fs "^4.2.9" + micromatch "^4.0.4" + pretty-format "^28.1.0" + slash "^3.0.0" + stack-utils "^2.0.3" + +jest-mock@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-28.1.0.tgz#ccc7cc12a9b330b3182db0c651edc90d163ff73e" + integrity sha512-H7BrhggNn77WhdL7O1apG0Q/iwl0Bdd5E1ydhCJzL3oBLh/UYxAwR3EJLsBZ9XA3ZU4PA3UNw4tQjduBTCTmLw== + dependencies: + "@jest/types" "^28.1.0" + "@types/node" "*" + +jest-pnp-resolver@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" + integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== + +jest-regex-util@^28.0.2: + version "28.0.2" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-28.0.2.tgz#afdc377a3b25fb6e80825adcf76c854e5bf47ead" + integrity sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw== + +jest-resolve-dependencies@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.0.tgz#167becb8bee6e20b5ef4a3a728ec67aef6b0b79b" + integrity sha512-Ue1VYoSZquPwEvng7Uefw8RmZR+me/1kr30H2jMINjGeHgeO/JgrR6wxj2ofkJ7KSAA11W3cOrhNCbj5Dqqd9g== + dependencies: + jest-regex-util "^28.0.2" + jest-snapshot "^28.1.0" + +jest-resolve@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-28.1.0.tgz#b1f32748a6cee7d1779c7ef639c0a87078de3d35" + integrity sha512-vvfN7+tPNnnhDvISuzD1P+CRVP8cK0FHXRwPAcdDaQv4zgvwvag2n55/h5VjYcM5UJG7L4TwE5tZlzcI0X2Lhw== + dependencies: + chalk "^4.0.0" + graceful-fs "^4.2.9" + jest-haste-map "^28.1.0" + jest-pnp-resolver "^1.2.2" + jest-util "^28.1.0" + jest-validate "^28.1.0" + resolve "^1.20.0" + resolve.exports "^1.1.0" + slash "^3.0.0" + +jest-runner@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-28.1.0.tgz#aefe2a1e618a69baa0b24a50edc54fdd7e728eaa" + integrity sha512-FBpmuh1HB2dsLklAlRdOxNTTHKFR6G1Qmd80pVDvwbZXTriqjWqjei5DKFC1UlM732KjYcE6yuCdiF0WUCOS2w== + dependencies: + "@jest/console" "^28.1.0" + "@jest/environment" "^28.1.0" + "@jest/test-result" "^28.1.0" + "@jest/transform" "^28.1.0" + "@jest/types" "^28.1.0" + "@types/node" "*" + chalk "^4.0.0" + emittery "^0.10.2" + graceful-fs "^4.2.9" + jest-docblock "^28.0.2" + jest-environment-node "^28.1.0" + jest-haste-map "^28.1.0" + jest-leak-detector "^28.1.0" + jest-message-util "^28.1.0" + jest-resolve "^28.1.0" + jest-runtime "^28.1.0" + jest-util "^28.1.0" + jest-watcher "^28.1.0" + jest-worker "^28.1.0" + source-map-support "0.5.13" + throat "^6.0.1" + +jest-runtime@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-28.1.0.tgz#4847dcb2a4eb4b0f9eaf41306897e51fb1665631" + integrity sha512-wNYDiwhdH/TV3agaIyVF0lsJ33MhyujOe+lNTUiolqKt8pchy1Hq4+tDMGbtD5P/oNLA3zYrpx73T9dMTOCAcg== + dependencies: + "@jest/environment" "^28.1.0" + "@jest/fake-timers" "^28.1.0" + "@jest/globals" "^28.1.0" + "@jest/source-map" "^28.0.2" + "@jest/test-result" "^28.1.0" + "@jest/transform" "^28.1.0" + "@jest/types" "^28.1.0" + chalk "^4.0.0" + cjs-module-lexer "^1.0.0" + collect-v8-coverage "^1.0.0" + execa "^5.0.0" + glob "^7.1.3" + graceful-fs "^4.2.9" + jest-haste-map "^28.1.0" + jest-message-util "^28.1.0" + jest-mock "^28.1.0" + jest-regex-util "^28.0.2" + jest-resolve "^28.1.0" + jest-snapshot "^28.1.0" + jest-util "^28.1.0" + slash "^3.0.0" + strip-bom "^4.0.0" + +jest-snapshot@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-28.1.0.tgz#4b74fa8816707dd10fe9d551c2c258e5a67b53b6" + integrity sha512-ex49M2ZrZsUyQLpLGxQtDbahvgBjlLPgklkqGM0hq/F7W/f8DyqZxVHjdy19QKBm4O93eDp+H5S23EiTbbUmHw== + dependencies: + "@babel/core" "^7.11.6" + "@babel/generator" "^7.7.2" + "@babel/plugin-syntax-typescript" "^7.7.2" + "@babel/traverse" "^7.7.2" + "@babel/types" "^7.3.3" + "@jest/expect-utils" "^28.1.0" + "@jest/transform" "^28.1.0" + "@jest/types" "^28.1.0" + "@types/babel__traverse" "^7.0.6" + "@types/prettier" "^2.1.5" + babel-preset-current-node-syntax "^1.0.0" + chalk "^4.0.0" + expect "^28.1.0" + graceful-fs "^4.2.9" + jest-diff "^28.1.0" + jest-get-type "^28.0.2" + jest-haste-map "^28.1.0" + jest-matcher-utils "^28.1.0" + jest-message-util "^28.1.0" + jest-util "^28.1.0" + natural-compare "^1.4.0" + pretty-format "^28.1.0" + semver "^7.3.5" + +jest-util@^28.0.0, jest-util@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-28.1.0.tgz#d54eb83ad77e1dd441408738c5a5043642823be5" + integrity sha512-qYdCKD77k4Hwkose2YBEqQk7PzUf/NSE+rutzceduFveQREeH6b+89Dc9+wjX9dAwHcgdx4yedGA3FQlU/qCTA== + dependencies: + "@jest/types" "^28.1.0" + "@types/node" "*" + chalk "^4.0.0" + ci-info "^3.2.0" + graceful-fs "^4.2.9" + picomatch "^2.2.3" + +jest-validate@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-28.1.0.tgz#8a6821f48432aba9f830c26e28226ad77b9a0e18" + integrity sha512-Lly7CJYih3vQBfjLeANGgBSBJ7pEa18cxpQfQEq2go2xyEzehnHfQTjoUia8xUv4x4J80XKFIDwJJThXtRFQXQ== + dependencies: + "@jest/types" "^28.1.0" + camelcase "^6.2.0" + chalk "^4.0.0" + jest-get-type "^28.0.2" + leven "^3.1.0" + pretty-format "^28.1.0" + +jest-watcher@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-28.1.0.tgz#aaa7b4164a4e77eeb5f7d7b25ede5e7b4e9c9aaf" + integrity sha512-tNHMtfLE8Njcr2IRS+5rXYA4BhU90gAOwI9frTGOqd+jX0P/Au/JfRSNqsf5nUTcWdbVYuLxS1KjnzILSoR5hA== + dependencies: + "@jest/test-result" "^28.1.0" + "@jest/types" "^28.1.0" + "@types/node" "*" + ansi-escapes "^4.2.1" + chalk "^4.0.0" + emittery "^0.10.2" + jest-util "^28.1.0" + string-length "^4.0.1" + +jest-worker@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-28.1.0.tgz#ced54757a035e87591e1208253a6e3aac1a855e5" + integrity sha512-ZHwM6mNwaWBR52Snff8ZvsCTqQsvhCxP/bT1I6T6DAnb6ygkshsyLQIMxFwHpYxht0HOoqt23JlC01viI7T03A== + dependencies: + "@types/node" "*" + merge-stream "^2.0.0" + supports-color "^8.0.0" + +jest@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/jest/-/jest-28.1.0.tgz#f420e41c8f2395b9a30445a97189ebb57593d831" + integrity sha512-TZR+tHxopPhzw3c3560IJXZWLNHgpcz1Zh0w5A65vynLGNcg/5pZ+VildAd7+XGOu6jd58XMY/HNn0IkZIXVXg== + dependencies: + "@jest/core" "^28.1.0" + import-local "^3.0.2" + jest-cli "^28.1.0" + +js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +json5@2.2.1, json5@2.x, json5@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" + integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== + +json5@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" + integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== + dependencies: + minimist "^1.2.0" + +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + +leven@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-4.0.0.tgz#b9c39c803f835950fabef9e122a9b47b95708710" + integrity sha512-puehA3YKku3osqPlNuzGDUHq8WpwXupUg1V6NXdV38G+gr+gkBwFC8g1b/+YcIvp8gnqVIus+eJCH/eGsRmJNw== + +leven@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" + integrity sha512-nvVPLpIHUxCUoRLrFqTgSxXJ614d8AgQoWl7zPe/2VadE8+1dpU3LBhowRuBAcuwruWtOdD8oYC9jDNJjXDPyA== + +leven@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +lines-and-columns@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-2.0.3.tgz#b2f0badedb556b747020ab8ea7f0373e22efac1b" + integrity sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w== + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +linguist-languages@7.21.0: + version "7.21.0" + resolved "https://registry.yarnpkg.com/linguist-languages/-/linguist-languages-7.21.0.tgz#da0184f622367cb092f1f8ba435937a85534f675" + integrity sha512-KrWJJbFOvlDhjlt5OhUipVlXg+plUfRurICAyij1ZVxQcqPt/zeReb9KiUVdGUwwhS/2KS9h3TbyfYLA5MDlxQ== + +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash.memoize@4.x: + version "4.1.2" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= + +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +lru-cache@^4.1.5: + version "4.1.5" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" + integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +make-dir@^3.0.0, make-dir@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" + integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== + dependencies: + semver "^6.0.0" + +make-error@1.x, make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +makeerror@1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" + integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== + dependencies: + tmpl "1.0.5" + +map-age-cleaner@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" + integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== + dependencies: + p-defer "^1.0.0" + +markdown-escapes@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/markdown-escapes/-/markdown-escapes-1.0.4.tgz#c95415ef451499d7602b91095f3c8e8975f78535" + integrity sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg== + +md5@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" + integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g== + dependencies: + charenc "0.0.2" + crypt "0.0.2" + is-buffer "~1.1.6" + +mem@9.0.2: + version "9.0.2" + resolved "https://registry.yarnpkg.com/mem/-/mem-9.0.2.tgz#bbc2d40be045afe30749681e8f5d554cee0c0354" + integrity sha512-F2t4YIv9XQUBHt6AOJ0y7lSmP1+cY7Fm1DRh9GClTGzKST7UWLMx6ly9WZdLH/G/ppM5RL4MlQfRT71ri9t19A== + dependencies: + map-age-cleaner "^0.1.3" + mimic-fn "^4.0.0" + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +meriyah@4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/meriyah/-/meriyah-4.2.1.tgz#2a5c9ac2f4a16673afa31af1266ce491a8973bb4" + integrity sha512-Uv5sWsmjFNC6IszEmHo5bzJLL+kqjQ/VrEj9Agqsqtx7B6dcxHnHLew1ioJD19HNXrxrRZltPi+NVh12I8RLXA== + +micromatch@4.0.5, micromatch@^4.0.4: + version "4.0.5" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + dependencies: + braces "^3.0.2" + picomatch "^2.3.1" + +mime-db@1.51.0: + version "1.51.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.51.0.tgz#d9ff62451859b18342d960850dc3cfb77e63fb0c" + integrity sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g== + +mime-types@^2.1.12: + version "2.1.34" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.34.tgz#5a712f9ec1503511a945803640fafe09d3793c24" + integrity sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A== + dependencies: + mime-db "1.51.0" + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +mimic-fn@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" + integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== + +minimatch@^3.0.4, minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimist@1.2.6, minimist@^1.2.0, minimist@^1.2.6: + version "1.2.6" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" + integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@^2.0.0: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +mylas@^2.1.9: + version "2.1.9" + resolved "https://registry.yarnpkg.com/mylas/-/mylas-2.1.9.tgz#8329626f95c0ce522ca7d3c192eca6221d172cdc" + integrity sha512-pa+cQvmhoM8zzgitPYZErmDt9EdTNVnXsH1XFjMeM4TyG4FFcgxrvK1+jwabVFwUOEDaSWuXBMjg43kqt/Ydlg== + +n-readlines@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/n-readlines/-/n-readlines-1.0.1.tgz#bbb7364d38bc31a170a199f986fcacfa76b95f6e" + integrity sha512-z4SyAIVgMy7CkgsoNw7YVz40v0g4+WWvvqy8+ZdHrCtgevcEO758WQyrYcw3XPxcLxF+//RszTz/rO48nzD0wQ== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= + +node-domexception@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + +node-fetch@^2.6.7: + version "2.6.7" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" + integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== + dependencies: + whatwg-url "^5.0.0" + +node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= + +node-releases@^2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.4.tgz#f38252370c43854dc48aa431c766c6c398f40476" + integrity sha512-gbMzqQtTtDz/00jQzZ21PQzdI9PyLYqUSvD0p3naOhX4odFji0ZxYdnVwPTxmSwkmxhcFImpozceidSG+AgoPQ== + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +object-inspect@^1.9.0: + version "1.12.0" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.0.tgz#6e2c120e868fd1fd18cb4f18c31741d0d6e776f0" + integrity sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g== + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= + dependencies: + wrappy "1" + +onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +optionator@^0.9.1: + version "0.9.1" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" + integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== + dependencies: + deep-is "^0.1.3" + fast-levenshtein "^2.0.6" + levn "^0.4.1" + prelude-ls "^1.2.1" + type-check "^0.4.0" + word-wrap "^1.2.3" + +outdent@0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/outdent/-/outdent-0.8.0.tgz#2ebc3e77bf49912543f1008100ff8e7f44428eb0" + integrity sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A== + +p-defer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" + integrity sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw== + +p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-entities@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-2.0.0.tgz#53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8" + integrity sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ== + dependencies: + character-entities "^1.0.0" + character-entities-legacy "^1.0.0" + character-reference-invalid "^1.0.0" + is-alphanumerical "^1.0.0" + is-decimal "^1.0.0" + is-hexadecimal "^1.0.0" + +parse-json@^5.0.0, parse-json@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + +parse-srcset@ikatyang/parse-srcset#54eb9c1cb21db5c62b4d0e275d7249516df6f0ee: + version "1.0.2" + resolved "https://codeload.github.com/ikatyang/parse-srcset/tar.gz/54eb9c1cb21db5c62b4d0e275d7249516df6f0ee" + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +picocolors@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f" + integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA== + +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pirates@^4.0.4: + version "4.0.5" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" + integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== + +pkg-dir@^4.1.0, pkg-dir@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + dependencies: + find-up "^4.0.0" + +please-upgrade-node@3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" + integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== + dependencies: + semver-compare "^1.0.0" + +plimit-lit@^1.2.6: + version "1.2.7" + resolved "https://registry.yarnpkg.com/plimit-lit/-/plimit-lit-1.2.7.tgz#ae16e6e5eadf87924e574337b4c01d140b986c4a" + integrity sha512-ce/kfCHFJ2sIK1IuSnXfVBxoMaIwuAF9J5NjFwxng1j+r8XguGxXMK87dBSODQfY+se2Raj/grpx5EAK9kapEA== + dependencies: + queue-lit "^1.2.8" + +postcss-less@3.1.4: + version "3.1.4" + resolved "https://registry.yarnpkg.com/postcss-less/-/postcss-less-3.1.4.tgz#369f58642b5928ef898ffbc1a6e93c958304c5ad" + integrity sha512-7TvleQWNM2QLcHqvudt3VYjULVB49uiW6XzEUFmvwHzvsOEF5MwBrIXZDJQvJNFGjJQTzSzZnDoCJ8h/ljyGXA== + dependencies: + postcss "^7.0.14" + +postcss-media-query-parser@0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244" + integrity sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig== + +postcss-scss@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-2.1.1.tgz#ec3a75fa29a55e016b90bf3269026c53c1d2b383" + integrity sha512-jQmGnj0hSGLd9RscFw9LyuSVAa5Bl1/KBPqG1NQw9w8ND55nY4ZEsdlVuYJvLPpV+y0nwTV5v/4rHPzZRihQbA== + dependencies: + postcss "^7.0.6" + +postcss-selector-parser@2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90" + integrity sha512-3pqyakeGhrO0BQ5+/tGTfvi5IAUAhHRayGK8WFSu06aEv2BmHoXw/Mhb+w7VY5HERIuC+QoUI7wgrCcq2hqCVA== + dependencies: + flatten "^1.0.2" + indexes-of "^1.0.1" + uniq "^1.0.1" + +postcss-values-parser@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz#da8b472d901da1e205b47bdc98637b9e9e550e5f" + integrity sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg== + dependencies: + flatten "^1.0.2" + indexes-of "^1.0.1" + uniq "^1.0.1" + +postcss@^7.0.14, postcss@^7.0.6: + version "7.0.39" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.39.tgz#9624375d965630e2e1f2c02a935c82a59cb48309" + integrity sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA== + dependencies: + picocolors "^0.2.1" + source-map "^0.6.1" + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +prettier@rattrayalex/prettier#postfix-ternaries: + version "2.9.0-dev" + resolved "https://codeload.github.com/rattrayalex/prettier/tar.gz/ec73d020c586dbc1ca4f6fbd7b612541a9a8002e" + dependencies: + "@angular/compiler" "12.2.16" + "@babel/code-frame" "7.18.6" + "@babel/parser" "7.20.7" + "@glimmer/syntax" "0.84.2" + "@iarna/toml" "2.2.5" + "@typescript-eslint/typescript-estree" "5.45.0" + acorn "8.8.1" + acorn-jsx "5.3.2" + angular-estree-parser "2.5.1" + angular-html-parser "1.8.0" + camelcase "6.3.0" + chalk "5.0.1" + ci-info "3.3.0" + cjk-regex "2.0.1" + collapse-white-space "1.0.6" + cosmiconfig "7.0.1" + css-units-list "1.1.0" + dashify "2.0.0" + diff "5.0.0" + editorconfig "0.15.3" + editorconfig-to-prettier "0.2.0" + escape-string-regexp "5.0.0" + espree "9.4.1" + esutils "2.0.3" + fast-glob "3.2.12" + fast-json-stable-stringify "2.1.0" + file-entry-cache "6.0.1" + find-cache-dir "3.3.2" + find-parent-dir "0.3.1" + flow-parser "0.180.0" + get-stdin "8.0.0" + graphql "15.6.1" + html-element-attributes "3.1.0" + html-styles "1.0.0" + html-tag-names "2.0.1" + html-void-elements "2.0.1" + ignore "5.2.0" + jest-docblock "28.1.1" + json5 "2.2.1" + leven "4.0.0" + lines-and-columns "2.0.3" + linguist-languages "7.21.0" + mem "9.0.2" + meriyah "4.2.1" + micromatch "4.0.5" + minimist "1.2.6" + n-readlines "1.0.1" + outdent "0.8.0" + parse-srcset ikatyang/parse-srcset#54eb9c1cb21db5c62b4d0e275d7249516df6f0ee + please-upgrade-node "3.2.0" + postcss-less "3.1.4" + postcss-media-query-parser "0.2.3" + postcss-scss "2.1.1" + postcss-selector-parser "2.2.3" + postcss-values-parser "2.0.1" + regexp-util "1.2.2" + remark-footnotes "2.0.0" + remark-math "3.0.1" + remark-parse "8.0.3" + resolve "1.22.1" + sdbm "2.0.0" + semver "7.3.7" + string-width "5.0.1" + strip-ansi "7.0.1" + typescript "4.9.3" + unicode-regex "3.0.0" + unified "9.2.1" + vnopts "1.0.2" + wcwidth "1.0.1" + yaml-unist-parser "1.3.1" + +pretty-format@^27.0.0, pretty-format@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e" + integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== + dependencies: + ansi-regex "^5.0.1" + ansi-styles "^5.0.0" + react-is "^17.0.1" + +pretty-format@^28.1.0: + version "28.1.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-28.1.0.tgz#8f5836c6a0dfdb834730577ec18029052191af55" + integrity sha512-79Z4wWOYCdvQkEoEuSlBhHJqWeZ8D8YRPiPctJFCtvuaClGpiwiQYSCUOE6IEKUbbFukKOTFIUAXE8N4EQTo1Q== + dependencies: + "@jest/schemas" "^28.0.2" + ansi-regex "^5.0.1" + ansi-styles "^5.0.0" + react-is "^18.0.0" + +prompts@^2.0.1: + version "2.4.2" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + +pseudomap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + integrity sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ== + +punycode@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +qs@^6.10.3: + version "6.10.3" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.3.tgz#d6cde1b2ffca87b5aa57889816c5f81535e22e8e" + integrity sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ== + dependencies: + side-channel "^1.0.4" + +queue-lit@^1.2.8: + version "1.2.8" + resolved "https://registry.yarnpkg.com/queue-lit/-/queue-lit-1.2.8.tgz#2bafa0eafb8db0380ab2301d90c52a065c4baad0" + integrity sha512-CR0/8Xb0oRk4rZrteSZcjrrPhWfXGBAWa/ATxYCqpdM4fnZu8M3zob5ajLxLUCXmpOzhHZ1+zgscrlzQtEOM0A== + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +react-is@^17.0.1: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" + integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== + +react-is@^18.0.0: + version "18.1.0" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.1.0.tgz#61aaed3096d30eacf2a2127118b5b41387d32a67" + integrity sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg== + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +regexp-util@1.2.2, regexp-util@^1.2.0, regexp-util@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/regexp-util/-/regexp-util-1.2.2.tgz#5cf599134921eb0d776e41d41e9c0da33f0fa2fc" + integrity sha512-5/rl2UD18oAlLQEIuKBeiSIOp1hb5wCXcakl5yvHxlY1wyWI4D5cUKKzCibBeu741PA9JKvZhMqbkDQqPusX3w== + dependencies: + tslib "^1.9.0" + +regexpp@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" + integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== + +remark-footnotes@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/remark-footnotes/-/remark-footnotes-2.0.0.tgz#9001c4c2ffebba55695d2dd80ffb8b82f7e6303f" + integrity sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ== + +remark-math@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/remark-math/-/remark-math-3.0.1.tgz#85a02a15b15cad34b89a27244d4887b3a95185bb" + integrity sha512-epT77R/HK0x7NqrWHdSV75uNLwn8g9qTyMqCRCDujL0vj/6T6+yhdrR7mjELWtkse+Fw02kijAaBuVcHBor1+Q== + +remark-parse@8.0.3: + version "8.0.3" + resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-8.0.3.tgz#9c62aa3b35b79a486454c690472906075f40c7e1" + integrity sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q== + dependencies: + ccount "^1.0.0" + collapse-white-space "^1.0.2" + is-alphabetical "^1.0.0" + is-decimal "^1.0.0" + is-whitespace-character "^1.0.0" + is-word-character "^1.0.0" + markdown-escapes "^1.0.0" + parse-entities "^2.0.0" + repeat-string "^1.5.4" + state-toggle "^1.0.0" + trim "0.0.1" + trim-trailing-lines "^1.0.0" + unherit "^1.0.4" + unist-util-remove-position "^2.0.0" + vfile-location "^3.0.0" + xtend "^4.0.1" + +repeat-string@^1.5.4: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= + +resolve-cwd@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" + integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== + dependencies: + resolve-from "^5.0.0" + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + +resolve.exports@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.0.tgz#5ce842b94b05146c0e03076985d1d0e7e48c90c9" + integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ== + +resolve@1.22.1: + version "1.22.1" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" + integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +resolve@^1.20.0: + version "1.22.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198" + integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw== + dependencies: + is-core-module "^2.8.1" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rimraf@^3.0.0, rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +sdbm@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/sdbm/-/sdbm-2.0.0.tgz#23828c1195e341d0f5810c59dfa60d86278f8718" + integrity sha512-dspMGxvHiwSTgyrmm90jHQV2sDqK46ssbDK+bQAlJ5aRuPo3C7So108V6rCuCDbm1CrNWuPeMpmTNQKPl7vO+A== + +semver-compare@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" + integrity sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow== + +semver@7.3.7, semver@7.x, semver@^7.3.5, semver@^7.3.7: + version "7.3.7" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" + integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== + dependencies: + lru-cache "^6.0.0" + +semver@^5.6.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@^6.0.0, semver@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +sigmund@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" + integrity sha512-fCvEXfh6NWpm+YSuY2bpXb/VIihqWA6hLsgboC+0nl71Q7N7o2eaCW8mJa/NLvQhs6jpd3VZV4UiUQlV6+lc8g== + +signal-exit@^3.0.3, signal-exit@^3.0.7: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +simple-html-tokenizer@^0.5.11: + version "0.5.11" + resolved "https://registry.yarnpkg.com/simple-html-tokenizer/-/simple-html-tokenizer-0.5.11.tgz#4c5186083c164ba22a7b477b7687ac056ad6b1d9" + integrity sha512-C2WEK/Z3HoSFbYq8tI7ni3eOo/NneSPRoPpcM7WdLjFOArFuyXEjAoCdOC3DgMfRyziZQ1hCNR4mrNdWEvD0og== + +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +source-map-support@0.5.13: + version "0.5.13" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" + integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.6.0, source-map@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= + +stack-utils@^2.0.3: + version "2.0.5" + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.5.tgz#d25265fca995154659dbbfba3b49254778d2fdd5" + integrity sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA== + dependencies: + escape-string-regexp "^2.0.0" + +state-toggle@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.3.tgz#e123b16a88e143139b09c6852221bc9815917dfe" + integrity sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ== + +string-length@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" + integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== + dependencies: + char-regex "^1.0.2" + strip-ansi "^6.0.0" + +string-width@5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.0.1.tgz#0d8158335a6cfd8eb95da9b6b262ce314a036ffd" + integrity sha512-5ohWO/M4//8lErlUUtrFy3b11GtNOuMOU0ysKCDXFcfXuuvUXu95akgj/i8ofmaGdN0hCqyl6uu9i8dS/mQp5g== + dependencies: + emoji-regex "^9.2.2" + is-fullwidth-code-point "^4.0.0" + strip-ansi "^7.0.1" + +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +strip-ansi@7.0.1, strip-ansi@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.0.1.tgz#61740a08ce36b61e50e65653f07060d000975fb2" + integrity sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw== + dependencies: + ansi-regex "^6.0.1" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +strip-bom@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" + integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.0.0, supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-color@^8.0.0: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-hyperlinks@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" + integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== + dependencies: + has-flag "^4.0.0" + supports-color "^7.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +terminal-link@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" + integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== + dependencies: + ansi-escapes "^4.2.1" + supports-hyperlinks "^2.0.0" + +test-exclude@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" + integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== + dependencies: + "@istanbuljs/schema" "^0.1.2" + glob "^7.1.4" + minimatch "^3.0.4" + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +throat@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/throat/-/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375" + integrity sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w== + +tmpl@1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" + integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= + +trim-trailing-lines@^1.0.0: + version "1.1.4" + resolved "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz#bd4abbec7cc880462f10b2c8b5ce1d8d1ec7c2c0" + integrity sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ== + +trim@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" + integrity sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ== + +trough@^1.0.0: + version "1.0.5" + resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406" + integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA== + +ts-jest@^28.0.2: + version "28.0.2" + resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-28.0.2.tgz#e4026357006731f96a033b94db89d01e0d3c0591" + integrity sha512-IOZMb3D0gx6IHO9ywPgiQxJ3Zl4ECylEFwoVpENB55aTn5sdO0Ptyx/7noNBxAaUff708RqQL4XBNxxOVjY0vQ== + dependencies: + bs-logger "0.x" + fast-json-stable-stringify "2.x" + jest-util "^28.0.0" + json5 "2.x" + lodash.memoize "4.x" + make-error "1.x" + semver "7.x" + yargs-parser "^20.x" + +ts-node@^10.5.0: + version "10.7.0" + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.7.0.tgz#35d503d0fab3e2baa672a0e94f4b40653c2463f5" + integrity sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A== + dependencies: + "@cspotcode/source-map-support" "0.7.0" + "@tsconfig/node10" "^1.0.7" + "@tsconfig/node12" "^1.0.7" + "@tsconfig/node14" "^1.0.0" + "@tsconfig/node16" "^1.0.2" + acorn "^8.4.1" + acorn-walk "^8.1.1" + arg "^4.1.0" + create-require "^1.1.0" + diff "^4.0.1" + make-error "^1.1.1" + v8-compile-cache-lib "^3.0.0" + yn "3.1.1" + +tsc-alias@^1.6.9: + version "1.6.9" + resolved "https://registry.yarnpkg.com/tsc-alias/-/tsc-alias-1.6.9.tgz#d04d95124b95ad8eea55e52d45cf65a744c26baa" + integrity sha512-5lv5uAHn0cgxY1XfpXIdquUSz2xXq3ryQyNtxC6DYH7YT5rt/W+9Gsft2uyLFTh+ozk4qU8iCSP3VemjT69xlQ== + dependencies: + chokidar "^3.5.3" + commander "^9.0.0" + globby "^11.0.4" + mylas "^2.1.9" + normalize-path "^3.0.0" + plimit-lit "^1.2.6" + +tsconfig-paths@^3.12.0: + version "3.14.1" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" + integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== + dependencies: + "@types/json5" "^0.0.29" + json5 "^1.0.1" + minimist "^1.2.6" + strip-bom "^3.0.0" + +tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^2.0.3, tslib@^2.2.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e" + integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA== + +tsutils@^3.21.0: + version "3.21.0" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== + dependencies: + tslib "^1.8.1" + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-detect@4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + +typescript@4.9.3, typescript@^4.8.2: + version "4.9.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.3.tgz#3aea307c1746b8c384435d8ac36b8a2e580d85db" + integrity sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA== + +unherit@^1.0.4: + version "1.1.3" + resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.3.tgz#6c9b503f2b41b262330c80e91c8614abdaa69c22" + integrity sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ== + dependencies: + inherits "^2.0.0" + xtend "^4.0.0" + +unicode-regex@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/unicode-regex/-/unicode-regex-3.0.0.tgz#0c20df914c6da0412b3714cd300726e0f7f24698" + integrity sha512-WiDJdORsqgxkZrjC8WsIP573130HNn7KsB0IDnUccW2BG2b19QQNloNhVe6DKk3Aef0UcoIHhNVj7IkkcYWrNw== + dependencies: + regexp-util "^1.2.0" + +unicode-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-regex/-/unicode-regex-2.0.0.tgz#ef8f6642c37dddcaa0c09af5b9456aabf6b436a3" + integrity sha512-5nbEG2YU7loyTvPABaKb+8B0u8L7vWCsVmCSsiaO249ZdMKlvrXlxR2ex4TUVAdzv/Cne/TdoXSSaJArGXaleQ== + dependencies: + regexp-util "^1.2.0" + +unified@9.2.1: + version "9.2.1" + resolved "https://registry.yarnpkg.com/unified/-/unified-9.2.1.tgz#ae18d5674c114021bfdbdf73865ca60f410215a3" + integrity sha512-juWjuI8Z4xFg8pJbnEZ41b5xjGUWGHqXALmBZ3FC3WX0PIx1CZBIIJ6mXbYMcf6Yw4Fi0rFUTA1cdz/BglbOhA== + dependencies: + bail "^1.0.0" + extend "^3.0.0" + is-buffer "^2.0.0" + is-plain-obj "^2.0.0" + trough "^1.0.0" + vfile "^4.0.0" + +uniq@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" + integrity sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA== + +unist-util-is@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.1.0.tgz#976e5f462a7a5de73d94b706bac1b90671b57797" + integrity sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg== + +unist-util-remove-position@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz#5d19ca79fdba712301999b2b73553ca8f3b352cc" + integrity sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA== + dependencies: + unist-util-visit "^2.0.0" + +unist-util-stringify-position@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz#cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da" + integrity sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g== + dependencies: + "@types/unist" "^2.0.2" + +unist-util-visit-parents@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz#65a6ce698f78a6b0f56aa0e88f13801886cdaef6" + integrity sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg== + dependencies: + "@types/unist" "^2.0.0" + unist-util-is "^4.0.0" + +unist-util-visit@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-2.0.3.tgz#c3703893146df47203bb8a9795af47d7b971208c" + integrity sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q== + dependencies: + "@types/unist" "^2.0.0" + unist-util-is "^4.0.0" + unist-util-visit-parents "^3.0.0" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +v8-compile-cache-lib@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.0.tgz#0582bcb1c74f3a2ee46487ceecf372e46bce53e8" + integrity sha512-mpSYqfsFvASnSn5qMiwrr4VKfumbPyONLCOPmsR3A6pTY/r0+tSaVbgPWSAIuzbk3lCTa+FForeTiO+wBQGkjA== + +v8-compile-cache@^2.0.3: + version "2.3.0" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" + integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== + +v8-to-istanbul@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.0.0.tgz#be0dae58719fc53cb97e5c7ac1d7e6d4f5b19511" + integrity sha512-HcvgY/xaRm7isYmyx+lFKA4uQmfUbN0J4M0nNItvzTvH/iQ9kW5j/t4YSR+Ge323/lrgDAWJoF46tzGQHwBHFw== + dependencies: + "@jridgewell/trace-mapping" "^0.3.7" + "@types/istanbul-lib-coverage" "^2.0.1" + convert-source-map "^1.6.0" + +vfile-location@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-3.2.0.tgz#d8e41fbcbd406063669ebf6c33d56ae8721d0f3c" + integrity sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA== + +vfile-message@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-2.0.4.tgz#5b43b88171d409eae58477d13f23dd41d52c371a" + integrity sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ== + dependencies: + "@types/unist" "^2.0.0" + unist-util-stringify-position "^2.0.0" + +vfile@^4.0.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/vfile/-/vfile-4.2.1.tgz#03f1dce28fc625c625bc6514350fbdb00fa9e624" + integrity sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA== + dependencies: + "@types/unist" "^2.0.0" + is-buffer "^2.0.0" + unist-util-stringify-position "^2.0.0" + vfile-message "^2.0.0" + +vnopts@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/vnopts/-/vnopts-1.0.2.tgz#f6a331473de0179d1679112cc090572b695202f7" + integrity sha512-d2rr2EFhAGHnTlURu49G7GWmiJV80HbAnkYdD9IFAtfhmxC+kSWEaZ6ZF064DJFTv9lQZQV1vuLTntyQpoanGQ== + dependencies: + chalk "^2.4.1" + leven "^2.1.0" + tslib "^1.9.3" + +walker@^1.0.7: + version "1.0.8" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" + integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== + dependencies: + makeerror "1.0.12" + +wcwidth@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== + dependencies: + defaults "^1.0.3" + +web-streams-polyfill@4.0.0-beta.1: + version "4.0.0-beta.1" + resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.1.tgz#3b19b9817374b7cee06d374ba7eeb3aeb80e8c95" + integrity sha512-3ux37gEX670UUphBF9AMCq8XM6iQ8Ac6A+DSRRjDoRBm1ufCkaCDdNVbaqq60PsEkdNlLKrGtv/YBP4EJXqNtQ== + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE= + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0= + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +word-wrap@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + +write-file-atomic@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.1.tgz#9faa33a964c1c85ff6f849b80b42a88c2c537c8f" + integrity sha512-nSKUxgAbyioruk6hU87QzVbY279oYT6uiwgDoujth2ju4mJ+TZau7SQBhtbTmUyuNYTuXnSyRn66FV0+eCgcrQ== + dependencies: + imurmurhash "^0.1.4" + signal-exit "^3.0.7" + +xtend@^4.0.0, xtend@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yallist@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + integrity sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yaml-unist-parser@1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/yaml-unist-parser/-/yaml-unist-parser-1.3.1.tgz#4305a54d8f8750dfff782bb998ff93d0da538d1a" + integrity sha512-4aHBMpYcnByF8l2OKj5hlBJlxSYIMON8Z1Hm57ymbBL4omXMlGgY+pEf4Di6h2qNT8ZG8seTVvAQYNOa7CZ9eA== + dependencies: + lines-and-columns "^1.1.6" + tslib "^1.10.0" + yaml "^1.10.0" + +yaml@^1.10.0: + version "1.10.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + +yargs-parser@^20.x: + version "20.2.9" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + +yargs-parser@^21.0.0: + version "21.0.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.1.tgz#0267f286c877a4f0f728fceb6f8a3e4cb95c6e35" + integrity sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg== + +yargs@^17.3.1: + version "17.4.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.4.1.tgz#ebe23284207bb75cee7c408c33e722bfb27b5284" + integrity sha512-WSZD9jgobAg3ZKuCQZSa3g9QOJeCCqLoLAykiWgmXnDo9EPnn4RPf5qVTtzgOx66o6/oqhcA5tHtJXpG8pMt3g== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.0.0" + +yn@3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== From e8b3cd36edf11ba3e3faaa44ba004117c6eb4244 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Tue, 27 Jun 2023 10:20:27 -0700 Subject: [PATCH 016/725] v4.0.0-beta.1 --- .gitignore | 1 + .prettierignore | 2 + .stats.yml | 2 +- README.md | 57 +- _shims/agent.node.ts | 20 + _shims/agent.ts | 12 + _shims/fetch.node.ts | 11 + _shims/fetch.ts | 32 + _shims/fileFromPath.node.ts | 30 + _shims/fileFromPath.ts | 30 + _shims/formdata.node.ts | 9 + _shims/formdata.ts | 22 + _shims/getMultipartRequestOptions.node.ts | 24 + _shims/getMultipartRequestOptions.ts | 13 + _shims/newFileArgs.ts | 94 + _shims/toFile.node.ts | 25 + _shims/toFile.ts | 26 + _shims/uploadable.node.ts | 21 + _shims/uploadable.ts | 82 + api.md | 38 +- build | 14 +- core.ts | 121 +- ecosystem-tests/cli.ts | 270 + .../cloudflare-worker/.editorconfig | 13 + ecosystem-tests/cloudflare-worker/.prettierrc | 6 + .../cloudflare-worker/jest.config.cjs | 8 + .../cloudflare-worker/package.json | 24 + .../src/uploadWebApiTestCases.ts | 82 + .../cloudflare-worker/src/worker.ts | 69 + .../cloudflare-worker/tests/test.js | 5 + .../cloudflare-worker/tsconfig.json | 101 + .../cloudflare-worker/wrangler.toml | 43 + ecosystem-tests/cloudflare-worker/yarn.lock | 3377 +++++++++ ecosystem-tests/deno/deno.jsonc | 6 + ecosystem-tests/deno/deno.lock | 199 + ecosystem-tests/deno/import_map.json | 6 + ecosystem-tests/deno/main_test.ts | 57 + ecosystem-tests/node-ts-cjs/jest.config.cjs | 8 + ecosystem-tests/node-ts-cjs/main.ts | 37 + ecosystem-tests/node-ts-cjs/package.json | 22 + ecosystem-tests/node-ts-cjs/sample1.mp3 | Bin 0 -> 121671 bytes ecosystem-tests/node-ts-cjs/tests/test.ts | 101 + ecosystem-tests/node-ts-cjs/tsconfig.json | 54 + ecosystem-tests/node-ts-cjs/yarn.lock | 421 ++ ecosystem-tests/node-ts-esm/jest.config.cjs | 22 + ecosystem-tests/node-ts-esm/main.ts | 36 + ecosystem-tests/node-ts-esm/package.json | 22 + ecosystem-tests/node-ts-esm/sample1.mp3 | Bin 0 -> 121671 bytes ecosystem-tests/node-ts-esm/tests/test.ts | 101 + ecosystem-tests/node-ts-esm/tsconfig.json | 54 + ecosystem-tests/node-ts-esm/yarn.lock | 156 + ecosystem-tests/ts-browser-webpack/.babelrc | 3 + ecosystem-tests/ts-browser-webpack/.gitignore | 2 + .../ts-browser-webpack/package.json | 23 + .../ts-browser-webpack/public/index.html | 10 + .../ts-browser-webpack/src/index.ts | 32 + .../ts-browser-webpack/tsconfig.json | 21 + .../ts-browser-webpack/webpack.config.js | 43 + ecosystem-tests/ts-browser-webpack/yarn.lock | 3503 +++++++++ ecosystem-tests/vercel-edge/.gitignore | 36 + ecosystem-tests/vercel-edge/next.config.js | 6 + ecosystem-tests/vercel-edge/package.json | 26 + .../vercel-edge/public/favicon.ico | Bin 0 -> 39535 bytes .../vercel-edge/src/pages/_app.tsx | 5 + .../vercel-edge/src/pages/_document.tsx | 13 + .../vercel-edge/src/pages/api/query-params.ts | 20 + .../vercel-edge/src/pages/api/response.ts | 22 + .../vercel-edge/src/pages/api/streaming.ts | 30 + .../vercel-edge/src/pages/api/transcribe.ts | 25 + .../vercel-edge/src/pages/index.tsx | 19 + ecosystem-tests/vercel-edge/tsconfig.json | 23 + ecosystem-tests/vercel-edge/yarn.lock | 6359 +++++++++++++++++ error.ts | 2 +- examples/fine-tunes.ts | 5 +- index.ts | 40 +- jest.config.js | 2 + package.json | 90 +- resources/audio/audio.ts | 11 + resources/audio/index.ts | 5 +- resources/audio/transcriptions.ts | 17 +- resources/audio/translations.ts | 19 +- resources/chat/chat.ts | 8 + resources/chat/completions.ts | 77 +- resources/chat/index.ts | 3 +- resources/completions.ts | 27 +- resources/edits.ts | 16 +- resources/embeddings.ts | 8 +- resources/files.ts | 51 +- resources/fine-tunes.ts | 18 +- resources/images.ts | 29 +- resources/index.ts | 10 +- resources/models.ts | 25 +- resources/moderations.ts | 9 +- scripts/prepare-cjs-build.mjs | 15 + scripts/prepare-esm-build.mjs | 12 + streaming.ts | 4 +- .../audio/transcriptions.test.ts | 20 +- .../api-resources/audio/translations.test.ts | 20 +- tests/api-resources/chat/completions.test.ts | 10 +- tests/api-resources/completions.test.ts | 6 +- tests/api-resources/edits.test.ts | 10 +- tests/api-resources/embeddings.test.ts | 10 +- tests/api-resources/files.test.ts | 30 +- tests/api-resources/fine-tunes.test.ts | 24 +- tests/api-resources/images.test.ts | 38 +- tests/api-resources/models.test.ts | 14 +- tests/api-resources/moderations.test.ts | 6 +- tests/form.test.ts | 52 +- tests/responses.test.ts | 4 +- tests/uploads.test.ts | 58 + tsconfig.cjs.json | 1 + tsconfig.esm.json | 10 + tsconfig.json | 2 + uploads.ts | 81 + version.ts | 2 +- yarn.lock | 987 ++- 116 files changed, 17232 insertions(+), 863 deletions(-) create mode 100644 _shims/agent.node.ts create mode 100644 _shims/agent.ts create mode 100644 _shims/fetch.node.ts create mode 100644 _shims/fetch.ts create mode 100644 _shims/fileFromPath.node.ts create mode 100644 _shims/fileFromPath.ts create mode 100644 _shims/formdata.node.ts create mode 100644 _shims/formdata.ts create mode 100644 _shims/getMultipartRequestOptions.node.ts create mode 100644 _shims/getMultipartRequestOptions.ts create mode 100644 _shims/newFileArgs.ts create mode 100644 _shims/toFile.node.ts create mode 100644 _shims/toFile.ts create mode 100644 _shims/uploadable.node.ts create mode 100644 _shims/uploadable.ts create mode 100644 ecosystem-tests/cli.ts create mode 100644 ecosystem-tests/cloudflare-worker/.editorconfig create mode 100644 ecosystem-tests/cloudflare-worker/.prettierrc create mode 100644 ecosystem-tests/cloudflare-worker/jest.config.cjs create mode 100644 ecosystem-tests/cloudflare-worker/package.json create mode 100644 ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts create mode 100644 ecosystem-tests/cloudflare-worker/src/worker.ts create mode 100644 ecosystem-tests/cloudflare-worker/tests/test.js create mode 100644 ecosystem-tests/cloudflare-worker/tsconfig.json create mode 100644 ecosystem-tests/cloudflare-worker/wrangler.toml create mode 100644 ecosystem-tests/cloudflare-worker/yarn.lock create mode 100644 ecosystem-tests/deno/deno.jsonc create mode 100644 ecosystem-tests/deno/deno.lock create mode 100644 ecosystem-tests/deno/import_map.json create mode 100644 ecosystem-tests/deno/main_test.ts create mode 100644 ecosystem-tests/node-ts-cjs/jest.config.cjs create mode 100644 ecosystem-tests/node-ts-cjs/main.ts create mode 100644 ecosystem-tests/node-ts-cjs/package.json create mode 100644 ecosystem-tests/node-ts-cjs/sample1.mp3 create mode 100644 ecosystem-tests/node-ts-cjs/tests/test.ts create mode 100644 ecosystem-tests/node-ts-cjs/tsconfig.json create mode 100644 ecosystem-tests/node-ts-cjs/yarn.lock create mode 100644 ecosystem-tests/node-ts-esm/jest.config.cjs create mode 100644 ecosystem-tests/node-ts-esm/main.ts create mode 100644 ecosystem-tests/node-ts-esm/package.json create mode 100644 ecosystem-tests/node-ts-esm/sample1.mp3 create mode 100644 ecosystem-tests/node-ts-esm/tests/test.ts create mode 100644 ecosystem-tests/node-ts-esm/tsconfig.json create mode 100644 ecosystem-tests/node-ts-esm/yarn.lock create mode 100644 ecosystem-tests/ts-browser-webpack/.babelrc create mode 100644 ecosystem-tests/ts-browser-webpack/.gitignore create mode 100644 ecosystem-tests/ts-browser-webpack/package.json create mode 100644 ecosystem-tests/ts-browser-webpack/public/index.html create mode 100644 ecosystem-tests/ts-browser-webpack/src/index.ts create mode 100644 ecosystem-tests/ts-browser-webpack/tsconfig.json create mode 100644 ecosystem-tests/ts-browser-webpack/webpack.config.js create mode 100644 ecosystem-tests/ts-browser-webpack/yarn.lock create mode 100644 ecosystem-tests/vercel-edge/.gitignore create mode 100644 ecosystem-tests/vercel-edge/next.config.js create mode 100644 ecosystem-tests/vercel-edge/package.json create mode 100644 ecosystem-tests/vercel-edge/public/favicon.ico create mode 100644 ecosystem-tests/vercel-edge/src/pages/_app.tsx create mode 100644 ecosystem-tests/vercel-edge/src/pages/_document.tsx create mode 100644 ecosystem-tests/vercel-edge/src/pages/api/query-params.ts create mode 100644 ecosystem-tests/vercel-edge/src/pages/api/response.ts create mode 100644 ecosystem-tests/vercel-edge/src/pages/api/streaming.ts create mode 100644 ecosystem-tests/vercel-edge/src/pages/api/transcribe.ts create mode 100644 ecosystem-tests/vercel-edge/src/pages/index.tsx create mode 100644 ecosystem-tests/vercel-edge/tsconfig.json create mode 100644 ecosystem-tests/vercel-edge/yarn.lock create mode 100755 scripts/prepare-cjs-build.mjs create mode 100755 scripts/prepare-esm-build.mjs create mode 100644 tests/uploads.test.ts create mode 100644 tsconfig.esm.json create mode 100644 uploads.ts diff --git a/.gitignore b/.gitignore index 14ec4464c..a2d5c1f3f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ node_modules yarn-error.log dist +/*.tgz diff --git a/.prettierignore b/.prettierignore index 1b763b1ba..18975ca7d 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1 +1,3 @@ CHANGELOG.md +/ecosystem-tests +/node_modules diff --git a/.stats.yml b/.stats.yml index f1c795f81..c125dfb22 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1 +1 @@ -configured_endpoints: 25 +configured_endpoints: 23 diff --git a/README.md b/README.md index 2f9dd2abf..7d3b432e9 100644 --- a/README.md +++ b/README.md @@ -24,12 +24,12 @@ yarn add openai ```js import OpenAI from 'openai'; -const openAI = new OpenAI({ +const openai = new OpenAI({ apiKey: 'my api key', // defaults to process.env["OPENAI_API_KEY"] }); async function main() { - const completion = await openAI.completions.create({ + const completion = await openai.completions.create({ model: 'text-davinci-002', prompt: 'Say this is a test', max_tokens: 6, @@ -71,7 +71,7 @@ If you like, you may reference our types directly: ```ts import OpenAI from 'openai'; -const openAI = new OpenAI({ +const openai = new OpenAI({ apiKey: 'my api key', // defaults to process.env["OPENAI_API_KEY"] }); @@ -82,7 +82,7 @@ async function main() { max_tokens: 6, temperature: 0, }; - const completion: OpenAI.Completion = await openAI.completions.create(params); + const completion: OpenAI.Completion = await openai.completions.create(params); } main().catch(console.error); ``` @@ -91,17 +91,38 @@ Documentation for each method, request param, and response field are available i ## File Uploads -Request parameters that correspond to file uploads can be passed as either a `FormData.Blob` or a `FormData.File` instance. +Request parameters that correspond to file uploads can be passed in many different forms: -We provide a `fileFromPath` helper function to easily create `FormData.File` instances from a given class. +- `File` (or an object with the same structure) +- a `fetch` `Response` (or an object with the same structure) +- an `fs.ReadStream` +- the return value of our `toFile` helper ```ts -import OpenAI, { fileFromPath } from 'openai'; +import fs from 'fs'; +import fetch from 'node-fetch'; +import OpenAI, { toFile } from 'openai'; -const openAI = new OpenAI(); +const openai = new OpenAI(); -const file = await fileFromPath('input.jsonl'); -await openAI.files.create({ file: file, purpose: 'fine-tune' }); +// If you have access to Node `fs` we recommend using `fs.createReadStream()`: +await openai.files.create({ file: fs.createReadStream('input.jsonl'), purpose: 'fine-tune' }); + +// Or if you have the web `File` API you can pass a `File` instance: +await openai.files.create({ file: new File(['my bytes'], 'input.jsonl'), purpose: 'fine-tune' }); + +// You can also pass a `fetch` `Response`: +await openai.files.create({ file: await fetch('http://github.com/service/https://somesite/input.jsonl'), purpose: 'fine-tune' }); + +// Finally, if none of the above are convenient, you can use our `toFile` helper: +await openai.files.create({ + file: await toFile(Buffer.from('my bytes'), 'input.jsonl'), + purpose: 'fine-tune', +}); +await openai.files.create({ + file: await toFile(new Uint8Array([0, 1, 2]), 'input.jsonl'), + purpose: 'fine-tune', +}); ``` ## Handling errors @@ -112,7 +133,7 @@ a subclass of `APIError` will be thrown: ```ts async function main() { - const fineTune = await openAI.fineTunes + const fineTune = await openai.fineTunes .create({ training_file: 'file-XGinujblHPwGLSztz8cPS8XY' }) .catch((err) => { if (err instanceof OpenAI.APIError) { @@ -150,12 +171,12 @@ You can use the `maxRetries` option to configure or disable this: ```js // Configure the default for all requests: -const openAI = new OpenAI({ +const openai = new OpenAI({ maxRetries: 0, // default is 2 }); // Or, configure per-request: -openAI.embeddings.create({ model: 'text-similarity-babbage-001',input: 'The food was delicious and the waiter...' }, { +openai.embeddings.create({ model: 'text-similarity-babbage-001',input: 'The food was delicious and the waiter...' }, { maxRetries: 5, }); ``` @@ -167,12 +188,12 @@ Requests time out after 60 seconds by default. You can configure this with a `ti ```ts // Configure the default for all requests: -const openAI = new OpenAI({ +const openai = new OpenAI({ timeout: 20 * 1000, // 20 seconds (default is 60s) }); // Override per-request: -openAI.edits.create({ model: 'text-davinci-edit-001',input: 'What day of the wek is it?',instruction: 'Fix the spelling mistakes' }, { +openai.edits.create({ model: 'text-davinci-edit-001',input: 'What day of the wek is it?',instruction: 'Fix the spelling mistakes' }, { timeout: 5 * 1000, }); ``` @@ -193,12 +214,12 @@ import http from 'http'; import HttpsProxyAgent from 'https-proxy-agent'; // Configure the default for all requests: -const openAI = new OpenAI({ +const openai = new OpenAI({ httpAgent: new HttpsProxyAgent(process.env.PROXY_URL), }); // Override per-request: -openAI.models.list({ +openai.models.list({ baseURL: 'http://localhost:8080/test-api', httpAgent: new http.Agent({ keepAlive: false }), }) @@ -216,7 +237,7 @@ We are keen for your feedback; please open an [issue](https://www.github.com/ope The following runtimes are supported: -- Node.js version 12 or higher. +- Node.js 16 LTS or later ([non-EOL](https://endoflife.date/nodejs)) versions. - Deno v1.28.0 or higher (experimental). Use `import OpenAI from "npm:openai"`. diff --git a/_shims/agent.node.ts b/_shims/agent.node.ts new file mode 100644 index 000000000..c1225ca29 --- /dev/null +++ b/_shims/agent.node.ts @@ -0,0 +1,20 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +import KeepAliveAgent from 'agentkeepalive'; +import type { Agent } from 'node:http'; +import { AbortController as AbortControllerPolyfill } from 'abort-controller'; + +const defaultHttpAgent: Agent = new KeepAliveAgent({ keepAlive: true, timeout: 5 * 60 * 1000 }); +const defaultHttpsAgent: Agent = new KeepAliveAgent.HttpsAgent({ keepAlive: true, timeout: 5 * 60 * 1000 }); + +// Polyfill global object if needed. +if (typeof AbortController === 'undefined') { + AbortController = AbortControllerPolyfill as any as typeof AbortController; +} + +export const getDefaultAgent = (url: string): Agent | undefined => { + if (defaultHttpsAgent && url.startsWith('https')) return defaultHttpsAgent; + return defaultHttpAgent; +}; diff --git a/_shims/agent.ts b/_shims/agent.ts new file mode 100644 index 000000000..310adfdd6 --- /dev/null +++ b/_shims/agent.ts @@ -0,0 +1,12 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + * + * This is a stub for non-node environments. + * In node environments, it gets replaced agent.node.ts by the package export map + */ + +import type { Agent } from 'node:http'; + +export const getDefaultAgent = (url: string): Agent | undefined => { + return undefined; +}; diff --git a/_shims/fetch.node.ts b/_shims/fetch.node.ts new file mode 100644 index 000000000..3bb8a610e --- /dev/null +++ b/_shims/fetch.node.ts @@ -0,0 +1,11 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +import fetch, { Request, Response, Headers } from 'node-fetch'; +import type { RequestInfo, RequestInit, BodyInit } from 'node-fetch'; + +export { fetch, Request, Response, Headers }; +export type { RequestInfo, RequestInit, BodyInit }; + +export const isPolyfilled = true; diff --git a/_shims/fetch.ts b/_shims/fetch.ts new file mode 100644 index 000000000..638fb6faa --- /dev/null +++ b/_shims/fetch.ts @@ -0,0 +1,32 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +import type * as nf from 'node-fetch'; + +const _fetch: typeof nf.default = + // @ts-ignore + fetch as any; +type _fetch = typeof nf.default; +const _Request: typeof nf.Request = + // @ts-ignore + Request as any; +type _Request = nf.Request; +const _Response: typeof nf.Response = + // @ts-ignore + Response as any; +type _Response = nf.Response; +const _Headers: typeof nf.Headers = + // @ts-ignore + Headers as any; +type _Headers = nf.Headers; + +export const isPolyfilled = false; + +export { _fetch as fetch, _Request as Request, _Response as Response, _Headers as Headers }; + +type _RequestInfo = nf.RequestInfo; +type _RequestInit = nf.RequestInit; +type _BodyInit = nf.BodyInit; + +export type { _RequestInit as RequestInit, _RequestInfo as RequestInfo, _BodyInit as BodyInit }; diff --git a/_shims/fileFromPath.node.ts b/_shims/fileFromPath.node.ts new file mode 100644 index 000000000..eca866a16 --- /dev/null +++ b/_shims/fileFromPath.node.ts @@ -0,0 +1,30 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +import type { FilePropertyBag } from 'formdata-node'; +import { fileFromPath as _fileFromPath } from 'formdata-node/file-from-path'; +import type { File } from './formdata.node'; + +export type FileFromPathOptions = Omit; + +let warned = false; + +/** + * @deprecated use fs.createReadStream('./my/file.txt') instead + */ +export async function fileFromPath(path: string): Promise; +export async function fileFromPath(path: string, filename?: string): Promise; +export async function fileFromPath(path: string, options?: FileFromPathOptions): Promise; +export async function fileFromPath( + path: string, + filename?: string, + options?: FileFromPathOptions, +): Promise; +export async function fileFromPath(path: string, ...args: any[]): Promise { + if (!warned) { + console.warn(`fileFromPath is deprecated; use fs.createReadStream(${JSON.stringify(path)}) instead`); + warned = true; + } + return await _fileFromPath(path, ...args); +} diff --git a/_shims/fileFromPath.ts b/_shims/fileFromPath.ts new file mode 100644 index 000000000..06ce39a76 --- /dev/null +++ b/_shims/fileFromPath.ts @@ -0,0 +1,30 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + * + * This is a stub that gets replaced by fileFromPath.node.js for node environments + * in the package export map + */ + +import type { FilePropertyBag } from 'formdata-node'; +import type { File } from './formdata'; + +export type FileFromPathOptions = Omit; + +/** + * This is a stub for non-node environments that just throws an error. + * In node environments, this module will be replaced by util/node/fileFromPath by the + * package import map. + */ +export async function fileFromPath(path: string): Promise; +export async function fileFromPath(path: string, filename?: string): Promise; +export async function fileFromPath(path: string, options?: FileFromPathOptions): Promise; +export async function fileFromPath( + path: string, + filename?: string, + options?: FileFromPathOptions, +): Promise; +export async function fileFromPath(): Promise { + throw new Error( + 'The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/openai/openai-node#file-uploads', + ); +} diff --git a/_shims/formdata.node.ts b/_shims/formdata.node.ts new file mode 100644 index 000000000..b35ac4dac --- /dev/null +++ b/_shims/formdata.node.ts @@ -0,0 +1,9 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +import { FormData, File, Blob } from 'formdata-node'; + +export { FormData, File, Blob }; + +export const isPolyfilled = true; diff --git a/_shims/formdata.ts b/_shims/formdata.ts new file mode 100644 index 000000000..862da725a --- /dev/null +++ b/_shims/formdata.ts @@ -0,0 +1,22 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +import type * as fd from 'formdata-node'; + +const _FormData: typeof fd.FormData = + // @ts-ignore + FormData as any; +type _FormData = fd.FormData; +const _File: typeof fd.File = + // @ts-ignore + File as any; +type _File = fd.File; +const _Blob: typeof fd.Blob = + // @ts-ignore + Blob as any; +type _Blob = fd.Blob; + +export const isPolyfilled = false; + +export { _FormData as FormData, _File as File, _Blob as Blob }; diff --git a/_shims/getMultipartRequestOptions.node.ts b/_shims/getMultipartRequestOptions.node.ts new file mode 100644 index 000000000..c55c664d9 --- /dev/null +++ b/_shims/getMultipartRequestOptions.node.ts @@ -0,0 +1,24 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +import { FormData } from './formdata.node'; +import type { RequestOptions } from '../core'; +import { Readable } from 'node:stream'; +import { FormDataEncoder } from 'form-data-encoder'; + +export async function getMultipartRequestOptions>( + form: FormData, + opts: RequestOptions, +): Promise> { + const encoder = new FormDataEncoder(form); + const readable = Readable.from(encoder); + const body = { __multipartBody__: readable }; + const headers = { + ...opts.headers, + ...encoder.headers, + 'Content-Length': encoder.contentLength, + }; + + return { ...opts, body: body as any, headers }; +} diff --git a/_shims/getMultipartRequestOptions.ts b/_shims/getMultipartRequestOptions.ts new file mode 100644 index 000000000..1b38c298b --- /dev/null +++ b/_shims/getMultipartRequestOptions.ts @@ -0,0 +1,13 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +import { FormData } from './formdata'; +import type { RequestOptions } from '../core'; + +export async function getMultipartRequestOptions>( + form: FormData, + opts: RequestOptions, +): Promise> { + return { ...opts, body: { __multipartBody__: form } as any }; +} diff --git a/_shims/newFileArgs.ts b/_shims/newFileArgs.ts new file mode 100644 index 000000000..af7041d2f --- /dev/null +++ b/_shims/newFileArgs.ts @@ -0,0 +1,94 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +import { type BlobPart, type Uploadable, isResponseLike, isBlobLike } from './uploadable'; + +export type ToFileInput = Uploadable | Exclude | AsyncIterable; + +export type FilePropertyBag = { + type?: string; + lastModified?: number; +}; + +export async function newFileArgs( + value: ToFileInput, + name?: string | null, + options: FilePropertyBag = {}, +): Promise<{ + bits: BlobPart[]; + name: string; + options: FilePropertyBag; +}> { + if (isResponseLike(value)) { + const blob = await value.blob(); + name ||= new URL(value.url).pathname.split(/[\\/]/).pop() ?? 'unknown_file'; + + return { bits: [blob as any], name, options }; + } + + const bits = await getBytes(value); + + name ||= getName(value) ?? 'unknown_file'; + + if (!options.type) { + const type = (bits[0] as any)?.type; + if (typeof type === 'string') { + options = { ...options, type }; + } + } + + return { bits, name, options }; +} + +async function getBytes(value: ToFileInput): Promise> { + if (value instanceof Promise) return getBytes(await (value as any)); + + let parts: Array = []; + if ( + typeof value === 'string' || + ArrayBuffer.isView(value) || // includes Uint8Array, Buffer, etc. + value instanceof ArrayBuffer + ) { + parts.push(value); + } else if (isBlobLike(value)) { + parts.push(await value.arrayBuffer()); + } else if ( + isAsyncIterableIterator(value) // includes Readable, ReadableStream, etc. + ) { + for await (const chunk of value) { + parts.push(chunk as BlobPart); // TODO, consider validating? + } + } else { + throw new Error( + `Unexpected data type: ${typeof value}; constructor: ${ + value?.constructor?.name + }; props: ${propsForError(value)}`, + ); + } + + return parts; +} + +function propsForError(value: any): string { + const props = Object.getOwnPropertyNames(value); + return `[${props.map((p) => `"${p}"`).join(', ')}]`; +} + +function getName(value: any): string | undefined { + return ( + getStringFromMaybeBuffer(value.name) || + getStringFromMaybeBuffer(value.filename) || + // For fs.ReadStream + getStringFromMaybeBuffer(value.path)?.split(/[\\/]/).pop() + ); +} + +const getStringFromMaybeBuffer = (x: string | Buffer | unknown): string | undefined => { + if (typeof x === 'string') return x; + if (typeof Buffer !== 'undefined' && x instanceof Buffer) return String(x); + return undefined; +}; + +const isAsyncIterableIterator = (value: any): value is AsyncIterableIterator => + value != null && typeof value === 'object' && typeof value[Symbol.asyncIterator] === 'function'; diff --git a/_shims/toFile.node.ts b/_shims/toFile.node.ts new file mode 100644 index 000000000..82a7cc77a --- /dev/null +++ b/_shims/toFile.node.ts @@ -0,0 +1,25 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +import { File } from 'formdata-node'; +import { type ToFileInput, newFileArgs, type FilePropertyBag } from './newFileArgs'; +import type { Uploadable, BlobPart, FileLike } from './uploadable.node'; // eslint-disable-line + +/** + * Helper for creating a {@link File} to pass to an SDK upload method from a variety of different data formats + * @param bits the raw content of the file. Can be an {@link Uploadable}, {@link BlobPart}, or {@link AsyncIterable} of {@link BlobPart}s + * @param name the name of the file. If omitted, toFile will try to determine a file name from bits if possible + * @param {Object=} options additional properties + * @param {string=} options.type the MIME type of the content + * @param {number=} options.lastModified the last modified timestamp + * @returns a {@link File} with the given properties + */ +export async function toFile( + bits: ToFileInput, + name?: string | null | undefined, + options: FilePropertyBag | undefined = {}, +): Promise { + const args = await newFileArgs(bits, name, options); + return new File(args.bits, args.name, args.options); +} diff --git a/_shims/toFile.ts b/_shims/toFile.ts new file mode 100644 index 000000000..7490d0f1c --- /dev/null +++ b/_shims/toFile.ts @@ -0,0 +1,26 @@ +/// ; + +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +import { type ToFileInput, newFileArgs, type FilePropertyBag } from './newFileArgs'; +import type { FileLike, Uploadable } from './uploadable'; // eslint-disable-line + +/** + * Helper for creating a {@link File} to pass to an SDK upload method from a variety of different data formats + * @param bits the raw content of the file. Can be an {@link Uploadable}, {@link BlobPart}, or {@link AsyncIterable} of {@link BlobPart}s + * @param {string=} name the name of the file. If omitted, toFile will try to determine a file name from bits if possible + * @param {Object=} options additional properties + * @param {string=} options.type the MIME type of the content + * @param {number=} options.lastModified the last modified timestamp + * @returns a {@link File} with the given properties + */ +export async function toFile( + bits: ToFileInput, + name?: string | null | undefined, + options: FilePropertyBag | undefined = {}, +): Promise { + const args = await newFileArgs(bits, name, options); + return new File(args.bits as BlobPart[], args.name, args.options); +} diff --git a/_shims/uploadable.node.ts b/_shims/uploadable.node.ts new file mode 100644 index 000000000..78c4c362f --- /dev/null +++ b/_shims/uploadable.node.ts @@ -0,0 +1,21 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +import { ReadStream } from 'node:fs'; +import { + BlobPart, + Uploadable, + BlobLike, + FileLike, + ResponseLike, + isBlobLike, + isFileLike, + isResponseLike, +} from './uploadable'; + +export { BlobPart, BlobLike, FileLike, ResponseLike, isBlobLike, Uploadable }; + +export const isUploadable = (value: any): value is Uploadable => { + return isFileLike(value) || isResponseLike(value) || value instanceof ReadStream; +}; diff --git a/_shims/uploadable.ts b/_shims/uploadable.ts new file mode 100644 index 000000000..f3a58ac73 --- /dev/null +++ b/_shims/uploadable.ts @@ -0,0 +1,82 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +import type * as fs from 'node:fs'; +import type { toFile } from 'openai/_shims/toFile'; // eslint-disable-line + +export type BlobPart = string | ArrayBuffer | ArrayBufferView | BlobLike | Uint8Array | DataView; + +/** + * Typically, this is a native "File" class. + * + * We provide the {@link toFile} utility to convert a variety of objects + * into the File class. + * + * For convenience, you can also pass a fetch Response + * or, on Node, the result of {@link fs.createReadStream}('./myfile'). + */ +export type Uploadable = FileLike | ResponseLike | fs.ReadStream; + +/** + * Intended to match web.Blob, node.Blob, node-fetch.Blob, etc. + */ +export interface BlobLike { + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/size) */ + readonly size: number; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/type) */ + readonly type: string; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/text) */ + text(): Promise; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/slice) */ + slice(start?: number, end?: number): BlobLike; + // unfortunately @types/node-fetch@^2.6.4 doesn't type the arrayBuffer method +} + +/** + * Intended to match web.File, node.File, node-fetch.File, etc. + */ +export interface FileLike extends BlobLike { + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/File/lastModified) */ + readonly lastModified: number; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/File/name) */ + readonly name: string; +} + +/** + * Intended to match web.Response, node.Response, node-fetch.Response, etc. + */ +export interface ResponseLike { + url: string; + blob(): Promise; +} + +export const isResponseLike = (value: any): value is ResponseLike => + value != null && + typeof value === 'object' && + typeof value.url === 'string' && + typeof value.blob === 'function'; + +export const isFileLike = (value: any): value is FileLike => + value != null && + typeof value === 'object' && + typeof value.name === 'string' && + typeof value.lastModified === 'number' && + isBlobLike(value); + +/** + * The BlobLike type omits arrayBuffer() because @types/node-fetch@^2.6.4 lacks it; but this check + * adds the arrayBuffer() method type because it is available and used at runtime + */ +export const isBlobLike = (value: any): value is BlobLike & { arrayBuffer(): Promise } => + value != null && + typeof value === 'object' && + typeof value.size === 'number' && + typeof value.type === 'string' && + typeof value.text === 'function' && + typeof value.slice === 'function' && + typeof value.arrayBuffer === 'function'; + +export const isUploadable = (value: any): value is Uploadable => { + return isFileLike(value) || isResponseLike(value); +}; diff --git a/api.md b/api.md index 83790ac31..05d1507e4 100644 --- a/api.md +++ b/api.md @@ -16,7 +16,7 @@ Methods: Models: - ChatCompletion -- ChatCompletionEvent +- ChatCompletionChunk Methods: @@ -46,17 +46,17 @@ Methods: Models: -- File +- FileContentResponse +- FileDeletedResponse +- FileResponse - FileListResponse -- FileDeleteResponse -- FileRetrieveFileContentResponse Methods: -- client.files.create({ ...params }) -> File -- client.files.retrieve(fileId) -> File +- client.files.create({ ...params }) -> FileResponse +- client.files.retrieve(fileId) -> FileResponse - client.files.list() -> FileListResponse -- client.files.del(fileId) -> FileDeleteResponse +- client.files.del(fileId) -> FileDeletedResponse - client.files.retrieveFileContent(fileId) -> Promise # Images @@ -94,26 +94,6 @@ Methods: - client.audio.translations.create({ ...params }) -> Translation -# Answers - -Models: - -- AnswerCreateResponse - -Methods: - -- client.answers.create({ ...params }) -> AnswerCreateResponse - -# Classifications - -Models: - -- ClassificationCreateResponse - -Methods: - -- client.classifications.create({ ...params }) -> ClassificationCreateResponse - # Moderations Models: @@ -129,15 +109,15 @@ Methods: Models: -- DeleteModelResponse - ListModelsResponse - Model +- ModelDeletedResponse Methods: - client.models.retrieve(model) -> Model - client.models.list() -> ListModelsResponse -- client.models.del(model) -> DeleteModelResponse +- client.models.del(model) -> ModelDeletedResponse # FineTunes diff --git a/build b/build index f49e6fa6e..5804eb842 100755 --- a/build +++ b/build @@ -6,7 +6,19 @@ rm -rf dist/* yarn tsn check-version.ts # build node: +node scripts/prepare-cjs-build.mjs yarn tsc -p tsconfig.cjs.json yarn tsc-alias -p tsconfig.cjs.json -yarn prettier --write . +node scripts/prepare-esm-build.mjs +yarn tsc -p tsconfig.esm.json +yarn tsc-alias -p tsconfig.esm.json --resolve-full-paths true + +echo '{"type": "module"}' > dist/esm/package.json + +yarn prettier --loglevel=warn --write . + +# smoke test cjs export +node -e 'require("openai")' +# smoke test esm export +node -e 'import("openai")' diff --git a/core.ts b/core.ts index f7d033740..b7f01a5a4 100644 --- a/core.ts +++ b/core.ts @@ -1,18 +1,22 @@ -import qs from 'qs'; - +import type { Readable } from 'node:stream'; import type { Agent } from 'http'; -import type { RequestInfo, RequestInit, Response } from 'node-fetch'; -import { FormData, File, Blob } from 'formdata-node'; -import { FormDataEncoder } from 'form-data-encoder'; -import { Readable } from 'stream'; + +import qs from 'qs'; import { VERSION } from './version'; import { Stream } from './streaming'; import { APIError, APIConnectionError, APIConnectionTimeoutError } from './error'; -import { Fetch, getDefaultAgent, getFetch } from './fetch-polyfill'; +import { getDefaultAgent } from 'openai/_shims/agent'; +import { fetch, isPolyfilled as fetchIsPolyfilled } from 'openai/_shims/fetch'; +import type { RequestInfo, RequestInit, Response } from 'openai/_shims/fetch'; +import { isMultipartBody } from './uploads'; +export { maybeMultipartFormRequestOptions, multipartFormRequestOptions, createForm } from './uploads'; +export type { Uploadable } from 'openai/_shims/uploadable'; const MAX_RETRIES = 2; +type Fetch = (url: RequestInfo, init?: RequestInit) => Promise; + export abstract class APIClient { baseURL: string; maxRetries: number; @@ -38,7 +42,7 @@ export abstract class APIClient { this.timeout = validatePositiveInteger('timeout', timeout); this.httpAgent = httpAgent; - this.fetch = getFetch(); + this.fetch = fetch; } protected authHeaders(): Headers { @@ -112,8 +116,9 @@ export abstract class APIClient { options: FinalRequestOptions, ): { req: RequestInit; url: string; timeout: number } { const { method, path, query, headers: headers = {} } = options; + const body = - options.body instanceof Readable ? options.body + isMultipartBody(options.body) ? options.body.__multipartBody__ : options.body ? JSON.stringify(options.body, null, 2) : null; const contentLength = typeof body === 'string' ? body.length.toString() : null; @@ -133,6 +138,10 @@ export abstract class APIClient { ...this.defaultHeaders(), ...headers, }; + // let builtin fetch set the Content-Type for multipart bodies + if (isMultipartBody(options.body) && !fetchIsPolyfilled) { + delete reqHeaders['Content-Type']; + } // Strip any headers being explicitly omitted with null Object.keys(reqHeaders).forEach((key) => reqHeaders[key] === null && delete reqHeaders[key]); @@ -145,6 +154,7 @@ export abstract class APIClient { }; this.validateHeaders(reqHeaders, headers); + return { req, url, timeout }; } @@ -342,7 +352,7 @@ export abstract class APIClient { } private debug(action: string, ...args: any[]) { - if (process.env['DEBUG'] === 'true') { + if (typeof process !== 'undefined' && process.env['DEBUG'] === 'true') { console.log(`${this.constructor.name}:DEBUG:${action}`, ...args); } } @@ -545,6 +555,7 @@ export type APIResponse = T & { }; declare const Deno: any; +declare const EdgeRuntime: any; type Arch = 'x32' | 'x64' | 'arm' | 'arm64' | `other:${string}` | 'unknown'; type PlatformName = | 'MacOS' @@ -561,7 +572,7 @@ type PlatformProperties = { 'X-Stainless-Package-Version': string; 'X-Stainless-OS': PlatformName; 'X-Stainless-Arch': Arch; - 'X-Stainless-Runtime': 'node' | 'deno' | 'unknown'; + 'X-Stainless-Runtime': 'node' | 'deno' | 'edge' | 'unknown'; 'X-Stainless-Runtime-Version': string; }; const getPlatformProperties = (): PlatformProperties => { @@ -575,7 +586,18 @@ const getPlatformProperties = (): PlatformProperties => { 'X-Stainless-Runtime-Version': Deno.version, }; } - if (typeof process !== 'undefined') { + if (typeof EdgeRuntime !== 'undefined') { + return { + 'X-Stainless-Lang': 'js', + 'X-Stainless-Package-Version': VERSION, + 'X-Stainless-OS': 'Unknown', + 'X-Stainless-Arch': `other:${EdgeRuntime}`, + 'X-Stainless-Runtime': 'edge', + 'X-Stainless-Runtime-Version': process.version, + }; + } + // Check if Node.js + if (Object.prototype.toString.call(typeof process !== 'undefined' ? process : 0) === '[object process]') { return { 'X-Stainless-Lang': 'js', 'X-Stainless-Package-Version': VERSION, @@ -669,81 +691,6 @@ export const castToError = (err: any): Error => { return new Error(err); }; -/** - * Returns a multipart/form-data request if any part of the given request body contains a File / Blob value. - * Otherwise returns the request as is. - */ -export const maybeMultipartFormRequestOptions = >( - opts: RequestOptions, -): RequestOptions => { - // TODO: does this add unreasonable overhead in the case where we shouldn't use multipart/form-data? - const form = createForm(opts.body); - - for (const [_, entry] of form.entries()) { - const value = entry.valueOf(); - if (value instanceof File || value instanceof Blob) { - return getMultipartRequestOptions(form, opts); - } - } - - return opts; -}; - -export const multipartFormRequestOptions = >( - opts: RequestOptions, -): RequestOptions => { - return getMultipartRequestOptions(createForm(opts.body), opts); -}; - -const createForm = >(body: T | undefined): FormData => { - const form = new FormData(); - Object.entries(body || {}).forEach(([key, value]) => addFormValue(form, key, value)); - return form; -}; - -const getMultipartRequestOptions = >( - form: FormData, - opts: RequestOptions, -): RequestOptions => { - const encoder = new FormDataEncoder(form); - return { - ...opts, - headers: { ...opts.headers, ...encoder.headers, 'Content-Length': encoder.contentLength }, - body: Readable.from(encoder), - }; -}; - -const addFormValue = (form: FormData, key: string, value: unknown) => { - if (value == null) { - throw new TypeError( - `null is not a valid form data value, if you want to pass null then you need to use the string 'null'`, - ); - } - - // TODO: make nested formats configurable - if ( - typeof value === 'string' || - typeof value === 'number' || - typeof value === 'boolean' || - value instanceof File || - value instanceof Blob - ) { - form.append(key, value); - } else if (Array.isArray(value)) { - value.forEach((entry) => { - addFormValue(form, key + '[]', entry); - }); - } else if (typeof value === 'object') { - Object.entries(value).forEach(([name, prop]) => { - addFormValue(form, `${key}[${name}]`, prop); - }); - } else { - throw new TypeError( - `Invalid value given to form, expected a string, number, boolean, object, Array, File or Blob but got ${value} instead`, - ); - } -}; - export const ensurePresent = (value: T | null | undefined): T => { if (value == null) throw new Error(`Expected a value to be given but received ${value} instead.`); return value; diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts new file mode 100644 index 000000000..9cf28d4fa --- /dev/null +++ b/ecosystem-tests/cli.ts @@ -0,0 +1,270 @@ +import fs from 'fs/promises'; +import execa from 'execa'; +import yargs from 'yargs'; +import assert from 'assert'; +import path from 'path'; + +const TAR_NAME = 'openai.tgz'; +const PACK_FILE = `.pack/${TAR_NAME}`; + +const projects = { + 'ts-browser-webpack': async () => { + await run('yarn', ['install']); + await installPackage(); + + await run('yarn', ['build']); + }, + 'vercel-edge': async () => { + await run('yarn', ['install']); + await installPackage({ method: 'copy' }); + + await run('yarn', ['build']); + + if (state.deploy) { + await run('yarn', ['vercel', 'deploy', '--prod', '--force']); + } + }, + 'cloudflare-worker': async () => { + await run('yarn', ['install']); + await installPackage(); + + await run('yarn', ['tsc']); + + if (state.live) { + await run('yarn', ['test:ci']); + } + if (state.deploy) { + await run('yarn', ['deploy']); + } + }, + 'node-ts-cjs': async () => { + await run('yarn', ['install']); + await installPackage(); + + await run('yarn', ['tsc']); + + if (state.live) { + await run('yarn', ['test']); + } + }, + 'node-ts-esm': async () => { + await run('yarn', ['install']); + await installPackage(); + + await run('yarn', ['tsc']); + + if (state.live) { + await run('yarn', ['test']); + } + }, + deno: async () => { + await run('deno', ['task', 'install']); + await run('yarn', ['install']); + await installPackage(); + const openaiDir = path.resolve( + process.cwd(), + 'node_modules', + '.deno', + 'openai@3.3.0', + 'node_modules', + 'openai', + ); + + await run('sh', ['-c', 'rm -rf *'], { cwd: openaiDir, stdio: 'inherit' }); + const packFile = getPackFile(); + await run('tar', ['xzf', path.resolve(packFile)], { cwd: openaiDir, stdio: 'inherit' }); + await run('sh', ['-c', 'mv package/* .'], { cwd: openaiDir, stdio: 'inherit' }); + await run('sh', ['-c', 'rm -rf package'], { cwd: openaiDir, stdio: 'inherit' }); + + await run('deno', ['lint']); + if (state.live) await run('deno', ['task', 'test']); + }, +}; + +const projectNames = Object.keys(projects) as Array; + +function parseArgs() { + return yargs(process.argv.slice(2)) + .scriptName('ecosystem-tests') + .usage('run tests using various different project setups') + + .positional('projects', { + type: 'string', + array: true, + choices: projectNames, + }) + + .options({ + verbose: { + type: 'boolean', + default: false, + }, + skipPack: { + type: 'boolean', + default: false, + }, + live: { + type: 'boolean', + default: false, + description: 'Make live API requests', + }, + deploy: { + type: 'boolean', + default: false, + description: 'Push projects to live servers', + }, + }) + .help().argv; +} + +type Args = Awaited>; + +let state: Args & { rootDir: string }; + +async function main() { + const args = (await parseArgs()) as Args; + console.log(`args:`, args); + + const rootDir = await packageDir(); + console.log(`rootDir:`, rootDir); + + state = { ...args, rootDir }; + + process.chdir(rootDir); + + if (!args.skipPack) { + await buildPackage(); + } + + // For some reason `yargs` doesn't pick up the positional args correctly + const projectsToRun = ( + args.projects?.length ? args.projects + : args._.length ? args._ + : projectNames) as typeof projectNames; + console.log(`running projects: ${projectsToRun}`); + + const failed: typeof projectNames = []; + + for (const project of projectsToRun) { + const fn = projects[project]; + + await withChdir(path.join(rootDir, 'ecosystem-tests', project), async () => { + console.log('\n'); + console.log(`----------- ${project} -----------`); + + try { + await fn(); + console.log(`✅ - Successfully ran ${project}`); + } catch (err) { + console.error(err); + failed.push(project); + } + }); + } + + if (failed.length) { + throw new Error(`${failed.length} project(s) failed - ${failed.join(', ')}`); + } +} + +async function buildPackage() { + await run('yarn', ['build']); + + if (!(await pathExists('.pack'))) { + await fs.mkdir('.pack'); + } + + const proc = await run('npm', ['pack', '--json'], { alwaysPipe: true }); + const pack = JSON.parse(proc.stdout); + assert(Array.isArray(pack), `Expected pack output to be an array but got ${typeof pack}`); + assert(pack.length === 1, `Expected pack output to be an array of length 1 but got ${pack.length}`); + + const filename = pack[0].filename; + console.log({ filename }); + + await fs.rename(filename, PACK_FILE); + console.log(`Successfully created tarball at ${PACK_FILE}`); +} + +async function installPackage({ method }: { method: 'reference' | 'copy' } = { method: 'reference' }) { + // TODO: this won't always install, sometimes it will read from a cache + + const packFile = getPackFile(); + + switch (method) { + case 'reference': { + return await run('yarn', ['add', '-D', '--force', packFile]); + } + case 'copy': + await fs.copyFile(packFile, TAR_NAME); + return await run('yarn', ['add', '-D', '--force', './' + TAR_NAME]); + default: + throw checkNever(method); + } +} + +function getPackFile() { + return path.relative(process.cwd(), path.join(state.rootDir, PACK_FILE)); +} + +// ------------------ helpers ------------------ + +interface RunOpts extends execa.Options { + alwaysPipe?: boolean; +} + +async function run(command: string, args: string[], config?: RunOpts): Promise { + if (state.verbose && !config?.alwaysPipe) { + config = { ...config, stdio: 'inherit' }; + } + + console.debug('[run]:', command, ...args); + return await execa(command, args, config); +} + +async function withChdir(newDir: string, fn: () => Promise): Promise { + const oldDir = process.cwd(); + + try { + process.chdir(newDir); + return await fn(); + } finally { + process.chdir(oldDir); + } +} + +function checkNever(x: never, detail: any = x): never { + // eslint-disable-next-line @typescript-eslint/restrict-template-expressions + throw new Error(`checkNever: impossible to call: ${detail}`); +} + +async function pathExists(path: string) { + try { + await fs.access(path); + return true; + } catch (error) { + return false; + } +} + +/** + * Find closest parent directory that contains a file `package.json` + */ +export const packageDir = async (): Promise => { + let currentDir = process.cwd(); + const root = path.parse(currentDir).root; + while (currentDir !== root) { + const filepath = path.resolve(currentDir, 'package.json'); + if (await pathExists(filepath)) { + return currentDir; + } + currentDir = path.resolve(currentDir, '..'); + } + + throw new Error('Package directory not found'); +}; + +main().catch((err) => { + console.error(err); + process.exit(1); +}); diff --git a/ecosystem-tests/cloudflare-worker/.editorconfig b/ecosystem-tests/cloudflare-worker/.editorconfig new file mode 100644 index 000000000..64ab2601f --- /dev/null +++ b/ecosystem-tests/cloudflare-worker/.editorconfig @@ -0,0 +1,13 @@ +# http://editorconfig.org +root = true + +[*] +indent_style = tab +tab_width = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.yml] +indent_style = space diff --git a/ecosystem-tests/cloudflare-worker/.prettierrc b/ecosystem-tests/cloudflare-worker/.prettierrc new file mode 100644 index 000000000..5c7b5d3c7 --- /dev/null +++ b/ecosystem-tests/cloudflare-worker/.prettierrc @@ -0,0 +1,6 @@ +{ + "printWidth": 140, + "singleQuote": true, + "semi": true, + "useTabs": true +} diff --git a/ecosystem-tests/cloudflare-worker/jest.config.cjs b/ecosystem-tests/cloudflare-worker/jest.config.cjs new file mode 100644 index 000000000..508fc0951 --- /dev/null +++ b/ecosystem-tests/cloudflare-worker/jest.config.cjs @@ -0,0 +1,8 @@ +/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ +module.exports = { + transform: {}, + testEnvironment: 'node', + testMatch: ['/tests/*.js'], + watchPathIgnorePatterns: ['/node_modules/'], + verbose: false, +}; diff --git a/ecosystem-tests/cloudflare-worker/package.json b/ecosystem-tests/cloudflare-worker/package.json new file mode 100644 index 000000000..600c029b9 --- /dev/null +++ b/ecosystem-tests/cloudflare-worker/package.json @@ -0,0 +1,24 @@ +{ + "name": "cfw", + "version": "0.0.0", + "private": true, + "type": "module", + "scripts": { + "tsc": "tsc", + "deploy": "wrangler publish", + "start": "wrangler dev", + "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", + "test:ci": "start-server-and-test start http://localhost:8787 test" + }, + "devDependencies": { + "@cloudflare/workers-types": "^4.20230419.0", + "jest": "^29.5.0", + "start-server-and-test": "^2.0.0", + "ts-jest": "^29.1.0", + "typescript": "^5.0.4", + "wrangler": "^3.0.0" + }, + "dependencies": { + "node-fetch": "^3.3.1" + } +} diff --git a/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts b/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts new file mode 100644 index 000000000..b22c1f374 --- /dev/null +++ b/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts @@ -0,0 +1,82 @@ +import OpenAI, { toFile } from 'openai'; + +/** + * Tests uploads using various Web API data objects. + * This is structured to support running these tests on builtins in the environment in + * Node or Cloudflare workers etc. or on polyfills like from node-fetch/formdata-node + */ +export function uploadWebApiTestCases({ + client, + it, + expectEqual, +}: { + /** + * OpenAI client instance + */ + client: OpenAI; + /** + * Jest it() function, or an imitation in envs like Cloudflare workers + */ + it: (desc: string, handler: () => Promise) => void; + /** + * Jest expect(a).toEqual(b) function, or an imitation in envs like Cloudflare workers + */ + expectEqual(a: unknown, b: unknown): void; +}) { + const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; + const filename = 'sample-1.mp3'; + + const correctAnswer = + 'It was anxious to find him no one that expectation of a man who were giving his father enjoyment. But he was avoided in sight in the minister to which indeed,'; + const model = 'whisper-1'; + + it('handles File', async () => { + const file = await fetch(url) + .then((x) => x.arrayBuffer()) + .then((x) => new File([x], filename)); + + const result = await client.audio.transcriptions.create({ file, model }); + expectEqual(result.text, correctAnswer); + }); + + it('handles Response', async () => { + const file = await fetch(url); + + const result = await client.audio.transcriptions.create({ file, model }); + expectEqual(result.text, correctAnswer); + }); + + const fineTune = `{"prompt": "", "completion": ""}`; + + it('toFile handles string', async () => { + // @ts-expect-error we don't type support for `string` to avoid a footgun with passing the file path + const file = await toFile(fineTune, 'finetune.jsonl') + const result = await client.files.create({ file, purpose: 'fine-tune' }); + expectEqual(result.status, 'uploaded'); + }); + it('toFile handles Blob', async () => { + const result = await client.files.create({ file: await toFile(new Blob([fineTune]), 'finetune.jsonl'), purpose: 'fine-tune' }); + expectEqual(result.status, 'uploaded'); + }); + it('toFile handles Uint8Array', async () => { + const result = await client.files.create({ + file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expectEqual(result.status, 'uploaded'); + }); + it('toFile handles ArrayBuffer', async () => { + const result = await client.files.create({ + file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expectEqual(result.status, 'uploaded'); + }); + it('toFile handles DataView', async () => { + const result = await client.files.create({ + file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expectEqual(result.status, 'uploaded'); + }); +} diff --git a/ecosystem-tests/cloudflare-worker/src/worker.ts b/ecosystem-tests/cloudflare-worker/src/worker.ts new file mode 100644 index 000000000..05424de33 --- /dev/null +++ b/ecosystem-tests/cloudflare-worker/src/worker.ts @@ -0,0 +1,69 @@ +import OpenAI from 'openai'; +import { uploadWebApiTestCases } from './uploadWebApiTestCases.js'; +/** + * Welcome to Cloudflare Workers! This is your first worker. + * + * - Run `npm run dev` in your terminal to start a development server + * - Open a browser tab at http://localhost:8787/ to see your worker in action + * - Run `npm run deploy` to publish your worker + * + * Learn more at https://developers.cloudflare.com/workers/ + */ + +export interface Env { + // Example binding to KV. Learn more at https://developers.cloudflare.com/workers/runtime-apis/kv/ + // MY_KV_NAMESPACE: KVNamespace; + // + // Example binding to Durable Object. Learn more at https://developers.cloudflare.com/workers/runtime-apis/durable-objects/ + // MY_DURABLE_OBJECT: DurableObjectNamespace; + // + // Example binding to R2. Learn more at https://developers.cloudflare.com/workers/runtime-apis/r2/ + // MY_BUCKET: R2Bucket; + // + // Example binding to a Service. Learn more at https://developers.cloudflare.com/workers/runtime-apis/service-bindings/ + // MY_SERVICE: Fetcher; + // + // Example binding to a Queue. Learn more at https://developers.cloudflare.com/queues/javascript-apis/ + // MY_QUEUE: Queue; + + OPENAI_API_KEY: string; +} + +type Test = { description: string; handler: () => Promise }; + +export default { + async fetch(request: Request, env: Env, ctx: ExecutionContext): Promise { + const client = new OpenAI({ apiKey: env.OPENAI_API_KEY }); + + const tests: Test[] = []; + function it(description: string, handler: () => Promise) { + tests.push({ description, handler }); + } + function expectEqual(a: any, b: any) { + if (!Object.is(a, b)) { + throw new Error(`expected values to be equal: ${JSON.stringify({ a, b })}`); + } + } + uploadWebApiTestCases({ + client: client as any, + it, + expectEqual, + }); + + let allPassed = true; + const results = []; + + for (const { description, handler } of tests) { + let result; + try { + result = await handler(); + } catch (error) { + allPassed = false; + result = error instanceof Error ? error.stack : String(error); + } + results.push(`${description}\n\n${String(result)}`); + } + + return new Response(allPassed ? 'Passed!' : results.join('\n\n')); + }, +}; diff --git a/ecosystem-tests/cloudflare-worker/tests/test.js b/ecosystem-tests/cloudflare-worker/tests/test.js new file mode 100644 index 000000000..cf7432fcb --- /dev/null +++ b/ecosystem-tests/cloudflare-worker/tests/test.js @@ -0,0 +1,5 @@ +import fetch from 'node-fetch'; + +it('works', async () => { + expect(await (await fetch('http://github.com/service/http://localhost:8787/')).text()).toEqual('Passed!'); +}, 30000); diff --git a/ecosystem-tests/cloudflare-worker/tsconfig.json b/ecosystem-tests/cloudflare-worker/tsconfig.json new file mode 100644 index 000000000..72dc410d8 --- /dev/null +++ b/ecosystem-tests/cloudflare-worker/tsconfig.json @@ -0,0 +1,101 @@ +{ + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ + + /* Projects */ + // "incremental": true, /* Enable incremental compilation */ + // "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */ + // "tsBuildInfoFile": "./", /* Specify the folder for .tsbuildinfo incremental compilation files. */ + // "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects */ + // "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */ + // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */ + + /* Language and Environment */ + "target": "es2021" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */, + "lib": ["es2021"] /* Specify a set of bundled library declaration files that describe the target runtime environment. */, + "jsx": "react" /* Specify what JSX code is generated. */, + // "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */ + // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */ + // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h' */ + // "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */ + // "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.` */ + // "reactNamespace": "", /* Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit. */ + // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */ + // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */ + + /* Modules */ + "module": "es2022" /* Specify what module code is generated. */, + // "rootDir": "./", /* Specify the root folder within your source files. */ + "moduleResolution": "bundler" /* Specify how TypeScript looks up a file from a given module specifier. */, + // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ + // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ + // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ + // "typeRoots": [], /* Specify multiple folders that act like `./node_modules/@types`. */ + "types": ["@cloudflare/workers-types"] /* Specify type package names to be included without being referenced in a source file. */, + // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ + // "resolveJsonModule": true /* Enable importing .json files */, + // "noResolve": true, /* Disallow `import`s, `require`s or ``s from expanding the number of files TypeScript should add to a project. */ + + /* JavaScript Support */ + "allowJs": true /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */, + "checkJs": false /* Enable error reporting in type-checked JavaScript files. */, + // "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`. */ + + /* Emit */ + // "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ + // "declarationMap": true, /* Create sourcemaps for d.ts files. */ + // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */ + // "sourceMap": true, /* Create source map files for emitted JavaScript files. */ + // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output. */ + // "outDir": "./", /* Specify an output folder for all emitted files. */ + // "removeComments": true, /* Disable emitting comments. */ + "noEmit": true /* Disable emitting files from a compilation. */, + // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */ + // "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types */ + // "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */ + // "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */ + // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ + // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */ + // "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */ + // "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */ + // "newLine": "crlf", /* Set the newline character for emitting files. */ + // "stripInternal": true, /* Disable emitting declarations that have `@internal` in their JSDoc comments. */ + // "noEmitHelpers": true, /* Disable generating custom helper functions like `__extends` in compiled output. */ + // "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */ + // "preserveConstEnums": true, /* Disable erasing `const enum` declarations in generated code. */ + // "declarationDir": "./", /* Specify the output directory for generated declaration files. */ + // "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */ + + /* Interop Constraints */ + "isolatedModules": true /* Ensure that each file can be safely transpiled without relying on other imports. */, + "allowSyntheticDefaultImports": true /* Allow 'import x from y' when a module doesn't have a default export. */, + // "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */, + // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */ + "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, + + /* Type Checking */ + "strict": true /* Enable all strict type-checking options. */, + // "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied `any` type.. */ + // "strictNullChecks": true, /* When type checking, take into account `null` and `undefined`. */ + // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */ + // "strictBindCallApply": true, /* Check that the arguments for `bind`, `call`, and `apply` methods match the original function. */ + // "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */ + // "noImplicitThis": true, /* Enable error reporting when `this` is given the type `any`. */ + // "useUnknownInCatchVariables": true, /* Type catch clause variables as 'unknown' instead of 'any'. */ + // "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */ + // "noUnusedLocals": true, /* Enable error reporting when a local variables aren't read. */ + // "noUnusedParameters": true, /* Raise an error when a function parameter isn't read */ + // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */ + // "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */ + // "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */ + // "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */ + // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */ + // "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type */ + // "allowUnusedLabels": true, /* Disable error reporting for unused labels. */ + // "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */ + + /* Completeness */ + // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ + "skipLibCheck": true /* Skip type checking all .d.ts files. */ + } +} diff --git a/ecosystem-tests/cloudflare-worker/wrangler.toml b/ecosystem-tests/cloudflare-worker/wrangler.toml new file mode 100644 index 000000000..e693724f4 --- /dev/null +++ b/ecosystem-tests/cloudflare-worker/wrangler.toml @@ -0,0 +1,43 @@ +name = "cfw" +main = "src/worker.ts" +compatibility_date = "2023-06-18" +#node_compat = true + +# # KV Namespace binding - For more information: https://developers.cloudflare.com/workers/runtime-apis/kv +# [[kv_namespaces]] +# binding = "MY_KV_NAMESPACE" +# id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + +# # Durable Object binding - For more information: https://developers.cloudflare.com/workers/runtime-apis/durable-objects +# [[durable_objects]] +# binding = "MY_DURABLE_OBJECT" +# class_name = "MyDurableObject" + +# # Bucket binding - For more information: https://developers.cloudflare.com/workers/runtime-apis/kv#bucket +# [[buckets]] +# binding = "MY_BUCKET" +# name = "my-bucket" +# bucket_id = "yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy" + +# # Service binding - For more information: https://developers.cloudflare.com/workers/platform/services +# [[routes]] +# binding = "MY_SERVICE" +# pattern = "/api/*" +# script = "api.js" + +# # Queue binding - For more information: https://developers.cloudflare.com/workers/runtime-apis/queues +# [[queues]] +# binding = "MY_QUEUE" +# name = "my-queue" +# zone_id = "zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz" + +# [env.production] +# MY_VARIABLE = "production_value" + +# [env.staging] +# MY_VARIABLE = "staging_value" + +# [env.shared] +# SHARED_VARIABLE = "shared_value" + +[vars] diff --git a/ecosystem-tests/cloudflare-worker/yarn.lock b/ecosystem-tests/cloudflare-worker/yarn.lock new file mode 100644 index 000000000..aad239ceb --- /dev/null +++ b/ecosystem-tests/cloudflare-worker/yarn.lock @@ -0,0 +1,3377 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@ampproject/remapping@^2.2.0": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" + integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== + dependencies: + "@jridgewell/gen-mapping" "^0.3.0" + "@jridgewell/trace-mapping" "^0.3.9" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658" + integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ== + dependencies: + "@babel/highlight" "^7.22.5" + +"@babel/compat-data@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.5.tgz#b1f6c86a02d85d2dd3368a2b67c09add8cd0c255" + integrity sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA== + +"@babel/core@^7.11.6", "@babel/core@^7.12.3": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.5.tgz#d67d9747ecf26ee7ecd3ebae1ee22225fe902a89" + integrity sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.22.5" + "@babel/generator" "^7.22.5" + "@babel/helper-compilation-targets" "^7.22.5" + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helpers" "^7.22.5" + "@babel/parser" "^7.22.5" + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.5" + "@babel/types" "^7.22.5" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.2" + semver "^6.3.0" + +"@babel/generator@^7.22.5", "@babel/generator@^7.7.2": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.5.tgz#1e7bf768688acfb05cf30b2369ef855e82d984f7" + integrity sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA== + dependencies: + "@babel/types" "^7.22.5" + "@jridgewell/gen-mapping" "^0.3.2" + "@jridgewell/trace-mapping" "^0.3.17" + jsesc "^2.5.1" + +"@babel/helper-compilation-targets@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz#fc7319fc54c5e2fa14b2909cf3c5fd3046813e02" + integrity sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw== + dependencies: + "@babel/compat-data" "^7.22.5" + "@babel/helper-validator-option" "^7.22.5" + browserslist "^4.21.3" + lru-cache "^5.1.1" + semver "^6.3.0" + +"@babel/helper-environment-visitor@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98" + integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q== + +"@babel/helper-function-name@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be" + integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ== + dependencies: + "@babel/template" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/helper-hoist-variables@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" + integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-module-imports@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c" + integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-module-transforms@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz#0f65daa0716961b6e96b164034e737f60a80d2ef" + integrity sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw== + dependencies: + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-module-imports" "^7.22.5" + "@babel/helper-simple-access" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.5" + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" + integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== + +"@babel/helper-simple-access@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" + integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-split-export-declaration@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz#88cf11050edb95ed08d596f7a044462189127a08" + integrity sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-string-parser@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" + integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== + +"@babel/helper-validator-identifier@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193" + integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== + +"@babel/helper-validator-option@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac" + integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw== + +"@babel/helpers@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.5.tgz#74bb4373eb390d1ceed74a15ef97767e63120820" + integrity sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q== + dependencies: + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/highlight@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.5.tgz#aa6c05c5407a67ebce408162b7ede789b4d22031" + integrity sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw== + dependencies: + "@babel/helper-validator-identifier" "^7.22.5" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.5.tgz#721fd042f3ce1896238cf1b341c77eb7dee7dbea" + integrity sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q== + +"@babel/plugin-syntax-async-generators@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-bigint@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" + integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.8.3": + version "7.12.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-import-meta@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-json-strings@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-jsx@^7.7.2": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918" + integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-logical-assignment-operators@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-top-level-await@^7.8.3": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-typescript@^7.7.2": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz#aac8d383b062c5072c647a31ef990c1d0af90272" + integrity sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/template@^7.22.5", "@babel/template@^7.3.3": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.5.tgz#0c8c4d944509875849bd0344ff0050756eefc6ec" + integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw== + dependencies: + "@babel/code-frame" "^7.22.5" + "@babel/parser" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/traverse@^7.22.5", "@babel/traverse@^7.7.2": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.5.tgz#44bd276690db6f4940fdb84e1cb4abd2f729ccd1" + integrity sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ== + dependencies: + "@babel/code-frame" "^7.22.5" + "@babel/generator" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.5" + "@babel/parser" "^7.22.5" + "@babel/types" "^7.22.5" + debug "^4.1.0" + globals "^11.1.0" + +"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.22.5", "@babel/types@^7.3.3": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.5.tgz#cd93eeaab025880a3a47ec881f4b096a5b786fbe" + integrity sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA== + dependencies: + "@babel/helper-string-parser" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.5" + to-fast-properties "^2.0.0" + +"@bcoe/v8-coverage@^0.2.3": + version "0.2.3" + resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" + integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== + +"@cloudflare/kv-asset-handler@^0.2.0": + version "0.2.0" + resolved "https://registry.yarnpkg.com/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.2.0.tgz#c9959bbd7a1c40bd7c674adae98aa8c8d0e5ca68" + integrity sha512-MVbXLbTcAotOPUj0pAMhVtJ+3/kFkwJqc5qNOleOZTv6QkZZABDMS21dSrSlVswEHwrpWC03e4fWytjqKvuE2A== + dependencies: + mime "^3.0.0" + +"@cloudflare/workerd-darwin-64@1.20230518.0": + version "1.20230518.0" + resolved "https://registry.yarnpkg.com/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20230518.0.tgz#d2c951670e11fa9263311dbb64d87c859cb88264" + integrity sha512-reApIf2/do6GjLlajU6LbRYh8gm/XcaRtzGbF8jo5IzyDSsdStmfNuvq7qssZXG92219Yp1kuTgR9+D1GGZGbg== + +"@cloudflare/workerd-darwin-arm64@1.20230518.0": + version "1.20230518.0" + resolved "https://registry.yarnpkg.com/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20230518.0.tgz#ca8422ada85583426fef2bd882da188e23d1ca3b" + integrity sha512-1l+xdbmPddqb2YIHd1YJ3YG/Fl1nhayzcxfL30xfNS89zJn9Xn3JomM0XMD4mk0d5GruBP3q8BQZ1Uo4rRLF3A== + +"@cloudflare/workerd-linux-64@1.20230518.0": + version "1.20230518.0" + resolved "https://registry.yarnpkg.com/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20230518.0.tgz#cc4039db047683866f5cd70b2d24d62548f36b31" + integrity sha512-/pfR+YBpMOPr2cAlwjtInil0hRZjD8KX9LqK9JkfkEiaBH8CYhnJQcOdNHZI+3OjcY09JnQtEVC5xC4nbW7Bvw== + +"@cloudflare/workerd-linux-arm64@1.20230518.0": + version "1.20230518.0" + resolved "https://registry.yarnpkg.com/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20230518.0.tgz#c0e5983492390c719ce6fbbb0241de8fa4a43d8c" + integrity sha512-q3HQvn3J4uEkE0cfDAGG8zqzSZrD47cavB/Tzv4mNutqwg6B4wL3ifjtGeB55tnP2K2KL0GVmX4tObcvpUF4BA== + +"@cloudflare/workerd-windows-64@1.20230518.0": + version "1.20230518.0" + resolved "https://registry.yarnpkg.com/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20230518.0.tgz#d0dcf6b51a1b6593e1c70b04e001bebcf2b703c1" + integrity sha512-vNEHKS5gKKduNOBYtQjcBopAmFT1iScuPWMZa2nJboSjOB9I/5oiVsUpSyk5Y2ARyrohXNz0y8D7p87YzTASWw== + +"@cloudflare/workers-types@^4.20230419.0": + version "4.20230518.0" + resolved "https://registry.yarnpkg.com/@cloudflare/workers-types/-/workers-types-4.20230518.0.tgz#de1b0f71d68e2eac1b546542968ea2b837cb967e" + integrity sha512-A0w1V+5SUawGaaPRlhFhSC/SCDT9oQG8TMoWOKFLA4qbqagELqEAFD4KySBIkeVOvCBLT1DZSYBMCxbXddl0kw== + +"@esbuild-plugins/node-globals-polyfill@^0.1.1": + version "0.1.1" + resolved "https://registry.yarnpkg.com/@esbuild-plugins/node-globals-polyfill/-/node-globals-polyfill-0.1.1.tgz#a313ab3efbb2c17c8ce376aa216c627c9b40f9d7" + integrity sha512-MR0oAA+mlnJWrt1RQVQ+4VYuRJW/P2YmRTv1AsplObyvuBMnPHiizUF95HHYiSsMGLhyGtWufaq2XQg6+iurBg== + +"@esbuild-plugins/node-modules-polyfill@^0.1.4": + version "0.1.4" + resolved "https://registry.yarnpkg.com/@esbuild-plugins/node-modules-polyfill/-/node-modules-polyfill-0.1.4.tgz#eb2f55da11967b2986c913f1a7957d1c868849c0" + integrity sha512-uZbcXi0zbmKC/050p3gJnne5Qdzw8vkXIv+c2BW0Lsc1ji1SkrxbKPUy5Efr0blbTu1SL8w4eyfpnSdPg3G0Qg== + dependencies: + escape-string-regexp "^4.0.0" + rollup-plugin-node-polyfills "^0.2.1" + +"@esbuild/android-arm64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.16.3.tgz#6af6d16be6d534d776a51fc215bfd81a68906d2c" + integrity sha512-RolFVeinkeraDvN/OoRf1F/lP0KUfGNb5jxy/vkIMeRRChkrX/HTYN6TYZosRJs3a1+8wqpxAo5PI5hFmxyPRg== + +"@esbuild/android-arm@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.16.3.tgz#2a091222f3b1928e3246fb3c5202eaca88baab67" + integrity sha512-mueuEoh+s1eRbSJqq9KNBQwI4QhQV6sRXIfTyLXSHGMpyew61rOK4qY21uKbXl1iBoMb0AdL1deWFCQVlN2qHA== + +"@esbuild/android-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.16.3.tgz#a6d749c58b022d371dc40d50ac1bb4aebd1eb953" + integrity sha512-SFpTUcIT1bIJuCCBMCQWq1bL2gPTjWoLZdjmIhjdcQHaUfV41OQfho6Ici5uvvkMmZRXIUGpM3GxysP/EU7ifQ== + +"@esbuild/darwin-arm64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.16.3.tgz#92d1826ed2f21dcac5830b70d7215c6afbb744e2" + integrity sha512-DO8WykMyB+N9mIDfI/Hug70Dk1KipavlGAecxS3jDUwAbTpDXj0Lcwzw9svkhxfpCagDmpaTMgxWK8/C/XcXvw== + +"@esbuild/darwin-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.16.3.tgz#7fc3570c2b16e9ff4fc178593a0a4adb1ae8ea57" + integrity sha512-uEqZQ2omc6BvWqdCiyZ5+XmxuHEi1SPzpVxXCSSV2+Sh7sbXbpeNhHIeFrIpRjAs0lI1FmA1iIOxFozKBhKgRQ== + +"@esbuild/freebsd-arm64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.3.tgz#16735ce16f8c9a4e7289e9e259aa01a8d9874307" + integrity sha512-nJansp3sSXakNkOD5i5mIz2Is/HjzIhFs49b1tjrPrpCmwgBmH9SSzhC/Z1UqlkivqMYkhfPwMw1dGFUuwmXhw== + +"@esbuild/freebsd-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.16.3.tgz#f4edd1464cb072799ed6b8ab5178478e71c13459" + integrity sha512-TfoDzLw+QHfc4a8aKtGSQ96Wa+6eimljjkq9HKR0rHlU83vw8aldMOUSJTUDxbcUdcgnJzPaX8/vGWm7vyV7ug== + +"@esbuild/linux-arm64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.16.3.tgz#4b7ae6fe3618d9a40d6ca39c6edc991ac1447203" + integrity sha512-7I3RlsnxEFCHVZNBLb2w7unamgZ5sVwO0/ikE2GaYvYuUQs9Qte/w7TqWcXHtCwxvZx/2+F97ndiUQAWs47ZfQ== + +"@esbuild/linux-arm@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.16.3.tgz#4b3e9f849822e16a76a70844c4db68075b259a58" + integrity sha512-VwswmSYwVAAq6LysV59Fyqk3UIjbhuc6wb3vEcJ7HEJUtFuLK9uXWuFoH1lulEbE4+5GjtHi3MHX+w1gNHdOWQ== + +"@esbuild/linux-ia32@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.16.3.tgz#2ff3936b91bfff62f9ecf7f6411ef399b29ed22d" + integrity sha512-X8FDDxM9cqda2rJE+iblQhIMYY49LfvW4kaEjoFbTTQ4Go8G96Smj2w3BRTwA8IHGoi9dPOPGAX63dhuv19UqA== + +"@esbuild/linux-loong64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.16.3.tgz#ff8aa59f49d9ccbc1ff952ba1f5cd01a534562df" + integrity sha512-hIbeejCOyO0X9ujfIIOKjBjNAs9XD/YdJ9JXAy1lHA+8UXuOqbFe4ErMCqMr8dhlMGBuvcQYGF7+kO7waj2KHw== + +"@esbuild/linux-mips64el@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.16.3.tgz#5dd5e118071c3912df69beedbfd11fb117f0fe5e" + integrity sha512-znFRzICT/V8VZQMt6rjb21MtAVJv/3dmKRMlohlShrbVXdBuOdDrGb+C2cZGQAR8RFyRe7HS6klmHq103WpmVw== + +"@esbuild/linux-ppc64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.16.3.tgz#36c62e24eae7fa3f0d921506da8fc1e6098a1364" + integrity sha512-EV7LuEybxhXrVTDpbqWF2yehYRNz5e5p+u3oQUS2+ZFpknyi1NXxr8URk4ykR8Efm7iu04//4sBg249yNOwy5Q== + +"@esbuild/linux-riscv64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.16.3.tgz#f0fec8e7affb5bcc817fefc61a21cbb95539e393" + integrity sha512-uDxqFOcLzFIJ+r/pkTTSE9lsCEaV/Y6rMlQjUI9BkzASEChYL/aSQjZjchtEmdnVxDKETnUAmsaZ4pqK1eE5BQ== + +"@esbuild/linux-s390x@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.16.3.tgz#22e10edd6e91f53c2e1f60e46abd453d7794409b" + integrity sha512-NbeREhzSxYwFhnCAQOQZmajsPYtX71Ufej3IQ8W2Gxskfz9DK58ENEju4SbpIj48VenktRASC52N5Fhyf/aliQ== + +"@esbuild/linux-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.16.3.tgz#38388b73fd9eebe45b073d7d8099b9c2e54f7139" + integrity sha512-SDiG0nCixYO9JgpehoKgScwic7vXXndfasjnD5DLbp1xltANzqZ425l7LSdHynt19UWOcDjG9wJJzSElsPvk0w== + +"@esbuild/netbsd-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.16.3.tgz#e0270569567f1530b8dbe6d11d5b4930b9cc71ae" + integrity sha512-AzbsJqiHEq1I/tUvOfAzCY15h4/7Ivp3ff/o1GpP16n48JMNAtbW0qui2WCgoIZArEHD0SUQ95gvR0oSO7ZbdA== + +"@esbuild/openbsd-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.16.3.tgz#3b16642d443848bca605f33ee3978a1890911e6d" + integrity sha512-gSABi8qHl8k3Cbi/4toAzHiykuBuWLZs43JomTcXkjMZVkp0gj3gg9mO+9HJW/8GB5H89RX/V0QP4JGL7YEEVg== + +"@esbuild/sunos-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.16.3.tgz#a838f247867380f0ae25ce1936dc5ab6f57b7734" + integrity sha512-SF9Kch5Ete4reovvRO6yNjMxrvlfT0F0Flm+NPoUw5Z4Q3r1d23LFTgaLwm3Cp0iGbrU/MoUI+ZqwCv5XJijCw== + +"@esbuild/win32-arm64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.16.3.tgz#bedd9bef5fb41f89ce2599f1761973cf6d6a67b6" + integrity sha512-u5aBonZIyGopAZyOnoPAA6fGsDeHByZ9CnEzyML9NqntK6D/xl5jteZUKm/p6nD09+v3pTM6TuUIqSPcChk5gg== + +"@esbuild/win32-ia32@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.16.3.tgz#49800aa812d8cc35ceef61e8d3b01224684cc0b1" + integrity sha512-GlgVq1WpvOEhNioh74TKelwla9KDuAaLZrdxuuUgsP2vayxeLgVc+rbpIv0IYF4+tlIzq2vRhofV+KGLD+37EQ== + +"@esbuild/win32-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.16.3.tgz#94047dae921949cfb308117d993c4b941291ae10" + integrity sha512-5/JuTd8OWW8UzEtyf19fbrtMJENza+C9JoPIkvItgTBQ1FO2ZLvjbPO6Xs54vk0s5JB5QsfieUEshRQfu7ZHow== + +"@hapi/hoek@^9.0.0": + version "9.3.0" + resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" + integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== + +"@hapi/topo@^5.0.0": + version "5.1.0" + resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" + integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@istanbuljs/load-nyc-config@^1.0.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" + integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== + dependencies: + camelcase "^5.3.1" + find-up "^4.1.0" + get-package-type "^0.1.0" + js-yaml "^3.13.1" + resolve-from "^5.0.0" + +"@istanbuljs/schema@^0.1.2": + version "0.1.3" + resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" + integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== + +"@jest/console@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.5.0.tgz#593a6c5c0d3f75689835f1b3b4688c4f8544cb57" + integrity sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ== + dependencies: + "@jest/types" "^29.5.0" + "@types/node" "*" + chalk "^4.0.0" + jest-message-util "^29.5.0" + jest-util "^29.5.0" + slash "^3.0.0" + +"@jest/core@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.5.0.tgz#76674b96904484e8214614d17261cc491e5f1f03" + integrity sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ== + dependencies: + "@jest/console" "^29.5.0" + "@jest/reporters" "^29.5.0" + "@jest/test-result" "^29.5.0" + "@jest/transform" "^29.5.0" + "@jest/types" "^29.5.0" + "@types/node" "*" + ansi-escapes "^4.2.1" + chalk "^4.0.0" + ci-info "^3.2.0" + exit "^0.1.2" + graceful-fs "^4.2.9" + jest-changed-files "^29.5.0" + jest-config "^29.5.0" + jest-haste-map "^29.5.0" + jest-message-util "^29.5.0" + jest-regex-util "^29.4.3" + jest-resolve "^29.5.0" + jest-resolve-dependencies "^29.5.0" + jest-runner "^29.5.0" + jest-runtime "^29.5.0" + jest-snapshot "^29.5.0" + jest-util "^29.5.0" + jest-validate "^29.5.0" + jest-watcher "^29.5.0" + micromatch "^4.0.4" + pretty-format "^29.5.0" + slash "^3.0.0" + strip-ansi "^6.0.0" + +"@jest/environment@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.5.0.tgz#9152d56317c1fdb1af389c46640ba74ef0bb4c65" + integrity sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ== + dependencies: + "@jest/fake-timers" "^29.5.0" + "@jest/types" "^29.5.0" + "@types/node" "*" + jest-mock "^29.5.0" + +"@jest/expect-utils@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.5.0.tgz#f74fad6b6e20f924582dc8ecbf2cb800fe43a036" + integrity sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg== + dependencies: + jest-get-type "^29.4.3" + +"@jest/expect@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.5.0.tgz#80952f5316b23c483fbca4363ce822af79c38fba" + integrity sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g== + dependencies: + expect "^29.5.0" + jest-snapshot "^29.5.0" + +"@jest/fake-timers@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.5.0.tgz#d4d09ec3286b3d90c60bdcd66ed28d35f1b4dc2c" + integrity sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg== + dependencies: + "@jest/types" "^29.5.0" + "@sinonjs/fake-timers" "^10.0.2" + "@types/node" "*" + jest-message-util "^29.5.0" + jest-mock "^29.5.0" + jest-util "^29.5.0" + +"@jest/globals@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.5.0.tgz#6166c0bfc374c58268677539d0c181f9c1833298" + integrity sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ== + dependencies: + "@jest/environment" "^29.5.0" + "@jest/expect" "^29.5.0" + "@jest/types" "^29.5.0" + jest-mock "^29.5.0" + +"@jest/reporters@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.5.0.tgz#985dfd91290cd78ddae4914ba7921bcbabe8ac9b" + integrity sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA== + dependencies: + "@bcoe/v8-coverage" "^0.2.3" + "@jest/console" "^29.5.0" + "@jest/test-result" "^29.5.0" + "@jest/transform" "^29.5.0" + "@jest/types" "^29.5.0" + "@jridgewell/trace-mapping" "^0.3.15" + "@types/node" "*" + chalk "^4.0.0" + collect-v8-coverage "^1.0.0" + exit "^0.1.2" + glob "^7.1.3" + graceful-fs "^4.2.9" + istanbul-lib-coverage "^3.0.0" + istanbul-lib-instrument "^5.1.0" + istanbul-lib-report "^3.0.0" + istanbul-lib-source-maps "^4.0.0" + istanbul-reports "^3.1.3" + jest-message-util "^29.5.0" + jest-util "^29.5.0" + jest-worker "^29.5.0" + slash "^3.0.0" + string-length "^4.0.1" + strip-ansi "^6.0.0" + v8-to-istanbul "^9.0.1" + +"@jest/schemas@^29.4.3": + version "29.4.3" + resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.4.3.tgz#39cf1b8469afc40b6f5a2baaa146e332c4151788" + integrity sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg== + dependencies: + "@sinclair/typebox" "^0.25.16" + +"@jest/source-map@^29.4.3": + version "29.4.3" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.4.3.tgz#ff8d05cbfff875d4a791ab679b4333df47951d20" + integrity sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w== + dependencies: + "@jridgewell/trace-mapping" "^0.3.15" + callsites "^3.0.0" + graceful-fs "^4.2.9" + +"@jest/test-result@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.5.0.tgz#7c856a6ca84f45cc36926a4e9c6b57f1973f1408" + integrity sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ== + dependencies: + "@jest/console" "^29.5.0" + "@jest/types" "^29.5.0" + "@types/istanbul-lib-coverage" "^2.0.0" + collect-v8-coverage "^1.0.0" + +"@jest/test-sequencer@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz#34d7d82d3081abd523dbddc038a3ddcb9f6d3cc4" + integrity sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ== + dependencies: + "@jest/test-result" "^29.5.0" + graceful-fs "^4.2.9" + jest-haste-map "^29.5.0" + slash "^3.0.0" + +"@jest/transform@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.5.0.tgz#cf9c872d0965f0cbd32f1458aa44a2b1988b00f9" + integrity sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw== + dependencies: + "@babel/core" "^7.11.6" + "@jest/types" "^29.5.0" + "@jridgewell/trace-mapping" "^0.3.15" + babel-plugin-istanbul "^6.1.1" + chalk "^4.0.0" + convert-source-map "^2.0.0" + fast-json-stable-stringify "^2.1.0" + graceful-fs "^4.2.9" + jest-haste-map "^29.5.0" + jest-regex-util "^29.4.3" + jest-util "^29.5.0" + micromatch "^4.0.4" + pirates "^4.0.4" + slash "^3.0.0" + write-file-atomic "^4.0.2" + +"@jest/types@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.5.0.tgz#f59ef9b031ced83047c67032700d8c807d6e1593" + integrity sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog== + dependencies: + "@jest/schemas" "^29.4.3" + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^17.0.8" + chalk "^4.0.0" + +"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": + version "0.3.3" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" + integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/resolve-uri@3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + +"@jridgewell/sourcemap-codec@1.4.14": + version "1.4.14" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + +"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.15", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.18" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" + integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== + dependencies: + "@jridgewell/resolve-uri" "3.1.0" + "@jridgewell/sourcemap-codec" "1.4.14" + +"@sideway/address@^4.1.3": + version "4.1.4" + resolved "https://registry.yarnpkg.com/@sideway/address/-/address-4.1.4.tgz#03dccebc6ea47fdc226f7d3d1ad512955d4783f0" + integrity sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@sideway/formula@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.1.tgz#80fcbcbaf7ce031e0ef2dd29b1bfc7c3f583611f" + integrity sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg== + +"@sideway/pinpoint@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" + integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== + +"@sinclair/typebox@^0.25.16": + version "0.25.24" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.25.24.tgz#8c7688559979f7079aacaf31aa881c3aa410b718" + integrity sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ== + +"@sinonjs/commons@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.0.tgz#beb434fe875d965265e04722ccfc21df7f755d72" + integrity sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA== + dependencies: + type-detect "4.0.8" + +"@sinonjs/fake-timers@^10.0.2": + version "10.3.0" + resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz#55fdff1ecab9f354019129daf4df0dd4d923ea66" + integrity sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA== + dependencies: + "@sinonjs/commons" "^3.0.0" + +"@types/babel__core@^7.1.14": + version "7.20.1" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.1.tgz#916ecea274b0c776fec721e333e55762d3a9614b" + integrity sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw== + dependencies: + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + "@types/babel__generator" "*" + "@types/babel__template" "*" + "@types/babel__traverse" "*" + +"@types/babel__generator@*": + version "7.6.4" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7" + integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== + dependencies: + "@babel/types" "^7.0.0" + +"@types/babel__template@*": + version "7.4.1" + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" + integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + +"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": + version "7.20.1" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.1.tgz#dd6f1d2411ae677dcb2db008c962598be31d6acf" + integrity sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg== + dependencies: + "@babel/types" "^7.20.7" + +"@types/graceful-fs@^4.1.3": + version "4.1.6" + resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.6.tgz#e14b2576a1c25026b7f02ede1de3b84c3a1efeae" + integrity sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw== + dependencies: + "@types/node" "*" + +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" + integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== + +"@types/istanbul-lib-report@*": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" + integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== + dependencies: + "@types/istanbul-lib-coverage" "*" + +"@types/istanbul-reports@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" + integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== + dependencies: + "@types/istanbul-lib-report" "*" + +"@types/node-fetch@^2.6.4": + version "2.6.4" + resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.4.tgz#1bc3a26de814f6bf466b25aeb1473fa1afe6a660" + integrity sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg== + dependencies: + "@types/node" "*" + form-data "^3.0.0" + +"@types/node@*": + version "20.3.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.3.1.tgz#e8a83f1aa8b649377bb1fb5d7bac5cb90e784dfe" + integrity sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg== + +"@types/node@^18.11.18": + version "18.16.18" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.18.tgz#85da09bafb66d4bc14f7c899185336d0c1736390" + integrity sha512-/aNaQZD0+iSBAGnvvN2Cx92HqE5sZCPZtx2TsK+4nvV23fFe09jVDvpArXr2j9DnYlzuU9WuoykDDc6wqvpNcw== + +"@types/prettier@^2.1.5": + version "2.7.3" + resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.3.tgz#3e51a17e291d01d17d3fc61422015a933af7a08f" + integrity sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA== + +"@types/qs@^6.9.7": + version "6.9.7" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" + integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== + +"@types/stack-utils@^2.0.0": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" + integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== + +"@types/yargs-parser@*": + version "21.0.0" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" + integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== + +"@types/yargs@^17.0.8": + version "17.0.24" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.24.tgz#b3ef8d50ad4aa6aecf6ddc97c580a00f5aa11902" + integrity sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw== + dependencies: + "@types/yargs-parser" "*" + +abort-controller@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" + integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== + dependencies: + event-target-shim "^5.0.0" + +acorn-walk@^8.2.0: + version "8.2.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" + integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== + +acorn@^8.8.0: + version "8.9.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.9.0.tgz#78a16e3b2bcc198c10822786fa6679e245db5b59" + integrity sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ== + +agentkeepalive@^4.2.1: + version "4.3.0" + resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.3.0.tgz#bb999ff07412653c1803b3ced35e50729830a255" + integrity sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg== + dependencies: + debug "^4.1.0" + depd "^2.0.0" + humanize-ms "^1.2.1" + +ansi-escapes@^4.2.1: + version "4.3.2" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +ansi-styles@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" + integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== + +anymatch@^3.0.3, anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +arg@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" + integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +as-table@^1.0.36: + version "1.0.55" + resolved "https://registry.yarnpkg.com/as-table/-/as-table-1.0.55.tgz#dc984da3937745de902cea1d45843c01bdbbec4f" + integrity sha512-xvsWESUJn0JN421Xb9MQw6AsMHRCUknCe0Wjlxvjud80mU4E6hQf1A6NzQKcYNmYw62MfzEtXc+badstZP3JpQ== + dependencies: + printable-characters "^1.0.42" + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== + +axios@^0.27.2: + version "0.27.2" + resolved "https://registry.yarnpkg.com/axios/-/axios-0.27.2.tgz#207658cc8621606e586c85db4b41a750e756d972" + integrity sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ== + dependencies: + follow-redirects "^1.14.9" + form-data "^4.0.0" + +babel-jest@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.5.0.tgz#3fe3ddb109198e78b1c88f9ebdecd5e4fc2f50a5" + integrity sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q== + dependencies: + "@jest/transform" "^29.5.0" + "@types/babel__core" "^7.1.14" + babel-plugin-istanbul "^6.1.1" + babel-preset-jest "^29.5.0" + chalk "^4.0.0" + graceful-fs "^4.2.9" + slash "^3.0.0" + +babel-plugin-istanbul@^6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" + integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@istanbuljs/load-nyc-config" "^1.0.0" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-instrument "^5.0.4" + test-exclude "^6.0.0" + +babel-plugin-jest-hoist@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz#a97db437936f441ec196990c9738d4b88538618a" + integrity sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w== + dependencies: + "@babel/template" "^7.3.3" + "@babel/types" "^7.3.3" + "@types/babel__core" "^7.1.14" + "@types/babel__traverse" "^7.0.6" + +babel-preset-current-node-syntax@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" + integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== + dependencies: + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-bigint" "^7.8.3" + "@babel/plugin-syntax-class-properties" "^7.8.3" + "@babel/plugin-syntax-import-meta" "^7.8.3" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.8.3" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-top-level-await" "^7.8.3" + +babel-preset-jest@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz#57bc8cc88097af7ff6a5ab59d1cd29d52a5916e2" + integrity sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg== + dependencies: + babel-plugin-jest-hoist "^29.5.0" + babel-preset-current-node-syntax "^1.0.0" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base-64@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb" + integrity sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA== + +base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +better-sqlite3@^8.1.0: + version "8.4.0" + resolved "https://registry.yarnpkg.com/better-sqlite3/-/better-sqlite3-8.4.0.tgz#aa27bbc6bb42bb438fc55c88b146fcfe5978fa76" + integrity sha512-NmsNW1CQvqMszu/CFAJ3pLct6NEFlNfuGM6vw72KHkjOD1UDnL96XNN1BMQc1hiHo8vE2GbOWQYIpZ+YM5wrZw== + dependencies: + bindings "^1.5.0" + prebuild-install "^7.1.0" + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +bindings@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + +bl@^4.0.3: + version "4.1.0" + resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + +blake3-wasm@^2.1.5: + version "2.1.5" + resolved "https://registry.yarnpkg.com/blake3-wasm/-/blake3-wasm-2.1.5.tgz#b22dbb84bc9419ed0159caa76af4b1b132e6ba52" + integrity sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g== + +bluebird@3.7.2: + version "3.7.2" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^3.0.2, braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +browserslist@^4.21.3: + version "4.21.9" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.9.tgz#e11bdd3c313d7e2a9e87e8b4b0c7872b13897635" + integrity sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg== + dependencies: + caniuse-lite "^1.0.30001503" + electron-to-chromium "^1.4.431" + node-releases "^2.0.12" + update-browserslist-db "^1.0.11" + +bs-logger@0.x: + version "0.2.6" + resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" + integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== + dependencies: + fast-json-stable-stringify "2.x" + +bser@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== + dependencies: + node-int64 "^0.4.0" + +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +buffer@^5.5.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + +busboy@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz#966ea36a9502e43cdb9146962523b92f531f6893" + integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA== + dependencies: + streamsearch "^1.1.0" + +call-bind@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^6.2.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +caniuse-lite@^1.0.30001503: + version "1.0.30001506" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001506.tgz#35bd814b310a487970c585430e9e80ee23faf14b" + integrity sha512-6XNEcpygZMCKaufIcgpQNZNf00GEqc7VQON+9Rd0K1bMYo8xhMZRAo5zpbnbMNizi4YNgIDAFrdykWsvY3H4Hw== + +capnp-ts@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/capnp-ts/-/capnp-ts-0.7.0.tgz#16fd8e76b667d002af8fcf4bf92bf15d1a7b54a9" + integrity sha512-XKxXAC3HVPv7r674zP0VC3RTXz+/JKhfyw94ljvF80yynK6VkTnqE3jMuN8b3dUVmmc43TjyxjW4KTsmB3c86g== + dependencies: + debug "^4.3.1" + tslib "^2.2.0" + +chalk@^2.0.0: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^4.0.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +char-regex@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" + integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== + +charenc@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" + integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA== + +check-more-types@2.24.0: + version "2.24.0" + resolved "https://registry.yarnpkg.com/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" + integrity sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA== + +chokidar@^3.5.3: + version "3.5.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +chownr@^1.1.1: + version "1.1.4" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" + integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== + +ci-info@^3.2.0: + version "3.8.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" + integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== + +cjs-module-lexer@^1.0.0: + version "1.2.3" + resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz#6c370ab19f8a3394e318fe682686ec0ac684d107" + integrity sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ== + +cliui@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" + integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.1" + wrap-ansi "^7.0.0" + +co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== + +collect-v8-coverage@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" + integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +combined-stream@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +convert-source-map@^1.6.0, convert-source-map@^1.7.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== + +convert-source-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + +cookie@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" + integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== + +cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypt@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" + integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow== + +data-uri-to-buffer@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-2.0.2.tgz#d296973d5a4897a5dbe31716d118211921f04770" + integrity sha512-ND9qDTLc6diwj+Xe5cdAgVTbLVdXbtxTJRXRhli8Mowuaan+0EJOtdqJ0QCHNSSPyoXGx9HX2/VMnKeC34AChA== + +data-uri-to-buffer@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz#d8feb2b2881e6a4f58c2e08acfd0e2834e26222e" + integrity sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A== + +debug@4.3.4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +decompress-response@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" + integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== + dependencies: + mimic-response "^3.1.0" + +dedent@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" + integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== + +deep-extend@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== + +deepmerge@^4.2.2: + version "4.3.1" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" + integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== + +depd@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + +detect-libc@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.1.tgz#e1897aa88fa6ad197862937fbc0441ef352ee0cd" + integrity sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w== + +detect-newline@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" + integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== + +diff-sequences@^29.4.3: + version "29.4.3" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.4.3.tgz#9314bc1fabe09267ffeca9cbafc457d8499a13f2" + integrity sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA== + +digest-fetch@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/digest-fetch/-/digest-fetch-1.3.0.tgz#898e69264d00012a23cf26e8a3e40320143fc661" + integrity sha512-CGJuv6iKNM7QyZlM2T3sPAdZWd/p9zQiRNS9G+9COUCwzWFTs0Xp8NF5iePx7wtvhDykReiRRrSeNb4oMmB8lA== + dependencies: + base-64 "^0.1.0" + md5 "^2.3.0" + +duplexer@~0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" + integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== + +electron-to-chromium@^1.4.431: + version "1.4.438" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.438.tgz#425f0d51862d36f90817d6dfb7fa2a53ff6a0a73" + integrity sha512-x94U0FhphEsHsOloCvlsujHCvoir0ZQ73ZAs/QN4PLx98uNvyEU79F75rq1db75Bx/atvuh7KPeuxelh+xfYJw== + +emittery@^0.13.1: + version "0.13.1" + resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.13.1.tgz#c04b8c3457490e0847ae51fced3af52d338e3dad" + integrity sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ== + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +end-of-stream@^1.1.0, end-of-stream@^1.4.1: + version "1.4.4" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + dependencies: + once "^1.4.0" + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +esbuild@0.16.3: + version "0.16.3" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.16.3.tgz#5868632fa23f7a8547f2a4ea359c44e946515c94" + integrity sha512-71f7EjPWTiSguen8X/kxEpkAS7BFHwtQKisCDDV3Y4GLGWBaoSCyD5uXkaUew6JDzA9FEN1W23mdnSwW9kqCeg== + optionalDependencies: + "@esbuild/android-arm" "0.16.3" + "@esbuild/android-arm64" "0.16.3" + "@esbuild/android-x64" "0.16.3" + "@esbuild/darwin-arm64" "0.16.3" + "@esbuild/darwin-x64" "0.16.3" + "@esbuild/freebsd-arm64" "0.16.3" + "@esbuild/freebsd-x64" "0.16.3" + "@esbuild/linux-arm" "0.16.3" + "@esbuild/linux-arm64" "0.16.3" + "@esbuild/linux-ia32" "0.16.3" + "@esbuild/linux-loong64" "0.16.3" + "@esbuild/linux-mips64el" "0.16.3" + "@esbuild/linux-ppc64" "0.16.3" + "@esbuild/linux-riscv64" "0.16.3" + "@esbuild/linux-s390x" "0.16.3" + "@esbuild/linux-x64" "0.16.3" + "@esbuild/netbsd-x64" "0.16.3" + "@esbuild/openbsd-x64" "0.16.3" + "@esbuild/sunos-x64" "0.16.3" + "@esbuild/win32-arm64" "0.16.3" + "@esbuild/win32-ia32" "0.16.3" + "@esbuild/win32-x64" "0.16.3" + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +escape-string-regexp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" + integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== + +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +esprima@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +estree-walker@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" + integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== + +event-stream@=3.3.4: + version "3.3.4" + resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" + integrity sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g== + dependencies: + duplexer "~0.1.1" + from "~0" + map-stream "~0.1.0" + pause-stream "0.0.11" + split "0.3" + stream-combiner "~0.0.4" + through "~2.3.1" + +event-target-shim@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" + integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== + +execa@5.1.1, execa@^5.0.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.0" + human-signals "^2.1.0" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.1" + onetime "^5.1.2" + signal-exit "^3.0.3" + strip-final-newline "^2.0.0" + +exit-hook@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-2.2.1.tgz#007b2d92c6428eda2b76e7016a34351586934593" + integrity sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw== + +exit@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" + integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== + +expand-template@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" + integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== + +expect@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/expect/-/expect-29.5.0.tgz#68c0509156cb2a0adb8865d413b137eeaae682f7" + integrity sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg== + dependencies: + "@jest/expect-utils" "^29.5.0" + jest-get-type "^29.4.3" + jest-matcher-utils "^29.5.0" + jest-message-util "^29.5.0" + jest-util "^29.5.0" + +fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fb-watchman@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" + integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== + dependencies: + bser "2.1.1" + +fetch-blob@^3.1.2, fetch-blob@^3.1.4: + version "3.2.0" + resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" + integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== + dependencies: + node-domexception "^1.0.0" + web-streams-polyfill "^3.0.3" + +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-up@^4.0.0, find-up@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +follow-redirects@^1.14.9: + version "1.15.2" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== + +form-data-encoder@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-1.7.2.tgz#1f1ae3dccf58ed4690b86d87e4f57c654fbab040" + integrity sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A== + +form-data@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" + integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +form-data@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" + integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +formdata-node@^4.3.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/formdata-node/-/formdata-node-4.4.1.tgz#23f6a5cb9cb55315912cbec4ff7b0f59bbd191e2" + integrity sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ== + dependencies: + node-domexception "1.0.0" + web-streams-polyfill "4.0.0-beta.3" + +formdata-polyfill@^4.0.10: + version "4.0.10" + resolved "https://registry.yarnpkg.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" + integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== + dependencies: + fetch-blob "^3.1.2" + +from@~0: + version "0.1.7" + resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" + integrity sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g== + +fs-constants@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" + integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@^2.3.2, fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-intrinsic@^1.0.2: + version "1.2.1" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" + integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-proto "^1.0.1" + has-symbols "^1.0.3" + +get-package-type@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" + integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== + +get-source@^2.0.12: + version "2.0.12" + resolved "https://registry.yarnpkg.com/get-source/-/get-source-2.0.12.tgz#0b47d57ea1e53ce0d3a69f4f3d277eb8047da944" + integrity sha512-X5+4+iD+HoSeEED+uwrQ07BOQr0kEDFMVqqpBuI+RaZBpBpHCuXxo70bjar6f0b0u/DQJsJ7ssurpP0V60Az+w== + dependencies: + data-uri-to-buffer "^2.0.0" + source-map "^0.6.1" + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +github-from-package@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" + integrity sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw== + +glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-to-regexp@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" + integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== + +glob@^7.1.3, glob@^7.1.4: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +graceful-fs@^4.2.9: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" + integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== + +has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +html-escaper@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" + integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== + +http-cache-semantics@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" + integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +humanize-ms@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" + integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== + dependencies: + ms "^2.0.0" + +ieee754@^1.1.13: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +import-local@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" + integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== + dependencies: + pkg-dir "^4.2.0" + resolve-cwd "^3.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.3, inherits@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +ini@~1.3.0: + version "1.3.8" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" + integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-buffer@~1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + +is-core-module@^2.11.0: + version "2.12.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd" + integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg== + dependencies: + has "^1.0.3" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-generator-fn@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" + integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== + +is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" + integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== + +istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" + integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== + dependencies: + "@babel/core" "^7.12.3" + "@babel/parser" "^7.14.7" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-coverage "^3.2.0" + semver "^6.3.0" + +istanbul-lib-report@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" + integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== + dependencies: + istanbul-lib-coverage "^3.0.0" + make-dir "^3.0.0" + supports-color "^7.1.0" + +istanbul-lib-source-maps@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" + integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== + dependencies: + debug "^4.1.1" + istanbul-lib-coverage "^3.0.0" + source-map "^0.6.1" + +istanbul-reports@^3.1.3: + version "3.1.5" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.5.tgz#cc9a6ab25cb25659810e4785ed9d9fb742578bae" + integrity sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w== + dependencies: + html-escaper "^2.0.0" + istanbul-lib-report "^3.0.0" + +jest-changed-files@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.5.0.tgz#e88786dca8bf2aa899ec4af7644e16d9dcf9b23e" + integrity sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag== + dependencies: + execa "^5.0.0" + p-limit "^3.1.0" + +jest-circus@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.5.0.tgz#b5926989449e75bff0d59944bae083c9d7fb7317" + integrity sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA== + dependencies: + "@jest/environment" "^29.5.0" + "@jest/expect" "^29.5.0" + "@jest/test-result" "^29.5.0" + "@jest/types" "^29.5.0" + "@types/node" "*" + chalk "^4.0.0" + co "^4.6.0" + dedent "^0.7.0" + is-generator-fn "^2.0.0" + jest-each "^29.5.0" + jest-matcher-utils "^29.5.0" + jest-message-util "^29.5.0" + jest-runtime "^29.5.0" + jest-snapshot "^29.5.0" + jest-util "^29.5.0" + p-limit "^3.1.0" + pretty-format "^29.5.0" + pure-rand "^6.0.0" + slash "^3.0.0" + stack-utils "^2.0.3" + +jest-cli@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.5.0.tgz#b34c20a6d35968f3ee47a7437ff8e53e086b4a67" + integrity sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw== + dependencies: + "@jest/core" "^29.5.0" + "@jest/test-result" "^29.5.0" + "@jest/types" "^29.5.0" + chalk "^4.0.0" + exit "^0.1.2" + graceful-fs "^4.2.9" + import-local "^3.0.2" + jest-config "^29.5.0" + jest-util "^29.5.0" + jest-validate "^29.5.0" + prompts "^2.0.1" + yargs "^17.3.1" + +jest-config@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.5.0.tgz#3cc972faec8c8aaea9ae158c694541b79f3748da" + integrity sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA== + dependencies: + "@babel/core" "^7.11.6" + "@jest/test-sequencer" "^29.5.0" + "@jest/types" "^29.5.0" + babel-jest "^29.5.0" + chalk "^4.0.0" + ci-info "^3.2.0" + deepmerge "^4.2.2" + glob "^7.1.3" + graceful-fs "^4.2.9" + jest-circus "^29.5.0" + jest-environment-node "^29.5.0" + jest-get-type "^29.4.3" + jest-regex-util "^29.4.3" + jest-resolve "^29.5.0" + jest-runner "^29.5.0" + jest-util "^29.5.0" + jest-validate "^29.5.0" + micromatch "^4.0.4" + parse-json "^5.2.0" + pretty-format "^29.5.0" + slash "^3.0.0" + strip-json-comments "^3.1.1" + +jest-diff@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.5.0.tgz#e0d83a58eb5451dcc1fa61b1c3ee4e8f5a290d63" + integrity sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw== + dependencies: + chalk "^4.0.0" + diff-sequences "^29.4.3" + jest-get-type "^29.4.3" + pretty-format "^29.5.0" + +jest-docblock@^29.4.3: + version "29.4.3" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-29.4.3.tgz#90505aa89514a1c7dceeac1123df79e414636ea8" + integrity sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg== + dependencies: + detect-newline "^3.0.0" + +jest-each@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.5.0.tgz#fc6e7014f83eac68e22b7195598de8554c2e5c06" + integrity sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA== + dependencies: + "@jest/types" "^29.5.0" + chalk "^4.0.0" + jest-get-type "^29.4.3" + jest-util "^29.5.0" + pretty-format "^29.5.0" + +jest-environment-node@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.5.0.tgz#f17219d0f0cc0e68e0727c58b792c040e332c967" + integrity sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw== + dependencies: + "@jest/environment" "^29.5.0" + "@jest/fake-timers" "^29.5.0" + "@jest/types" "^29.5.0" + "@types/node" "*" + jest-mock "^29.5.0" + jest-util "^29.5.0" + +jest-get-type@^29.4.3: + version "29.4.3" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.4.3.tgz#1ab7a5207c995161100b5187159ca82dd48b3dd5" + integrity sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg== + +jest-haste-map@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.5.0.tgz#69bd67dc9012d6e2723f20a945099e972b2e94de" + integrity sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA== + dependencies: + "@jest/types" "^29.5.0" + "@types/graceful-fs" "^4.1.3" + "@types/node" "*" + anymatch "^3.0.3" + fb-watchman "^2.0.0" + graceful-fs "^4.2.9" + jest-regex-util "^29.4.3" + jest-util "^29.5.0" + jest-worker "^29.5.0" + micromatch "^4.0.4" + walker "^1.0.8" + optionalDependencies: + fsevents "^2.3.2" + +jest-leak-detector@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz#cf4bdea9615c72bac4a3a7ba7e7930f9c0610c8c" + integrity sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow== + dependencies: + jest-get-type "^29.4.3" + pretty-format "^29.5.0" + +jest-matcher-utils@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz#d957af7f8c0692c5453666705621ad4abc2c59c5" + integrity sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw== + dependencies: + chalk "^4.0.0" + jest-diff "^29.5.0" + jest-get-type "^29.4.3" + pretty-format "^29.5.0" + +jest-message-util@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.5.0.tgz#1f776cac3aca332ab8dd2e3b41625435085c900e" + integrity sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA== + dependencies: + "@babel/code-frame" "^7.12.13" + "@jest/types" "^29.5.0" + "@types/stack-utils" "^2.0.0" + chalk "^4.0.0" + graceful-fs "^4.2.9" + micromatch "^4.0.4" + pretty-format "^29.5.0" + slash "^3.0.0" + stack-utils "^2.0.3" + +jest-mock@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.5.0.tgz#26e2172bcc71d8b0195081ff1f146ac7e1518aed" + integrity sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw== + dependencies: + "@jest/types" "^29.5.0" + "@types/node" "*" + jest-util "^29.5.0" + +jest-pnp-resolver@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" + integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== + +jest-regex-util@^29.4.3: + version "29.4.3" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.4.3.tgz#a42616141e0cae052cfa32c169945d00c0aa0bb8" + integrity sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg== + +jest-resolve-dependencies@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz#f0ea29955996f49788bf70996052aa98e7befee4" + integrity sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg== + dependencies: + jest-regex-util "^29.4.3" + jest-snapshot "^29.5.0" + +jest-resolve@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.5.0.tgz#b053cc95ad1d5f6327f0ac8aae9f98795475ecdc" + integrity sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w== + dependencies: + chalk "^4.0.0" + graceful-fs "^4.2.9" + jest-haste-map "^29.5.0" + jest-pnp-resolver "^1.2.2" + jest-util "^29.5.0" + jest-validate "^29.5.0" + resolve "^1.20.0" + resolve.exports "^2.0.0" + slash "^3.0.0" + +jest-runner@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.5.0.tgz#6a57c282eb0ef749778d444c1d758c6a7693b6f8" + integrity sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ== + dependencies: + "@jest/console" "^29.5.0" + "@jest/environment" "^29.5.0" + "@jest/test-result" "^29.5.0" + "@jest/transform" "^29.5.0" + "@jest/types" "^29.5.0" + "@types/node" "*" + chalk "^4.0.0" + emittery "^0.13.1" + graceful-fs "^4.2.9" + jest-docblock "^29.4.3" + jest-environment-node "^29.5.0" + jest-haste-map "^29.5.0" + jest-leak-detector "^29.5.0" + jest-message-util "^29.5.0" + jest-resolve "^29.5.0" + jest-runtime "^29.5.0" + jest-util "^29.5.0" + jest-watcher "^29.5.0" + jest-worker "^29.5.0" + p-limit "^3.1.0" + source-map-support "0.5.13" + +jest-runtime@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.5.0.tgz#c83f943ee0c1da7eb91fa181b0811ebd59b03420" + integrity sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw== + dependencies: + "@jest/environment" "^29.5.0" + "@jest/fake-timers" "^29.5.0" + "@jest/globals" "^29.5.0" + "@jest/source-map" "^29.4.3" + "@jest/test-result" "^29.5.0" + "@jest/transform" "^29.5.0" + "@jest/types" "^29.5.0" + "@types/node" "*" + chalk "^4.0.0" + cjs-module-lexer "^1.0.0" + collect-v8-coverage "^1.0.0" + glob "^7.1.3" + graceful-fs "^4.2.9" + jest-haste-map "^29.5.0" + jest-message-util "^29.5.0" + jest-mock "^29.5.0" + jest-regex-util "^29.4.3" + jest-resolve "^29.5.0" + jest-snapshot "^29.5.0" + jest-util "^29.5.0" + slash "^3.0.0" + strip-bom "^4.0.0" + +jest-snapshot@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.5.0.tgz#c9c1ce0331e5b63cd444e2f95a55a73b84b1e8ce" + integrity sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g== + dependencies: + "@babel/core" "^7.11.6" + "@babel/generator" "^7.7.2" + "@babel/plugin-syntax-jsx" "^7.7.2" + "@babel/plugin-syntax-typescript" "^7.7.2" + "@babel/traverse" "^7.7.2" + "@babel/types" "^7.3.3" + "@jest/expect-utils" "^29.5.0" + "@jest/transform" "^29.5.0" + "@jest/types" "^29.5.0" + "@types/babel__traverse" "^7.0.6" + "@types/prettier" "^2.1.5" + babel-preset-current-node-syntax "^1.0.0" + chalk "^4.0.0" + expect "^29.5.0" + graceful-fs "^4.2.9" + jest-diff "^29.5.0" + jest-get-type "^29.4.3" + jest-matcher-utils "^29.5.0" + jest-message-util "^29.5.0" + jest-util "^29.5.0" + natural-compare "^1.4.0" + pretty-format "^29.5.0" + semver "^7.3.5" + +jest-util@^29.0.0, jest-util@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.5.0.tgz#24a4d3d92fc39ce90425311b23c27a6e0ef16b8f" + integrity sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ== + dependencies: + "@jest/types" "^29.5.0" + "@types/node" "*" + chalk "^4.0.0" + ci-info "^3.2.0" + graceful-fs "^4.2.9" + picomatch "^2.2.3" + +jest-validate@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.5.0.tgz#8e5a8f36178d40e47138dc00866a5f3bd9916ffc" + integrity sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ== + dependencies: + "@jest/types" "^29.5.0" + camelcase "^6.2.0" + chalk "^4.0.0" + jest-get-type "^29.4.3" + leven "^3.1.0" + pretty-format "^29.5.0" + +jest-watcher@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.5.0.tgz#cf7f0f949828ba65ddbbb45c743a382a4d911363" + integrity sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA== + dependencies: + "@jest/test-result" "^29.5.0" + "@jest/types" "^29.5.0" + "@types/node" "*" + ansi-escapes "^4.2.1" + chalk "^4.0.0" + emittery "^0.13.1" + jest-util "^29.5.0" + string-length "^4.0.1" + +jest-worker@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.5.0.tgz#bdaefb06811bd3384d93f009755014d8acb4615d" + integrity sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA== + dependencies: + "@types/node" "*" + jest-util "^29.5.0" + merge-stream "^2.0.0" + supports-color "^8.0.0" + +jest@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest/-/jest-29.5.0.tgz#f75157622f5ce7ad53028f2f8888ab53e1f1f24e" + integrity sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ== + dependencies: + "@jest/core" "^29.5.0" + "@jest/types" "^29.5.0" + import-local "^3.0.2" + jest-cli "^29.5.0" + +joi@^17.7.0: + version "17.9.2" + resolved "https://registry.yarnpkg.com/joi/-/joi-17.9.2.tgz#8b2e4724188369f55451aebd1d0b1d9482470690" + integrity sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw== + dependencies: + "@hapi/hoek" "^9.0.0" + "@hapi/topo" "^5.0.0" + "@sideway/address" "^4.1.3" + "@sideway/formula" "^3.0.1" + "@sideway/pinpoint" "^2.0.0" + +js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json5@^2.2.2, json5@^2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + +kleur@^4.1.5: + version "4.1.5" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780" + integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ== + +lazy-ass@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" + integrity sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw== + +leven@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + +lodash.memoize@4.x: + version "4.1.2" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== + +lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +magic-string@^0.25.3: + version "0.25.9" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c" + integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ== + dependencies: + sourcemap-codec "^1.4.8" + +make-dir@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" + integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== + dependencies: + semver "^6.0.0" + +make-error@1.x: + version "1.3.6" + resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +makeerror@1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" + integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== + dependencies: + tmpl "1.0.5" + +map-stream@~0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" + integrity sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g== + +md5@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" + integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g== + dependencies: + charenc "0.0.2" + crypt "0.0.2" + is-buffer "~1.1.6" + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +micromatch@^4.0.4: + version "4.0.5" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + dependencies: + braces "^3.0.2" + picomatch "^2.3.1" + +mime-db@1.52.0: + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@^2.1.12: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mime@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-3.0.0.tgz#b374550dca3a0c18443b0c950a6a58f1931cf7a7" + integrity sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +mimic-response@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" + integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== + +miniflare@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/miniflare/-/miniflare-3.0.1.tgz#75ad9d859485de5fac065e2ddf296f83dcbf9789" + integrity sha512-aLOB8d26lOTn493GOv1LmpGHVLSxmeT4MixPG/k3Ze10j0wDKnMj8wsFgbZ6Q4cr1N4faf8O3IbNRJuQ+rLoJA== + dependencies: + acorn "^8.8.0" + acorn-walk "^8.2.0" + better-sqlite3 "^8.1.0" + capnp-ts "^0.7.0" + exit-hook "^2.2.1" + glob-to-regexp "^0.4.1" + http-cache-semantics "^4.1.0" + kleur "^4.1.5" + source-map-support "0.5.21" + stoppable "^1.1.0" + undici "^5.13.0" + workerd "^1.20230512.0" + ws "^8.11.0" + youch "^3.2.2" + zod "^3.20.6" + +minimatch@^3.0.4, minimatch@^3.1.1: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.7: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + +mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" + integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@^2.0.0: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +mustache@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/mustache/-/mustache-4.2.0.tgz#e5892324d60a12ec9c2a73359edca52972bf6f64" + integrity sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ== + +nanoid@^3.3.3: + version "3.3.6" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" + integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== + +napi-build-utils@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806" + integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +node-abi@^3.3.0: + version "3.45.0" + resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.45.0.tgz#f568f163a3bfca5aacfce1fbeee1fa2cc98441f5" + integrity sha512-iwXuFrMAcFVi/ZoZiqq8BzAdsLw9kxDfTC0HMyjXfSL/6CSDAGD5UmR7azrAgWV1zKYq7dUUMj4owusBWKLsiQ== + dependencies: + semver "^7.3.5" + +node-domexception@1.0.0, node-domexception@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + +node-fetch@^2.6.7: + version "2.6.11" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.11.tgz#cde7fc71deef3131ef80a738919f999e6edfff25" + integrity sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w== + dependencies: + whatwg-url "^5.0.0" + +node-fetch@^3.3.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.3.1.tgz#b3eea7b54b3a48020e46f4f88b9c5a7430d20b2e" + integrity sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow== + dependencies: + data-uri-to-buffer "^4.0.0" + fetch-blob "^3.1.4" + formdata-polyfill "^4.0.10" + +node-forge@^1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" + integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== + +node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== + +node-releases@^2.0.12: + version "2.0.12" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.12.tgz#35627cc224a23bfb06fb3380f2b3afaaa7eb1039" + integrity sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ== + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +object-inspect@^1.9.0: + version "1.12.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" + integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== + +once@^1.3.0, once@^1.3.1, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +openai@../../.pack/openai.tgz: + version "4.0.0-beta.0" + resolved "../../.pack/openai.tgz#a829154cebccf7fea034ca723caacb362745b562" + dependencies: + "@types/node" "^18.11.18" + "@types/node-fetch" "^2.6.4" + "@types/qs" "^6.9.7" + abort-controller "^3.0.0" + agentkeepalive "^4.2.1" + digest-fetch "^1.3.0" + form-data-encoder "1.7.2" + formdata-node "^4.3.2" + node-fetch "^2.6.7" + qs "^6.10.3" + +p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-limit@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +parse-json@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-to-regexp@^6.2.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.2.1.tgz#d54934d6798eb9e5ef14e7af7962c945906918e5" + integrity sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw== + +pause-stream@0.0.11: + version "0.0.11" + resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" + integrity sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A== + dependencies: + through "~2.3" + +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pirates@^4.0.4: + version "4.0.6" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" + integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== + +pkg-dir@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + dependencies: + find-up "^4.0.0" + +prebuild-install@^7.1.0: + version "7.1.1" + resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.1.tgz#de97d5b34a70a0c81334fd24641f2a1702352e45" + integrity sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw== + dependencies: + detect-libc "^2.0.0" + expand-template "^2.0.3" + github-from-package "0.0.0" + minimist "^1.2.3" + mkdirp-classic "^0.5.3" + napi-build-utils "^1.0.1" + node-abi "^3.3.0" + pump "^3.0.0" + rc "^1.2.7" + simple-get "^4.0.0" + tar-fs "^2.0.0" + tunnel-agent "^0.6.0" + +pretty-format@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.5.0.tgz#283134e74f70e2e3e7229336de0e4fce94ccde5a" + integrity sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw== + dependencies: + "@jest/schemas" "^29.4.3" + ansi-styles "^5.0.0" + react-is "^18.0.0" + +printable-characters@^1.0.42: + version "1.0.42" + resolved "https://registry.yarnpkg.com/printable-characters/-/printable-characters-1.0.42.tgz#3f18e977a9bd8eb37fcc4ff5659d7be90868b3d8" + integrity sha512-dKp+C4iXWK4vVYZmYSd0KBH5F/h1HoZRsbJ82AVKRO3PEo8L4lBS/vLwhVtpwwuYcoIsVY+1JYKR268yn480uQ== + +prompts@^2.0.1: + version "2.4.2" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + +ps-tree@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.2.0.tgz#5e7425b89508736cdd4f2224d028f7bb3f722ebd" + integrity sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA== + dependencies: + event-stream "=3.3.4" + +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pure-rand@^6.0.0: + version "6.0.2" + resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.0.2.tgz#a9c2ddcae9b68d736a8163036f088a2781c8b306" + integrity sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ== + +qs@^6.10.3: + version "6.11.2" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" + integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== + dependencies: + side-channel "^1.0.4" + +rc@^1.2.7: + version "1.2.8" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== + dependencies: + deep-extend "^0.6.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +react-is@^18.0.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" + integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== + +readable-stream@^3.1.1, readable-stream@^3.4.0: + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +resolve-cwd@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" + integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== + dependencies: + resolve-from "^5.0.0" + +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + +resolve.exports@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800" + integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== + +resolve@^1.20.0: + version "1.22.2" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" + integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== + dependencies: + is-core-module "^2.11.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +rollup-plugin-inject@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rollup-plugin-inject/-/rollup-plugin-inject-3.0.2.tgz#e4233855bfba6c0c12a312fd6649dff9a13ee9f4" + integrity sha512-ptg9PQwzs3orn4jkgXJ74bfs5vYz1NCZlSQMBUA0wKcGp5i5pA1AO3fOUEte8enhGUC+iapTCzEWw2jEFFUO/w== + dependencies: + estree-walker "^0.6.1" + magic-string "^0.25.3" + rollup-pluginutils "^2.8.1" + +rollup-plugin-node-polyfills@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/rollup-plugin-node-polyfills/-/rollup-plugin-node-polyfills-0.2.1.tgz#53092a2744837164d5b8a28812ba5f3ff61109fd" + integrity sha512-4kCrKPTJ6sK4/gLL/U5QzVT8cxJcofO0OU74tnB19F40cmuAKSzH5/siithxlofFEjwvw1YAhPmbvGNA6jEroA== + dependencies: + rollup-plugin-inject "^3.0.0" + +rollup-pluginutils@^2.8.1: + version "2.8.2" + resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e" + integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== + dependencies: + estree-walker "^0.6.1" + +rxjs@^7.8.0: + version "7.8.1" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" + integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== + dependencies: + tslib "^2.1.0" + +safe-buffer@^5.0.1, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +selfsigned@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.1.1.tgz#18a7613d714c0cd3385c48af0075abf3f266af61" + integrity sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ== + dependencies: + node-forge "^1" + +semver@7.x, semver@^7.3.5: + version "7.5.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.2.tgz#5b851e66d1be07c1cdaf37dfc856f543325a2beb" + integrity sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ== + dependencies: + lru-cache "^6.0.0" + +semver@^6.0.0, semver@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.3, signal-exit@^3.0.7: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +simple-concat@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" + integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== + +simple-get@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz#4a39db549287c979d352112fa03fd99fd6bc3543" + integrity sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA== + dependencies: + decompress-response "^6.0.0" + once "^1.3.1" + simple-concat "^1.0.0" + +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +source-map-support@0.5.13: + version "0.5.13" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" + integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map-support@0.5.21: + version "0.5.21" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.6.0, source-map@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +source-map@^0.7.4: + version "0.7.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" + integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== + +sourcemap-codec@^1.4.8: + version "1.4.8" + resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" + integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== + +split@0.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" + integrity sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA== + dependencies: + through "2" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== + +stack-utils@^2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" + integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== + dependencies: + escape-string-regexp "^2.0.0" + +stacktracey@^2.1.8: + version "2.1.8" + resolved "https://registry.yarnpkg.com/stacktracey/-/stacktracey-2.1.8.tgz#bf9916020738ce3700d1323b32bd2c91ea71199d" + integrity sha512-Kpij9riA+UNg7TnphqjH7/CzctQ/owJGNbFkfEeve4Z4uxT5+JapVLFXcsurIfN34gnTWZNJ/f7NMG0E8JDzTw== + dependencies: + as-table "^1.0.36" + get-source "^2.0.12" + +start-server-and-test@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/start-server-and-test/-/start-server-and-test-2.0.0.tgz#0644809d63036a8a001efb70582f3e37ebfdd33d" + integrity sha512-UqKLw0mJbfrsG1jcRLTUlvuRi9sjNuUiDOLI42r7R5fA9dsFoywAy9DoLXNYys9B886E4RCKb+qM1Gzu96h7DQ== + dependencies: + arg "^5.0.2" + bluebird "3.7.2" + check-more-types "2.24.0" + debug "4.3.4" + execa "5.1.1" + lazy-ass "1.6.0" + ps-tree "1.2.0" + wait-on "7.0.1" + +stoppable@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/stoppable/-/stoppable-1.1.0.tgz#32da568e83ea488b08e4d7ea2c3bcc9d75015d5b" + integrity sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw== + +stream-combiner@~0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" + integrity sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw== + dependencies: + duplexer "~0.1.1" + +streamsearch@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764" + integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== + +string-length@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" + integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== + dependencies: + char-regex "^1.0.2" + strip-ansi "^6.0.0" + +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-bom@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" + integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-color@^8.0.0: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +tar-fs@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" + integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== + dependencies: + chownr "^1.1.1" + mkdirp-classic "^0.5.2" + pump "^3.0.0" + tar-stream "^2.1.4" + +tar-stream@^2.1.4: + version "2.2.0" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" + integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== + dependencies: + bl "^4.0.3" + end-of-stream "^1.4.1" + fs-constants "^1.0.0" + inherits "^2.0.3" + readable-stream "^3.1.1" + +test-exclude@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" + integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== + dependencies: + "@istanbuljs/schema" "^0.1.2" + glob "^7.1.4" + minimatch "^3.0.4" + +through@2, through@~2.3, through@~2.3.1: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +tmpl@1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" + integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +ts-jest@^29.1.0: + version "29.1.0" + resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.0.tgz#4a9db4104a49b76d2b368ea775b6c9535c603891" + integrity sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA== + dependencies: + bs-logger "0.x" + fast-json-stable-stringify "2.x" + jest-util "^29.0.0" + json5 "^2.2.3" + lodash.memoize "4.x" + make-error "1.x" + semver "7.x" + yargs-parser "^21.0.1" + +tslib@^2.1.0, tslib@^2.2.0: + version "2.5.3" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.3.tgz#24944ba2d990940e6e982c4bea147aba80209913" + integrity sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w== + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== + dependencies: + safe-buffer "^5.0.1" + +type-detect@4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== + +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + +typescript@^5.0.4: + version "5.1.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.3.tgz#8d84219244a6b40b6fb2b33cc1c062f715b9e826" + integrity sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw== + +undici@^5.13.0: + version "5.22.1" + resolved "https://registry.yarnpkg.com/undici/-/undici-5.22.1.tgz#877d512effef2ac8be65e695f3586922e1a57d7b" + integrity sha512-Ji2IJhFXZY0x/0tVBXeQwgPlLWw13GVzpsWPQ3rV50IFMMof2I55PZZxtm4P6iNq+L5znYN9nSTAq0ZyE6lSJw== + dependencies: + busboy "^1.6.0" + +update-browserslist-db@^1.0.11: + version "1.0.11" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" + integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + +util-deprecate@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +v8-to-istanbul@^9.0.1: + version "9.1.0" + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz#1b83ed4e397f58c85c266a570fc2558b5feb9265" + integrity sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA== + dependencies: + "@jridgewell/trace-mapping" "^0.3.12" + "@types/istanbul-lib-coverage" "^2.0.1" + convert-source-map "^1.6.0" + +wait-on@7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/wait-on/-/wait-on-7.0.1.tgz#5cff9f8427e94f4deacbc2762e6b0a489b19eae9" + integrity sha512-9AnJE9qTjRQOlTZIldAaf/da2eW0eSRSgcqq85mXQja/DW3MriHxkpODDSUEg+Gri/rKEcXUZHe+cevvYItaog== + dependencies: + axios "^0.27.2" + joi "^17.7.0" + lodash "^4.17.21" + minimist "^1.2.7" + rxjs "^7.8.0" + +walker@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" + integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== + dependencies: + makeerror "1.0.12" + +web-streams-polyfill@4.0.0-beta.3: + version "4.0.0-beta.3" + resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz#2898486b74f5156095e473efe989dcf185047a38" + integrity sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug== + +web-streams-polyfill@^3.0.3: + version "3.2.1" + resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6" + integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q== + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +workerd@^1.20230512.0: + version "1.20230518.0" + resolved "https://registry.yarnpkg.com/workerd/-/workerd-1.20230518.0.tgz#4eac4c4b25d859f6f3c8bd826ed57aec12ab08dd" + integrity sha512-VNmK0zoNZXrwEEx77O/oQDVUzzyDjf5kKKK8bty+FmKCd5EQJCpqi8NlRKWLGMyyYrKm86MFz0kAsreTEs7HHA== + optionalDependencies: + "@cloudflare/workerd-darwin-64" "1.20230518.0" + "@cloudflare/workerd-darwin-arm64" "1.20230518.0" + "@cloudflare/workerd-linux-64" "1.20230518.0" + "@cloudflare/workerd-linux-arm64" "1.20230518.0" + "@cloudflare/workerd-windows-64" "1.20230518.0" + +wrangler@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/wrangler/-/wrangler-3.1.0.tgz#7de104a975d604573d584ee9da6fc1b2ccab6466" + integrity sha512-oqVBJZoOQqSKxhgaPt4LcmtBf0FssIz/4F1VgjWOomeGQ3kN9pg3swPO0Zkf0aAphDodG9rekjrtccvKW7bSsA== + dependencies: + "@cloudflare/kv-asset-handler" "^0.2.0" + "@esbuild-plugins/node-globals-polyfill" "^0.1.1" + "@esbuild-plugins/node-modules-polyfill" "^0.1.4" + blake3-wasm "^2.1.5" + chokidar "^3.5.3" + esbuild "0.16.3" + miniflare "^3.0.0" + nanoid "^3.3.3" + path-to-regexp "^6.2.0" + selfsigned "^2.0.1" + source-map "^0.7.4" + xxhash-wasm "^1.0.1" + optionalDependencies: + fsevents "~2.3.2" + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +write-file-atomic@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" + integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== + dependencies: + imurmurhash "^0.1.4" + signal-exit "^3.0.7" + +ws@^8.11.0: + version "8.13.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" + integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== + +xxhash-wasm@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/xxhash-wasm/-/xxhash-wasm-1.0.2.tgz#ecc0f813219b727af4d5f3958ca6becee2f2f1ff" + integrity sha512-ibF0Or+FivM9lNrg+HGJfVX8WJqgo+kCLDc4vx6xMeTce7Aj+DLttKbxxRR/gNLSAelRc1omAPlJ77N/Jem07A== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yargs-parser@^21.0.1, yargs-parser@^21.1.1: + version "21.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== + +yargs@^17.3.1: + version "17.7.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" + integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== + dependencies: + cliui "^8.0.1" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.1.1" + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +youch@^3.2.2: + version "3.2.3" + resolved "https://registry.yarnpkg.com/youch/-/youch-3.2.3.tgz#63c94ea504950a1a5bf1d5969439addba6c726e2" + integrity sha512-ZBcWz/uzZaQVdCvfV4uk616Bbpf2ee+F/AvuKDR5EwX/Y4v06xWdtMluqTD7+KlZdM93lLm9gMZYo0sKBS0pgw== + dependencies: + cookie "^0.5.0" + mustache "^4.2.0" + stacktracey "^2.1.8" + +zod@^3.20.6: + version "3.21.4" + resolved "https://registry.yarnpkg.com/zod/-/zod-3.21.4.tgz#10882231d992519f0a10b5dd58a38c9dabbb64db" + integrity sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw== diff --git a/ecosystem-tests/deno/deno.jsonc b/ecosystem-tests/deno/deno.jsonc new file mode 100644 index 000000000..6ed4bc23b --- /dev/null +++ b/ecosystem-tests/deno/deno.jsonc @@ -0,0 +1,6 @@ +{ + "tasks": { + "install": "deno install --node-modules-dir main_test.ts -f", + "test": "deno test --allow-env --allow-net --allow-read --node-modules-dir" + } +} diff --git a/ecosystem-tests/deno/deno.lock b/ecosystem-tests/deno/deno.lock new file mode 100644 index 000000000..17a25fcbc --- /dev/null +++ b/ecosystem-tests/deno/deno.lock @@ -0,0 +1,199 @@ +{ + "version": "2", + "remote": { + "https://deno.land/std@0.192.0/fmt/colors.ts": "d67e3cd9f472535241a8e410d33423980bec45047e343577554d3356e1f0ef4e", + "https://deno.land/std@0.192.0/testing/_diff.ts": "1a3c044aedf77647d6cac86b798c6417603361b66b54c53331b312caeb447aea", + "https://deno.land/std@0.192.0/testing/_format.ts": "a69126e8a469009adf4cf2a50af889aca364c349797e63174884a52ff75cf4c7", + "https://deno.land/std@0.192.0/testing/asserts.ts": "e16d98b4d73ffc4ed498d717307a12500ae4f2cbe668f1a215632d19fcffc22f" + }, + "npm": { + "specifiers": { + "@types/node@^20.3.1": "@types/node@20.3.1", + "node-fetch@^3.0.0": "node-fetch@3.3.1", + "openai": "openai@3.3.0", + "ts-node@^10.9.1": "ts-node@10.9.1_@types+node@20.3.1_typescript@5.1.3", + "typescript@^5.1.3": "typescript@5.1.3" + }, + "packages": { + "@cspotcode/source-map-support@0.8.1": { + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dependencies": { + "@jridgewell/trace-mapping": "@jridgewell/trace-mapping@0.3.9" + } + }, + "@jridgewell/resolve-uri@3.1.1": { + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dependencies": {} + }, + "@jridgewell/sourcemap-codec@1.4.15": { + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dependencies": {} + }, + "@jridgewell/trace-mapping@0.3.9": { + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dependencies": { + "@jridgewell/resolve-uri": "@jridgewell/resolve-uri@3.1.1", + "@jridgewell/sourcemap-codec": "@jridgewell/sourcemap-codec@1.4.15" + } + }, + "@tsconfig/node10@1.0.9": { + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dependencies": {} + }, + "@tsconfig/node12@1.0.11": { + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dependencies": {} + }, + "@tsconfig/node14@1.0.3": { + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dependencies": {} + }, + "@tsconfig/node16@1.0.4": { + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dependencies": {} + }, + "@types/node@20.3.1": { + "integrity": "sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg==", + "dependencies": {} + }, + "acorn-walk@8.2.0": { + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dependencies": {} + }, + "acorn@8.9.0": { + "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", + "dependencies": {} + }, + "arg@4.1.3": { + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dependencies": {} + }, + "asynckit@0.4.0": { + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dependencies": {} + }, + "axios@0.26.1": { + "integrity": "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==", + "dependencies": { + "follow-redirects": "follow-redirects@1.15.2" + } + }, + "combined-stream@1.0.8": { + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "delayed-stream@1.0.0" + } + }, + "create-require@1.1.1": { + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dependencies": {} + }, + "data-uri-to-buffer@4.0.1": { + "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", + "dependencies": {} + }, + "delayed-stream@1.0.0": { + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dependencies": {} + }, + "diff@4.0.2": { + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dependencies": {} + }, + "fetch-blob@3.2.0": { + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "dependencies": { + "node-domexception": "node-domexception@1.0.0", + "web-streams-polyfill": "web-streams-polyfill@3.2.1" + } + }, + "follow-redirects@1.15.2": { + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "dependencies": {} + }, + "form-data@4.0.0": { + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "asynckit@0.4.0", + "combined-stream": "combined-stream@1.0.8", + "mime-types": "mime-types@2.1.35" + } + }, + "formdata-polyfill@4.0.10": { + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "dependencies": { + "fetch-blob": "fetch-blob@3.2.0" + } + }, + "make-error@1.3.6": { + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dependencies": {} + }, + "mime-db@1.52.0": { + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dependencies": {} + }, + "mime-types@2.1.35": { + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "mime-db@1.52.0" + } + }, + "node-domexception@1.0.0": { + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "dependencies": {} + }, + "node-fetch@3.3.1": { + "integrity": "sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==", + "dependencies": { + "data-uri-to-buffer": "data-uri-to-buffer@4.0.1", + "fetch-blob": "fetch-blob@3.2.0", + "formdata-polyfill": "formdata-polyfill@4.0.10" + } + }, + "openai@3.3.0": { + "integrity": "sha512-uqxI/Au+aPRnsaQRe8CojU0eCR7I0mBiKjD3sNMzY6DaC1ZVrc85u98mtJW6voDug8fgGN+DIZmTDxTthxb7dQ==", + "dependencies": { + "axios": "axios@0.26.1", + "form-data": "form-data@4.0.0" + } + }, + "ts-node@10.9.1_@types+node@20.3.1_typescript@5.1.3": { + "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "dependencies": { + "@cspotcode/source-map-support": "@cspotcode/source-map-support@0.8.1", + "@tsconfig/node10": "@tsconfig/node10@1.0.9", + "@tsconfig/node12": "@tsconfig/node12@1.0.11", + "@tsconfig/node14": "@tsconfig/node14@1.0.3", + "@tsconfig/node16": "@tsconfig/node16@1.0.4", + "@types/node": "@types/node@20.3.1", + "acorn": "acorn@8.9.0", + "acorn-walk": "acorn-walk@8.2.0", + "arg": "arg@4.1.3", + "create-require": "create-require@1.1.1", + "diff": "diff@4.0.2", + "make-error": "make-error@1.3.6", + "typescript": "typescript@5.1.3", + "v8-compile-cache-lib": "v8-compile-cache-lib@3.0.1", + "yn": "yn@3.1.1" + } + }, + "typescript@5.1.3": { + "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", + "dependencies": {} + }, + "v8-compile-cache-lib@3.0.1": { + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "dependencies": {} + }, + "web-streams-polyfill@3.2.1": { + "integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==", + "dependencies": {} + }, + "yn@3.1.1": { + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dependencies": {} + } + } + } +} diff --git a/ecosystem-tests/deno/import_map.json b/ecosystem-tests/deno/import_map.json new file mode 100644 index 000000000..941f5396b --- /dev/null +++ b/ecosystem-tests/deno/import_map.json @@ -0,0 +1,6 @@ +{ + "imports": { + "/": "./", + "./": "./" + } +} diff --git a/ecosystem-tests/deno/main_test.ts b/ecosystem-tests/deno/main_test.ts new file mode 100644 index 000000000..28702db4b --- /dev/null +++ b/ecosystem-tests/deno/main_test.ts @@ -0,0 +1,57 @@ +import { assertEquals } from 'https://deno.land/std@0.192.0/testing/asserts.ts'; +import OpenAI, { toFile } from 'npm:openai@3.3.0'; + +const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; +const filename = 'sample-1.mp3'; + +const correctAnswer = + 'It was anxious to find him no one that expectation of a man who were giving his father enjoyment. But he was avoided in sight in the minister to which indeed,'; +const model = 'whisper-1'; + +const client = new OpenAI({ apiKey: Deno.env.get('OPENAI_API_KEY') }); + +Deno.test(async function handlesFile() { + const file = await fetch(url) + .then((x) => x.arrayBuffer()) + .then((x) => new File([x], filename)); + + const result = await client.audio.transcriptions.create({ file, model }); + assertEquals(result.text, correctAnswer); +}); +Deno.test(async function handlesResponse() { + const file = await fetch(url); + + const result = await client.audio.transcriptions.create({ file, model }); + assertEquals(result.text, correctAnswer); +}); + +const fineTune = `{"prompt": "", "completion": ""}`; + +Deno.test(async function toFileHandlesBlob() { + const result = await client.files.create({ + file: await toFile(new Blob([fineTune]), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + assertEquals(result.status, 'uploaded'); +}); +Deno.test(async function toFileHandlesUint8Array() { + const result = await client.files.create({ + file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + assertEquals(result.status, 'uploaded'); +}); +Deno.test(async function toFileHandlesArrayBuffer() { + const result = await client.files.create({ + file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), + purpose: 'fine-tune', + }); + assertEquals(result.status, 'uploaded'); +}); +Deno.test(async function toFileHandlesDataView() { + const result = await client.files.create({ + file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.json'), + purpose: 'fine-tune', + }); + assertEquals(result.status, 'uploaded'); +}); diff --git a/ecosystem-tests/node-ts-cjs/jest.config.cjs b/ecosystem-tests/node-ts-cjs/jest.config.cjs new file mode 100644 index 000000000..c8e5c8119 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs/jest.config.cjs @@ -0,0 +1,8 @@ +/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ +module.exports = { + preset: 'ts-jest', + testEnvironment: 'node', + testMatch: ['/tests/*.ts'], + watchPathIgnorePatterns: ['/node_modules/'], + verbose: false, +}; diff --git a/ecosystem-tests/node-ts-cjs/main.ts b/ecosystem-tests/node-ts-cjs/main.ts new file mode 100644 index 000000000..824532b45 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs/main.ts @@ -0,0 +1,37 @@ +import fetch from 'node-fetch'; +import OpenAI from 'openai'; + +// TODO: should not have to import from dist +import type { Uploadable } from 'openai/dist/cjs/uploads'; + +const openai = new OpenAI(); + +async function main() { + if (false as any) { + typeTests(); + } + + const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; + console.log(`Fetching ${url}`); + const rsp = await fetch(url); + + console.log('Sending request to OpenAI'); + console.log(await openai.audio.transcriptions.create({ file: rsp, model: 'whisper-1' })); +} + +async function typeTests() { + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + fileParam(null); + + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await openai.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); +} + +function fileParam(_file: Uploadable) { + // +} + +main().catch((err) => { + console.error(err); + process.exit(1); +}); diff --git a/ecosystem-tests/node-ts-cjs/package.json b/ecosystem-tests/node-ts-cjs/package.json new file mode 100644 index 000000000..d2fb80a47 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs/package.json @@ -0,0 +1,22 @@ +{ + "name": "nod-ts-cjs", + "version": "0.0.1", + "main": "index.js", + "private": true, + "scripts": { + "tsc": "tsc", + "test": "jest" + }, + "dependencies": { + "formdata-node": "^4.4.1", + "node-fetch": "^2.6.1", + "tsconfig-paths": "^3.12.0" + }, + "devDependencies": { + "@types/node": "^17.0.9", + "@types/node-fetch": "^2.6.1", + "jest": "^29.5.0", + "ts-jest": "^29.1.0", + "typescript": "^4.9.3" + } +} diff --git a/ecosystem-tests/node-ts-cjs/sample1.mp3 b/ecosystem-tests/node-ts-cjs/sample1.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1e787cd7cf33203d99fa50b39b232b318d287541 GIT binary patch literal 121671 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC; + +import OpenAI, { toFile } from 'openai'; +import fetch from 'node-fetch'; +import { File as FormDataFile, Blob as FormDataBlob } from 'formdata-node'; +import * as fs from 'fs'; + +async function typeTests() { + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await openai.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await openai.audio.transcriptions.create({ file: null, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await openai.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); +} + +const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; +const filename = 'sample-1.mp3'; + +const correctAnswer = + 'It was anxious to find him no one that expectation of a man who were giving his father enjoyment. But he was avoided in sight in the minister to which indeed,'; +const model = 'whisper-1'; + +const client = new OpenAI(); + +it('handles formdata-node File', async function () { + const file = await fetch(url) + .then((x) => x.arrayBuffer()) + .then((x) => new FormDataFile([x], filename)); + + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toEqual(correctAnswer); +}); + +if (typeof File !== 'undefined') { + it('handles builtinFile', async function () { + const file = await fetch(url) + .then((x) => x.arrayBuffer()) + .then((x) => new File([x], filename)); + + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toEqual(correctAnswer); + }); +} + +it('handles Response', async function () { + const file = await fetch(url); + + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toEqual(correctAnswer); +}); + +it('handles fs.ReadStream', async function () { + const result = await client.audio.transcriptions.create({ + file: fs.createReadStream('sample1.mp3'), + model, + }); + expect(result.text).toEqual(correctAnswer); +}); + +const fineTune = `{"prompt": "", "completion": ""}`; + +describe('toFile', () => { + it('handles form-data Blob', async function () { + const result = await client.files.create({ + file: await toFile(new FormDataBlob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + if (typeof Blob !== 'undefined') { + it('handles builtin Blob', async function () { + const result = await client.files.create({ + file: await toFile(new Blob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + } + it('handles Uint8Array', async function () { + const result = await client.files.create({ + file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles ArrayBuffer', async function () { + const result = await client.files.create({ + file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles ArrayBuffer', async function () { + const result = await client.files.create({ + file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); +}); diff --git a/ecosystem-tests/node-ts-cjs/tsconfig.json b/ecosystem-tests/node-ts-cjs/tsconfig.json new file mode 100644 index 000000000..526d7015e --- /dev/null +++ b/ecosystem-tests/node-ts-cjs/tsconfig.json @@ -0,0 +1,54 @@ +{ + "exclude": ["node_modules"], + + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ + /* Projects */ + "incremental": true, + + /* Language and Environment */ + "target": "ES2022", + "lib": ["ES2022"], + "jsx": "react", + + /* Modules */ + "module": "commonjs", + "rootDir": "./", + "moduleResolution": "node", + "baseUrl": "./", + "paths": { + "~/*": ["*"] + }, + "resolveJsonModule": true, + "composite": true, + + /* Emit */ + "outDir": "node_modules", + "noEmit": true, + + /* Interop Constraints */ + "isolatedModules": true, + "allowSyntheticDefaultImports": true, + /* "esModuleInterop": true, */ + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "checkJs": true, + + /* Experimental Features */ + "experimentalDecorators": true, + + /* Type Checking */ + "strict": true, + "noImplicitAny": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "strictBindCallApply": true, + "strictPropertyInitialization": true, + "noImplicitThis": true, + "alwaysStrict": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + "noPropertyAccessFromIndexSignature": true, + "skipLibCheck": true + } +} diff --git a/ecosystem-tests/node-ts-cjs/yarn.lock b/ecosystem-tests/node-ts-cjs/yarn.lock new file mode 100644 index 000000000..5fbd2adbe --- /dev/null +++ b/ecosystem-tests/node-ts-cjs/yarn.lock @@ -0,0 +1,421 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@cspotcode/source-map-support@^0.8.0": + version "0.8.1" + resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" + integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== + dependencies: + "@jridgewell/trace-mapping" "0.3.9" + +"@jridgewell/resolve-uri@^3.0.3": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" + integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + +"@jridgewell/trace-mapping@0.3.9": + version "0.3.9" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" + integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== + dependencies: + "@jridgewell/resolve-uri" "^3.0.3" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@tsconfig/node10@^1.0.7": + version "1.0.9" + resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2" + integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== + +"@tsconfig/node12@^1.0.7": + version "1.0.11" + resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" + integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== + +"@tsconfig/node14@^1.0.0": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" + integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== + +"@tsconfig/node16@^1.0.2": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" + integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== + +"@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== + +"@types/node-fetch@^2.6.4": + version "2.6.4" + resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.4.tgz#1bc3a26de814f6bf466b25aeb1473fa1afe6a660" + integrity sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg== + dependencies: + "@types/node" "*" + form-data "^3.0.0" + +"@types/node@*": + version "20.3.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.3.1.tgz#e8a83f1aa8b649377bb1fb5d7bac5cb90e784dfe" + integrity sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg== + +"@types/node@^17.0.9": + version "17.0.45" + resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190" + integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw== + +"@types/node@^18.11.18": + version "18.16.18" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.18.tgz#85da09bafb66d4bc14f7c899185336d0c1736390" + integrity sha512-/aNaQZD0+iSBAGnvvN2Cx92HqE5sZCPZtx2TsK+4nvV23fFe09jVDvpArXr2j9DnYlzuU9WuoykDDc6wqvpNcw== + +"@types/qs@^6.9.7": + version "6.9.7" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" + integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== + +abort-controller@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" + integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== + dependencies: + event-target-shim "^5.0.0" + +acorn-walk@^8.1.1: + version "8.2.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" + integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== + +acorn@^8.4.1: + version "8.9.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.9.0.tgz#78a16e3b2bcc198c10822786fa6679e245db5b59" + integrity sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ== + +agentkeepalive@^4.2.1: + version "4.3.0" + resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.3.0.tgz#bb999ff07412653c1803b3ced35e50729830a255" + integrity sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg== + dependencies: + debug "^4.1.0" + depd "^2.0.0" + humanize-ms "^1.2.1" + +arg@^4.1.0: + version "4.1.3" + resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== + +base-64@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb" + integrity sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA== + +call-bind@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +charenc@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" + integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA== + +combined-stream@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +create-require@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" + integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== + +crypt@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" + integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow== + +debug@^4.1.0: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== + +depd@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + +digest-fetch@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/digest-fetch/-/digest-fetch-1.3.0.tgz#898e69264d00012a23cf26e8a3e40320143fc661" + integrity sha512-CGJuv6iKNM7QyZlM2T3sPAdZWd/p9zQiRNS9G+9COUCwzWFTs0Xp8NF5iePx7wtvhDykReiRRrSeNb4oMmB8lA== + dependencies: + base-64 "^0.1.0" + md5 "^2.3.0" + +event-target-shim@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" + integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== + +form-data-encoder@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-1.7.2.tgz#1f1ae3dccf58ed4690b86d87e4f57c654fbab040" + integrity sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A== + +form-data@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" + integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +formdata-node@^4.3.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/formdata-node/-/formdata-node-4.4.1.tgz#23f6a5cb9cb55315912cbec4ff7b0f59bbd191e2" + integrity sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ== + dependencies: + node-domexception "1.0.0" + web-streams-polyfill "4.0.0-beta.3" + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +get-intrinsic@^1.0.2: + version "1.2.1" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" + integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-proto "^1.0.1" + has-symbols "^1.0.3" + +has-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" + integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== + +has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +humanize-ms@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" + integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== + dependencies: + ms "^2.0.0" + +is-buffer@~1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + +json5@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" + integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== + dependencies: + minimist "^1.2.0" + +make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +md5@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" + integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g== + dependencies: + charenc "0.0.2" + crypt "0.0.2" + is-buffer "~1.1.6" + +mime-db@1.52.0: + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@^2.1.12: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +minimist@^1.2.0, minimist@^1.2.6: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@^2.0.0: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +node-domexception@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + +node-fetch@^2.6.7: + version "2.6.11" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.11.tgz#cde7fc71deef3131ef80a738919f999e6edfff25" + integrity sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w== + dependencies: + whatwg-url "^5.0.0" + +object-inspect@^1.9.0: + version "1.12.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" + integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== + +openai@../../.pack/openai.tgz: + version "4.0.0-beta.0" + resolved "../../.pack/openai.tgz#dd3471b96fa0d97a690c0c6f2b31097a034f012a" + dependencies: + "@types/node" "^18.11.18" + "@types/node-fetch" "^2.6.4" + "@types/qs" "^6.9.7" + abort-controller "^3.0.0" + agentkeepalive "^4.2.1" + digest-fetch "^1.3.0" + form-data-encoder "1.7.2" + formdata-node "^4.3.2" + node-fetch "^2.6.7" + qs "^6.10.3" + +qs@^6.10.3: + version "6.11.2" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" + integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== + dependencies: + side-channel "^1.0.4" + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +ts-node@^10.4.0: + version "10.9.1" + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" + integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== + dependencies: + "@cspotcode/source-map-support" "^0.8.0" + "@tsconfig/node10" "^1.0.7" + "@tsconfig/node12" "^1.0.7" + "@tsconfig/node14" "^1.0.0" + "@tsconfig/node16" "^1.0.2" + acorn "^8.4.1" + acorn-walk "^8.1.1" + arg "^4.1.0" + create-require "^1.1.0" + diff "^4.0.1" + make-error "^1.1.1" + v8-compile-cache-lib "^3.0.1" + yn "3.1.1" + +tsconfig-paths@^3.12.0: + version "3.14.2" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088" + integrity sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g== + dependencies: + "@types/json5" "^0.0.29" + json5 "^1.0.2" + minimist "^1.2.6" + strip-bom "^3.0.0" + +typescript@^4.9.3: + version "4.9.5" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" + integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== + +v8-compile-cache-lib@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" + integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== + +web-streams-polyfill@4.0.0-beta.3: + version "4.0.0-beta.3" + resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz#2898486b74f5156095e473efe989dcf185047a38" + integrity sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug== + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +yn@3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== diff --git a/ecosystem-tests/node-ts-esm/jest.config.cjs b/ecosystem-tests/node-ts-esm/jest.config.cjs new file mode 100644 index 000000000..498779998 --- /dev/null +++ b/ecosystem-tests/node-ts-esm/jest.config.cjs @@ -0,0 +1,22 @@ +/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ +module.exports = { + extensionsToTreatAsEsm: ['.ts'], + moduleNameMapper: { + '^(\\.{1,2}/.*)\\.js$': '$1', + }, + transform: { + // '^.+\\.[tj]sx?$' to process js/ts with `ts-jest` + // '^.+\\.m?[tj]sx?$' to process js/ts/mjs/mts with `ts-jest` + '^.+\\.tsx?$': [ + 'ts-jest', + { + useESM: true, + diagnostics: false, + }, + ], + }, + testEnvironment: 'node', + testMatch: ['/tests/*.ts'], + watchPathIgnorePatterns: ['/node_modules/'], + verbose: false, +}; diff --git a/ecosystem-tests/node-ts-esm/main.ts b/ecosystem-tests/node-ts-esm/main.ts new file mode 100644 index 000000000..6ffec2d37 --- /dev/null +++ b/ecosystem-tests/node-ts-esm/main.ts @@ -0,0 +1,36 @@ +import fetch from 'node-fetch'; +import OpenAI from 'openai'; + +import type { Uploadable } from 'openai/core'; + +const openai = new OpenAI(); + +async function main() { + if (false as any) { + typeTests(); + } + + const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; + console.log(`Fetching ${url}`); + const rsp = await fetch(url); + + console.log('Sending request to OpenAI'); + console.log(await openai.audio.transcriptions.create({ file: rsp, model: 'whisper-1' })); +} + +async function typeTests() { + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + fileParam(null); + + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await openai.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); +} + +function fileParam(_file: Uploadable) { + // +} + +main().catch((err) => { + console.error(err); + process.exit(1); +}); diff --git a/ecosystem-tests/node-ts-esm/package.json b/ecosystem-tests/node-ts-esm/package.json new file mode 100644 index 000000000..15568082b --- /dev/null +++ b/ecosystem-tests/node-ts-esm/package.json @@ -0,0 +1,22 @@ +{ + "name": "node-esm", + "version": "0.0.1", + "main": "index.js", + "type": "module", + "private": true, + "scripts": { + "tsc": "tsc", + "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" + }, + "dependencies": { + "formdata-node": "^5.0.1", + "node-fetch": "^3.0.0" + }, + "devDependencies": { + "@types/node": "^20.3.1", + "jest": "^29.5.0", + "ts-jest": "^29.1.0", + "ts-node": "^10.9.1", + "typescript": "^5.1.3" + } +} diff --git a/ecosystem-tests/node-ts-esm/sample1.mp3 b/ecosystem-tests/node-ts-esm/sample1.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1e787cd7cf33203d99fa50b39b232b318d287541 GIT binary patch literal 121671 zcmd4ZS5#A57dZMPgdQM-5JC?DLWfYLN(;SL0|JK75jZpv5H)l{?;WIfkS-`Hy@PZC zQRzhx1<_;o%DMOdjr(+;?|RtTYwV1XHRkxOy|U)qi2+U)47hCk)>c+Je_xpZ019L0 z5O;Y+Nog5LX)N}?tN-`m&!@8f|8))g-2eI8`TKrgGywRD13*DZL(c$ZVP)gs=0yt# ziHJ)|%PAh9&^7Z4m0dgmS~IyNCOB`q^2udw7nc~wn) zQ%hS%ch8e&{X-*TlQS$q9DX5d7|JVmCc3ZRpc)qkmQ$H zC~rAc`zlhA6wLrcQAq=0f#RH!Bjiw0c|t>0RAt7! zqN7Q8ay1>n=Fu<>=F4jVXsc>xYZEmWz{oJAC*4!k!lipPFaBvg6M3CJG;xBAAx^%^ z8({sF;AGc(ZO>KjpMHYX71-1us);>;j*-4hTKQAwNL26RQPHQgn&P*O!)o1qX(4YwQ{msm>fwAFk>BmtY86dCNon+%IoBEJnVfYzWcU||P7_(vEcN;#BsHWE3muLGnHXMnLGYkt#mV?tR zRxS3~5X0~7PwqfV4Y5;Z zxgxMip$hfn&pW%6QDVE4abBtBivkMCE$ubOi13kGcPS~1)-?=Iu`sF{%lpRGvfi`w zo??Zry?EAXLWHX4#&e1^UQ8N@+uHk=(|oL_)9wn$G-bm9MDoCIVwQ`ox7=1~7W&K90C}ibjud4zqD-&| zw8E5pBhEocl~3K?-Rfb({5u^v^5-tRH4|Q6M5e!L2ju)^KF*>M`a>5<=h<43m|p0( zdvij8EB1kPIXZ8l|e^NTm{dB;vn89(Na zx8N3^Y(&bC)@5<7W0&NzRNx3f!qfuZY`R_0pc*va-Dz7|;^j1;WGN8qjS^zcM7M=l zE3gLugA6)xre!+@(*>tm`kAuM22EG7YVT;~ zKC<#%9CZeaicxKj)DVfI4=~R**KKkQteK!G6Cgs;m6ZFjzHRqZF0iMHqy%g8bv3d7pPi@ z81LP>BsZv1{5Nu=mT;{@1Ec|37uT#thX#I)ORpQS=%g{o5!Z74L6wn?=J(XEi=v4(hNTz+DC1zzRXN;KKw*&nO1f=qYx)Z=1B6l?Wt~!mEsj2 z{^t4T8c!{5cbz}6Y*jJCSEym4YT90M{~wuD{n^E;xwUIo?esai6gRdpFZjd!3o@(s zq(mip)e(HJURZk{`Ikl9n{MzGoHZtU*4bC*kcZEFY{XdIjuO7Bm2n$_y-g-C3wc47 zC70wbjA9V*@f9cJKdTHcN9=DYRI0sJA!6K~65*_L&uGgW5%A+~L~Km>w?C|m)?8B^ zO=D7Q5*Zwp^YiY<=%)o7p2HTAmSGD8lX2lSMOtx1wUo>tT_;(vhbIQcXGyJ@X%boN zoXU#drXHB3YrmHypBUV5_C;H#f5m`F#;fy(%w7H4Ji-<48id>z5GK*qL41dw%3gcR zF(p4aczlIv%pGL!$TDY`^SN?Nl#3R^D$ADE}T} z!7M88)FW{smS9*%`*}*F`&qAxVXu^s{j#60Afwr?AUFGjoNFV?m&AB!`L5jWUa0m5 zE|=ua4Syows1+v~Vj{jEdpFV{Mi#X(cTs4EpNn#pNe#CAaWfnkCP=GA5Y9@Q+4If` z{`$O&`=-})4)gVSp;zAWZI&51jK#2zq|i48#@0PJG}Xq6qJyl4b#fH52<=pf%ux@zR6SV8L&)+6SFJ*5WH^&Ln7PqhQvRH6!lD&crOa)Gj zHu(kM8a(~W&n(iGaO=!!*23&7i}A8ru%+197K1E9Od443G{#RX`)J2Tu{_kx?vmVr zF&BcBwBjU}!L?Er(&Fq9a<|BkdPRbqt1B#IrF=_@&$h+(g6PQXs%2{>YYg7~oY-@% ztHwG3ehg!falA(L!(npquKv9)zQf}|Q!Xa@i+8S6ahfH8;`teNu}F|=hBhv;(27+g z(+>{9K4iA;@5x)a_;^E1-`P*9eoQD}HQ9|Ktm5LcYyq8ij&iDj9PfdLMrb-$>`uXW zbHAs7WYyJH>+$r?T_b%AA1hQh<~;}5P4lADj4LmllUMO@2DSZlH+yNLe?uFmo;^AI z@?|>v$6rz5R_L$UZ6eT`kUIAe&l}2I!?7a++|0WP;%xLsqeI{MfLnF7WqsZz+DRzR z+*vbT>ExrK3yRn3;@u);sRf^i^928^61Bb+^_rn%XJ=+n%-GH%h5P}eh=z>|dP#0a zhYNxH`(4gqF}1i}Q(nmn`+dM{K9`-#RJ<2Ir(Pnc%^jVpX1p*optu|$9?}KE+63j%4-nI#9 zf+>^%MK^-$H0gcT*8G8b}}m1R$h(WSW{w*OnfhD#w=W=#fS7S^4;a; zxeZH*PmE1I(h#+#s))&Eqx@9-uZ|#ng}h9(3!+;y2bhdsL6Vg-bi?#b=Blj{mT3 zeKbFDEy6a-tx~*m?Vb`OH()davzN-EnHwSWqNAjl8OWSSm5@cHAXZ}yrxND$V4vB4 zPR1}W*LbJZuuznN2(y}Bhb^)Pqw(-LlP(7n%$DZ6qtCwJUyK!8LJHb%8EfG=XV^{QO)L0b3+fq7ex_Xl8j-~K?OaJtIK#^&^RCsJv|yJ3=Wr?aSBSMK6TDX zRcjH%K$$Q1@~kFea$2lnsy?LN6SfEoPo2lz6I>Q%F+{_|IqFxkMEQDto|@~bEV+N& zDY=S&F`0=|JqRj|bzXUv?wTx->@~9F(xw;E1fa86$7zicv{WaeI(P;d ztt+m?gkF@%ZiYgnWM#;GztsK1kb74AY`oK@l(;X(9)-;EGEF8(D^Uo^ITLK{z@EOE zBfmmb$F2u{V=5Y?BzzEk#TK$1q-Bosw6-Y40(d+O3!*gxx6!)777@l|%lSf)r- z5f*BsEE9uf{#zJ?a^pSGxX*vkj0Q224PMNQ9HY|mUgt=nZO$sZQ(tgNuF1>lyG7rA zcULMWzd6u)ZN}L1>x)B^VZahqJhRDXhir`zYvbjJ4Gj|uWItej0v{t-Q+Sm)t{V*A z6FB^s5f4Hwc;_SOP2nIIjiELK9B$q}K!W<(WVb2Ib3d+ci;tRMQ>mJ@aO}~s4=?CF z)Hl}Ein@UNIz#C{vQoq7zx>R{fNM{!EI52}8I9w^&$Q$~+eUZx_ zWR*X8P@N-g{m|swt8B--9vJeeSe~ZH&41s1!?lff=ozR;Wt%Q;5p#3?`S2T5QdK)H zkg&9v?A7PhS0^ma<5nN1yB*SoVPbR_r$UFg;i$06v=nd#-OuUix?Gp!WKE~u#8|(H zS5ss}x@5ig$D^JQQ1Ue?`gjJQq++WaxcQg{MP;rb4Zg24K&U}l9@2nFu1|qX`u!TP z51?oey{IOg#prP4*rP&1ZFe23^e~iA24pFk8|`VU=Rx^+L?y~A?hKG;$-KHV1 zd?s~N0;wPq4eNJCIeQ5>U^n#>zlbm0#|zf=6M~a&J)pYIB){_OV-y~?6@qj?_SqN9 zq}xnIohug^6qtFMdO;=1t9 zILZrZ2uZ3Vkjh%kIb>wJQ9oQ|(NqvPh>j{cE1vN~u_V@mumis&$FKM4JQT2R!L1dL zFsiGjhxC_w5GdHlBViF8d2Bb=)dPJ#jc_#GZ346=KI2YNHh2TA%q^anV5Q>V!-leM zZ-A)^L7ZbWV^jc_Vj%V#>G$sIR@OqxSO$6|+c4Jv${i{~$7qdW$tJW?4CHUK@-l83 z6PLtXJoKt~Ioy8S6TDe}WJ^Prsxe&BeZ=(i1?$MhsvG2;x4>t$lkQTMV(gz*JNmBP zJHx*wx1=tv(0I-3+pbW)-^K8RJK&4CS*UT;;_x(9ree~`s&o$jGm$H$hd#TNRXITc zk{O&fvihA|7m+`;hE$bRZmGe8*?pg6e=#uMPw{Y!jeAYQw+*Y)QWQ-Gh8z;o%VHP_ z0K1q-p#u%}VnY`qZ9HkatP+-#EGj6oH7(6S_$YJA4njg`94^UW4Py|YxP9ctH6r4@ z0gsLGCl8t|vny;)@H5p+Bn-ayWLo;ligIkNim<2nUU<7}rNOOX4)p02%<_@-$waF> z<@or5gyIsnd&M9|M7ySWYAG~PV1;1&>)$A6M&dAuExLc#RJ%RD1b;uBGTu2;+od;R zy1QxP=xjGm3^q@8>(RT_=ZZ$~W0&pS+zv9|=$5Oy2rfMFa2*^V^w$|Dqzk}?1Gr9D zY}fz5CidNKp93^L#Yjth0u4wnw!7ZqolRzhh;E3z6c;x?7rZ(5@|k<-hf;An-=`w# zHZ2xmzq>Qy5QvPVc|=I9Ax7GtfTTh2C>J%*q;{H@ zQx)R8nNCAB2-eW-7Z&D%LY#a^baaeh1J{qP_1BmA;a;v-QU9T=&OQ1wi zCf8~)KGhvh+$5PdL15rvG;LFDZ#MsGdU1**9!w*1IakGXrxC&1r}=&KLsA2Vyu!&8 ze8m?;+`JQ@9Ka`6lsaGif?fQb8!awLKY3pVysP#+35g$A5&d#a3}RcHJDS4 zyy-@)7W0=7W78e$ei3|dX2NXu(pD}|@gYVvcwJCW zvd4;OddmCH|!J1ussyH|2^!x~>4%pA`(kbqBvltnE+=4b#2HO>`%R1_=P4iXkopq|t} zawk`>(P2)8;wZ@OSEHqNFP^r^5Zl0D84lJV7c5;S}I`tA%=Z{g2BJ)Ve)f^ z9L+h7g7cI~&ejAzO?Dp3D;2ug)7R;(X9BF#W$aXneSiCPe);S;6j3t!i=3;cXP-GE zyZLkKk(2F@`s;vud?84FZ8PNuO!8T>Fc2nem9H`ton?){*Wor zsawADDJIJAUw7A$ZnWhqD(1yNoJ3p)9g4<$hr zu2~|!mE?fpAk10R_AJgscT}0YU5}-J8#&i!vKBClvb`i{qnC9`*4oeDB5D{I{Z7@S z1PtZ{15U)1)5Jut&JOwd*2=G9l%T;Dj$mMamVtU+4<4J4;NXu8gz!~ZWmCWyM9SSh ze9~|<%E_D*OnXAS|MI4Lva)Z^IAOYe^S)gW<@#RuraOLdb^2F#>wCq`uoN%U{ZC%5r9G79;@*Zn-xf=S;fFpCGm)jK~Z1uiwf#Js$b^@6IJT7d2NzF?ey&Vc*AP`*SmI znDds%AmCb$~g$s4Xs?~Fz>KRH?QjO1ao0Hs)>@# z7|W?H$x*L|4lSbTgQRCkw5?IHtO9jW!bQ2u)56X%vH5bU3}5RkTOh0~Hk@|vs--dr zGLPyjvBpilb{TticzX|z;3liC{y!u9=C1h^oaobTv%4_%=&ymn!o4nqDv4EfcZ^L$y&A&r4TCr_e1Y@y%xjJLh=5?jI z)srH{CC0TKGPcXx5<+`3tL_s`<{jCHe+nN;zWU)KKYmQ!3_+q@EBwC=ePn&Bn5v|_ znx1w#(4kXNp2sN4V7B+!{_Js}U{V_}xS54NC&3{@yGz-TmFOxUM2j|PZL~489B!XA zy;dqY4-r|d>SZ7*Ezw1bDtAR1zwum-TqiTQsprfz|Ce2wz1l}tKw9MGe!6CN=Vo*^ z#?zvBxh(>Ld7?)894FAcpcX0MB}Ffv`~~i5;#X;L454oIWQf}SXOLJmkzg=Nv6ml= zmgBw&87|{-dF0$q=dM7}NMlVe#Z6H#uTR{p{J!*{HoYHU#TB*U0Qml_<*=1(Ciivv zX)&Bao+9sNz-{K7ovTd1xHy2K(MAJMYDRjWlln^9_v~1DY8q0>1{V=})A3JH-?3Ch zWQyO7?m!tp|3ffbO5BnBY+=)1SA@~8nm-_7tJiV;lX3IQwtJ;YEKve13tsU)y=3gE zNjJuJmkqcS=h9VRrQ?47u2)-f$1LE(a@^j`;PCJl^SL;d?VWa7EH6mUT@D;mmc85t zZVz;=+Z(EF$Px2t7HG9Le{UY|_AbVKIM1Li)kw1cZzlL}4&4~Xm;l%>;08wA)=Ktr ze}8nM2ae6M3)}6lnL^%CqvP^j|K694Dko`m=#JXOi zY=*h#QF*2@K)E%&~z{NJcBS?a`>rSnLi#j_ds7naC!zMA6gkNd=oWR6Iu?X zRinU%8UI~8Zc+Ogk3ZXgxOLp%HPNlJ&^o#9_Bfvz6a_)F&1URUvu#~RY&1fo__#F{Z7AwuYxCcoK|MEGA z!jtJ-z=q@k7fa!(j~#JQIl6Ju7(K5ZPcb+X)8Iv3Bt8SLaz9KVjLCrg($|psmx{?} zZ-w#?Y^A$eJNbNmIJw@Y{rTCYByO?aC!YV`4=2BFnxqL&Z?C*!c-;KBPfz&6!K<;i zP<|qVi|A!htDk;#aSDA5of%J4tmoO+BF#p*037HO5))s-Z|mqnZrv^KIX~h8!NFUt z>%iTTBy2jL^ITPNcjeEo`I`Bzz;s*k`7s7cRavrP!qB#xBj2mOu1c@^{)!oXKF)!d z9#?}J`DnvBi2#>tt0JT2p_F(~WKCGYSrdU~5bZ!@iDJXXXb?}#sfq_*Y6U8!MkD=8 zL(bx#egGI7a_LZv%W^MM3q*>C!XV@^9T|i5Np7ZE;2ZyN6GfpcHVW9+h|UOYaRxmj z15s<rz!rFINw?-#2m3@JWqryLSg19(!J;8?lBe(Oz%>R0`%aefwiz&OraC)rpbH5Gq)DN$fJMb=Mzf0qCkulY8EL3^KB$VS4&{g2wg}2Orrf%vzbqCr zMhJNx2y$()D(v5QWLK*xxzjrC{HS0yVZu?5F^cJSwJ(+a#P-d1x@8QL)VFw7B=jgB zdFAiYvgO=JGRAjZ!u#9mDQG!e$%2zli!RCiG2x=h(AdvX)9NtZM$d={Vmc9mSJ6TR zvV~f@*Dd&?URdN_D?~VL6oh95JrKM>yJ0mxVpz3vM=>J&IcfQS^;4Vw??wV(0fp9^ z1I#_ndLs~~z16o-BoGNu4VsTDRo=Lq~6gq!{ZG9sS^JeJmtgHnVm?o)k^S|i*uI^m=FQGYm^#oBU@P>iw zZ(LvedFve(yjpvO##Fpqv@-v~bM?#e{jD%FgPTe*t+^A|+pIrv*7`ArzOf`x+_%k~ zkXqEhasntQ%8Iaq*+KT2bXZqJG^9)v%L51?0Ssj+G~BSNbXG``oG?gQLn$f-tmy_8 zrp*s)@tWtHJ?)-mb%TJW70oCpIefIP#4zTUX(}qxid)?Y4DFW#;E^bXAHJ@0Ll|%j z1dWM5EAW2U-wGL~?BFkeFtVX3vE8VgQ7Za;8hw|Knq`B-8lBvPeogk6SgJH%F78!+ z&B!=1wUCjvc-2D?$~{Ri#C`@QlQ-g;0(<$+%4ngQ)f|SSXx`X!`(>K>B}pti#4tld z)CJ}WN?8hhKC{u@0AWSiDXdI+Ghkm}$28`W2l>9_XfpMnto|cs*U3oO{8#2F(gvL> zO%n*ZRf6EhOg;ZEzW+PK@&5eN@Wbf+#$YGxhx#eS0bu;W!P@Vrm(5?33zuYmFQ|81 zEcF=HR@(ZwW&aLw%lt9taE*pe!i;e>f7u||yYunA!j<0ChYJ@7X)iE}k$?bHk^ts_ zNP-x)jirM_{*P=8l@;hC7uFIuR|e7^1W;M?lUfK%l%91jS=M?e0e}(4hG5?~y*DA20@?Dj=%ExyWb;oc}3QQ!`x!DxuCPtj{I zn5I^Rn+Wz6f^j6Hi)>>M6qdxJ7Q=rr_%|(AF+8kJzwZzJGX45uI>#>GlKGX3`iHhZ zD>GAmL3bl6K>7k)ao4V7hhvQR-Uj^|diKT4|FM+Br}S+9r|PCOl!qhq%l%-4=S++|JQu*xt;}i*xE9a|s$F)G~l-juyY&3C|n^}U+Cen5-W9@;b2hOJGW_rDfI<)GAKb2K699z)4i+*t!6bZ1`Uw*zOT zp@1q^UNBHlAoZn*Q1-aE)%i>)$()u2ojjE!T{izSo4%=bT#K&A^cs2pnFX5DDIG{M z@UD=;YrNK45Kq@%YfDJjtj?$cgP}I%EH;L zfa}9^nmY92n;NikkOr)9_Ew$7ioFU)Ylw3zZMX+}RfAvqoFg}BIugn_ytxGISh^C= znRT8+aH%X)Waz8kbMx*`;r7qZpI*Jqy7}LqJb9{8{CGs(;n?lpd&}Y6H>y`)1wPD>UYY#lyUT%s z;^iCR-2d(=Uo*0F-O|_f=pC{}r z2TvdL#r!b2e93&ndd(VBNmHrFBB*WR??SjFch_DV5wSVTJI$_9$pE`4;GOA#g3|`Z zV~h{sds;)gRI%0R7Df>)uqnRB_d%(mmVequsA(#py6K|$cBQ;7#u+}<?NNeRU&ls3<^`9Jn>#ZA<*-uoRa` zDFawlo7M1Bs@GN484+(adLeUun*+w@wKR3UnP7Hutj$Ozo4R*S0m6N;VhMSX5+9mvF&9b~lZz*lAS9z8&7+jLm#5FON67I3&yv})RDwtSeBHs6|CW-tG z2L!MTT4B!`Wieiwbegilc#$A_%l%*4tP7n|2X6OURrjAx9#r%g~g@^Jh(sm6+~1@*nA`SAm~Hc z!B@w#tIPU)y%kOzXwdtv>vn=@aMq9?R(b$!5LgSz}#d+8Oof z6}i)^=kG-S_}ST3dq?~ZI=XVR@3rsZ>X_u)swaUbdrij^d*`(Lalh2&H@Mw*qMssW zt;BIH4|p97zM7R#r_M= zAga+3`zsLWdqIru3;1h~@=b)S4m!$(2HDyDn3p20SS zEa)h57{ccx&r@Rb&DatvHsYIFOow96Vb#j`D&^EVYYV%EG1dx&po0W#wwqEjq{;4~N^*Gn#kkT~+&Og+u#nLf=-wO8IiO5%sb6-h$q>t*i=m>8jPl}f@GnDg0nI68G$@vy z7w4Extx|A1r`*lQDlkz>P?<-k86M}b&1-57i1&nWAj^(sADSwE2$$Q+V7L404$d^R!Tr&z^G%jX|;6>A_Zf#gP*nJw4> z-gUe7Jr((&&YZG$yS>XdEDPC{^ORHksXHO8QPMf2Ij(7@zN=>B$pf9J>?g-$we4}h1- zSt5muaR3eHd=Qm7ARhuq(IE-XrDRFk7COZlzn60F8Cwx$nPaS+xhn((b#q*7(gc13 z08OxDKx1)iYH@&uKN^Q0(5WNnzk4Gb_#*_LT_4wdQTOJBO$J$^8V73%ZPy-7WX5a? zYKK;vCdG}sqUd5zpQ!xj9nQ(=ks`W5pNKe znIb><@9VkBZW4JxGVw2=N8PiYXuR$^7 zN9+>)IY_xQ2XqoObY6+%F}xV9oT}KCNF0RO#J$_9oV;zup=*UJ-Wc+sWd$m-|$VV75+!-R>-FrOmv?HT6|- z!4-z~Fxn3n$g8LE`9KxLHIRuEhUJNqpLvW_*h&r)gInNCyvgeAi1vXSuQI=Y20R_$ z?&8bAuk}_ksh0$_^{R@qURHN$9c9RJbG|7WW2uc@OYv2H!c62z){}hk2ywSVR$k*~ zDaF@}o#)q{U+e9+=G&oOE0D4d_r)d$SS}M?P!MT;N$$+x@4~A8Y7MW!%O}=yD+|a>j2rIwmihRTtn8m6 zF3!hB*T53WeFI9rcGUGxZcUaq=pPyAH2o0z>ffdo=RjHJ;mQFUAc$_&w}%u2B?isPH)u~O3tFEV=hf|j~rO@xJDflDM5FQTB$AP+2;P%$ogk7Wjro8Iv*{5 zB?13H^u463X*I>%ls#w7WX_I_tEX%_4-zuE-9Wj*VfbVJNHbk6CB2 zV_rhj-b>~ar39e(Zlg%>o_?dSg6=6=FREf4^^??m+e05BQh_AdW#13&0Cr; zTzkcc*M*z%Mtle;)zXe=UB7;SdM3*% z=G~k9%4oS|1{KiQcm6fiLEG!-#sP!a)XO`y;>jO}3|=~PUCoH^8gxdPit}4CFjEZo z6mEGG=1iR8sx8*mIKMvT9$Su7_M>Z6VN`uuAX1!BF_BLp4@0X7RlpD`A7}94->%0l zc-6@yCVv~YpPILQO3#|0`=H>_R<2sp#7?e$DJIBL1l0H8)l=qR)L4b-=jnb^K#qo= z5ZMS2@G+frY3Zh|3GEx^k+Mi1(j~c7O*up+%ANgC-am$pE+v%|>Dgb(!N-)%OLh(q z9GB4)Du~w7^#7^IZOcj@YuP^$HrP(q0>*GflhPHE|IK50(G*CR)~t5B{bb%|Ew`~% zO?^hPVxQ<0B=_sObt9Y1qtxWImUj#FC)~CyqE+pIJ;Nh68}CeNB)p3;6-%v5PnILO zw)qJOly-P7&d9A4gxprkZpDWf0QDRZMck79a4IaH_1&hXYnzgwg+^zeBp-WMOY3QN z84ZkF*;Dfi1seAJtyo(Z3e#800!JMyvx`a&A8nT(u+RCXb53Lu*%RE#!&yT6jO_R= zMp()Uk0y&p1|=6w^{Vcrh|4P9##@ADuNh}P#;fw zQ?gpIc6%8_)XaEICOPCO8$oJbT;ApW7)Kxi2=2Udi-y+Iz3caCc=xT#CLzDnga_Uk z^NnV4cwSGi_|3f35h*J8iYPSb6JWp&bI_|cudtlCbY%meG5`6Qb*SpVrb*f2!Cv2@ zI(3-|YZBz$h%4mzwfAI*_S~0y=enKWpQTIw`te2nj;elv`Vy|Kvm~n>U)Rugti9y@ zZFO;PdQs~Y{br9K{T7XBxhqMVazOY#xy&0p7sCfN_*z8HZ6nO?RvL|jJe~Bc5_L3nvR|+bp%Hqra;)-69Ck*kl3G$(wg(c zn=17QaNHQUl0<^9R+!IgPg zEqxh{O`3uS1^IYX8y(jhjKcLReC{gk@+MqW!37jnVO6x}~Gv;6h*21&zU zlMcIq-~0&JAX?3h)Epsy$^P*+6_cEJ~0yI+fO*t3^kYf}uu!~tbH5e_7 zC>qk$jKsy2(KC|@p)188(4IoSBy zRvk+HH4md}gvpb3=t(;Lx|)sBcjL0%?Wt!0jFiN+G`jST6Pr;@adgBZlP8o>bGTL} z*}lZ4-cwtFt^B0g=?Xw>eNvdH?TTMazVwe;E1QkYy1>`YbJxGt=W(R=q$uCwC@-|_ zd_TcFqRn=E)m7)S7Uj|$eKW1Ip=2l9_X}M0ISD-LL09uGxBk~1`@n&05I|9;3_wLm z#hH=yF)R`69J@7;SRR=uz?^M-^t3`clB5(BS=ZX&rYYw|W+e2>uz?Zzn+?uiS*6kX zkpz?{b)?<5z-e0WOa6__IDq+uR*bI!El`W(E`k#f?&p!qNa62r5L|-6U8hU5pqIJwuC!RKA4MEN5T(Rs^gv_qb>mrLhBy8t_iELx zh(V!wTg&$Hs_qci^r<__TV}>jl+1M=cycs(RYR)5divI^9F~?|)`Dq?Hj3VYrE*?w z=% z<2ZVQYKPW!c$?J_8v1cA;bPbV4u(TxHv!lgdE^YVtbbFW-<)fpB7OQSeX!MH3=RU8 z%}1kL(j=Vd)mk)@I(tM^#bv)_0JaMPS;!hlfPOWr5%D~dsAMU-AiE+6@Xr$dq_`w* zd44$QaIJjDy|ej}oUg{s6(7*4iB6A*%gU1c>bac-EV0a? zyzAG({g9Eh+h(1hlWFBenN?-)@K|eV+Hrg~p+P`O+dI3Ky%2__r}LA})tr6>(G@*? zS8(H-8DG%-yC(M!Rv)}vy!j0FExoZX#@RrbJ&&VHL_)Om*V}^b)O(y;>9s|-6q@7_ zmXOXoQ)U-SAJsciFGzfXV5tQ^J0~{2K~Zil2y)+$$H)Ts4*YF(JHoU{JEL~Gt7g23Rk*Ig9D0$j%ZX;1DqlUnnoJfP9Ds~#Q;x}^rLj2dRbN$igG^*T zn+aY(xvcO8>}5Guxdi&-*Lx^@AeZTm6dxZ`z1*|;Ta<GnG55jE1i@=rV!7gB>SYM>GV-or9F8 zpx9}b{0zi~NP_+tL9#~kYgn;_*r7J_*RR`$v2^`Kr8IUb>bABi@&g3igHc2OEo#2R z!G}m!;c6|GO45N?lCMq0u>1>)e|W|h{8-Z|Q$lh#hzJ=4@5M^SDGJxN>#WWVcY5_w zfDV(*g_DB$$tNwTxjXVXrmm>;&j#I=CG{4m*~rSmJvR9b2 zx6=Eo@IILlq;Gf!MMb`eO0+>pIs2ADaF$2v|)V-&%El z6~dMC19vf(clsW!4THRZB<;`X4&a}qD8}6L*O$sM#YKZZl%?B@X;ax4!CmtMAp*U# zE_F)}rbW@=^l83D$;+LIy zgZaJ=u%*eQg`P;3`DeP)SFPZ6XZ}HW-M)2IqV_zkkh}DXu2aLxYmBpEpIcNWLH!NI zGp!E20Rf=_pr*@+bo+J=kFhXm6y(N+wc{~P4LUx2WQW9)zXeh=Er+USp znCw}xyX!-Rz9jch-4)>jxU;Y^PYG+a6V&w;Cex>q3h|EGuGXaD1&EB{C`K`6v#H9O zwM+>P zg|z(%iG-TepPyn96vP08RfH-f4Ir>CA41pHk1G9i91KstTl5BOFS`2p;KBqjg7KQ+B|Qk~51U&vG(ZC!PJB>&V`0V#r2u!k6IRSf!* z@dE|OvLGZ{DEY3M@m86!ICruI1>^=3#8QI+O=+yh08yb#7Nkz{Bdl%{P;eKthI6G5 zzudfwGN%-3bE-kh&y#-`RHZ=`I_{eR$WE8e_xH+RW)Ilvrpp&@RrDFtoCYUPP-&GV zH0dJ<+x&wXn=4w2xp;FRzb*5>Hn-f(ZIWLM6GWZrk$2>@asH-{7;1)2vy8*G#*TWQ zUe47YF1u8O?bEk5Eq(5HcOv#0GXYVrZ*TpJzimo)N8l`^uJud-b==ZPTqxiv9jtOPh}! zIW9LE&Kk=Q9&SI%nOfjal~YlM{+w^;z@=k1<9oo4D0Fob<^W|l7?2>;20$cy zY`;UA!sw2$exyZ4P2$$zI-pEoa7Q~p*0@xT8yFiyWzWuGeYKf9P6N(jnI`_-wwAOS z)_g4!w@#d)ilTF!*T7f%$)qc0GqA7PR?iU}AUH$oJC5$c<^3GmD?(fRXsDqkL{gyc z=)dJb=Sc$zw0}d_I6bJYw7tQZn_hg1hB(Md8-^bq{G1WR3HDk=^>=Ue;;AG3$@Y!Q^Q)YL*1+5BOFGkG3n+j{jF7BL^7{MpD*iO0r~1k5~OOSmLl5 zG+%Q5K4kjW`aQLJ<~<3yyNX0`{(Ym7!lmI4*eJ|`q#Q*f=wo?FGD zC`$M%9zXkOg3NQP49>wbVjikwJ&nVSl2)<;?|_C!-rr2aqOjAT;>T5=d<35Y0v-g6jza$Z7Y5zib=(k2@w|Lt(f#Y}Yjp~BH}z@t$}ik4B#J22 zqET1;fyn)0v)=62SDp;mi8yYyqC$0xpm&T~ka4ng5H6*qWP^k0y8nx>|BPy?YrlBm z6bJzVh8|*ogc^FN0wRXcAwcM%n$V<)bOA*ZdhaD5XsFVq3)av((iPi{G!e02*V}U7 z{=egS&!@9LWMqu&FZO_w{#W_R5gl;}+M8zdt8z>SbwZv?Z<^JqHU@IdmwK`g zXLpnF-%|g#b{3JxTsRWDlIDe6*<=>eOLo#^0}t1g8$t1Q)IEyO{eAt zkCT4Gk6o&^ABwYM8z%WZsfNBwZmmO<9ts)?fsvGRFcR4k>_iUG%rOq)c@!)bAX3W^*cI5<)v^`~eRrtY%>CypoWD5F=0cvfVkWeRbUZGowiJhe5Xk{oKx16t-LlIN!LU znmNrV4*j6=_ofqwN0NrdiQw`%)O=M>Q#$n6>eQq|)RHaLJRzqHCve#YxGia1z8$Xr zA1EeU03=od03_8BHqMHy2+h>88_|3dxM(I6G*uBa?OA+YJj<0RY8x|5j{l4d@`Gp#vbHd?)@Zm`Hy7%YS#WNPYjIgS;JV*ck zUaZz5!XC!&Bm}E|aokA~9mwmj3%rd|JXQW_V$rC=+_8>~?2Wv8yT`ocI%f$i{zh(- z#lY#X%foj}F8^Fv`Hk*3S!oEulYwLS4wfcAQ8+1J&LAlJO7eOmuz?#u^R~BbFh~hi z0s`haaUkF(6kv!;0W#NNlpVl2?*$E7>a)l+y^5!tF-cHdz)+Tj|NFa*g3)VbQ;*{= z`xR*Si3lojnJHbKzP-}Pj1oW|Yn+>^PNqBD&j~{p8tR?@jw{IE$<~{i1_6hve>%!F z7aRN;Zh*xV3y=GdWW+G$2PVkbhp5fPzLnE24mMx8&~IDt>_c3`@5xsk#BTM;rKv~@_QOh%bK<%v>_j3H@rpw;Dz?AZym2j;D z3mA=R3I$K(ss8;N`|MHSsS?o~ub^|+md6kvv@dg5HVmLd1+b+GW9)rq4E?b+Xq22W z{t2F&opOy557<$w(ZEk-7^5O|5@C|xd0OgL2Lb&}8}6UjgiNt&{;0yg$%r|t7d-6Z zPYAq5ogADi-of`W%5r$tUPi!h_=bx2mFH^oe_Ky@&0bs zR_}huogD?)H@MwC+^%JUamQhoEyN(SC0V*CL z_sJi{Pl7(`;uW&iSb8?Bza)K&282-oBO+leJ~yclR`0GAAk{k)B4)j?-}MsMh>7OL z6|g^3F_KOYKaSMN5uk*FURLOqU zyi5~{`m5ARA>!KI(9bnrZ+=qPqeDR?rD4F&Gp!3%jHHaRqbg;xVWasdLQnY7I}`ptK-^dZ^%M zj--*4gaeGNEr1sGShTnTxnYQX4iI$ zr>^hF))%4ns-S0Hy`lO)S6%%c+0C@+y6u(OR(J--xHf-QGdv#{%_)`H{G3L&$istbpZkKaFb^|5CNTbiG{>C;{v=B&OI0rrr0QW`!JRwNlEm9-<} zA`BE)WAS^|qmBS!FgziUiLrLjO;mUOy?kX|=eN1`uLqn_F%#Ys?!pXacFs@@;Dgkj?Y9y{30{22Y-wQr zW~fy^7~|tntOanXB}+B?vWwaR4QCz?)Jz^4)I`we&2pvmH8BNEcxk=C@{(~h7xK#FqSW&!`z1mJ`GZOe zZiD-A$^Amy9pxFEhzhz?!PSq%8&bzh92^$zeEhMy`TF2aXRwOY^l>I*?nFfH@x&wK z8cs*<(Eu;_e?uINHtezlda02?sX#-Z=(ma}x~^)gRQ!8+-Kjr+|9-8KFa7mqx^KC= z9$`z)8~T+9q;pVZWbkrS@!Jp@?SYSW@qEJtje5vrbjd+IwLN# z8{Yuy15&4ov0NbOEX(_51c;=Ds4mEtS@9DG=wQ367Is3oLzoLx73pWQQPSRcC)G3N zYTPq|H*cRgkHErfk9Nn4Vo<>#ewInf6m+B)Ur5*$qgC7lWI!Myf-p>~VMwugzTin^ zN3!|i0<`Q5u^L&7;OO>l=hBDbfx)rgN4;*fJ#N7Sc03~}r-y`9 zWB}&B`#Z=G3N$t$uGb8G+yZ3}P(?_o{Nl&Otz2}q(kj1V$KDgN-G@_^-_zSi$St0J zvv|~;e(pRj)zy5EbN+$C^Wt`aQVS1f;a!dVYi3h_+Ab($2U)%fEYm8^XwK5xlP^PV z|8Grjq-X_XS;}|w2}80q;dAR}v)vFx6`t%sz>H=1pc6d>LrHysciw0u9B(*uBIoEG|F@} z^y_(@h(&kDc;xakio0Lp?Y2|Uj5~&d%m{((rEGY?I+8Efu0}&H+Dm%J`0NV{Yo&r{ zy86y<{6{vo^!sipeCyiahf_;3ukP?+du9{L+|+YQg@QYcmg3x1`<+hd;+)5qi@(_6 zs{-Bcy;@6LefzNd@R+cPUoH3h=jvyk)+x<@-rt{9C@8nG)jmS*quB^oi10h|-NnFY zpv4UF)}+K2uS?^9x3qGi$$BfZ!e}oy$IoUhYp;?s4@P?XJ1;l){&O7zps)cOz)Tnq zxQKlrRPzm`o2?^}9b8S*K8hrl z|1lPlW)e%0jCUq6nrAVlAOEgpVUu>p+1Zik^j|HeKv6@B z8y}<^+7X&w?p)EnOCmloVZ|ngO?M5AQ@>T~&#Oj$SF>1)t6BemY#?_ac~#8wo$RG~ zvm_6G4jeS>$#vQ#}GF3w9fqE*t}F_=l85K$j9 zLPBU%8VSx|17i|jdsSGpEu>)83u$&q03SqGHzo%m%@C(`;2{i121&;t{~A+@sYHdr z(CZw5uziFelf`+~rr$$uish?w_H$qDp03PW5Lb{mtysj!xiNFbpHS4`IbqN-gPRX; zBZy)6xh$TtSl>HTjm2lz_55_#?NuGI$ZcS^XBOBLR#ci}p3*41;Cz9(L`#{4+zqB*oud?Dz6gOl+V`a z7@bBlW_bW-B!Kuw_>(g@S{SPbIK@o#u?*i~qhcX!O8^`c#W{$MZ$f(}4|?2`;pwDx zAS~plrjVM441ZcWnzZcU2r)CCsQz)=H2c%pgh8y|n~c*CY`W`71?ye$ZMHV);JGD! zp_uR|D4FqRpYiFhE8;#oU3x8HD2m_P77}Hk#|upqlLYUJB>SJZBASu#_wUirD=&|e zx^^n*bV~jcc~!-CeUNVhn#8zt3%TEC%Z}xCm-!1J-+Y<;zcUX%E4CAU-oJhPq*l<3 zn#!SmMZMT;EO4RHH0Y>syC#Cdl$fvNXL+?o1}5{U{m`zkP6x;hcOawqUNyo*jB7^{ z?B(A&b8!86og&kmQZ|+LMnM!H0GdDa{j+sL3JrAG-9I5dSmGMMwa^dGHEMJO2owsA z6NE!!*ul_|I*BR3E}5Okj?W(KNAXxV8hh_JAABV_L0oGQ#i00O_MAFE!J7zFkiy9E ztI7L0;&`^{eO{F$Iy)kkvP8qAcZCD+@P>e#*D<-K9x(AAB08|#j2zkYFGWy{xgs@H z9Hb^Z+f+fK8ID3BX^2OumBHEi(x#dy-+n3c$zPf2H~nq(D50TOFUD0`U%7tqy=yu4 zfV0>-ms=`JK=H@J71Q?nJ%JPX&W$fEr$!#0D);{@apLCTn)ScK`n=_~SdF~sTA7nU ziM83md|%yvW7W1&msFOiZX!m-_izKuN%Ht}1)mT1Rn8k7>jPJtI_j0MyRcG%;Tp`UnZ z73yGFDWahqu7qn7z`Ur&amM@FFlhbTm_q*kUW zDfwmQ>x?g1mEi^1*`UKf8OnAQj0hM?$_^Pwp&L{CwSU>bU-7SunVl`1#U2hYbwyN|HV#X#q)82+YI3 zHa~*B1I)RorDJfgbfuMAz0W_L)FQEnqyV3LJw~zC0yG`;5hLua2 z^h8$-Suu)LHQbs#ql)4`H%*TRp+Zc48Jhjr^nzly4BCh4&MQA?N2!eaRsFg0|GRI0 z|L$FWd#b`cBJ*?1@$aFY#mZ(kkX@{D~`C0JSP#)Q~JR_Gm!#>~4nrqPmxEgz6?YA#^rkDN67iQ z!gvD!@2&@?iLPRD*apKK3E)!tOR$(1XjOf zUXP%VYCKl1;W~aMqQ3US%nx@Ds4><8_j^*LCsI zeY=TkQ>QknV(zvLJqSwMS8Xq@jkgHfT5nH&?bn&dMQ|5W)=?Rd}r9O>o#xb)fP z^as{5oMZ7F(i=JhU{<#Yr;DZrfMMR?+Y$V1gWY1R&Jvs@gqX17T-W)}rle%#ez>)` zQ~I25ix1I^-rh^t#97)n4C6TKaGIt%(0nz8nI4DR>2sjC5g^fRm|#M9CfKLy8ZKe- z(Y=mi3@bPZuoU32ti-^bQ}puiOhYi9HJ?#N<1V!bl50wY;DFngmpOGx>H{BG1=_Zn zX{Gdxsg&@jM_1{n-bZKK9>=a2MH+dB5BOcv|CCWv9m#EN?>NC6NoEV*lHdjE_~WbC zHYGPu%R|Ic!{em4ci$h??p^7x+okoIxwlSQ&Xo4LCOVv(+SzGnJ~i29OMFuW=~{Ic z581qDubglvs7*`3!EXNq-HA<2Zb6GRn3R^BsaH327Tv*l;;{}28raGNg=^`s6xeZS zN^G)kF~xu3Po8X3hDF`bXbsJdl2MXA`dVcn1q|Ue2REydb)=7wvotmqj;h(QcBIS~ zl$6LY?ImfSko+_KRyGYiT@_?FkH{3~IU~LtDj=Q1oBtx05+(bVpDmQcuO!;59*Bn8 z-ZHSH@cUSPz-yR8*zzAV_ggHJp8inqC-8B9DL!5Imr{DpE8zB>rYPIe%XL{QXNK}B zTI{dH{yIC5@Yp}zZ#2zkezuw1v)bY>4(*b4EP3_6(f#+g)1FtqWlv9``a@*CmUL!8 z5WAxR%T5?n8&NnSCaAPAWDoUjG3O_qA5tb3T~gkjbmoIj;*T*@u)zr(}O&b)!v-$|#)LGDpa^6!KE>h0ce zW_ktfTm9|fwXO=Xejyv_Gt2#&wjvT%v>Q@-Xu%!r4iNVd|| zGCQPn3&SRjqHe2OeAapu2E zz1Qk4g{I)B?tq}PNqTK`ZSs#eoz2`VY@gz>%b_$NEL|Uo4KNG7!8+3yp zAR>%*W<{NN8G`^~>hDgQfka)Q)I3L|At$cpHZEzH6?)2vZ@wBHSX_KHe;yi+ClVb6 zuRyazNXDEHyvm*3mhE?yyoDdXdps#`8lNZy9uF~?0UigkTAj|(4GEAX&L>6yv^wji z)tp=N$xch%6y+k$JPr8Ar_(=BpF51 z7GNt|#?(LmvGIQ&6=QoN$BtgCj}485L+akmJR9K@9MTbzsBuE&yx9o#7jIP#%`#}P zm7Yx#cA8MnRCY^W^_;8Ed+>L|`nNDH`FWN-ju$8C_|b*ccu9~ACU6x*I6J7D!eVbl z3nQ79J;@j!9`4)>4{VGG6oA#_3z%HrR>S}i`K@K|3Abp*J7*Axx+u6CFN86l>lDpB1rp=k*|9vUGXkfjjtd5kEDM2b)VH8XWw{|ZZ*F!yEbm2dIo-3g4nJ74cCedtV=T1ZEY zDh4>&wl#GZlfNl7qgpdHdu=FH@?x>yPw{{xKT6uKog0;*-33mrZ!GHB&6p`a{Plkx z;F%Xy8b!H2M4gfU=5jHFyF9!j-quc$t!5IcKOk6i#qEz7B{O;n{;vTCjU0NwVJ{uCuVYmPyIDZ>zm$f1fwu z@ir#V%#@92G}{R_-a!DLe5E*;AmF&j!ou;asZ3? zGaODrBe`gr&JF@1k|?7_8u0p-bX!j_dY$>QBkhYNkyWC6fxiyN)iX8%nOSiGFm+xF zoM-B*-?fd@bd+pv2sHWXf8DeJlOFg_xxIyoyk!+9cYLEe19$ujGL%WJX31DdFNkQ- zT)m%g(^UBq7Nn5{A)TLZG!ZS@Z+nWxMQpwg43Am~J9K6@sfstH#oU;cZV4Hw74>v3 zx`Mic^K0y0;fcVLskh~E;h(;L{YNBMRD@^AZgIzoUJm`GAYq!s9nr-uSl?+#**Wt&=rt+&#Q zIA}veVMKK<)SMwg%M4&=2@V1H&1m<0Qw1tMQjFjqBryz_?qTG9B!-(8m3f-2dIPQ- zRnu7plD9Gdu~i)gS2IWeT-Y-5no9xOIzi5vC*jN%I$zHsM#+M=aTnmHRQRzekk5i? zkc}Q140QP^AWlKLTXQyY##d-uCp(;pV3A4r zh*?zW*dFGkT%O#G_mwYCuQusFF?yht^z@ePx%dBGkhioi5~GkBZeCmKTh~YZnBP{2 z80v(mmn++cV>-8W)8Ex-7X0^=v+6lou|B@*mX$pnaYXPzb`H?c z)R2bxkxpMLs~$)k#3X@Vmcs^XQUE%cxbFd6#p#WNq(z3o(XU1qX=9l1$E#Y|sY;Uw7gyv_^Z;Tq|R z=k;N>jhn-lTGJQ!bPh;!(cOMeh7uCa@yeu08+}yAT~gru8CwV!ydCycUG%y@Z+L7> zs%qneTgZ~jb$_~#!D7eUm#BvV=}GiRC%;)}R##YrqEKtba6vQ304!NO78|yb{+rb@ zA((z3h`4xKh%Fm^VXTD)ui=DbgY|Qf22&#rK){Daq<^CzT$F+3NFOxvnE<0l@#|X% z1*H9hJn-xLXN=U7C^Ys$1{+18NE|XXg7M*RaOgGSqT{>NbdKxLWU0j+ns5p!iA`;U zGPqr&%#Js5aQZOQEJBFI!u=#MNrUOLfYqk z!wwV+fy0iFtEHfX1GwIc{{jK|fe3bp<{dQz$(&yb2`U){)Db`sAT#RVf+4yjzZjNm z3P6H-p%qV!l7Z6xTpa8ZHBdt{(J(9Xm&O(I=^Tpn2_-dg$;FE1K1qY^%X2ly8)ekP zENl(h;NKf+HJ2==#rE5)r{KkS zn}^-$51MC0ZC}#sx2VLMK0)$U)St=uiQoO?=C^*pzw9x0b@Fr_ru-D*v=4ZF>__j! zRn=iOw~N(mjcTGJ%9J?!0v@&=8a}g!3c;nj|8l|AvHYDhR296dV>;Q-)XU2lZVbbN zD8m!3nO5aM!X=ekyU-C$)4Y6YVzwxSh6TF9j`Q{#r+FJQQ8&tF%b-cHApA!vIS%NOKwa0}Y113+KKGV-Jbtw-Z?hAmr?e)JL60l= z87|mvdqcsD%G);Fk9(!x&e)z0BF$#oUVUWx#;nmKVQ^1W8O(h`LeN83aBXRCBsqf3 zaERlCFf0Jz%7idZoHLx2W(jZzg)eKY0l=BCgJ~PzRLw;WT~0wZG(ato)tBveT|8;jRe)b5{?n{;=kajGW54V}xo_&aZCaDuYiy(3PV2`Kw1!PbZ6bxoywGN0 zI^}qPM#awyD(93Xy@Ik@EovQ`e?0j6YWQh=m2=cfr|8a8Sa;40dq-Dg57#s~X{zs3 zPa9O3JxJ@8(#^1s!6M|@*y4i}Uexd3E&u_?Mfn!w!gmK- zc89BxqUJw}0UGq@uYQw>7%fUe1y?d%W?4m{_&%A0la=zeKqg)b_;d=uZ7I7dp%R!3 znN_qkQprw}`%XCR#vm3E_7QD2`K zghQ47chUdT!2RDBJ_g{bjgeH^jJk%2$7gp~;ahZ2m3Hfs9Q85>C59h+pY=|1t5VYi zD-=hAwG2%xUB15KM5xZXZdAk#)~|BQlsj%Dl}AeZui4Z}PhvtGwXW~Q7-Py|j+nQK zb!ycS%=E<@k)Dz~8kK#$@Jk|QH(b9zp}Dj(9L{c(oP&8NLEW%-5rJKH>?!yHokxnb zQXFxyv5^@Ahcaw7i?Xg4?WT~}NQNmit&o&gO?ccUp#BS!E`9=57}Mi9j?BQ;m0!^L zN9LQ29K3&y$YZgHF?8l@HMfvaQ!|u1p&O~(u{MBq)9^Y%?$u$SA?@qZlK!mHqGV$7 ziT*^fl6kYfXCLac2INoRml=_h@3K@K7mBZ%Qcn_x0-l(PJiDZT&)SdnrYh+Nh|VhZ zvf)1)$D09-S@fbxHqML4Jpsz2ujOA#Evi?q27V2+47stTux)*&;)GvRzf$#ettKhP zyyQDgw*4D>KMbRb@4p~Z?i(vStm0u_y0eLra`xQv0> z7_m?vU(v?pG-D#<*kmdQ5LcX)8YQl}xB}rOI$LY#5*aE=AT_MV;1Cd?B|DO6y}p-s zjsrhxPBkp#Bn#?5CI66Acf1M!JJM3|0AN3ej`W`4M(i_H@OO|00|XvmF^{{dvUf?% zvWy!%e^*c_Ur;EAJw??U`zLotvs(Zw6g6`uvs0(EIl;*jGW5 z=UYsQ9X{tyGa|B^lXA*_JlT0vbx~vT{VU#mwd;fb*j#x7{^s)cgGt%ydttbiKtXgi zPmatDE#`78f>LNvy|$w)R}M#7!f+q*hkWxlF)3rF_NK>yC~EjY0p1&v58b6M{75!5 z0vJ;0iNg)#j3WNP$r5%BoO&%08kV?@-r$!Sp1#zOLaLo+8O<~;2dmfOEoQUfbYl{7N`dbM`)5H6;e5HtgK8FyJKM`P8X_<*)W7*1k?``#gfBQA=W%2U>+5+ zbbO&(0fD6A_9&(*<%Y~fiMYnvuYa|2m-G(C79|qbV?8S5rAt{$xL?h`+CzQDQ26wY zSh`l0yT=TyT`dfsza+inb*vtlci0O!Q=4&w+*j+1Uk^7l3xD_Ks1IAKYkzH^r*gI5 zE}*6x;B3My%=dQ^Tm^aqa<>J~4mz&)T-S0acxxibm=0Jvw_jtKP`b?u z6wYEam7RuUgWzHXCCg}*rBF^$lTQHXsE`;u&4`yc!oc|q*5)2Ba3?6IKCw$`#v|T# z9@7LZ6YCavaYlH_!D(O$JZcEUElO~$;vxwS@^eV3)uksQMvPe5k8#@|C(wpf{F#n0 zc6OryM=tl9My)K^@*n>&!TR>Jv?dZj5#C}Qdw+d*MjNZ zE5sR03{?}n*{HNIn+aA)(yT1yBS-%5`=h7aTg#>POMn-JzyJRIg|5(q!sP|B@S)f< z>b`#bp4vMLkvmQK_Zt@5I3!_GK7^$WLiDo~7N z^H|$}DdC2bVF2T&r1ZQQ&Fqm8q@@-Z#9=|~@E9ALwQilVAx@B|KrqM3rOX+G5F{I5 zg0fl_hL!9-q1F7NnMfUkPE`{r1sD)*#0SQpi(*JSaRKa@JYLK6g&yA#|xd9zun3JDsZvUWi!KUmh3M`U%8LwYv zrXdDCIp9ADK(T1Fj3&B+Plt~-F*%b8cx(aJ;@qgA5o-Jft(^%BMczac4-m-1`EsGm zyGt&^+C%If>v%K;`YtAYqkalhoD7_r0sbW?->~p{NjiD=2(p4iM79U%1B&{Jj2{lMyV^qv<=f(_amG( zmvh=vcw6AJ{j`R_rKv}4b|u}oKIK4;h-N|Nv0e0w%AlOHM!yTb^6=E!?X@K6Zo#kIR~pCf+tM(vvik2?mx9JqHefPXo?&rY(>5?o#O)o~BQ{TQV#MMNp>q2A)3mhmw8BFD^?yQ=PnJes^$(GIt|@{{G2os>e96LTcXh~{&gGl3BS?v?3kGW2=$o)jk)XRq6)R#l{qgz@pDc!y@@*B*NOeJ4<76L2z ztr-az2aM00s9N zVJ+1v*%4G&YR%-0!+Z$l$TzQjVI}D~4OD6@6OcIP;6BuVrPaEQfFQWa zOfU=r9~6s0OF=k@W?o(ypL3-YEwog9gPR z>-`xs&V3mdyNw%DgDh6CIe(P`pUB=rUEmH|MLA8vx**U;BF|>O2* zI%Vqn!OGZ}3ux#^O?JgYgu|3H6kL!OKs2Qb)fH;G?xvZNwa(`qtW{T*ekOOq=_BNJ zJUV3t2(%Z47V{iE%BraAkhqHB&yL&T!Rl$!~9D* zA6WXBR5&&G#^%EZH)`;MGvtl{=RRu2-R*u=0L7#(D59gs$hZI=&Pk}70SL-hQsf!- zROlpe6RH;o%7=lp%NKd$P0LNM2a%xaVT>^!EO$spvTO{!wC;&}Pb>Q!4&aw7S&bg4 zv~NuWitSXzNT;sIR`iXLB@ljUZ3z}G!#}g4pW}Ym(Lk|3{xh{6zi+_Nq7Vac!r=9x z);K5JOZCokrq`&my_)h3!&CS;{#bIHz?;<{^i>C9ggiXCVo>u$bIQnBb0lB6y}=89Wtiot@#RP1OHGy200&CKEUB&f`8VS1iH3HOKck zX56mXA&raq2^BItNwyiEziZ4q~g!BQ#!@Am}&_F*eLX>XufxInLP zA1)vZR6^A(IuWQZs{xZwmaZoP+&)Ywo4j}AQ8U46={5F>&T&Qbed*(tI-WNI@vQ z#m@O!N?awp%R9N7(vmq5Tt7KPcH>KT^PTe$yC)e%RBGBLZ6N{-X~#B!G1LrWrFGOM zth8Wo`2v6E5O}M=IF!c`IAd126gPS4`bkYIu1XK9!HAQ&F2=i6j@Jdw+8)m;_)~Yn z!>jNS_y^b7sIUiAzw|64C#^_ASXPAX>0oDrQoX+StzWsLum|L>>41kV9I?+^&Tt*v z?F!XeKeHFVv63L+1gJD*Fay8Q3*BYf9NP?^#CWbfDQI$P?P^o$4esskRv#IeJ^Qfr z#~1$u#Z^IVC9&rzJfyCT7u=6J!$xXyVq_vRjN6?QYXdElJ6KcY<)2m*wDS&wcI(^XwVuyU-p!qA{rIYH zwP$9#`qo;DmF>BkPCd8wEde+g!J1ah5lGBJne-4~Mi59zl7}vKfJs0Q;6;4&MW~m0a#N!8_6r_A621CgmW}En?nWiImP7 z{EPFmLw`D>e|yx$>skdNE`2x#i{6EbN#q-<8I={X!Mz1czev)-NDJe1D0pX-mraQK zHJGn*@2GHvI#K+d&cpn7pWcM1KTcIShkXAyuJ(*MT$T>e&ZgzxCd4c|=6ud`>Bmwd z!@ZPyk(qBT;-(bu3yw8f@Y0i?ey~^H!_fwp-~L|m$y~Ul8EN{|p&rv|50p9-Nh6pd z3}-mv2_4m>gD@Xv+@~X+DVFn+D>+3(w<5|@DWaE16}KBJV#+J}B94dnA|GI{Udj{2 zaU+7b5V7p3S;r;AOZdv;UbZ8U3bBaCqjZ3jf9hONjjSLUWTLj%?Pab;(@>RC8#9W% ztUU-;vr|(y!UXGPY_>OQN_C&1>Uap;i&KYF!e8f!m%+Br?Re-?}cL02!bY%Ge^wjAW3t4~Mwew`S=?zf;HYS`0Oso+HoDsmi zIU1|ayf*h-Y42XF*(8OWSQ=&N2`ByneJIHoX!jWTEuMhl*gIvKa&`Y~MR*ha+Kdga zyl~2J!2+t#Lt%Ukib(FbhRIb}{f6y~4tCo2FwAm$qt}B~b-%!Q?hKD&>6XQOmj3cP zP7du+w`!=pcE2&%#UlAkm93sSb;4Vtt>@g6ockKt!Z8=x$%O(^Dahpy>c4FsD(UP^ z4XkXP_`du#veeS>0Lbng@C1VQHD#lxf)g9yH2UsBN;OCy{lVpEO~&d>p5T7_)@+(Qeqn&?f+RMxBFA5N7U#dn_+7gH^$OxI0Y4 z!{K8rJhYX3n?fp2XN}2nh#DLFFTt3Hb;$tORV);Vi}R^y81eP zgcE>fQwyMk1=3PUlQj0s5GcExC=HNu&8Sfm^oN`M=@3aEw(_Cm{d_|snpj`T7d*(3 zsdIrQ17=v!otP0k5v}*L^iqzUk;zsuwSnny867w`>XSYam2#x#OSv=9>ZuUYeix2}2y+If&sF6t#*v#1;ERtf&tk&N{Q_IqZb1U(>!B5|+w(C&lkna4-G9%VwOG8R?t5MBFo-Jvs7TE=|gyIYmbn z!tXbk+Jz8OQ*)M5ImM0@z?3ujigQ7|^cxUo{_{d-1$RLAWKb}$&8v(+X7dqp>iAE6 zM_&Esj5epCvid4~;Z==#y4~nZ<@_6rYnxC)nQ@Ld%4z~vt zbvQLlPNu;-bl~K$Kr|j!H)@Q)4x=|_c!oWN{ha0}g`bVq{gV0Ir~Q#N&t@ZVLs*`# z*vh+8+?Wa%{B#e{g%%NocJM%or2S>HGUMcbDvxMS)boQsc%~E@n=IJqs@{5VRI-qAYby5#DT?f>_=kW*xhTuE}@3)Rm z_~NZ8@{Cc-8(r@bAi9(!8%!)uy=9z9FB#~ag3uQ0`sxqzWR0eZoI zSJQv|DlZrCYt~&tZOlU_84MTicN#QVio!WsuQCO8e8eGKQrY$RY4aZ%TzU#$fOA%d zXL_gqSj|t%C=pZguu^yB)2JiPR+<=x-B(x29n zlFAqgzmNb|1=)Bm)7(U9#6EStF+;%o#uCBLzrqRLMBXQjiHKVEDUDV>NKdgg(3!Eg zVj^u@=h$=gxmu$8K(2vbEDF=G%V0C-!R6P;QpXpiRSqNznJUm}Q5cBPH0@Vru)1Av z*8kHFTm8Q*Tm^KtVqw5H;rEpgBinP|Ah(^nR__UV%nPj%if>Gv!UgDKBSU~wJ`-P* z&Wy?DP@aM@3tv7bTq}R%FQuGDy%7)xK=N>0&=D*s*2 z#E~gDpVBNB z@boG_!$}^KG*a(MAd)jfbTwzP+v*6uU;Rqeqzbj1qZ1`3B?`>$)lIV)OH&$7zK?^|e?AFBPnR-TQ4y6NsR|Z1uPzvE*)Uh1 zHl5LzpqgG`W0Rw5kmy!<92SoVv6Xu>!T~PP_5bToI5`O;ma@KkLFMBbz2UV+dKDX$C(aUgOAj848QR^a1>l+rZmi`tNxa&+@sdr~ zGOA-;^?mUUFhP05-1!)}i@&g(N7YAKWYa^6{q8jto8jU;iE^j1;c9Pw=7S3F^)|h= zSH2Q{6BQi5^nT$%)=;KF>B0^@B)~z=#z#62u7Nq0zT*y4|9X(9loof<_w*p{Z~ovw zNFxoC_ucl2OUEs-PyLUx-lx~*tb8E+TXOktU-+%^Y^%H@(PKEJOylH$zf-rT!dSVA(Q)V^*WSo?JXlDcj z1WW<~^Ra+ILrLMDN%O>|kXkWG<5|vZXBQv$(A=l}TbSDWA3I;dW!llkgNRYU;4hC& z!ET^01H}nY92n4l9X6PpuKJ`eWlUTehU`H~GWt?u&V8ixoHDGO$M~|BCxP-{Bwckn z#8Niueys_Asy;u;NsV*YgDe=I(!)zdErmRS4Z)%FCFxQpo+}C7f}Q13#*;|6CcTa`OEDmqPEA+x>-Y%xV(HL!>G?P4nrM|HqbEc3u!J;^-gN~q~ z#7sC7OJR0v`*Hzr+f&075dH|3pDEX{Y{8y3zh%c zE%25IH=Qk7u~6UI=H-2tM8E$!^)b4mQM+z&ndysEzU7>})A0YWc3xpkZc&&{LJ~p< zkOT;!X+rOWrZkljdO*5#L+?lv!FEEG-b+A4x^$@uh|+tJE?uMx>QO0*b;6l>X69lp zXJ6%d=iTdHd+qgo%ce!~>DN0=<(phhAh{Pmnty4(HJDg4{pIA-DJsEo-+<-h^62q> znw71a4~3u)b9RhTKId*g@7WiY3K1%^CKqz;1oaUk5(w%>Mf{{UY9_8i$Hm%rWEbF@{ney8h zpjG@Caz5Ac(Z0=V{)CCWug1a3f+msa)-G@jt9o!u%Gk&D*lcTK3z%`vjxn(BdXOS& z(Zs;UK+8j3D%rSy-)-x+iavsBY*ak8P`piY5N-_4nPo$tM1W=(^Q}vJtSlQF?Aez( zeJ_RtX6e=xj<=L0;N5hgw=Cn)=5ry{*<9r{+e>y6rkt1`#2+={l20Z5j9Tb2-&DTM z$5;Naa;@u>jNWr;GylhtD(Za2#J$RKB&3Ad%ppsJRdA>1iOtH3w7o3e!T8(Wbu%`( zai)rPv;KbLiNq_SaRC*)?1=bdYhKH4g7p5FRqIUyzj zDv5d>kKn!<@Qy&G*zC#HYo@=F*=)wcMC88*naRqNsTrRv*^rpB)afo6Vs8L%3&7X1 z!;~xV3_0b?hZA>8*O+*@U#wz7-ac!@b5%6*0C$YVXGm zh{Cd2@`zkWG9UJVM2mMmsKL4HG!f6CP1wQISnt)PpcHQSdD}l$66gJ!rL}(1PwEfx zz33C}K@e}wtK?G6#^-g?2GX(iPjc2uODio4>~;Sb2%g@%Kj9ixJh$f*WGTw#x^m?; zEe~1#p}8_y3_YJ)ig7ksQxryB{ znv*-si)1hSOVTR`<<({S*=khZgB(To%3GFlH16G7Oy>8v%t}YavQ_1kh`UW699Ay; zR-ExE)V($@_E+T2A;ZRQK#B28U!~2F1K%t4fnG@kHYPHY9IzJ?+Sm0H4tIAh0j3eU zBs2aiXnLt0PRA1040+*o0bIQ(2*j6{_ z9%;ef!U{a*y6{I_-AhtIyeWC38B?e0?dmXFr>VVC6h|E!yPfyUk}!Ig$1~ATg0=;} zn+DF^<%lV=fW3R`RC_b*rtRx7m-jkcu}7t2uT|0>s}Q{dTMDK<0}Zdy4~}29@QO6Y zY!g--`4RlFp#i5BKz`G#th<#Yb{Ix={;8^S(KhVg(j<=vipQP30H@h&yJ_<>>QJFW z`KJcwEI<5|CgtAawc23UcYo|UlqysH1xcTrw~5ho=4XQ_fFjH~;B4?@E`S7}h9R6C zl*Ii|RP&G*VPR#n!Oo^>;M)V#bq^`HNHgm4!0$S;tW<5c~rF^8ym#KdNffVpmjIv|N5p{AmXTMyx^3+j;H>mt1KcUTuQ$o%L%M z1X8#7cp{6IzeMx6`%S9~9fu0$=Nu8>7T_EU8}@n+m@2};6bWOKFNeX1Wz8D&MA!N5 z>3d^09p^y{uJwn!q4{9~E1y_jtGqgFIZ_a}c>L&1Y= zDHOEH^qQFw@%Ew7%YUv)ckKUd`nO+oAhhR1#nU9mBOqaLvdB&P zYkCCG3yESBfMRUS1=D3_f=hwuqu63~yTT*2)SP5W0}EvyCo-{c8dIZwsZrnwvS5ER zV9q0yCFODWgBZ#=@-|sJh)(vxS2=Dch0X56-s@^|QF7<4H|Fz5g^%cO_ z0oIxdMf*bK1Wcj5kq=O84A>2kEi76w&Cx14O=ehWQ_g^}!kjs;q#0*-IRe1r3bvne zqNMYmmcHu{LGrz=_>wpjw5bDNl2wzU2p(p$|8nBN*;(-uS=HRtXZeg;e5~J} zjPllp&)1yG*q39eiu`&~d!hY9`NmP8#j>=|#NpAz;@xM;^#)U!rV1B^x_CHSk`Ff@ zR&A@MiFBZD>)dP`l+d$>0biC=lgzY5D~gf*?P6kjUTRQ>yEW{SAERPs=O)U+9FM71 zzYnfl&j}p6O6+;N8s_ZIz|6>K5ZNtqq$!>fz0OHkeY+r4YF|;!I3=j-3LqPCZ8^9M zdd3!WFnYXeu*7b6(C;G*%Jq~&rN*BCeH0nFQh%GumhCFI&X5baT>UCf z!|l9l%A5U@;2-MpLv@y-xh{^z!Gg=6;6n!^d+al-DUqOll>B{t3y8@EiIYSuUXmXS z(8khRU({d#8d)Xe24SPt>x-bG6KP7u?>3e~r8cmm%}X-a-!uK+l1%H{9Bb24f3~W` zG1}DJS!$3z_U@f?UOVkuOS`Ch`Nd1ePZ-c3dq>QpOTgA*HOIg}=#n67u8=T$$z79G z)UZnSNrr>v5@XVAOP+5wleKJ*&tB!f+FQ)Mppex!OZOo+u6g6#65*~%eC!QVd@t37 zrPiHBOY?M<%i>qL-I8KMnJu`HM3ie@eO5~PmUX(&^dWy*wT$w`^e3|G>lRX}Zw7lt za~}ciipV9Xl{@?556oG<{IcPJ-5k|?8h`F zZG|NhK4ErJ=#*2QNt%41pBvxFaPV20^v3nUB2|p}Ri6267*_r7X!n15oDSl<;0wz7 zhXWU)fLMQ1wTtrSBd6AT0I?eC8jdV>K7%%(nVwR z61WUkDj?|5Nr6=qKR`U6ri6~QkbwzIA^?%P8G!;cfmdN)pDN>pq{8Lt)fPpPDW|yv zNkcz#J$7GoK*ai)Qyz9e#?7;Q$rl1~`DF-^|5SO%{rlGEj}~Ve0*hh@N|5J+lfug< zc1Z|P6v+=i{?GdfGjoIok4CXcT=Y~NIWC+M@SspMd24Sd)(J}_`|}~#`|$W^N5^n- zLwHYkM1*y0R|VEn00sggjp587#?PnE&HoM0cL%&k_P~kHf|?YkTm<;EZ*!n87mn74 zqtu@#+BX|+@APw-CDOrF;Fv&s)APmAxnU9_n_JF7owPpss=Pn_(AKkHj7%dcyy zZYJ5@;tXHNZD;*Z9HC^((-N{CA%wH`yVUt@_26yb!x_3B1|}p0Pbp-j;=>!#kS@8E z;f|4o^i+n}fU1ByEIgq&)-m=7a9=Q{2VilNii$psz{(;iUKUse;Fm~679naZh{W2> z)(r!h6=K0|;G%p`{F>C)2Z4jF637I`y5xbd&s+voWF+rqw`5!r1e~5i$K+7c3_@i} zG_yYGEfTlZ$Fyt|nQXr&on(SwP;jiH2@a*^G(JQqoJ`Y{mXSZy#^Kc;NI~TbMHrFc zQbFsJ^XK3J&V;Qkzw<@UZ-o5`9(#)`QgWzKur!DUSJVjzxbijH=H#LiGBM45h0SWh zr-2+sFLNZe2u&`AKK5s-eZt!v+X$)f9Q(^>$o)0S$Cv|XE(caob@GXiRa|{!n|Dgv z%XFs>hRfsDZ3mwjW?#|rHOwM@+`m6=DeX5nDZ9AcUSAtX?zBw1uAtiM!V57Lsqo6{DkAwu^1A?(TYUi|*W6BvQy?BOr z=L9*82F9Sls6{5X81vS>h~MR3ihW$@UO}xXInELS6^VN@a!=_E@_q`lQN;IfR-#I= zJe}FC1Y<=BLUi10nWTRgKp(Qg&n&6wHIcu-Vk#@s|>EEYniE{A$UhtyQZZTUlF)-TAXqu*20!lH`A zRq~t+_Mc%C1)N6S`KPW2YQ5XOXoZvrjNOsqgR&72hm#5fN6=?ZbgW34M|Fmn;Qjnb zkBw$&?Fu|lH?FH*M2#;kq9 zSk)uE7X?lNi6#t?;FD}SKAnqt)`u^nnxPlV=afX+}}8+6iH;=qi0+AHnbcF798LX0y)=KNX=`e+>t{qTqB72G*#OFT%-L zl9z(t|B$jdu>5s8()F$J-Sj(H1x0lP-8H?!H$Byoqy#(2*!p3=r* z>2KM?R9+`X@)qxnU;EW3H}DT?=>o58p4-Licd{qKqj}GeOO{$;ZYUTnG1TN#CrFK0`wb2W>H4>e!?!ciK<= z0ZXk2Z6PHBFh{e8((C9uiy-rmjUyZ+f|$Znvj_Sd5&CeI5!e{V@WDIM_xm*mh30gI~V6`tBjKW-9~lDINk#i81F&0$s6{Ap)F{r>dUPgWXf zjEtiFGUYFvEiY-T7?&1XCmw1Jzfdj;-LlBtxZol-($^Kw566EtMW;Ed##xUs^Zhidc|`woJGj;8OiD6xTSO&?!)qc`*NLWSOc6IoQF1b95+&>#)YA zdBBRs8uLVpdAhYq_}KzM-5f`3Tp~!UL}i|c9cxww-Wkw~#1Rf=8$m?NlouiIzTfv# zLYNw_JbCarFV@5+StW~~dHej@NdJ2+LA%Co-PJJ}lM!5TYGE>TT}~%gD`&e}e|T`> z_wl`^oRdJp^oE_s0%%6l(4ctEqV9Kk$(_G6F0@lEcB!-X2v;1%rM7~-3E@bBRPn=E}3FH^?MLYSrY^*qL5!NLMDof z0sK%l>Ab*_#OwNP!puk*xj4 zEc!Bo{C0%sD@zVZC3`lpYjrch*4}0A*ExZblbBBPVS{N-&^%hCsKz?|%0B$4kLTKN zYu@innJqi@hq5O<-!4=lCZ&`7VD$kJy{$`n9 z4=c1sy%6A;*ln^2OeHyp$zEL`BY4geyn=_-&A`A!BU_QnU{DvBm06HU86+WgLrm9n zT)!y$x}`&IQB?a7gJKeebE;z0ln8_XU(!V~u1K{7q7r+RAHE-5P6bE zba|5LSW!Zn{!Pr`bg7~A`Xd`m0Q{*NBYse5VdM)7{d;|`UZKQb%$qDf^5VBAYWySqQV#w!2n_x z4886+AG_^k<5FD!kuVLDo;rY0gOQ4ypk|L07V!-&^v%662+Fibos`y}(7kH;a=@)nZ&~%n(ZtfH z*2`-Z!>c3J)=SRRW2d2?c^^()pWSZyFUmD*-=%eZomh2vjo+^w8Fo9W;pMsHzFxET z=#u>V-28_$we`<)%WhEv#Pqhw2Hhw=wFti~ueUB=$Ft1}!l34m1gb==u=Ce|;Z3x% zrqlZ`Hz7r1)S(}f@%ck|^cdC-$e~Q07jbo%d1^Pl;Gx##frtbmC;RV0qK~?2Kx0JS zzSY#LQ8-zCa1cArNE{k4M*2o$aE~uf*O|OGHsn+E9Q550mJ&h?~)`Ww>E( zdw)4lCa5yb?`~fwD$NZs=xLoLa}N>l!K1EXkeVMIY|?+%&ds9F(ei zp7L&`+++zb1g->!t5fQ)Q`;2VVnbD^A`zbPCfG+%=7xCxi&$=OS_Czj2>`>g0C9Ze zNqXG6oF@?nQ!wa6pS!ycH)j{QBQ%}NW%~WzJBbRVi<7~0f}r_leR$!6V8e~$R`$G^ zyx~pK@bSIXoN{cSnU*w0!&R872uXei1v8`Q=+$MQ7-N3ga8xR7aQD~Ycd>I)HmA9{ z+3&wlrKRhy`Tr3v4|H=sXKQmJAS{>u;?ko1BJW3^5bx!;ymrg~G~9o=d;7ih69;$M zCOJ73Z_`S1ZEZ;w!FQHY=<1UMhvTy-x2^@o7_-rkOO(&O<1bbDJK1QNXeJv5k3O;0 zu$cEuPgfC@IA4%6F&5X8`D6#$UpDyhAF1+DxrYWmHGn;^={Z0zIQ6bR zaeIKldYgqs(Tl($G8$rTDC0D?ZK225{2Av6a0bXz_0iMY%-e?%k409B-rm}q7YmrFE~`=?W3^3!+hG2?_jRTd7wjBpSbO+$(vII8~#S-w>AP znk2r%-uch=H>W2L=o2l5bMw!T`+l|WY~!dM6GN{ABevsl2v+U;Do;rX%;$#ubK}}P zf1s?(wmR*+rul| zpNtH-UoQj6FutQF6Tv3?*@YgEZT{;elq3gZLa{pJua_8Wnv-V)Xy?RT-Wg`2>Vi1X7pxT$~Wo1 zXJ%F30`_g*?9deR2A$mg1q&G>uE?#HMs3HFPjA&&rYoT&>+j%RRy=j4z)U}H6(=((6gto464J5;RN^v z5d>HSgm$4Bbr7{O$#5TyU`48;m5FGkDszvoAvJdg!TDBb5I_VF$BZ{ccqvrlQIM`K zP931|i3DtC0Y8HQ*&qP*7FiVXDi|+=Q^)fLuUKZk%7x6vih~IwOLOsz>B1Z50(e>z zNSUeu1O6*-+gM5I!!~_xR?V9(f+gXoB6Ua4o|CMCtN+U(WNhMb$NjXKXu(ZwlfPMx zDwaMsE!WMhY;64Bp|@Qk4!6b9(b=YfP5p=-$FYJdkK?(kb-Y>jhF2s?0)A+kwU5jl zwb*vjdf6#b>|(pbs7-DUyq1LQ^%*X_h8*?om>N{%Uo09B0e4SlAR%SD1fa@AY9cH$ zk&I`^$*8bF3+twJhP%FAj;pyI^Oads;JJH(iO18P#bOG!DkMCf6DgR7QN>{_00n}F zez$CIR;?`8C{KH=oUAT}mNET`E>o;wZw}1z%G5A9SNzI8NooC_gJK|{E#w1(x=`lb z?Ms(}25I&{_4%GnMiynL1D`K!#uWybIU&&oTov9b+he5-Z@LA!CQopuLze#65pa*TZ+&F`S-Z@>sGR#MdLn2as!#A?gRy zt6C91!Ra88hQ>0hopxf1JP$qN;1ulQm!`6;h#^Och>7tf+yeXtCn^T{Jxv8>MA$}% zA)}B6Of((1JTo*;blNFB&m3>uOEXy4X-vPn&`Nh?>{U*4TEw&|%frv%$2k znbD5!e`_&gsbZ=8@~iVPL40Xa(~4gLeHRBxCKn!wF53onQpekaFV2j5hy7*DJnyQD z_)^V9uwh;gwNaKggZZ!1S6|`hf$`?Cr z795N)4zJ%F$k~K}P_kfdg3CyKUm*)nX3tRh&=NNoX~DMy(997X3KIOlMDy&?yp)$I z`tVuh^zQ^1xTPWsj z)TSP6NB8>6!xr5=L>>Kq-PuOl9$Js=R)`iJmyE6wm5201MCD@(u@56b-Ip+W;z8&C z=RW+gpXbi#b3vNqikds78S-VQhLZPQj6I6U`N-JY>W35d+|7G5{a+=W$tx7+ucU%6 zud$B7$_c9Tcahz?5}+ekfz?RaEDt+yQDQyz-gk-hXnwH_>j1Qnt^mDoTND?1 zCW=skOw*hV1_ZdTo~q8krzoU z@0E4@u}a1w-2-C*gf0k@4nyQI0Rbcz);4|U4;i7b5MaQ$2R48t4IVC$iAtB(66reX zO8NI|ZNmIa6YH*~=Y-GNsJoU8(!Jw;ms|pzjp}Y`&b)Wy?Ej}BH-6c+JrgufqABBO zOL*JQQo+reDWaMN~^aGF``HiI5@;oOUksbH31V{TM}6jPJlt2B^gi)Qxv!Wu0O_z6$}iA#I)&Jw((@u|5W*x z2%5DyG>vWj`r!EVjy35SPvo}IZvn=N=4+{vObz=MdOnW++z#aDWd8W{K6HQg#Ha^UzM< zmL@QHESByZFNO`~+z%izG7`4KffU=MDONz#7SrX%nEnV(tV|((N6nxjGMu8;rKVv} z713WO)p!mLAmO{1JQa*_UkSk~gdWQF1`uspf)h{_5olu2kN6@YdS_|m)G~AGNlv4s zg+RbN*%L@++iL2o#3e6_E36S^U*Eejg(3QG+fy>fOa$8SLBfnu`f>Qp3d|MxRcPvj zs7-yc$bVZ`t{jx_8>f9`gU6mNPyYSiI<yGEXw3-f0!9^iJ|4)8S)WW5Dui-HX>?I2MqCgc1T&JYH&IVi zx7$nvqQN7Fyv!Y}O~)ytl`iom3hQOTdE6&yq?w_bIYI~Eme!n)iII?1Eh+BC67*`; zFx$%Z$1A<&f|q!owa$|vATLI(@@P=bkrCH8V`TW}-j(s!a z&Q`T2p~deZX>7uF&7o!Jza*H{hoRNbsVfVvv)R3ZJCZ!DAxmgt|A~|B&DzJcR)tj` z+H1Do#6J;|7c1yVE6KTv;Z^@oV>ENMRK@78`SD(Ik4yFFC1I`va0~AZyG`0EHwXd>#iW)9JsA`HV{p>K!7G?M zRgaS7)Q=ZXoFb^;m@Rf4T_?zdC6IwFmln|5#GJa`YZ92-Vwt_`T6Xmfr8wxZ!$j-M z^0>|1AJ3}hg`XR0ce4QTl+t`3a%VD{7iY@)L)-uO@tIlh!{aMEZnQ>-pr_&-k9IFr zue4`XtOa+%H@^SZNb*&GX6Njx|Gjv2s_oR@*g{Sy+H0SWJ4bu4Sj0G#U~}q2zKQ&C zBY`7xGDAY5!smOu%a6u?B+bdU%btnMp5M`8KdYl#KzRUFU|kf*x?J5Cs|&zWtdLj} zCYi=o-2~ts3_^R~nk55v6M+##1Q!x5jsm4)Bv2HO^B_uiMR|A^ygaT>d6o)!0^})* zjl1W*Ijz+%UcmvNrVQE5zz{%U)>Fd;ne!WO-UL;bx%wfBddx!d=ZAqs8ubPXUf$!+ zpN@r@2+Ll;g>x-$?MtG!twIwr5>5fH4R%W&R=?f-FZ=uW5>b`jo7Rd@5yis|nfvh- z8|d@A1sU<~>k9>^u#Q9RoQ|!xjFBB3SFlPn&Mx=xn6>PleAM7*nT^4p6tzM4W6N7|$*b}sMwq_S_f#fmB}>V}w-b??g> z$!=`h+?s_|X;cF!L*0{@Bvu`senq-OP=szb*`6t@m(rb&Br&Na_QFKRn7WR1QHj8C zpKieUG0tv@ZZKkuPK~V_z`#HuNCC*}&IA-N{S6ip5m6?waVTDl=IwiHc{<=$=2xm> z3AH>qP0LL+r$aGH@LY)Dmx)vBlF>WrQy+3PoXqZ@_qz4OhRGM`9mhYrRfuNNWy2hqvm7;ndBf{V1h8qXY>aw1gsRkzyi}K?V`ZJ z05ljd1HpL^0%$hObhym!RIqM%DS-A66)Hi;Kmh>Ag|HZa*8^#R1oBv7Fjz&QqOr}X zPQNX{X#@-b>M_G&2TaQA%enzVlDPcB&Ffoy4rc$NlT{~_2crA(N-=}8b}uX2w?u~u z6RS84iZVw(2oMz9L@3#fuPi}8Ek1HC8aw<*hd1+DxJ7~5&`N9qf40H(_Lk3yL!uJn zHZ3{~xl&pPS&@&kif?IpJn6fDB+JQ|;X5%ss7!BrMVJ0ZkOeQ8Yf9k}ATL0qBAe z&YxpWzn37fvjB!snGtm1?zL8vN(eh4p5cePyfGT~9G*P|F%@q{*-W35J{OH|OOTi| z1*%o#vv2KGRi|(3EQ$-p@OY24HFUz?ldqSPyXQ272%uUJ1<@gLWGnb5ZCo!6z1iGR zuYQe#En=~+?E+QrOX7;&XjK|du6Y|_^#H8o(SQ35cu8zpI3|=LK?t^X6b+OgVHNY- zNWYM2&5e?GxYhahw=N|kQ`p+lB5$~#iRNwOW_Ux$f)84dS{bN))iCP}xdW|P3>kbd zQ+h`%*S!0r*a35-!`N@{|3TC~KCV$D2)yu6fOw$onR=;zNjK)f)(B4bF|^7+L7HZ| zPfxw~#3Y+jo@zuHrr@q%^JCi*7i_5PKmu6|D+!s3_#A@u1x`_5tXK>{lv1cn<)frK zl<$GTV{kR32Q!3XM*xih)F2?p0R3eW+W7&7=%kgMrZ_H$%9@qHffKVLugF2xL4~mz zQNRo}5%Nb#R|V+tuhdIdOEh!Zlf^ICqXpG|A|lM$Yl}>fL*-uSy2zPgT#lEW@PU(g z!h~2$am~g>Oyl;5n;VvRlj0fNZ+5BEGdq8%q+7BiY5M9&ePn&+n@xCGgzZ*YR9wVP z+?F25;9P00S*pIrux;}KE#aLQ^5u${*0x%G$RX&;$)J;EbcWntqmHv_N~XWSp|QUS zA=8E>4V0o$*7I_B6IK(oMh;Fp)41Gh;tQKdc^h%mlE7MZ+&ftp8G%xf(hJQlM*^SC zv+^!71DZho280kMejZOdn*TH%Y7$OxNAaVe?u3142GBS_CQX^u+W5Jgkl-PzP*H|U zV3QZ9KrjZS;qWq6n)P?&)SI|8Wi#rx%%B%!xA{|*5fnx|SC32!TW))JyAaQzNyg*c z_0wEAp8BwsY|bIaOkpagNk%FbFl04ZNaT?M&`bA{KV6r?=%UHUYNl3k&T-~n}K^RXI(j$&Yaf_o*9u4yvMB-C##LwR*OHU{32o?jO zlC4^(ct8XUJs=2>0cr?10Ur2xAk*3?|gpF5BMVbO@ij1zvGr|3r z0ZXhOyB$S?`NE`1AEx`|%J#4huveZ`IouFq6TAIb?yvsG3$uaH+)hof8F$S~3)EW{ zyPH|rx(zo82j|S&4pd9tf2_MzpjvC$yo83B(5mZ9@eI_UW9p0O({K+htS2_Efe(#M z2B=eDc39ZMqI@hLl^qZe9?C&YhT{_9Bsz*B4wrZlDET9r3X5%s=Ky1KZ5xhvxcsfi z0gpuT2zLYs4bE~HIg|q0fv+S%9jJ}Qsxp6TPDAoQ4=!9x+kJ40Ct<*`b#-5O?e1Sw)Pf%c2_BxsSoI`?Iu%Zn7BHbk6c{=9Te z-6-ZCcZG=kBogiAT$6GR0@oDkFD870Z35IJ2_mQx?%qX$5eSdVk~vS8p^^HH;0-(k zk(B}Q>M?3a0L4fwKzNvyR&wqhZY&B-eU}R7ssD`Yeh)6p5mV;p6&HW5BXYxD>4 z{MGU)@7{DqCAWLy!Iv1(`@Mtk5eBz_hejIfWzq7nD?F=HaRViODbjE2zM9%;1f|Rn zI!6(KZlsa*AV0{|^B%3Mf`_k@#eo|69ZkeITbj1P>>k)r=nYfP00!wImJ3{`=c!kmUGW^->}=}kU- zb|jx|8ToRCruwwUTt~18%u0EnE;8{gYeN3#dza-AMi+Ckwh+)Oc$#?{sso3U++?ujKWQq@}Un=t1Piz$RO|JAwBsj8?{p2azGW zvtbTqmaCrUZxm?6w)*-8JW_tmlvQx^8^k8auwpiWvoGBA$#pJ|_=jVuufN5WYd>pl zET5?lv3SBi?Sr$+!_`;6Rd-FdT)2~1^Fm_3^<#^F@_RKqx{*R2G7PMpL6@CP>lPr9 z>%84u3%7WfwE^q$P97TCY-D+IB0wAK26qf`go=>ildeoQZ%%T(-kwO6;A!!h*trqZG^|z z(A2!fL(W2QJ_&7`kYw^Z{_e6_LLj?M_!)9J7A_bP=w$6xb(h9vI7-V@%{W}}rFrK8 zBXj$Hw;V!do?Fz$X{*YaJJyRtWtlNAfU8+>)LT=iv}qy`d9azrdp%xJPOFL}<@c^j z)X6IaoRCF~KiFrM<|7WNmhA6e)%MC`-TlOFZXf<8;ojeryn|iSo#oCi(yi2Im84I} zr~}SlSSkHq8vb_O_kXvK?LQfcSs3nFE0m_)fHsJ2IWa-_tB`XQU(7!sS03`eaw(k+ z{qd-mJMr(eNYItC^UvOQvOOrHh!=KsF+@D(ssK<*V+s0Aibr5xKtiEAe8~|>U}6}% zH9j`aJ$3;=qQ@or-tM8t7kYrM)5Y|Cvyb6m5dGB~r-61X8ij{L8DqpBwPu6OuS(ih zkpu2K7UHrro*-f|6gF_6Jyph!t!VHpBk?s@!I&3+%9S@#t6&XD^1{cZO@np{$Q$m@ z#9{8*@{7pquD?j;l-GrlHx@U%tkWB_U%P%Y4LhF1jR&+^6pcz-_sV zhacQ834SS^Zk1)%#`eNMM@i4fyHCbGR)>yXR#f8ZW!V>cX6?TYIM4N`-Nei{pWUc) z^TJlIYc98h-hX|(csoIv#mTm8rgdeWL;uY`<~)y_M_wmDj>{8zoi<89?|iyu=k)s} zF5Sv)deg*F#`!z>U+V|^o7R#Ob%F6hOI5bX5$@;N%ie3yJVfJ~*7tuC6j@{lJp>#W z4ud`x6Vi&Q4)&LqBi0~f$Ho@a-BKEpx%_GMV+jRiXJga@d?2R2`W%xlksryZ%fO@R znU&4Jz=qJCRuf0;O(FveCtaKc7#zpWkn_@(pe4aHbL#r3DqTHB4p|ulMFSuAb;7oI z6bdv8d!l~lZM+=zSKJG|O_nSPrLafRSFBXnndvh60eg)|s+bjtIs6E$6fjI&trwtjghAucHFxBj){qr%cZO{4647er7 z4i7*Ab{G(Y+Ajw#13q+hD~|24qKDRve9>?hW3*%Jq^oF!o5^HoY~`Cx(iZ(P1+Q`XId0!Wf%gOG)8?=`1YzswMp z&jof;FI8it@E|jwu_6N2D+Yc}$Uz1%OwtpK_?pBBD+F`EMujNWfsz)9W1;yR1Sir1 z7;ZLz4l2gy){#KNV=v!@?1jp<%A0ol<}WJ#8q^LrwV4@@x>Y`UAH1BQBN}3FGZIo> z8JN;F%VREU`u&CE1qSc>@$asykFpGEUA=0hWm~*omaQqeCttf+aNVm;{_Qofxw3g* zQfG5hPPuE7W!?M>w|T`siZ&A`XUJ8k{X8K89lC(3pKjIJ|9t-U(eH1!|G1z2%Y2{v zZ|C>xqjxHAF|E{Q{l1>NV>Q|tX8NnTZF<~vKCe@gb1k^d-92pfwW!5C%Yu>BgS)v6 z$*c=rbJd|<^T*#BcD?S`{JHmhtNa0>$S`QT*+a(1^sqVlKB4QPa|HBM!H&2I*7!#7 z(`|xv2g}k66t4dwM1UG_)&yy~sX_uF5HbV*tO=n@jbVkRF+rd+@(3pomkc0^#X%|! zCldw34#PR9Fe@vjXqgMqlFY1VdV(6*PpVicI|*NQK+l1Uz~O=w%uw{gYKkQDh3UzR z*&c(j(nMVbl8{T&$M9|pw|oF{;~0R7OoCK*DSk=f&kqI0GXkPWiEMoUa?Xj0{Ft=q zl{<+;`C~beYj56t?@j??skHI%#eI{mV;CM_!2%!wkVdbVKtLj5lgd2!=D>9ss$K&Q z9B^AD-Pun>cR}`xQC#H*f6|^*ZIMj-erU%Oz>#;KN-AvqohIf}1KxT+^=_TOlpZrH znYP3fT?AYD?=3Mt;J1VYF%g9pl!=${U0)PfbQ{*SLL{I9>L~v=bVCh-a^3@gfTC}1 zn0XtLawT6i^SUNM;0o$C`Ar1CCth`&eIuy%>DLCuvC4>U!$3iiob_KCY-=y)WZ5C6 zTC;w><6J^IY72}wt!%zL#xKtb(yHhHNJ9;VC{4u=wwOT=OC^G$@{Chm zvrmWVg-IZ3tl| zEcioB_B4q=vp$?O`L5rD_)l`~YDEHh7Ud5C5yTmo{HyzqT%B*uqWHo2&g9Lx#4)vb zt9jV2Rwz40UjHAHyf|__INyEk~#u_6wX*zMNti~_A>!em@cq6N01IXcg!d2$&e*2VC@6>;_8}DZ+ z=U=$FijB0lmJe9VT1#1IQ;KTh{Kltwb(p&R<@Tdm(tu+@&$2*Sepl@@{r$%ko`1I$ z45lg}Icq={6s)5>ZSejUO8M)U`@0cI^WxHyx!C)wcfFT$x|wIQRw)NVb-m?lyDB5c)vkUfna6vp9MZ$P z;_f^j1wIb{z($8@$!GgHjz&IN3mY1{eTV0r-06hrHs}v~afqnkVUw}1f+TfCL-yEY zfKO(){V>SF^IvVL{cZi1z4}Z7EgJ-EsUer|)WSNp9?U14pZ3aQ%JZKwWj}>KlOy70 z_z3ew2Q1)%6Cet-_vC#f1>b!Z@UTzZKc42@w;*`D_eiI z7{Bz`WJdUn6xU&`=s(HZwT=de)kSBanCp3#EzHA}TMeS%^A@*Aa(}Hj?iuh1Qk=(m zD?ScC5cvG-=q3J-l&@n4{hmqOt|&TE=e2rQ%ck*neT1Ig;Fn{D!{;{MPiJm?c>L7) zLiW8!yf&9n*JXt{LchPGXY{&GvXtx#UQe{WjDEz^yIk9LTg)xt znv_FWU}f*WFI-N-AC(*p`8D1gt6pZjE&(*_>nf^gN{e%P_kf&A5S5ucmR(7g6)+<3 zFcLg4GJOTI&G9th5+#c6qU5;k8FI23Gk<8$HrSUeL1K=EOpAsb$LtAx$$G3NO6vWZ z0BXed~=q1zyuQVH}&5hE?lv|2Xe?{GzXd z_p{r|w#+5A*DOV2KM!f39;2+R?%6B`&5k?W_Eb51>1F+I_A|lJnnT&qnitm1GS_ea z9Jlwanprz|;eE-=z;fmNkK@AUpGYrSM&;XIdd%1Up2_z9uxt5R{{zik%eV<(a#s>e zz0Xm~DMEByS97vb&i5db)ez(gH^)|SR7y#gSZ{MWAL+ztq4LV>K1r49>rs}a^8#$r5D2Df2K8N;w9F|D^e>kP@kV}l;b7d&COJiM?zpdcWtgZ3>X~U z6DjP7Hz{Qi7}Dhaq!%Zhx**iV9P#j4y;aY5>qOt223746A8|9s1U^mi43Rl`uJ=JX zdg<%sqjq3?u2MF846jjcBGm;MmSQ6GS~?E^eVJ$^jAIeGEdx~N>pIbwMX*6IlM+A| zxYz78{*I02g@;~Sv?-;QX(!&V52b=v%JaKRjY{wa<^d528}ndXRDz^NCp%rGH_Uk3 zSTa6O3?c;qPBs^UuFI_J8=fIYx$^K+sM;n|1tVZ~+*BS5?C`6*^TA(S`#0%a6TSPw zY5FXGBtY~7p5&8b%TKmTqtNF$Jj@?_W<0Vd$AZE=rv1%7Z(G`2Ey-I6uYLAxIu2n@*tF2wM z)xC#@&-Xc=M^Rf?8%F>u`$$puwz;6&C6Zlj`Z^jAwt`zZol3e+Ac!6$yt{W!lSivhp)6-To3&7a9v+_-303U-US{PurSZy$sc{f znHrjI;5Jk5Y&H5$;*PGG#P6h1m4+FMd~br!nFM46wJ4Lf^|;9P#NPk%;<(ntJLDOu zV$*rCs)Brn7u9~`+&UaH!WkP4YD~jZgmNEo?1IGl%-!d5`>f7>@qJ`PMo z@ovtnWY%8Zqg9`hv_U(`+r@vkd)`C870NwTi}XdaMgg5f~HSty8J z7X%d;y)c~@F(D1a_YsLy8yVbq-399D!+XPC&7_m8=-wZYegI$~L_s%PLJHtSieUrT z1|$F{@_OU2kG4$$FR>DT41i1!ifGVFSVYN08`q9>m|a6l>p^KU&e%Z51MN|%anA^I zwa8lV-)N!R<>N`><_x`KOIZq!s5O%_*PHcN>qXXYDn9=EnwkS`81HW!-q`t|sY<+a zN5+oybmY-5lnv{9=LT4fzKCAYIweMyzki zUh@BL6y_Iy>BMl8DEI!d|Gn>bFNlsmG&jGouDJx$F0s=9RK_yp(~polpel0d!@e!_ zFsi-7EpAIti!1Eyey7yxKqX~cf2!X}YtHb5L@8}duPNLKS>yXT1Wj6$8j_l01ad+J zn0_#3xXP4EDjZFL_eHT!_^{MXzg5=IkkI6a!4neb{Gc@ejvj%Hf%WF%0iOYWXM_MP zLNZ=J$DDf7px&g0%TKw5I4@-%$*iI5;q~$AS6B9FzuFQPXL{4y_s2vU{}|jq3yn)d zjJGHFotCmHziQ_4^sT5j<>~tCL;IzQj|CqgMjxffh6sD}=$mKC#uQE+v9s*SyV7k# zB!{?n`w3vO`nuFp>42E10Uk0y@mN7RJ1aO6;DPiDOhYu%&&bJieJqT3pL%|`w{Hvn zDlAcUu!Dc1=lGA?CiZ7ZmvAZ@(V1oyUTfb%zwsw4$P*KUS>}!w?w27LV*@)B1*ahC zbH=JIU$cF;c!xJ2xmh2U%^&vsV4My5yx@Ex==q@DzewrND}D#Jon(VjERel`UMBbr zV{?FR3B&Rg%He!n(ZJPS^az0R$hY{gT@XhZ!Sa&S1<0FnyZ}lO9ZRFRpmLQtnNiOP zJdz$Ia*9IniZ7(o*up7mr7I7i=X`mDIWh%KPUA4h1WEQCFL%xEm~ z09z5PiEo_;_tQGliXzxHz%N=);SUpLZKh_%o5zk@onLAg3A(BGl6{*i{FS%kV_%xg zS==q{2>lP@1?ds^qVzLaBOC+SP?z%Z<`SnNh%)KCipm9Ku?*kcX}inW$4FmHYC|=W zg3U{J+Ost3*{$-aay&eYMaSd*0>jS|U)c*>X!lgX)Kf=~_Ub<>4s&QJ#Qs=v9%?02 z+ccPwThg^^G3uH7;M(_FiF3j?0;*;=GRht5o*aKYn>@dBl_lYHe7E#^z+nxOU^NgA z;LO#I3siE~7-^1q@*GQ{)BOwwqE6EMQng(GxmXnvM8Tr!F+-%Dqzokt>G-`uNB)As z@>+R0} zpfDu654lAvWo~gyf>Hic|AGU}Rm7>R8_sb7&lOAt5N*rjHL#9qMvRfzsd{Vy49~(B z|Im-}gW=v+(ue}sSPP5uIZ(ln3QB}Uua(e96g63@eKtw3&zhI@4sWyo?k7-a>V;yl!tx_JKIIBoufj^o@12~im7?YoEtHEv0e+D%0Ze9=_wxl>wTjqH;3R6)M-7k)X>3p@8XufAu`7A}= zA_@94J9XHAF8y@fFE&R};)d+#;%pMiAB$zwl9)u%61N7?xX&M5I}5PxoH?l;$A z@00XcPyPFAUDH#%Bv7J!B87WpMNnGEF!s?uy#S{pdJ_VU7cPoFwXuKo*g;ZV#lJ|!RyB;HhF&6;7aW?lO~tW7 z$&~h@XW_jPn;@8a6+fMYTPNuCH(Y`f`C^f%dRya=_8( zb+iW0^{X9hw^@io^Y?k1L!ITUgPTy*Gzrf}lFK#;KxpkI;m3u*Xa`~RVGfC>JAi{5 zgL?pqw!l5mMDEGrg$(iZ2t_6r=1&)BCK8+na2A8x@SM@ceL*nil}UzAKrC4B98mG~ zljBA13O0WR<5?flw3<3KlZJEn1O0vT`i85UqHssZ{kwRmhXB27QFjIkWVvP#cf0uM zI+#GzYKHXNFA$reqG4Rg1vv}55}V$+beQ3El|eSyv$*T3@l-E9cQq1(DH?Uq#EO(X z(M@w6e@ik%P54>9wRHMa79tP!!T>;adQC#Wf#cp!atUDehc#)W`3(r;J>e?95X>r= zhPVTp?FMTb+Kt;&zX^?C4VR6w8dhjK=>Yr&e(Kx+(N~gfVliT$1v_+N&jN4c!G?M| z9KZK>IRmp;AowupK}>DKos+@JuX3;)Qjy`h3xj2hh*~olQM+fZbwa&qqF$}1lT9v3 zz_so2I77btI0H?T|KadVqF>@JIrS^g9Dx|Djp`7=fxhS(w*G?uHcVFBWs9O3DAp`G zQt$Al33zyJh;<{rd+W0<*m4VD&-7{Nm!H&J-pVH<2%V9@a5+NG%AyS84jA~f5@9FLXOihuIApW=(IMlw zgqHhXWg8=?VTzJt*E}n~K_|n!YDu}M#D?fv1rsHO4<3dckT?~%sQ{-+VBJVGB|aje*_oBGonMm1%g@xtZHyK2WhB< zH92)0#C#s~o9SpQ9oY3UXm;&kJv6z_y2S}{{dS#@;h&C>u%PBH8Re7cE1nOgR%WgK zCg>G~ij;r4$6FA8zj5M(;BDU~d*o6pvi#}^ihD|tjQLAv>7bc25YDK_g9Bw6PEO|W z<(4DcVitLVBX?c3EGxqh_SjL43X`beBjm{XUodn)|9NUzYAu1~Z7bF-t;YUoN#?Z1 z@%Xv(6PASPf-!>vkzI4)?QnHSgz`3@2vcZw)GI9@;P|jc0FdH_H zQXP+FsO059*j2iO;4Kmlg+}7%-pHr6At!Q@sAg*9Tl4)ZlXo;zhodx^*99tLOod)H zh`#}6OZMjZiBvViDsH$x)WL;~yyB)MO(`0$?TKm#auG}jnPoJv1 zJCtjWh4xT)LTY{lFYZL2d^Z#v&#LWg4uU>apg>5Z+xP&iQ{K?3WBG6GepD$kNs`!M zt>$~sXZmLHZ=LXEPeZZ0e(H!jP~?f2ts~^r&Z-}7)=8}TTTa5_!hYCU^bGg z-iY$9zk~~DUz(Lj@tLl+i?w7=K`FQS`DRXsStlEa>iqJHj&UW@b6AEf$$e=qq1B&& z)6)~~2G$C$=VUM*$6apsysob&hoksL&!r29MU!E3Q^&T3O+BFNSMm+pd1=*Wg0Z)J zZ%d7v-6hU<&Dqs}MgKi}-<_Iu`w|8*5f8Uj*#=T#bGRq_7`!Dy2>FtrNbhsdeun(^e-YernK;$@B=DVe~FOor38j;=Lsr z4AQ0b7JF{LxSRI;VSC4W>sR$kpZ3-N1OdZg6AXdAhRAgY66u@U06>C`ofu8Yd==(E zU^t#Kot#0hu~9_PQ$w@z-6~n3EJw(Z4X79&?QILv1Q(FB7Y@^A0BKOVtmirbsfcDF z6Y3UTKSPC6iZ_J&lcRzK6|o{PCk>Uu4hl}*iKIszvkX?!F;MZ=MWB@$R*dcs7Ay>S zJLq<9Hh!s5VOh9^q* zeXmfscBHUo9Pe@7gs}pVfn?!4D^+RrRN;AAj)|TuHg?&2boizJ zdG1!po%4}GfSBj4-RNS#VbJc*c>mUbLh34w=H6Lx4XB>n1+kpfEz8Rv1gFKrCGK;HJ&OF=d z82|9e=)$=(rpdwKUoTi+Fx8T|>iSh;&Fnt+F^w{v=~P=uwE%Gq@YJ}-3{}VL>Sj}v zvZ8*Jp_xi=R^CwT{TF#R5C6+~Z`pUB=hpA%DUB38QalSORZDXZuQ0*IYo$?QZreJ} z?kbw?Iw&i|m>z!kw`A4=Rj8L2Kx4}bEBqIt?+h^@$!X)38S-yFA7h47{!J;PF;IJ+Xc%Yo+LBeR17ZSzU zE5Qz0gj#~#7|jDBl99b`_<&py&_ti`_QOuDEu+^qy>JtV4yUTBvLKJ{dmz)e?}dAZ z7{KFX_!FuXXJVClG+%7->N?*zvI(D;w3CtVTfbRdQqkOXeCeSfAh#I{_CxDu+wF+C zOKQB1^a$^L)+Qtqa{4aIi2o&y(rK$in@n2uH;pESYhQSe$vpCt`9gTxZfacSp^nfgexg@f z9X)G_s7i&G4nXp9DaFFCp;amg96SJWMYvX`|9~wKWBB{bC%&I^Qm!q?=Y5fs>74j@ z+rm4+UfO(E2n=XnqbCu1&4JZ~4V0^pR-su`S_d3aI$aiTSdz5m{PCDUofH?vqquXO zrBv&5_*UnOH=axNVquM+6~EP=J+YTH{h(v-6W?yg-`TRc`Fk!;PJZ@iIsNDP*S7K| zCFm3HuD!N5Zgoe(#pg#qYNTY_;m{irbQ7CHZa6+2&S$XxQHj z_WpF(rByin!e=qEwqcG6LV_e|Q-{O0CY=_xFXu|o0g90om*8Ru4!6@>0LE(nD!q?B z@wjOgEP!?A&CS=0jQtGOG^6SF<0YYczIdPr+!&r#C>=#dB0VC{ljuXNCfdwRK&CqY z03Sh?1Q0?r#ye|dPLJ5^2a=xivBaN*t7WUXafj^|>Wj;?Rw=~~czsms)4THg*QSe4 zPrS=p#Xs7cS4v2%%UP0=0ts1?b%uw)V5X#_Wnpr?c2X+<>k_jtqV5;zl0HTyA2O-icjP3Cl@*8PBJ zUrg3b8Y^dWpmEiyv^n!2RM?#R-H$(0_Ti~EI_)l8eoPhOytvbAAxd$&b2v63v)GAk zWHpmQ5(Wr5py8h*AdsQ7v!pn#v`9G7aQaRhSlI(f7JjYHfqS0``30F0aY0yW(+4X_ z1P*s6qo$9=5;3?!nK^4HJG3llvi{v1(S69{~f1IA}|XLuW0X+0s`{^djq@F!Sq|B%Hc@ z_dXi0&3!5~wa1!yjh*?UAlAdVn5EkmrKJ1CKCmRsgXhM!0eUM?4N@{U^##C2tkl23 z3K>0r&PJD4ArGf=yKV@bhpXnC3SG8?I8@YLzfh9+r`mEUPxl#_ztRhqPn#?@9cOhl z-~E9R^!E^+srsBJlVRxnZ0*&-e)HddL7)5o?YmNyVUFPdzGw~qrV#mb&nj#H`wJ^*HmYv45F*XFNoa~jC*f?~qNNmZ)CjB#6Gdl{1jq}u2y*iyaR{I)mXPp`~5kM^QWDYdAeOv5M_vsZV z)fd>P7uP?bui`u?O!p6fM4!1fh+jd&iOS#I(-Y#`TDf7-peWR8u$*O~ zW@9%@d8zSz=DlUJmwkCfbrZy=h=m34&<62y+pjhaoCFB}*LVJ8_b}6~7G;@XR2A`mY z5Fbm8xh@d2YL4H(_hTeYqW7cXC}j1A>z|?CoxU}Rv0nhYHBu&+q<==?87E0y`x2a8 zY~lnU@9>RN;3Puz+M&xQGbHFx!FeoG;Faev7t*P(ln7^sM{>k6*AY8I;E{<&Qr~LU zSNT6}ICfyMMvOK|GlDO)py><3Uo)QN`e`qq;lv~=ZU^HH&O7iD;X=s5F#lQ3Gj$Z% zsDOPl;|f`?w}brlDIfb&0S6`nA0PMhIwsoBFNv3XH=NMUu2k(?xHndul z2_c$a^y|_Yp46YgukFuWKg&AbaqcTQ`^Cyvr0AD#X}JWKBsP{whT1@a1>3+g&KCnV zx|Z{#PMCtyS=1>CFfAgSueS~vPDzUjCq!uH#rCd+GZ7R3!={;`RbqqiFGSmY%cU8M z2+no%sp#60Br(=$Mgk?7;VmT3@iTVhOl7~KyE<$L#4`NurauJ$!x|joex9xyou()zHy61DCHPYtL-&HbLYiP9X zaHunUA@}pj?I5PBBy)S#nf#NeB6|DbFQwlXH*Bv*I9ywsd%bR}9;_`2b?Kd=RD;|1 zl+7yDnCq-5c5az(nsm~xzgNh-{qj`Be87ocuBCNj^9C z;Owc71M*A%meaSS{@Psl*Fq1F4*Tuc`3@)NAw0)%k%R)20;k{#fyWf!elT_xLiC6k ze|HjuqJafQ@I|dgd|(u(W>%+$kNCK0BG z65)%-`Gz#e;k5?GvE0n6DaE-<6LfT;Tevy1Z|j9oi}p3!usk+aHMuwt-%LzyFL&Iu z5?X#|JUu@~J1vtd{b_Ns3J4`4LIKm{gZcRAv^L6s=mW(}!H-xofT#)=_feH=uoXFS z#^vFFSU{C-_}&+^%)t%bg(;Q73UFGnlETcZTqX|QB4h#lD+>yubo~Pl%V0>i*ES5Eip2Hqy-Qk>z(xM{RSX~P0 zL|mF6BK(Gm6sNpYHV{Jp+Z)VwPc>Z;o#0adLZ4;`4ZjPvce@sU@h0I$2lENhvj2=~ zW_C{)aiH>;mQ!QDR+H@c-JZ7jB1sn;xv80VgS#tJsZ}|Tm4kTf(tGen$OWmq#W1Zm zW)`rHZE^X{PfSEix7zv3Dv?A}$er*qj>U^5i9A*+4iBc*lB{LJU$jVdH*{n@`jUqE ze)avOgFQiVgg}&1=Xf3Ujk1?LJNu@ScFnbnQKzQb&fB{}qZvLr3(-9{<8Q292OwyD>+C=yn_N8iF_eu_kwkTzz8vl>BJx`c3h4 zMXl43mCn(Vf|2a-7Wl%7-*Z*)bLgDbK3V+6rGxa^gRTVa7f;gls**O2kb9`MiE+^W zM(g&_ynH^2xd>&8XgG$X=;=H=4!6EIA9+Pmo~@w`<=r*x^XOaq-18fA zCuAD0aX(sHpS*f7GxfUl5>uH!$qo%i$o(?HVYE@- z?sPxnPH98C;#{d1m1JK}e#tV&vB5gy3RC{OjrnOxmo#k|?V3qX&h1TTJ}mmZ?YTsR z%mFl+2r3jz6_-lVUgbJPND^d)OPf*+`KkR<+OegqIvc0~T_*$xYYk*&TKYTbbGplK zeq~g{zc#QLaX2FFQkL8IG><efpBXN5FX zZjl>ezn`l7e1JK5O6K;8X8lUFhiLkry7MK;10VOo_@_?W&t_)wZDo1kx`@NupDUWY z-tkGHrlhg27WxvHo2>d$g1JOot|2XVo_wc&oZ8o;e$6CLF$n-9SLh~JcOpPygnsNr zlK~0GG}kD-=mEU@h{PiiV>|?@WO;&w0NY-hKJCN}U^zyi_-P<$o%B`un$r+3?cv)G zq>||iI&-WrxeqG4A(1iRh5)Vn!wn^-l9nCl`aCyvI25lbOdRZo^Wl`-DJmX(QFs?y ze%}ghzmyQx)TxXlOL{mv#H_MwyqJcgjeeqA0ap7T!68JJPl+s zj}%K(JnxnE+C|2{vZ?>0d@c~-O7xI3`x#AmBNShCn5k)174PBDZ4oY*#(G_8%S=uo z&?+JR5A`4Vvi;m z1({}IG;`vw9^)kxw~;OQCu9Ke%JB`Ka*LHl{1;JIs!QtzEXT?a8?tunc53J}owYm> zUx6H5I^;#|m!^D=@83klZ&td}R?JU2>Bz)*RJc{_DkKaQ?^5UP+sw%re&smu0lG=< z3lcOL_@W*3L-G7e*n+bdBzR&%M;Ytg+bi;#WQdz8o~k+>57C5YF$BPw@;dQq@0w!n z%Qrr@Tubt3#}dGACcvr%MS$hMcC$Lrew8G&bwatE2a`qjIu>?>oby@fUoN0+>Wc%@ zSl_YNPF!#UOE6s}S*0sx0T@?p<;TRfoH!?0lNaQ~v8MFgMY)&fuf)=?QG;9%`i)t? zn3&Aa?mno*a2)c&a7NHQPfjCU$ZU_KI~M{oYJGSadO=a#SPxgLQ9W;ANL`RBN_hAj6o;1{Q&5(}O zl*&S*EBr?#La+lQ0FZOk||HS))i7V#RR)$kIX>-8fFM05Mt17$Hf1 za1Ma?x}xrNi44}snpkSCgKZv{Yf4@x+ec)Epc^<%pUlt=&-NZ>)!H1?X@a_`$;P<%d z`kbDzQMOql>RR45nRvvY;Jv5EdpYL82?zn7?7@=o>LPS}5)r~emodlYs1|MLI}e66-( zu^ZQ1xrMU-+mL)x&3XlB zYecc{RK8j8Hzip5N8RQ1l*;_>?X8?fi2{rWFPlLMN+ChOVa2x+G85f(*mgXa7G9swM0=inK;S-1dfPA#-3gi zH@&K?lUU6}BT0TvirYUTT7m#yj@%lEn{aVNk`*F5Gz-QJ5+i}JV*{MvXygO{K6+~+uSlMz zUj(DMiVQ+^EhT;u)LVshd^Aj$MRDmM1@HY}HWo~Vr-#-R`08-7F zQ$%XEzE+<1k0@{b`4v=2wODEDVCvz_&8ai0xTu-pJ|`9tIov zIQ*&qqT+k^|Ae+p9#qfYbCzD5ELj#nxLmf0T zcBQ1eY9c=XtsoyTDO))-{1ddV_3!X#)oEy3EG))l5_BFf#FBZIN%NCfS?x7-6Wtr1 z{yURXH4u+5BQ*gaExV&{(>!!MC0@ZMcqmnNMi@(EGbmjDsu4X=E{*|4!w=m2aV)zq*^Q`d8E>PHX;p9mw&{ z{`b9^prnawR$8GzHc$*U(T(D@Ey_xWfJPTX{LXtaOXwt&Fd&JGEy++2K7dN-eFhBo zr+Gi7;6h~e=G&cmqeA#`&mHB{cb&#;`!0iCQ+qAbG;I+ULIi+zagv!9oI26K;w%5g zm>FpS|D>Z3r5(pFq)Ux2IYSiD2E>i#p>qtAKtz``m+9HT!}vu7*EDT3sUIgLiL6re zjMD6nV1fpn;UPeRSML34TGj>1dX{`KTJjTEx@dTB(>Z=!hX>GFgGZ&e+~l7g?bd^ThaqW)UVX#kd+tXO{KHuz zD}{V6IaYFhuH!>+mkEC27_W}O=@MAL1CcxPuN(d~yq&q>;%jts+puuVu*eOEi(LY|50(kN>CeOiPo!5>k*H>ZRf&JeAtdHVCC z`yY-I-g%)oq4Uzh>LJUo?>_%;!47X$zNcx`AT_;?_Uad-D3m4qoB5BL=f=gw9D89UWMEN@Nigj%IVYORBFH%-)6ttQ}&y9vkk(uQ&rZ?>C7H2LyeMZ(}f z3Z5T?XQq%0g)-8@-;?%Pd03}xNu5L%N&iw(IfozfJs`X>N?i14i$maKgv}EX zKxE^H6%X1vh>tmKESIKZ!@_O;aT-=Pmc%+C&v75^=*N7itWBb^;}c92yS@dvBnK$K zlE=juzaRlChm)%(?4|YXc2!qNzfw=L)i-}vEBOA)j5Vxd;H?aMH!TCqI+aPpMW2*3 zJ@@K7-+zP^=lofNl;(>*#rvzjbn~sA1RWvw*`NSJg&nTk<=UhyVK1N)TsRCRAGo4X z#Y-*%m4DkP)LV6UYWIm=v6-Bj?1OZLGHf(J1>HIPI+_2H` zP9ZD?{_$3SDW676Dwr#YwIAG%L%_LvLwX(H6L4+sA$0^?I9$7T0?wIC+hno84rQj; z=sz7`YQ)FN z&SgZGijNy)hwC%P!P&WJI9jEkR=p|G+acO-2PbTaXI621QV|XB=cDj*+a|djPhgog zcWr%i{l1avLv>y8x$={1@HD;s2` z6#lUP57hmq=ROFkh(L$9&ABeZHNF}53*OSnX4b=K)9|uwpT()sV&bMmxT%vfN=V{FwnKj3%-@O7n zMYrLzoLa23)(M`MX2AoE@?fbDHhXjjX=_Qr!S4lgqzcSicY<}~u8n}OG!%UCFfeyc zi)6UJxB8LmRwIb zC5;-N8dVCN{#fg-|Cj5w{+-ZkdUC(L@}nMRZB_2)_Wwm>d{GYm^T7Vn#tk{w<1acG zmwCfqMqcv0cRu@ltt=(kR%Zjr8ly4XyIKTb!NRqUD+^=QkwUgnlp?I4oeK~c2i*Hg z!2+yFKUgoISXd)6CC)>qV8}wlVL-Le8}Uvj*}7g5U&1*Y;n?rvNUvGmMkgEVfE3TfTPq zR~l|5N54ogV$`H}$=pUG{#d_F7dAdCc;~T-adm>B5;)5(UCw~Ng!r-S!m$k2?VJC% z%x(4k9C>&w^9Z>~4KT(VuuuK7B#uglVs5E5>t#0oL=~yB+w=!>h}l4HhZBlL$>vMp zQcZ1;gj2$bk1Q{#bUImk&!>0&oB{yjR;94&5QA*BkvvUy{W$(4q9%A&I}t7lv~&SZ zu!Y-%mPl$549*G==|yuzhKqF6B6@KU&arcV@f7*{X&*-d0RyG_`Hw8E zNt5{s5AWNWT^+BVzNN2FZVM4o7bNcT^PCiMVH;!pI?YAi*i7c<5z-cO%n;uW&j!ql z#v7FgOG4`=fxISKJZ^y7&J$r=Q(fnUW!8Z%tPVwtOp1h_#WesKu*2)fV zre+#i_Xn3VMQTpk+1YjRkDLl>{r#fkWf}YQ0B9cylEfmIKYb>YVSwp5eNK+Sk-nX? z6ZTPm27X|5L6p7_ZYqqaNC%yZkR-9n(%39p?*^L>qq-hag`SE|-4FjZm|7!efHL>H z-4+v=FA>!ood(wvGx9P!drUzFF6+0z9XK|_&{EVpV_R+W&2|-hWAKBgt&i zas2oV7i*GjQUO`4K!^~d>DSJY$C1=q<`pwmYl4alSJ_Sa<7ZtRukmB#(W!sKL7hI2 zz2E6+4KXgCoeO9y_J3{{xVjtNdT`mXgYde5y}tU3%#-NRuDm9{D5{I3a9?1ZCQ{%| zo7VYa|BarSXRkO>Yf)ZL>uc+!jN6azZb%*-tOrJKF(l*jA%Me{5vv)pUw6wzx7uks zFMnE1mV5qq<+AZti*#50?XmvCOFn@&e!OnT-B6X4EMMjX(E)5=6Q>9<5(?JHwt`i0 z$F88@UVUuDUWVAj&V9%kh%-_E%`IM?5g!FPEvBnYR(2k=RZmcfc(Y~$w}HT;u&E=7 zOEaRRXYP;SA=F_V;E_*jU+gbD@xUsCXIUpR)kc6$N97-TE)^(%3+aZpcTi0ev#+|AhB z6P$Ho__6L$!&tNsfhia&{d6gW^GEBR@!4vv;p!#_ZG)SkmWciVDh>@7bfV}_ zjc1-ZfesH(%k`T|YJ{s30K8~Y8V~ykdD;i}C23T6E>=E&q9se3vca-W{ZB5|^1Te+Yu(PJdY8q8~PjL=d)VWD|J#?(3nM+E^4BG+W{2Ms`F8Ia-&7Cz zAhpLY7~QONKE(e9-^PQm?b&zDs>ucWO)c)n7_Rp6a9-imjkq&k~^Apud91ru$nbbtxqzFl(Evh2k}vf zFsivPz+gzvDTmqw-p_YS$XEHR);Rt^raWP0kg<#u54-iBl~jFIPS zTAP8oXJD+rm$U&NT=3?Qx>=$xrm=oNv@)DD3UI`J!MuDlF?v-nYN$!%D{|H_3RR39 zOa~h!fC-D4{R$KbK2L;*ca+`X@lZ0@aN2911{mPnH7J{@_G`@@ZHu9mtDG4SPtUe1 zbG4FD&;05&F*y5k!g|zWcW8PRoqUSla5rAoR_4xQpVNBdPygE0?jLl%z}%D7ex_j% z==lH63#URIiMM#1F6YM>~8#{P=ds;84npPBwA_k7k0UDl{| zN$}ebezs99uKK1QDOJH0F?&y^R;sc)KWz<(Uwo(D^Ll4ETaGH*7|NCTe6VVOM}m?0 z_#-A=9=5I-OP8s%@xvG16_Als`AFaLu<771Gm&?n;<9rU`1A}&R)}=A%cqX(QR)bYJU1t#< z%BK>2NAGHaQb0z4cBOG^An=!O$?`Pos9ykK(l}QBI?>*ZoQDWk5{cyy3DFP3Ooq!G z&XPB`Mci{fLhisc5Q7HH3#y-<)cS~~7ec>uIo!xT1?x246V+&rsVyyuU7xj{X*%=e z)yZ2USF|TXB#%i1tOZo*5**WZj(sGw-|9vb+v-EmYR z2nPe0rtjVxq}rBG=((EFI#zr9**Y(L-!jI+&i1@>Eu84|(I9OY0p_g?FucNs<{k^- zi30gGnO0hUCk1>v_61=9DqJce%c={QkYwn`iU{aV=0I7VgCWh#Spio z_WQiT;Z8sT(z_w_s-$IBDGST%Od+*I7zi(fh0Ho)rL3C2n88C3_Z=Z3Vp`c#hn zOu^{VC7JV!S$e6BApqTWYJn95$Z64YH2UN)bKBbQF1J*3b(KzkI{;zlx+Nc+ z8;BU#{x3uGCl!Yx9t!yXOrHsIs3^5CaL*ez(~bM}Rg+mWYoz!5j?Il^`)S-jO6IfK zs)-AlC|8H+>CH>J@l^Kr9WO(zU@+!P9t&7OO@5tZzy_vaB^CEU%vBB1aZl4Vmy9)# z^XPqPpP8#APc$l;N2?x$+?H~9qgn3 zxk=$H_-gNC%6Q{8s4E1`{h?88!_T}g#em~}@fmUUJ`Ol}-yuHq(~aDrl>?n8oVYp@ zDHOYrRNyc9~4B-PtoUdO+3*#Q<%NlsFA*}Q?0?**78el+0ipiWYKwK_c~9z zaL-I-Q{$P!0o2R03N=yX-xkjb-r@#1YZaG}`DDwPyAfU@L(=f6SMF2kmkaO(l_TS4X;%P z$_V>={z#0iG|IULIef{G`>e8xV)z@=`-sd$M*MJXmXKoESaUpHF%8e5kyfdCL2R$- z6x`oOym=CG)lTp08#X<@$n~U>K_mBK7ybKDC1I7wY-tjkG7Yans(3WceC0H9tr2?X zLX?$HS{@y-ov*>7LCy#}zqS2OoZncQ?wZxa9|IeLW@kx;%34U&TfH4VPo$6VBsEAa z=5mOd%on_{*pphX5Ear?GmRGh_Vk6_y(dCx3%LPgGVWN^Rs;%qzj#DLVA#0{@u$RI z!Ons#$77_`u`T=|Zm>iUhP&RG~!CTXW`ZE+GFkQWdADy3^FVnz&t8)LU*gJL#4zM&tyl z%ms`v-n@8ZUpH6V<~p)yYnZ0NBkzrOi?e<*CUGWW9;^rEF-$$>^1*h4jFuMgA~)BsEqnf{!;lJTCWH`ZUjMNHl!NP0`XZ5MM0XXr*`~tA5b0+M*p2dw%Qu zQj_a4SBKlWwrKQ46Z`bOysPIcLa^Oo(p+aO2~(-QJB?K|>5LtjGtkGWRbN6g8D=hY z<$o3`K^YU?R2W&ns#4H{u?+mB|hFjtwG(sH{AKmN-pU7a<`t* zQmb$Ko9zE`l>s9(PwU3BmNuXu4sg`{xLH2%uxV6`W7MR zeR%%&-EqfwZ@f=0pMGDn$6RZ#z1Es@T7A_r7Bf31mlPRgo3h#tabuNAdeG1PiJX+x z6%Ww{!uUE|)R#?EqRY!*kNtHWeoX~;-BY(xtm3}Dx5eTwS3_PP>1}wKA$VzF1yWJRspC*Hunko#t=#iyP)x)vyH`7gJBZ|k;f zD@GhiT~4qYc&=nLGdpKRbhY3*8*NpX7|O{Qv=IAb?Kb+jc${cp-(((AAl%zlH?RI% zy;lwPB-hy_&=sR-S8J0o^RBfiK-{|_Z2ZpW$)ck^Rvz(HyKemR0Ga*Z(!s#DVK!&$ z=KysB33-eh)&%C-sa+3lVTdOrHoBlbn*MX2d`G&dpnm(Z7dUtk&LprD)5E__?dTDY zXeuDT$|-!DYV&e12{tMk4j7tS<; zTz7}yVXbIw4bKwwGJgKtq7c1RW>YqC|GaWl$?E?q5<(&$W_M<--tOXE9hkv$cGEL| zK@p*>5Byg_%5ks-oRy~ax-TooNW6~VqC+n5xCi*_^HPi+tY`~ z1C((DsiZC_ODsDuK$pbOrx2;;7hQ1dRO>{1FqeJf74Q361+GCU`ll~&JV%NWpUdlB zBo_}46-7zqRY(BA%p(e)*qL!G+yu%OH8__H1OMGHtV8_B>N-R1TLm+{9~t!Wp)8DX z_rj$_0rUJF;_x^U=r!9pCj@}uoB0BA4RuqYJgwMWZnWmKa<|;HkpY<}&YbP3?ppXM z@wXz+6z|l?{Gctj`yTb!xI_t(BDp=g})e?fOQ=l>7c9}2Lv)MgZGsCoJ%SJrbv zH0RiJY0}9c!@Xd-Da9`GMFLOcw|o$bV`ZHq>UhsQFC;r6i|=t#fo&YZnD)O|4?rsT z>6>+Lk?P`bJk2rj=*)twS=}i|=mNJKcwIvg5!M~7qR#dm#@9RUCKHv~zSfg{b@zjL zQ-M>{R$z;-w#E8=M+qm72E<2P>NHeWpzN!hY<#uLG?$$;{pvvOaOx%8FqoGP`>-X4 zNK<~YfS0c>Rl!l!41|2G7{c26Z;mW3mSP{-$|w7u1JikkgMbGs<$bKs*aoA>*)^}w zE?(z@)Q+{>r12J!W~FPa2HlPP6Yf(>?}SAo+q`@vfzERn`HE_@vmru3C>*0RxlPB+WcoRJ==m(_TIfz7)zp(DGN7`bP)5$-u}+#0ud zJHB%P`^2}4P3U4Th2^J7=_$%;=%ZMiG=)%trVUd&Q=%O~7KtU|?80KQT*Bf-nM`_7 zF&ht}+x8ZnQjBig6=~5!QeRJ*W(q?~g+=~C?hnC}4|RBUv6^#xMXlX97ju}nvNAUK zn7OCIhZpG-adnke#WvplgFkW6aDmkWuvxB_0q=&kjvw@n7S2cD9){yR5=Un7&kZ<)L>bcjX*U`$UC> zK~zbqh`iy^PrXyi%TsbLze0$(g^9dyjj@r+fcQ1A6a^ynW(p7FAgpvs;l*LK=3bT)GS* z4Y-I(H_IGiLmSpsXeEjLPHv9Vv07ZVtPqZ2KqjUNgZah`NZ}DC#gm5$co|l65(Qbs z5Dv%`-658O_^MjAMF>H(34jJ-FAEVS%X7~m=q0e>?z^%2v$=7>e)aWY~+-S)Wk=4 z)dau}feHW_<7rTnY7p2Edl@I>m!KBd{yBPA>Lf7L4I$$7;o^8C)URz1GwIuxnmv!^ z5|2a0^CWYA__nMwkzMXxm`pdBCQ>sfOyJ`Xg!phv75AgO3e^@WJJf{oAoQ%OgSyeWX zl4n2`KpYeydbV|BtV!?_wsJLP$q>`;&J6TG(fF`W=8127*;wyyCVg2clo{4EgI}Da zb8R3gDUn;|+ncgYlQ{vUNX|mR6&v?z-q&QcC-WA!%Nt>v@qpqf14Tw-7Pw5g7G)@q zPVFXWh`(G$=CSUC9q;t9!x)L@tPs6wCbK0V<)7!nkE|G3)N^>EKVj(7c%3@YO}wC< zo7z!<>OqF7_x`IPF#F%6aFm$Gha6kE6!X(p1pLG(l?b`%rR&)qY1NSDU&!a>he^Dr zP!|w2J=dt~aB!<9<+!_DZRGRCRv(u-evZQz`9+fP-cP2#MEXw}SEmY{yFz&5`zo}U zXQYV|-Jw28`(>f7bisEibg4_Q0lA%dVQyXd(PbE4dGX*?{nEz^!5&&fzeWUF>$zj_46d}fhI7%=KuA{m`dW4%EhB6w=!b|N zWBk&~jLPxF}u`@F*AU+I{(>7Y0HF$^Uy`3j=LSa!Gq*eH{xC( zt%88}Eg`iq-!WO@`tZf^FXS4G)A^*`XVwy>JJLg3Sv>E1+rfmiKl&b;ikAsPwMRlf zRWLE;Rwlr=v?EuwV@m85C0RT_zB%4j)_2?dHaS~w?iQs$%Ush`)D$n)Pu#h-vZ{7z zP?{_4u2zzpO1G)Sdtyi8dEvvsXe|^RR;!f$dyC~A>z)DTUx~bXQmQD8`MK(WJGRE7 zQeYW0Qk@C_1EiRrCZoNQ5-W3iDJJesoGMDzK~76AC$D^VpnVE_v=*Ckg~OV-`jB|G;^pMzLF%L~# zz8Svs3jHX(!8*jdp~?v~0c>8B7{N*AF{zB+-YIe89N!7;vrnF3vNw8c;el(Puy+^d zs0e-StSL=h(F;#574~gz|C{An^=$rDB;3{3zPrI;{d(5zfeUoVjqiSi;yO*L#M((B zCmVOA-HHgUw5OK(PNht&{sPppEJdk(j7uCH%Y%^h>ZTdI_?(hjej?pmTZv!uw<(6r zn_XM*1LkSOa)Ks($Cm$(d*uJE zJIgW6Hy}ChD!fka>z*6$qR-xiLB|7s!D_jC+dVaBWc{-qy2J^eyIoWYOv2mwO+$hQ zxl_i-qO;iLUu*9y&)0Vz;p++(%s%P=c-o`K{mkf4x8xz5< z^Q>Bf^?EaIY#FIl#2bQ#QwmnrRiP%#0Dxd46OqU92g%~F<)Vl~+R%e^EpWt8Vp3)5 zJ0O-TJyEtn;e0(bm{vcJi`N&mJLiL8v@q`!cv8U+sk_{ubCz)Y_VA6#)XKy z2H(+6bSpI&cdAoc;b0v7%%+_mBxT(N63o!&`CvDf7sWLaRDf}-y{p4(r1l|I_vzv# zvPM3q+0M71M)ps|d?ESiBM<8xaCZ)tF52oV6_> z2V>ZghMM&hU0kSdOy{q8bz)a%9(;aYs-8b|eu8>t_^H%|lh6z|~t z816}6)7?V^zs>=Z)wUELC;Df{Zxmi@# zWkRaNv_kHx#ZCt>X2aB(+_nS6X2Swxko$@V@w5QWuo#EuphzUVs8@876RexmMj@Yw z~Ny70Y=ZDPO;C z8pZ;ih8M7H4b8F=4eUb5dQPS{?$cy>ar{Zi<#vA|x1xK*Ck0qq+`v$(XOA;-FfZH+ zF+2NbT7e7YFWW9wUj8k8hf>zM`qSSW;EWp5QmV+1yp_1i^Lj#k(SS{KLr- zTlf*)Qc-eE+}L5J(Fu;=#_Cz=DzhSn0!r{F{#?%N%EMsw9X@9I4MJw(#|9uiqG86L zCy?u#zYWV#few$9r@#UeS1ffM&g$r|`t+LXmpP2PTQ+X>W-U?GrBlnWdOmmg6Cy;| zRkZBz{&;lheso*2aDnZZzSMqxl1l@j%<@b~{*3xy{eTZT^h)?a@@V+QQOM7Wih$mB zG5(?rTc#tr!EVZ*%mEvf`^7A(P@kVX+FpdaZW2#tskHUh`6T!1U&uGhBh7iGSD(#W zzGh;imouk|f8aHI!$#7{Yb*7rQE(d4%CN*&E3xC+ zb3cc(IyTK+SYpzjtHp@(fWC4t>7MWBXyFPUEjH#Y!G!XEMW#Ql=p@bZ08xDI!JakL zj@=$XCM8|-at$LZ*qE>AyvfNTYMy&x4#&MW#SC6o5X`FAk5_TnI%TeIuUy-{c5E7N z?8lW>qzp>nPBItv`}S$CyOc0KTk*Cgsd4tU!9qG~$t73clJC*Fo;>!j%a`Uj=7oQx zm}pJVP1oB{oisV;XLGC6eLq$<*3EHbO$AAtSNu1eUe%A`Ljq=2ALO!Aw7h8$>sGy{2xm7$I)up`imBOd*;B20lTyo%5eZ(6($~}b#Ii1xS`D-T> z{b5Z`z4B4rWD|tTj5OP`?_0rq8lvg+M+pqU5JG=8F^5qiv6hfMcP}4+LOjUPZ z9Yj=v%v`f!o1(whSyb&)YXd&Vc7H?tPGGmK2D<8YuXBHANQ z+u=m;n*Vt^aYn^@9wlVqNxJ&Sc*xPFXxS*pcfNiz2nH=AOx>4Hz^&RnaIx5?!Ey`z zw+=Q`B(oNp)gV%lbR{md{_T0A-A|TMspPi( z=n4BJ|DRJOCsY^H7e-SQ4f{pcldGcX&{FoQ8ATR4W=kfPn>tfnA4f>x8dq$rE><)- zs;w-IbiZ8QNSD``@$g?AUeQ;!-EJS!X6ImKOmUCDkk6CyR=2?sli-!8`|Z(aJE_%P z$Dlm#qF~+_kmm+)r(r&??R-LL`FV$rqMDF2JwT}?Cz}_ySjEBSP)UQ-u-g08(srjB zPaO>%VScLDNEse}Dp`<0wGhG=M7YZFzDoQXtA_+69}KhteXybVh`NV(LA4mKx8Py( zUPzhn(cgB(>*68^`lc!SzuQv7h9xQ9q(;Tbu6P<=+!$zW{PZ97i=HrTWC1lLE9Yre z#@u5k5WS0-7oJ|LRE3Uv&a0GL0|LFCEHwjbwp$w~9sHcLddCtd)KptiN&H-Q{?b8- zfrd`Gw#K}J5gj=#<}yTAFtS?G;KLFI)Xr)|>q34|0C9IPKl7|S%(oF)SW20i_LQLJ z4C)OPq;yYj(Qb2zYsB&C8--5YvQb19GLBloI`VzYQCW>oQgUF76SUi%`fB_FU5RZb z0lp3{;gWAA*&NJW_rY_f3}3sV6!@4bqe$YuH-&{Rl@GfSUe>VA{3Tb{@lT-Isu3USmSGCvv3`ENsW9|z`>Yo1x-Y4yC*vi(M*UB(dX{?q)8 zXII#WRoG2$JXKmqaHeRYH%s7|y9UegVgE&~nBYXu!)1l#TKbVW-%jnoQ5f1luYv&K zCP0lt(q+boZMbv6QlUI>?Z$How+aqrU_46n6LK=LH7|mG_JKRJT++QO- zU%y;s&Y6DKBwx`Q*CT32bQ24$GOg7pPw)QWOT2IXrf&2*3Mb$AHY85E2SmO>P1V{|yO5t{4D$A5 zs;vV|n0tmXiQ9|r+t2bCPrN!Tal4TdyIXW{$4R_kEPJ72q++NT`XlsRYK06&=~^BA zcTOu+DslCsE7I9+9Cx)%Ot4Ir@X-tX7jma&iF`2p3UosU^l4{kf49Cgnr;F0AyN!3 zMV8i-?5AwrvtnrvOdh>N3n4uCC58;n1ZvUTHLLX_zx7K>!0_|(x)fuCh_LyDUGYO- zR+z^*vEfGFCSB005faBbSPp=mu<0Au?UiK_vuU{LJo4>cG=sYhxZ7$Vn9i}l^ZOYQ zsgPk1=N&;y&%RgDQHu7g_a{|I^;fcZQ~jmYL9(Aqhh1!owo!)t#YZX|mk-~}+}iN2 z|IvZFQ}hw@Sp-=Oq3H5Xiy^{^tM@KA=e*H%j+=ZhCd7G{k6P*^FHoYE9)b^YClx3f zkGXFXSe;?>DVyanvRtTOMckT-n|3F+WF~!!s;bc3{L`_*EJBQKiFe`($pW zKQ}aChIVA2{p{EjtSn>7XV1!?RNf+}sJ$AR%)w>GxpRbsgt1!tpV2z?+=8!$W zW6eUdgPird9=7~r(HRj`TjUl>I`5F1iaVvRo3>oi$vx(-tFN`r-{YjNj5R{Xrd#av zw7G~yIRsaOI~u&r3mqXwYV)tfDp@wFBU>?WS*!FbN#kr1gz1FsK5%BUzaAw_1D znM3Kqo3NWo>I+CpOcE<`J!Ne4FXWDmclo4wX4bTnf2Ds>_U6HsZn5OJEd;lIdi|R2 zrIqo)^RPO$rCKO9tiD(4NZh?SML~obs`F5C#>S?kdYp+xP$;{sL=at(46al|1L!9L z^s1&AA%ai?3Y?Tj6XoYql~UwnZQ&U*3e8QRp@@=lm|K=zCm|#Qs(Ff|CmJe!rLwaA zF}DLrM*eBxwtiQ4+lMm-o@E6q(77}-a4l@ z-DJ7hU@T|Ls$0ss>Q5J*y>>okm82#&Xe8@)_h|Cue8|x~b1B$4o9t*k&T3(s(1$?U zSV}`4+oaR(l!+8C5a~NilcwGsY&f^AM4Iw7VE;=M7DeU}%Y? zdPxfvmeyE55rzxR&Me(<*f<1;X@b~_|xB>xDj2OrRkAU z5!)?iQoE_wx8Ev%Z(YH!rcLUM#acP`44cR&Wiqq65wg$g7&crt-JAD@xALNT!}!W= zo#}N;Q>-*=nZeqWSJYAy+r(%8B&tSoqeT_^tOcWslv1Sk;4*=8DD6msAs7}YTDRv2 z1VVusf#~3POROTINHCMNm_BZvFd`dQlp{8dAVw_unb=kNZ>-+9R2~>GJ`=&WeNid? zeK}yTo(;eJK0bX{9v%nCaWcGE&Q5nYQQ{mz8921eH_+F+hB4WX>0X}EbDhFIoB{ZF z_1#(+V(8KW-{k_3O_*|4TQ3%*Bu#n@eLG)vp6wYAL)L3ttG}F}mlgB9f zr6oQ_q%5oMFlFahpkeU>(}9uFDbz?8RWQ|3Trh`wJ0+c6R7N4Nvs&N=rSG9q+_os? zv}intHDknjr|(?ak*YV65^VVwa(^tw_@IDS&<8I1rJ7u+2_OBE5;4#bz4Oe=1tUa3 zlsE%20dp`GuXZ;ibphhJcdBc(JndNbn<@Hqcc!KD>d+Gz zsxos7K9i9XK$bCNc}vt<%#QEe1uN21-jzc=@)==|rm5DgMjD}@;Qb9>mI?cJS9~x% z-uCP&<6+H)$M}NOr9xvH)Ht}P?d{A)W2&+^^JFLQ#CK?7bF~?x%J4`sJNM><5;gRG zodDmpyC$Emyiu{y@=@nSDVMsG2u-K#OVfFnxlHR*`|_(hS*0FTuq$xvSWVnE{=pjd zz2#hDuhpIA+PG-iyP|nrdDDuUKK3GgY634ZaU-vSM|E!BUO#uiNVa%AKW3XusJ5N{ z^h(xXN=oCZ-<4$Zr~B7y+8x1vA$Mdxdlswv!ZB|Hy(3fzi5K$OQH%@qHGV2QDa7wD z5RTWGQ`OeyzJk6LUQt?1>^OAag1*x)ok~UQ9(*lsdt(Wc&fV~tkZ;R3J9vh^dD55p z&dR}|#@3d8xQ*3ND!4caY@;Ml0r97IYv-V^Qx1G=AylGiGr!A`Fs_&$rmp0m)k~r| zQuOu(d7$NJF;Jn4FC#CYNQ*JI7S2-)Kmg+b~WGizCq)% z(JmAU0}2q(V3pSZ3*dPiT()rIViz1Md4fOtajXw%32b)43jh zW>hAZYdw85BfV!Q?V(!pL7SR(O!4TrvFwp4cG~;11A1LXGx+6i9ZnzjYZrd2$mUOM zo_n8D;%I>=z6GCIOf`=6FXRP?iUNQD(Ahu7LU|eWl8P#Vndw08%p1H7j86zKN0kqO zqqy+I1HN^CfBErZ7KsB41jc?)GQMNE+&Bw8W1{!JQw|} zj1+n`awu*I0G#!7Wk1gd0t1-QLy&SkAQuCjH{;n#e2Lq_+iAD$iez#v2e>GY(S=XD zI5|@yL8KUf@jz2k68=K&wkL`&`c~;Cfbm>pDVU<9say}%&(A(rB2`b0O(_T>JQ%a4@FMXE3{yuxQz^=;YDtDhibp86S#^6hb zSdyumE!)P2O$}0c2v%H~#Dv@FW8Qo8T4_b&p8weL!B5Q_XM_aJfx(~&HH%w+{=9A! zNRPY3!Y<(M?u?#o96>#}!Xz#m&2kxoM zce_n>8&7&(w^*znVsA`1V@~L>MMdmteW-P(fgwX`*HKD)NR3TzJtaTqDw4 z?>)4%y_X~&)tG0(MsD6DI~eek=wkCUa6n+KI6aPuvRTnQvV)&f#6}W;z%6oTBM*q6 z$qVLT)+a{*75+j_)$}JH8Ss7q=DLLijM3(c#JoQ^Z_YZhB(bzo*H#g$kh}`RgegAW zfr{b;Ad`^v>$yNr$awu+lxXx2mUThQkLF%OH{}<{8_?V~G?cE@7Nz|mrkwsOny9a< z%Ec0JMcg?Z454^FpJPs)N^l++8%oEN!$hD7HS$l&NwV3WPK;*@8xYUi-X8v}^50Cv z)y&PrJM(Uxn;(A#In(J9(+uA=6TBG5xyg9dE5FSKNd`Q>mIR4$$s4?!`7O=e(h5*9 zd@B2YAL^fvuUt&3Q}kFo=u_C}+|9+`7*g#m4}3%2J~Re5*$&0St4qf!(2iZfH}bR^ z-QK8UFt3}(>i=J^tvDHIphR1QeBVj^?!NEXT=@6&2 zYQ%r)a>{xqe39~B93Es#ywb60^O1VXswlcFJz5fGet%+8C4U|sH2yHIe3kRQf}a#x)*L9td6H?Xrx)`r z?}pH)pEc*Ro(SqioI1S{lgwOI_Oo=FidsDQR^K8vZQ#lE1HXkX9GW~F32R*}_+57T zc2BxYGv@8nC(zJ8$|w}&-JwR19r?3YYG7$mv7WDIguAVG_Qu1~vD4bgXG(+0pZsI` z)-OG+KsX$FwswVu*JwC3+&mer4Ofk zm@v8CoAU+=I&p~T06LEEKO+~k&dm9!mr5MKctCn#Qgl)0Gu7D!pEnSbQTT}N5`Ljk zgA)Lq={6Y(z5VEX*lM)l)L!s+2}DBuca#r&3}om{ z9p`rZS;65I)g|*b!6xCV86(kJiL0DHqoL{kxE0{Zs!QT_`#%tbA(3i8sD7LQ!pWPj>*wp~L}IdYx760GmSL_}&=iZ3%ZM9DL9xgg{qN;$_@V z4VOOWt|Fa`<$_o(8?5?Ef(&1czDK{x(SMA!!d2nw z3rcV`r+qfHptM|Ky|heyvtQHccZ(NYHTjqOk{-WLxmECIPEdN}{N?7-Il!v`)*)_? zXs)zR(2MKDgNc;U4vFz3R!ep|)4eTA=Ea|QAZtsgy^H`b1LzcZNwh5pa=<%8(r4X8Gf1yIr2UaJ!49 zlc1=-kgL@2IL@x!Hx*jAnE^Pl^D_l{<*UecS~ zZ*95RQ@a*Q!)q;8{kiQb^cjdlhuO?|p`-UXGk9Ue@jdJRdl3Eq#?1sfehn+%?KjMg z+Q?i*uwOWn3nz|nCz7gkA>@(D%_mlm4mIEm^q|_q=UH_6BgFW7j8=XBtj<3;RUIH*gpMvQGB@=kYW)0;Kz*ZCri5 znSqqwuba<9wfHUtw;epHWuk-LpAVyNPe|H^4B0U0fQuk%?5ujym95ZC8;~Re%Rl}O zsU--@rpB-B5~X-EKx8KVl11SBLvu_ zwY6QlswqX$ze1tNIeFR#r`EA$_tm1R|O-KmJ9`)TB|-Bb^NQdWV|!9u8761^^}jU?kkW!YhcLJL>& zKB?Cm7O@XgHw{h2ukEsrmtAN1lPu(W8;8F;7nP)4OxF$!;QyX8fZ>j&h zR7Oa9fME1Ga-N@N7O3k>m%dpkYgzwPa7HrTDUpLSRjF$zqkAIpDMGGm@F+|1ZhG}YRN$P~ z<;kC~gXwCQI3!0rjksWZu2we=D9!vc<2`OX2NJTfT9$tIipGx9$FPB0TtCL%HC-u8 zo-LQ8E;Y)u=ryCxwFZWH6xdPeqLc_ zN&`LVCeOc}(<~wZ;;}HXF%Au|D;_`jBH3EZ?eDF^-Oc63qG%~2cSqG&xeFNRd*P$HnPr5dg({-TuWoiyln_T z;=EV4=bUR<$jN5%M&}a2mQnyn;^788hZ%Ru6FxbxJxe->#QJ;52*;;qjiU zL^%(yVtul_X%BkRPM16k&!B^}@jdpgLzQ5Wd1Nq6x9#cI8(JNsF&hv;%$ae}}ZGmU#=W^L6? z5nzy$;W()(g( zluE&PXx@TpCFYAzgH8W4J*!ZB`niIZF-QXEchcY|Ne-r^k{@Yy%U>M6^HXQ+<${|7Vk^w076Sz@?-v&rCI>VMho|0z-koMIdJ zx1tazw)8sCKNk2a5!|(`dBTNzoL)FY1zQy(!G<0 zZ@~mMP_~J(rrwYE;=}6i7_esr7n+u+szbc=3`@Fq#R+5yDy)lg8yOQ^I4dvj34Ojn0dt}bV>)Cwz=Ens> z#rO*44aHpG{iO|KaTh=P2W1DB_599tAu}F@7jH^&@X&#!x##8y=ahlzWO|^kV{If+ z|4GP@_mg2V*KY1@@e6=sD4xWUr=l1r6KIeyBmJeJ zzrx|vWTJ-?6(;I5zyZ( znp)OP#-C-PLVr!Md3jqtbgejSmi*8E_m3Hh@65a4k^}1TCo$tc8m%_k-GftX?q2?S zVoh@{es{PklG?`|4UU?U8&;f4E4wac4){j_D{)?Vzse60z)9c)Jpkd}rG!PHi@Eh> zL*Al?=>;dhvx2GsBuO-?pMZ{}X zE|w&i%ji^r+taA!ak(VmPzCd8w*h@d@*FYlKK6uJkj>!R`cjDU8sY}6p74ULqhVAI zi}I^hm4~$)#iLc6ZMx|6U z!&xQi#`-1x>rqk2PvQcuR;auVGtX>7{{Mb={m)7?ppAU5IWAw%`kNlZz9^%+7mizO zC=(C#29&ds2q1Cns*)~T%v~>8QG(tYgyu&h0gbf`x?JvH5ecaZR+2d|K$_nOkUq?e zAgGN4D3$~e0FMWlrdJqG!xzGM?u9K#(Oke290dmO*V3~2o>uh9EkiQ?kM7P^Sv~*g zfjSj?baBqQk8h3{1Oc@H%p95Dv?LPoUxcKtKzPW(qJ@DvS4r&ySy3VRfgJ7xw-8mg;{2QvNKrOLGrB^FPq?j4 z`{XZ!{9V~F>6s8hU^{H6tfa*~~g zi-g)rNZk!!Fu96n`wO}BQt{?=+Rv2mcP4Z2ViPWFa__(EqXS2nZmAL2Dq!dubGW$& zuLtw!-jZU11D4F&3j)T&qZVSBS6^5d?508(Qz*I|TGQ{i!EF>Ki*Ecws8E4EVR5rQ z6mmGQ_?>_ICwNDx!FhH`VA}biY?+gYD&y3

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC z&#s5xCOfsBpf6^yN6!mS+%4@(5@YO~g2FIbs-a7-Z{yH9j@$90CG1EmNe-GhObV6* zaYx_#oljPUua@{^fe^#$6i`D!>{JETEh&D>QV#^!YnA|~huO_N^Po$q=J#TG_|&p_ zqyqVPvk$($y%&^xc30?zO^w2a!+oEK0$vPYkmE@m<1q-S(D%1H0^S4-Orw4mA-rt_ z6K3{4b{~R38W>TRFEv4_?uFG4a2ON^Lrd2n8?VaHoCZd`oYR+_*wAoIkD1DGWiPxa zmA(C$oiX@wQeI2>kUyDnngat#wVYG=7+d+yk;VUC+oPq6bIzvOPfhRoc8;u){I2~g z>W4>_wH&imm8z({ZSw!_TeB3Wj)<)Z!A&#G_@9i2nLhs?Ro2<3E3{GGELgnU;a|x8 zF`cRPt$be$6B73L*S-?e! zjm|qgB@me*Isp7am2W0Lz)5TsOAiI{7CHV?e0bqZdpQ>(-izh|p}|b(V5IUT8AS)M z+>Oj^=IYONQz@RJ%)x%>fEv0w^pFyX3?bni0-k^p_@#MWjgSqqBfl~4W{Jodvk1l? z0{GYAYPw(U&#%v3;8oGf&;Fcm@PeBFm-o6OJHhx#p5;6sR5`L?C^W881SOcGDT4lbe&$;rj#-kdcoLy9^32{tkNc)ly?vQK9#VMRO zhHh=Q{4A$l=k+!79^wlNGT|TT*!r}IY7ptRVq0~E%}<|+-ztCpY_-4L_nJAGiT_)X z{IGN3yOR0-E^P8Wv*6&9;lA}joC!Ohy5nXe8%=*p)NwhZEfeil@g#!S-hr-M{pT=B zqHn$_jd#S(XqQ2&#k{sKV^PnIcjRZ1R8AGrg{&;kB$k8u7=3j#tNHK?p;@Z2!p#e* zLYr_RLO|W=Du~C0o&JN?Bg5A?Kudhd-1I|8IX=1}L~#-6v1P z4&#!y$ONrX>@1;rnlSqWwl%3QETHQH0ODYxp5qfm<)KZU7W;gl+IQM{q6RaLgrg~m zTmcp`If0Q`0XyuMm?CZ6OMUyG+wZ0u-9$26>p(5*xU?=BG)s0}D^5UsE%*z$Ih(3Q z65#zmuo2EW_usF~wOXpH)u2Yix?_parRF?O^!*2+tRWkHYGmw0oL6abxk-i!8+b+P zlbROE&&cD~t3Q8=0^dD8nzO8qoID7*l*#dLo(j8vm%6j_8gWh$CUNDaNPSPk^N;Ue zjeY&b86cD}eo|;9>*jvm##cLHbNM5y#It6b=c7Z47jxjBNrnsTjAVd@8eJOQ_5Oq^ zo9$#Umv~V%M;$N$OPPdeF%{Xsl9{CT%?>6 z_{T?j+EdCn1d72aO*^OBQP|o2bx_h2@hLe9)u)xBC(iRdd9kZoPV}v4=**aNl}Y+f z&4WL2SEvRkZf1xXP>Br5laZAP33$vuJ?@`{@pcA09LhY=87eoRMuR$Le%U zP5!!^zub{dx2aRN3@vY#QH8iss~=ljG)}V~aK?mver|Mo<+SH=Pt_Yoz9Y8Qr}B+l z?~=QlWLwk&oY%UZ`=FLT9jiY%+7I~6BRyFtzQbc@G2 zrnD%2PFN^6CQ`QFkV%ullkQSMUIGZWUXTer2Ox0>76}8^i9zg^{hc^_cYF_ZQd{ps zE5i9JwYyaBZ%tgf{w`Uaa_6fOPPolD*fql7xLz?28aJk|J2oF|sb<4jq~!$xFiKlh zpv6a+ib1*~0?f=M0aSqU{_Hm;{p2>1UIGj0hl84N2J;d!a+V!UHDl&xw@piBm*S!a zYGGaGlURB1OG@VF6~*vODflBg*2jcUkSv9V$t|1_Cx_Wn8)wl?6s&1L{C&eUk3ERZ?l}WYh4|i=-pmr?75`P!$aT+Z>!B3@fCMx9@Y;o z!6V_LPUp-baKu66$dH^z|I~aTTV(dfq*_fUdH{?uuN=ILefj0i2JfhY|IyZl-Gtic z%Wey?2yy8wwmcK@Y;BDI_ODuCy_r+?OQb6g6xmIn{});38P(JmwEHB45JJEJ0YWuY zDFH*3rUnSTg&wN(4$?$K)P!E8_aa@o^d@4c(xnRuDpi^V1?+O+|E~4kb=N%~&iAv| z@9e#2=9ziUiiX+GlL9hNJKsyky_WYGCvT)|={eoOf7tN*^X9a`xA0FEe(m45V9M%M zc*9>yo9nN$L~%s$qj^ET0CGG4XXN~e89EL4h`qQ0P$>g|zG1AS?eOV9fJhD#I~L50 z&0sT!viyiHiHuaGF)nvl2E|D`j3g?2T|z$vID~8Q{!`K2gkjLyH}m!zV;u;tg0#7S zYTrySStSn?eZ`}~-ZqW2agJO7QJKMe^Hb5^68O_}E4`O!4rDPu8qPD;O##s7-Rg0}lO(`Bi$! zSz-Xcjm(R3x)iB(nhHjK@lxCH@CI|`RTE1VGi};&vDzfNN;>!43xQ$=G|!wnh?3)3 z%Gkg^$M1YoL~E|k2nx;Sn&8ac$A9$LSTNyp$Md*j-sP~Ll3n~p2_7aw^DGwsI!^t& zYxC5zp%l^OE8caiE6MvL^<;#*u_xy?!7R5Zy=Xh%2x%FXjS2l_7a$RfehSo<~ zt5OkFV+C;=(TOqo==S$$II3b#wVpV4)yZ9SuUaQZ;1_^i zF6o4d-l`%E#sPByQ~^VaGg&aZkua?R+Qf&IjN55^>a49Gf=pm&OYV%j{gJDQ7uRc>uQ>{d0Jzb2iZgs7OFQH4) zvW9)sEYHij<+r-u6jJB%KQkv{b5@JOGy2o# zMF;|{NEnYhEHx0PvUT09243u$!6ciAp&4}-xQv8Vd~{;9r|8kBI9`Yrm!x)TPh>Vr zK+vHeO`ov%K>M)Of892>uMYHT0qsJ7+7G3qSROlMG~ACaX1i(nxjpVCPo9PgK{)rI z?*7NgcCmb>t6SJLt((hlSDifBTAnxO?n{(>UOo87b>-Xk#qzMz@0@qCB(6yonh>rZ zetdH8!?o7I*Q?*_ygvOL7WsQ@vzIY^rDxx2waLbDx&E2gjs0(-51xKD4yN4icZv_~ z0SyZSK%k|dVV4}31vu~V@Tq{37v4S>W9;1EED4U$zFv1Afsw9w#e9FuDCa7>K`Tma)N z+~)$c7&qhNe`1*nb5hA^sTjON|K7>gzCVRQepINEOCaIKr2I%WW;vZn5j;Ycjfa;} z_qaxMIJFkcuCYc3pCeaiZ^~o~ESv_6w{p&ETc2KD(NIPNO(tXeRbC_k)j+s7axzGU zB-JQyJxk9s!TgtQe6X2I@zW6-TjrbMHsSK3Mj!+xhaoUwu-yO-QJNB`K+D~#$6o9R zLQjry7ac$}T$6e_T(ErD#I^TU-JFik%dhDLE!Q6r|2+F_5}Y@-=2IT`!~64~0+av6 zNG*->xcke2FmKb#u;EZvjMU5);=!w_`YES3SDF`+9_;_V`M%TlDpOW~n4}V4dDg4P z*%QVVB^{w~4-1Y>7R&9pr3CzY`N&X7U52R>Y!E_X0Dw&~4Y~2@X>~7zWo`Uh@{g2@oK2S7aJt*>_VScS9*+Dcz%+6? zotn|U%O;1q*KxsrqF@Vs{$C+wt4mZ`vSx1dD zQ7+4G$Z1F=s;hr?0#1KR2^ zCL80gUpzWZva=~|aV@G)Zb+-w=H}V@X`a0CNa*H=yWg#Yy-r;{KE8hZ)X*@nyS#k- z!oXFB(BY5&SR?{gR~qKlewaS4H@Q$Sb$sczZjr*qvj-AysK;EI^tQ!Xm<1jlS#q4s z_`ukf(MBdm-@xwN(Vu~KRH|6eA$U)=%QRS#w6N+;>{1o?T{pK zYz;)fdK&3656j5tK1a?#bzmwCu${y;mB1v4#~Eg?RM=1{b3)4cP~B%O4A>E4kA)1W zIbjj1cdrDhz*D^8gk!S=dnZ{M5YFVJZW}q`0J(`uMEBh>o0Q4yDrJTg)qQ;8&hec; zL2x;Kxj3qcEsNQFPIjvPUD%^)b*tMoH{}PK!t-W~UwM6&nLqy3IRAMD98g{Q{PgtQ zC*H_%doQ{O82FYrr_&8Z4u2@ZQ@MYtQ$F@f`Qj!w?{2d#oxA=HIf}2@g-QOo_=n%p z<~U%yV&nG`({EL`!5sN4nBQqB51(}= zT!2D++k$Qiu;;yw=23CT1E&r^qD4D}&Ac_KAc&hZBDCB8N*$u(Mm)pSGxeOES-qzC zXG?_;UM#Z~)Ge}%=Lf6b_3_!Wl`~$|+QJG7jE0P@Y;q%ojnQ2gIqLf>GzzOvmN{)R zmTE8gJ9f@rNCTinaLNQ)rW*7mFuo4+?f<5Fe0ziIX@GB2&R#MRw9raZ=p^W}|q#{u&-!e$QDs~Xrb z>$|AS66*f8qG0E8i1F21KLV?@g@!5YIV2tcJV#i{o}f^P-$|>Ve-9uXrtz|7NJ*lP zx);ncL}}az1MUAxG=-{*7pkv{7n4h>y**{>DwYi@RvKTvamwo`&=I@6f5W@+*w(a# z>g`x7!yjA&Qf}w5S~hR@fz_XS#MkYTAoG*cO|SOe+ee!0WA8RB-vXDnB%M=J0iXq! zBBa;8>*VLN&pJb{K(>xGE^95l_53T3ek^qSy>9bYq`5xxb}ZBuYmZBG2y9(?_4(lI zKL5VZw0B}cmQ+gJw>gb@am@{kd0$1@MrYywP0|6#XQGz$SZiN(oHFfi_8^96Ab|2m z9)}HDllMlmUYPH@9Xm3>q1LDc&3r9Lr`!1F>l?UK7|7I8Og@o<`@VZ0#FV8jSowga zBFm)DDL&??6g%mnq?t5cT}6|1zp1kqr)iPl5k?vdEH$pGYL^iE%crrCyU;)V!M0Co z_4Tt1L0!+f$J&l8IfPNn4cEFG8;qa-$aS_KW?Xh&$-ebbv@p*{jPOzYw?u%Oo~Wnb zMA;9-T4}wSv6skj1Km2h^?UC4p znyWrn&ym|v$1`|Je6l;vtS#s@>(UPEl760#Nz+WC?rM)4vM^Gp%{6_QH#g=LI{5h4 z!roTcfWSRZ8^k{YA6>39)(9%x3sX8-4Ou2gQ)M+tEs!05Q|51c__D^v zw)-Ig8dES?ni*?s)nK21Fc5fC^golSe5Y28z|1JEs z+jQ}K;ZF4vS?xh5MZH52%$H|F(!E|*)A~Gs>k!Wh;IFA%oc)q`Se7oj-Lz_WW)OY# zW?izYg~{zZ#HIQ$ZtI{a@%J_NBLM?Y8X!JB`E61^4gyR>@Uy^j^ngZ{wakiY?(+?{ zJdYfnn6z$P_CVHVvy~r;)VudGqtZ}mw4>Hiv_>&<}NZPDzTAmTSQX^zzxRjjfd6$R}hMfurncg!bw^%{N#j%S6xXCgPW z&wYe1wg{&@<@AC*b5s($0F;XIR;NkIDlNDmlK$4_Q;$>aWObc3o%Ow<5#Zy&*S~K& zdVf0WVm)_gDPRpctLp!WzasnNciWE$VXrKqU#Fd3+>cMLj5oeHWVoKP*^s9qmb8aH zP#0(lrCkmyl~j^NJzbq!SnRs774T~TN|;K+I+24M*;T#E+;mhUs+woH++}){-==%UDdUmsPtmmj`g5a6)GI`?Jpt^Cz1ZvY9K!zm|Bqph+v)YwJ-4e>{*&lbeev+L2qgah_?~8(Go0DM}sr zq;-t;T zX_*PXNoX;ImH&F}k9f|&SO1s8jJiNigcq`UyJ61j;euef|F6(9s*F8p>0z*m| zlBJ%FVat!!{8{>UM{gTm(79!c)Mnt8zp7+)ePiq!e1b8IAMgGEa>{$nvW zd)%cMs%G3z;xCn3{#@Odt4MIfjs#$KXuHn%r1bQu)bREz(|a$?Y1Ab)JyH#_CROhD z@u>!xi5fPq0TxLugcOp>jx4}9)n0460$%L~9fd*4{lleF8H?%g8TCMjMOj*X_ezq~UBNPW3P z(2UL)^Zz!v z-+1cn<8EF$Rog7eIM!^pOY3oV=hyuFB-=1!_{mParIE;IbnE@!Pqv#zyla!%q=q<5 zg2o7K3Vp!Ab>nZ~ih#bKqj3@mOAE8{{ErE`1|7B9m+2DqUtAimV@h;l!}B<{soIEo zt7VV4+{D>vTx^_r-CJwdX>+yw`I zq2L9MvLMzyH{&vsW*ZIf3=q1W#h@}#8flxyn};<|rQ;ljrE^h-t)7!% zzh)hui^@52KXr~+qe!mo(>@MGxSP7%F*cpE{nD?DzIesFbxTG3 ze)xF{sw&GU8t^4KS~|DKX~AA{8oEW97~~D@OT|mWrTPrk-UG_ZY*APTdsP~<+l6M! zcPV>H0Sd1cp7b&|&O_J63!tII+0`v=^aG)H>X*Hk7PguW?uTuzQz26@@mtZfn=;{j zTe$Zjp`bCrWBzF<4{uPZj_5OM*TMM1_KI)D9&vH+!z~5sRrE~!bXXoU(e-Zv=Rba} zI(U|&#wY@=1lKdUPI_K(DZD|p6Vf}aoLkmqW7~Zt1XEt`i~~f zuPI)cA#5TE?N7!d_f>ADeKo)ImfAzF5L^R4eUce4NThT1)`555(i^C_>#P5}1!yop zIH0C^6>z@G{X8qNM&ZUK3AW2ib4Oby(vLYff*h)I>cPr?m0lht3n%>gp*FR^Lwr%S zB^CE$N{+kQTUuTJYpwrIXqqfXN9Z$49}q1QlLNW3Rut>kv#iT+Q;=vU<3e`Gt<=*X zO6L&Z_Kl1YL&I4y9K7vLCIJD$pg_)%Xk{qWJyxZ;*cY7ZAUGv)Cf@f*V}X$(QB8mh zp=n@~kgWYwhE%Oy0du?QJOjMQNuPay9IZ{R5`BQ;9kOTn17Gp57IO=*dt4GAu{B5C zB*ei2%cGTGMLCQnCbB{?`W&kLbZIS1m?#+*cTPQHM!=d~#S#L1<>D=LCgUVDVUQ-q zk5Fs^8B9FW{jL2Fvm-`b82dn@Yw#i{29(CWlw)sw#h`e7`0>VCg!mKF@Tav@Z)|>M zIkw&We2(0qR$v;Lw4Kv~D{=b%ooRvI)%emQ-_O`@pZt-H5p4k%F(`lLi1n1MgKDUBU6 z7?w-CW`z@mQ;JO_V@JtwT#pmkNgz#!wl;|+5pOQJc7)}cjsyE0*Ork$#1Zzhq zpqYd`CV$!H@YWLKs}HGX_av{sd)OC+)dPFS?l553>KqC8=yt$@ow-dcvaZ8Go1c3lkq2@i&v zS5bSOo{E|=3EU-GYmb1wYh7F&Fl>vTbMj6~kj>6qvU!;BO@bMOQ)h&fC5PFehTfYo-~HGCxorsFSQ6AxcRd=HUkdzKEC14z=yqdKkydTM?+vjpj=Zff!6Q%7wvkyLGp5 zxPNc9%Qq}MFB*0C;_j{6|IYk#WVvIGkB6~6oV5yhB#svU_)$yZrVZaYa)(A@?LlYA z`7y++gM&shE_o^bx2$&6fAb`S7WRxIqSB>Q(i;EqJBW*(-T8^&xIV)UCY}*`rbG!Vh zqt>Xf`?HFdYKup^l;+hwud5AHo4Y+eazk$QorY%i_d}hA=Kh;5x2#n=8v@$SjvN4}-VfD5rAuEbDusJ`s_bP#zdRix=F zE{!e+T~lI+@=E}>>sa;tV}Y@%?|e$475+oKu7tO`Ye+Zjwp8%Qcr~YHr06@+=&eJo z?)S4s$fqaYyV@^q2Z`;&W$Fu_;O{@ka=f!QbiT{2s@gz;gx;c7bsH-@YPg$J`cK>) zQl9*->V3v!P;lJ2d0}x#k!x$s_rqC{;OB!IUuO&d-oFLl%R5YumI|A4R;Yw`HnTBu z;Z#{#%4p-cbozfK=|2!ZCVL$y5Lv#O7t4xewDB3~I|{s>(B0~(NPYvkFX-3aQ?w7S zq$_z+7Ny8M&5HE{FnuGlDvZ$yv z$4v%ZcMN_R32!uwXgutvs!^+gnTVI^BX;x~@rBqWUP1dfoYV{>#1$LA!E%9*7&$~B zr8+Q}O=EO%o?gmxwk(M)<9Y_dHpZgxuVy5yV+@@iuXqs+M1TYL)U_OX8#`oHJq;9e zPfSF?YQtkBHPJwutciC8Vg5*s_o~HF$p3b^Q`c5jOZ=h~CX!mdSd}_aWsIo-;++Dl zWTNjeL`zc*)>_6QViC}-UI{e9<%?Adt!fiVEk{k#^scK000>Np)DxC(@3c{!dpx3Y zfO3{iY!iN!*56sv@YrzNP<#8B_?Bk1T*sl?B~mZ=XR8b5bqi%|rMLHq^vT~IMw;kQ z!djQ#pTb79hNoE{^?YnBGu4{gL!RBZgH&EwX0~~-D_r>9fffOqV>By9r|V0~dQf?* z2;YQJb9&zy?T%AGrKoXArhjuWfm=WT@}F!f3Mumv5#Yjj{qa4$wm%%IJE_;x;zkcj zq5<0qjMz??*Gsk;Pa!PmBV&i11%ij$cReHDeXdvoC#BOf)4Sr%I zb;0w`%q~~x32zyv85XnqO)J)xiN-x5Jm<)zUY+Z|hkrv~O(V?)x*5v@4ll0iu_LV| zi(eu-YxuNejaFpD3=tdV#Ar3f6CO+8wJ=PTEO!Ns4M)AR%AX4a8F9;^GIVryMIQ@i zrqwL>fB5jhW;1)E*F^Wpi~GNh|K4;pd6d{nX6{Xk_~g8-O^<9G*xu>RFDNzRmpR!B9cUXcCX)r++ZEtv+Jlv<6_9FA?t{B+T6 zrr_7{x!}~qj0f~040P>8nD$%#;=Qw3F2#dGdabN?G`8(}WbM>Khr}j&!avQFTEQ{8 z46@SNUP;^B(m4yg`|b)!RE!S#?aBiWJPz~jynB7kALQ1U@lov_te>e|At3_zuh!M9 z_Vq)rwKwW)^VzZON$qdw6>FxC>#kb&NT;U$k)GVnh|3T7wKJWJl2t#`&Zl}=Epj`@{u~}_O>m7~_GC;X{1_s>W)q_hsE4s| zSbnEZd$XC~3tzEpck;LLuiZB@owcq-ik=@2y~<+$A~A1`pBXplc=jEn(#9HuODPIc zO~yOMip>hO#XmK}Ef&rfHT#Zu?Uw7b2v;W$85q9m9*tQ#p(s~xDlu#-Y}s9aPlVs;>b zK`?f@9H&4`FP$(as!uM5)v-s1QdK(pq5PB!;?R1EoBo%so$SrkKX6)1kF;E((d)^g zixuHlg{TfnG zn}3K1kFJd5Q$YhLPz6nTkD;Rem9Kx2t4TQ8_Dnc_U}uV}bz#zoj*c6;bfw5Xp#pXpRq&N@t1P3ya*=mx&Ji!mN z^bc3@v$-!NjAvq?0r8_^Hzd`Yc*QU2vC&QK&vz0(|Bzuvh=fGa=E`|mlM~gdqX(0) ztQ|lWwLF_>lq4BqitsE$en+1PG1w`pkvuHDrzrH)p87j$07Z<7gKYIP2~jeNijM}M z9WEUzEF{8c>y#_TsUb38Bb%4?(q)5by8xK`m>>fcA`3UK_<*0;C;^%E1t%mQESNUf zM9#Sg*!c04IU?}zSV8<3>-dM8eMpoi)2v0pns{j}v2U%h25Etk2s+?M$AphV~H6JOS=p<{a|Q@eD>HUMAR z$hN37UNE)gxExT7ZoD9TX#&Q@lqo!}&FG8-swZSdk)mgyT+FV-uH~4}3 zSKXIi6w|)Iq%>V(Qr&!zM7femr#cpxs2Wsrg>IiN9q7g`7n5IUA~Q^mwW%Xcs0KYq zKRTq5khxAHIUC*l-zC`CnKj6CyJ!gvD5x=K2+S7s?z;47DviwUPfz~aq4`eUzxU!e z58U+M6UIt9rB|rCi10;9^Xq z@ocIHp!^fP?K#Zd)ltLKdENQM7`uH-Xp8VVnmVqMn+$wd$p%G1bzCcr5>?CljHVf* zDbZlCB()QE4KqF<^Te_FB*l8?Ak{iMXz*DSYrLRmrVGEx(HOzqdYs#i-TtPk_0<|K z4{{H~b(S_j;}#N}J$cmpCfMXsfJaRwJazE){Ln)9#r}O!Q7hqJ{mskq8m;@%C4>nh z3@{ZsOLswy#Z@OtUD)54&u8R?;FkEPP8+-@EWkXvK92EPKjo}XC`#{_mrL)B)6+A( z&)*-fhOD|u)Yy6d+vSF?f*DBQZKh{k&FY_w_q;7xV6mxLz9M7(mG4A%#V!h3tz=yp zp)u8F^btdf8pO4i={j9YA8Jw|A!u@7fIB3VYK{g&$qTj7oIo&R1W_SJ7SfdFCCXtQ zUM0)~2UD~tBrZ4(Btrp!>E`pIX^Us^a0Urp`(P@)TIabSY>LI~3PF@lfaBDJI+~t< z52254EDHwew$(JNkcRPqWlqtccvy|xQwb}O+T@hZOd>+Ic(!>?j9v&HWBLAz#~@Ob zIxcN~mMS*M(kVbq=609f`zIV;sqO(HCw!mkG)4&HkPeq9nABSb zRp+}}Vq+bznmI9|t@0L#<;IE1aQtG-Je7~t>{$*|3F+!HspkpS@v{3p{Cv1-p~KIz zjGvvsRJ(HE9J#;7n+$l+$=lV|Z_y3|zR@28^(8pz=Z!_^Bxrs_R_o@{qRZO!xson^ zO3Xw2#_?b8W5l#v*Wl2<`Y`Qbd`v>Omg8=rd^=^0& zY#6W1$@0J?ZAF#|B`2WL^#+4b`l9!~ikdI!f&FHZ6+qVs%(_X<%UBR3z_?zeQhFFa zHIslo3#D7=Ssq@e?ZpyIK z5X5w?Z#H^4>Gp41Y03)C#ON0(1pY8NZHCToud|O(tYobs;I4i2{<-25iHBF@qQbP@qLRYi%9T;> zs%M$y00rq%h1!3UH3IYD%pCnqP_zTd)Tv*}t7=`I2|zZsC-#%RP|n`y6eOzv;~+Lt zLBu=89-jJ(pfTo!=q0uQc{AvrV&gGTqFf{?a*zt(As{0XPyC{xHPhc7rYc)&&3dnt;P1@w|X97t$$wRG$h9 z`6{+u&yia=^LO+!KkJNpAg0*l`uN6EY5m&UM^bmc{O0bs;ahR@OVHcyui;Po`sWi$ z#U4#itM~j8$ushDzbV)Ct>wf$FCkmizQn0BWSm;V>FERAx16iLaKS1f02DoVP@r$* z>S0X;BdPC)jTN>$47;4jp=vx01}7#|_R~Pb0Fh{ih_b%?vC)imD6U~A2OU?zl}psQ zDO2nqlFfoDHr{d8kPCs(6G8t_gr7`gsCBr!41&iESIm@gQwkAy`97pLk0UqYVLoXz z{wpUXm)ZYOYA$NGfQec~hdIYol^GpA?CuZ;aiO5TI`T!cBT6XiD)IX4%wQsS(6BBo z*gJ}oZ%a<^&qlHQpq%8a2+06Ytt*Ga-${)`tWd+Q02;CVI112TxBTg7krcWL)m5yb zMq)lkZq4beI1Tu8G=1c5X$qsY+b*t*hrG%TLmsp!C}Etl9xa)k&0Q9<2x5T8r6?vz zy6YGpD!S0Es#)GGc$NJzc>9Z%sCL`wuZnu~m`P1j@3haKoOqp;IBCF5se4{hKUivC zli$2BaQRi}S5>EYe2Xh`O1HwxE)Sk!+;Q}>W#^UP&GP2LmAO^Bp6(m$)!O=!^kZM1 z(ho4z9OhgLmDUzbnNb&zS@^V?t$S(vlCaXAk}3Q% zWH=Ts|C$k~f=Z1LgwFuU&=nVRXmP&3P?XV7q%(k47YW7zm;kM+==!TEGAt>!K}gew zap%b0*Og%iIm<3_`QhzZHne=*YpnQ6d8aineuy9IgD)8fASoEi93DcoQ>nK+7Xjm$O#yZh>N96hSCz)%o*>l|EU`8A^V)$#DQ)hX zbL8${m0=2lY|xh@Z|RCMfX;^045-MfUeg&fYrIL!xa(ADc^&X=_S!*p#(aQE3(B-{(Ke<1McBnRfX8eSUg+S^o8;b>8h;oSm9w~uu{+dTj_ELa;_Y@{FqHCNkaL~`f1I{urS zo&124lo-UBu~M4o+`nG`OeO5)bH5JoPl?%Fkm<)GhhJ%<>Vg=BM1#Mbg9?s>t?9F# zkR;_ML~7N?%>cerOx6SO8*n>aDdp zfr{gnlzkVqsUk`;#Lq`iQdr1iB#F6K5$2*ipVpzxYj3Nk5XV9l@P&XQmp0KXO~tMX zb4jy>7;)=AK6-yeE>I~FFjiQ#AOQWQ>!VLe_{AT<8Xgov1^ysb z?#R_7H2jH3s7&6f_ZU)!EEnu4!Z%TBn_tws&t#S}8kYWBr=+vRI{(q>>DPeHbL5(p z=3z*$q+#>JttwmuwRK-n-FNP0?WSJiTV)wzPKF*AuVZ~m|xwW8mI z_g6NGF0#cGt#uVF_@-RKvqYmpzhD_jC$lX=kqh!Ra`t{ifegH_nF=anP$)t!EoxI- z&HZJ!e3!z46qEPm7f}ap*o>iDXlH%hSH}2V6$Y6AOn1i6Utb;Nu8BB}NHOu6yR7+& zS=^NwHA;5eH4*(vk_RSSn$@rCJ#-N!Il8pF^uXzR)ODU%HaR57SoGO?vM&QvwfW2| z^X{e;hQDu)E}@PHtSegj2Gv}7V!4^Quk&M(k(>+ zZWJx#BMMropts!aV>ui-n|clk+t;TA>XxT@c|?I&SDL_chAqz(7Sm%@_30j-BllUG z3vyO{;K?m;HjoipUK7RC<#C4njdoMIY(j~Bp;U0UX?r<_JIU|?`}m^9f#<{b#t`v@ zceAg)h7U>OAM=6WxST>Q`A>$<-~aOj^dZV8(9^VQlLu_Snr}{Y~@ZzxOWnM?8`18JkfR0crokPHlbOIH9aKZ`6^|8LMT2|DSocG1r_~Q;QAg zr|qI*pXQhTa10!IyVsTx8+qkZkn;5E)@P5-L3Ss-yQl)zLZ8)@yBYLHDR{f!pOIo+ zKU~o}U9GuN7UCPX`EGuzTWhRC2q&Q)RHT3H~*TSqPuQ7b3GvD;#TV3LlJQ#Bs1QGexNh=#iY% z&mzT!r8+8f%m*Gw(YQWzk|iXJ{0LMeTLJW5Dv*Bc0gMZxxSq2h)6PuHC7&)@*(8-26CT z#COKWD!JP-{{Kk`pXG!(azVbApnTRJX{0;vY`O$&jeKhBsyU>H-OC71{316hGtDw05wGya=MvVrGfwIvNKD}(vnmae%0 zI|L!6qA@Qm1v=O^?`rOIi|&@S+;f%4)thhe`t$mgD@@W;-LoYVE@31%Qvf5!K2U-OcWLXwaFVAMWa=P8_8txOFb=UW5jl!2`@ChBD+V6 z>6@Zf_$)Y@L$KeTdc$ONf{&|e+J-3_HzeBp(n(~No}IyIFd|$%$Xu8FL8X#f7fZf? zaY14IlZs^O-qcDu55}^mfaY~dL7M|~bWz~=E7cR^rlw(_LqUL-QF4V`g+8ZrTnKb} znaa|&)$cZ*iE~ZEMuq6a@T?tMk{B+)iG=_MEp|o@U9?2`FnIfsY`VAy<1|2Tyb3_= zVT@n!+@H5UWPcI(C0XMig!eYg5T}K7h#V1s#=+8a4%(Ts}dMT|d(NR8AkJ$+l*dDJzLdYbgi=V_ND@cCGpYhGbDE|Edvy>|6ZCTNup zr#U~;ErdvRbxIXthd}}gx4ZDsWx(w)R)}PwkU+t3FJPNeU+JFadMS3BBXXNHY8yaR z$rCL^7hXwAu2X0Yct!RB4Cs6hc^*gnr}2R|&YJWq`tK;4;xWw9b;+rE)+c<0($?fSHE;HPLrxV6!(egZ=3xGvsn@+|DRop z(83ShaLw{PlIilW6XsTifJw%pZT8PGFN33dqh3wK40DjzOx1yFfS_hZb>(|jpG=on z6J(Bu6#I~XZrZ;Zf$1o1Gu0>o2@g7%&I(#)OaAiCX)~k|U-RUe8z%QrP=XJgm@KqK z)Wh_eHA_k#a(dv!Tg<|rOp_a98yqKNB557J8kOk#BLNJ%Pxn6cxH1a=6tXVk92tP< zQ=4Ng6Mx#TX?wao=51x@Urul9aClZRL@DfWD7ZeqTq!^;9>m4r<=;Hn{bX#ENy83> zz@XjXW*NowGxr@9-)|0D=KXu%IJrE3zs!&eei6w4i%%2agh|ZCWG;m)Iqw*f{KFl?55sMq)3=3Q0CXpG|65#Y-|G*d?y*WuDX`CmPOA? z-2$N2!zjoAXpsP5Al=0YVFOlhj{G$NqU1=V7GWF+k}PIveiuujypO=R4FHe>-d-88 zjMVaLI1b*Y-XlFD4b^X|@0pgAhymUMe_QV_C(DdYH4;k3k2mVDs(u zH>HmYEOf0c1t*vWM7pRWQWSht?(~RI`^;P;o|CS>)*c z_Yjnw2aSd@(kkK-T9RzSOUJ{Djg(fnik&f`<;7|+3&&q6j|kvbmNVxt*-g}+(^B?>_5Al9wtfj`e@_Fq8iZw!%&m?sg@%m}cKMF=oNW3Vq zXqEl+DqS#gEbEP<*{J->Y~u|LE$gsF@jkY3*bH4m-1cFW7mr7jS>wns%U%FK5&frh8s~#EH>U-}_e?R(D!4_OOJ7$ON ze&GCkvTXxtE#Q?^Wdgb5#XYG~kPF5wMbhttCn` zON_TOWAZK7ACoJJzob@JM(?wd(C}dfy^rz)?i($cV_;k5jreQSXctp4Tf@%x!=qv! zGpJ~=09j25%L?t?T&EJFsZ4m8zQN0Cc*&q<-e|g%xMe%&EVA?*zyzrG(_?8&z)Y1J z@7wb88Aw7@Yj?P$xH1_k4pmZQx$G`RwlJj<>k0`x9wPm13|(v&#cvbC=giUL($>=A z94vO;@px^H0muB_<5gFvv|?=K1-rkT57{o?A;-JeY)|cNAcUpTbGrY&Ia*DY{w{Z8 z%5n4@xiz&Q)*#lm#Q6tS&u0&GFYC2EwWz%{>5`2}8lG2P-@?zAC19~RFO4LA)&8ja z)YJSf?dkFzr!#X9ygfkUR~}TEI|7?cf2A@H9-+?wuSuYLd(423Bvqat_;c6G8bq?M6&9FwnG@8DZ8` z-;+*r?LG1u=Sl$O?6R} zNeB=^fP@l44^=t|O+eI8r39n}0Ra=5bm;=3(rf4)LFv8srqa7gZ-UZAK|v5ZI`NxX zGqcvr{quh0*E`wwynF81XK&S$vbbykLJI=dYt=udjb%DIJV~3^-9q|jlu@RzC;jY+(Q$fSj2nYQ3?eau z7QwDLsFuPhWI+Oo$aCg@j$GDqjIN*Byh8BTJdXjR>xO8i8?_Hq$IxFD%?#+!N9^aUs#tA^FWs@-{Q*24%J7NUs8)6(3o z7G6mN=4_T?vx41vaA0yVEFx^`kz`(BZRSu6#@KbJ+WCsLg4<24LJv!;h;o%=nK7t! z3OUV`rKBLHxLzZ+G0WVt0#nPwFNX$>CDGHeNwXjouPa$ubVrq`lXCeR)qtTz%>dL~ z?Ald1!!~}*PG6Va1?CN_=gg3J)0(Y+ko$=zBXt08EPh*Iu2k7`J~bKB)M9ARZh~<= zYUnu&+MhT$%Ko)ZsJf89GR)R~@PNejSwJ{l@^r3Vr3pWh{`7)4b!-cgd!&*}?>8+t z=>v1rHVzDm7zd~6w>mTbVvjo~&P(nYb>-h)f9fEesVzw7W0@%7ZPeTKlKRERs}#kR1>sSl_H+esT8g# zD;|D3TvSO3^DT^@$y!qBfEYeC1fwDkYexVK-SWJP8Rg%ut#hjb0#0$afsuK)qd4Wr zI2}xh6iexM(cVz;3p2a&3CqwVS-Y%=xGcsHzsBf9yPVt#=pYJ+y=Zg!S~!GQ2@*-C zp%c>PmldjD-x=qA8XcxnnNqm3`VVra&hkj>k(b`q?}G-zVa7hxlXw!uRW($zLvsS4 zJ~*qsKw-h*r1^)uz>6tvLK9OO(Yc6xR5);0_j0Aopa6jR&KoI&e_u_yEk7)0!?_fM z(#O!;i|DRl~|3jUC6L%Sr`yoraGj0cg5sMpyy<@U!Tf5kq!3M`3+!Qc@qf zNavO5)JJeHka3Og_5yYW=u>gi%thjI!yr?wf<$pes_DWL@{4gNVbfz+bFJF1^tqSM zy)sW))BQ`r$e6}1U>vgX>7Ys3m`duan(6162Hy zz@!kJ&!*-m(qZP~JppKI#fj@b$UQWcL^=ara#*9i8wQRbdY4KD*b6{lT}S=K((Jjb zc9oKwWme%WQTlW;*gKEq@0U7P7SEaaOSss`6AT^gGHZN&4YLWg9b)ubgE#b#2Xp;s zhCH6@54Wg^Tg_HFTe~c7y%{YVpJ=m_?=nK4+NM(~e^+r14T>=K832%Zn=+MPLr0G^9V?on&dx-W9w*S-^GnWwFdO)u!?#@)e$E|1&E zVFkn4X_Tpx84;p`xX?~&<+RM7pwI<5%TPQpY=r-EZdKRaDY%&rPxVogO6bhwA1g2B zP4)0>yqLcmtZc_*xS*>kt9t)*vyB!{3Bd2(@r@V1yym*Y?INZ z!aB7A8IiIa4yu@CoIUN7EO;i*c+iBS`M!B8vf1EovU0~g_b&%LsS@>eY5LmO%aWU4 z(mckt5wp3S6XgI z>}8B^lleS*-T9QTNK$&$ShXgm ze#$d=dZR7);O*a9N;87euUfy} zzy9-cll(GPx)vI9L{I`k_fY#r##yxG+GkGZcwQs}j3ssIi#Hj@Fa-ybSs7khJ|N@4 zxPHugaYrfCZHrJP>J~Y~h&_G3R^-jT(C-6qey-PI3DO`}RW?}v1)*wW6YQ5<4tauB zYQtJNjn{!@_|_K-?bhAuSNieOmQRN#o;rMd$&?eaK053=!KY=azw^Ms43I(tMg%9= z0nv7$6%+o_nbg)bo1d&3xk0ZrtvNX)yKmfIEg5+X%ynyCMH_)|Dbh3=Dbsqp@j1oU zgz(Y~n))ik20}Ja#0&X&Q(&R80BCV0SLlQmJ>VC|>8N@$ zw2Y|HkEZ&fGR@7ZGc5`+>YIt|W(! zNVVyY91LHy)M+a22XmG-u(4i(o;E*gEDz~BesAwpSmEBcDa^#Ga=AZHhTiSmp1jV( zC|k`F@ub!2$->GgMdYA(=tyS>sRN>T0;w!0_sm(m^f_wWW@*v6SF>bkev4pJ!#z3u z>B^^-D0#;m<_^E{BgTeOPOlb$0xiZS*P8$P7;L$?^#j)etTluP69lGF`8tvUoOJBe z&BcEFX<}(>9;BVuo-U0;%Rea-ND%d3l3;g97qBQtJ;#7Wi}MD815)EKf`;2Eq6%X~ zj%4JiiWG2Wh*;Tid96?(As5{m=3J#@@rXX?V#k|rvsc=A?{bXZ#`AaMg?h;)1*w;#k=?5jJ3P5W!^-)T;9oB=zed{&1~m;;grpSL5P$t~z1M2GnM7z z18Un>#)aRAch0rWtzth*nasFaSo@uQw6q+>_T>b)q`glRxIAepp;=Kcb~*8Z`g-+; z!Ts5}mH!UG`hG}!DTPQ9=6c($f&u6C`TaR!5wzH8ZK|qOJ+xcHlq_!D?~gCiObxC~ zTPe75%C7mL?2;!21vo|nz`!5TN+(>Jk5HoAcnH9(4w0(J!ncZoZMe&gZBW# zW+KUW1CYZyvw@xDFG-m5v9A2kHL?}=#88-E=$0Hq1jVcf=#mWL*w-yo=5poeG0S0fZD&6M=s0 zP!Lu>q7T)mHHKhQ*os#z%ojs{3&zOc(JkPyg*w>@DqtBYMczI<8R~H81$OU7&QD3R z=E$k}&=a|(dcAW8Amb6zXF5=LZBlR+`)2@*H;u|jnOi_~kn_cI_feu&5rYr6_nzZ_ z!)_1f7CNT3KmN3P~qcbMd2eLMZn$#Hd0UgVuU}|J0KOLZ&fLcgG zV;dZaPEfc$$2HYXUCW7Zi_JJJOng+nd&wt8G{-mF{AatPmB~TBe8Zo|fluYaRDW3m zIsQSe_$teQpU@ujI*%+bW={9nR!KJ#gRd7ZPBS*Ok-9LQv8`$50p*I|--^0paGLAn zy6tl9SM_bzdk=Tj5=oiZg-1;>r|qA3bOrO=ng?n<+AHR5%XE0%T!caAEKk1PH>&>M z$&k{T`2R07K=Tby4; zHq|6rIDKSOWNl5Jvx?qIKGn<6zz>_Wa)i`q4cOzSL^;(@vd_;Xri0Fo{vTNk)PgtU_}-nF@`2041Ygv@KHYQl7YbUJ~H2kk!& zPyc)Cy*zDt$e18_0DE%h;cxls#aW5Oe_5{aqTruc^YPRwCTAX|@(dNkV^mshR8qNU zp6Ja~<0aSSR#qM|0yM?DG9YM{?s`$5AWo`TrO=;9YDvy&)plO$_NZ_tQaEwClB82g za-O$yAv?u>ch*1j!p>n5CngU#g|4(*7xJt>g~#nX=)eRDNh| ztc3uBA{%RbDuPpbie7*+bJ0kTkggfGw5)xTVd7@uk?|MH(toHBF|Nd;^s#3Ov?GN)^dN>gn7DR0!zFW6VVBIAn_IdZp}DuE~+(!lfV&VHbQ_0GsOa>^K-6?jS3+fmNDY#}Nu=l) z(Ee4=AO7$Z61NAOqT)sUALQJABUJ$}Pa~Uw^79;Duvzj@OgNUtoEFlDdBOUWXl#rc zKmqu>5Sn$c?ok@;V}L3Cv(YhJz@2}yK98Ku&yW8+3Xo5dqtT9JzjhHQMX#erhaK+3 z#T5!x1G$ytQIh?4=tC><0twDm!wkGU{459{JvLl201ic@)c@FpU5_>fXb8W>U5cz_ z`lWA?)`^wjU%U%^YPbt}XK|J{*!YRi`K$G3+VTToT_>*FC_SEW@bAG?6<`i^g(HC} zy*&BJl^$Q&&R?Dn&2_LsiO|=rU)yVL)HZH5jwA}Yaa&iIGA-1VJvEDYTzf4TJi%0a zVoGM4PG<7@?T}+d2L}Pt)$D-+MMeo{rd;s?O|>Gym0eL{J`9-8V0R-SjJ%c{d6^jj z(~Y-6=PMJBi&);6|ASnJ#TTT%`vW=hXRu{|8l01f)vOCVED5O9S%rYa1zOq%CIbYa z^TvumxaQuL?U@n>b1gon`f7P_W;rNMk~xpRCjhBV@x>!gPXI$9>HtQ@`P`vPH4_ph&2&NET2&k`#J_FgS@)r_xvJFC6FxY0$z7 zY7uH&c0zoteJ)~3e??S_zG?I_?`oPC58YdFhze>@w4KZnXsqFUG&c8E0cKOz)3>Ql zV(J+U-^nGv&|LD(IqH+q$QHQ&Mo9qGyrIMMUG{BaTpEb9GSf6NkEM%5nHZg%nlLmq^h(@r=mpQ}KLh$s? zMdh@CuLKotDwB&GbB99PB8~VRS-5+&7Kra-=Mvt;=pYE@c8&EXpHv6u?y@QzdA_gA z_$1yHP>?0kvRu3po%xHyE5EGOHq+CBCT|1jud(^xkB*I6C|BYiLfOuPx3$M%= zLReCzV^9}_-VdKi#O+jR*w?SP-9Sxd+Aq!I+KnUYjI1(V5f0)d_N+Iv^<6In+_sBf zXZv;VX`vT?hb`jw>HQB3S6_DAq4xYRY%vZYqIdorK$C3Zp1ytf#-sG_9UJSX&l_&7 z_B$UH5GJ!MbXBx{ZUu7jG7;qiad+(z6Cxj$i>`ALJE$|(Ok@knOA($4G~n2H9abxc znf7k0R>jq;HR8B;{~%|5mE|O?(22vJ%wtG@;PSXZq`lu3nYEDXo8Nb9obb*{7Ss>l&YQOa)_yd?8Mb|M?TJ7aW!{YLdNB8^b4PfjEXT&| z)fe%w^8r(-x?R%pm>xNr#=MW7<{El=g>*Wq`$B&>LvVYUEoZt;LxS#xyY3i|O|*nN z!6aiMK*(ExR{<)L>AGHWndZp6!SM3cx0t|EU03_ttSF9ZNfKIF-+`4dXM?q(w|)FP zX_wG2J)e2qe!?xQ%(#l6Q2ja2)wLB-o!`7JL1yObqgG?RnJd%X`MR;Y zR@5VJM2ql`t@eI2C1$4DmWCwY7raW%du`U^##2c~4Vm~mmkpFVnKOi@EFd$_`taFt zxyzMqSLv!0FWCDFsST@I>Tq0=KHQxy;@681V=~HM>3TxqQEu5lx1aKC#C~#LA+pEpRZ&4%)b`d#Dmi95d53q* zG;sUfF)U6iAv~1}j3ZLc%v!~1hxovBy-Ydk8Q4V&vP*VP{iPyQ@Z*(EUfzJm?2M2Vkcw66eax@@0xTa2(+ zdj3pF|DPrMEVai%;FI1^!53fdue;YiF?jy%rM;@Fs(@Ht4 zBwD)!)R-Ku7_&AIsge$L&Xw@JS#wT^jdIrc?EB^$8 z6*CPtmhYk4*ZfqSmHzG3J&KzW8nB4^&6~Wc!ix&2ba2HBb*q*lSVS5>U8s;#MK&w3 zCRyzQ96xV-e_E2ZEMB?hAEfss?xxBto%M7blwfvAD0`ZKVFIy0Fq@bKS}LI(P6Yuy zDj792CYrGX47`rL1)}2m?18xj5v18D!Ip6QGB@^M;y^9j%RI#KQPpVj{wZrHKxm~6 zDH(pT%B5&OJA-1LYjeuz>~3`hwT zn}RAFmqUs!A%(TMJ13SD-%+WdeqMkXm!~OqPAgvtFn`}aoLA_K4O|W-pToQ=jWPz+ z6H_f97$0eY7%j88s|Z<5ig<;9I5i5S*$*h8^cP7afiT<#8&sW&ni?LLJ?4yo@e(z` zLxO5ftU}f^{~-6tQxz!>_}ZRd6cqplX;j}vhH}zm>wC9J{>pg9y6N8*nQZN$41f){ z``b7Sxdf!AMm7c@=iiQ|e#?8f1&{gkkcU#(?WRFIQCYXbaviUo2`mER~1b{7SV!`k{m&(v4Bk(35G!2LVNVLOi zGB-U}nrp~lR4C|Ljlfkj2FjSGYehq=F)XGh`=UWaJahker&W0W)thnYO1ra;sKX!G zvWq;w&g{;7N{XHvqB{X_fD@okkLU&7Vl74+>(x#?mOVUt52aSfaId2g(A3JH9^&!@hO zpmvt}2RV|Z5Tj-2H$Sm{DK=1BZ(VnDBIufsgPsX60mROky3t>RjHu&GFL{ZtMI4G& zIxamQiB$`QaZfLz6~feMsoFS%X-FYYUVRfo2-HXM#v1n%(w?3mU^K8rMslrJN!IvR%3)ZGKaNj&YzH*%9OPl z$|6fC9}0)W_@H*B=Nt;abgVZS5SmGCMyYr9L}DS9F(}{f@_=o0!Q& zfbH4xcS!)C2;`iSO%?xmu4bQucIXbbsF;!tIs(h)92~w`+N^M)`;%1lp`j)>#!^02 zbE)9F=@W0V5sI2_iHAjUo5)-|EvcNOFyOZlX$Y0TCQ;v zx2XP^-OV>QYP{JRN{Ae$60Xl)%+9WRO9{r`(?sP9jtDPdwb45&&91L~svn@gFj|=jOXD3i&C|8ZRU?v6QCuT9b31fgwB#E{Mx}oIfX<vq$R0m7-<~HtR}z z;ag*eKL#C(ee&+vCSM8WW#eQg&~GQ)v2?KPK#f51zM%wud1eae9Z! zFpZ;P11T?VrZ%2VI)mU75b@lz`CGtUoibDNEBB~dYImg}UcBMJ`61(R@={D`zY-^z zTHUN~ttN4Bl)EoP4zGag?1x_<3sG73qXBvVojx%2lmgCQGq);K6q=(Pse zjuggzmex0Kfmm~naD>DSI{w@Hm8Icmysdvzp)^f~Y%^dJo@r%h^CiTw`Sy36OTvMr zM1j!4@xo<_Gw#r1=QyJ5eHFp5P(bKN3U`)z%v2oFxPtB~LSa3*(~sT$&f1&jPyYSe zfB*h)xThcA?JWpt z=zoXcJ)L|c9`H47Et6i$&k8xC41{yQq+<<<@(%eX#7l+MxI=a#IWmZI$3535wq!xw zy4WG*N_=Y7YqdI4{hNGE3_ItX@j8AyP@r*i#u4gnC<()tLqoL^J;TZUFm5vp)0?9f zS{05SLEQ{JsrP|FfYt-Gv}{^+)WCcgWNN3Kh9=C6s0SQ=a$^tFr%0Ry8LG~>Q-zAX z4TF#A7#Tu~*b_{WlAQQr5Ic)e+7na0v~2m$Vx6JBicZeuAa|_{cF2B)f~VsnYJ$mZ zgx<{CkrggOabDjHNY!7;5K1DBPQq6Baem{gkpE>TMR~lR8~`d9FY0E1d0#{%vwQX}2;6B)FUk!sKp6$r2B_f>Xlg1d#S?5TJr&T4q9wv$FSG}iYk_G1(T^}xH0cbO zKx#lN4tN;0>XGneUMa*$8&ijj`8v$>IY!w3 zn}lJrmH7Sc_awJ;K)r)C z*{qku!DpUBwaNs^sm|C9|9`tG-!iI<7 z6k-5?<^D)G4Ae*c!_XdNq+P;xJa~EEW38pu@rV7z`rBGo_E$$91{wKY`BbjFRN7W8 zu6hT5+A`N}N01zBSO6z}jp6_P%GSJKlHscxLuIuKD4xH+Qnxle8|q$K_0X@Jd5vA2~z zVv6JY*1^ZW(l(Ptsrh8>t$xHYQiC!io{DA}LDVgtt~Ldg?#wyeNGBM7yX-2HF?T&< zH?EUm_5P^$fgV3J%)0hV9$w)%u7RF9z)~#{x|HH&B)stET!`ZE5tjg=W~Om@p+z+L z?FY)L`oifbMpKzt1{^nz2;)y~Df25C2WP$lV;L|*J05U+3f(ws*qy5%TP=IH|ETgf z)Y|>1k*hop4;M`sv;Faf(=fX;5cI=Y6PMYPy8uGqB8t7q;Hq#^T>PPN7+@vSI4->3 zI701n{J{5F2x(%=smn^9IfHgYmRiTv9)e*+voCuoyCV9`NaHE^Lh55flh>89xfhH2 zSw2I-=+FTcW8+!rUC<3CN!1DZug}eOBY2C3H?+;JGjjj?uzFf%FuM;@j7Ctvq(U7t zV0xPB+HfMSblp*REMElOpD6z_;b*4%cer<9?*^h&Gd7wTVr(i7q2QvDtQNtlB8h`| zA#P6*2aJt6K7R8mr4PtM_!uPNtWF$NbFM(&b~t zu4O*XEKo1BP}Hr=C=06e12lS75!%l@H4x(jC&(mU;C2H{%{%*V%Hd^YkVeMwIuDO( z+3};)^(K*+LJytBuE`v;B+4kmYOs}?4f*3+vdP@5rR)Gy$4wI`N7a6vy!tw8cR=tX zdcXP8fKQI*XR9|mcVFu4A_cO_vO4U(2s|ifKfLXF#D=EA72R>3t;?xl!C*PDK{F=d~LMH3&o^{T^QR?fvR)_x}r*&nnoHDF$a-O-I^>Wk_ zZ`?w6XY+R&y&02TF1304Tlypk*s z2j})@@aaPow-jlUt`AZo2eRe-tD-QAGf`^yR-(-%w{eIe9)L^nVAYU1^U}rR=cl8GiU2qD_b&x>{;c?@OL_6 z*DF^LNuM(MI+yrb2eA{A-9@*b45ak8GbVquKYeW~E4+ZF(tg{bBtQ zN<(8Meh`BPRzT2_01;WlW40*S$5C=4a&Bk`kEnmv^urIjdn0}Pw(vCmK`G|%U}F4L z?wr(1Qj3#K9o-^-o;Q`ZpHL=#WeD%xr%1Sj*i9%vxG>(xyU?+p9S*Y48HA6eyaH2M zP@Aw!2QmwqYER0=zQy>@2oq16YLi+nCV@9bU z{$~2Kna(03Aw@1x2M@Itbu1@KFbr*6j&f|xYxoC`_rp_-UoPmD%d1CiA2zbKaCZqz zyDT7A()K^nJ@c0kek2edG1-4&s`|^tkcr{`&Fl%9<1*e+sKl+ltc zTBu_rjmLQ3 zsp2UFxheKKK@JCgCSw)f54B-2Gn&hkiFPW%>gML0WtU$gZAIJp(6$Tw8W1pLwg{G0 zCoL{!(pRWO0>b1WdJ5cev8BJ=u2SBf61btO>CF`DGm}4mzkgKfAITMjv#_#RWTeV! zc$rUYnIjz+VvfU$sLczTD0%?|P0g6fdbO^L{&eG|tY_#}hKB4_H&^JrOn{oVSpVw_ zQ}#J2%nl05?*c2}rs2sWKK7j6o_1(iK2(Y*5iS-9EZb!UU>$uUhCkCSJ!Z1Q*ia4p zX%B*V{7%)edFKgvuyO$OJf065ag{uu4O?`l!i`iRw`J`Q_^)KU?n%?B(OSS7rN6&` zU|M0I5{RF^a=(%TXRenvCtV>7p_6KI8(|B>&_Iw-Gu~TeC$CI)kFq70Go{|mbhhyC z_y`YGDM`>75mU|(%@<)J=*{b}O6uQvT@v(h`rKO=2@`41yFy3Ug|i6VOb>G?1Kc~ue~;O zGzG=o=b5WQrPuZZ3}=SW9+6(|EZ5sVjJ|ke(ZW{G+9G3OLqGu{iArXS%FO&!EI=>T z{!WLjW}QeL1k7nURhuSKpDZduOPz82IT9DCt=Kh9g~+oyn$P`nJ;!mz(NICNqc9pR z(!o|hl3WGdO)1)YeBHJ2#k^Jf(FM6GR#z9vr^~UiKGoSmngG`(qxX@#PFtLX;bc6~ zHy6DShK)+>*2s4kZ4Gfb7Pp^9ZHSC*U>;#%wyon4m+Upt-~ZH(F)$aM>mJJnOt=b( z0Oa7sBVByELi_-CX=%HxK%V#Z*4w7_tR6=Tkcj@mx0))Z6(s_#leMjY6?U1@p>_#N1j)%QE8(3h5*-__Z~XulK#(? zI2O_cQoT~KDc{^Zd{nJ_i1r@IJgLTVJl0RfwN)3+cLD1o8(qcPikXpn{DaT6fI5hwIFNW zktb5ilPqID=g6-LTQ6?kk+y&M8_ocrc&i9fgQp08vAV2aJ<%AtSFxtPxw{sFosZJqcxR#jP=n9udnVnay1#ml z%DwSYd>_X_UdQzM0bb#bw@EiAH*FC|BrePg0BNU?Cek8src7pwLC;oMv|kAeO~=BO zc1JX|6-0uGp;M^|ev-tE_uzcptF%?LVkuWJW^ynYr(w)2UpwTb9jyHp&%Fv>9b`O+ zJW>#~E3oO29zGK_xfB?;lm1)wkW_wl&_s2NskJ;1#Xl#g%+^&- zu_)(!tsSvA6|M#B!R&N1cVB<1Rc62~_{h?{G{fgBP(>fcn{0B+F8X)-?=G$-Gyi* zXl>_TmiwX;g7ngUW4l)0%l@i~u3O=c&o_mqo*&rW-#y;eY6GA7!smcntJ)de1@C@xxy|keC$0qN`VRcYAQ!_`daNez zS;ErT!qLs`p)~PQ#L0*W4rfIwTdX9v8K4jcerKiLl|hIF;O`VoX)}a1zX)T1O{$qq zzm6YaJB{oqz4K90YrHU^`s(zT?ph~;bZ(t%gP?iM^LFfjf}7VAVLaueRx7loFss8SGeEjhNDeJ@3n{}au-*pr%?*}T2HtR>D;)_i+ zuL(_qPbaeD0Ax6X3baNoXRvQE2avx|qO3(TNM$79%VNxD%JLhYPSZyh0X~)&q}!k~ z1z_ozb`HDb;V=sVJQN!GORLT%v~L^&a0eS&+a_>d}Rcr&~FcO@tfwvUE@@(S%2 zfIEcKFBjm@`o`{HHo5-jFrZdS41x+r5=||13gM?Q9dLLPq2)(qsyKkI9(XsJxq%7} zA=B8$OMVeZ0C7HpjMdN#o^kwQ5!6NMzTZE{ z{dL_zq9&hA1KLG{CL%r!dSIV1Uj#EzQ9*9gMGxm%8C~-D-bf?TXyZgqTxs3!>?q*A zkOlm53#L4N6W>2}Jw`0{S&F07-GWb1Dn}*A=B)V3AZh=vvsS?oO%{=a4+gjCFeMpN zpOd8m_!uV~y9CWJPY5Wza3M{l-m({htOqxwUbI|I`lV}WFv1(nVUp2W>5<;dHv3k3 z@yC+m_#~@NsZw*6bQ%L8`x#w8$+T5>QG(2{jw4L=0&LcpY|lo%cY&IHhB zuc<%_O9ykArXlXzk^t^@I3ov)N|oA}`i-0_INAYCw&1uM3(yyBG8c=9iyeZ6qEVbQ z3~V%=2R2Z85NOI>NStvwVJO!*Vp;mvEs`Ps6Fvr^T%De2Q9#{Gc&xBHvW-PRrtcr* zLTwVhnyD2m12G|!>UcODmW5=LrxFZfG0^~sz@Rr-AON}at;!Ja}+wM(6VMH_j4uuo)0kbW<_!G6k+s(Uj3~sv0gq2BE$AA zt3;1q0c-bsetz*-*o?M-<_i0Y^f+#2X}`_WyAX~Zm+vpeyuA7fxzPYQrZsU zz#Jjg96wx6^XDhv*qkgFm`St04=st-@VvR0Pfy)7*rG5QQL!ntd`{@7ZateAG zj7AsM`+&T;zs9D_)=OkN@0UGe*nY~SRfM&?pEKv>Y*33idZ8h0YUrIe*SUEeI}%wp zmz;Oxw=O6`GvP*J6y^>sm&9DKFg8iSf_i*hhNgps?%zY*W;=$0&uua z=YF+xs#e1vkI-1IU3X&Yc-UApoDLMNv!RX_kU)pF52*QkNdlPenqHX%+`+Lr|Ci-1 z>T5Df3hbfQ81#WaFs61UhQF;qe=T>3hCaH|YWwB7Ifq5nEtmEWZ`ehbK$Xcv$<&A8 z8(JL!s`df{U{sf0YT+04OlbF9$$9-U0@Ws@4+8TrcAy-F+H;Qa}T z&^`Uj6#?<8;4A)mKTp~h1#0r6j;pr6L-kRs4RLAp3NM0L5`OpzTQ%CY3qpXo@YI%+ zr0$&Wr1a>VGMt;;O-}aAYf^fQS)b>yvo1SVor#83dmuuJlWjRIs z5R!xV##XX0glA07i6hB_ao}KxLJ%Fo>|UhBoQcJuHa)0Clj+1h>9Uq5#4X3k&g}?& zyOi){xXW5&Ac$1vf~z; zbjjjLADftUlhW^%FrceM8?)L8YpLr+0^-$jyw-rfPJ`NGa@Ek~+~)U? zB$@mV9*?R%KAu=q^a+XCg-1_4($twh=e|`xed~j3F$X)HoncJX>v;ss5fo+dS+=ox zsstef0f;CuNV?&U41wchl0M@nwcYjB^Q@31aRyp!rDsUb?8%=pcG|H+CEl!X3gx6CS3thp6=5#gJ<;LNb>tJ#2VbfVtPMJ8q zv>^vLV%4p1uEF8(V@LbAY#q*$#g49p|2?v6#okRwinVKN>k&O{` zz}6HxySu-f3mzCBUYm{~X+6q8$unPUilVtG_NCEz>Sp7{Sh!~N4LbL<*p`%i6Im^9 z$hAm*gSLyBi;NM}^QOCR5m`N9Q|x%O|6XVA8inl!&n%tcl91E>+95zBu>XUco0=Jg zNHWP%`jh94Bj6VF5>h67$Yf-HkRm~gxx_aF^zo^bQ`JEACejn$5EV-eE6m zr1AysJ{EUNFVQI){K?~elV6b!P1wTp_zDY|ExZ#mq^Ok}8gr=huDaNyYsPX(H}-P>)K)pTTE?q zx!M;v?NOk&dGN?t$E?(@=vWZJU0VEB`ALFgyG1#kE$brtd4{a!bAoG-J)_&fcyPra zCbl&u{=hIvr3RCuflj`fEIX=~+u2$hsLfg&>|LQ{&b{3huoBrhS6zLkm-@84Zm;}J zo0eI2E9t^u_u(c_@ipbqTNo-C1f^p5^}{^ z%c1tKCF@rWn-rgFhEqj-1IaC#J6zhrblr}4VG$?DJBI2LRoeB^$*0SJ4PVpvGRe)Fp5a4{8Wl^rJ^JPs>!Uz zUuLJr5-qVAKD9Ets%M)ZVy6rBRok`e)(y{yk7?Esa4d;!|Gnc7?nk01k`xb(Tv=mO z!@XuG^ANvqVLDKGSV55HvY|59XXdxxRp#%#_fRzPyvNsMDSGk_`sGVUcdhAQRzTk2 z!u6}{Zum`w|6PFnKjIn$0_ZJZyn`p5#!w9$2T1s=H)8|X>Qj$Kjq^qYvFLx}<@L7B z{y6&}&n*mcBR?MKc3p&%b@T&wsY&WkkaGutM%eWGmQ5m#Ge6k;*6|y0s)hI6a3YAdnSlD4tLUPZM-t9>mA zlAxAqht4~LL2Waywz^Df+N1N~d^*4L<$QfUU-$Jq&;7ga|CJGUrn`%i<&CMB-3prw zx2v^+(J^$%Hw}pgnMYN+5p#&rULV)%l)@<1L-(&jG20NI*o~b!5-uruF($q;ZJ|u& z0byar!)r11Wt8ppNkUIa@DG=Jjot$v5GZE%YXUd}2n=(UR;Nz=L&|QdH!HfF(4k#= z-``LbstUrox0Gxb$(`0uXav-saY$Z5NhGSr;w%F@(r%XmfSfFFa=sXo8t#IL~^ zqVjyK3%aCim&Ev?9D5cVdKKhx7-s2Yh1x5wHkULfwmBb}-zpeKks;L6=M_2t!@MqO zmgKP6t!w;^$F@7!vt0u_+M=-MuXCQX5S7~HLFj;N%j3pQ#9oZMjTRi?Jw)1PxIS{X zwuIfni4y=L+sEwfBFPjP={9;{aG6N;7wczu#&YK8fOr1q^3je+&k5o0(d_Q!ik`X_;U*;~p$J^bya6miU6) z^vc=x%Gz*sS>7f6O%b~-d2S;N^?&K@hXkdn-HthZl+)7aS?rRUKcb;5DQWDFXNuE1 zTH;et_Qjlx#kt(YE^qDQhl$swPAL6Uvf`s6B(oR~Y-q+OA2*-gd8sMsF;jfKzj?N% zD-8a3Y7H;$u~vh5Hb?HSmuDwrM~bZ+R3qXh$S0qqW#Ieo_o2;8dv}Nt$4P(1tz^!@ zT=W3y%a2M`;8hHOE+~3EP(N?AG$P8wwR!8G7e`)anA714fsOsCQUurKeDg zTI!fC$C@}Vu6E~GPYCe|M#ok}D!4Nc85c3&(hne~PRHaw3pkbI}+~HAushBsMJ=`B+ z$smsiV$G?tMm({?q+jxv^qJabgKFFEOc$cBt1kban8NQ^4KPARywD zjDeH2_Q^T=^lREFh= zTZ;{aqF$_a#=q%yU<4VN$0x~SY}XYO^D zIVyQW6tC-UU;c`H))5`)GMMa%>6XZq9J_f_-eSY*sDaqtF!$!#KAt12fBIY~!!u8+ zgAUMh!YFY8A-Gq%_fB|(qgNNDrK_fdCG9^X_XYdnV4C_RVIRwiCRQ0V5jXSvnUH>9 z31#N{3&qbAQfvEBvZbLxhS)!q z-YdVs^8m0qptrJ@atSmD7{m`RFj^dSV~4Vq4pMG?+VS_JFbmdfoQ2E>-cCR> z>eE_(Pe{`BV{Ik>y6QY#kq>$xD=P&y(ms!RM6NzATM4YE9EyMIWL?j$g20xZK-Zx8 zRjvxn6z*3?CUw_69CvF};S0}=N%5ozE3D~v|5(oxEg`J7e=3fT+qSq;ff~{1`M_@o zRevB`GO2PSkcopdW}g5B3lk=5!3*ig_$Ho-{ia&TM}s!g;l>-}0blzpZ4`3N5z~_k zzEdG~o%5$Ic;QW(Vns~9u*c`3_iTP#5C8GrQ$Zla3yBbuvy$TN*V%%vI{al5_QIDn z(Q7@zx?NwVzN^)po>tja#<}xQ`nS@7_&%_b1iAU=&gRQ`P{>$~ye?FKqI#1>BoPq3SB)Lj{dQm=zTW2KTM)(?D z*Ef5YcKTP7S(7#AHdEv{o0wWTtD#mlLAyD$WnJqA=I0%S#>P9WQ%mXO)0zJI#fF)K zL^_R}#*g`0#9Lwg<#0z!gOwuVtP$B*hW8B@8c9zu z@J+sG(Uai~VbyX}7t@jhLjOU1eGk|N8wQIP5{|ZP5d1TLMLp3v1MAI6IwNX*ySaz_ zJ0<(RgN2WFW@VMZaTVV}{&HN<++h4)3q#X1p~hrsQg)s^CaSRfZa`Egspi8>`(o{7 zbiGUUV)z>=oql*hT~#tWML|=SMfy!m8rSn)*|Wb%o}k9cGd=6!HUTkN&_u3E7tk6c znq^SZKxEY5v}a#S%xMXhO;1WScd39T-J}6WpK`YoDF?U-1cggMP-PWPU31f`V)cWYq*OB3S3M zSS;XU;}N1waN3QBQ^36YL&kicm8A;r8or^40!`w^AdttE0X8=WrACsDkkQdC?HszS zheg{y(sMl2`hcliEFqeMsW;UT?=Fz)$ASBcYtrAGO}vgm^!n-+F@8#lENp>~+K? z%_w^Ee`^XJ_Px=AN1kt!xtopO>3vy$wf<9)N)DuQpz!*YX^-^!jk=kO#=$a#2XLI` zpB2jKHVq(lW#h9MKcv7VY$C6EUL6EYw1qxr4;9 zBcNqALxyn3HE&ZzJc-&jE?F!2uiMZ;XOD;ztQBejcr`^;Kan&hxsOy{+0%@PbpH$x zpsKyyOq~dxx5I3Wez@EP>@Q$@eenY1jB|y{sN*xHR!lO&`}2~V*`zYOZ-y< zJHd6Ha8>sbI&+tG?o`9`Lz>2WNdfl2dueaim5qV%h0G@3z|!rDyO<&vQxNorF}d3$keC#5XtjQMnLXVy{;Z|N5L#Pf zlc1iK3I$XDfOOvAXzZl6zh05MHX$ZuAr1WNM*$KrL;gb#7D%q zHLk6(#0)g@;K$14Q^WVcG7{^NyLLLrSpVp7_HOqyMlg2NScx=&*J!`GDmaXaIW`o9 zRRi@Go1F5uQDi{9HlmcGx1h!!`s!40i<0DBucAi5ze$hH>f_yUq_Tg!%Ew2{Uw$=?mhZCUV zsEhOw%~`)o^0;p~uKCVt=I}DLSjB4FA~d`rfnrw0p{c}L3h5J666d;3V}X(({gUJz z-_#>UsFOb=hj3ZdWXQh^&XqPdsYcdGgYoVXc5MHbmqGI01^ifjF(x!1Lnk(==co^*v@VdL5{+1Ww zn;EE{#!IfPfho#+d&>)zt4$RcMGT>Gf1~-;+itJ#h>SpEz^?tDMStqvq^QxURBuee b+aryhC; + +import OpenAI, { toFile } from 'openai'; +import fetch from 'node-fetch'; +import { File as FormDataFile, Blob as FormDataBlob } from 'formdata-node'; +import * as fs from 'fs'; + +async function typeTests() { + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await openai.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await openai.audio.transcriptions.create({ file: null, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await openai.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); +} + +const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; +const filename = 'sample-1.mp3'; + +const correctAnswer = + 'It was anxious to find him no one that expectation of a man who were giving his father enjoyment. But he was avoided in sight in the minister to which indeed,'; +const model = 'whisper-1'; + +const client = new OpenAI(); + +it('handles formdata-node File', async function () { + const file = await fetch(url) + .then((x) => x.arrayBuffer()) + .then((x) => new FormDataFile([x], filename)); + + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toEqual(correctAnswer); +}); + +if (typeof File !== 'undefined') { + it('handles builtinFile', async function () { + const file = await fetch(url) + .then((x) => x.arrayBuffer()) + .then((x) => new File([x], filename)); + + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toEqual(correctAnswer); + }); +} + +it('handles Response', async function () { + const file = await fetch(url); + + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toEqual(correctAnswer); +}); + +it('handles fs.ReadStream', async function () { + const result = await client.audio.transcriptions.create({ + file: fs.createReadStream('sample1.mp3'), + model, + }); + expect(result.text).toEqual(correctAnswer); +}); + +const fineTune = `{"prompt": "", "completion": ""}`; + +describe('toFile', () => { + it('handles form-data Blob', async function () { + const result = await client.files.create({ + file: await toFile(new FormDataBlob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + if (typeof Blob !== 'undefined') { + it('handles builtin Blob', async function () { + const result = await client.files.create({ + file: await toFile(new Blob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + } + it('handles Uint8Array', async function () { + const result = await client.files.create({ + file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles ArrayBuffer', async function () { + const result = await client.files.create({ + file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles ArrayBuffer', async function () { + const result = await client.files.create({ + file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); +}); diff --git a/ecosystem-tests/node-ts-esm/tsconfig.json b/ecosystem-tests/node-ts-esm/tsconfig.json new file mode 100644 index 000000000..de2268490 --- /dev/null +++ b/ecosystem-tests/node-ts-esm/tsconfig.json @@ -0,0 +1,54 @@ +{ + "exclude": ["node_modules"], + + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ + /* Projects */ + "incremental": true, + + /* Language and Environment */ + "target": "ES2022", + "lib": ["ES2022"], + "jsx": "react", + + /* Modules */ + "module": "ESNext", + "rootDir": "./", + "moduleResolution": "NodeNext", + "baseUrl": "./", + "paths": { + "~/*": ["*"] + }, + "resolveJsonModule": true, + "composite": true, + + /* Emit */ + "outDir": "node_modules", + "noEmit": true, + + /* Interop Constraints */ + "isolatedModules": true, + "allowSyntheticDefaultImports": true, + /* "esModuleInterop": true, */ + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "checkJs": true, + + /* Experimental Features */ + "experimentalDecorators": true, + + /* Type Checking */ + "strict": true, + "noImplicitAny": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "strictBindCallApply": true, + "strictPropertyInitialization": true, + "noImplicitThis": true, + "alwaysStrict": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + "noPropertyAccessFromIndexSignature": true, + "skipLibCheck": true + } +} diff --git a/ecosystem-tests/node-ts-esm/yarn.lock b/ecosystem-tests/node-ts-esm/yarn.lock new file mode 100644 index 000000000..b1147c351 --- /dev/null +++ b/ecosystem-tests/node-ts-esm/yarn.lock @@ -0,0 +1,156 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@cspotcode/source-map-support@^0.8.0": + version "0.8.1" + resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" + integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== + dependencies: + "@jridgewell/trace-mapping" "0.3.9" + +"@jridgewell/resolve-uri@^3.0.3": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" + integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + +"@jridgewell/trace-mapping@0.3.9": + version "0.3.9" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" + integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== + dependencies: + "@jridgewell/resolve-uri" "^3.0.3" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@tsconfig/node10@^1.0.7": + version "1.0.9" + resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2" + integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== + +"@tsconfig/node12@^1.0.7": + version "1.0.11" + resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" + integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== + +"@tsconfig/node14@^1.0.0": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" + integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== + +"@tsconfig/node16@^1.0.2": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" + integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== + +"@types/node@^20.3.1": + version "20.3.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.3.1.tgz#e8a83f1aa8b649377bb1fb5d7bac5cb90e784dfe" + integrity sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg== + +acorn-walk@^8.1.1: + version "8.2.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" + integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== + +acorn@^8.4.1: + version "8.9.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.9.0.tgz#78a16e3b2bcc198c10822786fa6679e245db5b59" + integrity sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ== + +arg@^4.1.0: + version "4.1.3" + resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== + +create-require@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" + integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== + +data-uri-to-buffer@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz#d8feb2b2881e6a4f58c2e08acfd0e2834e26222e" + integrity sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A== + +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + +fetch-blob@^3.1.2, fetch-blob@^3.1.4: + version "3.2.0" + resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" + integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== + dependencies: + node-domexception "^1.0.0" + web-streams-polyfill "^3.0.3" + +formdata-polyfill@^4.0.10: + version "4.0.10" + resolved "https://registry.yarnpkg.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" + integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== + dependencies: + fetch-blob "^3.1.2" + +make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +node-domexception@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + +node-fetch@^3.0.0: + version "3.3.1" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.3.1.tgz#b3eea7b54b3a48020e46f4f88b9c5a7430d20b2e" + integrity sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow== + dependencies: + data-uri-to-buffer "^4.0.0" + fetch-blob "^3.1.4" + formdata-polyfill "^4.0.10" + +ts-node@^10.9.1: + version "10.9.1" + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" + integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== + dependencies: + "@cspotcode/source-map-support" "^0.8.0" + "@tsconfig/node10" "^1.0.7" + "@tsconfig/node12" "^1.0.7" + "@tsconfig/node14" "^1.0.0" + "@tsconfig/node16" "^1.0.2" + acorn "^8.4.1" + acorn-walk "^8.1.1" + arg "^4.1.0" + create-require "^1.1.0" + diff "^4.0.1" + make-error "^1.1.1" + v8-compile-cache-lib "^3.0.1" + yn "3.1.1" + +typescript@^5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.3.tgz#8d84219244a6b40b6fb2b33cc1c062f715b9e826" + integrity sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw== + +v8-compile-cache-lib@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" + integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== + +web-streams-polyfill@^3.0.3: + version "3.2.1" + resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6" + integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q== + +yn@3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== diff --git a/ecosystem-tests/ts-browser-webpack/.babelrc b/ecosystem-tests/ts-browser-webpack/.babelrc new file mode 100644 index 000000000..c13c5f627 --- /dev/null +++ b/ecosystem-tests/ts-browser-webpack/.babelrc @@ -0,0 +1,3 @@ +{ + "presets": ["es2015"] +} diff --git a/ecosystem-tests/ts-browser-webpack/.gitignore b/ecosystem-tests/ts-browser-webpack/.gitignore new file mode 100644 index 000000000..8225baa4a --- /dev/null +++ b/ecosystem-tests/ts-browser-webpack/.gitignore @@ -0,0 +1,2 @@ +/node_modules +/dist diff --git a/ecosystem-tests/ts-browser-webpack/package.json b/ecosystem-tests/ts-browser-webpack/package.json new file mode 100644 index 000000000..53f1427f2 --- /dev/null +++ b/ecosystem-tests/ts-browser-webpack/package.json @@ -0,0 +1,23 @@ +{ + "name": "ts-browser-webpack", + "version": "0.0.1", + "private": true, + "description": "ts-browser-webpack", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "serve": "webpack-cli serve --mode development", + "build": "webpack" + }, + "devDependencies": { + "babel-core": "^6.26.3", + "babel-loader": "^9.1.2", + "babel-preset-es2015": "^6.24.1", + "force": "^0.0.3", + "html-webpack-plugin": "^5.5.3", + "ts-loader": "^9.4.3", + "typescript": "^5.0.4", + "webpack": "^5.87.0", + "webpack-cli": "^5.0.2", + "webpack-dev-server": "^4.15.1" + } +} diff --git a/ecosystem-tests/ts-browser-webpack/public/index.html b/ecosystem-tests/ts-browser-webpack/public/index.html new file mode 100644 index 000000000..761df0fc6 --- /dev/null +++ b/ecosystem-tests/ts-browser-webpack/public/index.html @@ -0,0 +1,10 @@ + + + + + Package in the Browser + + + + + diff --git a/ecosystem-tests/ts-browser-webpack/src/index.ts b/ecosystem-tests/ts-browser-webpack/src/index.ts new file mode 100644 index 000000000..f3434f82b --- /dev/null +++ b/ecosystem-tests/ts-browser-webpack/src/index.ts @@ -0,0 +1,32 @@ +import OpenAI from 'openai'; + +// smoke test that importing and constructing the client works +const openai = new OpenAI({ apiKey: '' }); +console.log(openai); + +// smoke test that making an API request works, even if it errors +openai.completions + .create({ + prompt: 'Say this is a test', + model: 'text-davinci-003', + }) + .catch((err) => console.error(err)); + + +// -------- +class Greeter { + greeting: string; + constructor(message: string) { + this.greeting = message; + } + greet(): string { + return `Hello, ${this.greeting}`; + } +} + +const greeter = new Greeter('world'); + +const button = document.getElementById('myButton')!; +button.onclick = () => { + alert(greeter.greet()); +}; diff --git a/ecosystem-tests/ts-browser-webpack/tsconfig.json b/ecosystem-tests/ts-browser-webpack/tsconfig.json new file mode 100644 index 000000000..c0750de5b --- /dev/null +++ b/ecosystem-tests/ts-browser-webpack/tsconfig.json @@ -0,0 +1,21 @@ +{ + "compilerOptions": { + "module": "commonjs", + "strict": true, + "noImplicitReturns": true, + "removeComments": true, + "preserveConstEnums": true, + "sourceMap": true, + "declaration": true, + "target": "es2015", + "lib": ["es2017", "dom"], + "outDir": "dist", + "rootDir": "./", + "baseUrl": ".", + "paths": { + "*": ["types/*"] + } + }, + "include": ["src/**/*"], + "exclude": ["node_modules/*"] +} diff --git a/ecosystem-tests/ts-browser-webpack/webpack.config.js b/ecosystem-tests/ts-browser-webpack/webpack.config.js new file mode 100644 index 000000000..50448f041 --- /dev/null +++ b/ecosystem-tests/ts-browser-webpack/webpack.config.js @@ -0,0 +1,43 @@ +const path = require('path'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); + +const publicPath = path.resolve(__dirname, 'public'); +const srcPath = path.resolve(__dirname, 'src'); +const buildPath = path.resolve(__dirname, 'dist'); + +module.exports = { + entry: path.join(srcPath, 'index.ts'), + + output: { + path: buildPath, + filename: 'bundle.js', + }, + + module: { + rules: [ + { + test: /\.js$/, + exclude: /node_modules/, + loader: 'babel-loader', + }, + { + test: /\.ts$/, + exclude: /node_modules/, + loader: 'ts-loader', + }, + ], + }, + + resolve: { + extensions: ['*', '.js', '.ts'], + }, + + devtool: 'inline-source-map', + + plugins: [ + new HtmlWebpackPlugin({ + template: path.join(publicPath, 'index.html'), + filename: 'index.html', + }), + ], +}; diff --git a/ecosystem-tests/ts-browser-webpack/yarn.lock b/ecosystem-tests/ts-browser-webpack/yarn.lock new file mode 100644 index 000000000..1fd11fa6a --- /dev/null +++ b/ecosystem-tests/ts-browser-webpack/yarn.lock @@ -0,0 +1,3503 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@discoveryjs/json-ext@^0.5.0": + version "0.5.7" + resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" + integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw== + +"@jridgewell/gen-mapping@^0.3.0": + version "0.3.3" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" + integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/resolve-uri@3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + +"@jridgewell/source-map@^0.3.3": + version "0.3.3" + resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.3.tgz#8108265659d4c33e72ffe14e33d6cc5eb59f2fda" + integrity sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg== + dependencies: + "@jridgewell/gen-mapping" "^0.3.0" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/sourcemap-codec@1.4.14": + version "1.4.14" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + +"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.18" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" + integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== + dependencies: + "@jridgewell/resolve-uri" "3.1.0" + "@jridgewell/sourcemap-codec" "1.4.14" + +"@leichtgewicht/ip-codec@^2.0.1": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz#b2ac626d6cb9c8718ab459166d4bb405b8ffa78b" + integrity sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A== + +"@types/body-parser@*": + version "1.19.2" + resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.2.tgz#aea2059e28b7658639081347ac4fab3de166e6f0" + integrity sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g== + dependencies: + "@types/connect" "*" + "@types/node" "*" + +"@types/bonjour@^3.5.9": + version "3.5.10" + resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.10.tgz#0f6aadfe00ea414edc86f5d106357cda9701e275" + integrity sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw== + dependencies: + "@types/node" "*" + +"@types/connect-history-api-fallback@^1.3.5": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz#9fd20b3974bdc2bcd4ac6567e2e0f6885cb2cf41" + integrity sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig== + dependencies: + "@types/express-serve-static-core" "*" + "@types/node" "*" + +"@types/connect@*": + version "3.4.35" + resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" + integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== + dependencies: + "@types/node" "*" + +"@types/eslint-scope@^3.7.3": + version "3.7.4" + resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.4.tgz#37fc1223f0786c39627068a12e94d6e6fc61de16" + integrity sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA== + dependencies: + "@types/eslint" "*" + "@types/estree" "*" + +"@types/eslint@*": + version "8.40.2" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.40.2.tgz#2833bc112d809677864a4b0e7d1de4f04d7dac2d" + integrity sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ== + dependencies: + "@types/estree" "*" + "@types/json-schema" "*" + +"@types/estree@*", "@types/estree@^1.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.1.tgz#aa22750962f3bf0e79d753d3cc067f010c95f194" + integrity sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA== + +"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.33": + version "4.17.35" + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz#c95dd4424f0d32e525d23812aa8ab8e4d3906c4f" + integrity sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg== + dependencies: + "@types/node" "*" + "@types/qs" "*" + "@types/range-parser" "*" + "@types/send" "*" + +"@types/express@*", "@types/express@^4.17.13": + version "4.17.17" + resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.17.tgz#01d5437f6ef9cfa8668e616e13c2f2ac9a491ae4" + integrity sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q== + dependencies: + "@types/body-parser" "*" + "@types/express-serve-static-core" "^4.17.33" + "@types/qs" "*" + "@types/serve-static" "*" + +"@types/html-minifier-terser@^6.0.0": + version "6.1.0" + resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#4fc33a00c1d0c16987b1a20cf92d20614c55ac35" + integrity sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg== + +"@types/http-proxy@^1.17.8": + version "1.17.11" + resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.11.tgz#0ca21949a5588d55ac2b659b69035c84bd5da293" + integrity sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA== + dependencies: + "@types/node" "*" + +"@types/json-schema@*", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": + version "7.0.12" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb" + integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA== + +"@types/mime@*": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.1.tgz#5f8f2bca0a5863cb69bc0b0acd88c96cb1d4ae10" + integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA== + +"@types/mime@^1": + version "1.3.2" + resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a" + integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw== + +"@types/node-fetch@^2.6.4": + version "2.6.4" + resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.4.tgz#1bc3a26de814f6bf466b25aeb1473fa1afe6a660" + integrity sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg== + dependencies: + "@types/node" "*" + form-data "^3.0.0" + +"@types/node@*": + version "20.3.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.3.1.tgz#e8a83f1aa8b649377bb1fb5d7bac5cb90e784dfe" + integrity sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg== + +"@types/node@^18.11.18": + version "18.16.18" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.18.tgz#85da09bafb66d4bc14f7c899185336d0c1736390" + integrity sha512-/aNaQZD0+iSBAGnvvN2Cx92HqE5sZCPZtx2TsK+4nvV23fFe09jVDvpArXr2j9DnYlzuU9WuoykDDc6wqvpNcw== + +"@types/qs@*", "@types/qs@^6.9.7": + version "6.9.7" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" + integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== + +"@types/range-parser@*": + version "1.2.4" + resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc" + integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw== + +"@types/retry@0.12.0": + version "0.12.0" + resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.0.tgz#2b35eccfcee7d38cd72ad99232fbd58bffb3c84d" + integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA== + +"@types/send@*": + version "0.17.1" + resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.1.tgz#ed4932b8a2a805f1fe362a70f4e62d0ac994e301" + integrity sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q== + dependencies: + "@types/mime" "^1" + "@types/node" "*" + +"@types/serve-index@^1.9.1": + version "1.9.1" + resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.1.tgz#1b5e85370a192c01ec6cec4735cf2917337a6278" + integrity sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg== + dependencies: + "@types/express" "*" + +"@types/serve-static@*", "@types/serve-static@^1.13.10": + version "1.15.1" + resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.1.tgz#86b1753f0be4f9a1bee68d459fcda5be4ea52b5d" + integrity sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ== + dependencies: + "@types/mime" "*" + "@types/node" "*" + +"@types/sockjs@^0.3.33": + version "0.3.33" + resolved "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.33.tgz#570d3a0b99ac995360e3136fd6045113b1bd236f" + integrity sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw== + dependencies: + "@types/node" "*" + +"@types/ws@^8.5.5": + version "8.5.5" + resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.5.tgz#af587964aa06682702ee6dcbc7be41a80e4b28eb" + integrity sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg== + dependencies: + "@types/node" "*" + +"@webassemblyjs/ast@1.11.6", "@webassemblyjs/ast@^1.11.5": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.6.tgz#db046555d3c413f8966ca50a95176a0e2c642e24" + integrity sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q== + dependencies: + "@webassemblyjs/helper-numbers" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + +"@webassemblyjs/floating-point-hex-parser@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz#dacbcb95aff135c8260f77fa3b4c5fea600a6431" + integrity sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw== + +"@webassemblyjs/helper-api-error@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz#6132f68c4acd59dcd141c44b18cbebbd9f2fa768" + integrity sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q== + +"@webassemblyjs/helper-buffer@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz#b66d73c43e296fd5e88006f18524feb0f2c7c093" + integrity sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA== + +"@webassemblyjs/helper-numbers@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz#cbce5e7e0c1bd32cf4905ae444ef64cea919f1b5" + integrity sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g== + dependencies: + "@webassemblyjs/floating-point-hex-parser" "1.11.6" + "@webassemblyjs/helper-api-error" "1.11.6" + "@xtuc/long" "4.2.2" + +"@webassemblyjs/helper-wasm-bytecode@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz#bb2ebdb3b83aa26d9baad4c46d4315283acd51e9" + integrity sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA== + +"@webassemblyjs/helper-wasm-section@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz#ff97f3863c55ee7f580fd5c41a381e9def4aa577" + integrity sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g== + dependencies: + "@webassemblyjs/ast" "1.11.6" + "@webassemblyjs/helper-buffer" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/wasm-gen" "1.11.6" + +"@webassemblyjs/ieee754@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz#bb665c91d0b14fffceb0e38298c329af043c6e3a" + integrity sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg== + dependencies: + "@xtuc/ieee754" "^1.2.0" + +"@webassemblyjs/leb128@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.6.tgz#70e60e5e82f9ac81118bc25381a0b283893240d7" + integrity sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ== + dependencies: + "@xtuc/long" "4.2.2" + +"@webassemblyjs/utf8@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.6.tgz#90f8bc34c561595fe156603be7253cdbcd0fab5a" + integrity sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA== + +"@webassemblyjs/wasm-edit@^1.11.5": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz#c72fa8220524c9b416249f3d94c2958dfe70ceab" + integrity sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw== + dependencies: + "@webassemblyjs/ast" "1.11.6" + "@webassemblyjs/helper-buffer" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/helper-wasm-section" "1.11.6" + "@webassemblyjs/wasm-gen" "1.11.6" + "@webassemblyjs/wasm-opt" "1.11.6" + "@webassemblyjs/wasm-parser" "1.11.6" + "@webassemblyjs/wast-printer" "1.11.6" + +"@webassemblyjs/wasm-gen@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz#fb5283e0e8b4551cc4e9c3c0d7184a65faf7c268" + integrity sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA== + dependencies: + "@webassemblyjs/ast" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/ieee754" "1.11.6" + "@webassemblyjs/leb128" "1.11.6" + "@webassemblyjs/utf8" "1.11.6" + +"@webassemblyjs/wasm-opt@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz#d9a22d651248422ca498b09aa3232a81041487c2" + integrity sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g== + dependencies: + "@webassemblyjs/ast" "1.11.6" + "@webassemblyjs/helper-buffer" "1.11.6" + "@webassemblyjs/wasm-gen" "1.11.6" + "@webassemblyjs/wasm-parser" "1.11.6" + +"@webassemblyjs/wasm-parser@1.11.6", "@webassemblyjs/wasm-parser@^1.11.5": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz#bb85378c527df824004812bbdb784eea539174a1" + integrity sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ== + dependencies: + "@webassemblyjs/ast" "1.11.6" + "@webassemblyjs/helper-api-error" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/ieee754" "1.11.6" + "@webassemblyjs/leb128" "1.11.6" + "@webassemblyjs/utf8" "1.11.6" + +"@webassemblyjs/wast-printer@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz#a7bf8dd7e362aeb1668ff43f35cb849f188eff20" + integrity sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A== + dependencies: + "@webassemblyjs/ast" "1.11.6" + "@xtuc/long" "4.2.2" + +"@webpack-cli/configtest@^2.1.1": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-2.1.1.tgz#3b2f852e91dac6e3b85fb2a314fb8bef46d94646" + integrity sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw== + +"@webpack-cli/info@^2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@webpack-cli/info/-/info-2.0.2.tgz#cc3fbf22efeb88ff62310cf885c5b09f44ae0fdd" + integrity sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A== + +"@webpack-cli/serve@^2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-2.0.5.tgz#325db42395cd49fe6c14057f9a900e427df8810e" + integrity sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ== + +"@xtuc/ieee754@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" + integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== + +"@xtuc/long@4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" + integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== + +abort-controller@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" + integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== + dependencies: + event-target-shim "^5.0.0" + +accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8: + version "1.3.8" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" + integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== + dependencies: + mime-types "~2.1.34" + negotiator "0.6.3" + +acorn-import-assertions@^1.9.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz#507276249d684797c84e0734ef84860334cfb1ac" + integrity sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA== + +acorn@^8.7.1, acorn@^8.8.2: + version "8.9.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.9.0.tgz#78a16e3b2bcc198c10822786fa6679e245db5b59" + integrity sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ== + +agentkeepalive@^4.2.1: + version "4.3.0" + resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.3.0.tgz#bb999ff07412653c1803b3ced35e50729830a255" + integrity sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg== + dependencies: + debug "^4.1.0" + depd "^2.0.0" + humanize-ms "^1.2.1" + +ajv-formats@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520" + integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== + dependencies: + ajv "^8.0.0" + +ajv-keywords@^3.5.2: + version "3.5.2" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" + integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== + +ajv-keywords@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16" + integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== + dependencies: + fast-deep-equal "^3.1.3" + +ajv@^6.12.3, ajv@^6.12.5: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ajv@^8.0.0, ajv@^8.9.0: + version "8.12.0" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1" + integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + +ansi-html-community@^0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41" + integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw== + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + integrity sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + integrity sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA== + +ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== + +array-flatten@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099" + integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ== + +asn1@~0.2.3: + version "0.2.6" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d" + integrity sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ== + dependencies: + safer-buffer "~2.1.0" + +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== + +aws-sign2@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + integrity sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA== + +aws4@^1.8.0: + version "1.12.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.12.0.tgz#ce1c9d143389679e253b314241ea9aa5cec980d3" + integrity sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg== + +babel-code-frame@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" + integrity sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g== + dependencies: + chalk "^1.1.3" + esutils "^2.0.2" + js-tokens "^3.0.2" + +babel-core@^6.26.0, babel-core@^6.26.3: + version "6.26.3" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" + integrity sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA== + dependencies: + babel-code-frame "^6.26.0" + babel-generator "^6.26.0" + babel-helpers "^6.24.1" + babel-messages "^6.23.0" + babel-register "^6.26.0" + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + convert-source-map "^1.5.1" + debug "^2.6.9" + json5 "^0.5.1" + lodash "^4.17.4" + minimatch "^3.0.4" + path-is-absolute "^1.0.1" + private "^0.1.8" + slash "^1.0.0" + source-map "^0.5.7" + +babel-generator@^6.26.0: + version "6.26.1" + resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" + integrity sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA== + dependencies: + babel-messages "^6.23.0" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + detect-indent "^4.0.0" + jsesc "^1.3.0" + lodash "^4.17.4" + source-map "^0.5.7" + trim-right "^1.0.1" + +babel-helper-call-delegate@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" + integrity sha512-RL8n2NiEj+kKztlrVJM9JT1cXzzAdvWFh76xh/H1I4nKwunzE4INBXn8ieCZ+wh4zWszZk7NBS1s/8HR5jDkzQ== + dependencies: + babel-helper-hoist-variables "^6.24.1" + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-define-map@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" + integrity sha512-bHkmjcC9lM1kmZcVpA5t2om2nzT/xiZpo6TJq7UlZ3wqKfzia4veeXbIhKvJXAMzhhEBd3cR1IElL5AenWEUpA== + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + lodash "^4.17.4" + +babel-helper-function-name@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" + integrity sha512-Oo6+e2iX+o9eVvJ9Y5eKL5iryeRdsIkwRYheCuhYdVHsdEQysbc2z2QkqCLIYnNxkT5Ss3ggrHdXiDI7Dhrn4Q== + dependencies: + babel-helper-get-function-arity "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-get-function-arity@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" + integrity sha512-WfgKFX6swFB1jS2vo+DwivRN4NB8XUdM3ij0Y1gnC21y1tdBoe6xjVnd7NSI6alv+gZXCtJqvrTeMW3fR/c0ng== + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-hoist-variables@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" + integrity sha512-zAYl3tqerLItvG5cKYw7f1SpvIxS9zi7ohyGHaI9cgDUjAT6YcY9jIEH5CstetP5wHIVSceXwNS7Z5BpJg+rOw== + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-optimise-call-expression@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" + integrity sha512-Op9IhEaxhbRT8MDXx2iNuMgciu2V8lDvYCNQbDGjdBNCjaMvyLf4wl4A3b8IgndCyQF8TwfgsQ8T3VD8aX1/pA== + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-regex@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" + integrity sha512-VlPiWmqmGJp0x0oK27Out1D+71nVVCTSdlbhIVoaBAj2lUgrNjBCRR9+llO4lTSb2O4r7PJg+RobRkhBrf6ofg== + dependencies: + babel-runtime "^6.26.0" + babel-types "^6.26.0" + lodash "^4.17.4" + +babel-helper-replace-supers@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" + integrity sha512-sLI+u7sXJh6+ToqDr57Bv973kCepItDhMou0xCP2YPVmR1jkHSCY+p1no8xErbV1Siz5QE8qKT1WIwybSWlqjw== + dependencies: + babel-helper-optimise-call-expression "^6.24.1" + babel-messages "^6.23.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helpers@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" + integrity sha512-n7pFrqQm44TCYvrCDb0MqabAF+JUBq+ijBvNMUxpkLjJaAu32faIexewMumrH5KLLJ1HDyT0PTEqRyAe/GwwuQ== + dependencies: + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-loader@^9.1.2: + version "9.1.2" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.2.tgz#a16a080de52d08854ee14570469905a5fc00d39c" + integrity sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA== + dependencies: + find-cache-dir "^3.3.2" + schema-utils "^4.0.0" + +babel-messages@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" + integrity sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w== + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-check-es2015-constants@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" + integrity sha512-B1M5KBP29248dViEo1owyY32lk1ZSH2DaNNrXLGt8lyjjHm7pBqAdQ7VKUPR6EEDO323+OvT3MQXbCin8ooWdA== + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-arrow-functions@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" + integrity sha512-PCqwwzODXW7JMrzu+yZIaYbPQSKjDTAsNNlK2l5Gg9g4rz2VzLnZsStvp/3c46GfXpwkyufb3NCyG9+50FF1Vg== + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" + integrity sha512-2+ujAT2UMBzYFm7tidUsYh+ZoIutxJ3pN9IYrF1/H6dCKtECfhmB8UkHVpyxDwkj0CYbQG35ykoz925TUnBc3A== + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-block-scoping@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" + integrity sha512-YiN6sFAQ5lML8JjCmr7uerS5Yc/EMbgg9G8ZNmk2E3nYX4ckHR01wrkeeMijEf5WHNK5TW0Sl0Uu3pv3EdOJWw== + dependencies: + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + lodash "^4.17.4" + +babel-plugin-transform-es2015-classes@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" + integrity sha512-5Dy7ZbRinGrNtmWpquZKZ3EGY8sDgIVB4CU8Om8q8tnMLrD/m94cKglVcHps0BCTdZ0TJeeAWOq2TK9MIY6cag== + dependencies: + babel-helper-define-map "^6.24.1" + babel-helper-function-name "^6.24.1" + babel-helper-optimise-call-expression "^6.24.1" + babel-helper-replace-supers "^6.24.1" + babel-messages "^6.23.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-computed-properties@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" + integrity sha512-C/uAv4ktFP/Hmh01gMTvYvICrKze0XVX9f2PdIXuriCSvUmV9j+u+BB9f5fJK3+878yMK6dkdcq+Ymr9mrcLzw== + dependencies: + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-destructuring@^6.22.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" + integrity sha512-aNv/GDAW0j/f4Uy1OEPZn1mqD+Nfy9viFGBfQ5bZyT35YqOiqx7/tXdyfZkJ1sC21NyEsBdfDY6PYmLHF4r5iA== + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-duplicate-keys@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" + integrity sha512-ossocTuPOssfxO2h+Z3/Ea1Vo1wWx31Uqy9vIiJusOP4TbF7tPs9U0sJ9pX9OJPf4lXRGj5+6Gkl/HHKiAP5ug== + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-for-of@^6.22.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" + integrity sha512-DLuRwoygCoXx+YfxHLkVx5/NpeSbVwfoTeBykpJK7JhYWlL/O8hgAK/reforUnZDlxasOrVPPJVI/guE3dCwkw== + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-function-name@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" + integrity sha512-iFp5KIcorf11iBqu/y/a7DK3MN5di3pNCzto61FqCNnUX4qeBwcV1SLqe10oXNnCaxBUImX3SckX2/o1nsrTcg== + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-literals@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" + integrity sha512-tjFl0cwMPpDYyoqYA9li1/7mGFit39XiNX5DKC/uCNjBctMxyL1/PT/l4rSlbvBG1pOKI88STRdUsWXB3/Q9hQ== + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-modules-amd@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" + integrity sha512-LnIIdGWIKdw7zwckqx+eGjcS8/cl8D74A3BpJbGjKTFFNJSMrjN4bIh22HY1AlkUbeLG6X6OZj56BDvWD+OeFA== + dependencies: + babel-plugin-transform-es2015-modules-commonjs "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-modules-commonjs@^6.24.1: + version "6.26.2" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" + integrity sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q== + dependencies: + babel-plugin-transform-strict-mode "^6.24.1" + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-types "^6.26.0" + +babel-plugin-transform-es2015-modules-systemjs@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" + integrity sha512-ONFIPsq8y4bls5PPsAWYXH/21Hqv64TBxdje0FvU3MhIV6QM2j5YS7KvAzg/nTIVLot2D2fmFQrFWCbgHlFEjg== + dependencies: + babel-helper-hoist-variables "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-modules-umd@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" + integrity sha512-LpVbiT9CLsuAIp3IG0tfbVo81QIhn6pE8xBJ7XSeCtFlMltuar5VuBV6y6Q45tpui9QWcy5i0vLQfCfrnF7Kiw== + dependencies: + babel-plugin-transform-es2015-modules-amd "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-object-super@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" + integrity sha512-8G5hpZMecb53vpD3mjs64NhI1au24TAmokQ4B+TBFBjN9cVoGoOvotdrMMRmHvVZUEvqGUPWL514woru1ChZMA== + dependencies: + babel-helper-replace-supers "^6.24.1" + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-parameters@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" + integrity sha512-8HxlW+BB5HqniD+nLkQ4xSAVq3bR/pcYW9IigY+2y0dI+Y7INFeTbfAQr+63T3E4UDsZGjyb+l9txUnABWxlOQ== + dependencies: + babel-helper-call-delegate "^6.24.1" + babel-helper-get-function-arity "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-shorthand-properties@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" + integrity sha512-mDdocSfUVm1/7Jw/FIRNw9vPrBQNePy6wZJlR8HAUBLybNp1w/6lr6zZ2pjMShee65t/ybR5pT8ulkLzD1xwiw== + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-spread@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" + integrity sha512-3Ghhi26r4l3d0Js933E5+IhHwk0A1yiutj9gwvzmFbVV0sPMYk2lekhOufHBswX7NCoSeF4Xrl3sCIuSIa+zOg== + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-sticky-regex@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" + integrity sha512-CYP359ADryTo3pCsH0oxRo/0yn6UsEZLqYohHmvLQdfS9xkf+MbCzE3/Kolw9OYIY4ZMilH25z/5CbQbwDD+lQ== + dependencies: + babel-helper-regex "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-template-literals@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" + integrity sha512-x8b9W0ngnKzDMHimVtTfn5ryimars1ByTqsfBDwAqLibmuuQY6pgBQi5z1ErIsUOWBdw1bW9FSz5RZUojM4apg== + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-typeof-symbol@^6.22.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" + integrity sha512-fz6J2Sf4gYN6gWgRZaoFXmq93X+Li/8vf+fb0sGDVtdeWvxC9y5/bTD7bvfWMEq6zetGEHpWjtzRGSugt5kNqw== + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-unicode-regex@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" + integrity sha512-v61Dbbihf5XxnYjtBN04B/JBvsScY37R1cZT5r9permN1cp+b70DY3Ib3fIkgn1DI9U3tGgBJZVD8p/mE/4JbQ== + dependencies: + babel-helper-regex "^6.24.1" + babel-runtime "^6.22.0" + regexpu-core "^2.0.0" + +babel-plugin-transform-regenerator@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" + integrity sha512-LS+dBkUGlNR15/5WHKe/8Neawx663qttS6AGqoOUhICc9d1KciBvtrQSuc0PI+CxQ2Q/S1aKuJ+u64GtLdcEZg== + dependencies: + regenerator-transform "^0.10.0" + +babel-plugin-transform-strict-mode@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" + integrity sha512-j3KtSpjyLSJxNoCDrhwiJad8kw0gJ9REGj8/CqL0HeRyLnvUNYV9zcqluL6QJSXh3nfsLEmSLvwRfGzrgR96Pw== + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-preset-es2015@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" + integrity sha512-XfwUqG1Ry6R43m4Wfob+vHbIVBIqTg/TJY4Snku1iIzeH7mUnwHA8Vagmv+ZQbPwhS8HgsdQvy28Py3k5zpoFQ== + dependencies: + babel-plugin-check-es2015-constants "^6.22.0" + babel-plugin-transform-es2015-arrow-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoping "^6.24.1" + babel-plugin-transform-es2015-classes "^6.24.1" + babel-plugin-transform-es2015-computed-properties "^6.24.1" + babel-plugin-transform-es2015-destructuring "^6.22.0" + babel-plugin-transform-es2015-duplicate-keys "^6.24.1" + babel-plugin-transform-es2015-for-of "^6.22.0" + babel-plugin-transform-es2015-function-name "^6.24.1" + babel-plugin-transform-es2015-literals "^6.22.0" + babel-plugin-transform-es2015-modules-amd "^6.24.1" + babel-plugin-transform-es2015-modules-commonjs "^6.24.1" + babel-plugin-transform-es2015-modules-systemjs "^6.24.1" + babel-plugin-transform-es2015-modules-umd "^6.24.1" + babel-plugin-transform-es2015-object-super "^6.24.1" + babel-plugin-transform-es2015-parameters "^6.24.1" + babel-plugin-transform-es2015-shorthand-properties "^6.24.1" + babel-plugin-transform-es2015-spread "^6.22.0" + babel-plugin-transform-es2015-sticky-regex "^6.24.1" + babel-plugin-transform-es2015-template-literals "^6.22.0" + babel-plugin-transform-es2015-typeof-symbol "^6.22.0" + babel-plugin-transform-es2015-unicode-regex "^6.24.1" + babel-plugin-transform-regenerator "^6.24.1" + +babel-register@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" + integrity sha512-veliHlHX06wjaeY8xNITbveXSiI+ASFnOqvne/LaIJIqOWi2Ogmj91KOugEz/hoh/fwMhXNBJPCv8Xaz5CyM4A== + dependencies: + babel-core "^6.26.0" + babel-runtime "^6.26.0" + core-js "^2.5.0" + home-or-tmp "^2.0.0" + lodash "^4.17.4" + mkdirp "^0.5.1" + source-map-support "^0.4.15" + +babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" + integrity sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g== + dependencies: + core-js "^2.4.0" + regenerator-runtime "^0.11.0" + +babel-template@^6.24.1, babel-template@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" + integrity sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg== + dependencies: + babel-runtime "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + lodash "^4.17.4" + +babel-traverse@^6.24.1, babel-traverse@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" + integrity sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA== + dependencies: + babel-code-frame "^6.26.0" + babel-messages "^6.23.0" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + debug "^2.6.8" + globals "^9.18.0" + invariant "^2.2.2" + lodash "^4.17.4" + +babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" + integrity sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g== + dependencies: + babel-runtime "^6.26.0" + esutils "^2.0.2" + lodash "^4.17.4" + to-fast-properties "^1.0.3" + +babylon@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" + integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base-64@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb" + integrity sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA== + +batch@0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" + integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw== + +bcrypt-pbkdf@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" + integrity sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w== + dependencies: + tweetnacl "^0.14.3" + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +body-parser@1.20.1: + version "1.20.1" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" + integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== + dependencies: + bytes "3.1.2" + content-type "~1.0.4" + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + http-errors "2.0.0" + iconv-lite "0.4.24" + on-finished "2.4.1" + qs "6.11.0" + raw-body "2.5.1" + type-is "~1.6.18" + unpipe "1.0.0" + +bonjour-service@^1.0.11: + version "1.1.1" + resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.1.1.tgz#960948fa0e0153f5d26743ab15baf8e33752c135" + integrity sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg== + dependencies: + array-flatten "^2.1.2" + dns-equal "^1.0.0" + fast-deep-equal "^3.1.3" + multicast-dns "^7.2.5" + +boolbase@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^3.0.2, braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +browserslist@^4.14.5: + version "4.21.9" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.9.tgz#e11bdd3c313d7e2a9e87e8b4b0c7872b13897635" + integrity sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg== + dependencies: + caniuse-lite "^1.0.30001503" + electron-to-chromium "^1.4.431" + node-releases "^2.0.12" + update-browserslist-db "^1.0.11" + +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +bytes@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== + +bytes@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== + +call-bind@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +camel-case@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" + integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== + dependencies: + pascal-case "^3.1.2" + tslib "^2.0.3" + +caniuse-lite@^1.0.30001503: + version "1.0.30001506" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001506.tgz#35bd814b310a487970c585430e9e80ee23faf14b" + integrity sha512-6XNEcpygZMCKaufIcgpQNZNf00GEqc7VQON+9Rd0K1bMYo8xhMZRAo5zpbnbMNizi4YNgIDAFrdykWsvY3H4Hw== + +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== + +chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + integrity sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A== + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chalk@^4.1.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +charenc@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" + integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA== + +chokidar@^3.5.3: + version "3.5.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +chrome-trace-event@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" + integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== + +clean-css@^5.2.2: + version "5.3.2" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.2.tgz#70ecc7d4d4114921f5d298349ff86a31a9975224" + integrity sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww== + dependencies: + source-map "~0.6.0" + +clone-deep@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== + dependencies: + is-plain-object "^2.0.4" + kind-of "^6.0.2" + shallow-clone "^3.0.0" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +colorette@^2.0.10, colorette@^2.0.14: + version "2.0.20" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" + integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== + +combined-stream@^1.0.6, combined-stream@^1.0.8, combined-stream@~1.0.6: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +commander@^10.0.1: + version "10.0.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06" + integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug== + +commander@^2.20.0: + version "2.20.3" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +commander@^8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" + integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== + +compressible@~2.0.16: + version "2.0.18" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" + integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== + dependencies: + mime-db ">= 1.43.0 < 2" + +compression@^1.7.4: + version "1.7.4" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" + integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + dependencies: + accepts "~1.3.5" + bytes "3.0.0" + compressible "~2.0.16" + debug "2.6.9" + on-headers "~1.0.2" + safe-buffer "5.1.2" + vary "~1.1.2" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +connect-history-api-fallback@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz#647264845251a0daf25b97ce87834cace0f5f1c8" + integrity sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA== + +content-disposition@0.5.4: + version "0.5.4" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" + integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== + dependencies: + safe-buffer "5.2.1" + +content-type@~1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" + integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== + +convert-source-map@^1.5.1: + version "1.9.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== + +cookie@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" + integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== + +cookiejar@: + version "2.1.4" + resolved "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.1.4.tgz#ee669c1fea2cf42dc31585469d193fef0d65771b" + integrity sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw== + +core-js@^2.4.0, core-js@^2.5.0: + version "2.6.12" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec" + integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== + +core-util-is@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== + +core-util-is@~1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + +cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypt@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" + integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow== + +css-select@^4.1.3: + version "4.3.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" + integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== + dependencies: + boolbase "^1.0.0" + css-what "^6.0.1" + domhandler "^4.3.1" + domutils "^2.8.0" + nth-check "^2.0.1" + +css-what@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" + integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== + +dashdash@^1.12.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + integrity sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g== + dependencies: + assert-plus "^1.0.0" + +debug@2.6.9, debug@^2.6.8, debug@^2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@^4.1.0: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +default-gateway@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-6.0.3.tgz#819494c888053bdb743edbf343d6cdf7f2943a71" + integrity sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg== + dependencies: + execa "^5.0.0" + +define-lazy-prop@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" + integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== + +depd@2.0.0, depd@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + +depd@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== + +destroy@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" + integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== + +detect-indent@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" + integrity sha512-BDKtmHlOzwI7iRuEkhzsnPoi5ypEhWAJB5RvHWe1kMr06js3uK5B3734i3ui5Yd+wOJV1cpE4JnivPD283GU/A== + dependencies: + repeating "^2.0.0" + +detect-node@^2.0.4: + version "2.1.0" + resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" + integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== + +digest-fetch@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/digest-fetch/-/digest-fetch-1.3.0.tgz#898e69264d00012a23cf26e8a3e40320143fc661" + integrity sha512-CGJuv6iKNM7QyZlM2T3sPAdZWd/p9zQiRNS9G+9COUCwzWFTs0Xp8NF5iePx7wtvhDykReiRRrSeNb4oMmB8lA== + dependencies: + base-64 "^0.1.0" + md5 "^2.3.0" + +dns-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d" + integrity sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg== + +dns-packet@^5.2.2: + version "5.6.0" + resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.6.0.tgz#2202c947845c7a63c23ece58f2f70ff6ab4c2f7d" + integrity sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ== + dependencies: + "@leichtgewicht/ip-codec" "^2.0.1" + +dom-converter@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768" + integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== + dependencies: + utila "~0.4" + +dom-serializer@^1.0.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" + integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== + dependencies: + domelementtype "^2.0.1" + domhandler "^4.2.0" + entities "^2.0.0" + +domelementtype@^2.0.1, domelementtype@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + +domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" + integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== + dependencies: + domelementtype "^2.2.0" + +domutils@^2.5.2, domutils@^2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" + integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== + dependencies: + dom-serializer "^1.0.1" + domelementtype "^2.2.0" + domhandler "^4.2.0" + +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +ecc-jsbn@~0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" + integrity sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw== + dependencies: + jsbn "~0.1.0" + safer-buffer "^2.1.0" + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== + +electron-to-chromium@^1.4.431: + version "1.4.437" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.437.tgz#d0e73a431a9ade4467f73d48a59d752d91909316" + integrity sha512-ZFekRuBOHUXp21wrR5lshT6pZa/KmjkhKBAtmZz4NN5sCWlHOk3kdhiwFINrDBsRLX6FjyBAb1TRN+KBeNlyzQ== + +encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== + +enhanced-resolve@^5.0.0, enhanced-resolve@^5.15.0: + version "5.15.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35" + integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg== + dependencies: + graceful-fs "^4.2.4" + tapable "^2.2.0" + +entities@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +envinfo@^7.7.3: + version "7.9.0" + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.9.0.tgz#47594a13081be0d9be6e513534e8c58dbb26c7a1" + integrity sha512-RODB4txU+xImYDemN5DqaKC0CHk05XSVkOX4pq0hK26Qx+1LChkuOyUDlGEjYb3ACr0n9qBhFjg37hQuJvpkRQ== + +es-module-lexer@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.3.0.tgz#6be9c9e0b4543a60cd166ff6f8b4e9dae0b0c16f" + integrity sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA== + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== + +escape-string-regexp@^1.0.2: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +eslint-scope@5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1: + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +etag@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== + +event-target-shim@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" + integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== + +eventemitter3@^4.0.0: + version "4.0.7" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +events@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" + integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== + +execa@^5.0.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.0" + human-signals "^2.1.0" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.1" + onetime "^5.1.2" + signal-exit "^3.0.3" + strip-final-newline "^2.0.0" + +express@^4.17.3: + version "4.18.2" + resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59" + integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ== + dependencies: + accepts "~1.3.8" + array-flatten "1.1.1" + body-parser "1.20.1" + content-disposition "0.5.4" + content-type "~1.0.4" + cookie "0.5.0" + cookie-signature "1.0.6" + debug "2.6.9" + depd "2.0.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "1.2.0" + fresh "0.5.2" + http-errors "2.0.0" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "2.4.1" + parseurl "~1.3.3" + path-to-regexp "0.1.7" + proxy-addr "~2.0.7" + qs "6.11.0" + range-parser "~1.2.1" + safe-buffer "5.2.1" + send "0.18.0" + serve-static "1.15.0" + setprototypeof "1.2.0" + statuses "2.0.1" + type-is "~1.6.18" + utils-merge "1.0.1" + vary "~1.1.2" + +extend@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +extsprintf@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + integrity sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g== + +extsprintf@^1.2.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz#8d172c064867f235c0c84a596806d279bf4bcc07" + integrity sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA== + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fastest-levenshtein@^1.0.12: + version "1.0.16" + resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" + integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== + +faye-websocket@>=0.4.0, faye-websocket@^0.11.3: + version "0.11.4" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da" + integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g== + dependencies: + websocket-driver ">=0.5.1" + +faye@~0.8.3: + version "0.8.11" + resolved "https://registry.yarnpkg.com/faye/-/faye-0.8.11.tgz#06b25f22c9be51ebe6fe6d8d59dee6e546751967" + integrity sha512-d2SXlWy+wR8D2AgYjCnJrA8v4RvwKeRQeTB2aLUetyhrNKTU28mAvSMezSZDNyOONVrsF0IY1s4625QgggM2XA== + dependencies: + cookiejar "" + faye-websocket ">=0.4.0" + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +finalhandler@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" + integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "2.4.1" + parseurl "~1.3.3" + statuses "2.0.1" + unpipe "~1.0.0" + +find-cache-dir@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" + integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== + dependencies: + commondir "^1.0.1" + make-dir "^3.0.2" + pkg-dir "^4.1.0" + +find-up@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +follow-redirects@^1.0.0: + version "1.15.2" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== + +force@^0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/force/-/force-0.0.3.tgz#16a711e6b9a542a974da85546434a3ae94d66b14" + integrity sha512-B/4gl3/7o8Q4jYfXNKSvTHlAPxB1ruYCkxVkiVUUuHziYbDa2NsURljSgpm+Q+d4cGmN1EaAD5QXhLodGN44zA== + dependencies: + faye "~0.8.3" + mime "~1.2.9" + request "*" + +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + integrity sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw== + +form-data-encoder@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-1.7.2.tgz#1f1ae3dccf58ed4690b86d87e4f57c654fbab040" + integrity sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A== + +form-data@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" + integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +form-data@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" + integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.6" + mime-types "^2.1.12" + +formdata-node@^4.3.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/formdata-node/-/formdata-node-4.4.1.tgz#23f6a5cb9cb55315912cbec4ff7b0f59bbd191e2" + integrity sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ== + dependencies: + node-domexception "1.0.0" + web-streams-polyfill "4.0.0-beta.3" + +forwarded@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" + integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== + +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== + +fs-monkey@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.4.tgz#ee8c1b53d3fe8bb7e5d2c5c5dfc0168afdd2f747" + integrity sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ== + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +get-intrinsic@^1.0.2: + version "1.2.1" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" + integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-proto "^1.0.1" + has-symbols "^1.0.3" + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + integrity sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng== + dependencies: + assert-plus "^1.0.0" + +glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-to-regexp@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" + integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== + +glob@^7.1.3: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +globals@^9.18.0: + version "9.18.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" + integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== + +graceful-fs@^4.1.2, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + +handle-thing@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e" + integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== + +har-schema@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" + integrity sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q== + +har-validator@~5.1.3: + version "5.1.5" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" + integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== + dependencies: + ajv "^6.12.3" + har-schema "^2.0.0" + +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + integrity sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg== + dependencies: + ansi-regex "^2.0.0" + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" + integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== + +has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +he@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +home-or-tmp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" + integrity sha512-ycURW7oUxE2sNiPVw1HVEFsW+ecOpJ5zaj7eC0RlwhibhRBod20muUN8qu/gzx956YrLolVvs1MTXwKgC2rVEg== + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.1" + +hpack.js@^2.1.6: + version "2.1.6" + resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" + integrity sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ== + dependencies: + inherits "^2.0.1" + obuf "^1.0.0" + readable-stream "^2.0.1" + wbuf "^1.1.0" + +html-entities@^2.3.2: + version "2.3.6" + resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.3.6.tgz#966391d58e5737c77bca4025e31721b496ab7454" + integrity sha512-9o0+dcpIw2/HxkNuYKxSJUF/MMRZQECK4GnF+oQOmJ83yCVHTWgCH5aOXxK5bozNRmM8wtgryjHD3uloPBDEGw== + +html-minifier-terser@^6.0.2: + version "6.1.0" + resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#bfc818934cc07918f6b3669f5774ecdfd48f32ab" + integrity sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw== + dependencies: + camel-case "^4.1.2" + clean-css "^5.2.2" + commander "^8.3.0" + he "^1.2.0" + param-case "^3.0.4" + relateurl "^0.2.7" + terser "^5.10.0" + +html-webpack-plugin@^5.5.3: + version "5.5.3" + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.5.3.tgz#72270f4a78e222b5825b296e5e3e1328ad525a3e" + integrity sha512-6YrDKTuqaP/TquFH7h4srYWsZx+x6k6+FbsTm0ziCwGHDP78Unr1r9F/H4+sGmMbX08GQcJ+K64x55b+7VM/jg== + dependencies: + "@types/html-minifier-terser" "^6.0.0" + html-minifier-terser "^6.0.2" + lodash "^4.17.21" + pretty-error "^4.0.0" + tapable "^2.0.0" + +htmlparser2@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7" + integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== + dependencies: + domelementtype "^2.0.1" + domhandler "^4.0.0" + domutils "^2.5.2" + entities "^2.0.0" + +http-deceiver@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" + integrity sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw== + +http-errors@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" + integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== + dependencies: + depd "2.0.0" + inherits "2.0.4" + setprototypeof "1.2.0" + statuses "2.0.1" + toidentifier "1.0.1" + +http-errors@~1.6.2: + version "1.6.3" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" + integrity sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A== + dependencies: + depd "~1.1.2" + inherits "2.0.3" + setprototypeof "1.1.0" + statuses ">= 1.4.0 < 2" + +http-parser-js@>=0.5.1: + version "0.5.8" + resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.8.tgz#af23090d9ac4e24573de6f6aecc9d84a48bf20e3" + integrity sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q== + +http-proxy-middleware@^2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz#e1a4dd6979572c7ab5a4e4b55095d1f32a74963f" + integrity sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw== + dependencies: + "@types/http-proxy" "^1.17.8" + http-proxy "^1.18.1" + is-glob "^4.0.1" + is-plain-obj "^3.0.0" + micromatch "^4.0.2" + +http-proxy@^1.18.1: + version "1.18.1" + resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" + integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== + dependencies: + eventemitter3 "^4.0.0" + follow-redirects "^1.0.0" + requires-port "^1.0.0" + +http-signature@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" + integrity sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ== + dependencies: + assert-plus "^1.0.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +humanize-ms@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" + integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== + dependencies: + ms "^2.0.0" + +iconv-lite@0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +import-local@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" + integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== + dependencies: + pkg-dir "^4.2.0" + resolve-cwd "^3.0.0" + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +inherits@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== + +interpret@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-3.1.1.tgz#5be0ceed67ca79c6c4bc5cf0d7ee843dcea110c4" + integrity sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ== + +invariant@^2.2.2: + version "2.2.4" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== + dependencies: + loose-envify "^1.0.0" + +ipaddr.js@1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== + +ipaddr.js@^2.0.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.1.0.tgz#2119bc447ff8c257753b196fc5f1ce08a4cdf39f" + integrity sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ== + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-buffer@~1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + +is-core-module@^2.11.0: + version "2.12.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd" + integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg== + dependencies: + has "^1.0.3" + +is-docker@^2.0.0, is-docker@^2.1.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-finite@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3" + integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w== + +is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-plain-obj@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7" + integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== + +is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== + +is-wsl@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== + dependencies: + is-docker "^2.0.0" + +isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== + +isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g== + +jest-worker@^27.4.5: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0" + integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== + dependencies: + "@types/node" "*" + merge-stream "^2.0.0" + supports-color "^8.0.0" + +"js-tokens@^3.0.0 || ^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-tokens@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" + integrity sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg== + +jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + integrity sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg== + +jsesc@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" + integrity sha512-Mke0DA0QjUWuJlhsE0ZPPhYiJkRap642SmI/4ztCFaUs6V2AiH1sfecc+57NgaryfAA2VR3v6O+CSjC1jZJKOA== + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== + +json-parse-even-better-errors@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +json-schema@0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5" + integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== + +json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== + +json5@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" + integrity sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw== + +jsprim@^1.2.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.2.tgz#712c65533a15c878ba59e9ed5f0e26d5b77c5feb" + integrity sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw== + dependencies: + assert-plus "1.0.0" + extsprintf "1.3.0" + json-schema "0.4.0" + verror "1.10.0" + +kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +launch-editor@^2.6.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.6.0.tgz#4c0c1a6ac126c572bd9ff9a30da1d2cae66defd7" + integrity sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ== + dependencies: + picocolors "^1.0.0" + shell-quote "^1.7.3" + +loader-runner@^4.2.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1" + integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== + +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + +lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +loose-envify@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +make-dir@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" + integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== + dependencies: + semver "^6.0.0" + +md5@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" + integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g== + dependencies: + charenc "0.0.2" + crypt "0.0.2" + is-buffer "~1.1.6" + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== + +memfs@^3.4.3: + version "3.5.3" + resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.5.3.tgz#d9b40fe4f8d5788c5f895bda804cd0d9eeee9f3b" + integrity sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw== + dependencies: + fs-monkey "^1.0.4" + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== + +micromatch@^4.0.0, micromatch@^4.0.2: + version "4.0.5" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + dependencies: + braces "^3.0.2" + picomatch "^2.3.1" + +mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@^2.1.12, mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24, mime-types@~2.1.34: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mime@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +mime@~1.2.9: + version "1.2.11" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.2.11.tgz#58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10" + integrity sha512-Ysa2F/nqTNGHhhm9MV8ure4+Hc+Y8AWiqUdHxsO7xu8zc92ND9f3kpALHjaP026Ft17UfxrMt95c50PLUeynBw== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +minimalistic-assert@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimatch@^3.0.4, minimatch@^3.1.1: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimist@^1.2.6: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + +mkdirp@^0.5.1: + version "0.5.6" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== + dependencies: + minimist "^1.2.6" + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@2.1.3, ms@^2.0.0: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +multicast-dns@^7.2.5: + version "7.2.5" + resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-7.2.5.tgz#77eb46057f4d7adbd16d9290fa7299f6fa64cced" + integrity sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg== + dependencies: + dns-packet "^5.2.2" + thunky "^1.0.2" + +negotiator@0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== + +neo-async@^2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== + +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + +node-domexception@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + +node-fetch@^2.6.7: + version "2.6.11" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.11.tgz#cde7fc71deef3131ef80a738919f999e6edfff25" + integrity sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w== + dependencies: + whatwg-url "^5.0.0" + +node-forge@^1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" + integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== + +node-releases@^2.0.12: + version "2.0.12" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.12.tgz#35627cc224a23bfb06fb3380f2b3afaaa7eb1039" + integrity sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ== + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +nth-check@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" + integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== + dependencies: + boolbase "^1.0.0" + +oauth-sign@~0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" + integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== + +object-inspect@^1.9.0: + version "1.12.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" + integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== + +obuf@^1.0.0, obuf@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" + integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== + +on-finished@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" + integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== + dependencies: + ee-first "1.1.1" + +on-headers@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +open@^8.0.9: + version "8.4.2" + resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9" + integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ== + dependencies: + define-lazy-prop "^2.0.0" + is-docker "^2.1.1" + is-wsl "^2.2.0" + +os-homedir@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + integrity sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ== + +os-tmpdir@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== + +p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-retry@^4.5.0: + version "4.6.2" + resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-4.6.2.tgz#9baae7184057edd4e17231cee04264106e092a16" + integrity sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ== + dependencies: + "@types/retry" "0.12.0" + retry "^0.13.1" + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +param-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" + integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + +parseurl@~1.3.2, parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + +pascal-case@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" + integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== + +performance-now@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== + +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pkg-dir@^4.1.0, pkg-dir@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + dependencies: + find-up "^4.0.0" + +pretty-error@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-4.0.0.tgz#90a703f46dd7234adb46d0f84823e9d1cb8f10d6" + integrity sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw== + dependencies: + lodash "^4.17.20" + renderkid "^3.0.0" + +private@^0.1.6, private@^0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" + integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== + +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + +proxy-addr@~2.0.7: + version "2.0.7" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" + integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== + dependencies: + forwarded "0.2.0" + ipaddr.js "1.9.1" + +psl@^1.1.28: + version "1.9.0" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" + integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== + +punycode@^2.1.0, punycode@^2.1.1: + version "2.3.0" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" + integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== + +qs@6.11.0: + version "6.11.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" + integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== + dependencies: + side-channel "^1.0.4" + +qs@^6.10.3: + version "6.11.2" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" + integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== + dependencies: + side-channel "^1.0.4" + +qs@~6.5.2: + version "6.5.3" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.3.tgz#3aeeffc91967ef6e35c0e488ef46fb296ab76aad" + integrity sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA== + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +range-parser@^1.2.1, range-parser@~1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + +raw-body@2.5.1: + version "2.5.1" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" + integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== + dependencies: + bytes "3.1.2" + http-errors "2.0.0" + iconv-lite "0.4.24" + unpipe "1.0.0" + +readable-stream@^2.0.1: + version "2.3.8" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" + integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readable-stream@^3.0.6: + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +rechoir@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.8.0.tgz#49f866e0d32146142da3ad8f0eff352b3215ff22" + integrity sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ== + dependencies: + resolve "^1.20.0" + +regenerate@^1.2.1: + version "1.4.2" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" + integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== + +regenerator-runtime@^0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" + integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== + +regenerator-transform@^0.10.0: + version "0.10.1" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" + integrity sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q== + dependencies: + babel-runtime "^6.18.0" + babel-types "^6.19.0" + private "^0.1.6" + +regexpu-core@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" + integrity sha512-tJ9+S4oKjxY8IZ9jmjnp/mtytu1u3iyIQAfmI51IKWH6bFf7XR1ybtaO6j7INhZKXOTYADk7V5qxaqLkmNxiZQ== + dependencies: + regenerate "^1.2.1" + regjsgen "^0.2.0" + regjsparser "^0.1.4" + +regjsgen@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" + integrity sha512-x+Y3yA24uF68m5GA+tBjbGYo64xXVJpbToBaWCoSNSc1hdk6dfctaRWrNFTVJZIIhL5GxW8zwjoixbnifnK59g== + +regjsparser@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" + integrity sha512-jlQ9gYLfk2p3V5Ag5fYhA7fv7OHzd1KUH0PRP46xc3TgwjwgROIW572AfYg/X9kaNq/LJnu6oJcFRXlIrGoTRw== + dependencies: + jsesc "~0.5.0" + +relateurl@^0.2.7: + version "0.2.7" + resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" + integrity sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog== + +renderkid@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-3.0.0.tgz#5fd823e4d6951d37358ecc9a58b1f06836b6268a" + integrity sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg== + dependencies: + css-select "^4.1.3" + dom-converter "^0.2.0" + htmlparser2 "^6.1.0" + lodash "^4.17.21" + strip-ansi "^6.0.1" + +repeating@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" + integrity sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A== + dependencies: + is-finite "^1.0.0" + +request@*: + version "2.88.2" + resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" + integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== + dependencies: + aws-sign2 "~0.7.0" + aws4 "^1.8.0" + caseless "~0.12.0" + combined-stream "~1.0.6" + extend "~3.0.2" + forever-agent "~0.6.1" + form-data "~2.3.2" + har-validator "~5.1.3" + http-signature "~1.2.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.19" + oauth-sign "~0.9.0" + performance-now "^2.1.0" + qs "~6.5.2" + safe-buffer "^5.1.2" + tough-cookie "~2.5.0" + tunnel-agent "^0.6.0" + uuid "^3.3.2" + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +requires-port@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== + +resolve-cwd@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" + integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== + dependencies: + resolve-from "^5.0.0" + +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + +resolve@^1.20.0: + version "1.22.2" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" + integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== + dependencies: + is-core-module "^2.11.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +retry@^0.13.1: + version "0.13.1" + resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" + integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +schema-utils@^3.1.1, schema-utils@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe" + integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== + dependencies: + "@types/json-schema" "^7.0.8" + ajv "^6.12.5" + ajv-keywords "^3.5.2" + +schema-utils@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.2.0.tgz#70d7c93e153a273a805801882ebd3bff20d89c8b" + integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw== + dependencies: + "@types/json-schema" "^7.0.9" + ajv "^8.9.0" + ajv-formats "^2.1.1" + ajv-keywords "^5.1.0" + +select-hose@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" + integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg== + +selfsigned@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.1.1.tgz#18a7613d714c0cd3385c48af0075abf3f266af61" + integrity sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ== + dependencies: + node-forge "^1" + +semver@^6.0.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + +semver@^7.3.4: + version "7.5.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.2.tgz#5b851e66d1be07c1cdaf37dfc856f543325a2beb" + integrity sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ== + dependencies: + lru-cache "^6.0.0" + +send@0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" + integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== + dependencies: + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "2.0.0" + mime "1.6.0" + ms "2.1.3" + on-finished "2.4.1" + range-parser "~1.2.1" + statuses "2.0.1" + +serialize-javascript@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz#b206efb27c3da0b0ab6b52f48d170b7996458e5c" + integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w== + dependencies: + randombytes "^2.1.0" + +serve-index@^1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" + integrity sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw== + dependencies: + accepts "~1.3.4" + batch "0.6.1" + debug "2.6.9" + escape-html "~1.0.3" + http-errors "~1.6.2" + mime-types "~2.1.17" + parseurl "~1.3.2" + +serve-static@1.15.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" + integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.18.0" + +setprototypeof@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" + integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== + +setprototypeof@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" + integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== + +shallow-clone@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== + dependencies: + kind-of "^6.0.2" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +shell-quote@^1.7.3: + version "1.8.1" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" + integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.3: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +slash@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" + integrity sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg== + +sockjs@^0.3.24: + version "0.3.24" + resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.24.tgz#c9bc8995f33a111bea0395ec30aa3206bdb5ccce" + integrity sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ== + dependencies: + faye-websocket "^0.11.3" + uuid "^8.3.2" + websocket-driver "^0.7.4" + +source-map-support@^0.4.15: + version "0.4.18" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" + integrity sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA== + dependencies: + source-map "^0.5.6" + +source-map-support@~0.5.20: + version "0.5.21" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.5.6, source-map@^0.5.7: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== + +source-map@^0.6.0, source-map@~0.6.0: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +spdy-transport@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31" + integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw== + dependencies: + debug "^4.1.0" + detect-node "^2.0.4" + hpack.js "^2.1.6" + obuf "^1.1.2" + readable-stream "^3.0.6" + wbuf "^1.7.3" + +spdy@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b" + integrity sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA== + dependencies: + debug "^4.1.0" + handle-thing "^2.0.0" + http-deceiver "^1.2.7" + select-hose "^2.0.0" + spdy-transport "^3.0.0" + +sshpk@^1.7.0: + version "1.17.0" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.17.0.tgz#578082d92d4fe612b13007496e543fa0fbcbe4c5" + integrity sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ== + dependencies: + asn1 "~0.2.3" + assert-plus "^1.0.0" + bcrypt-pbkdf "^1.0.0" + dashdash "^1.12.0" + ecc-jsbn "~0.1.1" + getpass "^0.1.1" + jsbn "~0.1.0" + safer-buffer "^2.0.2" + tweetnacl "~0.14.0" + +statuses@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" + integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== + +"statuses@>= 1.4.0 < 2": + version "1.5.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== + +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +strip-ansi@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + integrity sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg== + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + integrity sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g== + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-color@^8.0.0: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" + integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== + +terser-webpack-plugin@^5.3.7: + version "5.3.9" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz#832536999c51b46d468067f9e37662a3b96adfe1" + integrity sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA== + dependencies: + "@jridgewell/trace-mapping" "^0.3.17" + jest-worker "^27.4.5" + schema-utils "^3.1.1" + serialize-javascript "^6.0.1" + terser "^5.16.8" + +terser@^5.10.0, terser@^5.16.8: + version "5.18.1" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.18.1.tgz#6d8642508ae9fb7b48768e48f16d675c89a78460" + integrity sha512-j1n0Ao919h/Ai5r43VAnfV/7azUYW43GPxK7qSATzrsERfW7+y2QW9Cp9ufnRF5CQUWbnLSo7UJokSWCqg4tsQ== + dependencies: + "@jridgewell/source-map" "^0.3.3" + acorn "^8.8.2" + commander "^2.20.0" + source-map-support "~0.5.20" + +thunky@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" + integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== + +to-fast-properties@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" + integrity sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +toidentifier@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" + integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== + +tough-cookie@~2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" + integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== + dependencies: + psl "^1.1.28" + punycode "^2.1.1" + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +trim-right@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" + integrity sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw== + +ts-loader@^9.4.3: + version "9.4.3" + resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-9.4.3.tgz#55cfa7c28dd82a2de968ae45c3adb75fb888b27e" + integrity sha512-n3hBnm6ozJYzwiwt5YRiJZkzktftRpMiBApHaJPoWLA+qetQBAXkHqCLM6nwSdRDimqVtA5ocIkcTRLMTt7yzA== + dependencies: + chalk "^4.1.0" + enhanced-resolve "^5.0.0" + micromatch "^4.0.0" + semver "^7.3.4" + +tslib@^2.0.3: + version "2.5.3" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.3.tgz#24944ba2d990940e6e982c4bea147aba80209913" + integrity sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w== + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== + dependencies: + safe-buffer "^5.0.1" + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA== + +type-is@~1.6.18: + version "1.6.18" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.24" + +typescript@^5.0.4: + version "5.1.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.3.tgz#8d84219244a6b40b6fb2b33cc1c062f715b9e826" + integrity sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw== + +unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== + +update-browserslist-db@^1.0.11: + version "1.0.11" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" + integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +util-deprecate@^1.0.1, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +utila@~0.4: + version "0.4.0" + resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" + integrity sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA== + +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== + +uuid@^3.3.2: + version "3.4.0" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" + integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== + +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + +vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== + +verror@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + integrity sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw== + dependencies: + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" + +watchpack@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" + integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== + dependencies: + glob-to-regexp "^0.4.1" + graceful-fs "^4.1.2" + +wbuf@^1.1.0, wbuf@^1.7.3: + version "1.7.3" + resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df" + integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA== + dependencies: + minimalistic-assert "^1.0.0" + +web-streams-polyfill@4.0.0-beta.3: + version "4.0.0-beta.3" + resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz#2898486b74f5156095e473efe989dcf185047a38" + integrity sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug== + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +webpack-cli@^5.0.2: + version "5.1.4" + resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-5.1.4.tgz#c8e046ba7eaae4911d7e71e2b25b776fcc35759b" + integrity sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg== + dependencies: + "@discoveryjs/json-ext" "^0.5.0" + "@webpack-cli/configtest" "^2.1.1" + "@webpack-cli/info" "^2.0.2" + "@webpack-cli/serve" "^2.0.5" + colorette "^2.0.14" + commander "^10.0.1" + cross-spawn "^7.0.3" + envinfo "^7.7.3" + fastest-levenshtein "^1.0.12" + import-local "^3.0.2" + interpret "^3.1.1" + rechoir "^0.8.0" + webpack-merge "^5.7.3" + +webpack-dev-middleware@^5.3.1: + version "5.3.3" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz#efae67c2793908e7311f1d9b06f2a08dcc97e51f" + integrity sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA== + dependencies: + colorette "^2.0.10" + memfs "^3.4.3" + mime-types "^2.1.31" + range-parser "^1.2.1" + schema-utils "^4.0.0" + +webpack-dev-server@^4.15.1: + version "4.15.1" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz#8944b29c12760b3a45bdaa70799b17cb91b03df7" + integrity sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA== + dependencies: + "@types/bonjour" "^3.5.9" + "@types/connect-history-api-fallback" "^1.3.5" + "@types/express" "^4.17.13" + "@types/serve-index" "^1.9.1" + "@types/serve-static" "^1.13.10" + "@types/sockjs" "^0.3.33" + "@types/ws" "^8.5.5" + ansi-html-community "^0.0.8" + bonjour-service "^1.0.11" + chokidar "^3.5.3" + colorette "^2.0.10" + compression "^1.7.4" + connect-history-api-fallback "^2.0.0" + default-gateway "^6.0.3" + express "^4.17.3" + graceful-fs "^4.2.6" + html-entities "^2.3.2" + http-proxy-middleware "^2.0.3" + ipaddr.js "^2.0.1" + launch-editor "^2.6.0" + open "^8.0.9" + p-retry "^4.5.0" + rimraf "^3.0.2" + schema-utils "^4.0.0" + selfsigned "^2.1.1" + serve-index "^1.9.1" + sockjs "^0.3.24" + spdy "^4.0.2" + webpack-dev-middleware "^5.3.1" + ws "^8.13.0" + +webpack-merge@^5.7.3: + version "5.9.0" + resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.9.0.tgz#dc160a1c4cf512ceca515cc231669e9ddb133826" + integrity sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg== + dependencies: + clone-deep "^4.0.1" + wildcard "^2.0.0" + +webpack-sources@^3.2.3: + version "3.2.3" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" + integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== + +webpack@^5.87.0: + version "5.88.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.88.0.tgz#a07aa2f8e7a64a8f1cec0c6c2e180e3cb34440c8" + integrity sha512-O3jDhG5e44qIBSi/P6KpcCcH7HD+nYIHVBhdWFxcLOcIGN8zGo5nqF3BjyNCxIh4p1vFdNnreZv2h2KkoAw3lw== + dependencies: + "@types/eslint-scope" "^3.7.3" + "@types/estree" "^1.0.0" + "@webassemblyjs/ast" "^1.11.5" + "@webassemblyjs/wasm-edit" "^1.11.5" + "@webassemblyjs/wasm-parser" "^1.11.5" + acorn "^8.7.1" + acorn-import-assertions "^1.9.0" + browserslist "^4.14.5" + chrome-trace-event "^1.0.2" + enhanced-resolve "^5.15.0" + es-module-lexer "^1.2.1" + eslint-scope "5.1.1" + events "^3.2.0" + glob-to-regexp "^0.4.1" + graceful-fs "^4.2.9" + json-parse-even-better-errors "^2.3.1" + loader-runner "^4.2.0" + mime-types "^2.1.27" + neo-async "^2.6.2" + schema-utils "^3.2.0" + tapable "^2.1.1" + terser-webpack-plugin "^5.3.7" + watchpack "^2.4.0" + webpack-sources "^3.2.3" + +websocket-driver@>=0.5.1, websocket-driver@^0.7.4: + version "0.7.4" + resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760" + integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== + dependencies: + http-parser-js ">=0.5.1" + safe-buffer ">=5.1.0" + websocket-extensions ">=0.1.1" + +websocket-extensions@>=0.1.1: + version "0.1.4" + resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42" + integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +wildcard@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67" + integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ== + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +ws@^8.13.0: + version "8.13.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" + integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== diff --git a/ecosystem-tests/vercel-edge/.gitignore b/ecosystem-tests/vercel-edge/.gitignore new file mode 100644 index 000000000..a5ab971a8 --- /dev/null +++ b/ecosystem-tests/vercel-edge/.gitignore @@ -0,0 +1,36 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js +/*.tgz + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +.env*.local + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts diff --git a/ecosystem-tests/vercel-edge/next.config.js b/ecosystem-tests/vercel-edge/next.config.js new file mode 100644 index 000000000..91ef62f0d --- /dev/null +++ b/ecosystem-tests/vercel-edge/next.config.js @@ -0,0 +1,6 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + reactStrictMode: true, +}; + +module.exports = nextConfig; diff --git a/ecosystem-tests/vercel-edge/package.json b/ecosystem-tests/vercel-edge/package.json new file mode 100644 index 000000000..cdde4a44a --- /dev/null +++ b/ecosystem-tests/vercel-edge/package.json @@ -0,0 +1,26 @@ +{ + "name": "vercel-edge", + "version": "0.1.0", + "private": true, + "scripts": { + "dev": "next dev", + "build": "next build", + "start": "next start", + "lint": "next lint", + "edge-runtime": "edge-runtime", + "vercel": "vercel" + }, + "dependencies": { + "next": "13.4.6", + "react": "18.2.0", + "react-dom": "18.2.0" + }, + "devDependencies": { + "@types/node": "20.3.1", + "@types/react": "18.2.13", + "@types/react-dom": "18.2.6", + "edge-runtime": "^2.4.3", + "vercel": "^30.2.3", + "typescript": "5.1.3" + } +} diff --git a/ecosystem-tests/vercel-edge/public/favicon.ico b/ecosystem-tests/vercel-edge/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..4570eb8d9269ad58b17fecbec6d630cded56f507 GIT binary patch literal 39535 zcmeHw`Bz=nmF9gsc+9hy5jB1w151fdDZGiScP-lmIaZ#3;EsX?LYkO6+oC zcdDGkvDZqaDp3tdY$sinwH#S?96PaNCzdTaPIp(T)A^x$b@xBe-*@+Ug9%7NAcSPy z_3eH3nfKXypK~woT|m<dO#S`!I@|I?JhGKxc0jfnSEBfEGWE_{%f^i zf7dG>nYG%kx13|yul4r5llB}t3ACbZQ&SU4HVXp-11rXN%*eTqIdYCx@$vDSH95v9 zDk^e}ykf3Z=5}o{GBUD3JzPgyuk7vZeHXJwMn~h=naE?`? z%e9}uV7SFRVgc9otIC{%m+SggmGkoQP+nPCxoYjIBj^Kz-K$;A@i+Sfvg>SyaOW$P zmh5x8Ya=K3?Z$rS>UozmgRCIlLG=sw*$rMM^v?vfgVypf>)3{EH~Y%KfNRaW-g1t$ z(JK}Mtask^w&xsoa~(#f_0F}C_MC4$*901GWWJ5`<=l62-A^4|*LOR8o3I$y_S-?G zPODupDBKSEt)&C?TY0V3cDt3k>djlgcGGVyebQVMU#rcEa*M@+k_QESeSItRzpZy@ z63^SVa*P@m7x$nT1A4Z$wmLMw!!^4hWyu7@&p(Qdi zGabHK*NWD?e%H}!YHGHLEnKzQdij1CAtEB;?!3N{>3y#>o39v+0$@%a>f+y6h{D_58WU^|}k|qx-783JMBPeizT` ztB$r}7FV4qN3W>AlQFik&1ydfQ||}qvj*zR>p}S(N3^}a`rhudCcBRIbi04fXxDQ) ze^zVPk?D5(jN4T=%J=&_fR*|@%0IHeBMUqP7T|*&UIEfco*m%Ufvj+(>8#H zL2Erv~w%d?)K#%_g^bHyK^-WaJ08 zjs3l8SKB7__OI5 z7JVNG>ISNNsKHrdZG6 z1^cItn>cD!Rn=$2GY%_mmi73VEJY-eK4E`YJs={ULM3 zdM$8=?QiuB$X#3Cb?yh<4e~yr>xv#MdB=_&50DFnhK4pJ>b8TAw*NEjCO&iCcdu>F z=hRJqj=Z&<@A+vi`)d0r6+%Y8HuU)|Mz{<6Z~W=&zC0bd zezLluZv*bmYIpY(wZ%_4uF>H7EdfK#wQkGgJAWR!UmDUhE3W(Yoh00{Dz^B^!!tdk z=Q_NW;u|dgEd5S|tEp1&qrdrkHd}r1_lfS+&;I;9sQdBzN~_t>{&ojH&AioT@b*uU z?Vr)DHrAuEM;3Twfkzg2WPwK(cw~V`7IbQ3qm;e&g$Ex#QUOsgn9SNn$>bGeKsYCv zQ%Fo#zX)C@1^m;U{PzJ3{4^NY1=_Le{b!iH`Yc#vR1F6M&h=S;|Bp|I3?36Q>-EOh zAiQ%~%I3!$b*@4?GV_aI>VI%N=2|IoF_KrmOx*;#D)}EaLP5b6PHqIbH_|MI9x%Y_ z3l=bFoJA5`eqQrO%JuTEY?azL#U4;LC>6xU(;$v$HiH3%Jtpv-e*7I0;2ko+3i|0c zTEI2d47qn2X}aD@WzA@0X2!udqaTRQI0_nk=b2i+0V@Xud`hB32wk9si)`lcL@Sq( z2Kw1Q@n!ePc@Dv$=pSW%HW8Rjr?g*Pab(@X7Ix)^AnTJ$I{;<%VBtPs94 z!BeX{NUhlBz(RR)eO0`tpJyYLT>Rxz3rHNGg3GK3A2cU>=bJeKyDsE_y?R;8)*6j- z94CpTf(|77l^@Q^e?kIq5s@5=LjgB`C@DM94;PfWVP<6L)=76T&p6XyP%r*c8N*Ol zxUzwv_ZVH|Zc+a(CEmAom|ae~$JQ=*%?3f_KfC~15^3n;k^z735|~yad8;JFwj5hZ zE|=wB3uYbWJWH8ibO}(;Wn_9zrDt<6>aR8hq)PtRkv5Q96E~+JeF>cVIp7FKoc2gQ zVGcL_;X7aB`rA{$_JUSGppWB*>V*^ z=O>U6lptY%(BoFKy*^_;B?$$LNRHkKa{K+0mwIVOz)%V{pmj@*o?{^>7(^c=m^dzw zX^R2hqu$`$6H(~SZB#-to-}1wfB1E-*n#PC4zQ0_0n$M1$W=Me7kl&a`SB8Z++y6x zMFEBYADZ{IOJM%v^PEC3VyJ!Nd5Fq;YG4$c1ikxT{P!W*lb;Gse*yW^2So6Y1pMEh z{;tSvTnfi#Th`M*TrI$GRIcY)6PmMhRw@iUC;;wb>pa*D3pmoLo(QFuHg7yb`vX-c z3{H#e;xW-OeF&W4Vv19`LFP(0JtqTt(k1O{;IyTZDYc%6bPlE_sA(TTZCEcDPfz7= z=^#8kPg44m-3LIN{?$JR1J2rbrgks0Zdr=Jl_%8xkmCRL4`1O?S@O|y;Js9NMk>^- zoS_O-$=w5JAa4-2KR2s#S2brcadWXBjek_%qFg(dODB%*=OzMtts$Y#MRSBHMLf>| zT8-Z72bF=;A6t#z3AxS!re+NZgKXhO;;aYqZhR+sztWq!odyBi%DY7zHl7iosxw4) zB4as~feN&8Kagk;1GNU&0O+pCixw%uCMi#&ggCHKeN2vfjn?l49ae3uO(&6S1p(I6 zRL$`AOEjs9!*eHC#G3%XFpab~p7v9vD69rm8m-`g?>q&*0{PY?DN$B&Zz#}EP$7l! z$+bK?v_8*4PQZ=oR$c3xG;wZMC=WD%cjija|9#=_pO6wB=o8bUHBBAIA?Zp+YN-$n z#@2z#s33Z;093_p#;GyzjMrZPcc7Rd3@kC~xndwQ8BB|(lMO9k4C3>FVD)A&3XIxH zzkmDUrFNcTGwhez!0?N82m9mS{utc1l|zPv*>#9GW{H}0w`j@PLv)b`dji}`?yp@u zrs7r#xtbnOh-6t;DB|lEy-(7m0?uYFpuhS-oC$DeFE-b%JufAU)0~W8BMqe6gq0xG zAvvLrhX|wI7sNZn{*0_Vo40X{3l3#d?@%z>1$h0Nl_EHJgGjUkqgaj0eg_k!ip5Q8 zV~6U731%yaiGW$Eo0xo>Jp{%&q!y8zh9tFckZ2CbcG2p@vvke!=$P8K13a5?1MFoG zgq=-|y8f5+peLgpm^ufhU4I%}ou!bDG03w_`K$t+0=We$O)_|Eq#T(QK zGZ=lMG*DraF@PdKb^V|J@e(rC`pUSN9Z}c+3`vf5BG2s{1Gf?6z%fYnvuoTL3k);? zw^{7s40YfH@4q0$;8A&I)36N!4I0Z$0x-m8>tjnLS1SoSR)}cG3-V|CBsTP^ENQn4 zGb@;KNP!`EE;vC0R4gp;6x-PjMnAfNjQM*~kO1j%Py#7E)W>l9}r7Mh~Dr5{IjCN7>)Ztu6?$ zo`^EGLT;P}%cOOOL2v#O7*GOI6G7q;&KPjO3dt71P>Nq(0MF`*=A>y&N5Fw!e;#bI zdiJC5N&d!*NJkgn{u;NAE4ZbAYd-=jiBfR_IZ*9{gA6aAy?&UnelB-b^58okJ6{;3 z#l7`hX%}*X9i`yjQp+S2lyJI;-m?t8`#jGcUP+}BK?2O2Y|Mkk3QE>AT9d|Sn?Cgyng72nnc7Xu)r7D8p zq-qFi2STE`1;-heCtW8zORB;1wI1Fqs+;!byN5>}D2Lov z=ct9i*ec-`^(X-=4M+lSn&Ul*i#CIRUvj_{-uJ?#0DQSzKQBzdkn6bf1y2P1Nhs4adTxldIiuS`L^^E?@+PHYG02abvk#_yY7 z@1e7RMHQbT(H0&wD{%Ec(RlBEtLF8uB5eYl{pkDW!ZVLT8dLg1Je|$Cd(B{nXJf$y zx&}0lK(}&XZyzJQ5i}2qh>|+t41#>xVbZk}GRv~AzcM+1G)h%+TMU8J5=!3GtW#wJSC3|~*ed(NE1B=t`XHkM4Zh0sJc!Ss@A~+u;{6T7)Nx6kb(2U4$ zJzMbl%M09$L1p@}qfEnPMkx*7{yZ|YEszPS+9|T|D79=O4J6L)k&fA9o1?FZj{|4T@m5sD1J^FtYasE9Y&t`q%csaoPAMH?)=wt)MBMdaeli`0=Bh zE280pr_{quW1-sc=WafimfWAqe)0a+BS=Ooz-~Ts47{PZ1biWR!tJ=X?K zvjA<~wET2u)~9BUfA!nlRLz@%2gh(Ifa_OhQ5eK|+L_7$Ehi++V_a~$y3AuK^q{iL zQkbtaaNR>vasUZOiVtMa2XZR`AsIivC=z)8J}~Z14`WE!a_*d?f}^_+f>k?;AaH(w zIsyxvIaFjzC-ps`&MGNu8$ik~UbQX#QZ#UeCXA2_IBf{nZ8R>~wB5!ak%XT`(s%ty z4hJYF?T{Q789L8dloOO)BH#E9%6@tI7ta>3AGND#S@__Uy|$WY$iV-3@te;e$py7b zN#BP*=+wWLxPAo%mGo1()PQ$0mK}KWt0K}Aw4ZYFTzoV>0C%*qiliT=5S2@trF4Em zt)BfO*p$w2U?IB)^7}6bGOB^I3u^t6?UUpJk`7RPB{vOYrmQo5ts9WsHYP1;3gEq;NV*@1HT$S!z^6Gg!%#Kf6YDN@vq*{$ zHPc|WuuonZQ}#!;S1+4_k+y*XKylVVj!>0L9T}DY z@4ZtW{ouW4MuM)r+$d$jk0BXWf$P(n#Go@Q^#1pM`B9eHs6vM8@MouNkihuc7j2Mw z=fUP0z|^g_kRH1FH892ya2nK;nh1UhWSacNUl+@LqMe#0_=5o%qs`<|98)m%n{V@} z!+{|S13+y#DIJXB!NL#;J}V`z{AW)gM@yB0<`07DGya;E63lcuM0FBHISO0_%ZVya zlk-T^KX#~;1_@n^ow7yA#q2E^`QUs09A$J&ig;dWWy9xN%9E5qjv7sVC{(`Xu~{Bv~b87b!tR#am66OpK<=imy7$&zkME3mi{Fk1kMDgML-H>d|r^! z(ei2DpckW$zWw*K;baBakXEKzbHkUq1*m&R#4>GT-pvTpl|h=VKY05FL97RHv$*2G zwdZgAS$-~~$_)DX-=!24AT6?j9pYRmAb@-1t#648u9nA9hv_&9T;^jSKhX4Z}6AY}={Z_)HjztGN)|2Be}XwAG?N4Q zbmdVH_qADyTVsQ6{&+@YR`XEg0l<{U1<#>=(477p^!DG;NS>fsI%c>$Fe-ef3Lb7l zYDL$x)$k-&ELh+{JsbJXOGx&eIy%MR2kc$wFa0~G!oBPn19CnbsV#GXTJg?E%d2yZ z-pM-JrVdDCfO1d_N1^tA_{v{{yTW8f&c=yLIgl@#2QvDAUXTw+=^ZYm;QHfI-~vs@ zdU|=k2ge7>RcDB_8E017IX!_gfE@<$Gpuu5DX(flN}B=|A72FDFBz6C(KqKn@BQnd zl!EUAz4mn1JFggvATbO8#+v>CZ;@6W3%Q=Xmd+G{1Nu)KNS$^?#?2$APAztq3Q2=B zzy1YD!Rb#xoi>md;2f3b$AJ%@$p7H088gLBU)R)s%s{2Pcmy%1PJ;jz0W|p@kgtUX zi_%OBUW|vRxak>F)4zTH64#SjA3;s^pN)`~(?o(%>)uRAbiEg&yHtw7U1kcDLaKfU zw8#G4-=V!y;oxqb)B$K=mmUyx{gWkghdE%*DgUp}JvHWACMEyx>3@9z(u8qNKPn;a zV2lAaNx+Zr7#B=SQdn3>?HPl>#BoW-kuZXQ!!4Y2A3L6^kInY1j#C~;TH>A*OmgQq z5Z0KIfsFp{kre*)Z#bQ$hK>NDNnB`7M@hzP3Iq*!_H3k)64yF|%9bXA|AgA<6gvbczdA#f&0{-d~ zhCC$tC*!RHi?j&`jPdqVJE55?bHI>ii*<%NijDDHGqsJQ3IOK-DnYp?tc+7Y)ky|i z`I3DFoULmLjP8N%)znHbZX1En-43SjZ=`BFR3vp+@NHbkX`IWviHO}6*bGq3F5S*UbZRKy;bbjOk=k!@!$vamBsjsb6dc_O-YtxJ#u)EMz_qWp*CQ#_zt``TGLJSc zYE*Y-J|r5hD7}0#7^$+}yjzoz`r5x#t&BoOFs5~lu>V*+S3WC+^hFyFnLcYz1iqx4 zpu%)|4G7>aQA0oWDZe=;pm7EC(!lW+uFCG4G@EBGwR`m&W{w13micu<0CFS&kL{;( zVjOu_;kAp-@ll@8PrL8z1Y0=a+KvH{&5+pvl5mgw-3woLG?`#b6~}|^mNK<-9StCO zgTw}-RS*L!!$y#ls%2XsyCQ+#>9){Z2e^Zpjf|jJcGMSt^DiLLgK5SkR#>@4C}vO& zS>(P5HG+?U0Ieh7;MI$fUb-kn!qpa218Pc9 z_B{K$D;K3r?9J~(=<{Pd14iCS3vE?5KgV8Fn+K2^DDf?BLTsp5&X6Ep;( zT1aw1+)CwINb6E61R#=&phg~&XFV`)9*slN$K?rVaDWlT6A5UG=Ag=o*ZvYRZ~r*H z)B>9hFD0I{F9J19TC6XZS&pL%iQmmHuwjxFtPgaaGlU*|>scf~2zPVH4z8UBO``{# z8yuMq6(06G$ygd)$7nwT;yRqKq96lUhrya?N5GI9C<1uCO!q+{|9i^?FKnu z9QSS7j~vZ4-2}!hvP*vxtQFGxPlE}H8EFm#aJrK`?@T4L)c>d+OZGPqY2<5v1$K%9 z1KblAtks%&iAxHF?>@v0K18DfXFM!TE8E4OJRek;8m-Z`{>{`B_|5Z@zIsv8y)@Oa z$X5NagptV;mAn5KC?wAoW8@<)z%75UwO|y9!8|~VGt>ZUhc(f3=D4kZ^Np6Xw03{~ zI3s#FdT__pOCDz-o}CUdBXNL-z_7L2szx`d6F}-a6C`z;bq2B<-4Y&j0sP&6OlLHj zc-obL=%UVqJyBW+1QngUEZ1X*g?tXw{b2|fhJW%J1`EErX+=1vEyffiaQY z-7r;dPKnU})OT z4$h-SV3;csA(GK2put)|zxe?eHwT+9*l3XsV?put#~}dw7)gm)`q#(25dfjx9{adB z&r{r3z%*#Arom%Q3t}rDcN+yS!~r6DZGFjpma;C!i7o&mVxh<-Cad>{aY0$P7Nj;|jERK;#cP!fgN{lF`_wUK7z|?2T8&3IpNg`B5NQSO#(o}U z&fjW4rdBBn5s2;p(?2z8gfP`L%}&XnRiS@!rGK$vHs)(IS5GQ8MX(03fzrjs*?#4 z54tSti6CfYYKLrpfv?10^RG}_!GBSU_RStbt@{E;oIL<0n4s5Y+~N)PCw{I(f7}_; zEP;I|EEpFh9Xxwo5v_lhjuLG?FwIRF)}1D&SLW#MYcE^?Uj|KrI0|5u#BG^w@>HW5 l#`JGjT2VCQKBy&!+avXpR|1Bm1Aq0ZuBx#Tx&1b<{|~G@=I{Uj literal 0 HcmV?d00001 diff --git a/ecosystem-tests/vercel-edge/src/pages/_app.tsx b/ecosystem-tests/vercel-edge/src/pages/_app.tsx new file mode 100644 index 000000000..da826ed16 --- /dev/null +++ b/ecosystem-tests/vercel-edge/src/pages/_app.tsx @@ -0,0 +1,5 @@ +import type { AppProps } from 'next/app'; + +export default function App({ Component, pageProps }: AppProps) { + return ; +} diff --git a/ecosystem-tests/vercel-edge/src/pages/_document.tsx b/ecosystem-tests/vercel-edge/src/pages/_document.tsx new file mode 100644 index 000000000..e1e9cbbb7 --- /dev/null +++ b/ecosystem-tests/vercel-edge/src/pages/_document.tsx @@ -0,0 +1,13 @@ +import { Html, Head, Main, NextScript } from 'next/document'; + +export default function Document() { + return ( + + + +

+ + + + ); +} diff --git a/ecosystem-tests/vercel-edge/src/pages/api/query-params.ts b/ecosystem-tests/vercel-edge/src/pages/api/query-params.ts new file mode 100644 index 000000000..3f3ff4db3 --- /dev/null +++ b/ecosystem-tests/vercel-edge/src/pages/api/query-params.ts @@ -0,0 +1,20 @@ +import { NextRequest, NextResponse } from 'next/server'; +import OpenAI from 'openai'; + +export const config = { + runtime: 'edge', + unstable_allowDynamic: [ + // This is currently required because `qs` uses `side-channel` which depends on this. + // + // Warning: Some features may be broken at runtime because of this. + '/node_modules/function-bind/**', + ], +}; + +export default async (request: NextRequest) => { + const openai = new OpenAI(); + + const result = await openai.fineTunes.listEvents('ft-Gj8mUJrEPe9sIsnxJdbzye0Z', { stream: false }); + + return NextResponse.json(result); +}; diff --git a/ecosystem-tests/vercel-edge/src/pages/api/response.ts b/ecosystem-tests/vercel-edge/src/pages/api/response.ts new file mode 100644 index 000000000..4599bba78 --- /dev/null +++ b/ecosystem-tests/vercel-edge/src/pages/api/response.ts @@ -0,0 +1,22 @@ +import { NextRequest, NextResponse } from 'next/server'; +import OpenAI from 'openai'; + +export const config = { + runtime: 'edge', + unstable_allowDynamic: [ + // This is currently required because `qs` uses `side-channel` which depends on this. + // + // Warning: Some features may be broken at runtime because of this. + '/node_modules/function-bind/**', + ], +}; + +export default async (request: NextRequest) => { + const openai = new OpenAI(); + + const result = await openai.completions.create({ + prompt: 'Say this is a test', + model: 'text-davinci-003', + }); + return NextResponse.json(result); +}; diff --git a/ecosystem-tests/vercel-edge/src/pages/api/streaming.ts b/ecosystem-tests/vercel-edge/src/pages/api/streaming.ts new file mode 100644 index 000000000..42259c479 --- /dev/null +++ b/ecosystem-tests/vercel-edge/src/pages/api/streaming.ts @@ -0,0 +1,30 @@ +import { NextRequest, NextResponse } from 'next/server'; +import OpenAI from 'openai'; + +export const config = { + runtime: 'edge', + unstable_allowDynamic: [ + // This is currently required because `qs` uses `side-channel` which depends on this. + // + // Warning: Some features may be broken at runtime because of this. + '/node_modules/function-bind/**', + ], +}; + +export default async (request: NextRequest) => { + const openai = new OpenAI(); + + const text: string[] = []; + + const stream = await openai.completions.create({ + prompt: 'Say this is a test', + model: 'text-davinci-003', + stream: true, + }); + + for await (const part of stream) { + text.push(part.choices[0]?.text || ''); + } + + return NextResponse.json({ text: text.join('') }); +}; diff --git a/ecosystem-tests/vercel-edge/src/pages/api/transcribe.ts b/ecosystem-tests/vercel-edge/src/pages/api/transcribe.ts new file mode 100644 index 000000000..be1bea6b0 --- /dev/null +++ b/ecosystem-tests/vercel-edge/src/pages/api/transcribe.ts @@ -0,0 +1,25 @@ +import { NextRequest, NextResponse } from 'next/server'; +import OpenAI, { toFile } from 'openai'; + +export const config = { + runtime: 'edge', + unstable_allowDynamic: [ + // This is currently required because `qs` uses `side-channel` which depends on this. + // + // Warning: Some features may be broken at runtime because of this. + '/node_modules/function-bind/**', + ], +}; + +export default async (request: NextRequest) => { + const openai = new OpenAI(); + + const rsp = await fetch('http://github.com/service/https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'); + + const transcription = await openai.audio.transcriptions.create({ + model: 'whisper-1', + file: await toFile(rsp, 'sample-1.mp3'), + }); + + return NextResponse.json(transcription); +}; diff --git a/ecosystem-tests/vercel-edge/src/pages/index.tsx b/ecosystem-tests/vercel-edge/src/pages/index.tsx new file mode 100644 index 000000000..ed3a8e84a --- /dev/null +++ b/ecosystem-tests/vercel-edge/src/pages/index.tsx @@ -0,0 +1,19 @@ +import Head from 'next/head'; + +export default function Home() { + return ( + <> + + Vercel Edge Test + + + + +
+
+

Hello, world!

+
+
+ + ); +} diff --git a/ecosystem-tests/vercel-edge/tsconfig.json b/ecosystem-tests/vercel-edge/tsconfig.json new file mode 100644 index 000000000..71e5e3d1d --- /dev/null +++ b/ecosystem-tests/vercel-edge/tsconfig.json @@ -0,0 +1,23 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "incremental": true, + "paths": { + "~/*": ["./src/*"] + } + }, + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], + "exclude": ["node_modules"] +} diff --git a/ecosystem-tests/vercel-edge/yarn.lock b/ecosystem-tests/vercel-edge/yarn.lock new file mode 100644 index 000000000..20117f94f --- /dev/null +++ b/ecosystem-tests/vercel-edge/yarn.lock @@ -0,0 +1,6359 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@ampproject/remapping@^2.2.0": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" + integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== + dependencies: + "@jridgewell/gen-mapping" "^0.3.0" + "@jridgewell/trace-mapping" "^0.3.9" + +"@babel/code-frame@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658" + integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ== + dependencies: + "@babel/highlight" "^7.22.5" + +"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.5.tgz#b1f6c86a02d85d2dd3368a2b67c09add8cd0c255" + integrity sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA== + +"@babel/core@^7.20.7", "@babel/core@^7.21.8": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.5.tgz#d67d9747ecf26ee7ecd3ebae1ee22225fe902a89" + integrity sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.22.5" + "@babel/generator" "^7.22.5" + "@babel/helper-compilation-targets" "^7.22.5" + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helpers" "^7.22.5" + "@babel/parser" "^7.22.5" + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.5" + "@babel/types" "^7.22.5" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.2" + semver "^6.3.0" + +"@babel/generator@^7.21.5", "@babel/generator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.5.tgz#1e7bf768688acfb05cf30b2369ef855e82d984f7" + integrity sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA== + dependencies: + "@babel/types" "^7.22.5" + "@jridgewell/gen-mapping" "^0.3.2" + "@jridgewell/trace-mapping" "^0.3.17" + jsesc "^2.5.1" + +"@babel/helper-annotate-as-pure@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" + integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz#a3f4758efdd0190d8927fcffd261755937c71878" + integrity sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz#fc7319fc54c5e2fa14b2909cf3c5fd3046813e02" + integrity sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw== + dependencies: + "@babel/compat-data" "^7.22.5" + "@babel/helper-validator-option" "^7.22.5" + browserslist "^4.21.3" + lru-cache "^5.1.1" + semver "^6.3.0" + +"@babel/helper-create-class-features-plugin@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.5.tgz#2192a1970ece4685fbff85b48da2c32fcb130b7c" + integrity sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-member-expression-to-functions" "^7.22.5" + "@babel/helper-optimise-call-expression" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.5" + semver "^6.3.0" + +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.5.tgz#bb2bf0debfe39b831986a4efbf4066586819c6e4" + integrity sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + regexpu-core "^5.3.1" + semver "^6.3.0" + +"@babel/helper-define-polyfill-provider@^0.4.0": + version "0.4.0" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.0.tgz#487053f103110f25b9755c5980e031e93ced24d8" + integrity sha512-RnanLx5ETe6aybRi1cO/edaRH+bNYWaryCEmjDDYyNr4wnSzyOp8T0dWipmqVHKEY3AbVKUom50AKSlj1zmKbg== + dependencies: + "@babel/helper-compilation-targets" "^7.17.7" + "@babel/helper-plugin-utils" "^7.16.7" + debug "^4.1.1" + lodash.debounce "^4.0.8" + resolve "^1.14.2" + semver "^6.1.2" + +"@babel/helper-environment-visitor@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98" + integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q== + +"@babel/helper-function-name@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be" + integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ== + dependencies: + "@babel/template" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/helper-hoist-variables@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" + integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-member-expression-to-functions@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz#0a7c56117cad3372fbf8d2fb4bf8f8d64a1e76b2" + integrity sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-module-imports@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c" + integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-module-transforms@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz#0f65daa0716961b6e96b164034e737f60a80d2ef" + integrity sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw== + dependencies: + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-module-imports" "^7.22.5" + "@babel/helper-simple-access" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.5" + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/helper-optimise-call-expression@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e" + integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" + integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== + +"@babel/helper-remap-async-to-generator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz#14a38141a7bf2165ad38da61d61cf27b43015da2" + integrity sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-wrap-function" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/helper-replace-supers@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz#71bc5fb348856dea9fdc4eafd7e2e49f585145dc" + integrity sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg== + dependencies: + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-member-expression-to-functions" "^7.22.5" + "@babel/helper-optimise-call-expression" "^7.22.5" + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/helper-simple-access@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" + integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-skip-transparent-expression-wrappers@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847" + integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-split-export-declaration@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz#88cf11050edb95ed08d596f7a044462189127a08" + integrity sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-string-parser@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" + integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== + +"@babel/helper-validator-identifier@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193" + integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== + +"@babel/helper-validator-option@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac" + integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw== + +"@babel/helper-wrap-function@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz#44d205af19ed8d872b4eefb0d2fa65f45eb34f06" + integrity sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw== + dependencies: + "@babel/helper-function-name" "^7.22.5" + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/helpers@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.5.tgz#74bb4373eb390d1ceed74a15ef97767e63120820" + integrity sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q== + dependencies: + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/highlight@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.5.tgz#aa6c05c5407a67ebce408162b7ede789b4d22031" + integrity sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw== + dependencies: + "@babel/helper-validator-identifier" "^7.22.5" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/parser@^7.21.8", "@babel/parser@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.5.tgz#721fd042f3ce1896238cf1b341c77eb7dee7dbea" + integrity sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q== + +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz#87245a21cd69a73b0b81bcda98d443d6df08f05e" + integrity sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz#fef09f9499b1f1c930da8a0c419db42167d792ca" + integrity sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/plugin-transform-optional-chaining" "^7.22.5" + +"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": + version "7.21.0-placeholder-for-preset-env.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" + integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== + +"@babel/plugin-proposal-unicode-property-regex@^7.4.4": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e" + integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-syntax-async-generators@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.12.13": + version "7.12.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-class-static-block@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" + integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-dynamic-import@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" + integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-export-namespace-from@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" + integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-syntax-import-assertions@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz#07d252e2aa0bc6125567f742cd58619cb14dce98" + integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-import-attributes@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz#ab840248d834410b829f569f5262b9e517555ecb" + integrity sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-import-meta@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-json-strings@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-jsx@^7.21.4", "@babel/plugin-syntax-jsx@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918" + integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-private-property-in-object@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-top-level-await@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-typescript@^7.20.0", "@babel/plugin-syntax-typescript@^7.21.4", "@babel/plugin-syntax-typescript@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz#aac8d383b062c5072c647a31ef990c1d0af90272" + integrity sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-unicode-sets-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" + integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-arrow-functions@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958" + integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-async-generator-functions@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.5.tgz#7336356d23380eda9a56314974f053a020dab0c3" + integrity sha512-gGOEvFzm3fWoyD5uZq7vVTD57pPJ3PczPUD/xCFGjzBpUosnklmXyKnGQbbbGs1NPNPskFex0j93yKbHt0cHyg== + dependencies: + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.5" + "@babel/plugin-syntax-async-generators" "^7.8.4" + +"@babel/plugin-transform-async-to-generator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775" + integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ== + dependencies: + "@babel/helper-module-imports" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.5" + +"@babel/plugin-transform-block-scoped-functions@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024" + integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-block-scoping@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz#8bfc793b3a4b2742c0983fadc1480d843ecea31b" + integrity sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-class-properties@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz#97a56e31ad8c9dc06a0b3710ce7803d5a48cca77" + integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-class-static-block@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz#3e40c46f048403472d6f4183116d5e46b1bff5ba" + integrity sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + +"@babel/plugin-transform-classes@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.5.tgz#635d4e98da741fad814984639f4c0149eb0135e1" + integrity sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-compilation-targets" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-optimise-call-expression" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.5" + globals "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869" + integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/template" "^7.22.5" + +"@babel/plugin-transform-destructuring@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz#d3aca7438f6c26c78cdd0b0ba920a336001b27cc" + integrity sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-dotall-regex@^7.22.5", "@babel/plugin-transform-dotall-regex@^7.4.4": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165" + integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-duplicate-keys@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz#b6e6428d9416f5f0bba19c70d1e6e7e0b88ab285" + integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-dynamic-import@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz#d6908a8916a810468c4edff73b5b75bda6ad393e" + integrity sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + +"@babel/plugin-transform-exponentiation-operator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a" + integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-export-namespace-from@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz#57c41cb1d0613d22f548fddd8b288eedb9973a5b" + integrity sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + +"@babel/plugin-transform-for-of@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz#ab1b8a200a8f990137aff9a084f8de4099ab173f" + integrity sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-function-name@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143" + integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg== + dependencies: + "@babel/helper-compilation-targets" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-json-strings@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz#14b64352fdf7e1f737eed68de1a1468bd2a77ec0" + integrity sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-json-strings" "^7.8.3" + +"@babel/plugin-transform-literals@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920" + integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-logical-assignment-operators@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz#66ae5f068fd5a9a5dc570df16f56c2a8462a9d6c" + integrity sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-transform-member-expression-literals@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def" + integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-modules-amd@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz#4e045f55dcf98afd00f85691a68fc0780704f526" + integrity sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ== + dependencies: + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-modules-commonjs@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz#7d9875908d19b8c0536085af7b053fd5bd651bfa" + integrity sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA== + dependencies: + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-simple-access" "^7.22.5" + +"@babel/plugin-transform-modules-systemjs@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz#18c31410b5e579a0092638f95c896c2a98a5d496" + integrity sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ== + dependencies: + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.5" + +"@babel/plugin-transform-modules-umd@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz#4694ae40a87b1745e3775b6a7fe96400315d4f98" + integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ== + dependencies: + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f" + integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-new-target@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz#1b248acea54ce44ea06dfd37247ba089fcf9758d" + integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-nullish-coalescing-operator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz#f8872c65776e0b552e0849d7596cddd416c3e381" + integrity sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + +"@babel/plugin-transform-numeric-separator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz#57226a2ed9e512b9b446517ab6fa2d17abb83f58" + integrity sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-transform-object-rest-spread@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz#9686dc3447df4753b0b2a2fae7e8bc33cdc1f2e1" + integrity sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ== + dependencies: + "@babel/compat-data" "^7.22.5" + "@babel/helper-compilation-targets" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.22.5" + +"@babel/plugin-transform-object-super@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c" + integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.5" + +"@babel/plugin-transform-optional-catch-binding@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz#842080be3076703be0eaf32ead6ac8174edee333" + integrity sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-transform-optional-chaining@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.5.tgz#1003762b9c14295501beb41be72426736bedd1e0" + integrity sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +"@babel/plugin-transform-parameters@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz#c3542dd3c39b42c8069936e48717a8d179d63a18" + integrity sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-private-methods@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz#21c8af791f76674420a147ae62e9935d790f8722" + integrity sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-private-property-in-object@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz#07a77f28cbb251546a43d175a1dda4cf3ef83e32" + integrity sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + +"@babel/plugin-transform-property-literals@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766" + integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-regenerator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz#cd8a68b228a5f75fa01420e8cc2fc400f0fc32aa" + integrity sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + regenerator-transform "^0.15.1" + +"@babel/plugin-transform-reserved-words@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz#832cd35b81c287c4bcd09ce03e22199641f964fb" + integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-shorthand-properties@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624" + integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-spread@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b" + integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + +"@babel/plugin-transform-sticky-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa" + integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-template-literals@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff" + integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-typeof-symbol@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz#5e2ba478da4b603af8673ff7c54f75a97b716b34" + integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-typescript@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.5.tgz#5c0f7adfc1b5f38c4dbc8f79b1f0f8074134bd7d" + integrity sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-typescript" "^7.22.5" + +"@babel/plugin-transform-unicode-escapes@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz#ce0c248522b1cb22c7c992d88301a5ead70e806c" + integrity sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-unicode-property-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz#098898f74d5c1e86660dc112057b2d11227f1c81" + integrity sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-unicode-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183" + integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-unicode-sets-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz#77788060e511b708ffc7d42fdfbc5b37c3004e91" + integrity sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/preset-env@^7.21.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.5.tgz#3da66078b181f3d62512c51cf7014392c511504e" + integrity sha512-fj06hw89dpiZzGZtxn+QybifF07nNiZjZ7sazs2aVDcysAZVGjW7+7iFYxg6GLNM47R/thYfLdrXc+2f11Vi9A== + dependencies: + "@babel/compat-data" "^7.22.5" + "@babel/helper-compilation-targets" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-option" "^7.22.5" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.5" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.22.5" + "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-import-assertions" "^7.22.5" + "@babel/plugin-syntax-import-attributes" "^7.22.5" + "@babel/plugin-syntax-import-meta" "^7.10.4" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + "@babel/plugin-syntax-top-level-await" "^7.14.5" + "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" + "@babel/plugin-transform-arrow-functions" "^7.22.5" + "@babel/plugin-transform-async-generator-functions" "^7.22.5" + "@babel/plugin-transform-async-to-generator" "^7.22.5" + "@babel/plugin-transform-block-scoped-functions" "^7.22.5" + "@babel/plugin-transform-block-scoping" "^7.22.5" + "@babel/plugin-transform-class-properties" "^7.22.5" + "@babel/plugin-transform-class-static-block" "^7.22.5" + "@babel/plugin-transform-classes" "^7.22.5" + "@babel/plugin-transform-computed-properties" "^7.22.5" + "@babel/plugin-transform-destructuring" "^7.22.5" + "@babel/plugin-transform-dotall-regex" "^7.22.5" + "@babel/plugin-transform-duplicate-keys" "^7.22.5" + "@babel/plugin-transform-dynamic-import" "^7.22.5" + "@babel/plugin-transform-exponentiation-operator" "^7.22.5" + "@babel/plugin-transform-export-namespace-from" "^7.22.5" + "@babel/plugin-transform-for-of" "^7.22.5" + "@babel/plugin-transform-function-name" "^7.22.5" + "@babel/plugin-transform-json-strings" "^7.22.5" + "@babel/plugin-transform-literals" "^7.22.5" + "@babel/plugin-transform-logical-assignment-operators" "^7.22.5" + "@babel/plugin-transform-member-expression-literals" "^7.22.5" + "@babel/plugin-transform-modules-amd" "^7.22.5" + "@babel/plugin-transform-modules-commonjs" "^7.22.5" + "@babel/plugin-transform-modules-systemjs" "^7.22.5" + "@babel/plugin-transform-modules-umd" "^7.22.5" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" + "@babel/plugin-transform-new-target" "^7.22.5" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.5" + "@babel/plugin-transform-numeric-separator" "^7.22.5" + "@babel/plugin-transform-object-rest-spread" "^7.22.5" + "@babel/plugin-transform-object-super" "^7.22.5" + "@babel/plugin-transform-optional-catch-binding" "^7.22.5" + "@babel/plugin-transform-optional-chaining" "^7.22.5" + "@babel/plugin-transform-parameters" "^7.22.5" + "@babel/plugin-transform-private-methods" "^7.22.5" + "@babel/plugin-transform-private-property-in-object" "^7.22.5" + "@babel/plugin-transform-property-literals" "^7.22.5" + "@babel/plugin-transform-regenerator" "^7.22.5" + "@babel/plugin-transform-reserved-words" "^7.22.5" + "@babel/plugin-transform-shorthand-properties" "^7.22.5" + "@babel/plugin-transform-spread" "^7.22.5" + "@babel/plugin-transform-sticky-regex" "^7.22.5" + "@babel/plugin-transform-template-literals" "^7.22.5" + "@babel/plugin-transform-typeof-symbol" "^7.22.5" + "@babel/plugin-transform-unicode-escapes" "^7.22.5" + "@babel/plugin-transform-unicode-property-regex" "^7.22.5" + "@babel/plugin-transform-unicode-regex" "^7.22.5" + "@babel/plugin-transform-unicode-sets-regex" "^7.22.5" + "@babel/preset-modules" "^0.1.5" + "@babel/types" "^7.22.5" + babel-plugin-polyfill-corejs2 "^0.4.3" + babel-plugin-polyfill-corejs3 "^0.8.1" + babel-plugin-polyfill-regenerator "^0.5.0" + core-js-compat "^3.30.2" + semver "^6.3.0" + +"@babel/preset-modules@^0.1.5": + version "0.1.5" + resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9" + integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" + "@babel/plugin-transform-dotall-regex" "^7.4.4" + "@babel/types" "^7.4.4" + esutils "^2.0.2" + +"@babel/preset-typescript@^7.21.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz#16367d8b01d640e9a507577ed4ee54e0101e51c8" + integrity sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-option" "^7.22.5" + "@babel/plugin-syntax-jsx" "^7.22.5" + "@babel/plugin-transform-modules-commonjs" "^7.22.5" + "@babel/plugin-transform-typescript" "^7.22.5" + +"@babel/regjsgen@^0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" + integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== + +"@babel/runtime@7.12.1": + version "7.12.1" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.1.tgz#b4116a6b6711d010b2dad3b7b6e43bf1b9954740" + integrity sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA== + dependencies: + regenerator-runtime "^0.13.4" + +"@babel/runtime@^7.12.5", "@babel/runtime@^7.8.4": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.5.tgz#8564dd588182ce0047d55d7a75e93921107b57ec" + integrity sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA== + dependencies: + regenerator-runtime "^0.13.11" + +"@babel/template@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.5.tgz#0c8c4d944509875849bd0344ff0050756eefc6ec" + integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw== + dependencies: + "@babel/code-frame" "^7.22.5" + "@babel/parser" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/traverse@^7.21.5", "@babel/traverse@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.5.tgz#44bd276690db6f4940fdb84e1cb4abd2f729ccd1" + integrity sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ== + dependencies: + "@babel/code-frame" "^7.22.5" + "@babel/generator" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.5" + "@babel/parser" "^7.22.5" + "@babel/types" "^7.22.5" + debug "^4.1.0" + globals "^11.1.0" + +"@babel/types@^7.21.5", "@babel/types@^7.22.5", "@babel/types@^7.4.4": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.5.tgz#cd93eeaab025880a3a47ec881f4b096a5b786fbe" + integrity sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA== + dependencies: + "@babel/helper-string-parser" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.5" + to-fast-properties "^2.0.0" + +"@cspotcode/source-map-support@^0.8.0": + version "0.8.1" + resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" + integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== + dependencies: + "@jridgewell/trace-mapping" "0.3.9" + +"@edge-runtime/format@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@edge-runtime/format/-/format-2.1.0.tgz#9ceb39fa350f4619871d6c850d22ca9c5c4eccb7" + integrity sha512-gc2qbYEIIJRczBApBPznVI1c5vZgzrZQOsFZnAxxFiYah9qldHiu1YEitzSvXI8X8ZgvAguuIiyIbpWz17nlXA== + +"@edge-runtime/node-utils@2.0.3": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@edge-runtime/node-utils/-/node-utils-2.0.3.tgz#e4f6e0d761734ca82564363cacae8f0555263871" + integrity sha512-JUSbi5xu/A8+D2t9B9wfirCI1J8n8q0660FfmqZgA+n3RqxD3y7SnamL1sKRE5/AbHsKs9zcqCbK2YDklbc9Bg== + +"@edge-runtime/primitives@2.1.2": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@edge-runtime/primitives/-/primitives-2.1.2.tgz#8ff657f12a7f8c7fc4e3a0c10ec19356ef2d656d" + integrity sha512-SR04SMDybALlhIYIi0hiuEUwIl0b7Sn+RKwQkX6hydg4+AKMzBNDFhj2nqHDD1+xkHArV9EhmJIb6iGjShwSzg== + +"@edge-runtime/primitives@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@edge-runtime/primitives/-/primitives-3.0.1.tgz#36eb40c016bf9f0c7eaa10df7e5e7b59e2114202" + integrity sha512-l5NNDcPkKW4N6qRmB8zzpCF6uRW1S808V/zm72z7b/aWwZUYbmEPPkzyhGAW0aQxLU1pGdZ8u2gNjamdaU6RXw== + +"@edge-runtime/primitives@3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@edge-runtime/primitives/-/primitives-3.0.3.tgz#adc6a4bd34c44faf81c954cf8e5816c7d408a1ea" + integrity sha512-YnfMWMRQABAH8IsnFMJWMW+SyB4ZeYBPnR7V0aqdnew7Pq60cbH5DyFjS/FhiLwvHQk9wBREmXD7PP0HooEQ1A== + +"@edge-runtime/vm@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@edge-runtime/vm/-/vm-3.0.1.tgz#6a81178fca67f89744ce0bc235fa791427191b3b" + integrity sha512-69twXLIcqVx0iNlc1vFqnXgka2CZi2c/QBAmMzXBk0M6mPG+ICCBh2dd+cv1K+HW2pfLuSW+EskkFXWGeCf1Vw== + dependencies: + "@edge-runtime/primitives" "3.0.1" + +"@edge-runtime/vm@3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@edge-runtime/vm/-/vm-3.0.3.tgz#92f1930d1eb8d0ccf6a3c165561cc22b2d9ddff8" + integrity sha512-SPfI1JeIRNs/4EEE2Oc0X6gG3RqjD1TnKu2lwmwFXq0435xgZGKhc3UiKkYAdoMn2dNFD73nlabMKHBRoMRpxg== + dependencies: + "@edge-runtime/primitives" "3.0.3" + +"@emotion/hash@^0.9.0": + version "0.9.1" + resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.9.1.tgz#4ffb0055f7ef676ebc3a5a91fb621393294e2f43" + integrity sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ== + +"@esbuild/android-arm64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz#bafb75234a5d3d1b690e7c2956a599345e84a2fd" + integrity sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA== + +"@esbuild/android-arm64@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.6.tgz#b11bd4e4d031bb320c93c83c137797b2be5b403b" + integrity sha512-YnYSCceN/dUzUr5kdtUzB+wZprCafuD89Hs0Aqv9QSdwhYQybhXTaSTcrl6X/aWThn1a/j0eEpUBGOE7269REg== + +"@esbuild/android-arm@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.19.tgz#5898f7832c2298bc7d0ab53701c57beb74d78b4d" + integrity sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A== + +"@esbuild/android-arm@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.6.tgz#ac6b5674da2149997f6306b3314dae59bbe0ac26" + integrity sha512-bSC9YVUjADDy1gae8RrioINU6e1lCkg3VGVwm0QQ2E1CWcC4gnMce9+B6RpxuSsrsXsk1yojn7sp1fnG8erE2g== + +"@esbuild/android-x64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.19.tgz#658368ef92067866d95fb268719f98f363d13ae1" + integrity sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww== + +"@esbuild/android-x64@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.6.tgz#18c48bf949046638fc209409ff684c6bb35a5462" + integrity sha512-MVcYcgSO7pfu/x34uX9u2QIZHmXAB7dEiLQC5bBl5Ryqtpj9lT2sg3gNDEsrPEmimSJW2FXIaxqSQ501YLDsZQ== + +"@esbuild/darwin-arm64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz#584c34c5991b95d4d48d333300b1a4e2ff7be276" + integrity sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg== + +"@esbuild/darwin-arm64@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.6.tgz#b3fe19af1e4afc849a07c06318124e9c041e0646" + integrity sha512-bsDRvlbKMQMt6Wl08nHtFz++yoZHsyTOxnjfB2Q95gato+Yi4WnRl13oC2/PJJA9yLCoRv9gqT/EYX0/zDsyMA== + +"@esbuild/darwin-x64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz#7751d236dfe6ce136cce343dce69f52d76b7f6cb" + integrity sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw== + +"@esbuild/darwin-x64@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.6.tgz#f4dacd1ab21e17b355635c2bba6a31eba26ba569" + integrity sha512-xh2A5oPrYRfMFz74QXIQTQo8uA+hYzGWJFoeTE8EvoZGHb+idyV4ATaukaUvnnxJiauhs/fPx3vYhU4wiGfosg== + +"@esbuild/freebsd-arm64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz#cacd171665dd1d500f45c167d50c6b7e539d5fd2" + integrity sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ== + +"@esbuild/freebsd-arm64@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.6.tgz#ea4531aeda70b17cbe0e77b0c5c36298053855b4" + integrity sha512-EnUwjRc1inT4ccZh4pB3v1cIhohE2S4YXlt1OvI7sw/+pD+dIE4smwekZlEPIwY6PhU6oDWwITrQQm5S2/iZgg== + +"@esbuild/freebsd-x64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz#0769456eee2a08b8d925d7c00b79e861cb3162e4" + integrity sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ== + +"@esbuild/freebsd-x64@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.6.tgz#1896170b3c9f63c5e08efdc1f8abc8b1ed7af29f" + integrity sha512-Uh3HLWGzH6FwpviUcLMKPCbZUAFzv67Wj5MTwK6jn89b576SR2IbEp+tqUHTr8DIl0iDmBAf51MVaP7pw6PY5Q== + +"@esbuild/linux-arm64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz#38e162ecb723862c6be1c27d6389f48960b68edb" + integrity sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg== + +"@esbuild/linux-arm64@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.6.tgz#967dfb951c6b2de6f2af82e96e25d63747f75079" + integrity sha512-bUR58IFOMJX523aDVozswnlp5yry7+0cRLCXDsxnUeQYJik1DukMY+apBsLOZJblpH+K7ox7YrKrHmJoWqVR9w== + +"@esbuild/linux-arm@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz#1a2cd399c50040184a805174a6d89097d9d1559a" + integrity sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA== + +"@esbuild/linux-arm@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.6.tgz#097a0ee2be39fed3f37ea0e587052961e3bcc110" + integrity sha512-7YdGiurNt7lqO0Bf/U9/arrPWPqdPqcV6JCZda4LZgEn+PTQ5SMEI4MGR52Bfn3+d6bNEGcWFzlIxiQdS48YUw== + +"@esbuild/linux-ia32@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz#e28c25266b036ce1cabca3c30155222841dc035a" + integrity sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ== + +"@esbuild/linux-ia32@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.6.tgz#a38a789d0ed157495a6b5b4469ec7868b59e5278" + integrity sha512-ujp8uoQCM9FRcbDfkqECoARsLnLfCUhKARTP56TFPog8ie9JG83D5GVKjQ6yVrEVdMie1djH86fm98eY3quQkQ== + +"@esbuild/linux-loong64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz#0f887b8bb3f90658d1a0117283e55dbd4c9dcf72" + integrity sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ== + +"@esbuild/linux-loong64@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.6.tgz#ae3983d0fb4057883c8246f57d2518c2af7cf2ad" + integrity sha512-y2NX1+X/Nt+izj9bLoiaYB9YXT/LoaQFYvCkVD77G/4F+/yuVXYCWz4SE9yr5CBMbOxOfBcy/xFL4LlOeNlzYQ== + +"@esbuild/linux-mips64el@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz#f5d2a0b8047ea9a5d9f592a178ea054053a70289" + integrity sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A== + +"@esbuild/linux-mips64el@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.6.tgz#15fbbe04648d944ec660ee5797febdf09a9bd6af" + integrity sha512-09AXKB1HDOzXD+j3FdXCiL/MWmZP0Ex9eR8DLMBVcHorrWJxWmY8Nms2Nm41iRM64WVx7bA/JVHMv081iP2kUA== + +"@esbuild/linux-ppc64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz#876590e3acbd9fa7f57a2c7d86f83717dbbac8c7" + integrity sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg== + +"@esbuild/linux-ppc64@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.6.tgz#38210094e8e1a971f2d1fd8e48462cc65f15ef19" + integrity sha512-AmLhMzkM8JuqTIOhxnX4ubh0XWJIznEynRnZAVdA2mMKE6FAfwT2TWKTwdqMG+qEaeyDPtfNoZRpJbD4ZBv0Tg== + +"@esbuild/linux-riscv64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz#7f49373df463cd9f41dc34f9b2262d771688bf09" + integrity sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA== + +"@esbuild/linux-riscv64@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.6.tgz#bc3c66d5578c3b9951a6ed68763f2a6856827e4a" + integrity sha512-Y4Ri62PfavhLQhFbqucysHOmRamlTVK10zPWlqjNbj2XMea+BOs4w6ASKwQwAiqf9ZqcY9Ab7NOU4wIgpxwoSQ== + +"@esbuild/linux-s390x@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz#e2afd1afcaf63afe2c7d9ceacd28ec57c77f8829" + integrity sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q== + +"@esbuild/linux-s390x@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.6.tgz#d7ba7af59285f63cfce6e5b7f82a946f3e6d67fc" + integrity sha512-SPUiz4fDbnNEm3JSdUW8pBJ/vkop3M1YwZAVwvdwlFLoJwKEZ9L98l3tzeyMzq27CyepDQ3Qgoba44StgbiN5Q== + +"@esbuild/linux-x64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz#8a0e9738b1635f0c53389e515ae83826dec22aa4" + integrity sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw== + +"@esbuild/linux-x64@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.6.tgz#ba51f8760a9b9370a2530f98964be5f09d90fed0" + integrity sha512-a3yHLmOodHrzuNgdpB7peFGPx1iJ2x6m+uDvhP2CKdr2CwOaqEFMeSqYAHU7hG+RjCq8r2NFujcd/YsEsFgTGw== + +"@esbuild/netbsd-x64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz#c29fb2453c6b7ddef9a35e2c18b37bda1ae5c462" + integrity sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q== + +"@esbuild/netbsd-x64@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.6.tgz#e84d6b6fdde0261602c1e56edbb9e2cb07c211b9" + integrity sha512-EanJqcU/4uZIBreTrnbnre2DXgXSa+Gjap7ifRfllpmyAU7YMvaXmljdArptTHmjrkkKm9BK6GH5D5Yo+p6y5A== + +"@esbuild/openbsd-x64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz#95e75a391403cb10297280d524d66ce04c920691" + integrity sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g== + +"@esbuild/openbsd-x64@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.6.tgz#cf4b9fb80ce6d280a673d54a731d9c661f88b083" + integrity sha512-xaxeSunhQRsTNGFanoOkkLtnmMn5QbA0qBhNet/XLVsc+OVkpIWPHcr3zTW2gxVU5YOHFbIHR9ODuaUdNza2Vw== + +"@esbuild/sunos-x64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz#722eaf057b83c2575937d3ffe5aeb16540da7273" + integrity sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg== + +"@esbuild/sunos-x64@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.6.tgz#a6838e246079b24d962b9dcb8d208a3785210a73" + integrity sha512-gnMnMPg5pfMkZvhHee21KbKdc6W3GR8/JuE0Da1kjwpK6oiFU3nqfHuVPgUX2rsOx9N2SadSQTIYV1CIjYG+xw== + +"@esbuild/win32-arm64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz#9aa9dc074399288bdcdd283443e9aeb6b9552b6f" + integrity sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag== + +"@esbuild/win32-arm64@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.6.tgz#ace0186e904d109ea4123317a3ba35befe83ac21" + integrity sha512-G95n7vP1UnGJPsVdKXllAJPtqjMvFYbN20e8RK8LVLhlTiSOH1sd7+Gt7rm70xiG+I5tM58nYgwWrLs6I1jHqg== + +"@esbuild/win32-ia32@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz#95ad43c62ad62485e210f6299c7b2571e48d2b03" + integrity sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw== + +"@esbuild/win32-ia32@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.6.tgz#7fb3f6d4143e283a7f7dffc98a6baf31bb365c7e" + integrity sha512-96yEFzLhq5bv9jJo5JhTs1gI+1cKQ83cUpyxHuGqXVwQtY5Eq54ZEsKs8veKtiKwlrNimtckHEkj4mRh4pPjsg== + +"@esbuild/win32-x64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz#8cfaf2ff603e9aabb910e9c0558c26cf32744061" + integrity sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA== + +"@esbuild/win32-x64@0.17.6": + version "0.17.6" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.6.tgz#563ff4277f1230a006472664fa9278a83dd124da" + integrity sha512-n6d8MOyUrNp6G4VSpRcgjs5xj4A91svJSaiwLIDWVWEsZtpN5FA9NlBbZHDmAJc2e8e6SF4tkBD3HAvPF+7igA== + +"@gar/promisify@^1.0.1": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6" + integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== + +"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": + version "0.3.3" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" + integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/resolve-uri@3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/resolve-uri@^3.0.3": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" + integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== + +"@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + +"@jridgewell/sourcemap-codec@1.4.14": + version "1.4.14" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + +"@jridgewell/trace-mapping@0.3.9": + version "0.3.9" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" + integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== + dependencies: + "@jridgewell/resolve-uri" "^3.0.3" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.18" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" + integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== + dependencies: + "@jridgewell/resolve-uri" "3.1.0" + "@jridgewell/sourcemap-codec" "1.4.14" + +"@jspm/core@^2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@jspm/core/-/core-2.0.1.tgz#3f08c59c60a5f5e994523ed6b0b665ec80adc94e" + integrity sha512-Lg3PnLp0QXpxwLIAuuJboLeRaIhrgJjeuh797QADg3xz8wGLugQOS5DpsE8A6i6Adgzf+bacllkKZG3J0tGfDw== + +"@mapbox/node-pre-gyp@^1.0.5": + version "1.0.10" + resolved "https://registry.yarnpkg.com/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz#8e6735ccebbb1581e5a7e652244cadc8a844d03c" + integrity sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA== + dependencies: + detect-libc "^2.0.0" + https-proxy-agent "^5.0.0" + make-dir "^3.1.0" + node-fetch "^2.6.7" + nopt "^5.0.0" + npmlog "^5.0.1" + rimraf "^3.0.2" + semver "^7.3.5" + tar "^6.1.11" + +"@next/env@13.4.6": + version "13.4.6" + resolved "https://registry.yarnpkg.com/@next/env/-/env-13.4.6.tgz#3f2041c7758660d7255707ae4cb9166519113dea" + integrity sha512-nqUxEtvDqFhmV1/awSg0K2XHNwkftNaiUqCYO9e6+MYmqNObpKVl7OgMkGaQ2SZnFx5YqF0t60ZJTlyJIDAijg== + +"@next/swc-darwin-arm64@13.4.6": + version "13.4.6" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.6.tgz#47485f3deaee6681b4a4036c74bb9c4b728d5ddd" + integrity sha512-ahi6VP98o4HV19rkOXPSUu+ovfHfUxbJQ7VVJ7gL2FnZRr7onEFC1oGQ6NQHpm8CxpIzSSBW79kumlFMOmZVjg== + +"@next/swc-darwin-x64@13.4.6": + version "13.4.6" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.6.tgz#a6a5b232ec0f2079224fb8ed6bf11dc479af1acf" + integrity sha512-13cXxKFsPJIJKzUqrU5XB1mc0xbUgYsRcdH6/rB8c4NMEbWGdtD4QoK9ShN31TZdePpD4k416Ur7p+deMIxnnA== + +"@next/swc-linux-arm64-gnu@13.4.6": + version "13.4.6" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.6.tgz#2a67144e863d9c45fdbd13c7827370e7f2a28405" + integrity sha512-Ti+NMHEjTNktCVxNjeWbYgmZvA2AqMMI2AMlzkXsU7W4pXCMhrryAmAIoo+7YdJbsx01JQWYVxGe62G6DoCLaA== + +"@next/swc-linux-arm64-musl@13.4.6": + version "13.4.6" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.6.tgz#5a191ac3575a70598e9e9c6e7264fc0b8a90b2db" + integrity sha512-OHoC6gO7XfjstgwR+z6UHKlvhqJfyMtNaJidjx3sEcfaDwS7R2lqR5AABi8PuilGgi0BO0O0sCXqLlpp3a0emQ== + +"@next/swc-linux-x64-gnu@13.4.6": + version "13.4.6" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.6.tgz#d38adf842a8b8f9de492454328fd32a2c53350f3" + integrity sha512-zHZxPGkUlpfNJCboUrFqwlwEX5vI9LSN70b8XEb0DYzzlrZyCyOi7hwDp/+3Urm9AB7YCAJkgR5Sp1XBVjHdfQ== + +"@next/swc-linux-x64-musl@13.4.6": + version "13.4.6" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.6.tgz#74c745774358b78be7f958e7a8b7d93936cd6ebc" + integrity sha512-K/Y8lYGTwTpv5ME8PSJxwxLolaDRdVy+lOd9yMRMiQE0BLUhtxtCWC9ypV42uh9WpLjoaD0joOsB9Q6mbrSGJg== + +"@next/swc-win32-arm64-msvc@13.4.6": + version "13.4.6" + resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.6.tgz#1e1e02c175573e64808fc1a7e8650e3e217f1edc" + integrity sha512-U6LtxEUrjBL2tpW+Kr1nHCSJWNeIed7U7l5o7FiKGGwGgIlFi4UHDiLI6TQ2lxi20fAU33CsruV3U0GuzMlXIw== + +"@next/swc-win32-ia32-msvc@13.4.6": + version "13.4.6" + resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.6.tgz#2b528ae3ec7f6e727f4f0d81a1015f63da55c7a6" + integrity sha512-eEBeAqpCfhdPSlCZCayjCiyIllVqy4tcqvm1xmg3BgJG0G5ITiMM4Cw2WVeRSgWDJqQGRyyb+q8Y2ltzhXOWsQ== + +"@next/swc-win32-x64-msvc@13.4.6": + version "13.4.6" + resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.6.tgz#38620bd68267ff13e50ecd432f1822eac51382a8" + integrity sha512-OrZs94AuO3ZS5tnqlyPRNgfWvboXaDQCi5aXGve3o3C+Sj0ctMUV9+Do+0zMvvLRumR8E0PTWKvtz9n5vzIsWw== + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@npmcli/fs@^1.0.0": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-1.1.1.tgz#72f719fe935e687c56a4faecf3c03d06ba593257" + integrity sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ== + dependencies: + "@gar/promisify" "^1.0.1" + semver "^7.3.5" + +"@npmcli/move-file@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.2.tgz#1a82c3e372f7cae9253eb66d72543d6b8685c674" + integrity sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg== + dependencies: + mkdirp "^1.0.4" + rimraf "^3.0.2" + +"@npmcli/package-json@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-2.0.0.tgz#3bbcf4677e21055adbe673d9f08c9f9cde942e4a" + integrity sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA== + dependencies: + json-parse-even-better-errors "^2.3.1" + +"@remix-run/dev@npm:@vercel/remix-run-dev@1.17.0": + version "1.17.0" + resolved "https://registry.yarnpkg.com/@vercel/remix-run-dev/-/remix-run-dev-1.17.0.tgz#9182685bc76fced4f02200bc7e8e19027411e5e0" + integrity sha512-S71dx9sxHi/9Ery9za+ryQYNq5rEA/OeWFaKalHsgA7jYhiJC2U2iP9lV4m251oLXp3K6J8gwY0zF1CWmA7ANA== + dependencies: + "@babel/core" "^7.21.8" + "@babel/generator" "^7.21.5" + "@babel/parser" "^7.21.8" + "@babel/plugin-syntax-jsx" "^7.21.4" + "@babel/plugin-syntax-typescript" "^7.21.4" + "@babel/preset-env" "^7.21.5" + "@babel/preset-typescript" "^7.21.5" + "@babel/traverse" "^7.21.5" + "@babel/types" "^7.21.5" + "@npmcli/package-json" "^2.0.0" + "@remix-run/server-runtime" "1.17.0" + "@vanilla-extract/integration" "^6.2.0" + arg "^5.0.1" + cacache "^15.0.5" + chalk "^4.1.2" + chokidar "^3.5.1" + dotenv "^16.0.0" + esbuild "0.17.6" + esbuild-plugin-polyfill-node "^0.2.0" + execa "5.1.1" + exit-hook "2.2.1" + express "^4.17.1" + fast-glob "3.2.11" + fs-extra "^10.0.0" + get-port "^5.1.1" + gunzip-maybe "^1.4.2" + inquirer "^8.2.1" + jsesc "3.0.2" + json5 "^2.2.2" + lodash "^4.17.21" + lodash.debounce "^4.0.8" + lru-cache "^7.14.1" + minimatch "^9.0.0" + node-fetch "^2.6.9" + ora "^5.4.1" + picomatch "^2.3.1" + postcss "^8.4.19" + postcss-discard-duplicates "^5.1.0" + postcss-load-config "^4.0.1" + postcss-modules "^6.0.0" + prettier "^2.7.1" + pretty-ms "^7.0.1" + proxy-agent "^5.0.0" + react-refresh "^0.14.0" + recast "^0.21.5" + remark-frontmatter "4.0.1" + remark-mdx-frontmatter "^1.0.1" + semver "^7.3.7" + sort-package-json "^1.55.0" + tar-fs "^2.1.1" + tsconfig-paths "^4.0.0" + ws "^7.4.5" + xdm "^2.0.0" + +"@remix-run/router@1.6.3": + version "1.6.3" + resolved "https://registry.yarnpkg.com/@remix-run/router/-/router-1.6.3.tgz#8205baf6e17ef93be35bf62c37d2d594e9be0dad" + integrity sha512-EXJysQ7J3veRECd0kZFQwYYd5sJMcq2O/m60zu1W2l3oVQ9xtub8jTOtYRE0+M2iomyG/W3Ps7+vp2kna0C27Q== + +"@remix-run/server-runtime@1.17.0": + version "1.17.0" + resolved "https://registry.yarnpkg.com/@remix-run/server-runtime/-/server-runtime-1.17.0.tgz#f49168e9e1d1e343afe842305f346a934897d8a2" + integrity sha512-xcUXaOibfIFZlvuyuWouz/t3fYhHCqRoKeGxQFGd1BvQBCmPaiau7B1Ao4aJFKyY7eU/L35KCaGzZBTdIF+d5w== + dependencies: + "@remix-run/router" "1.6.3" + "@web3-storage/multipart-parser" "^1.0.0" + cookie "^0.4.1" + set-cookie-parser "^2.4.8" + source-map "^0.7.3" + +"@rollup/pluginutils@^4.0.0": + version "4.2.1" + resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz#e6c6c3aba0744edce3fb2074922d3776c0af2a6d" + integrity sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ== + dependencies: + estree-walker "^2.0.1" + picomatch "^2.2.2" + +"@sinclair/typebox@0.25.24": + version "0.25.24" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.25.24.tgz#8c7688559979f7079aacaf31aa881c3aa410b718" + integrity sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ== + +"@sindresorhus/is@^4.0.0": + version "4.6.0" + resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f" + integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw== + +"@swc/helpers@0.5.1": + version "0.5.1" + resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.1.tgz#e9031491aa3f26bfcc974a67f48bd456c8a5357a" + integrity sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg== + dependencies: + tslib "^2.4.0" + +"@szmarczak/http-timer@^4.0.5": + version "4.0.6" + resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.6.tgz#b4a914bb62e7c272d4e5989fe4440f812ab1d807" + integrity sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w== + dependencies: + defer-to-connect "^2.0.0" + +"@tootallnate/once@1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" + integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== + +"@ts-morph/common@~0.11.0": + version "0.11.1" + resolved "https://registry.yarnpkg.com/@ts-morph/common/-/common-0.11.1.tgz#281af2a0642b19354d8aa07a0d50dfdb4aa8164e" + integrity sha512-7hWZS0NRpEsNV8vWJzg7FEz6V8MaLNeJOmwmghqUXTpzk16V1LLZhdo+4QvE/+zv4cVci0OviuJFnqhEfoV3+g== + dependencies: + fast-glob "^3.2.7" + minimatch "^3.0.4" + mkdirp "^1.0.4" + path-browserify "^1.0.1" + +"@tsconfig/node10@^1.0.7": + version "1.0.9" + resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2" + integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== + +"@tsconfig/node12@^1.0.7": + version "1.0.11" + resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" + integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== + +"@tsconfig/node14@^1.0.0": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" + integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== + +"@tsconfig/node16@^1.0.2": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" + integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== + +"@types/acorn@^4.0.0": + version "4.0.6" + resolved "https://registry.yarnpkg.com/@types/acorn/-/acorn-4.0.6.tgz#d61ca5480300ac41a7d973dd5b84d0a591154a22" + integrity sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ== + dependencies: + "@types/estree" "*" + +"@types/cacheable-request@^6.0.1": + version "6.0.3" + resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz#a430b3260466ca7b5ca5bfd735693b36e7a9d183" + integrity sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw== + dependencies: + "@types/http-cache-semantics" "*" + "@types/keyv" "^3.1.4" + "@types/node" "*" + "@types/responselike" "^1.0.0" + +"@types/debug@^4.0.0": + version "4.1.8" + resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.8.tgz#cef723a5d0a90990313faec2d1e22aee5eecb317" + integrity sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ== + dependencies: + "@types/ms" "*" + +"@types/estree-jsx@^0.0.1": + version "0.0.1" + resolved "https://registry.yarnpkg.com/@types/estree-jsx/-/estree-jsx-0.0.1.tgz#c36d7a1afeb47a95a8ee0b7bc8bc705db38f919d" + integrity sha512-gcLAYiMfQklDCPjQegGn0TBAn9it05ISEsEhlKQUddIk7o2XDokOcTN7HBO8tznM0D9dGezvHEfRZBfZf6me0A== + dependencies: + "@types/estree" "*" + +"@types/estree-jsx@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@types/estree-jsx/-/estree-jsx-1.0.0.tgz#7bfc979ab9f692b492017df42520f7f765e98df1" + integrity sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ== + dependencies: + "@types/estree" "*" + +"@types/estree@*", "@types/estree@^1.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.1.tgz#aa22750962f3bf0e79d753d3cc067f010c95f194" + integrity sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA== + +"@types/glob@^7.1.1": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.2.0.tgz#bc1b5bf3aa92f25bd5dd39f35c57361bdce5b2eb" + integrity sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA== + dependencies: + "@types/minimatch" "*" + "@types/node" "*" + +"@types/hast@^2.0.0": + version "2.3.4" + resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.4.tgz#8aa5ef92c117d20d974a82bdfb6a648b08c0bafc" + integrity sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g== + dependencies: + "@types/unist" "*" + +"@types/http-cache-semantics@*": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz#0ea7b61496902b95890dc4c3a116b60cb8dae812" + integrity sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ== + +"@types/json-schema@^7.0.6": + version "7.0.12" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb" + integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA== + +"@types/keyv@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz#3ccdb1c6751b0c7e52300bcdacd5bcbf8faa75b6" + integrity sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg== + dependencies: + "@types/node" "*" + +"@types/mdast@^3.0.0": + version "3.0.11" + resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.11.tgz#dc130f7e7d9306124286f6d6cee40cf4d14a3dc0" + integrity sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw== + dependencies: + "@types/unist" "*" + +"@types/mdurl@^1.0.0": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@types/mdurl/-/mdurl-1.0.2.tgz#e2ce9d83a613bacf284c7be7d491945e39e1f8e9" + integrity sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA== + +"@types/minimatch@*": + version "5.1.2" + resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca" + integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA== + +"@types/ms@*": + version "0.7.31" + resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz#31b7ca6407128a3d2bbc27fe2d21b345397f6197" + integrity sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA== + +"@types/node-fetch@2.6.3": + version "2.6.3" + resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.3.tgz#175d977f5e24d93ad0f57602693c435c57ad7e80" + integrity sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w== + dependencies: + "@types/node" "*" + form-data "^3.0.0" + +"@types/node-fetch@^2.6.4": + version "2.6.4" + resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.4.tgz#1bc3a26de814f6bf466b25aeb1473fa1afe6a660" + integrity sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg== + dependencies: + "@types/node" "*" + form-data "^3.0.0" + +"@types/node@*", "@types/node@20.3.1": + version "20.3.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.3.1.tgz#e8a83f1aa8b649377bb1fb5d7bac5cb90e784dfe" + integrity sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg== + +"@types/node@14.18.33": + version "14.18.33" + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.33.tgz#8c29a0036771569662e4635790ffa9e057db379b" + integrity sha512-qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg== + +"@types/node@^18.11.18": + version "18.16.18" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.18.tgz#85da09bafb66d4bc14f7c899185336d0c1736390" + integrity sha512-/aNaQZD0+iSBAGnvvN2Cx92HqE5sZCPZtx2TsK+4nvV23fFe09jVDvpArXr2j9DnYlzuU9WuoykDDc6wqvpNcw== + +"@types/prop-types@*": + version "15.7.5" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" + integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== + +"@types/qs@^6.9.7": + version "6.9.7" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" + integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== + +"@types/react-dom@18.2.6": + version "18.2.6" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.6.tgz#ad621fa71a8db29af7c31b41b2ea3d8a6f4144d1" + integrity sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A== + dependencies: + "@types/react" "*" + +"@types/react@*", "@types/react@18.2.13": + version "18.2.13" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.13.tgz#a98c09bde8b18f80021935b11d2d29ef5f4dcb2f" + integrity sha512-vJ+zElvi/Zn9cVXB5slX2xL8PZodPCwPRDpittQdw43JR2AJ5k3vKdgJJyneV/cYgIbLQUwXa9JVDvUZXGba+Q== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + +"@types/responselike@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.0.tgz#251f4fe7d154d2bad125abe1b429b23afd262e29" + integrity sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA== + dependencies: + "@types/node" "*" + +"@types/scheduler@*": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.3.tgz#cef09e3ec9af1d63d2a6cc5b383a737e24e6dcf5" + integrity sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ== + +"@types/unist@*", "@types/unist@^2.0.0": + version "2.0.6" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" + integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== + +"@vanilla-extract/babel-plugin-debug-ids@^1.0.2": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@vanilla-extract/babel-plugin-debug-ids/-/babel-plugin-debug-ids-1.0.3.tgz#ce07190343b51ed658b385bdce1e79952a4e8526" + integrity sha512-vm4jYu1xhSa6ofQ9AhIpR3DkAp4c+eoR1Rpm8/TQI4DmWbmGbOjYRcqV0aWsfaIlNhN4kFuxFMKBNN9oG6iRzA== + dependencies: + "@babel/core" "^7.20.7" + +"@vanilla-extract/css@^1.10.0": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@vanilla-extract/css/-/css-1.11.1.tgz#0669e0b237d50561d669d8be6246dd601552be1a" + integrity sha512-iLalh4K4sXgkfzsiFUsiek4IY1/N4jtJKdr1ubpyszPE7W7G2v+DAl8KcmKkRA6vS7k5mFNW34e4fNki6T2cbQ== + dependencies: + "@emotion/hash" "^0.9.0" + "@vanilla-extract/private" "^1.0.3" + ahocorasick "1.0.2" + chalk "^4.1.1" + css-what "^6.1.0" + cssesc "^3.0.0" + csstype "^3.0.7" + deep-object-diff "^1.1.9" + deepmerge "^4.2.2" + media-query-parser "^2.0.2" + outdent "^0.8.0" + +"@vanilla-extract/integration@^6.2.0": + version "6.2.1" + resolved "https://registry.yarnpkg.com/@vanilla-extract/integration/-/integration-6.2.1.tgz#e87849ed3d8e9ddd2703b8b8597fdbff08cf62ad" + integrity sha512-+xYJz07G7TFAMZGrOqArOsURG+xcYvqctujEkANjw2McCBvGEK505RxQqOuNiA9Mi9hgGdNp2JedSa94f3eoLg== + dependencies: + "@babel/core" "^7.20.7" + "@babel/plugin-syntax-typescript" "^7.20.0" + "@vanilla-extract/babel-plugin-debug-ids" "^1.0.2" + "@vanilla-extract/css" "^1.10.0" + esbuild "0.17.6" + eval "0.1.6" + find-up "^5.0.0" + javascript-stringify "^2.0.1" + lodash "^4.17.21" + mlly "^1.1.0" + outdent "^0.8.0" + vite "^4.1.4" + vite-node "^0.28.5" + +"@vanilla-extract/private@^1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@vanilla-extract/private/-/private-1.0.3.tgz#7ec72bc2ff6fe51f9d650f962e8d1989b073690f" + integrity sha512-17kVyLq3ePTKOkveHxXuIJZtGYs+cSoev7BlP+Lf4916qfDhk/HBjvlYDe8egrea7LNPHKwSZJK/bzZC+Q6AwQ== + +"@vercel/build-utils@6.7.5": + version "6.7.5" + resolved "https://registry.yarnpkg.com/@vercel/build-utils/-/build-utils-6.7.5.tgz#b35f92f1c3907697f608f8c1ee236fe46c4d11c3" + integrity sha512-nzglYEz9BvZH0lptfTtTVDDD3Dyn31gnBGChOUT7J1jkzlMT1IReuysgJPisaWk4v92Ax5SpZL35I0lOQdfKwQ== + +"@vercel/error-utils@1.0.10": + version "1.0.10" + resolved "https://registry.yarnpkg.com/@vercel/error-utils/-/error-utils-1.0.10.tgz#6530e9c930d5cf4c7f96045ec3a0bccaf2e6b14c" + integrity sha512-nsKy2sy+pjUWyKI1V/XXKspVzHMYgSalmj5+EsKWFXZbnNZicqxNtMR94J8Hs7SB4TQxh0s4KhczJtL59AVGMg== + +"@vercel/gatsby-plugin-vercel-analytics@1.0.10": + version "1.0.10" + resolved "https://registry.yarnpkg.com/@vercel/gatsby-plugin-vercel-analytics/-/gatsby-plugin-vercel-analytics-1.0.10.tgz#05109138b24880fcd81476c78580bb00bea09ed5" + integrity sha512-v329WHdtIce+y7oAmaWRvEx59Xfo0FxlQqK4BJG0u6VWYoKWPaflohDAiehIZf/YHCRVb59ZxnzmMOcm/LR8YQ== + dependencies: + "@babel/runtime" "7.12.1" + web-vitals "0.2.4" + +"@vercel/gatsby-plugin-vercel-builder@1.3.10": + version "1.3.10" + resolved "https://registry.yarnpkg.com/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.10.tgz#8e35c86f29ba43eead006eacfc437bb02bbda863" + integrity sha512-LtmjAUrH+1G4ryyjCCqITvPivEFb6qby7rVGRplb+rtI5RrT/igqz95FrAC70+xpSVsqz4nu3j15NkEIR3woog== + dependencies: + "@sinclair/typebox" "0.25.24" + "@vercel/build-utils" "6.7.5" + "@vercel/node" "2.15.2" + "@vercel/routing-utils" "2.2.1" + esbuild "0.14.47" + etag "1.8.1" + fs-extra "11.1.0" + +"@vercel/go@2.5.1": + version "2.5.1" + resolved "https://registry.yarnpkg.com/@vercel/go/-/go-2.5.1.tgz#4deb7450b6372ec81cf48a1b6c37a2f4e956517d" + integrity sha512-yZGzzGmVXt2Rsy1cR0EDbst0fMhdELQY8c3jXy6/FTWJFG1e/40JYksu+WiRCxRBp8e7zfcxMrv0dN8JWRmbPQ== + +"@vercel/hydrogen@0.0.64": + version "0.0.64" + resolved "https://registry.yarnpkg.com/@vercel/hydrogen/-/hydrogen-0.0.64.tgz#94bf921e393dad723bb824e9e5301d1c37c74f35" + integrity sha512-1rzFB664G6Yzp7j4ezW9hvVjqnaU2BhyUdhchbsxtRuxkMpGgPBZKhjzRQHFvlmkz37XLC658T5Nb1P91b4sBw== + +"@vercel/next@3.8.6": + version "3.8.6" + resolved "https://registry.yarnpkg.com/@vercel/next/-/next-3.8.6.tgz#bfb4381c5fb2a5842b9374b57236043020e8b073" + integrity sha512-q+BxVLAfKFjTcak+z3U0SvYpgsnF8spu3Wz0GdRSVHiZpd1TtmIIp5r5RT5WVJLt4NNgmD4KxLNbvXhwjxOFKA== + +"@vercel/nft@0.22.5": + version "0.22.5" + resolved "https://registry.yarnpkg.com/@vercel/nft/-/nft-0.22.5.tgz#951bd7589ceebdd3e280afcf3a13bdacf83f6b7e" + integrity sha512-mug57Wd1BL7GMj9gXMgMeKUjdqO0e4u+0QLPYMFE1rwdJ+55oPy6lp3nIBCS8gOvigT62UI4QKUL2sGqcoW4Hw== + dependencies: + "@mapbox/node-pre-gyp" "^1.0.5" + "@rollup/pluginutils" "^4.0.0" + acorn "^8.6.0" + async-sema "^3.1.1" + bindings "^1.4.0" + estree-walker "2.0.2" + glob "^7.1.3" + graceful-fs "^4.2.9" + micromatch "^4.0.2" + node-gyp-build "^4.2.2" + resolve-from "^5.0.0" + +"@vercel/node@2.15.2": + version "2.15.2" + resolved "https://registry.yarnpkg.com/@vercel/node/-/node-2.15.2.tgz#7a2280bc89906dbc9f6259fbd9209bd175ccecb9" + integrity sha512-1Dn4hdQY/ErHXOB0+h3I0zIlqAb6/2LRBi+8Od+MYG8ooGKkTsK+j9IPWVBWn6ycBsM0eeNTIhqgYSGTYbMjMw== + dependencies: + "@edge-runtime/node-utils" "2.0.3" + "@edge-runtime/primitives" "2.1.2" + "@edge-runtime/vm" "3.0.1" + "@types/node" "14.18.33" + "@types/node-fetch" "2.6.3" + "@vercel/build-utils" "6.7.5" + "@vercel/error-utils" "1.0.10" + "@vercel/static-config" "2.0.17" + async-listen "3.0.0" + edge-runtime "2.4.3" + esbuild "0.14.47" + exit-hook "2.2.1" + node-fetch "2.6.9" + path-to-regexp "6.2.1" + ts-morph "12.0.0" + ts-node "10.9.1" + typescript "4.9.5" + +"@vercel/python@3.1.60": + version "3.1.60" + resolved "https://registry.yarnpkg.com/@vercel/python/-/python-3.1.60.tgz#88383ac219c33a946d80f111d1c54559052db2fd" + integrity sha512-1aYinyTfejS8Us+sOum+RQPYcre0vF3XoL7ohL170ZCcHA0l35qV0b1slGAmLt3pqaHKYy3g/nkzUhuR8XXIrQ== + +"@vercel/redwood@1.1.15": + version "1.1.15" + resolved "https://registry.yarnpkg.com/@vercel/redwood/-/redwood-1.1.15.tgz#d608378c316cf0944ac108a2b93c4d877bede83c" + integrity sha512-j0XaXe4ZpGVHG7XQSmZ3kza6s+ZtOBfRhnSxA70yCkrvPNN3tZgF3fevSKXizfL9fzVDd7Tdj++SCGWMdGfsyA== + dependencies: + "@vercel/nft" "0.22.5" + "@vercel/routing-utils" "2.2.1" + semver "6.1.1" + +"@vercel/remix-builder@1.8.14": + version "1.8.14" + resolved "https://registry.yarnpkg.com/@vercel/remix-builder/-/remix-builder-1.8.14.tgz#dbe490e9cbdfc5e98c8e483a4acca1e27c8565fd" + integrity sha512-4CnYxCv6rgRxyXGnpGySf+K2rihLgTkMKN9pYJKQJh/VmlBcxqYP9tndDEH8sYtDsdUZuSfuX3ecajGuqb/wPA== + dependencies: + "@remix-run/dev" "npm:@vercel/remix-run-dev@1.17.0" + "@vercel/build-utils" "6.7.5" + "@vercel/nft" "0.22.5" + "@vercel/static-config" "2.0.17" + path-to-regexp "6.2.1" + semver "7.3.8" + ts-morph "12.0.0" + +"@vercel/routing-utils@2.2.1": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@vercel/routing-utils/-/routing-utils-2.2.1.tgz#c33a3859f4927c5f8483cb4455a6fb7cbf21778b" + integrity sha512-kzMZsvToDCDskNRZD71B9UAgstec7ujmlGH8cBEo6F/07VaFeji6GQdgd6Zwnrj+TvzQBggKoPQR64VkVY8Lzw== + dependencies: + path-to-regexp "6.1.0" + optionalDependencies: + ajv "^6.0.0" + +"@vercel/ruby@1.3.76": + version "1.3.76" + resolved "https://registry.yarnpkg.com/@vercel/ruby/-/ruby-1.3.76.tgz#9c41dda3a688a2c4498a12a70e99f2dddf826b42" + integrity sha512-J8I0B7wAn8piGoPhBroBfJWgMEJTMEL/2o8MCoCyWdaE7MRtpXhI10pj8IvcUvAECoGJ+SM1Pm+SvBqtbtZ5FQ== + +"@vercel/static-build@1.3.37": + version "1.3.37" + resolved "https://registry.yarnpkg.com/@vercel/static-build/-/static-build-1.3.37.tgz#5542b5c76ce82b1d7e27b10459ecef3cbbdf841c" + integrity sha512-AkmWV8sqXUqkVj4F7vt7LZ9cRfO57U7he23l3xvykD/xV2ufsuLxwgIS9idM5AeqVh7juJNuTJq+ObIht6OgLw== + dependencies: + "@vercel/gatsby-plugin-vercel-analytics" "1.0.10" + "@vercel/gatsby-plugin-vercel-builder" "1.3.10" + +"@vercel/static-config@2.0.17": + version "2.0.17" + resolved "https://registry.yarnpkg.com/@vercel/static-config/-/static-config-2.0.17.tgz#2198e0a29c3f41adb6f074c99b6d42b19b57b401" + integrity sha512-2f50OTVrN07x7pH+XNW0e7cj7T+Ufg+19+a2N3/XZBjQmV+FaMlmSLiaQ4tBxp2H8lWWHzENua7ZSSQPtRZ3/A== + dependencies: + ajv "8.6.3" + json-schema-to-ts "1.6.4" + ts-morph "12.0.0" + +"@web3-storage/multipart-parser@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@web3-storage/multipart-parser/-/multipart-parser-1.0.0.tgz#6b69dc2a32a5b207ba43e556c25cc136a56659c4" + integrity sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw== + +abbrev@1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + +abort-controller@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" + integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== + dependencies: + event-target-shim "^5.0.0" + +accepts@~1.3.8: + version "1.3.8" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" + integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== + dependencies: + mime-types "~2.1.34" + negotiator "0.6.3" + +acorn-jsx@^5.0.0: + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn-walk@^8.1.1, acorn-walk@^8.2.0: + version "8.2.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" + integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== + +acorn@^8.0.0, acorn@^8.4.1, acorn@^8.6.0, acorn@^8.7.0, acorn@^8.9.0: + version "8.9.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.9.0.tgz#78a16e3b2bcc198c10822786fa6679e245db5b59" + integrity sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ== + +agent-base@6, agent-base@^6.0.0, agent-base@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" + integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== + dependencies: + debug "4" + +agentkeepalive@^4.2.1: + version "4.3.0" + resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.3.0.tgz#bb999ff07412653c1803b3ced35e50729830a255" + integrity sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg== + dependencies: + debug "^4.1.0" + depd "^2.0.0" + humanize-ms "^1.2.1" + +aggregate-error@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" + integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== + dependencies: + clean-stack "^2.0.0" + indent-string "^4.0.0" + +ahocorasick@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/ahocorasick/-/ahocorasick-1.0.2.tgz#9eee93aef9d02bfb476d9b648d9b7a40ef2fd500" + integrity sha512-hCOfMzbFx5IDutmWLAt6MZwOUjIfSM9G9FyVxytmE4Rs/5YDPWQrD/+IR1w+FweD9H2oOZEnv36TmkjhNURBVA== + +ajv@8.6.3: + version "8.6.3" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.6.3.tgz#11a66527761dc3e9a3845ea775d2d3c0414e8764" + integrity sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + +ajv@^6.0.0: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ansi-escapes@^4.2.1: + version "4.3.2" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +"aproba@^1.0.3 || ^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" + integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== + +are-we-there-yet@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz#372e0e7bd279d8e94c653aaa1f67200884bf3e1c" + integrity sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw== + dependencies: + delegates "^1.0.0" + readable-stream "^3.6.0" + +arg@^4.1.0: + version "4.1.3" + resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== + +arg@^5.0.1: + version "5.0.2" + resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" + integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +ast-types@0.15.2: + version "0.15.2" + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.15.2.tgz#39ae4809393c4b16df751ee563411423e85fb49d" + integrity sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg== + dependencies: + tslib "^2.0.1" + +ast-types@^0.13.2: + version "0.13.4" + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.13.4.tgz#ee0d77b343263965ecc3fb62da16e7222b2b6782" + integrity sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w== + dependencies: + tslib "^2.0.1" + +astring@^1.6.0: + version "1.8.6" + resolved "https://registry.yarnpkg.com/astring/-/astring-1.8.6.tgz#2c9c157cf1739d67561c56ba896e6948f6b93731" + integrity sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg== + +async-listen@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/async-listen/-/async-listen-3.0.0.tgz#2e5941390b7d8c753d4dbe94bc6aecbdde52ec5e" + integrity sha512-V+SsTpDqkrWTimiotsyl33ePSjA5/KrithwupuvJ6ztsqPvGv6ge4OredFhPffVXiLN/QUWvE0XcqJaYgt6fOg== + +async-sema@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/async-sema/-/async-sema-3.1.1.tgz#e527c08758a0f8f6f9f15f799a173ff3c40ea808" + integrity sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg== + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== + +babel-plugin-polyfill-corejs2@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.3.tgz#75044d90ba5043a5fb559ac98496f62f3eb668fd" + integrity sha512-bM3gHc337Dta490gg+/AseNB9L4YLHxq1nGKZZSHbhXv4aTYU2MD2cjza1Ru4S6975YLTaL1K8uJf6ukJhhmtw== + dependencies: + "@babel/compat-data" "^7.17.7" + "@babel/helper-define-polyfill-provider" "^0.4.0" + semver "^6.1.1" + +babel-plugin-polyfill-corejs3@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.1.tgz#39248263c38191f0d226f928d666e6db1b4b3a8a" + integrity sha512-ikFrZITKg1xH6pLND8zT14UPgjKHiGLqex7rGEZCH2EvhsneJaJPemmpQaIZV5AL03II+lXylw3UmddDK8RU5Q== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.4.0" + core-js-compat "^3.30.1" + +babel-plugin-polyfill-regenerator@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.0.tgz#e7344d88d9ef18a3c47ded99362ae4a757609380" + integrity sha512-hDJtKjMLVa7Z+LwnTCxoDLQj6wdc+B8dun7ayF2fYieI6OzfuvcLMB32ihJZ4UhCBwNYGl5bg/x/P9cMdnkc2g== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.4.0" + +bail@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/bail/-/bail-2.0.2.tgz#d26f5cd8fe5d6f832a31517b9f7c356040ba6d5d" + integrity sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw== + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base-64@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb" + integrity sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA== + +base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +big.js@^5.2.2: + version "5.2.2" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" + integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +bindings@^1.4.0, bindings@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + +bl@^4.0.3, bl@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + +body-parser@1.20.1: + version "1.20.1" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" + integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== + dependencies: + bytes "3.1.2" + content-type "~1.0.4" + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + http-errors "2.0.0" + iconv-lite "0.4.24" + on-finished "2.4.1" + qs "6.11.0" + raw-body "2.5.1" + type-is "~1.6.18" + unpipe "1.0.0" + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@^3.0.2, braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +browserify-zlib@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" + integrity sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ== + dependencies: + pako "~0.2.0" + +browserslist@^4.21.3, browserslist@^4.21.5: + version "4.21.9" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.9.tgz#e11bdd3c313d7e2a9e87e8b4b0c7872b13897635" + integrity sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg== + dependencies: + caniuse-lite "^1.0.30001503" + electron-to-chromium "^1.4.431" + node-releases "^2.0.12" + update-browserslist-db "^1.0.11" + +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +buffer@^5.5.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + +busboy@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz#966ea36a9502e43cdb9146962523b92f531f6893" + integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA== + dependencies: + streamsearch "^1.1.0" + +bytes@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== + +cac@^6.7.14: + version "6.7.14" + resolved "https://registry.yarnpkg.com/cac/-/cac-6.7.14.tgz#804e1e6f506ee363cb0e3ccbb09cad5dd9870959" + integrity sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ== + +cacache@^15.0.5: + version "15.3.0" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.3.0.tgz#dc85380fb2f556fe3dda4c719bfa0ec875a7f1eb" + integrity sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ== + dependencies: + "@npmcli/fs" "^1.0.0" + "@npmcli/move-file" "^1.0.1" + chownr "^2.0.0" + fs-minipass "^2.0.0" + glob "^7.1.4" + infer-owner "^1.0.4" + lru-cache "^6.0.0" + minipass "^3.1.1" + minipass-collect "^1.0.2" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.2" + mkdirp "^1.0.3" + p-map "^4.0.0" + promise-inflight "^1.0.1" + rimraf "^3.0.2" + ssri "^8.0.1" + tar "^6.0.2" + unique-filename "^1.1.1" + +cacheable-lookup@^5.0.3: + version "5.0.4" + resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz#5a6b865b2c44357be3d5ebc2a467b032719a7005" + integrity sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA== + +cacheable-request@^7.0.2: + version "7.0.4" + resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.4.tgz#7a33ebf08613178b403635be7b899d3e69bbe817" + integrity sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg== + dependencies: + clone-response "^1.0.2" + get-stream "^5.1.0" + http-cache-semantics "^4.0.0" + keyv "^4.0.0" + lowercase-keys "^2.0.0" + normalize-url "^6.0.1" + responselike "^2.0.0" + +call-bind@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +caniuse-lite@^1.0.30001406, caniuse-lite@^1.0.30001503: + version "1.0.30001506" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001506.tgz#35bd814b310a487970c585430e9e80ee23faf14b" + integrity sha512-6XNEcpygZMCKaufIcgpQNZNf00GEqc7VQON+9Rd0K1bMYo8xhMZRAo5zpbnbMNizi4YNgIDAFrdykWsvY3H4Hw== + +chalk@^2.0.0: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +character-entities-html4@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-2.1.0.tgz#1f1adb940c971a4b22ba39ddca6b618dc6e56b2b" + integrity sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA== + +character-entities-legacy@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz#76bc83a90738901d7bc223a9e93759fdd560125b" + integrity sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ== + +character-entities@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-2.0.2.tgz#2d09c2e72cd9523076ccb21157dff66ad43fcc22" + integrity sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ== + +character-reference-invalid@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz#85c66b041e43b47210faf401278abf808ac45cb9" + integrity sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw== + +chardet@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== + +charenc@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" + integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA== + +chokidar@^3.5.1: + version "3.5.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +chownr@^1.1.1: + version "1.1.4" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" + integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== + +chownr@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" + integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== + +clean-stack@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== + +cli-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== + dependencies: + restore-cursor "^3.1.0" + +cli-spinners@^2.5.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.0.tgz#5881d0ad96381e117bbe07ad91f2008fe6ffd8db" + integrity sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g== + +cli-width@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" + integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== + +client-only@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/client-only/-/client-only-0.0.1.tgz#38bba5d403c41ab150bff64a95c85013cf73bca1" + integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA== + +clone-response@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz#af2032aa47816399cf5f0a1d0db902f517abb8c3" + integrity sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA== + dependencies: + mimic-response "^1.0.0" + +clone@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== + +code-block-writer@^10.1.1: + version "10.1.1" + resolved "https://registry.yarnpkg.com/code-block-writer/-/code-block-writer-10.1.1.tgz#ad5684ed4bfb2b0783c8b131281ae84ee640a42f" + integrity sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw== + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +color-support@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" + integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== + +combined-stream@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +comma-separated-tokens@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz#4e89c9458acb61bc8fef19f4529973b2392839ee" + integrity sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +console-control-strings@^1.0.0, console-control-strings@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== + +content-disposition@0.5.4: + version "0.5.4" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" + integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== + dependencies: + safe-buffer "5.2.1" + +content-type@~1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" + integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== + +convert-hrtime@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/convert-hrtime/-/convert-hrtime-3.0.0.tgz#62c7593f5809ca10be8da858a6d2f702bcda00aa" + integrity sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA== + +convert-source-map@^1.7.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== + +cookie@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" + integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== + +cookie@^0.4.1: + version "0.4.2" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432" + integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA== + +core-js-compat@^3.30.1, core-js-compat@^3.30.2: + version "3.31.0" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.31.0.tgz#4030847c0766cc0e803dcdfb30055d7ef2064bf1" + integrity sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw== + dependencies: + browserslist "^4.21.5" + +core-util-is@~1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + +create-require@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" + integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== + +cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypt@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" + integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow== + +css-what@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" + integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== + +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + +csstype@^3.0.2, csstype@^3.0.7: + version "3.1.2" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" + integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== + +data-uri-to-buffer@3: + version "3.0.1" + resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz#594b8973938c5bc2c33046535785341abc4f3636" + integrity sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og== + +deasync@^0.1.0: + version "0.1.28" + resolved "https://registry.yarnpkg.com/deasync/-/deasync-0.1.28.tgz#9b447b79b3f822432f0ab6a8614c0062808b5ad2" + integrity sha512-QqLF6inIDwiATrfROIyQtwOQxjZuek13WRYZ7donU5wJPLoP67MnYxA6QtqdvdBy2mMqv5m3UefBVdJjvevOYg== + dependencies: + bindings "^1.5.0" + node-addon-api "^1.7.1" + +debug@2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@4, debug@^4.0.0, debug@^4.1.0, debug@^4.1.1, debug@^4.3.4: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +decode-named-character-reference@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz#daabac9690874c394c81e4162a0304b35d824f0e" + integrity sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg== + dependencies: + character-entities "^2.0.0" + +decompress-response@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" + integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== + dependencies: + mimic-response "^3.1.0" + +deep-is@~0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +deep-object-diff@^1.1.9: + version "1.1.9" + resolved "https://registry.yarnpkg.com/deep-object-diff/-/deep-object-diff-1.1.9.tgz#6df7ef035ad6a0caa44479c536ed7b02570f4595" + integrity sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA== + +deepmerge@^4.2.2: + version "4.3.1" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" + integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== + +defaults@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" + integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== + dependencies: + clone "^1.0.2" + +defer-to-connect@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587" + integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg== + +degenerator@^3.0.2: + version "3.0.4" + resolved "https://registry.yarnpkg.com/degenerator/-/degenerator-3.0.4.tgz#07ccf95bc11044a37a6efc2f66029fb636e31f24" + integrity sha512-Z66uPeBfHZAHVmue3HPfyKu2Q0rC2cRxbTOsvmU/po5fvvcx27W4mIu9n0PUlQih4oUYvcG1BsbtVv8x7KDOSw== + dependencies: + ast-types "^0.13.2" + escodegen "^1.8.1" + esprima "^4.0.0" + vm2 "^3.9.17" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== + +depd@2.0.0, depd@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + +dequal@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" + integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== + +destroy@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" + integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== + +detect-indent@^6.0.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" + integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== + +detect-libc@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.1.tgz#e1897aa88fa6ad197862937fbc0441ef352ee0cd" + integrity sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w== + +detect-newline@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" + integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== + +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + +diff@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/diff/-/diff-5.1.0.tgz#bc52d298c5ea8df9194800224445ed43ffc87e40" + integrity sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw== + +digest-fetch@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/digest-fetch/-/digest-fetch-1.3.0.tgz#898e69264d00012a23cf26e8a3e40320143fc661" + integrity sha512-CGJuv6iKNM7QyZlM2T3sPAdZWd/p9zQiRNS9G+9COUCwzWFTs0Xp8NF5iePx7wtvhDykReiRRrSeNb4oMmB8lA== + dependencies: + base-64 "^0.1.0" + md5 "^2.3.0" + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +dotenv@^16.0.0: + version "16.3.1" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.3.1.tgz#369034de7d7e5b120972693352a3bf112172cc3e" + integrity sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ== + +duplexify@^3.5.0, duplexify@^3.6.0: + version "3.7.1" + resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" + integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== + dependencies: + end-of-stream "^1.0.0" + inherits "^2.0.1" + readable-stream "^2.0.0" + stream-shift "^1.0.0" + +edge-runtime@2.4.3, edge-runtime@^2.4.3: + version "2.4.3" + resolved "https://registry.yarnpkg.com/edge-runtime/-/edge-runtime-2.4.3.tgz#8fed85fb061dcb1b443ee0bc5f46a2369b1eb5f6" + integrity sha512-Amv/P+OJhxopvoVXFr7UXAKheBpdLeCcdR5Vw4GSdNFDWVny9sioQbczjEKPLER5WsMXl17P+llS011Xftducw== + dependencies: + "@edge-runtime/format" "2.1.0" + "@edge-runtime/vm" "3.0.3" + async-listen "3.0.0" + mri "1.2.0" + picocolors "1.0.0" + pretty-bytes "5.6.0" + pretty-ms "7.0.1" + signal-exit "4.0.2" + time-span "4.0.0" + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== + +electron-to-chromium@^1.4.431: + version "1.4.435" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.435.tgz#761c34300603b9f1234f0b6155870d3002435db6" + integrity sha512-B0CBWVFhvoQCW/XtjRzgrmqcgVWg6RXOEM/dK59+wFV93BFGR6AeNKc4OyhM+T3IhJaOOG8o/V+33Y2mwJWtzw== + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +emojis-list@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" + integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== + +encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== + +end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: + version "1.4.4" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + dependencies: + once "^1.4.0" + +esbuild-android-64@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild-android-64/-/esbuild-android-64-0.14.47.tgz#ef95b42c67bcf4268c869153fa3ad1466c4cea6b" + integrity sha512-R13Bd9+tqLVFndncMHssZrPWe6/0Kpv2/dt4aA69soX4PRxlzsVpCvoJeFE8sOEoeVEiBkI0myjlkDodXlHa0g== + +esbuild-android-arm64@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild-android-arm64/-/esbuild-android-arm64-0.14.47.tgz#4ebd7ce9fb250b4695faa3ee46fd3b0754ecd9e6" + integrity sha512-OkwOjj7ts4lBp/TL6hdd8HftIzOy/pdtbrNA4+0oVWgGG64HrdVzAF5gxtJufAPOsEjkyh1oIYvKAUinKKQRSQ== + +esbuild-darwin-64@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild-darwin-64/-/esbuild-darwin-64-0.14.47.tgz#e0da6c244f497192f951807f003f6a423ed23188" + integrity sha512-R6oaW0y5/u6Eccti/TS6c/2c1xYTb1izwK3gajJwi4vIfNs1s8B1dQzI1UiC9T61YovOQVuePDcfqHLT3mUZJA== + +esbuild-darwin-arm64@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.47.tgz#cd40fd49a672fca581ed202834239dfe540a9028" + integrity sha512-seCmearlQyvdvM/noz1L9+qblC5vcBrhUaOoLEDDoLInF/VQ9IkobGiLlyTPYP5dW1YD4LXhtBgOyevoIHGGnw== + +esbuild-freebsd-64@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.47.tgz#8da6a14c095b29c01fc8087a16cb7906debc2d67" + integrity sha512-ZH8K2Q8/Ux5kXXvQMDsJcxvkIwut69KVrYQhza/ptkW50DC089bCVrJZZ3sKzIoOx+YPTrmsZvqeZERjyYrlvQ== + +esbuild-freebsd-arm64@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.47.tgz#ad31f9c92817ff8f33fd253af7ab5122dc1b83f6" + integrity sha512-ZJMQAJQsIOhn3XTm7MPQfCzEu5b9STNC+s90zMWe2afy9EwnHV7Ov7ohEMv2lyWlc2pjqLW8QJnz2r0KZmeAEQ== + +esbuild-linux-32@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild-linux-32/-/esbuild-linux-32-0.14.47.tgz#de085e4db2e692ea30c71208ccc23fdcf5196c58" + integrity sha512-FxZOCKoEDPRYvq300lsWCTv1kcHgiiZfNrPtEhFAiqD7QZaXrad8LxyJ8fXGcWzIFzRiYZVtB3ttvITBvAFhKw== + +esbuild-linux-64@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild-linux-64/-/esbuild-linux-64-0.14.47.tgz#2a9321bbccb01f01b04cebfcfccbabeba3658ba1" + integrity sha512-nFNOk9vWVfvWYF9YNYksZptgQAdstnDCMtR6m42l5Wfugbzu11VpMCY9XrD4yFxvPo9zmzcoUL/88y0lfJZJJw== + +esbuild-linux-arm64@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.47.tgz#b9da7b6fc4b0ca7a13363a0c5b7bb927e4bc535a" + integrity sha512-ywfme6HVrhWcevzmsufjd4iT3PxTfCX9HOdxA7Hd+/ZM23Y9nXeb+vG6AyA6jgq/JovkcqRHcL9XwRNpWG6XRw== + +esbuild-linux-arm@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild-linux-arm/-/esbuild-linux-arm-0.14.47.tgz#56fec2a09b9561c337059d4af53625142aded853" + integrity sha512-ZGE1Bqg/gPRXrBpgpvH81tQHpiaGxa8c9Rx/XOylkIl2ypLuOcawXEAo8ls+5DFCcRGt/o3sV+PzpAFZobOsmA== + +esbuild-linux-mips64le@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.47.tgz#9db21561f8f22ed79ef2aedb7bbef082b46cf823" + integrity sha512-mg3D8YndZ1LvUiEdDYR3OsmeyAew4MA/dvaEJxvyygahWmpv1SlEEnhEZlhPokjsUMfRagzsEF/d/2XF+kTQGg== + +esbuild-linux-ppc64le@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.47.tgz#dc3a3da321222b11e96e50efafec9d2de408198b" + integrity sha512-WER+f3+szmnZiWoK6AsrTKGoJoErG2LlauSmk73LEZFQ/iWC+KhhDsOkn1xBUpzXWsxN9THmQFltLoaFEH8F8w== + +esbuild-linux-riscv64@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.47.tgz#9bd6dcd3dca6c0357084ecd06e1d2d4bf105335f" + integrity sha512-1fI6bP3A3rvI9BsaaXbMoaOjLE3lVkJtLxsgLHqlBhLlBVY7UqffWBvkrX/9zfPhhVMd9ZRFiaqXnB1T7BsL2g== + +esbuild-linux-s390x@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.47.tgz#a458af939b52f2cd32fc561410d441a51f69d41f" + integrity sha512-eZrWzy0xFAhki1CWRGnhsHVz7IlSKX6yT2tj2Eg8lhAwlRE5E96Hsb0M1mPSE1dHGpt1QVwwVivXIAacF/G6mw== + +esbuild-netbsd-64@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.47.tgz#6388e785d7e7e4420cb01348d7483ab511b16aa8" + integrity sha512-Qjdjr+KQQVH5Q2Q1r6HBYswFTToPpss3gqCiSw2Fpq/ua8+eXSQyAMG+UvULPqXceOwpnPo4smyZyHdlkcPppQ== + +esbuild-openbsd-64@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.47.tgz#309af806db561aa886c445344d1aacab850dbdc5" + integrity sha512-QpgN8ofL7B9z8g5zZqJE+eFvD1LehRlxr25PBkjyyasakm4599iroUpaj96rdqRlO2ShuyqwJdr+oNqWwTUmQw== + +esbuild-plugin-polyfill-node@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/esbuild-plugin-polyfill-node/-/esbuild-plugin-polyfill-node-0.2.0.tgz#26a3572c6b32bee126319ebdb4fa3ab584e30106" + integrity sha512-rpCoK4mag0nehBtFlFMLSuL9bNBLEh8h3wZ/FsrJEDompA/AwOqInx6Xow01+CXAcvZYhkoJ0SIZiS37qkecDA== + dependencies: + "@jspm/core" "^2.0.1" + import-meta-resolve "^2.2.2" + +esbuild-sunos-64@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.14.47.tgz#3f19612dcdb89ba6c65283a7ff6e16f8afbf8aaa" + integrity sha512-uOeSgLUwukLioAJOiGYm3kNl+1wJjgJA8R671GYgcPgCx7QR73zfvYqXFFcIO93/nBdIbt5hd8RItqbbf3HtAQ== + +esbuild-windows-32@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild-windows-32/-/esbuild-windows-32-0.14.47.tgz#a92d279c8458d5dc319abcfeb30aa49e8f2e6f7f" + integrity sha512-H0fWsLTp2WBfKLBgwYT4OTfFly4Im/8B5f3ojDv1Kx//kiubVY0IQunP2Koc/fr/0wI7hj3IiBDbSrmKlrNgLQ== + +esbuild-windows-64@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild-windows-64/-/esbuild-windows-64-0.14.47.tgz#2564c3fcf0c23d701edb71af8c52d3be4cec5f8a" + integrity sha512-/Pk5jIEH34T68r8PweKRi77W49KwanZ8X6lr3vDAtOlH5EumPE4pBHqkCUdELanvsT14yMXLQ/C/8XPi1pAtkQ== + +esbuild-windows-arm64@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.47.tgz#86d9db1a22d83360f726ac5fba41c2f625db6878" + integrity sha512-HFSW2lnp62fl86/qPQlqw6asIwCnEsEoNIL1h2uVMgakddf+vUuMcCbtUY1i8sst7KkgHrVKCJQB33YhhOweCQ== + +esbuild@0.14.47: + version "0.14.47" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.14.47.tgz#0d6415f6bd8eb9e73a58f7f9ae04c5276cda0e4d" + integrity sha512-wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA== + optionalDependencies: + esbuild-android-64 "0.14.47" + esbuild-android-arm64 "0.14.47" + esbuild-darwin-64 "0.14.47" + esbuild-darwin-arm64 "0.14.47" + esbuild-freebsd-64 "0.14.47" + esbuild-freebsd-arm64 "0.14.47" + esbuild-linux-32 "0.14.47" + esbuild-linux-64 "0.14.47" + esbuild-linux-arm "0.14.47" + esbuild-linux-arm64 "0.14.47" + esbuild-linux-mips64le "0.14.47" + esbuild-linux-ppc64le "0.14.47" + esbuild-linux-riscv64 "0.14.47" + esbuild-linux-s390x "0.14.47" + esbuild-netbsd-64 "0.14.47" + esbuild-openbsd-64 "0.14.47" + esbuild-sunos-64 "0.14.47" + esbuild-windows-32 "0.14.47" + esbuild-windows-64 "0.14.47" + esbuild-windows-arm64 "0.14.47" + +esbuild@0.17.6: + version "0.17.6" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.6.tgz#bbccd4433629deb6e0a83860b3b61da120ba4e01" + integrity sha512-TKFRp9TxrJDdRWfSsSERKEovm6v30iHnrjlcGhLBOtReE28Yp1VSBRfO3GTaOFMoxsNerx4TjrhzSuma9ha83Q== + optionalDependencies: + "@esbuild/android-arm" "0.17.6" + "@esbuild/android-arm64" "0.17.6" + "@esbuild/android-x64" "0.17.6" + "@esbuild/darwin-arm64" "0.17.6" + "@esbuild/darwin-x64" "0.17.6" + "@esbuild/freebsd-arm64" "0.17.6" + "@esbuild/freebsd-x64" "0.17.6" + "@esbuild/linux-arm" "0.17.6" + "@esbuild/linux-arm64" "0.17.6" + "@esbuild/linux-ia32" "0.17.6" + "@esbuild/linux-loong64" "0.17.6" + "@esbuild/linux-mips64el" "0.17.6" + "@esbuild/linux-ppc64" "0.17.6" + "@esbuild/linux-riscv64" "0.17.6" + "@esbuild/linux-s390x" "0.17.6" + "@esbuild/linux-x64" "0.17.6" + "@esbuild/netbsd-x64" "0.17.6" + "@esbuild/openbsd-x64" "0.17.6" + "@esbuild/sunos-x64" "0.17.6" + "@esbuild/win32-arm64" "0.17.6" + "@esbuild/win32-ia32" "0.17.6" + "@esbuild/win32-x64" "0.17.6" + +esbuild@^0.17.5: + version "0.17.19" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.19.tgz#087a727e98299f0462a3d0bcdd9cd7ff100bd955" + integrity sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw== + optionalDependencies: + "@esbuild/android-arm" "0.17.19" + "@esbuild/android-arm64" "0.17.19" + "@esbuild/android-x64" "0.17.19" + "@esbuild/darwin-arm64" "0.17.19" + "@esbuild/darwin-x64" "0.17.19" + "@esbuild/freebsd-arm64" "0.17.19" + "@esbuild/freebsd-x64" "0.17.19" + "@esbuild/linux-arm" "0.17.19" + "@esbuild/linux-arm64" "0.17.19" + "@esbuild/linux-ia32" "0.17.19" + "@esbuild/linux-loong64" "0.17.19" + "@esbuild/linux-mips64el" "0.17.19" + "@esbuild/linux-ppc64" "0.17.19" + "@esbuild/linux-riscv64" "0.17.19" + "@esbuild/linux-s390x" "0.17.19" + "@esbuild/linux-x64" "0.17.19" + "@esbuild/netbsd-x64" "0.17.19" + "@esbuild/openbsd-x64" "0.17.19" + "@esbuild/sunos-x64" "0.17.19" + "@esbuild/win32-arm64" "0.17.19" + "@esbuild/win32-ia32" "0.17.19" + "@esbuild/win32-x64" "0.17.19" + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +escodegen@^1.8.1: + version "1.14.3" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" + integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== + dependencies: + esprima "^4.0.1" + estraverse "^4.2.0" + esutils "^2.0.2" + optionator "^0.8.1" + optionalDependencies: + source-map "~0.6.1" + +esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +estraverse@^4.2.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estree-util-attach-comments@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/estree-util-attach-comments/-/estree-util-attach-comments-2.1.1.tgz#ee44f4ff6890ee7dfb3237ac7810154c94c63f84" + integrity sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w== + dependencies: + "@types/estree" "^1.0.0" + +estree-util-build-jsx@^2.0.0: + version "2.2.2" + resolved "https://registry.yarnpkg.com/estree-util-build-jsx/-/estree-util-build-jsx-2.2.2.tgz#32f8a239fb40dc3f3dca75bb5dcf77a831e4e47b" + integrity sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg== + dependencies: + "@types/estree-jsx" "^1.0.0" + estree-util-is-identifier-name "^2.0.0" + estree-walker "^3.0.0" + +estree-util-is-identifier-name@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-1.1.0.tgz#2e3488ea06d9ea2face116058864f6370b37456d" + integrity sha512-OVJZ3fGGt9By77Ix9NhaRbzfbDV/2rx9EP7YIDJTmsZSEc5kYn2vWcNccYyahJL2uAQZK2a5Or2i0wtIKTPoRQ== + +estree-util-is-identifier-name@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz#fb70a432dcb19045e77b05c8e732f1364b4b49b2" + integrity sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ== + +estree-util-value-to-estree@^1.0.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/estree-util-value-to-estree/-/estree-util-value-to-estree-1.3.0.tgz#1d3125594b4d6680f666644491e7ac1745a3df49" + integrity sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw== + dependencies: + is-plain-obj "^3.0.0" + +estree-util-visit@^1.0.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/estree-util-visit/-/estree-util-visit-1.2.1.tgz#8bc2bc09f25b00827294703835aabee1cc9ec69d" + integrity sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw== + dependencies: + "@types/estree-jsx" "^1.0.0" + "@types/unist" "^2.0.0" + +estree-walker@2.0.2, estree-walker@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" + integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== + +estree-walker@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-3.0.3.tgz#67c3e549ec402a487b4fc193d1953a524752340d" + integrity sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g== + dependencies: + "@types/estree" "^1.0.0" + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +etag@1.8.1, etag@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== + +eval@0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/eval/-/eval-0.1.6.tgz#9620d7d8c85515e97e6b47c5814f46ae381cb3cc" + integrity sha512-o0XUw+5OGkXw4pJZzQoXUk+H87DHuC+7ZE//oSrRGtatTmr12oTnLfg6QOq9DyTt0c/p4TwzgmkKrBzWTSizyQ== + dependencies: + require-like ">= 0.1.1" + +event-target-shim@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" + integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== + +execa@5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.0" + human-signals "^2.1.0" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.1" + onetime "^5.1.2" + signal-exit "^3.0.3" + strip-final-newline "^2.0.0" + +exit-hook@2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-2.2.1.tgz#007b2d92c6428eda2b76e7016a34351586934593" + integrity sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw== + +express@^4.17.1: + version "4.18.2" + resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59" + integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ== + dependencies: + accepts "~1.3.8" + array-flatten "1.1.1" + body-parser "1.20.1" + content-disposition "0.5.4" + content-type "~1.0.4" + cookie "0.5.0" + cookie-signature "1.0.6" + debug "2.6.9" + depd "2.0.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "1.2.0" + fresh "0.5.2" + http-errors "2.0.0" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "2.4.1" + parseurl "~1.3.3" + path-to-regexp "0.1.7" + proxy-addr "~2.0.7" + qs "6.11.0" + range-parser "~1.2.1" + safe-buffer "5.2.1" + send "0.18.0" + serve-static "1.15.0" + setprototypeof "1.2.0" + statuses "2.0.1" + type-is "~1.6.18" + utils-merge "1.0.1" + vary "~1.1.2" + +extend@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +external-editor@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" + integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== + dependencies: + chardet "^0.7.0" + iconv-lite "^0.4.24" + tmp "^0.0.33" + +fast-deep-equal@^3.1.1: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-glob@3.2.11: + version "3.2.11" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9" + integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-glob@^3.0.3, fast-glob@^3.2.7: + version "3.2.12" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" + integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@~2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fastq@^1.6.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" + integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== + dependencies: + reusify "^1.0.4" + +fault@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/fault/-/fault-2.0.1.tgz#d47ca9f37ca26e4bd38374a7c500b5a384755b6c" + integrity sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ== + dependencies: + format "^0.2.0" + +figures@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" + integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== + dependencies: + escape-string-regexp "^1.0.5" + +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + +file-uri-to-path@2: + version "2.0.0" + resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-2.0.0.tgz#7b415aeba227d575851e0a5b0c640d7656403fba" + integrity sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg== + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +finalhandler@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" + integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "2.4.1" + parseurl "~1.3.3" + statuses "2.0.1" + unpipe "~1.0.0" + +find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +form-data-encoder@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-1.7.2.tgz#1f1ae3dccf58ed4690b86d87e4f57c654fbab040" + integrity sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A== + +form-data@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" + integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +format@^0.2.0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b" + integrity sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww== + +formdata-node@^4.3.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/formdata-node/-/formdata-node-4.4.1.tgz#23f6a5cb9cb55315912cbec4ff7b0f59bbd191e2" + integrity sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ== + dependencies: + node-domexception "1.0.0" + web-streams-polyfill "4.0.0-beta.3" + +forwarded@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" + integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== + +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== + +fs-constants@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" + integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== + +fs-extra@11.1.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.1.0.tgz#5784b102104433bb0e090f48bfc4a30742c357ed" + integrity sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-extra@^10.0.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" + integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-extra@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" + integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-minipass@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" + integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== + dependencies: + minipass "^3.0.0" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +ftp@^0.3.10: + version "0.3.10" + resolved "https://registry.yarnpkg.com/ftp/-/ftp-0.3.10.tgz#9197d861ad8142f3e63d5a83bfe4c59f7330885d" + integrity sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ== + dependencies: + readable-stream "1.1.x" + xregexp "2.0.0" + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +gauge@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-3.0.2.tgz#03bf4441c044383908bcfa0656ad91803259b395" + integrity sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q== + dependencies: + aproba "^1.0.3 || ^2.0.0" + color-support "^1.1.2" + console-control-strings "^1.0.0" + has-unicode "^2.0.1" + object-assign "^4.1.1" + signal-exit "^3.0.0" + string-width "^4.2.3" + strip-ansi "^6.0.1" + wide-align "^1.1.2" + +generic-names@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/generic-names/-/generic-names-4.0.0.tgz#0bd8a2fd23fe8ea16cbd0a279acd69c06933d9a3" + integrity sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A== + dependencies: + loader-utils "^3.2.0" + +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +get-intrinsic@^1.0.2: + version "1.2.1" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" + integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-proto "^1.0.1" + has-symbols "^1.0.3" + +get-port@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/get-port/-/get-port-5.1.1.tgz#0469ed07563479de6efb986baf053dcd7d4e3193" + integrity sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ== + +get-stream@^5.1.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" + integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== + dependencies: + pump "^3.0.0" + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +get-uri@3: + version "3.0.2" + resolved "https://registry.yarnpkg.com/get-uri/-/get-uri-3.0.2.tgz#f0ef1356faabc70e1f9404fa3b66b2ba9bfc725c" + integrity sha512-+5s0SJbGoyiJTZZ2JTpFPLMPSch72KEqGOTvQsBqg0RBWvwhWUSYZFAtz3TPW0GXJuLBJPts1E241iHg+VRfhg== + dependencies: + "@tootallnate/once" "1" + data-uri-to-buffer "3" + debug "4" + file-uri-to-path "2" + fs-extra "^8.1.0" + ftp "^0.3.10" + +git-hooks-list@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/git-hooks-list/-/git-hooks-list-1.0.3.tgz#be5baaf78203ce342f2f844a9d2b03dba1b45156" + integrity sha512-Y7wLWcrLUXwk2noSka166byGCvhMtDRpgHdzCno1UQv/n/Hegp++a2xBWJL1lJarnKD3SWaljD+0z1ztqxuKyQ== + +glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-to-regexp@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" + integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== + +glob@^7.1.3, glob@^7.1.4: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +globby@10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-10.0.0.tgz#abfcd0630037ae174a88590132c2f6804e291072" + integrity sha512-3LifW9M4joGZasyYPz2A1U74zbC/45fvpXUvO/9KbSa+VV0aGZarWkfdgKyR9sExNP0t0x0ss/UMJpNpcaTspw== + dependencies: + "@types/glob" "^7.1.1" + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.0.3" + glob "^7.1.3" + ignore "^5.1.1" + merge2 "^1.2.3" + slash "^3.0.0" + +got@^11.0.0: + version "11.8.6" + resolved "https://registry.yarnpkg.com/got/-/got-11.8.6.tgz#276e827ead8772eddbcfc97170590b841823233a" + integrity sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g== + dependencies: + "@sindresorhus/is" "^4.0.0" + "@szmarczak/http-timer" "^4.0.5" + "@types/cacheable-request" "^6.0.1" + "@types/responselike" "^1.0.0" + cacheable-lookup "^5.0.3" + cacheable-request "^7.0.2" + decompress-response "^6.0.0" + http2-wrapper "^1.0.0-beta.5.2" + lowercase-keys "^2.0.0" + p-cancelable "^2.0.0" + responselike "^2.0.0" + +graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.9: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + +gunzip-maybe@^1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/gunzip-maybe/-/gunzip-maybe-1.4.2.tgz#b913564ae3be0eda6f3de36464837a9cd94b98ac" + integrity sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw== + dependencies: + browserify-zlib "^0.1.4" + is-deflate "^1.0.0" + is-gzip "^1.0.0" + peek-stream "^1.1.0" + pumpify "^1.3.3" + through2 "^2.0.3" + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" + integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== + +has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-unicode@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hast-util-to-estree@^2.0.0: + version "2.3.3" + resolved "https://registry.yarnpkg.com/hast-util-to-estree/-/hast-util-to-estree-2.3.3.tgz#da60142ffe19a6296923ec222aba73339c8bf470" + integrity sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ== + dependencies: + "@types/estree" "^1.0.0" + "@types/estree-jsx" "^1.0.0" + "@types/hast" "^2.0.0" + "@types/unist" "^2.0.0" + comma-separated-tokens "^2.0.0" + estree-util-attach-comments "^2.0.0" + estree-util-is-identifier-name "^2.0.0" + hast-util-whitespace "^2.0.0" + mdast-util-mdx-expression "^1.0.0" + mdast-util-mdxjs-esm "^1.0.0" + property-information "^6.0.0" + space-separated-tokens "^2.0.0" + style-to-object "^0.4.1" + unist-util-position "^4.0.0" + zwitch "^2.0.0" + +hast-util-whitespace@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz#0ec64e257e6fc216c7d14c8a1b74d27d650b4557" + integrity sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng== + +http-cache-semantics@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" + integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== + +http-errors@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" + integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== + dependencies: + depd "2.0.0" + inherits "2.0.4" + setprototypeof "1.2.0" + statuses "2.0.1" + toidentifier "1.0.1" + +http-proxy-agent@^4.0.0, http-proxy-agent@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" + integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== + dependencies: + "@tootallnate/once" "1" + agent-base "6" + debug "4" + +http2-wrapper@^1.0.0-beta.5.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz#b8f55e0c1f25d4ebd08b3b0c2c079f9590800b3d" + integrity sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg== + dependencies: + quick-lru "^5.1.1" + resolve-alpn "^1.0.0" + +https-proxy-agent@5, https-proxy-agent@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" + integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== + dependencies: + agent-base "6" + debug "4" + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +humanize-ms@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" + integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== + dependencies: + ms "^2.0.0" + +iconv-lite@0.4.24, iconv-lite@^0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +icss-utils@^5.0.0, icss-utils@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" + integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== + +ieee754@^1.1.13: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +ignore@^5.1.1: + version "5.2.4" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" + integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== + +import-meta-resolve@^2.2.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/import-meta-resolve/-/import-meta-resolve-2.2.2.tgz#75237301e72d1f0fbd74dbc6cca9324b164c2cc9" + integrity sha512-f8KcQ1D80V7RnqVm+/lirO9zkOxjGxhaTC1IPrBGd3MEfNgmNG67tSUO9gTi2F3Blr2Az6g1vocaxzkVnWl9MA== + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + +infer-owner@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" + integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +inline-style-parser@0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1" + integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q== + +inquirer@^8.2.1: + version "8.2.5" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.2.5.tgz#d8654a7542c35a9b9e069d27e2df4858784d54f8" + integrity sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ== + dependencies: + ansi-escapes "^4.2.1" + chalk "^4.1.1" + cli-cursor "^3.1.0" + cli-width "^3.0.0" + external-editor "^3.0.3" + figures "^3.0.0" + lodash "^4.17.21" + mute-stream "0.0.8" + ora "^5.4.1" + run-async "^2.4.0" + rxjs "^7.5.5" + string-width "^4.1.0" + strip-ansi "^6.0.0" + through "^2.3.6" + wrap-ansi "^7.0.0" + +ip@^1.1.5: + version "1.1.8" + resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.8.tgz#ae05948f6b075435ed3307acce04629da8cdbf48" + integrity sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg== + +ip@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.0.tgz#4cf4ab182fee2314c75ede1276f8c80b479936da" + integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ== + +ipaddr.js@1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== + +is-alphabetical@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-2.0.1.tgz#01072053ea7c1036df3c7d19a6daaec7f19e789b" + integrity sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ== + +is-alphanumerical@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz#7c03fbe96e3e931113e57f964b0a368cc2dfd875" + integrity sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw== + dependencies: + is-alphabetical "^2.0.0" + is-decimal "^2.0.0" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-buffer@^2.0.0: + version "2.0.5" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" + integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== + +is-buffer@~1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + +is-core-module@^2.11.0: + version "2.12.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd" + integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg== + dependencies: + has "^1.0.3" + +is-decimal@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-2.0.1.tgz#9469d2dc190d0214fd87d78b78caecc0cc14eef7" + integrity sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A== + +is-deflate@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-deflate/-/is-deflate-1.0.0.tgz#c862901c3c161fb09dac7cdc7e784f80e98f2f14" + integrity sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ== + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-gzip@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-gzip/-/is-gzip-1.0.0.tgz#6ca8b07b99c77998025900e555ced8ed80879a83" + integrity sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ== + +is-hexadecimal@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz#86b5bf668fca307498d319dfc03289d781a90027" + integrity sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg== + +is-interactive@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" + integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-plain-obj@2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" + integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== + +is-plain-obj@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7" + integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== + +is-plain-obj@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-4.1.0.tgz#d65025edec3657ce032fd7db63c97883eaed71f0" + integrity sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg== + +is-reference@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-3.0.1.tgz#d400f4260f7e55733955e60d361d827eb4d3b831" + integrity sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w== + dependencies: + "@types/estree" "*" + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +isarray@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ== + +isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +javascript-stringify@^2.0.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/javascript-stringify/-/javascript-stringify-2.1.0.tgz#27c76539be14d8bd128219a2d731b09337904e79" + integrity sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg== + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +jsesc@3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.0.2.tgz#bb8b09a6597ba426425f2e4a07245c3d00b9343e" + integrity sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g== + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== + +json-buffer@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" + integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== + +json-parse-even-better-errors@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json-schema-to-ts@1.6.4: + version "1.6.4" + resolved "https://registry.yarnpkg.com/json-schema-to-ts/-/json-schema-to-ts-1.6.4.tgz#63e4fe854dff093923be9e8b59b39ee9a7971ba4" + integrity sha512-pR4yQ9DHz6itqswtHCm26mw45FSNfQ9rEQjosaZErhn5J3J2sIViQiz8rDaezjKAhFGpmsoczYVBgGHzFw/stA== + dependencies: + "@types/json-schema" "^7.0.6" + ts-toolbelt "^6.15.5" + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +json5@^2.1.2, json5@^2.2.2: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + +jsonc-parser@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz#31ff3f4c2b9793f89c67212627c51c6394f88e76" + integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w== + +jsonfile@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg== + optionalDependencies: + graceful-fs "^4.1.6" + +jsonfile@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + dependencies: + universalify "^2.0.0" + optionalDependencies: + graceful-fs "^4.1.6" + +keyv@^4.0.0: + version "4.5.2" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.2.tgz#0e310ce73bf7851ec702f2eaf46ec4e3805cce56" + integrity sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g== + dependencies: + json-buffer "3.0.1" + +kleur@^4.0.3: + version "4.1.5" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780" + integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ== + +levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA== + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + +lilconfig@^2.0.5: + version "2.1.0" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" + integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== + +loader-utils@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c" + integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^2.1.2" + +loader-utils@^3.2.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-3.2.1.tgz#4fb104b599daafd82ef3e1a41fb9265f87e1f576" + integrity sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw== + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash.camelcase@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" + integrity sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA== + +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== + +lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-symbols@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +longest-streak@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-3.1.0.tgz#62fa67cd958742a1574af9f39866364102d90cd4" + integrity sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g== + +loose-envify@^1.1.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +lowercase-keys@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" + integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== + +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +lru-cache@^7.14.1: + version "7.18.3" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89" + integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== + +make-dir@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" + integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== + dependencies: + semver "^6.0.0" + +make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +markdown-extensions@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/markdown-extensions/-/markdown-extensions-1.1.1.tgz#fea03b539faeaee9b4ef02a3769b455b189f7fc3" + integrity sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q== + +md5@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" + integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g== + dependencies: + charenc "0.0.2" + crypt "0.0.2" + is-buffer "~1.1.6" + +mdast-util-definitions@^5.0.0: + version "5.1.2" + resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz#9910abb60ac5d7115d6819b57ae0bcef07a3f7a7" + integrity sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA== + dependencies: + "@types/mdast" "^3.0.0" + "@types/unist" "^2.0.0" + unist-util-visit "^4.0.0" + +mdast-util-from-markdown@^1.0.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz#9421a5a247f10d31d2faed2a30df5ec89ceafcf0" + integrity sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww== + dependencies: + "@types/mdast" "^3.0.0" + "@types/unist" "^2.0.0" + decode-named-character-reference "^1.0.0" + mdast-util-to-string "^3.1.0" + micromark "^3.0.0" + micromark-util-decode-numeric-character-reference "^1.0.0" + micromark-util-decode-string "^1.0.0" + micromark-util-normalize-identifier "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + unist-util-stringify-position "^3.0.0" + uvu "^0.5.0" + +mdast-util-frontmatter@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/mdast-util-frontmatter/-/mdast-util-frontmatter-1.0.1.tgz#79c46d7414eb9d3acabe801ee4a70a70b75e5af1" + integrity sha512-JjA2OjxRqAa8wEG8hloD0uTU0kdn8kbtOWpPP94NBkfAlbxn4S8gCGf/9DwFtEeGPXrDcNXdiDjVaRdUFqYokw== + dependencies: + "@types/mdast" "^3.0.0" + mdast-util-to-markdown "^1.3.0" + micromark-extension-frontmatter "^1.0.0" + +mdast-util-mdx-expression@^1.0.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.2.tgz#d027789e67524d541d6de543f36d51ae2586f220" + integrity sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA== + dependencies: + "@types/estree-jsx" "^1.0.0" + "@types/hast" "^2.0.0" + "@types/mdast" "^3.0.0" + mdast-util-from-markdown "^1.0.0" + mdast-util-to-markdown "^1.0.0" + +mdast-util-mdx-jsx@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-1.2.0.tgz#c0f5140e021fd134fa90272eb8bbddb39f8db399" + integrity sha512-5+ot/kfxYd3ChgEMwsMUO71oAfYjyRI3pADEK4I7xTmWLGQ8Y7ghm1CG36zUoUvDPxMlIYwQV/9DYHAUWdG4dA== + dependencies: + "@types/estree-jsx" "^0.0.1" + "@types/mdast" "^3.0.0" + mdast-util-to-markdown "^1.0.0" + parse-entities "^4.0.0" + stringify-entities "^4.0.0" + unist-util-remove-position "^4.0.0" + unist-util-stringify-position "^3.0.0" + vfile-message "^3.0.0" + +mdast-util-mdx@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/mdast-util-mdx/-/mdast-util-mdx-1.1.0.tgz#c98612804719309aea97e3da068658392e126488" + integrity sha512-leKb9uG7laXdyFlTleYV4ZEaCpsxeU1LlkkR/xp35pgKrfV1Y0fNCuOw9vaRc2a9YDpH22wd145Wt7UY5yzeZw== + dependencies: + mdast-util-mdx-expression "^1.0.0" + mdast-util-mdx-jsx "^1.0.0" + mdast-util-mdxjs-esm "^1.0.0" + +mdast-util-mdxjs-esm@^1.0.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.1.tgz#645d02cd607a227b49721d146fd81796b2e2d15b" + integrity sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w== + dependencies: + "@types/estree-jsx" "^1.0.0" + "@types/hast" "^2.0.0" + "@types/mdast" "^3.0.0" + mdast-util-from-markdown "^1.0.0" + mdast-util-to-markdown "^1.0.0" + +mdast-util-phrasing@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz#c7c21d0d435d7fb90956038f02e8702781f95463" + integrity sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg== + dependencies: + "@types/mdast" "^3.0.0" + unist-util-is "^5.0.0" + +mdast-util-to-hast@^11.0.0: + version "11.3.0" + resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-11.3.0.tgz#ea9220617a710e80aa5cc3ac7cc9d4bb0440ae7a" + integrity sha512-4o3Cli3hXPmm1LhB+6rqhfsIUBjnKFlIUZvudaermXB+4/KONdd/W4saWWkC+LBLbPMqhFSSTSRgafHsT5fVJw== + dependencies: + "@types/hast" "^2.0.0" + "@types/mdast" "^3.0.0" + "@types/mdurl" "^1.0.0" + mdast-util-definitions "^5.0.0" + mdurl "^1.0.0" + unist-builder "^3.0.0" + unist-util-generated "^2.0.0" + unist-util-position "^4.0.0" + unist-util-visit "^4.0.0" + +mdast-util-to-markdown@^1.0.0, mdast-util-to-markdown@^1.3.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz#c13343cb3fc98621911d33b5cd42e7d0731171c6" + integrity sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A== + dependencies: + "@types/mdast" "^3.0.0" + "@types/unist" "^2.0.0" + longest-streak "^3.0.0" + mdast-util-phrasing "^3.0.0" + mdast-util-to-string "^3.0.0" + micromark-util-decode-string "^1.0.0" + unist-util-visit "^4.0.0" + zwitch "^2.0.0" + +mdast-util-to-string@^3.0.0, mdast-util-to-string@^3.1.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz#66f7bb6324756741c5f47a53557f0cbf16b6f789" + integrity sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg== + dependencies: + "@types/mdast" "^3.0.0" + +mdurl@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" + integrity sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g== + +media-query-parser@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/media-query-parser/-/media-query-parser-2.0.2.tgz#ff79e56cee92615a304a1c2fa4f2bd056c0a1d29" + integrity sha512-1N4qp+jE0pL5Xv4uEcwVUhIkwdUO3S/9gML90nqKA7v7FcOS5vUtatfzok9S9U1EJU8dHWlcv95WLnKmmxZI9w== + dependencies: + "@babel/runtime" "^7.12.5" + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +merge2@^1.2.3, merge2@^1.3.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== + +micromark-core-commonmark@^1.0.0, micromark-core-commonmark@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz#1386628df59946b2d39fb2edfd10f3e8e0a75bb8" + integrity sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw== + dependencies: + decode-named-character-reference "^1.0.0" + micromark-factory-destination "^1.0.0" + micromark-factory-label "^1.0.0" + micromark-factory-space "^1.0.0" + micromark-factory-title "^1.0.0" + micromark-factory-whitespace "^1.0.0" + micromark-util-character "^1.0.0" + micromark-util-chunked "^1.0.0" + micromark-util-classify-character "^1.0.0" + micromark-util-html-tag-name "^1.0.0" + micromark-util-normalize-identifier "^1.0.0" + micromark-util-resolve-all "^1.0.0" + micromark-util-subtokenize "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.1" + uvu "^0.5.0" + +micromark-extension-frontmatter@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/micromark-extension-frontmatter/-/micromark-extension-frontmatter-1.1.1.tgz#2946643938e491374145d0c9aacc3249e38a865f" + integrity sha512-m2UH9a7n3W8VAH9JO9y01APpPKmNNNs71P0RbknEmYSaZU5Ghogv38BYO94AI5Xw6OYfxZRdHZZ2nYjs/Z+SZQ== + dependencies: + fault "^2.0.0" + micromark-util-character "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + +micromark-extension-mdx-expression@^1.0.0: + version "1.0.8" + resolved "https://registry.yarnpkg.com/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.8.tgz#5bc1f5fd90388e8293b3ef4f7c6f06c24aff6314" + integrity sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw== + dependencies: + "@types/estree" "^1.0.0" + micromark-factory-mdx-expression "^1.0.0" + micromark-factory-space "^1.0.0" + micromark-util-character "^1.0.0" + micromark-util-events-to-acorn "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + uvu "^0.5.0" + +micromark-extension-mdx-jsx@^1.0.0: + version "1.0.5" + resolved "https://registry.yarnpkg.com/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.5.tgz#e72d24b7754a30d20fb797ece11e2c4e2cae9e82" + integrity sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA== + dependencies: + "@types/acorn" "^4.0.0" + "@types/estree" "^1.0.0" + estree-util-is-identifier-name "^2.0.0" + micromark-factory-mdx-expression "^1.0.0" + micromark-factory-space "^1.0.0" + micromark-util-character "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + uvu "^0.5.0" + vfile-message "^3.0.0" + +micromark-extension-mdx-md@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.1.tgz#595d4b2f692b134080dca92c12272ab5b74c6d1a" + integrity sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA== + dependencies: + micromark-util-types "^1.0.0" + +micromark-extension-mdxjs-esm@^1.0.0: + version "1.0.5" + resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.5.tgz#e4f8be9c14c324a80833d8d3a227419e2b25dec1" + integrity sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w== + dependencies: + "@types/estree" "^1.0.0" + micromark-core-commonmark "^1.0.0" + micromark-util-character "^1.0.0" + micromark-util-events-to-acorn "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + unist-util-position-from-estree "^1.1.0" + uvu "^0.5.0" + vfile-message "^3.0.0" + +micromark-extension-mdxjs@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.1.tgz#f78d4671678d16395efeda85170c520ee795ded8" + integrity sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q== + dependencies: + acorn "^8.0.0" + acorn-jsx "^5.0.0" + micromark-extension-mdx-expression "^1.0.0" + micromark-extension-mdx-jsx "^1.0.0" + micromark-extension-mdx-md "^1.0.0" + micromark-extension-mdxjs-esm "^1.0.0" + micromark-util-combine-extensions "^1.0.0" + micromark-util-types "^1.0.0" + +micromark-factory-destination@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz#eb815957d83e6d44479b3df640f010edad667b9f" + integrity sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg== + dependencies: + micromark-util-character "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + +micromark-factory-label@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz#cc95d5478269085cfa2a7282b3de26eb2e2dec68" + integrity sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w== + dependencies: + micromark-util-character "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + uvu "^0.5.0" + +micromark-factory-mdx-expression@^1.0.0: + version "1.0.9" + resolved "https://registry.yarnpkg.com/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.9.tgz#57ba4571b69a867a1530f34741011c71c73a4976" + integrity sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA== + dependencies: + "@types/estree" "^1.0.0" + micromark-util-character "^1.0.0" + micromark-util-events-to-acorn "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + unist-util-position-from-estree "^1.0.0" + uvu "^0.5.0" + vfile-message "^3.0.0" + +micromark-factory-space@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz#c8f40b0640a0150751d3345ed885a080b0d15faf" + integrity sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ== + dependencies: + micromark-util-character "^1.0.0" + micromark-util-types "^1.0.0" + +micromark-factory-title@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz#dd0fe951d7a0ac71bdc5ee13e5d1465ad7f50ea1" + integrity sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ== + dependencies: + micromark-factory-space "^1.0.0" + micromark-util-character "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + +micromark-factory-whitespace@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz#798fb7489f4c8abafa7ca77eed6b5745853c9705" + integrity sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ== + dependencies: + micromark-factory-space "^1.0.0" + micromark-util-character "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + +micromark-util-character@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-1.2.0.tgz#4fedaa3646db249bc58caeb000eb3549a8ca5dcc" + integrity sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg== + dependencies: + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + +micromark-util-chunked@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz#37a24d33333c8c69a74ba12a14651fd9ea8a368b" + integrity sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ== + dependencies: + micromark-util-symbol "^1.0.0" + +micromark-util-classify-character@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz#6a7f8c8838e8a120c8e3c4f2ae97a2bff9190e9d" + integrity sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw== + dependencies: + micromark-util-character "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + +micromark-util-combine-extensions@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz#192e2b3d6567660a85f735e54d8ea6e3952dbe84" + integrity sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA== + dependencies: + micromark-util-chunked "^1.0.0" + micromark-util-types "^1.0.0" + +micromark-util-decode-numeric-character-reference@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz#b1e6e17009b1f20bc652a521309c5f22c85eb1c6" + integrity sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw== + dependencies: + micromark-util-symbol "^1.0.0" + +micromark-util-decode-string@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz#dc12b078cba7a3ff690d0203f95b5d5537f2809c" + integrity sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ== + dependencies: + decode-named-character-reference "^1.0.0" + micromark-util-character "^1.0.0" + micromark-util-decode-numeric-character-reference "^1.0.0" + micromark-util-symbol "^1.0.0" + +micromark-util-encode@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz#92e4f565fd4ccb19e0dcae1afab9a173bbeb19a5" + integrity sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw== + +micromark-util-events-to-acorn@^1.0.0: + version "1.2.3" + resolved "https://registry.yarnpkg.com/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.3.tgz#a4ab157f57a380e646670e49ddee97a72b58b557" + integrity sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w== + dependencies: + "@types/acorn" "^4.0.0" + "@types/estree" "^1.0.0" + "@types/unist" "^2.0.0" + estree-util-visit "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + uvu "^0.5.0" + vfile-message "^3.0.0" + +micromark-util-html-tag-name@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz#48fd7a25826f29d2f71479d3b4e83e94829b3588" + integrity sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q== + +micromark-util-normalize-identifier@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz#7a73f824eb9f10d442b4d7f120fecb9b38ebf8b7" + integrity sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q== + dependencies: + micromark-util-symbol "^1.0.0" + +micromark-util-resolve-all@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz#4652a591ee8c8fa06714c9b54cd6c8e693671188" + integrity sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA== + dependencies: + micromark-util-types "^1.0.0" + +micromark-util-sanitize-uri@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz#613f738e4400c6eedbc53590c67b197e30d7f90d" + integrity sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A== + dependencies: + micromark-util-character "^1.0.0" + micromark-util-encode "^1.0.0" + micromark-util-symbol "^1.0.0" + +micromark-util-subtokenize@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz#941c74f93a93eaf687b9054aeb94642b0e92edb1" + integrity sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A== + dependencies: + micromark-util-chunked "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + uvu "^0.5.0" + +micromark-util-symbol@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz#813cd17837bdb912d069a12ebe3a44b6f7063142" + integrity sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag== + +micromark-util-types@^1.0.0, micromark-util-types@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-1.1.0.tgz#e6676a8cae0bb86a2171c498167971886cb7e283" + integrity sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg== + +micromark@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/micromark/-/micromark-3.2.0.tgz#1af9fef3f995ea1ea4ac9c7e2f19c48fd5c006e9" + integrity sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA== + dependencies: + "@types/debug" "^4.0.0" + debug "^4.0.0" + decode-named-character-reference "^1.0.0" + micromark-core-commonmark "^1.0.1" + micromark-factory-space "^1.0.0" + micromark-util-character "^1.0.0" + micromark-util-chunked "^1.0.0" + micromark-util-combine-extensions "^1.0.0" + micromark-util-decode-numeric-character-reference "^1.0.0" + micromark-util-encode "^1.0.0" + micromark-util-normalize-identifier "^1.0.0" + micromark-util-resolve-all "^1.0.0" + micromark-util-sanitize-uri "^1.0.0" + micromark-util-subtokenize "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.1" + uvu "^0.5.0" + +micromatch@^4.0.2, micromatch@^4.0.4: + version "4.0.5" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + dependencies: + braces "^3.0.2" + picomatch "^2.3.1" + +mime-db@1.52.0: + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@^2.1.12, mime-types@~2.1.24, mime-types@~2.1.34: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mime@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +mimic-response@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" + integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== + +mimic-response@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" + integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== + +minimatch@^3.0.4, minimatch@^3.1.1: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^9.0.0: + version "9.0.1" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.1.tgz#8a555f541cf976c622daf078bb28f29fb927c253" + integrity sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w== + dependencies: + brace-expansion "^2.0.1" + +minimist@^1.2.6: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + +minipass-collect@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" + integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== + dependencies: + minipass "^3.0.0" + +minipass-flush@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" + integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== + dependencies: + minipass "^3.0.0" + +minipass-pipeline@^1.2.2: + version "1.2.4" + resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" + integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== + dependencies: + minipass "^3.0.0" + +minipass@^3.0.0, minipass@^3.1.1: + version "3.3.6" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" + integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== + dependencies: + yallist "^4.0.0" + +minipass@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" + integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== + +minizlib@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" + integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== + dependencies: + minipass "^3.0.0" + yallist "^4.0.0" + +mkdirp-classic@^0.5.2: + version "0.5.3" + resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" + integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== + +mkdirp@^1.0.3, mkdirp@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + +mlly@^1.1.0, mlly@^1.2.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.4.0.tgz#830c10d63f1f97bd8785377b24dc2a15d972832b" + integrity sha512-ua8PAThnTwpprIaU47EPeZ/bPUVp2QYBbWMphUQpVdBI3Lgqzm5KZQ45Agm3YJedHXaIHl6pBGabaLSUPPSptg== + dependencies: + acorn "^8.9.0" + pathe "^1.1.1" + pkg-types "^1.0.3" + ufo "^1.1.2" + +mri@1.2.0, mri@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b" + integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA== + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@2.1.3, ms@^2.0.0: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +mute-stream@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== + +nanoid@^3.3.4, nanoid@^3.3.6: + version "3.3.6" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" + integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== + +negotiator@0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== + +netmask@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/netmask/-/netmask-2.0.2.tgz#8b01a07644065d536383835823bc52004ebac5e7" + integrity sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg== + +next@13.4.6: + version "13.4.6" + resolved "https://registry.yarnpkg.com/next/-/next-13.4.6.tgz#ebe52f5c74d60176d45b45e73f25a51103713ea4" + integrity sha512-sjVqjxU+U2aXZnYt4Ud6CTLNNwWjdSfMgemGpIQJcN3Z7Jni9xRWbR0ie5fQzCg87aLqQVhKA2ud2gPoqJ9lGw== + dependencies: + "@next/env" "13.4.6" + "@swc/helpers" "0.5.1" + busboy "1.6.0" + caniuse-lite "^1.0.30001406" + postcss "8.4.14" + styled-jsx "5.1.1" + watchpack "2.4.0" + zod "3.21.4" + optionalDependencies: + "@next/swc-darwin-arm64" "13.4.6" + "@next/swc-darwin-x64" "13.4.6" + "@next/swc-linux-arm64-gnu" "13.4.6" + "@next/swc-linux-arm64-musl" "13.4.6" + "@next/swc-linux-x64-gnu" "13.4.6" + "@next/swc-linux-x64-musl" "13.4.6" + "@next/swc-win32-arm64-msvc" "13.4.6" + "@next/swc-win32-ia32-msvc" "13.4.6" + "@next/swc-win32-x64-msvc" "13.4.6" + +node-addon-api@^1.7.1: + version "1.7.2" + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz#3df30b95720b53c24e59948b49532b662444f54d" + integrity sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg== + +node-domexception@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + +node-fetch@2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.9.tgz#7c7f744b5cc6eb5fd404e0c7a9fec630a55657e6" + integrity sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg== + dependencies: + whatwg-url "^5.0.0" + +node-fetch@^2.6.7, node-fetch@^2.6.9: + version "2.6.11" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.11.tgz#cde7fc71deef3131ef80a738919f999e6edfff25" + integrity sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w== + dependencies: + whatwg-url "^5.0.0" + +node-gyp-build@^4.2.2: + version "4.6.0" + resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.6.0.tgz#0c52e4cbf54bbd28b709820ef7b6a3c2d6209055" + integrity sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ== + +node-releases@^2.0.12: + version "2.0.12" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.12.tgz#35627cc224a23bfb06fb3380f2b3afaaa7eb1039" + integrity sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ== + +nopt@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88" + integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== + dependencies: + abbrev "1" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-url@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" + integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +npmlog@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-5.0.1.tgz#f06678e80e29419ad67ab964e0fa69959c1eb8b0" + integrity sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw== + dependencies: + are-we-there-yet "^2.0.0" + console-control-strings "^1.1.0" + gauge "^3.0.0" + set-blocking "^2.0.0" + +object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-inspect@^1.9.0: + version "1.12.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" + integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== + +on-finished@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" + integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== + dependencies: + ee-first "1.1.1" + +once@^1.3.0, once@^1.3.1, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^5.1.0, onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +optionator@^0.8.1: + version "0.8.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" + integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.6" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + word-wrap "~1.2.3" + +ora@^5.4.1: + version "5.4.1" + resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" + integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== + dependencies: + bl "^4.1.0" + chalk "^4.1.0" + cli-cursor "^3.1.0" + cli-spinners "^2.5.0" + is-interactive "^1.0.0" + is-unicode-supported "^0.1.0" + log-symbols "^4.1.0" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + +os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== + +outdent@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/outdent/-/outdent-0.8.0.tgz#2ebc3e77bf49912543f1008100ff8e7f44428eb0" + integrity sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A== + +p-cancelable@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz#aab7fbd416582fa32a3db49859c122487c5ed2cf" + integrity sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg== + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +p-map@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" + integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== + dependencies: + aggregate-error "^3.0.0" + +pac-proxy-agent@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/pac-proxy-agent/-/pac-proxy-agent-5.0.0.tgz#b718f76475a6a5415c2efbe256c1c971c84f635e" + integrity sha512-CcFG3ZtnxO8McDigozwE3AqAw15zDvGH+OjXO4kzf7IkEKkQ4gxQ+3sdF50WmhQ4P/bVusXcqNE2S3XrNURwzQ== + dependencies: + "@tootallnate/once" "1" + agent-base "6" + debug "4" + get-uri "3" + http-proxy-agent "^4.0.1" + https-proxy-agent "5" + pac-resolver "^5.0.0" + raw-body "^2.2.0" + socks-proxy-agent "5" + +pac-resolver@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/pac-resolver/-/pac-resolver-5.0.1.tgz#c91efa3a9af9f669104fa2f51102839d01cde8e7" + integrity sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q== + dependencies: + degenerator "^3.0.2" + ip "^1.1.5" + netmask "^2.0.2" + +pako@~0.2.0: + version "0.2.9" + resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" + integrity sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA== + +parse-entities@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-4.0.1.tgz#4e2a01111fb1c986549b944af39eeda258fc9e4e" + integrity sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w== + dependencies: + "@types/unist" "^2.0.0" + character-entities "^2.0.0" + character-entities-legacy "^3.0.0" + character-reference-invalid "^2.0.0" + decode-named-character-reference "^1.0.0" + is-alphanumerical "^2.0.0" + is-decimal "^2.0.0" + is-hexadecimal "^2.0.0" + +parse-ms@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-2.1.0.tgz#348565a753d4391fa524029956b172cb7753097d" + integrity sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA== + +parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + +path-browserify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" + integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== + +path-to-regexp@6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.1.0.tgz#0b18f88b7a0ce0bfae6a25990c909ab86f512427" + integrity sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw== + +path-to-regexp@6.2.1: + version "6.2.1" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.2.1.tgz#d54934d6798eb9e5ef14e7af7962c945906918e5" + integrity sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw== + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +pathe@^1.1.0, pathe@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.1.tgz#1dd31d382b974ba69809adc9a7a347e65d84829a" + integrity sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q== + +peek-stream@^1.1.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/peek-stream/-/peek-stream-1.1.3.tgz#3b35d84b7ccbbd262fff31dc10da56856ead6d67" + integrity sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA== + dependencies: + buffer-from "^1.0.0" + duplexify "^3.5.0" + through2 "^2.0.3" + +periscopic@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/periscopic/-/periscopic-3.1.0.tgz#7e9037bf51c5855bd33b48928828db4afa79d97a" + integrity sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw== + dependencies: + "@types/estree" "^1.0.0" + estree-walker "^3.0.0" + is-reference "^3.0.0" + +picocolors@1.0.0, picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pkg-types@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.0.3.tgz#988b42ab19254c01614d13f4f65a2cfc7880f868" + integrity sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A== + dependencies: + jsonc-parser "^3.2.0" + mlly "^1.2.0" + pathe "^1.1.0" + +postcss-discard-duplicates@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz#9eb4fe8456706a4eebd6d3b7b777d07bad03e848" + integrity sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw== + +postcss-load-config@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.1.tgz#152383f481c2758274404e4962743191d73875bd" + integrity sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA== + dependencies: + lilconfig "^2.0.5" + yaml "^2.1.1" + +postcss-modules-extract-imports@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d" + integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== + +postcss-modules-local-by-default@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz#b08eb4f083050708998ba2c6061b50c2870ca524" + integrity sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA== + dependencies: + icss-utils "^5.0.0" + postcss-selector-parser "^6.0.2" + postcss-value-parser "^4.1.0" + +postcss-modules-scope@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06" + integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== + dependencies: + postcss-selector-parser "^6.0.4" + +postcss-modules-values@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c" + integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== + dependencies: + icss-utils "^5.0.0" + +postcss-modules@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules/-/postcss-modules-6.0.0.tgz#cac283dbabbbdc2558c45391cbd0e2df9ec50118" + integrity sha512-7DGfnlyi/ju82BRzTIjWS5C4Tafmzl3R79YP/PASiocj+aa6yYphHhhKUOEoXQToId5rgyFgJ88+ccOUydjBXQ== + dependencies: + generic-names "^4.0.0" + icss-utils "^5.1.0" + lodash.camelcase "^4.3.0" + postcss-modules-extract-imports "^3.0.0" + postcss-modules-local-by-default "^4.0.0" + postcss-modules-scope "^3.0.0" + postcss-modules-values "^4.0.0" + string-hash "^1.1.1" + +postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4: + version "6.0.13" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b" + integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss-value-parser@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + +postcss@8.4.14: + version "8.4.14" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf" + integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== + dependencies: + nanoid "^3.3.4" + picocolors "^1.0.0" + source-map-js "^1.0.2" + +postcss@^8.4.19, postcss@^8.4.23: + version "8.4.24" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.24.tgz#f714dba9b2284be3cc07dbd2fc57ee4dc972d2df" + integrity sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg== + dependencies: + nanoid "^3.3.6" + picocolors "^1.0.0" + source-map-js "^1.0.2" + +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== + +prettier@^2.7.1: + version "2.8.8" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" + integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== + +pretty-bytes@5.6.0: + version "5.6.0" + resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" + integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== + +pretty-ms@7.0.1, pretty-ms@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-7.0.1.tgz#7d903eaab281f7d8e03c66f867e239dc32fb73e8" + integrity sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q== + dependencies: + parse-ms "^2.1.0" + +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + +promise-inflight@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" + integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g== + +property-information@^6.0.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.2.0.tgz#b74f522c31c097b5149e3c3cb8d7f3defd986a1d" + integrity sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg== + +proxy-addr@~2.0.7: + version "2.0.7" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" + integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== + dependencies: + forwarded "0.2.0" + ipaddr.js "1.9.1" + +proxy-agent@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/proxy-agent/-/proxy-agent-5.0.0.tgz#d31405c10d6e8431fde96cba7a0c027ce01d633b" + integrity sha512-gkH7BkvLVkSfX9Dk27W6TyNOWWZWRilRfk1XxGNWOYJ2TuedAv1yFpCaU9QSBmBe716XOTNpYNOzhysyw8xn7g== + dependencies: + agent-base "^6.0.0" + debug "4" + http-proxy-agent "^4.0.0" + https-proxy-agent "^5.0.0" + lru-cache "^5.1.1" + pac-proxy-agent "^5.0.0" + proxy-from-env "^1.0.0" + socks-proxy-agent "^5.0.0" + +proxy-from-env@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" + integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== + +pump@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" + integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pumpify@^1.3.3: + version "1.5.1" + resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" + integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== + dependencies: + duplexify "^3.6.0" + inherits "^2.0.3" + pump "^2.0.0" + +punycode@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" + integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== + +qs@6.11.0: + version "6.11.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" + integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== + dependencies: + side-channel "^1.0.4" + +qs@^6.10.3: + version "6.11.2" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" + integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== + dependencies: + side-channel "^1.0.4" + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +quick-lru@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" + integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== + +range-parser@~1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + +raw-body@2.5.1: + version "2.5.1" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" + integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== + dependencies: + bytes "3.1.2" + http-errors "2.0.0" + iconv-lite "0.4.24" + unpipe "1.0.0" + +raw-body@^2.2.0: + version "2.5.2" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.2.tgz#99febd83b90e08975087e8f1f9419a149366b68a" + integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA== + dependencies: + bytes "3.1.2" + http-errors "2.0.0" + iconv-lite "0.4.24" + unpipe "1.0.0" + +react-dom@18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" + integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== + dependencies: + loose-envify "^1.1.0" + scheduler "^0.23.0" + +react-refresh@^0.14.0: + version "0.14.0" + resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.0.tgz#4e02825378a5f227079554d4284889354e5f553e" + integrity sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ== + +react@18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" + integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== + dependencies: + loose-envify "^1.1.0" + +readable-stream@1.1.x: + version "1.1.14" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" + integrity sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "0.0.1" + string_decoder "~0.10.x" + +readable-stream@^2.0.0, readable-stream@~2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" + integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +recast@^0.21.5: + version "0.21.5" + resolved "https://registry.yarnpkg.com/recast/-/recast-0.21.5.tgz#e8cd22bb51bcd6130e54f87955d33a2b2e57b495" + integrity sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg== + dependencies: + ast-types "0.15.2" + esprima "~4.0.0" + source-map "~0.6.1" + tslib "^2.0.1" + +regenerate-unicode-properties@^10.1.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c" + integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ== + dependencies: + regenerate "^1.4.2" + +regenerate@^1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" + integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== + +regenerator-runtime@^0.13.11, regenerator-runtime@^0.13.4: + version "0.13.11" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" + integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== + +regenerator-transform@^0.15.1: + version "0.15.1" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56" + integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg== + dependencies: + "@babel/runtime" "^7.8.4" + +regexpu-core@^5.3.1: + version "5.3.2" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" + integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== + dependencies: + "@babel/regjsgen" "^0.8.0" + regenerate "^1.4.2" + regenerate-unicode-properties "^10.1.0" + regjsparser "^0.9.1" + unicode-match-property-ecmascript "^2.0.0" + unicode-match-property-value-ecmascript "^2.1.0" + +regjsparser@^0.9.1: + version "0.9.1" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" + integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== + dependencies: + jsesc "~0.5.0" + +remark-frontmatter@4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/remark-frontmatter/-/remark-frontmatter-4.0.1.tgz#84560f7ccef114ef076d3d3735be6d69f8922309" + integrity sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA== + dependencies: + "@types/mdast" "^3.0.0" + mdast-util-frontmatter "^1.0.0" + micromark-extension-frontmatter "^1.0.0" + unified "^10.0.0" + +remark-mdx-frontmatter@^1.0.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/remark-mdx-frontmatter/-/remark-mdx-frontmatter-1.1.1.tgz#54cfb3821fbb9cb6057673e0570ae2d645f6fe32" + integrity sha512-7teX9DW4tI2WZkXS4DBxneYSY7NHiXl4AKdWDO9LXVweULlCT8OPWsOjLEnMIXViN1j+QcY8mfbq3k0EK6x3uA== + dependencies: + estree-util-is-identifier-name "^1.0.0" + estree-util-value-to-estree "^1.0.0" + js-yaml "^4.0.0" + toml "^3.0.0" + +remark-parse@^10.0.0: + version "10.0.2" + resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-10.0.2.tgz#ca241fde8751c2158933f031a4e3efbaeb8bc262" + integrity sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw== + dependencies: + "@types/mdast" "^3.0.0" + mdast-util-from-markdown "^1.0.0" + unified "^10.0.0" + +remark-rehype@^9.0.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/remark-rehype/-/remark-rehype-9.1.0.tgz#e4b5b6e19c125b3780343eb66c3e9b99b0f06a81" + integrity sha512-oLa6YmgAYg19zb0ZrBACh40hpBLteYROaPLhBXzLgjqyHQrN+gVP9N/FJvfzuNNuzCutktkroXEZBrxAxKhh7Q== + dependencies: + "@types/hast" "^2.0.0" + "@types/mdast" "^3.0.0" + mdast-util-to-hast "^11.0.0" + unified "^10.0.0" + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +"require-like@>= 0.1.1": + version "0.1.2" + resolved "https://registry.yarnpkg.com/require-like/-/require-like-0.1.2.tgz#ad6f30c13becd797010c468afa775c0c0a6b47fa" + integrity sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A== + +resolve-alpn@^1.0.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz#b7adbdac3546aaaec20b45e7d8265927072726f9" + integrity sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g== + +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + +resolve@^1.14.2: + version "1.22.2" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" + integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== + dependencies: + is-core-module "^2.11.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +responselike@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/responselike/-/responselike-2.0.1.tgz#9a0bc8fdc252f3fb1cca68b016591059ba1422bc" + integrity sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw== + dependencies: + lowercase-keys "^2.0.0" + +restore-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== + dependencies: + onetime "^5.1.0" + signal-exit "^3.0.2" + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +rollup@^3.21.0: + version "3.25.1" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.25.1.tgz#9fff79d22ff1a904b2b595a2fb9bc3793cb987d8" + integrity sha512-tywOR+rwIt5m2ZAWSe5AIJcTat8vGlnPFAv15ycCrw33t6iFsXZ6mzHVFh2psSjxQPmI+xgzMZZizUAukBI4aQ== + optionalDependencies: + fsevents "~2.3.2" + +run-async@^2.4.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" + integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +rxjs@^7.5.5: + version "7.8.1" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" + integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== + dependencies: + tslib "^2.1.0" + +sade@^1.7.3: + version "1.8.1" + resolved "https://registry.yarnpkg.com/sade/-/sade-1.8.1.tgz#0a78e81d658d394887be57d2a409bf703a3b2701" + integrity sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A== + dependencies: + mri "^1.1.0" + +safe-buffer@5.2.1, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +"safer-buffer@>= 2.1.2 < 3": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +scheduler@^0.23.0: + version "0.23.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" + integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== + dependencies: + loose-envify "^1.1.0" + +semver@6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.1.1.tgz#53f53da9b30b2103cd4f15eab3a18ecbcb210c9b" + integrity sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ== + +semver@7.3.8: + version "7.3.8" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" + integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== + dependencies: + lru-cache "^6.0.0" + +semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + +semver@^7.3.5, semver@^7.3.7: + version "7.5.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.2.tgz#5b851e66d1be07c1cdaf37dfc856f543325a2beb" + integrity sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ== + dependencies: + lru-cache "^6.0.0" + +send@0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" + integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== + dependencies: + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "2.0.0" + mime "1.6.0" + ms "2.1.3" + on-finished "2.4.1" + range-parser "~1.2.1" + statuses "2.0.1" + +serve-static@1.15.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" + integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.18.0" + +set-blocking@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== + +set-cookie-parser@^2.4.8: + version "2.6.0" + resolved "https://registry.yarnpkg.com/set-cookie-parser/-/set-cookie-parser-2.6.0.tgz#131921e50f62ff1a66a461d7d62d7b21d5d15a51" + integrity sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ== + +setprototypeof@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" + integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.0.2.tgz#ff55bb1d9ff2114c13b400688fa544ac63c36967" + integrity sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q== + +signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +smart-buffer@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" + integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== + +socks-proxy-agent@5, socks-proxy-agent@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-5.0.1.tgz#032fb583048a29ebffec2e6a73fca0761f48177e" + integrity sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ== + dependencies: + agent-base "^6.0.2" + debug "4" + socks "^2.3.3" + +socks@^2.3.3: + version "2.7.1" + resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.1.tgz#d8e651247178fde79c0663043e07240196857d55" + integrity sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ== + dependencies: + ip "^2.0.0" + smart-buffer "^4.2.0" + +sort-object-keys@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/sort-object-keys/-/sort-object-keys-1.1.3.tgz#bff833fe85cab147b34742e45863453c1e190b45" + integrity sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg== + +sort-package-json@^1.55.0: + version "1.57.0" + resolved "https://registry.yarnpkg.com/sort-package-json/-/sort-package-json-1.57.0.tgz#e95fb44af8ede0bb6147e3f39258102d4bb23fc4" + integrity sha512-FYsjYn2dHTRb41wqnv+uEqCUvBpK3jZcTp9rbz2qDTmel7Pmdtf+i2rLaaPMRZeSVM60V3Se31GyWFpmKs4Q5Q== + dependencies: + detect-indent "^6.0.0" + detect-newline "3.1.0" + git-hooks-list "1.0.3" + globby "10.0.0" + is-plain-obj "2.1.0" + sort-object-keys "^1.1.3" + +source-map-js@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" + integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== + +source-map-support@^0.5.21: + version "0.5.21" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +source-map@^0.7.0, source-map@^0.7.3: + version "0.7.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" + integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== + +space-separated-tokens@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz#1ecd9d2350a3844572c3f4a312bceb018348859f" + integrity sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q== + +ssri@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af" + integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ== + dependencies: + minipass "^3.1.1" + +statuses@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" + integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== + +stream-shift@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" + integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ== + +streamsearch@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764" + integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== + +string-hash@^1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b" + integrity sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A== + +"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +string_decoder@~0.10.x: + version "0.10.31" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" + integrity sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ== + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +stringify-entities@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-4.0.3.tgz#cfabd7039d22ad30f3cc435b0ca2c1574fc88ef8" + integrity sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g== + dependencies: + character-entities-html4 "^2.0.0" + character-entities-legacy "^3.0.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +style-to-object@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.4.1.tgz#53cf856f7cf7f172d72939d9679556469ba5de37" + integrity sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw== + dependencies: + inline-style-parser "0.1.1" + +styled-jsx@5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.1.1.tgz#839a1c3aaacc4e735fed0781b8619ea5d0009d1f" + integrity sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw== + dependencies: + client-only "0.0.1" + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +tar-fs@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" + integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== + dependencies: + chownr "^1.1.1" + mkdirp-classic "^0.5.2" + pump "^3.0.0" + tar-stream "^2.1.4" + +tar-stream@^2.1.4: + version "2.2.0" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" + integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== + dependencies: + bl "^4.0.3" + end-of-stream "^1.4.1" + fs-constants "^1.0.0" + inherits "^2.0.3" + readable-stream "^3.1.1" + +tar@^6.0.2, tar@^6.1.11: + version "6.1.15" + resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.15.tgz#c9738b0b98845a3b344d334b8fa3041aaba53a69" + integrity sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A== + dependencies: + chownr "^2.0.0" + fs-minipass "^2.0.0" + minipass "^5.0.0" + minizlib "^2.1.1" + mkdirp "^1.0.3" + yallist "^4.0.0" + +through2@^2.0.3: + version "2.0.5" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== + dependencies: + readable-stream "~2.3.6" + xtend "~4.0.1" + +through@^2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +time-span@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/time-span/-/time-span-4.0.0.tgz#fe74cd50a54e7998712f90ddfe47109040c985c4" + integrity sha512-MyqZCTGLDZ77u4k+jqg4UlrzPTPZ49NDlaekU6uuFaJLzPIN1woaRXCbGeqOfxwc3Y37ZROGAJ614Rdv7Olt+g== + dependencies: + convert-hrtime "^3.0.0" + +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +toidentifier@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" + integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== + +toml@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/toml/-/toml-3.0.0.tgz#342160f1af1904ec9d204d03a5d61222d762c5ee" + integrity sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w== + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +trough@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/trough/-/trough-2.1.0.tgz#0f7b511a4fde65a46f18477ab38849b22c554876" + integrity sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g== + +ts-morph@12.0.0: + version "12.0.0" + resolved "https://registry.yarnpkg.com/ts-morph/-/ts-morph-12.0.0.tgz#a601c3538703755cbfa2d42b62c52df73e9dbbd7" + integrity sha512-VHC8XgU2fFW7yO1f/b3mxKDje1vmyzFXHWzOYmKEkCEwcLjDtbdLgBQviqj4ZwP4MJkQtRo6Ha2I29lq/B+VxA== + dependencies: + "@ts-morph/common" "~0.11.0" + code-block-writer "^10.1.1" + +ts-node@10.9.1: + version "10.9.1" + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" + integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== + dependencies: + "@cspotcode/source-map-support" "^0.8.0" + "@tsconfig/node10" "^1.0.7" + "@tsconfig/node12" "^1.0.7" + "@tsconfig/node14" "^1.0.0" + "@tsconfig/node16" "^1.0.2" + acorn "^8.4.1" + acorn-walk "^8.1.1" + arg "^4.1.0" + create-require "^1.1.0" + diff "^4.0.1" + make-error "^1.1.1" + v8-compile-cache-lib "^3.0.1" + yn "3.1.1" + +ts-toolbelt@^6.15.5: + version "6.15.5" + resolved "https://registry.yarnpkg.com/ts-toolbelt/-/ts-toolbelt-6.15.5.tgz#cb3b43ed725cb63644782c64fbcad7d8f28c0a83" + integrity sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A== + +tsconfig-paths@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz#ef78e19039133446d244beac0fd6a1632e2d107c" + integrity sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg== + dependencies: + json5 "^2.2.2" + minimist "^1.2.6" + strip-bom "^3.0.0" + +tslib@^2.0.1, tslib@^2.1.0, tslib@^2.4.0: + version "2.5.3" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.3.tgz#24944ba2d990940e6e982c4bea147aba80209913" + integrity sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w== + +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg== + dependencies: + prelude-ls "~1.1.2" + +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + +type-is@~1.6.18: + version "1.6.18" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.24" + +typescript@4.9.5: + version "4.9.5" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" + integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== + +typescript@5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.3.tgz#8d84219244a6b40b6fb2b33cc1c062f715b9e826" + integrity sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw== + +ufo@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.1.2.tgz#d0d9e0fa09dece0c31ffd57bd363f030a35cfe76" + integrity sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ== + +unicode-canonical-property-names-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" + integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== + +unicode-match-property-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" + integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== + dependencies: + unicode-canonical-property-names-ecmascript "^2.0.0" + unicode-property-aliases-ecmascript "^2.0.0" + +unicode-match-property-value-ecmascript@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" + integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== + +unicode-property-aliases-ecmascript@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" + integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== + +unified@^10.0.0: + version "10.1.2" + resolved "https://registry.yarnpkg.com/unified/-/unified-10.1.2.tgz#b1d64e55dafe1f0b98bb6c719881103ecf6c86df" + integrity sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q== + dependencies: + "@types/unist" "^2.0.0" + bail "^2.0.0" + extend "^3.0.0" + is-buffer "^2.0.0" + is-plain-obj "^4.0.0" + trough "^2.0.0" + vfile "^5.0.0" + +unique-filename@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" + integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== + dependencies: + unique-slug "^2.0.0" + +unique-slug@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c" + integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w== + dependencies: + imurmurhash "^0.1.4" + +unist-builder@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/unist-builder/-/unist-builder-3.0.1.tgz#258b89dcadd3c973656b2327b347863556907f58" + integrity sha512-gnpOw7DIpCA0vpr6NqdPvTWnlPTApCTRzr+38E6hCWx3rz/cjo83SsKIlS1Z+L5ttScQ2AwutNnb8+tAvpb6qQ== + dependencies: + "@types/unist" "^2.0.0" + +unist-util-generated@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-2.0.1.tgz#e37c50af35d3ed185ac6ceacb6ca0afb28a85cae" + integrity sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A== + +unist-util-is@^5.0.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-5.2.1.tgz#b74960e145c18dcb6226bc57933597f5486deae9" + integrity sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw== + dependencies: + "@types/unist" "^2.0.0" + +unist-util-position-from-estree@^1.0.0, unist-util-position-from-estree@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.2.tgz#8ac2480027229de76512079e377afbcabcfcce22" + integrity sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww== + dependencies: + "@types/unist" "^2.0.0" + +unist-util-position@^4.0.0: + version "4.0.4" + resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-4.0.4.tgz#93f6d8c7d6b373d9b825844645877c127455f037" + integrity sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg== + dependencies: + "@types/unist" "^2.0.0" + +unist-util-remove-position@^4.0.0: + version "4.0.2" + resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-4.0.2.tgz#a89be6ea72e23b1a402350832b02a91f6a9afe51" + integrity sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ== + dependencies: + "@types/unist" "^2.0.0" + unist-util-visit "^4.0.0" + +unist-util-stringify-position@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz#03ad3348210c2d930772d64b489580c13a7db39d" + integrity sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg== + dependencies: + "@types/unist" "^2.0.0" + +unist-util-visit-parents@^5.1.1: + version "5.1.3" + resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz#b4520811b0ca34285633785045df7a8d6776cfeb" + integrity sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg== + dependencies: + "@types/unist" "^2.0.0" + unist-util-is "^5.0.0" + +unist-util-visit@^4.0.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-4.1.2.tgz#125a42d1eb876283715a3cb5cceaa531828c72e2" + integrity sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg== + dependencies: + "@types/unist" "^2.0.0" + unist-util-is "^5.0.0" + unist-util-visit-parents "^5.1.1" + +universalify@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== + +universalify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" + integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== + +unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== + +update-browserslist-db@^1.0.11: + version "1.0.11" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" + integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== + +uvu@^0.5.0: + version "0.5.6" + resolved "https://registry.yarnpkg.com/uvu/-/uvu-0.5.6.tgz#2754ca20bcb0bb59b64e9985e84d2e81058502df" + integrity sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA== + dependencies: + dequal "^2.0.0" + diff "^5.0.0" + kleur "^4.0.3" + sade "^1.7.3" + +v8-compile-cache-lib@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" + integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== + +vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== + +vercel@^30.2.3: + version "30.2.3" + resolved "https://registry.yarnpkg.com/vercel/-/vercel-30.2.3.tgz#8c00c17fd126c8952061dd9250f2f27deab0d809" + integrity sha512-Eil4CR1a/pZkTl3gewzN8rDTisRmuixHAgymWutrRlc1qBYGPMo9ZPTu/9cR3k2PT7yjeRMYYLm0ax9l43lDhQ== + dependencies: + "@vercel/build-utils" "6.7.5" + "@vercel/go" "2.5.1" + "@vercel/hydrogen" "0.0.64" + "@vercel/next" "3.8.6" + "@vercel/node" "2.15.2" + "@vercel/python" "3.1.60" + "@vercel/redwood" "1.1.15" + "@vercel/remix-builder" "1.8.14" + "@vercel/ruby" "1.3.76" + "@vercel/static-build" "1.3.37" + +vfile-message@^3.0.0: + version "3.1.4" + resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-3.1.4.tgz#15a50816ae7d7c2d1fa87090a7f9f96612b59dea" + integrity sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw== + dependencies: + "@types/unist" "^2.0.0" + unist-util-stringify-position "^3.0.0" + +vfile@^5.0.0: + version "5.3.7" + resolved "https://registry.yarnpkg.com/vfile/-/vfile-5.3.7.tgz#de0677e6683e3380fafc46544cfe603118826ab7" + integrity sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g== + dependencies: + "@types/unist" "^2.0.0" + is-buffer "^2.0.0" + unist-util-stringify-position "^3.0.0" + vfile-message "^3.0.0" + +vite-node@^0.28.5: + version "0.28.5" + resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-0.28.5.tgz#56d0f78846ea40fddf2e28390899df52a4738006" + integrity sha512-LmXb9saMGlrMZbXTvOveJKwMTBTNUH66c8rJnQ0ZPNX+myPEol64+szRzXtV5ORb0Hb/91yq+/D3oERoyAt6LA== + dependencies: + cac "^6.7.14" + debug "^4.3.4" + mlly "^1.1.0" + pathe "^1.1.0" + picocolors "^1.0.0" + source-map "^0.6.1" + source-map-support "^0.5.21" + vite "^3.0.0 || ^4.0.0" + +"vite@^3.0.0 || ^4.0.0", vite@^4.1.4: + version "4.3.9" + resolved "https://registry.yarnpkg.com/vite/-/vite-4.3.9.tgz#db896200c0b1aa13b37cdc35c9e99ee2fdd5f96d" + integrity sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg== + dependencies: + esbuild "^0.17.5" + postcss "^8.4.23" + rollup "^3.21.0" + optionalDependencies: + fsevents "~2.3.2" + +vm2@^3.9.17: + version "3.9.19" + resolved "https://registry.yarnpkg.com/vm2/-/vm2-3.9.19.tgz#be1e1d7a106122c6c492b4d51c2e8b93d3ed6a4a" + integrity sha512-J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg== + dependencies: + acorn "^8.7.0" + acorn-walk "^8.2.0" + +watchpack@2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" + integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== + dependencies: + glob-to-regexp "^0.4.1" + graceful-fs "^4.1.2" + +wcwidth@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== + dependencies: + defaults "^1.0.3" + +web-streams-polyfill@4.0.0-beta.3: + version "4.0.0-beta.3" + resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz#2898486b74f5156095e473efe989dcf185047a38" + integrity sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug== + +web-vitals@0.2.4: + version "0.2.4" + resolved "https://registry.yarnpkg.com/web-vitals/-/web-vitals-0.2.4.tgz#ec3df43c834a207fd7cdefd732b2987896e08511" + integrity sha512-6BjspCO9VriYy12z356nL6JBS0GYeEcA457YyRzD+dD6XYCQ75NKhcOHUMHentOE7OcVCIXXDvOm0jKFfQG2Gg== + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +wide-align@^1.1.2: + version "1.1.5" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" + integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== + dependencies: + string-width "^1.0.2 || 2 || 3 || 4" + +word-wrap@~1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +ws@^7.4.5: + version "7.5.9" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" + integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== + +xdm@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/xdm/-/xdm-2.1.0.tgz#d0060eb0f1230b47247bc6b3208ca3965d0053a4" + integrity sha512-3LxxbxKcRogYY7cQSMy1tUuU1zKNK9YPqMT7/S0r7Cz2QpyF8O9yFySGD7caOZt+LWUOQioOIX+6ZzCoBCpcAA== + dependencies: + "@rollup/pluginutils" "^4.0.0" + "@types/estree-jsx" "^0.0.1" + astring "^1.6.0" + estree-util-build-jsx "^2.0.0" + estree-util-is-identifier-name "^2.0.0" + estree-walker "^3.0.0" + got "^11.0.0" + hast-util-to-estree "^2.0.0" + loader-utils "^2.0.0" + markdown-extensions "^1.0.0" + mdast-util-mdx "^1.0.0" + micromark-extension-mdxjs "^1.0.0" + periscopic "^3.0.0" + remark-parse "^10.0.0" + remark-rehype "^9.0.0" + source-map "^0.7.0" + unified "^10.0.0" + unist-util-position-from-estree "^1.0.0" + unist-util-stringify-position "^3.0.0" + unist-util-visit "^4.0.0" + vfile "^5.0.0" + optionalDependencies: + deasync "^0.1.0" + +xregexp@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-2.0.0.tgz#52a63e56ca0b84a7f3a5f3d61872f126ad7a5943" + integrity sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA== + +xtend@~4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yaml@^2.1.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.1.tgz#02fe0975d23cd441242aa7204e09fc28ac2ac33b" + integrity sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ== + +yn@3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +zod@3.21.4: + version "3.21.4" + resolved "https://registry.yarnpkg.com/zod/-/zod-3.21.4.tgz#10882231d992519f0a10b5dd58a38c9dabbb64db" + integrity sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw== + +zwitch@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-2.0.4.tgz#c827d4b0acb76fc3e685a4c6ec2902d51070e9d7" + integrity sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A== diff --git a/error.ts b/error.ts index 8ae65fa83..3e58106d2 100644 --- a/error.ts +++ b/error.ts @@ -1,6 +1,6 @@ // File generated from our OpenAPI spec by Stainless. -import { castToError, Headers } from '~/core'; +import { castToError, Headers } from './core'; export class APIError extends Error { readonly status: number | undefined; diff --git a/examples/fine-tunes.ts b/examples/fine-tunes.ts index 66e8849c7..4fb3b87c2 100755 --- a/examples/fine-tunes.ts +++ b/examples/fine-tunes.ts @@ -8,7 +8,8 @@ * - https://platform.openai.com/docs/guides/fine-tuning */ -import OpenAI, { fileFromPath } from 'openai'; +import fs from 'fs'; +import OpenAI from 'openai'; // Gets the API Key from the environment variable `OPENAI_API_KEY` const client = new OpenAI(); @@ -16,7 +17,7 @@ const client = new OpenAI(); async function main() { console.log(`Uploading file`); const file = await client.files.create({ - file: await fileFromPath('examples/fine-tune-data.jsonl'), + file: fs.createReadStream('examples/fine-tune-data.jsonl'), purpose: 'fine-tune', }); console.log(`Uploaded file with ID: ${file.id}`); diff --git a/index.ts b/index.ts index 333852a08..2c9d9d188 100644 --- a/index.ts +++ b/index.ts @@ -3,9 +3,9 @@ import qs from 'qs'; import * as Core from './core'; import * as API from './resources'; -import * as Errors from '~/error'; +import * as Errors from './error'; import type { Agent } from 'http'; -import * as FileFromPath from 'formdata-node/file-from-path'; +import * as Uploads from './uploads'; type Config = { /** @@ -27,7 +27,7 @@ export class OpenAI extends Core.APIClient { constructor(config?: Config) { const options: Config = { - apiKey: process.env['OPENAI_API_KEY'] || '', + apiKey: typeof process === 'undefined' ? '' : process.env['OPENAI_API_KEY'] || '', baseURL: 'https://api.openai.com/v1', ...config, }; @@ -55,8 +55,6 @@ export class OpenAI extends Core.APIClient { files: API.Files = new API.Files(this); images: API.Images = new API.Images(this); audio: API.Audio = new API.Audio(this); - answers: API.Answers = new API.Answers(this); - classifications: API.Classifications = new API.Classifications(this); moderations: API.Moderations = new API.Moderations(this); models: API.Models = new API.Models(this); fineTunes: API.FineTunes = new API.FineTunes(this); @@ -103,48 +101,56 @@ export const { UnprocessableEntityError, } = Errors; -export import fileFromPath = FileFromPath.fileFromPath; +export import toFile = Uploads.toFile; +export import fileFromPath = Uploads.fileFromPath; export namespace OpenAI { // Helper functions - export import fileFromPath = FileFromPath.fileFromPath; + export import toFile = Uploads.toFile; + export import fileFromPath = Uploads.fileFromPath; + export import Completions = API.Completions; export import Completion = API.Completion; export import CompletionChoice = API.CompletionChoice; export import CompletionCreateParams = API.CompletionCreateParams; + export import Chat = API.Chat; + + export import Edits = API.Edits; export import Edit = API.Edit; export import EditCreateParams = API.EditCreateParams; + export import Embeddings = API.Embeddings; export import Embedding = API.Embedding; export import EmbeddingCreateParams = API.EmbeddingCreateParams; - export import File = API.File; + export import Files = API.Files; + export import FileContentResponse = API.FileContentResponse; + export import FileDeletedResponse = API.FileDeletedResponse; + export import FileResponse = API.FileResponse; export import FileListResponse = API.FileListResponse; - export import FileDeleteResponse = API.FileDeleteResponse; - export import FileRetrieveFileContentResponse = API.FileRetrieveFileContentResponse; export import FileCreateParams = API.FileCreateParams; + export import Images = API.Images; export import Image = API.Image; export import ImagesResponse = API.ImagesResponse; export import ImageCreateVariationParams = API.ImageCreateVariationParams; export import ImageEditParams = API.ImageEditParams; export import ImageGenerateParams = API.ImageGenerateParams; - export import AnswerCreateResponse = API.AnswerCreateResponse; - export import AnswerCreateParams = API.AnswerCreateParams; - - export import ClassificationCreateResponse = API.ClassificationCreateResponse; - export import ClassificationCreateParams = API.ClassificationCreateParams; + export import Audio = API.Audio; + export import Moderations = API.Moderations; export import Moderation = API.Moderation; export import ModerationCreateResponse = API.ModerationCreateResponse; export import ModerationCreateParams = API.ModerationCreateParams; - export import DeleteModelResponse = API.DeleteModelResponse; + export import Models = API.Models; export import ListModelsResponse = API.ListModelsResponse; export import Model = API.Model; + export import ModelDeletedResponse = API.ModelDeletedResponse; + export import FineTunes = API.FineTunes; export import FineTune = API.FineTune; export import FineTuneEvent = API.FineTuneEvent; export import ListFineTuneEventsResponse = API.ListFineTuneEventsResponse; @@ -152,6 +158,4 @@ export namespace OpenAI { export import FineTuneCreateParams = API.FineTuneCreateParams; export import FineTuneListEventsParams = API.FineTuneListEventsParams; } - -exports = module.exports = OpenAI; export default OpenAI; diff --git a/jest.config.js b/jest.config.js index 8432893a3..a2f2266e4 100644 --- a/jest.config.js +++ b/jest.config.js @@ -4,5 +4,7 @@ module.exports = { testEnvironment: 'node', moduleNameMapper: { '^~/(.*)$': '/$1', + '^openai/_shims/(.*)$': '/_shims/$1.node', }, + modulePathIgnorePatterns: ['/ecosystem-tests/'], }; diff --git a/package.json b/package.json index 15db691e8..a13c9ac7c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "v4.0.0-beta.0", + "version": "4.0.0-beta.1", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/cjs/index.d.ts", @@ -9,6 +9,86 @@ "repository": "github:openai/openai-node", "license": "Apache-2.0", "private": false, + "files": [ + "dist", + "resources", + "_shims", + "/*.ts" + ], + "exports": { + "./_shims/*": { + "deno": { + "require": { + "types": "./dist/cjs/_shims/*.d.ts", + "default": "./dist/cjs/_shims/*.js" + }, + "types": "./dist/esm/_shims/*.d.ts", + "default": "./dist/esm/_shims/*.js" + }, + "browser": { + "require": { + "types": "./dist/cjs/_shims/*.d.ts", + "default": "./dist/cjs/_shims/*.js" + }, + "types": "./dist/esm/_shims/*.d.ts", + "default": "./dist/esm/_shims/*.js" + }, + "worker": { + "require": { + "types": "./dist/cjs/_shims/*.d.ts", + "default": "./dist/cjs/_shims/*.js" + }, + "types": "./dist/esm/_shims/*.d.ts", + "default": "./dist/esm/_shims/*.js" + }, + "workerd": { + "require": { + "types": "./dist/cjs/_shims/*.d.ts", + "default": "./dist/cjs/_shims/*.js" + }, + "types": "./dist/esm/_shims/*.d.ts", + "default": "./dist/esm/_shims/*.js" + }, + "node": { + "require": { + "types": "./dist/cjs/_shims/*.node.d.ts", + "default": "./dist/cjs/_shims/*.node.js" + }, + "types": "./dist/esm/_shims/*.node.d.ts", + "default": "./dist/esm/_shims/*.node.js" + }, + "require": { + "types": "./dist/cjs/_shims/*.d.ts", + "default": "./dist/cjs/_shims/*.js" + }, + "types": "./dist/esm/_shims/*.d.ts", + "default": "./dist/esm/_shims/*.js" + }, + ".": { + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index.js" + }, + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "./*": { + "require": { + "types": "./dist/cjs/*.d.ts", + "require": "./dist/cjs/*.js" + }, + "types": "./dist/esm/*.d.ts", + "default": "./dist/esm/*.js" + }, + "./*.js": { + "require": { + "types": "./dist/cjs/*.d.ts", + "require": "./dist/cjs/*.js" + }, + "types": "./dist/esm/*.d.ts", + "default": "./dist/esm/*.js" + } + }, "scripts": { "test": "bin/check-test-server && yarn jest", "build": "bash ./build", @@ -19,7 +99,7 @@ }, "dependencies": { "@types/node": "^18.11.18", - "@types/node-fetch": "^2.6.1", + "@types/node-fetch": "^2.6.4", "@types/qs": "^6.9.7", "abort-controller": "^3.0.0", "agentkeepalive": "^4.2.1", @@ -31,14 +111,14 @@ }, "devDependencies": { "openai": "link:.", - "@types/jest": "^27.5.0", + "@types/jest": "^29.4.0", "@typescript-eslint/eslint-plugin": "^5.33.0", "@typescript-eslint/parser": "^5.33.0", "eslint": "^8.22.0", "eslint-plugin-unused-imports": "^2.0.0", - "jest": "^28.1.0", + "jest": "^29.4.0", "prettier": "rattrayalex/prettier#postfix-ternaries", - "ts-jest": "^28.0.2", + "ts-jest": "^29.1.0", "ts-node": "^10.5.0", "tsc-alias": "^1.6.9", "tsconfig-paths": "^3.12.0", diff --git a/resources/audio/audio.ts b/resources/audio/audio.ts index 503a82380..6b08ae7c1 100644 --- a/resources/audio/audio.ts +++ b/resources/audio/audio.ts @@ -3,8 +3,19 @@ import { APIResource } from '~/resource'; import { Transcriptions } from './transcriptions'; import { Translations } from './translations'; +import * as API from './'; export class Audio extends APIResource { transcriptions: Transcriptions = new Transcriptions(this.client); translations: Translations = new Translations(this.client); } + +export namespace Audio { + export import Transcriptions = API.Transcriptions; + export import Transcription = API.Transcription; + export import TranscriptionCreateParams = API.TranscriptionCreateParams; + + export import Translations = API.Translations; + export import Translation = API.Translation; + export import TranslationCreateParams = API.TranslationCreateParams; +} diff --git a/resources/audio/index.ts b/resources/audio/index.ts index 67b27a0d4..e04c978aa 100644 --- a/resources/audio/index.ts +++ b/resources/audio/index.ts @@ -1,4 +1,5 @@ // File generated from our OpenAPI spec by Stainless. -export { Transcription, TranscriptionCreateParams } from './transcriptions'; -export { Translation, TranslationCreateParams } from './translations'; +export { Audio } from './audio'; +export { Transcription, TranscriptionCreateParams, Transcriptions } from './transcriptions'; +export { Translation, TranslationCreateParams, Translations } from './translations'; diff --git a/resources/audio/transcriptions.ts b/resources/audio/transcriptions.ts index aba47a69a..aa80cdb9b 100644 --- a/resources/audio/transcriptions.ts +++ b/resources/audio/transcriptions.ts @@ -2,18 +2,18 @@ import * as Core from '~/core'; import { APIResource } from '~/resource'; -import type * as FormData from 'formdata-node'; -import { multipartFormRequestOptions } from '~/core'; +import * as API from './'; +import { type Uploadable, multipartFormRequestOptions } from '~/core'; export class Transcriptions extends APIResource { /** * Transcribes audio into the input language. */ - create( + async create( body: TranscriptionCreateParams, options?: Core.RequestOptions, ): Promise> { - return this.post('/audio/transcriptions', multipartFormRequestOptions({ body, ...options })); + return this.post('/audio/transcriptions', await multipartFormRequestOptions({ body, ...options })); } } @@ -26,12 +26,12 @@ export interface TranscriptionCreateParams { * The audio file object (not file name) to transcribe, in one of these formats: * mp3, mp4, mpeg, mpga, m4a, wav, or webm. */ - file: FormData.Blob | FormData.File; + file: Uploadable; /** * ID of the model to use. Only `whisper-1` is currently available. */ - model: string; + model: (string & {}) | 'whisper-1'; /** * The language of the input audio. Supplying the input language in @@ -62,3 +62,8 @@ export interface TranscriptionCreateParams { */ temperature?: number; } + +export namespace Transcriptions { + export import Transcription = API.Transcription; + export import TranscriptionCreateParams = API.TranscriptionCreateParams; +} diff --git a/resources/audio/translations.ts b/resources/audio/translations.ts index bcfb723fb..a4376149f 100644 --- a/resources/audio/translations.ts +++ b/resources/audio/translations.ts @@ -2,18 +2,18 @@ import * as Core from '~/core'; import { APIResource } from '~/resource'; -import type * as FormData from 'formdata-node'; -import { multipartFormRequestOptions } from '~/core'; +import * as API from './'; +import { type Uploadable, multipartFormRequestOptions } from '~/core'; export class Translations extends APIResource { /** - * Translates audio into into English. + * Translates audio into English. */ - create( + async create( body: TranslationCreateParams, options?: Core.RequestOptions, ): Promise> { - return this.post('/audio/translations', multipartFormRequestOptions({ body, ...options })); + return this.post('/audio/translations', await multipartFormRequestOptions({ body, ...options })); } } @@ -26,12 +26,12 @@ export interface TranslationCreateParams { * The audio file object (not file name) translate, in one of these formats: mp3, * mp4, mpeg, mpga, m4a, wav, or webm. */ - file: FormData.Blob | FormData.File; + file: Uploadable; /** * ID of the model to use. Only `whisper-1` is currently available. */ - model: string; + model: (string & {}) | 'whisper-1'; /** * An optional text to guide the model's style or continue a previous audio @@ -55,3 +55,8 @@ export interface TranslationCreateParams { */ temperature?: number; } + +export namespace Translations { + export import Translation = API.Translation; + export import TranslationCreateParams = API.TranslationCreateParams; +} diff --git a/resources/chat/chat.ts b/resources/chat/chat.ts index 4b2afb537..80ae444dd 100644 --- a/resources/chat/chat.ts +++ b/resources/chat/chat.ts @@ -2,7 +2,15 @@ import { APIResource } from '~/resource'; import { Completions } from './completions'; +import * as API from './'; export class Chat extends APIResource { completions: Completions = new Completions(this.client); } + +export namespace Chat { + export import Completions = API.Completions; + export import ChatCompletion = API.ChatCompletion; + export import ChatCompletionChunk = API.ChatCompletionChunk; + export import CompletionCreateParams = API.CompletionCreateParams; +} diff --git a/resources/chat/completions.ts b/resources/chat/completions.ts index c0064b43a..fad059215 100644 --- a/resources/chat/completions.ts +++ b/resources/chat/completions.ts @@ -2,6 +2,7 @@ import * as Core from '~/core'; import { APIResource } from '~/resource'; +import * as API from './'; import { Stream } from '~/streaming'; export class Completions extends APIResource { @@ -15,17 +16,17 @@ export class Completions extends APIResource { create( body: CompletionCreateParams.CreateChatCompletionRequestStreaming, options?: Core.RequestOptions, - ): Promise>>; + ): Promise>>; create( body: CompletionCreateParams, options?: Core.RequestOptions, - ): Promise>> { + ): Promise>> { return this.post('/chat/completions', { body, ...options, stream: body.stream ?? false }); } } export interface ChatCompletion { - choices: Array; + choices: Array; created: number; @@ -39,15 +40,15 @@ export interface ChatCompletion { } export namespace ChatCompletion { - export interface Choices { + export interface Choice { finish_reason?: 'stop' | 'length' | 'function_call'; index?: number; - message?: Choices.Message; + message?: Choice.Message; } - export namespace Choices { + export namespace Choice { export interface Message { /** * The role of the author of this message. @@ -97,8 +98,8 @@ export namespace ChatCompletion { } } -export interface ChatCompletionEvent { - choices: Array; +export interface ChatCompletionChunk { + choices: Array; created: number; @@ -109,16 +110,16 @@ export interface ChatCompletionEvent { object: string; } -export namespace ChatCompletionEvent { - export interface Choices { - delta?: Choices.Delta; +export namespace ChatCompletionChunk { + export interface Choice { + delta?: Choice.Delta; finish_reason?: 'stop' | 'length' | 'function_call'; index?: number; } - export namespace Choices { + export namespace Choice { export interface Delta { /** * The contents of the chunk message. @@ -170,14 +171,23 @@ export namespace CompletionCreateParams { * A list of messages comprising the conversation so far. * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_format_inputs_to_ChatGPT_models.ipynb). */ - messages: Array; + messages: Array; /** * ID of the model to use. See the * [model endpoint compatibility](/docs/models/model-endpoint-compatibility) table * for details on which models work with the Chat API. */ - model: string; + model: + | (string & {}) + | 'gpt-4' + | 'gpt-4-0613' + | 'gpt-4-32k' + | 'gpt-4-32k-0613' + | 'gpt-3.5-turbo' + | 'gpt-3.5-turbo-16k' + | 'gpt-3.5-turbo-0613' + | 'gpt-3.5-turbo-16k-0613'; /** * Number between -2.0 and 2.0. Positive values penalize new tokens based on their @@ -204,7 +214,7 @@ export namespace CompletionCreateParams { /** * A list of functions the model may generate JSON inputs for. */ - functions?: Array; + functions?: Array; /** * Modify the likelihood of specified tokens appearing in the completion. @@ -283,7 +293,7 @@ export namespace CompletionCreateParams { } export namespace CreateChatCompletionRequestNonStreaming { - export interface Messages { + export interface Message { /** * The role of the messages author. One of `system`, `user`, `assistant`, or * `function`. @@ -300,7 +310,7 @@ export namespace CompletionCreateParams { * The name and arguments of a function that should be called, as generated by the * model. */ - function_call?: Messages.FunctionCall; + function_call?: Message.FunctionCall; /** * The name of the author of this message. `name` is required if role is @@ -311,7 +321,7 @@ export namespace CompletionCreateParams { name?: string; } - export namespace Messages { + export namespace Message { /** * The name and arguments of a function that should be called, as generated by the * model. @@ -339,7 +349,7 @@ export namespace CompletionCreateParams { name: string; } - export interface Functions { + export interface Function { /** * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain * underscores and dashes, with a maximum length of 64. @@ -366,14 +376,23 @@ export namespace CompletionCreateParams { * A list of messages comprising the conversation so far. * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_format_inputs_to_ChatGPT_models.ipynb). */ - messages: Array; + messages: Array; /** * ID of the model to use. See the * [model endpoint compatibility](/docs/models/model-endpoint-compatibility) table * for details on which models work with the Chat API. */ - model: string; + model: + | (string & {}) + | 'gpt-4' + | 'gpt-4-0613' + | 'gpt-4-32k' + | 'gpt-4-32k-0613' + | 'gpt-3.5-turbo' + | 'gpt-3.5-turbo-16k' + | 'gpt-3.5-turbo-0613' + | 'gpt-3.5-turbo-16k-0613'; /** * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be @@ -410,7 +429,7 @@ export namespace CompletionCreateParams { /** * A list of functions the model may generate JSON inputs for. */ - functions?: Array; + functions?: Array; /** * Modify the likelihood of specified tokens appearing in the completion. @@ -479,7 +498,7 @@ export namespace CompletionCreateParams { } export namespace CreateChatCompletionRequestStreaming { - export interface Messages { + export interface Message { /** * The role of the messages author. One of `system`, `user`, `assistant`, or * `function`. @@ -496,7 +515,7 @@ export namespace CompletionCreateParams { * The name and arguments of a function that should be called, as generated by the * model. */ - function_call?: Messages.FunctionCall; + function_call?: Message.FunctionCall; /** * The name of the author of this message. `name` is required if role is @@ -507,7 +526,7 @@ export namespace CompletionCreateParams { name?: string; } - export namespace Messages { + export namespace Message { /** * The name and arguments of a function that should be called, as generated by the * model. @@ -535,7 +554,7 @@ export namespace CompletionCreateParams { name: string; } - export interface Functions { + export interface Function { /** * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain * underscores and dashes, with a maximum length of 64. @@ -557,3 +576,9 @@ export namespace CompletionCreateParams { } } } + +export namespace Completions { + export import ChatCompletion = API.ChatCompletion; + export import ChatCompletionChunk = API.ChatCompletionChunk; + export import CompletionCreateParams = API.CompletionCreateParams; +} diff --git a/resources/chat/index.ts b/resources/chat/index.ts index 58b7e0c36..84c8559cc 100644 --- a/resources/chat/index.ts +++ b/resources/chat/index.ts @@ -1,3 +1,4 @@ // File generated from our OpenAPI spec by Stainless. -export { ChatCompletion, ChatCompletionEvent, CompletionCreateParams } from './completions'; +export { Chat } from './chat'; +export { ChatCompletion, ChatCompletionChunk, CompletionCreateParams, Completions } from './completions'; diff --git a/resources/completions.ts b/resources/completions.ts index ad3a1f743..3e6952084 100644 --- a/resources/completions.ts +++ b/resources/completions.ts @@ -2,6 +2,7 @@ import * as Core from '~/core'; import { APIResource } from '~/resource'; +import * as API from './'; import { Stream } from '~/streaming'; export class Completions extends APIResource { @@ -82,7 +83,15 @@ export namespace CompletionCreateParams { * models, or see our [Model overview](/docs/models/overview) for descriptions of * them. */ - model: string; + model: + | (string & {}) + | 'text-davinci-003' + | 'text-davinci-002' + | 'text-davinci-001' + | 'code-davinci-002' + | 'text-curie-001' + | 'text-babbage-001' + | 'text-ada-001'; /** * The prompt(s) to generate completions for, encoded as a string, array of @@ -229,7 +238,15 @@ export namespace CompletionCreateParams { * models, or see our [Model overview](/docs/models/overview) for descriptions of * them. */ - model: string; + model: + | (string & {}) + | 'text-davinci-003' + | 'text-davinci-002' + | 'text-davinci-001' + | 'code-davinci-002' + | 'text-curie-001' + | 'text-babbage-001' + | 'text-ada-001'; /** * The prompt(s) to generate completions for, encoded as a string, array of @@ -369,3 +386,9 @@ export namespace CompletionCreateParams { user?: string; } } + +export namespace Completions { + export import Completion = API.Completion; + export import CompletionChoice = API.CompletionChoice; + export import CompletionCreateParams = API.CompletionCreateParams; +} diff --git a/resources/edits.ts b/resources/edits.ts index 856ba0089..d03078cef 100644 --- a/resources/edits.ts +++ b/resources/edits.ts @@ -2,6 +2,7 @@ import * as Core from '~/core'; import { APIResource } from '~/resource'; +import * as API from './'; export class Edits extends APIResource { /** @@ -13,7 +14,7 @@ export class Edits extends APIResource { } export interface Edit { - choices: Array; + choices: Array; created: number; @@ -23,17 +24,17 @@ export interface Edit { } export namespace Edit { - export interface Choices { + export interface Choice { finish_reason?: 'stop' | 'length'; index?: number; - logprobs?: Choices.Logprobs | null; + logprobs?: Choice.Logprobs | null; text?: string; } - export namespace Choices { + export namespace Choice { export interface Logprobs { text_offset?: Array; @@ -64,7 +65,7 @@ export interface EditCreateParams { * ID of the model to use. You can use the `text-davinci-edit-001` or * `code-davinci-edit-001` model with this endpoint. */ - model: string; + model: (string & {}) | 'text-davinci-edit-001' | 'code-davinci-edit-001'; /** * The input text to use as a starting point for the edit. @@ -94,3 +95,8 @@ export interface EditCreateParams { */ top_p?: number | null; } + +export namespace Edits { + export import Edit = API.Edit; + export import EditCreateParams = API.EditCreateParams; +} diff --git a/resources/embeddings.ts b/resources/embeddings.ts index ae1c62f3e..b019d3a64 100644 --- a/resources/embeddings.ts +++ b/resources/embeddings.ts @@ -2,6 +2,7 @@ import * as Core from '~/core'; import { APIResource } from '~/resource'; +import * as API from './'; export class Embeddings extends APIResource { /** @@ -55,7 +56,7 @@ export interface EmbeddingCreateParams { * models, or see our [Model overview](/docs/models/overview) for descriptions of * them. */ - model: string; + model: (string & {}) | 'text-embedding-ada-002'; /** * A unique identifier representing your end-user, which can help OpenAI to monitor @@ -63,3 +64,8 @@ export interface EmbeddingCreateParams { */ user?: string; } + +export namespace Embeddings { + export import Embedding = API.Embedding; + export import EmbeddingCreateParams = API.EmbeddingCreateParams; +} diff --git a/resources/files.ts b/resources/files.ts index 9ecadfd42..b17e0c84a 100644 --- a/resources/files.ts +++ b/resources/files.ts @@ -2,8 +2,8 @@ import * as Core from '~/core'; import { APIResource } from '~/resource'; -import type * as FormData from 'formdata-node'; -import { multipartFormRequestOptions } from '~/core'; +import * as API from './'; +import { type Uploadable, multipartFormRequestOptions } from '~/core'; export class Files extends APIResource { /** @@ -12,14 +12,17 @@ export class Files extends APIResource { * organization can be up to 1 GB. Please contact us if you need to increase the * storage limit. */ - create(body: FileCreateParams, options?: Core.RequestOptions): Promise> { - return this.post('/files', multipartFormRequestOptions({ body, ...options })); + async create( + body: FileCreateParams, + options?: Core.RequestOptions, + ): Promise> { + return this.post('/files', await multipartFormRequestOptions({ body, ...options })); } /** * Returns information about a specific file. */ - retrieve(fileId: string, options?: Core.RequestOptions): Promise> { + retrieve(fileId: string, options?: Core.RequestOptions): Promise> { return this.get(`/files/${fileId}`, options); } @@ -33,7 +36,7 @@ export class Files extends APIResource { /** * Delete a file. */ - del(fileId: string, options?: Core.RequestOptions): Promise> { + del(fileId: string, options?: Core.RequestOptions): Promise> { return this.delete(`/files/${fileId}`, options); } @@ -51,7 +54,17 @@ export class Files extends APIResource { } } -export interface File { +export type FileContentResponse = string; + +export interface FileDeletedResponse { + deleted: boolean; + + id: string; + + object: string; +} + +export interface FileResponse { bytes: number; created_at: number; @@ -65,24 +78,16 @@ export interface File { purpose: string; status?: string; -} -export interface FileListResponse { - data: Array; - - object: string; + status_details?: unknown | null; } -export interface FileDeleteResponse { - deleted: boolean; - - id: string; +export interface FileListResponse { + data: Array; object: string; } -export type FileRetrieveFileContentResponse = string; - export interface FileCreateParams { /** * Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be @@ -92,7 +97,7 @@ export interface FileCreateParams { * and "completion" fields representing your * [training examples](/docs/guides/fine-tuning/prepare-training-data). */ - file: FormData.Blob | FormData.File; + file: Uploadable; /** * The intended purpose of the uploaded documents. @@ -102,3 +107,11 @@ export interface FileCreateParams { */ purpose: string; } + +export namespace Files { + export import FileContentResponse = API.FileContentResponse; + export import FileDeletedResponse = API.FileDeletedResponse; + export import FileResponse = API.FileResponse; + export import FileListResponse = API.FileListResponse; + export import FileCreateParams = API.FileCreateParams; +} diff --git a/resources/fine-tunes.ts b/resources/fine-tunes.ts index 4d88581eb..2f082b035 100644 --- a/resources/fine-tunes.ts +++ b/resources/fine-tunes.ts @@ -3,6 +3,7 @@ import * as Core from '~/core'; import { APIResource } from '~/resource'; import * as Files from '~/resources/files'; +import * as API from './'; import { Stream } from '~/streaming'; export class FineTunes extends APIResource { @@ -82,15 +83,15 @@ export interface FineTune { organization_id: string; - result_files: Array; + result_files: Array; status: string; - training_files: Array; + training_files: Array; updated_at: number; - validation_files: Array; + validation_files: Array; events?: Array; } @@ -198,7 +199,7 @@ export interface FineTuneCreateParams { * more about these models, see the * [Models](https://platform.openai.com/docs/models) documentation. */ - model?: string | null; + model?: (string & {}) | 'ada' | 'babbage' | 'curie' | 'davinci' | null; /** * The number of epochs to train the model for. An epoch refers to one full cycle @@ -275,3 +276,12 @@ export namespace FineTuneListEventsParams { stream: true; } } + +export namespace FineTunes { + export import FineTune = API.FineTune; + export import FineTuneEvent = API.FineTuneEvent; + export import ListFineTuneEventsResponse = API.ListFineTuneEventsResponse; + export import ListFineTunesResponse = API.ListFineTunesResponse; + export import FineTuneCreateParams = API.FineTuneCreateParams; + export import FineTuneListEventsParams = API.FineTuneListEventsParams; +} diff --git a/resources/images.ts b/resources/images.ts index 0a3af2b00..7c79cfe25 100644 --- a/resources/images.ts +++ b/resources/images.ts @@ -2,25 +2,28 @@ import * as Core from '~/core'; import { APIResource } from '~/resource'; -import type * as FormData from 'formdata-node'; -import { multipartFormRequestOptions } from '~/core'; +import * as API from './'; +import { type Uploadable, multipartFormRequestOptions } from '~/core'; export class Images extends APIResource { /** * Creates a variation of a given image. */ - createVariation( + async createVariation( body: ImageCreateVariationParams, options?: Core.RequestOptions, ): Promise> { - return this.post('/images/variations', multipartFormRequestOptions({ body, ...options })); + return this.post('/images/variations', await multipartFormRequestOptions({ body, ...options })); } /** * Creates an edited or extended image given an original image and a prompt. */ - edit(body: ImageEditParams, options?: Core.RequestOptions): Promise> { - return this.post('/images/edits', multipartFormRequestOptions({ body, ...options })); + async edit( + body: ImageEditParams, + options?: Core.RequestOptions, + ): Promise> { + return this.post('/images/edits', await multipartFormRequestOptions({ body, ...options })); } /** @@ -51,7 +54,7 @@ export interface ImageCreateVariationParams { * The image to use as the basis for the variation(s). Must be a valid PNG file, * less than 4MB, and square. */ - image: FormData.Blob | FormData.File; + image: Uploadable; /** * The number of images to generate. Must be between 1 and 10. @@ -82,7 +85,7 @@ export interface ImageEditParams { * The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask * is not provided, image must have transparency, which will be used as the mask. */ - image: FormData.Blob | FormData.File; + image: Uploadable; /** * A text description of the desired image(s). The maximum length is 1000 @@ -95,7 +98,7 @@ export interface ImageEditParams { * indicate where `image` should be edited. Must be a valid PNG file, less than * 4MB, and have the same dimensions as `image`. */ - mask?: FormData.Blob | FormData.File; + mask?: Uploadable; /** * The number of images to generate. Must be between 1 and 10. @@ -151,3 +154,11 @@ export interface ImageGenerateParams { */ user?: string; } + +export namespace Images { + export import Image = API.Image; + export import ImagesResponse = API.ImagesResponse; + export import ImageCreateVariationParams = API.ImageCreateVariationParams; + export import ImageEditParams = API.ImageEditParams; + export import ImageGenerateParams = API.ImageGenerateParams; +} diff --git a/resources/index.ts b/resources/index.ts index d056fd386..a604f5c98 100644 --- a/resources/index.ts +++ b/resources/index.ts @@ -1,18 +1,15 @@ // File generated from our OpenAPI spec by Stainless. -export { AnswerCreateResponse, AnswerCreateParams, Answers } from './answers'; export { Audio } from './audio/audio'; export { Chat } from './chat/chat'; -export { ClassificationCreateResponse, ClassificationCreateParams, Classifications } from './classifications'; export { Completion, CompletionChoice, CompletionCreateParams, Completions } from './completions'; -export { DeleteModelResponse, ListModelsResponse, Model, Models } from './models'; export { Edit, EditCreateParams, Edits } from './edits'; export { Embedding, EmbeddingCreateParams, Embeddings } from './embeddings'; export { - File, + FileContentResponse, + FileDeletedResponse, + FileResponse, FileListResponse, - FileDeleteResponse, - FileRetrieveFileContentResponse, FileCreateParams, Files, } from './files'; @@ -33,4 +30,5 @@ export { ImageGenerateParams, Images, } from './images'; +export { ListModelsResponse, Model, ModelDeletedResponse, Models } from './models'; export { Moderation, ModerationCreateResponse, ModerationCreateParams, Moderations } from './moderations'; diff --git a/resources/models.ts b/resources/models.ts index cb7b0da5f..4a464b4d5 100644 --- a/resources/models.ts +++ b/resources/models.ts @@ -2,6 +2,7 @@ import * as Core from '~/core'; import { APIResource } from '~/resource'; +import * as API from './'; export class Models extends APIResource { /** @@ -23,19 +24,11 @@ export class Models extends APIResource { /** * Delete a fine-tuned model. You must have the Owner role in your organization. */ - del(model: string, options?: Core.RequestOptions): Promise> { + del(model: string, options?: Core.RequestOptions): Promise> { return this.delete(`/models/${model}`, options); } } -export interface DeleteModelResponse { - deleted: boolean; - - id: string; - - object: string; -} - export interface ListModelsResponse { data: Array; @@ -51,3 +44,17 @@ export interface Model { owned_by: string; } + +export interface ModelDeletedResponse { + deleted: boolean; + + id: string; + + object: string; +} + +export namespace Models { + export import ListModelsResponse = API.ListModelsResponse; + export import Model = API.Model; + export import ModelDeletedResponse = API.ModelDeletedResponse; +} diff --git a/resources/moderations.ts b/resources/moderations.ts index 3e9ba3718..6ddb29f7f 100644 --- a/resources/moderations.ts +++ b/resources/moderations.ts @@ -2,6 +2,7 @@ import * as Core from '~/core'; import { APIResource } from '~/resource'; +import * as API from './'; export class Moderations extends APIResource { /** @@ -81,5 +82,11 @@ export interface ModerationCreateParams { * model. Accuracy of `text-moderation-stable` may be slightly lower than for * `text-moderation-latest`. */ - model?: string; + model?: (string & {}) | 'text-moderation-latest' | 'text-moderation-stable'; +} + +export namespace Moderations { + export import Moderation = API.Moderation; + export import ModerationCreateResponse = API.ModerationCreateResponse; + export import ModerationCreateParams = API.ModerationCreateParams; } diff --git a/scripts/prepare-cjs-build.mjs b/scripts/prepare-cjs-build.mjs new file mode 100755 index 000000000..cbb896076 --- /dev/null +++ b/scripts/prepare-cjs-build.mjs @@ -0,0 +1,15 @@ +#!/usr/bin/env node + +import fs from 'node:fs/promises'; + +// add the following line back to index.ts if necessary: +// + exports = module.exports = OpenAI +// export default OpenAI +const code = await fs.readFile('index.ts', 'utf8'); +if (!/^\s*exports\s*=\s*module.exports\s*=\s*(\w+)/m.test(code)) { + await fs.writeFile( + 'index.ts', + code.replace(/\n?\s*export\s+default\s+(\w+)/m, '\nexports = module.exports = $1;\nexport default $1'), + 'utf8', + ); +} diff --git a/scripts/prepare-esm-build.mjs b/scripts/prepare-esm-build.mjs new file mode 100755 index 000000000..bad68ebb0 --- /dev/null +++ b/scripts/prepare-esm-build.mjs @@ -0,0 +1,12 @@ +#!/usr/bin/env node + +import fs from 'node:fs/promises'; + +// remove the following line from index.ts if present: +// - exports = module.exports = OpenAI +// export default OpenAI +const code = await fs.readFile('index.ts', 'utf8'); +const transformed = code.replace(/^\s*exports\s*=\s*module.exports\s*=\s*(\w+)\s*;?\s*\n?/m, ''); +if (transformed !== code) { + await fs.writeFile('index.ts', transformed, 'utf8'); +} diff --git a/streaming.ts b/streaming.ts index c12bafb5b..3d5680f44 100644 --- a/streaming.ts +++ b/streaming.ts @@ -1,4 +1,4 @@ -import type { Response } from 'node-fetch'; +import type { Response } from 'openai/_shims/fetch'; import { APIResponse, Headers, createResponseHeaders } from '~/core'; type ServerSentEvent = { @@ -88,6 +88,8 @@ export class Stream implements AsyncIterable, APIResponse { - // Prism choked, idk + // Prism doesn't support multipart/form-data test.skip('create: only required params', async () => { - const response = await openAI.audio.transcriptions.create({ - file: await fileFromPath('README.md'), - model: 'string', + const response = await openai.audio.transcriptions.create({ + file: await toFile(Buffer.from('# my file contents'), 'README.md'), + model: 'whisper-1', }); }); - // Prism choked, idk + // Prism doesn't support multipart/form-data test.skip('create: required and optional params', async () => { - const response = await openAI.audio.transcriptions.create({ - file: await fileFromPath('README.md'), - model: 'string', + const response = await openai.audio.transcriptions.create({ + file: await toFile(Buffer.from('# my file contents'), 'README.md'), + model: 'whisper-1', language: 'string', prompt: 'string', response_format: 'string', diff --git a/tests/api-resources/audio/translations.test.ts b/tests/api-resources/audio/translations.test.ts index 0c2c44b2d..949e3e4da 100644 --- a/tests/api-resources/audio/translations.test.ts +++ b/tests/api-resources/audio/translations.test.ts @@ -1,24 +1,24 @@ // File generated from our OpenAPI spec by Stainless. -import { fileFromPath } from 'formdata-node/file-from-path'; +import { toFile } from 'openai'; import OpenAI from '~/index'; -const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource translations', () => { - // Prism choked, idk + // Prism doesn't support multipart/form-data test.skip('create: only required params', async () => { - const response = await openAI.audio.translations.create({ - file: await fileFromPath('README.md'), - model: 'string', + const response = await openai.audio.translations.create({ + file: await toFile(Buffer.from('# my file contents'), 'README.md'), + model: 'whisper-1', }); }); - // Prism choked, idk + // Prism doesn't support multipart/form-data test.skip('create: required and optional params', async () => { - const response = await openAI.audio.translations.create({ - file: await fileFromPath('README.md'), - model: 'string', + const response = await openai.audio.translations.create({ + file: await toFile(Buffer.from('# my file contents'), 'README.md'), + model: 'whisper-1', prompt: 'string', response_format: 'string', temperature: 0, diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index ca4e21195..4e88afde8 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -2,18 +2,18 @@ import OpenAI from '~/index'; -const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource completions', () => { test('create: only required params', async () => { - const response = await openAI.chat.completions.create({ + const response = await openai.chat.completions.create({ messages: [{ role: 'system' }], - model: 'string', + model: 'gpt-3.5-turbo', }); }); test('create: required and optional params', async () => { - const response = await openAI.chat.completions.create({ + const response = await openai.chat.completions.create({ messages: [ { role: 'system', @@ -22,7 +22,7 @@ describe('resource completions', () => { function_call: { name: 'string', arguments: 'string' }, }, ], - model: 'string', + model: 'gpt-3.5-turbo', frequency_penalty: -2, function_call: 'none', functions: [{ name: 'string', description: 'string', parameters: { foo: 'bar' } }], diff --git a/tests/api-resources/completions.test.ts b/tests/api-resources/completions.test.ts index 2d7e1c688..5aacb329a 100644 --- a/tests/api-resources/completions.test.ts +++ b/tests/api-resources/completions.test.ts @@ -2,15 +2,15 @@ import OpenAI from '~/index'; -const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource completions', () => { test('create: only required params', async () => { - const response = await openAI.completions.create({ model: 'string', prompt: 'This is a test.' }); + const response = await openai.completions.create({ model: 'string', prompt: 'This is a test.' }); }); test('create: required and optional params', async () => { - const response = await openAI.completions.create({ + const response = await openai.completions.create({ model: 'string', prompt: 'This is a test.', best_of: 0, diff --git a/tests/api-resources/edits.test.ts b/tests/api-resources/edits.test.ts index c1ef992f7..a37b95557 100644 --- a/tests/api-resources/edits.test.ts +++ b/tests/api-resources/edits.test.ts @@ -2,20 +2,20 @@ import OpenAI from '~/index'; -const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource edits', () => { test('create: only required params', async () => { - const response = await openAI.edits.create({ + const response = await openai.edits.create({ instruction: 'Fix the spelling mistakes.', - model: 'string', + model: 'text-davinci-edit-001', }); }); test('create: required and optional params', async () => { - const response = await openAI.edits.create({ + const response = await openai.edits.create({ instruction: 'Fix the spelling mistakes.', - model: 'string', + model: 'text-davinci-edit-001', input: 'What day of the wek is it?', n: 1, temperature: 1, diff --git a/tests/api-resources/embeddings.test.ts b/tests/api-resources/embeddings.test.ts index 84e4b2d04..dbd3f9a4e 100644 --- a/tests/api-resources/embeddings.test.ts +++ b/tests/api-resources/embeddings.test.ts @@ -2,20 +2,20 @@ import OpenAI from '~/index'; -const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource embeddings', () => { test('create: only required params', async () => { - const response = await openAI.embeddings.create({ + const response = await openai.embeddings.create({ input: 'The quick brown fox jumped over the lazy dog', - model: 'string', + model: 'text-embedding-ada-002', }); }); test('create: required and optional params', async () => { - const response = await openAI.embeddings.create({ + const response = await openai.embeddings.create({ input: 'The quick brown fox jumped over the lazy dog', - model: 'string', + model: 'text-embedding-ada-002', user: 'user-1234', }); }); diff --git a/tests/api-resources/files.test.ts b/tests/api-resources/files.test.ts index 8174840c7..600eb6814 100644 --- a/tests/api-resources/files.test.ts +++ b/tests/api-resources/files.test.ts @@ -1,64 +1,70 @@ // File generated from our OpenAPI spec by Stainless. -import { fileFromPath } from 'formdata-node/file-from-path'; +import { toFile } from 'openai'; import OpenAI from '~/index'; -const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource files', () => { // Prism tests are broken test.skip('create: only required params', async () => { - const response = await openAI.files.create({ file: await fileFromPath('README.md'), purpose: 'string' }); + const response = await openai.files.create({ + file: await toFile(Buffer.from('# my file contents'), 'README.md'), + purpose: 'string', + }); }); // Prism tests are broken test.skip('create: required and optional params', async () => { - const response = await openAI.files.create({ file: await fileFromPath('README.md'), purpose: 'string' }); + const response = await openai.files.create({ + file: await toFile(Buffer.from('# my file contents'), 'README.md'), + purpose: 'string', + }); }); test('retrieve', async () => { - const response = await openAI.files.retrieve('string'); + const response = await openai.files.retrieve('string'); }); test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openAI.files.retrieve('string', { path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(openai.files.retrieve('string', { path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); test('list', async () => { - const response = await openAI.files.list(); + const response = await openai.files.list(); }); test('list: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openAI.files.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(openai.files.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); test('del', async () => { - const response = await openAI.files.del('string'); + const response = await openai.files.del('string'); }); test('del: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openAI.files.del('string', { path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(openai.files.del('string', { path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); // Prism tests are broken test.skip('retrieveFileContent', async () => { - const response = await openAI.files.retrieveFileContent('string'); + const response = await openai.files.retrieveFileContent('string'); }); // Prism tests are broken test.skip('retrieveFileContent: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openAI.files.retrieveFileContent('string', { path: '/_stainless_unknown_path' }), + openai.files.retrieveFileContent('string', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); }); diff --git a/tests/api-resources/fine-tunes.test.ts b/tests/api-resources/fine-tunes.test.ts index 83428bdd9..5e7385bc1 100644 --- a/tests/api-resources/fine-tunes.test.ts +++ b/tests/api-resources/fine-tunes.test.ts @@ -2,15 +2,15 @@ import OpenAI from '~/index'; -const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource fineTunes', () => { test('create: only required params', async () => { - const response = await openAI.fineTunes.create({ training_file: 'file-ajSREls59WBbvgSzJSVWxMCB' }); + const response = await openai.fineTunes.create({ training_file: 'file-ajSREls59WBbvgSzJSVWxMCB' }); }); test('create: required and optional params', async () => { - const response = await openAI.fineTunes.create({ + const response = await openai.fineTunes.create({ training_file: 'file-ajSREls59WBbvgSzJSVWxMCB', batch_size: 0, classification_betas: [0, 0, 0], @@ -18,7 +18,7 @@ describe('resource fineTunes', () => { classification_positive_class: 'string', compute_classification_metrics: true, learning_rate_multiplier: 0, - model: 'string', + model: 'curie', n_epochs: 0, prompt_loss_weight: 0, suffix: 'x', @@ -27,48 +27,48 @@ describe('resource fineTunes', () => { }); test('retrieve', async () => { - const response = await openAI.fineTunes.retrieve('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); + const response = await openai.fineTunes.retrieve('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); }); test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openAI.fineTunes.retrieve('ft-AF1WoRqd3aJAHsqc9NY7iL8F', { path: '/_stainless_unknown_path' }), + openai.fineTunes.retrieve('ft-AF1WoRqd3aJAHsqc9NY7iL8F', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('list', async () => { - const response = await openAI.fineTunes.list(); + const response = await openai.fineTunes.list(); }); test('list: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openAI.fineTunes.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(openai.fineTunes.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); test('cancel', async () => { - const response = await openAI.fineTunes.cancel('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); + const response = await openai.fineTunes.cancel('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); }); test('cancel: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openAI.fineTunes.cancel('ft-AF1WoRqd3aJAHsqc9NY7iL8F', { path: '/_stainless_unknown_path' }), + openai.fineTunes.cancel('ft-AF1WoRqd3aJAHsqc9NY7iL8F', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); // Prism chokes on this test.skip('listEvents', async () => { - const response = await openAI.fineTunes.listEvents('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); + const response = await openai.fineTunes.listEvents('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); }); // Prism chokes on this test.skip('listEvents: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openAI.fineTunes.listEvents( + openai.fineTunes.listEvents( 'ft-AF1WoRqd3aJAHsqc9NY7iL8F', { stream: false }, { path: '/_stainless_unknown_path' }, diff --git a/tests/api-resources/images.test.ts b/tests/api-resources/images.test.ts index 70f0a9cce..1fc5c8273 100644 --- a/tests/api-resources/images.test.ts +++ b/tests/api-resources/images.test.ts @@ -1,20 +1,22 @@ // File generated from our OpenAPI spec by Stainless. -import { fileFromPath } from 'formdata-node/file-from-path'; +import { toFile } from 'openai'; import OpenAI from '~/index'; -const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource images', () => { - // Prism choked, idk + // Prism doesn't support multipart/form-data test.skip('createVariation: only required params', async () => { - const response = await openAI.images.createVariation({ image: await fileFromPath('README.md') }); + const response = await openai.images.createVariation({ + image: await toFile(Buffer.from('# my file contents'), 'README.md'), + }); }); - // Prism choked, idk + // Prism doesn't support multipart/form-data test.skip('createVariation: required and optional params', async () => { - const response = await openAI.images.createVariation({ - image: await fileFromPath('README.md'), + const response = await openai.images.createVariation({ + image: await toFile(Buffer.from('# my file contents'), 'README.md'), n: 1, response_format: 'url', size: '1024x1024', @@ -22,20 +24,20 @@ describe('resource images', () => { }); }); - // Prism choked, idk + // Prism doesn't support multipart/form-data test.skip('edit: only required params', async () => { - const response = await openAI.images.edit({ - image: await fileFromPath('README.md'), + const response = await openai.images.edit({ + image: await toFile(Buffer.from('# my file contents'), 'README.md'), prompt: 'A cute baby sea otter wearing a beret', }); }); - // Prism choked, idk + // Prism doesn't support multipart/form-data test.skip('edit: required and optional params', async () => { - const response = await openAI.images.edit({ - image: await fileFromPath('README.md'), + const response = await openai.images.edit({ + image: await toFile(Buffer.from('# my file contents'), 'README.md'), prompt: 'A cute baby sea otter wearing a beret', - mask: await fileFromPath('README.md'), + mask: await toFile(Buffer.from('# my file contents'), 'README.md'), n: 1, response_format: 'url', size: '1024x1024', @@ -43,14 +45,14 @@ describe('resource images', () => { }); }); - // Prism choked, idk + // Prism doesn't support multipart/form-data test.skip('generate: only required params', async () => { - const response = await openAI.images.generate({ prompt: 'A cute baby sea otter' }); + const response = await openai.images.generate({ prompt: 'A cute baby sea otter' }); }); - // Prism choked, idk + // Prism doesn't support multipart/form-data test.skip('generate: required and optional params', async () => { - const response = await openAI.images.generate({ + const response = await openai.images.generate({ prompt: 'A cute baby sea otter', n: 1, response_format: 'url', diff --git a/tests/api-resources/models.test.ts b/tests/api-resources/models.test.ts index a54b5fabf..881284e9d 100644 --- a/tests/api-resources/models.test.ts +++ b/tests/api-resources/models.test.ts @@ -2,39 +2,39 @@ import OpenAI from '~/index'; -const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource models', () => { test('retrieve', async () => { - const response = await openAI.models.retrieve('text-davinci-001'); + const response = await openai.models.retrieve('text-davinci-001'); }); test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openAI.models.retrieve('text-davinci-001', { path: '/_stainless_unknown_path' }), + openai.models.retrieve('text-davinci-001', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('list', async () => { - const response = await openAI.models.list(); + const response = await openai.models.list(); }); test('list: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openAI.models.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(openai.models.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); test('del', async () => { - const response = await openAI.models.del('curie:ft-acmeco-2021-03-03-21-44-20'); + const response = await openai.models.del('curie:ft-acmeco-2021-03-03-21-44-20'); }); test('del: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openAI.models.del('curie:ft-acmeco-2021-03-03-21-44-20', { path: '/_stainless_unknown_path' }), + openai.models.del('curie:ft-acmeco-2021-03-03-21-44-20', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); }); diff --git a/tests/api-resources/moderations.test.ts b/tests/api-resources/moderations.test.ts index 0a103db5c..6b67b8567 100644 --- a/tests/api-resources/moderations.test.ts +++ b/tests/api-resources/moderations.test.ts @@ -2,15 +2,15 @@ import OpenAI from '~/index'; -const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource moderations', () => { test('create: only required params', async () => { - const response = await openAI.moderations.create({ input: 'I want to kill them.' }); + const response = await openai.moderations.create({ input: 'I want to kill them.' }); }); test('create: required and optional params', async () => { - const response = await openAI.moderations.create({ + const response = await openai.moderations.create({ input: 'I want to kill them.', model: 'text-moderation-stable', }); diff --git a/tests/form.test.ts b/tests/form.test.ts index cc58aeaf7..47e5ad8ab 100644 --- a/tests/form.test.ts +++ b/tests/form.test.ts @@ -1,27 +1,65 @@ -import { multipartFormRequestOptions } from '~/core'; -import { Blob } from 'formdata-node'; -import { fileFromPath } from 'formdata-node/file-from-path'; +import { multipartFormRequestOptions, createForm } from '../core'; +import { Blob } from 'openai/_shims/formdata'; +import { toFile } from 'openai'; describe('form data validation', () => { test('valid values do not error', async () => { - multipartFormRequestOptions({ + await multipartFormRequestOptions({ body: { foo: 'foo', string: 1, bool: true, - file: await fileFromPath('README.md'), + file: await toFile(Buffer.from('some-content')), blob: new Blob(['Some content'], { type: 'text/plain' }), }, }); }); test('null', async () => { - expect(() => + await expect(() => multipartFormRequestOptions({ body: { null: null, }, }), - ).toThrow(TypeError); + ).rejects.toThrow(TypeError); + }); + + test('undefined is stripped', async () => { + const form = await createForm({ + foo: undefined, + bar: 'baz', + }); + expect(form.has('foo')).toBe(false); + expect(form.get('bar')).toBe('baz'); + }); + + test('nested undefined property is stripped', async () => { + const form = await createForm({ + bar: { + baz: undefined, + }, + }); + expect(Array.from(form.entries())).toEqual([]); + + const form2 = await createForm({ + bar: { + foo: 'string', + baz: undefined, + }, + }); + expect(Array.from(form2.entries())).toEqual([['bar[foo]', 'string']]); + }); + + test('nested undefined array item is stripped', async () => { + const form = await createForm({ + bar: [undefined, undefined], + }); + expect(Array.from(form.entries())).toEqual([]); + + const form2 = await createForm({ + bar: [undefined, 'foo'], + }); + expect(Array.from(form2.entries())).toEqual([['bar[]', 'foo']]); }); }); diff --git a/tests/responses.test.ts b/tests/responses.test.ts index ffd0899c6..38ffc086b 100644 --- a/tests/responses.test.ts +++ b/tests/responses.test.ts @@ -1,5 +1,5 @@ -import { createResponseHeaders } from '~/core'; -import { Headers } from 'node-fetch'; +import { createResponseHeaders } from '../core'; +import { Headers } from 'openai/_shims/fetch'; describe('response parsing', () => { // TODO: test unicode characters diff --git a/tests/uploads.test.ts b/tests/uploads.test.ts new file mode 100644 index 000000000..9ff353461 --- /dev/null +++ b/tests/uploads.test.ts @@ -0,0 +1,58 @@ +import fs from 'fs'; +import { toFile } from '~/uploads'; +import { ResponseLike } from 'openai/_shims/uploadable'; +import { File } from 'openai/_shims/formdata'; + +class MyClass { + name: string = 'foo'; +} + +function mockResponse({ url, content }: { url: string; content?: Blob }): ResponseLike { + return { + url, + blob: async () => content as any, + }; +} + +describe('toFile', () => { + it('throws a helpful error for mismatched types', async () => { + await expect( + // @ts-expect-error intentionally mismatched type + toFile({ foo: 'string' }), + ).rejects.toThrowErrorMatchingInlineSnapshot( + `"Unexpected data type: object; constructor: Object; props: ["foo"]"`, + ); + + await expect( + // @ts-expect-error intentionally mismatched type + toFile(new MyClass()), + ).rejects.toThrowErrorMatchingInlineSnapshot( + `"Unexpected data type: object; constructor: MyClass; props: ["name"]"`, + ); + }); + + it('disallows string at the type-level', async () => { + // @ts-expect-error we intentionally do not type support for `string` + // to help people avoid passing a file path + const file = await toFile('contents'); + expect(file.text()).resolves.toEqual('contents'); + }); + + it('extracts a file name from a Response', async () => { + const response = mockResponse({ url: 'https://example.com/my/audio.mp3' }); + const file = await toFile(response); + expect(file.name).toEqual('audio.mp3'); + }); + + it('extracts a file name from a File', async () => { + const input = new File(['foo'], 'input.jsonl'); + const file = await toFile(input); + expect(file.name).toEqual('input.jsonl'); + }); + + it('extracts a file name from a ReadStream', async () => { + const input = fs.createReadStream('tests/uploads.test.ts'); + const file = await toFile(input); + expect(file.name).toEqual('uploads.test.ts'); + }); +}); diff --git a/tsconfig.cjs.json b/tsconfig.cjs.json index d78d65859..db6064ea9 100644 --- a/tsconfig.cjs.json +++ b/tsconfig.cjs.json @@ -1,5 +1,6 @@ { "extends": "./tsconfig.json", + "exclude": ["examples", "dist", "tests", "ecosystem-tests"], "compilerOptions": { "target": "es2016", "module": "commonjs", diff --git a/tsconfig.esm.json b/tsconfig.esm.json new file mode 100644 index 000000000..f3f8823c4 --- /dev/null +++ b/tsconfig.esm.json @@ -0,0 +1,10 @@ +{ + "extends": "./tsconfig.json", + "exclude": ["examples", "dist", "tests", "ecosystem-tests"], + "compilerOptions": { + "lib": ["ES2021"], + "target": "ES2021", + "module": "ESNext", + "outDir": "dist/esm/" + } +} diff --git a/tsconfig.json b/tsconfig.json index 8e82d667f..3b6bc3d64 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,5 @@ { + "exclude": ["dist", "ecosystem-tests"], "compilerOptions": { "target": "es2019", "lib": ["es2020"], @@ -9,6 +10,7 @@ "baseUrl": "./", "paths": { "~/*": ["*"], + "openai/_shims/*": ["_shims/*.node"], "digest-fetch": ["./typings/digest-fetch"] }, diff --git a/uploads.ts b/uploads.ts new file mode 100644 index 000000000..965beb946 --- /dev/null +++ b/uploads.ts @@ -0,0 +1,81 @@ +import type { Readable } from 'node:stream'; +import type { RequestOptions } from './core'; +import { type BodyInit } from 'openai/_shims/fetch'; +import { FormData } from 'openai/_shims/formdata'; +import { getMultipartRequestOptions } from 'openai/_shims/getMultipartRequestOptions'; +import { isUploadable } from 'openai/_shims/uploadable'; +import { toFile } from 'openai/_shims/toFile'; +import { fileFromPath } from 'openai/_shims/fileFromPath'; + +export { toFile, fileFromPath }; + +type MultipartBody = { + __multipartBody__: Readable | BodyInit; +}; + +export const isMultipartBody = (body: any): body is MultipartBody => + typeof body === 'object' && body?.__multipartBody__ != null; + +/** + * Returns a multipart/form-data request if any part of the given request body contains a File / Blob value. + * Otherwise returns the request as is. + */ +export const maybeMultipartFormRequestOptions = async >( + opts: RequestOptions, +): Promise> => { + if (!hasUploadableValue(opts.body)) return opts; + + const form = await createForm(opts.body); + return getMultipartRequestOptions(form, opts); +}; + +export const multipartFormRequestOptions = async >( + opts: RequestOptions, +): Promise> => { + const form = await createForm(opts.body); + return getMultipartRequestOptions(form, opts); +}; + +export const createForm = async >(body: T | undefined): Promise => { + const form = new FormData(); + await Promise.all(Object.entries(body || {}).map(([key, value]) => addFormValue(form, key, value))); + return form; +}; + +const hasUploadableValue = (value: unknown): boolean => { + if (isUploadable(value)) return true; + if (Array.isArray(value)) return value.some(hasUploadableValue); + if (value && typeof value === 'object') { + for (const k in value) { + if (hasUploadableValue((value as any)[k])) return true; + } + } + return false; +}; + +const addFormValue = async (form: FormData, key: string, value: unknown): Promise => { + if (value === undefined) return; + if (value == null) { + throw new TypeError( + `Received null for "${key}"; to pass null in FormData, you must use the string 'null'`, + ); + } + + // TODO: make nested formats configurable + if (typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean') { + form.append(key, value); + } else if (isUploadable(value)) { + const file = await toFile(value); + form.append(key, file); + } else if (Array.isArray(value)) { + await Promise.all(value.map((entry) => addFormValue(form, key + '[]', entry))); + } else if (typeof value === 'object') { + await Promise.all( + Object.entries(value).map(([name, prop]) => addFormValue(form, `${key}[${name}]`, prop)), + ); + } else { + throw new TypeError( + `Invalid value given to form, expected a string, number, boolean, object, Array, File or Blob but got ${value} instead`, + ); + } +}; diff --git a/version.ts b/version.ts index 470bb9184..db4ca0b4a 100644 --- a/version.ts +++ b/version.ts @@ -1 +1 @@ -export const VERSION = 'v4.0.0-beta.0'; +export const VERSION = '4.0.0-beta.1'; diff --git a/yarn.lock b/yarn.lock index e208334c3..118518286 100644 --- a/yarn.lock +++ b/yarn.lock @@ -124,6 +124,11 @@ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz#aa3a8ab4c3cceff8e65eb9e73d87dc4ff320b2f5" integrity sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA== +"@babel/helper-plugin-utils@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" + integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== + "@babel/helper-simple-access@^7.17.7": version "7.17.7" resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz#aaa473de92b7987c6dfa7ce9a7d9674724823367" @@ -225,6 +230,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" +"@babel/plugin-syntax-jsx@^7.7.2": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918" + integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" @@ -422,110 +434,110 @@ resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== -"@jest/console@^28.1.0": - version "28.1.0" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-28.1.0.tgz#db78222c3d3b0c1db82f1b9de51094c2aaff2176" - integrity sha512-tscn3dlJFGay47kb4qVruQg/XWlmvU0xp3EJOjzzY+sBaI+YgwKcvAmTcyYU7xEiLLIY5HCdWRooAL8dqkFlDA== +"@jest/console@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.5.0.tgz#593a6c5c0d3f75689835f1b3b4688c4f8544cb57" + integrity sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ== dependencies: - "@jest/types" "^28.1.0" + "@jest/types" "^29.5.0" "@types/node" "*" chalk "^4.0.0" - jest-message-util "^28.1.0" - jest-util "^28.1.0" + jest-message-util "^29.5.0" + jest-util "^29.5.0" slash "^3.0.0" -"@jest/core@^28.1.0": - version "28.1.0" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-28.1.0.tgz#784a1e6ce5358b46fcbdcfbbd93b1b713ed4ea80" - integrity sha512-/2PTt0ywhjZ4NwNO4bUqD9IVJfmFVhVKGlhvSpmEfUCuxYf/3NHcKmRFI+I71lYzbTT3wMuYpETDCTHo81gC/g== +"@jest/core@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.5.0.tgz#76674b96904484e8214614d17261cc491e5f1f03" + integrity sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ== dependencies: - "@jest/console" "^28.1.0" - "@jest/reporters" "^28.1.0" - "@jest/test-result" "^28.1.0" - "@jest/transform" "^28.1.0" - "@jest/types" "^28.1.0" + "@jest/console" "^29.5.0" + "@jest/reporters" "^29.5.0" + "@jest/test-result" "^29.5.0" + "@jest/transform" "^29.5.0" + "@jest/types" "^29.5.0" "@types/node" "*" ansi-escapes "^4.2.1" chalk "^4.0.0" ci-info "^3.2.0" exit "^0.1.2" graceful-fs "^4.2.9" - jest-changed-files "^28.0.2" - jest-config "^28.1.0" - jest-haste-map "^28.1.0" - jest-message-util "^28.1.0" - jest-regex-util "^28.0.2" - jest-resolve "^28.1.0" - jest-resolve-dependencies "^28.1.0" - jest-runner "^28.1.0" - jest-runtime "^28.1.0" - jest-snapshot "^28.1.0" - jest-util "^28.1.0" - jest-validate "^28.1.0" - jest-watcher "^28.1.0" + jest-changed-files "^29.5.0" + jest-config "^29.5.0" + jest-haste-map "^29.5.0" + jest-message-util "^29.5.0" + jest-regex-util "^29.4.3" + jest-resolve "^29.5.0" + jest-resolve-dependencies "^29.5.0" + jest-runner "^29.5.0" + jest-runtime "^29.5.0" + jest-snapshot "^29.5.0" + jest-util "^29.5.0" + jest-validate "^29.5.0" + jest-watcher "^29.5.0" micromatch "^4.0.4" - pretty-format "^28.1.0" - rimraf "^3.0.0" + pretty-format "^29.5.0" slash "^3.0.0" strip-ansi "^6.0.0" -"@jest/environment@^28.1.0": - version "28.1.0" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-28.1.0.tgz#dedf7d59ec341b9292fcf459fd0ed819eb2e228a" - integrity sha512-S44WGSxkRngzHslhV6RoAExekfF7Qhwa6R5+IYFa81mpcj0YgdBnRSmvHe3SNwOt64yXaE5GG8Y2xM28ii5ssA== +"@jest/environment@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.5.0.tgz#9152d56317c1fdb1af389c46640ba74ef0bb4c65" + integrity sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ== dependencies: - "@jest/fake-timers" "^28.1.0" - "@jest/types" "^28.1.0" + "@jest/fake-timers" "^29.5.0" + "@jest/types" "^29.5.0" "@types/node" "*" - jest-mock "^28.1.0" + jest-mock "^29.5.0" -"@jest/expect-utils@^28.1.0": - version "28.1.0" - resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-28.1.0.tgz#a5cde811195515a9809b96748ae8bcc331a3538a" - integrity sha512-5BrG48dpC0sB80wpeIX5FU6kolDJI4K0n5BM9a5V38MGx0pyRvUBSS0u2aNTdDzmOrCjhOg8pGs6a20ivYkdmw== +"@jest/expect-utils@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.5.0.tgz#f74fad6b6e20f924582dc8ecbf2cb800fe43a036" + integrity sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg== dependencies: - jest-get-type "^28.0.2" + jest-get-type "^29.4.3" -"@jest/expect@^28.1.0": - version "28.1.0" - resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-28.1.0.tgz#2e5a31db692597070932366a1602b5157f0f217c" - integrity sha512-be9ETznPLaHOmeJqzYNIXv1ADEzENuQonIoobzThOYPuK/6GhrWNIJDVTgBLCrz3Am73PyEU2urQClZp0hLTtA== +"@jest/expect@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.5.0.tgz#80952f5316b23c483fbca4363ce822af79c38fba" + integrity sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g== dependencies: - expect "^28.1.0" - jest-snapshot "^28.1.0" + expect "^29.5.0" + jest-snapshot "^29.5.0" -"@jest/fake-timers@^28.1.0": - version "28.1.0" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-28.1.0.tgz#ea77878aabd5c5d50e1fc53e76d3226101e33064" - integrity sha512-Xqsf/6VLeAAq78+GNPzI7FZQRf5cCHj1qgQxCjws9n8rKw8r1UYoeaALwBvyuzOkpU3c1I6emeMySPa96rxtIg== +"@jest/fake-timers@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.5.0.tgz#d4d09ec3286b3d90c60bdcd66ed28d35f1b4dc2c" + integrity sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg== dependencies: - "@jest/types" "^28.1.0" - "@sinonjs/fake-timers" "^9.1.1" + "@jest/types" "^29.5.0" + "@sinonjs/fake-timers" "^10.0.2" "@types/node" "*" - jest-message-util "^28.1.0" - jest-mock "^28.1.0" - jest-util "^28.1.0" + jest-message-util "^29.5.0" + jest-mock "^29.5.0" + jest-util "^29.5.0" -"@jest/globals@^28.1.0": - version "28.1.0" - resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-28.1.0.tgz#a4427d2eb11763002ff58e24de56b84ba79eb793" - integrity sha512-3m7sTg52OTQR6dPhsEQSxAvU+LOBbMivZBwOvKEZ+Rb+GyxVnXi9HKgOTYkx/S99T8yvh17U4tNNJPIEQmtwYw== +"@jest/globals@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.5.0.tgz#6166c0bfc374c58268677539d0c181f9c1833298" + integrity sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ== dependencies: - "@jest/environment" "^28.1.0" - "@jest/expect" "^28.1.0" - "@jest/types" "^28.1.0" + "@jest/environment" "^29.5.0" + "@jest/expect" "^29.5.0" + "@jest/types" "^29.5.0" + jest-mock "^29.5.0" -"@jest/reporters@^28.1.0": - version "28.1.0" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-28.1.0.tgz#5183a28b9b593b6000fa9b89b031c7216b58a9a0" - integrity sha512-qxbFfqap/5QlSpIizH9c/bFCDKsQlM4uAKSOvZrP+nIdrjqre3FmKzpTtYyhsaVcOSNK7TTt2kjm+4BJIjysFA== +"@jest/reporters@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.5.0.tgz#985dfd91290cd78ddae4914ba7921bcbabe8ac9b" + integrity sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA== dependencies: "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^28.1.0" - "@jest/test-result" "^28.1.0" - "@jest/transform" "^28.1.0" - "@jest/types" "^28.1.0" - "@jridgewell/trace-mapping" "^0.3.7" + "@jest/console" "^29.5.0" + "@jest/test-result" "^29.5.0" + "@jest/transform" "^29.5.0" + "@jest/types" "^29.5.0" + "@jridgewell/trace-mapping" "^0.3.15" "@types/node" "*" chalk "^4.0.0" collect-v8-coverage "^1.0.0" @@ -537,77 +549,77 @@ istanbul-lib-report "^3.0.0" istanbul-lib-source-maps "^4.0.0" istanbul-reports "^3.1.3" - jest-util "^28.1.0" - jest-worker "^28.1.0" + jest-message-util "^29.5.0" + jest-util "^29.5.0" + jest-worker "^29.5.0" slash "^3.0.0" string-length "^4.0.1" strip-ansi "^6.0.0" - terminal-link "^2.0.0" - v8-to-istanbul "^9.0.0" + v8-to-istanbul "^9.0.1" -"@jest/schemas@^28.0.2": - version "28.0.2" - resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-28.0.2.tgz#08c30df6a8d07eafea0aef9fb222c5e26d72e613" - integrity sha512-YVDJZjd4izeTDkij00vHHAymNXQ6WWsdChFRK86qck6Jpr3DCL5W3Is3vslviRlP+bLuMYRLbdp98amMvqudhA== +"@jest/schemas@^29.4.3": + version "29.4.3" + resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.4.3.tgz#39cf1b8469afc40b6f5a2baaa146e332c4151788" + integrity sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg== dependencies: - "@sinclair/typebox" "^0.23.3" + "@sinclair/typebox" "^0.25.16" -"@jest/source-map@^28.0.2": - version "28.0.2" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-28.0.2.tgz#914546f4410b67b1d42c262a1da7e0406b52dc90" - integrity sha512-Y9dxC8ZpN3kImkk0LkK5XCEneYMAXlZ8m5bflmSL5vrwyeUpJfentacCUg6fOb8NOpOO7hz2+l37MV77T6BFPw== +"@jest/source-map@^29.4.3": + version "29.4.3" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.4.3.tgz#ff8d05cbfff875d4a791ab679b4333df47951d20" + integrity sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w== dependencies: - "@jridgewell/trace-mapping" "^0.3.7" + "@jridgewell/trace-mapping" "^0.3.15" callsites "^3.0.0" graceful-fs "^4.2.9" -"@jest/test-result@^28.1.0": - version "28.1.0" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-28.1.0.tgz#fd149dee123510dd2fcadbbf5f0020f98ad7f12c" - integrity sha512-sBBFIyoPzrZho3N+80P35A5oAkSKlGfsEFfXFWuPGBsW40UAjCkGakZhn4UQK4iQlW2vgCDMRDOob9FGKV8YoQ== +"@jest/test-result@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.5.0.tgz#7c856a6ca84f45cc36926a4e9c6b57f1973f1408" + integrity sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ== dependencies: - "@jest/console" "^28.1.0" - "@jest/types" "^28.1.0" + "@jest/console" "^29.5.0" + "@jest/types" "^29.5.0" "@types/istanbul-lib-coverage" "^2.0.0" collect-v8-coverage "^1.0.0" -"@jest/test-sequencer@^28.1.0": - version "28.1.0" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-28.1.0.tgz#ce7294bbe986415b9a30e218c7e705e6ebf2cdf2" - integrity sha512-tZCEiVWlWNTs/2iK9yi6o3AlMfbbYgV4uuZInSVdzZ7ftpHZhCMuhvk2HLYhCZzLgPFQ9MnM1YaxMnh3TILFiQ== +"@jest/test-sequencer@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz#34d7d82d3081abd523dbddc038a3ddcb9f6d3cc4" + integrity sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ== dependencies: - "@jest/test-result" "^28.1.0" + "@jest/test-result" "^29.5.0" graceful-fs "^4.2.9" - jest-haste-map "^28.1.0" + jest-haste-map "^29.5.0" slash "^3.0.0" -"@jest/transform@^28.1.0": - version "28.1.0" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-28.1.0.tgz#224a3c9ba4cc98e2ff996c0a89a2d59db15c74ce" - integrity sha512-omy2xe5WxlAfqmsTjTPxw+iXRTRnf+NtX0ToG+4S0tABeb4KsKmPUHq5UBuwunHg3tJRwgEQhEp0M/8oiatLEA== +"@jest/transform@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.5.0.tgz#cf9c872d0965f0cbd32f1458aa44a2b1988b00f9" + integrity sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw== dependencies: "@babel/core" "^7.11.6" - "@jest/types" "^28.1.0" - "@jridgewell/trace-mapping" "^0.3.7" + "@jest/types" "^29.5.0" + "@jridgewell/trace-mapping" "^0.3.15" babel-plugin-istanbul "^6.1.1" chalk "^4.0.0" - convert-source-map "^1.4.0" - fast-json-stable-stringify "^2.0.0" + convert-source-map "^2.0.0" + fast-json-stable-stringify "^2.1.0" graceful-fs "^4.2.9" - jest-haste-map "^28.1.0" - jest-regex-util "^28.0.2" - jest-util "^28.1.0" + jest-haste-map "^29.5.0" + jest-regex-util "^29.4.3" + jest-util "^29.5.0" micromatch "^4.0.4" pirates "^4.0.4" slash "^3.0.0" - write-file-atomic "^4.0.1" + write-file-atomic "^4.0.2" -"@jest/types@^28.1.0": - version "28.1.0" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-28.1.0.tgz#508327a89976cbf9bd3e1cc74641a29fd7dfd519" - integrity sha512-xmEggMPr317MIOjjDoZ4ejCSr9Lpbt/u34+dvc99t7DS8YirW5rwZEhzKPC2BMUFkUhI48qs6qLUSGw5FuL0GA== +"@jest/types@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.5.0.tgz#f59ef9b031ced83047c67032700d8c807d6e1593" + integrity sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog== dependencies: - "@jest/schemas" "^28.0.2" + "@jest/schemas" "^29.4.3" "@types/istanbul-lib-coverage" "^2.0.0" "@types/istanbul-reports" "^3.0.0" "@types/node" "*" @@ -622,6 +634,11 @@ "@jridgewell/set-array" "^1.0.0" "@jridgewell/sourcemap-codec" "^1.4.10" +"@jridgewell/resolve-uri@3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + "@jridgewell/resolve-uri@^3.0.3": version "3.0.7" resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz#30cd49820a962aff48c8fffc5cd760151fca61fe" @@ -632,12 +649,25 @@ resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.1.tgz#36a6acc93987adcf0ba50c66908bd0b70de8afea" integrity sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ== +"@jridgewell/sourcemap-codec@1.4.14": + version "1.4.14" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + "@jridgewell/sourcemap-codec@^1.4.10": version "1.4.13" resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz#b6461fb0c2964356c469e115f504c95ad97ab88c" integrity sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w== -"@jridgewell/trace-mapping@^0.3.7", "@jridgewell/trace-mapping@^0.3.9": +"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.15": + version "0.3.18" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" + integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== + dependencies: + "@jridgewell/resolve-uri" "3.1.0" + "@jridgewell/sourcemap-codec" "1.4.14" + +"@jridgewell/trace-mapping@^0.3.9": version "0.3.10" resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.10.tgz#db436f0917d655393851bc258918c00226c9b183" integrity sha512-Q0YbBd6OTsXm8Y21+YUSDXupHnodNC2M4O18jtd3iwJ3+vMZNdKGols0a9G6JOK0dcJ3IdUUHoh908ZI6qhk8Q== @@ -671,24 +701,24 @@ resolved "https://registry.yarnpkg.com/@simple-dom/interface/-/interface-1.4.0.tgz#e8feea579232017f89b0138e2726facda6fbb71f" integrity sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA== -"@sinclair/typebox@^0.23.3": - version "0.23.5" - resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.23.5.tgz#93f7b9f4e3285a7a9ade7557d9a8d36809cbc47d" - integrity sha512-AFBVi/iT4g20DHoujvMH1aEDn8fGJh4xsRGCP6d8RpLPMqsNPvW01Jcn0QysXTsg++/xj25NmJsGyH9xug/wKg== +"@sinclair/typebox@^0.25.16": + version "0.25.24" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.25.24.tgz#8c7688559979f7079aacaf31aa881c3aa410b718" + integrity sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ== -"@sinonjs/commons@^1.7.0": - version "1.8.3" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d" - integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ== +"@sinonjs/commons@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.0.tgz#beb434fe875d965265e04722ccfc21df7f755d72" + integrity sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA== dependencies: type-detect "4.0.8" -"@sinonjs/fake-timers@^9.1.1": - version "9.1.2" - resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz#4eaab737fab77332ab132d396a3c0d364bd0ea8c" - integrity sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw== +"@sinonjs/fake-timers@^10.0.2": + version "10.3.0" + resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz#55fdff1ecab9f354019129daf4df0dd4d923ea66" + integrity sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA== dependencies: - "@sinonjs/commons" "^1.7.0" + "@sinonjs/commons" "^3.0.0" "@tsconfig/node10@^1.0.7": version "1.0.8" @@ -769,13 +799,13 @@ dependencies: "@types/istanbul-lib-report" "*" -"@types/jest@^27.5.0": - version "27.5.0" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-27.5.0.tgz#e04ed1824ca6b1dd0438997ba60f99a7405d4c7b" - integrity sha512-9RBFx7r4k+msyj/arpfaa0WOOEcaAZNmN+j80KFbFCoSqCJGHTz7YMAMGQW9Xmqm5w6l5c25vbSjMwlikJi5+g== +"@types/jest@^29.4.0": + version "29.5.2" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.2.tgz#86b4afc86e3a8f3005b297ed8a72494f89e6395b" + integrity sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg== dependencies: - jest-matcher-utils "^27.0.0" - pretty-format "^27.0.0" + expect "^29.0.0" + pretty-format "^29.0.0" "@types/json-schema@^7.0.9": version "7.0.11" @@ -787,10 +817,10 @@ resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== -"@types/node-fetch@^2.6.1": - version "2.6.1" - resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.1.tgz#8f127c50481db65886800ef496f20bbf15518975" - integrity sha512-oMqjURCaxoSIsHSr1E47QHzbmzNR5rK8McHuNb11BOM9cHcIK3Avy0s/b2JlXHoQGTYS3NsvWzV1M0iK7l0wbA== +"@types/node-fetch@^2.6.4": + version "2.6.4" + resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.4.tgz#1bc3a26de814f6bf466b25aeb1473fa1afe6a660" + integrity sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg== dependencies: "@types/node" "*" form-data "^3.0.0" @@ -948,10 +978,6 @@ "@typescript-eslint/types" "5.45.0" eslint-visitor-keys "^3.3.0" -"openai@link:.": - version "0.0.0" - uid "" - abort-controller@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" @@ -1089,15 +1115,15 @@ asynckit@^0.4.0: resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= -babel-jest@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-28.1.0.tgz#95a67f8e2e7c0042e7b3ad3951b8af41a533b5ea" - integrity sha512-zNKk0yhDZ6QUwfxh9k07GII6siNGMJWVUU49gmFj5gfdqDKLqa2RArXOF2CODp4Dr7dLxN2cvAV+667dGJ4b4w== +babel-jest@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.5.0.tgz#3fe3ddb109198e78b1c88f9ebdecd5e4fc2f50a5" + integrity sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q== dependencies: - "@jest/transform" "^28.1.0" + "@jest/transform" "^29.5.0" "@types/babel__core" "^7.1.14" babel-plugin-istanbul "^6.1.1" - babel-preset-jest "^28.0.2" + babel-preset-jest "^29.5.0" chalk "^4.0.0" graceful-fs "^4.2.9" slash "^3.0.0" @@ -1113,10 +1139,10 @@ babel-plugin-istanbul@^6.1.1: istanbul-lib-instrument "^5.0.4" test-exclude "^6.0.0" -babel-plugin-jest-hoist@^28.0.2: - version "28.0.2" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-28.0.2.tgz#9307d03a633be6fc4b1a6bc5c3a87e22bd01dd3b" - integrity sha512-Kizhn/ZL+68ZQHxSnHyuvJv8IchXD62KQxV77TBDV/xoBFBOfgRAk97GNs6hXdTTCiVES9nB2I6+7MXXrk5llQ== +babel-plugin-jest-hoist@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz#a97db437936f441ec196990c9738d4b88538618a" + integrity sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w== dependencies: "@babel/template" "^7.3.3" "@babel/types" "^7.3.3" @@ -1141,12 +1167,12 @@ babel-preset-current-node-syntax@^1.0.0: "@babel/plugin-syntax-optional-chaining" "^7.8.3" "@babel/plugin-syntax-top-level-await" "^7.8.3" -babel-preset-jest@^28.0.2: - version "28.0.2" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-28.0.2.tgz#d8210fe4e46c1017e9fa13d7794b166e93aa9f89" - integrity sha512-sYzXIdgIXXroJTFeB3S6sNDWtlJ2dllCdTEsnZ65ACrMojj3hVNFRmnJ1HZtomGi+Be7aqpY/HJ92fr8OhKVkQ== +babel-preset-jest@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz#57bc8cc88097af7ff6a5ab59d1cd29d52a5916e2" + integrity sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg== dependencies: - babel-plugin-jest-hoist "^28.0.2" + babel-plugin-jest-hoist "^29.5.0" babel-preset-current-node-syntax "^1.0.0" bail@^1.0.0: @@ -1407,13 +1433,18 @@ concat-map@0.0.1: resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= -convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: +convert-source-map@^1.6.0, convert-source-map@^1.7.0: version "1.8.0" resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== dependencies: safe-buffer "~5.1.1" +convert-source-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + cosmiconfig@7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d" @@ -1505,15 +1536,10 @@ detect-newline@^3.0.0: resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== -diff-sequences@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.5.1.tgz#eaecc0d327fd68c8d9672a1e64ab8dccb2ef5327" - integrity sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ== - -diff-sequences@^28.0.2: - version "28.0.2" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-28.0.2.tgz#40f8d4ffa081acbd8902ba35c798458d0ff1af41" - integrity sha512-YtEoNynLDFCRznv/XDalsKGSZDoj0U5kLnXvY0JSq3nBboRrZXjD81+eSiwi+nzcZDwedMmcowcxNwwgFW23mQ== +diff-sequences@^29.4.3: + version "29.4.3" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.4.3.tgz#9314bc1fabe09267ffeca9cbafc457d8499a13f2" + integrity sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA== diff@5.0.0: version "5.0.0" @@ -1567,10 +1593,10 @@ electron-to-chromium@^1.4.118: resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.137.tgz#186180a45617283f1c012284458510cd99d6787f" integrity sha512-0Rcpald12O11BUogJagX3HsCN3FE83DSqWjgXoHo5a72KUKMSfI39XBgJpgNNxS9fuGzytaFjE06kZkiVFy2qA== -emittery@^0.10.2: - version "0.10.2" - resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.10.2.tgz#902eec8aedb8c41938c46e9385e9db7e03182933" - integrity sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw== +emittery@^0.13.1: + version "0.13.1" + resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.13.1.tgz#c04b8c3457490e0847ae51fced3af52d338e3dad" + integrity sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ== emoji-regex@^8.0.0: version "8.0.0" @@ -1781,16 +1807,16 @@ exit@^0.1.2: resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= -expect@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/expect/-/expect-28.1.0.tgz#10e8da64c0850eb8c39a480199f14537f46e8360" - integrity sha512-qFXKl8Pmxk8TBGfaFKRtcQjfXEnKAs+dmlxdwvukJZorwrAabT7M3h8oLOG01I2utEhkmUTi17CHaPBovZsKdw== +expect@^29.0.0, expect@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/expect/-/expect-29.5.0.tgz#68c0509156cb2a0adb8865d413b137eeaae682f7" + integrity sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg== dependencies: - "@jest/expect-utils" "^28.1.0" - jest-get-type "^28.0.2" - jest-matcher-utils "^28.1.0" - jest-message-util "^28.1.0" - jest-util "^28.1.0" + "@jest/expect-utils" "^29.5.0" + jest-get-type "^29.4.3" + jest-matcher-utils "^29.5.0" + jest-message-util "^29.5.0" + jest-util "^29.5.0" extend@^3.0.0: version "3.0.2" @@ -1824,7 +1850,7 @@ fast-glob@^3.2.9: merge2 "^1.3.0" micromatch "^4.0.4" -fast-json-stable-stringify@2.1.0, fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: +fast-json-stable-stringify@2.1.0, fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== @@ -2317,104 +2343,95 @@ istanbul-reports@^3.1.3: html-escaper "^2.0.0" istanbul-lib-report "^3.0.0" -jest-changed-files@^28.0.2: - version "28.0.2" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-28.0.2.tgz#7d7810660a5bd043af9e9cfbe4d58adb05e91531" - integrity sha512-QX9u+5I2s54ZnGoMEjiM2WeBvJR2J7w/8ZUmH2um/WLAuGAYFQcsVXY9+1YL6k0H/AGUdH8pXUAv6erDqEsvIA== +jest-changed-files@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.5.0.tgz#e88786dca8bf2aa899ec4af7644e16d9dcf9b23e" + integrity sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag== dependencies: execa "^5.0.0" - throat "^6.0.1" + p-limit "^3.1.0" -jest-circus@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-28.1.0.tgz#e229f590911bd54d60efaf076f7acd9360296dae" - integrity sha512-rNYfqfLC0L0zQKRKsg4n4J+W1A2fbyGH7Ss/kDIocp9KXD9iaL111glsLu7+Z7FHuZxwzInMDXq+N1ZIBkI/TQ== +jest-circus@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.5.0.tgz#b5926989449e75bff0d59944bae083c9d7fb7317" + integrity sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA== dependencies: - "@jest/environment" "^28.1.0" - "@jest/expect" "^28.1.0" - "@jest/test-result" "^28.1.0" - "@jest/types" "^28.1.0" + "@jest/environment" "^29.5.0" + "@jest/expect" "^29.5.0" + "@jest/test-result" "^29.5.0" + "@jest/types" "^29.5.0" "@types/node" "*" chalk "^4.0.0" co "^4.6.0" dedent "^0.7.0" is-generator-fn "^2.0.0" - jest-each "^28.1.0" - jest-matcher-utils "^28.1.0" - jest-message-util "^28.1.0" - jest-runtime "^28.1.0" - jest-snapshot "^28.1.0" - jest-util "^28.1.0" - pretty-format "^28.1.0" + jest-each "^29.5.0" + jest-matcher-utils "^29.5.0" + jest-message-util "^29.5.0" + jest-runtime "^29.5.0" + jest-snapshot "^29.5.0" + jest-util "^29.5.0" + p-limit "^3.1.0" + pretty-format "^29.5.0" + pure-rand "^6.0.0" slash "^3.0.0" stack-utils "^2.0.3" - throat "^6.0.1" -jest-cli@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-28.1.0.tgz#cd1d8adb9630102d5ba04a22895f63decdd7ac1f" - integrity sha512-fDJRt6WPRriHrBsvvgb93OxgajHHsJbk4jZxiPqmZbMDRcHskfJBBfTyjFko0jjfprP544hOktdSi9HVgl4VUQ== +jest-cli@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.5.0.tgz#b34c20a6d35968f3ee47a7437ff8e53e086b4a67" + integrity sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw== dependencies: - "@jest/core" "^28.1.0" - "@jest/test-result" "^28.1.0" - "@jest/types" "^28.1.0" + "@jest/core" "^29.5.0" + "@jest/test-result" "^29.5.0" + "@jest/types" "^29.5.0" chalk "^4.0.0" exit "^0.1.2" graceful-fs "^4.2.9" import-local "^3.0.2" - jest-config "^28.1.0" - jest-util "^28.1.0" - jest-validate "^28.1.0" + jest-config "^29.5.0" + jest-util "^29.5.0" + jest-validate "^29.5.0" prompts "^2.0.1" yargs "^17.3.1" -jest-config@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-28.1.0.tgz#fca22ca0760e746fe1ce1f9406f6b307ab818501" - integrity sha512-aOV80E9LeWrmflp7hfZNn/zGA4QKv/xsn2w8QCBP0t0+YqObuCWTSgNbHJ0j9YsTuCO08ZR/wsvlxqqHX20iUA== +jest-config@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.5.0.tgz#3cc972faec8c8aaea9ae158c694541b79f3748da" + integrity sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA== dependencies: "@babel/core" "^7.11.6" - "@jest/test-sequencer" "^28.1.0" - "@jest/types" "^28.1.0" - babel-jest "^28.1.0" + "@jest/test-sequencer" "^29.5.0" + "@jest/types" "^29.5.0" + babel-jest "^29.5.0" chalk "^4.0.0" ci-info "^3.2.0" deepmerge "^4.2.2" glob "^7.1.3" graceful-fs "^4.2.9" - jest-circus "^28.1.0" - jest-environment-node "^28.1.0" - jest-get-type "^28.0.2" - jest-regex-util "^28.0.2" - jest-resolve "^28.1.0" - jest-runner "^28.1.0" - jest-util "^28.1.0" - jest-validate "^28.1.0" + jest-circus "^29.5.0" + jest-environment-node "^29.5.0" + jest-get-type "^29.4.3" + jest-regex-util "^29.4.3" + jest-resolve "^29.5.0" + jest-runner "^29.5.0" + jest-util "^29.5.0" + jest-validate "^29.5.0" micromatch "^4.0.4" parse-json "^5.2.0" - pretty-format "^28.1.0" + pretty-format "^29.5.0" slash "^3.0.0" strip-json-comments "^3.1.1" -jest-diff@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.5.1.tgz#a07f5011ac9e6643cf8a95a462b7b1ecf6680def" - integrity sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw== +jest-diff@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.5.0.tgz#e0d83a58eb5451dcc1fa61b1c3ee4e8f5a290d63" + integrity sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw== dependencies: chalk "^4.0.0" - diff-sequences "^27.5.1" - jest-get-type "^27.5.1" - pretty-format "^27.5.1" - -jest-diff@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-28.1.0.tgz#77686fef899ec1873dbfbf9330e37dd429703269" - integrity sha512-8eFd3U3OkIKRtlasXfiAQfbovgFgRDb0Ngcs2E+FMeBZ4rUezqIaGjuyggJBp+llosQXNEWofk/Sz4Hr5gMUhA== - dependencies: - chalk "^4.0.0" - diff-sequences "^28.0.2" - jest-get-type "^28.0.2" - pretty-format "^28.1.0" + diff-sequences "^29.4.3" + jest-get-type "^29.4.3" + pretty-format "^29.5.0" jest-docblock@28.1.1: version "28.1.1" @@ -2423,288 +2440,276 @@ jest-docblock@28.1.1: dependencies: detect-newline "^3.0.0" -jest-docblock@^28.0.2: - version "28.0.2" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-28.0.2.tgz#3cab8abea53275c9d670cdca814fc89fba1298c2" - integrity sha512-FH10WWw5NxLoeSdQlJwu+MTiv60aXV/t8KEwIRGEv74WARE1cXIqh1vGdy2CraHuWOOrnzTWj/azQKqW4fO7xg== +jest-docblock@^29.4.3: + version "29.4.3" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-29.4.3.tgz#90505aa89514a1c7dceeac1123df79e414636ea8" + integrity sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg== dependencies: detect-newline "^3.0.0" -jest-each@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-28.1.0.tgz#54ae66d6a0a5b1913e9a87588d26c2687c39458b" - integrity sha512-a/XX02xF5NTspceMpHujmOexvJ4GftpYXqr6HhhmKmExtMXsyIN/fvanQlt/BcgFoRKN4OCXxLQKth9/n6OPFg== +jest-each@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.5.0.tgz#fc6e7014f83eac68e22b7195598de8554c2e5c06" + integrity sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA== dependencies: - "@jest/types" "^28.1.0" + "@jest/types" "^29.5.0" chalk "^4.0.0" - jest-get-type "^28.0.2" - jest-util "^28.1.0" - pretty-format "^28.1.0" - -jest-environment-node@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-28.1.0.tgz#6ed2150aa31babba0c488c5b4f4d813a585c68e6" - integrity sha512-gBLZNiyrPw9CSMlTXF1yJhaBgWDPVvH0Pq6bOEwGMXaYNzhzhw2kA/OijNF8egbCgDS0/veRv97249x2CX+udQ== - dependencies: - "@jest/environment" "^28.1.0" - "@jest/fake-timers" "^28.1.0" - "@jest/types" "^28.1.0" + jest-get-type "^29.4.3" + jest-util "^29.5.0" + pretty-format "^29.5.0" + +jest-environment-node@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.5.0.tgz#f17219d0f0cc0e68e0727c58b792c040e332c967" + integrity sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw== + dependencies: + "@jest/environment" "^29.5.0" + "@jest/fake-timers" "^29.5.0" + "@jest/types" "^29.5.0" "@types/node" "*" - jest-mock "^28.1.0" - jest-util "^28.1.0" - -jest-get-type@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.5.1.tgz#3cd613c507b0f7ace013df407a1c1cd578bcb4f1" - integrity sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw== + jest-mock "^29.5.0" + jest-util "^29.5.0" -jest-get-type@^28.0.2: - version "28.0.2" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-28.0.2.tgz#34622e628e4fdcd793d46db8a242227901fcf203" - integrity sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA== +jest-get-type@^29.4.3: + version "29.4.3" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.4.3.tgz#1ab7a5207c995161100b5187159ca82dd48b3dd5" + integrity sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg== -jest-haste-map@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-28.1.0.tgz#6c1ee2daf1c20a3e03dbd8e5b35c4d73d2349cf0" - integrity sha512-xyZ9sXV8PtKi6NCrJlmq53PyNVHzxmcfXNVvIRHpHmh1j/HChC4pwKgyjj7Z9us19JMw8PpQTJsFWOsIfT93Dw== +jest-haste-map@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.5.0.tgz#69bd67dc9012d6e2723f20a945099e972b2e94de" + integrity sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA== dependencies: - "@jest/types" "^28.1.0" + "@jest/types" "^29.5.0" "@types/graceful-fs" "^4.1.3" "@types/node" "*" anymatch "^3.0.3" fb-watchman "^2.0.0" graceful-fs "^4.2.9" - jest-regex-util "^28.0.2" - jest-util "^28.1.0" - jest-worker "^28.1.0" + jest-regex-util "^29.4.3" + jest-util "^29.5.0" + jest-worker "^29.5.0" micromatch "^4.0.4" - walker "^1.0.7" + walker "^1.0.8" optionalDependencies: fsevents "^2.3.2" -jest-leak-detector@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-28.1.0.tgz#b65167776a8787443214d6f3f54935a4c73c8a45" - integrity sha512-uIJDQbxwEL2AMMs2xjhZl2hw8s77c3wrPaQ9v6tXJLGaaQ+4QrNJH5vuw7hA7w/uGT/iJ42a83opAqxGHeyRIA== - dependencies: - jest-get-type "^28.0.2" - pretty-format "^28.1.0" - -jest-matcher-utils@^27.0.0: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz#9c0cdbda8245bc22d2331729d1091308b40cf8ab" - integrity sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw== +jest-leak-detector@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz#cf4bdea9615c72bac4a3a7ba7e7930f9c0610c8c" + integrity sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow== dependencies: - chalk "^4.0.0" - jest-diff "^27.5.1" - jest-get-type "^27.5.1" - pretty-format "^27.5.1" + jest-get-type "^29.4.3" + pretty-format "^29.5.0" -jest-matcher-utils@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-28.1.0.tgz#2ae398806668eeabd293c61712227cb94b250ccf" - integrity sha512-onnax0n2uTLRQFKAjC7TuaxibrPSvZgKTcSCnNUz/tOjJ9UhxNm7ZmPpoQavmTDUjXvUQ8KesWk2/VdrxIFzTQ== +jest-matcher-utils@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz#d957af7f8c0692c5453666705621ad4abc2c59c5" + integrity sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw== dependencies: chalk "^4.0.0" - jest-diff "^28.1.0" - jest-get-type "^28.0.2" - pretty-format "^28.1.0" + jest-diff "^29.5.0" + jest-get-type "^29.4.3" + pretty-format "^29.5.0" -jest-message-util@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-28.1.0.tgz#7e8f0b9049e948e7b94c2a52731166774ba7d0af" - integrity sha512-RpA8mpaJ/B2HphDMiDlrAZdDytkmwFqgjDZovM21F35lHGeUeCvYmm6W+sbQ0ydaLpg5bFAUuWG1cjqOl8vqrw== +jest-message-util@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.5.0.tgz#1f776cac3aca332ab8dd2e3b41625435085c900e" + integrity sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA== dependencies: "@babel/code-frame" "^7.12.13" - "@jest/types" "^28.1.0" + "@jest/types" "^29.5.0" "@types/stack-utils" "^2.0.0" chalk "^4.0.0" graceful-fs "^4.2.9" micromatch "^4.0.4" - pretty-format "^28.1.0" + pretty-format "^29.5.0" slash "^3.0.0" stack-utils "^2.0.3" -jest-mock@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-28.1.0.tgz#ccc7cc12a9b330b3182db0c651edc90d163ff73e" - integrity sha512-H7BrhggNn77WhdL7O1apG0Q/iwl0Bdd5E1ydhCJzL3oBLh/UYxAwR3EJLsBZ9XA3ZU4PA3UNw4tQjduBTCTmLw== +jest-mock@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.5.0.tgz#26e2172bcc71d8b0195081ff1f146ac7e1518aed" + integrity sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw== dependencies: - "@jest/types" "^28.1.0" + "@jest/types" "^29.5.0" "@types/node" "*" + jest-util "^29.5.0" jest-pnp-resolver@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== -jest-regex-util@^28.0.2: - version "28.0.2" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-28.0.2.tgz#afdc377a3b25fb6e80825adcf76c854e5bf47ead" - integrity sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw== +jest-regex-util@^29.4.3: + version "29.4.3" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.4.3.tgz#a42616141e0cae052cfa32c169945d00c0aa0bb8" + integrity sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg== -jest-resolve-dependencies@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.0.tgz#167becb8bee6e20b5ef4a3a728ec67aef6b0b79b" - integrity sha512-Ue1VYoSZquPwEvng7Uefw8RmZR+me/1kr30H2jMINjGeHgeO/JgrR6wxj2ofkJ7KSAA11W3cOrhNCbj5Dqqd9g== +jest-resolve-dependencies@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz#f0ea29955996f49788bf70996052aa98e7befee4" + integrity sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg== dependencies: - jest-regex-util "^28.0.2" - jest-snapshot "^28.1.0" + jest-regex-util "^29.4.3" + jest-snapshot "^29.5.0" -jest-resolve@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-28.1.0.tgz#b1f32748a6cee7d1779c7ef639c0a87078de3d35" - integrity sha512-vvfN7+tPNnnhDvISuzD1P+CRVP8cK0FHXRwPAcdDaQv4zgvwvag2n55/h5VjYcM5UJG7L4TwE5tZlzcI0X2Lhw== +jest-resolve@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.5.0.tgz#b053cc95ad1d5f6327f0ac8aae9f98795475ecdc" + integrity sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w== dependencies: chalk "^4.0.0" graceful-fs "^4.2.9" - jest-haste-map "^28.1.0" + jest-haste-map "^29.5.0" jest-pnp-resolver "^1.2.2" - jest-util "^28.1.0" - jest-validate "^28.1.0" + jest-util "^29.5.0" + jest-validate "^29.5.0" resolve "^1.20.0" - resolve.exports "^1.1.0" + resolve.exports "^2.0.0" slash "^3.0.0" -jest-runner@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-28.1.0.tgz#aefe2a1e618a69baa0b24a50edc54fdd7e728eaa" - integrity sha512-FBpmuh1HB2dsLklAlRdOxNTTHKFR6G1Qmd80pVDvwbZXTriqjWqjei5DKFC1UlM732KjYcE6yuCdiF0WUCOS2w== +jest-runner@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.5.0.tgz#6a57c282eb0ef749778d444c1d758c6a7693b6f8" + integrity sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ== dependencies: - "@jest/console" "^28.1.0" - "@jest/environment" "^28.1.0" - "@jest/test-result" "^28.1.0" - "@jest/transform" "^28.1.0" - "@jest/types" "^28.1.0" + "@jest/console" "^29.5.0" + "@jest/environment" "^29.5.0" + "@jest/test-result" "^29.5.0" + "@jest/transform" "^29.5.0" + "@jest/types" "^29.5.0" "@types/node" "*" chalk "^4.0.0" - emittery "^0.10.2" + emittery "^0.13.1" graceful-fs "^4.2.9" - jest-docblock "^28.0.2" - jest-environment-node "^28.1.0" - jest-haste-map "^28.1.0" - jest-leak-detector "^28.1.0" - jest-message-util "^28.1.0" - jest-resolve "^28.1.0" - jest-runtime "^28.1.0" - jest-util "^28.1.0" - jest-watcher "^28.1.0" - jest-worker "^28.1.0" + jest-docblock "^29.4.3" + jest-environment-node "^29.5.0" + jest-haste-map "^29.5.0" + jest-leak-detector "^29.5.0" + jest-message-util "^29.5.0" + jest-resolve "^29.5.0" + jest-runtime "^29.5.0" + jest-util "^29.5.0" + jest-watcher "^29.5.0" + jest-worker "^29.5.0" + p-limit "^3.1.0" source-map-support "0.5.13" - throat "^6.0.1" - -jest-runtime@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-28.1.0.tgz#4847dcb2a4eb4b0f9eaf41306897e51fb1665631" - integrity sha512-wNYDiwhdH/TV3agaIyVF0lsJ33MhyujOe+lNTUiolqKt8pchy1Hq4+tDMGbtD5P/oNLA3zYrpx73T9dMTOCAcg== - dependencies: - "@jest/environment" "^28.1.0" - "@jest/fake-timers" "^28.1.0" - "@jest/globals" "^28.1.0" - "@jest/source-map" "^28.0.2" - "@jest/test-result" "^28.1.0" - "@jest/transform" "^28.1.0" - "@jest/types" "^28.1.0" + +jest-runtime@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.5.0.tgz#c83f943ee0c1da7eb91fa181b0811ebd59b03420" + integrity sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw== + dependencies: + "@jest/environment" "^29.5.0" + "@jest/fake-timers" "^29.5.0" + "@jest/globals" "^29.5.0" + "@jest/source-map" "^29.4.3" + "@jest/test-result" "^29.5.0" + "@jest/transform" "^29.5.0" + "@jest/types" "^29.5.0" + "@types/node" "*" chalk "^4.0.0" cjs-module-lexer "^1.0.0" collect-v8-coverage "^1.0.0" - execa "^5.0.0" glob "^7.1.3" graceful-fs "^4.2.9" - jest-haste-map "^28.1.0" - jest-message-util "^28.1.0" - jest-mock "^28.1.0" - jest-regex-util "^28.0.2" - jest-resolve "^28.1.0" - jest-snapshot "^28.1.0" - jest-util "^28.1.0" + jest-haste-map "^29.5.0" + jest-message-util "^29.5.0" + jest-mock "^29.5.0" + jest-regex-util "^29.4.3" + jest-resolve "^29.5.0" + jest-snapshot "^29.5.0" + jest-util "^29.5.0" slash "^3.0.0" strip-bom "^4.0.0" -jest-snapshot@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-28.1.0.tgz#4b74fa8816707dd10fe9d551c2c258e5a67b53b6" - integrity sha512-ex49M2ZrZsUyQLpLGxQtDbahvgBjlLPgklkqGM0hq/F7W/f8DyqZxVHjdy19QKBm4O93eDp+H5S23EiTbbUmHw== +jest-snapshot@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.5.0.tgz#c9c1ce0331e5b63cd444e2f95a55a73b84b1e8ce" + integrity sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g== dependencies: "@babel/core" "^7.11.6" "@babel/generator" "^7.7.2" + "@babel/plugin-syntax-jsx" "^7.7.2" "@babel/plugin-syntax-typescript" "^7.7.2" "@babel/traverse" "^7.7.2" "@babel/types" "^7.3.3" - "@jest/expect-utils" "^28.1.0" - "@jest/transform" "^28.1.0" - "@jest/types" "^28.1.0" + "@jest/expect-utils" "^29.5.0" + "@jest/transform" "^29.5.0" + "@jest/types" "^29.5.0" "@types/babel__traverse" "^7.0.6" "@types/prettier" "^2.1.5" babel-preset-current-node-syntax "^1.0.0" chalk "^4.0.0" - expect "^28.1.0" + expect "^29.5.0" graceful-fs "^4.2.9" - jest-diff "^28.1.0" - jest-get-type "^28.0.2" - jest-haste-map "^28.1.0" - jest-matcher-utils "^28.1.0" - jest-message-util "^28.1.0" - jest-util "^28.1.0" + jest-diff "^29.5.0" + jest-get-type "^29.4.3" + jest-matcher-utils "^29.5.0" + jest-message-util "^29.5.0" + jest-util "^29.5.0" natural-compare "^1.4.0" - pretty-format "^28.1.0" + pretty-format "^29.5.0" semver "^7.3.5" -jest-util@^28.0.0, jest-util@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-28.1.0.tgz#d54eb83ad77e1dd441408738c5a5043642823be5" - integrity sha512-qYdCKD77k4Hwkose2YBEqQk7PzUf/NSE+rutzceduFveQREeH6b+89Dc9+wjX9dAwHcgdx4yedGA3FQlU/qCTA== +jest-util@^29.0.0, jest-util@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.5.0.tgz#24a4d3d92fc39ce90425311b23c27a6e0ef16b8f" + integrity sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ== dependencies: - "@jest/types" "^28.1.0" + "@jest/types" "^29.5.0" "@types/node" "*" chalk "^4.0.0" ci-info "^3.2.0" graceful-fs "^4.2.9" picomatch "^2.2.3" -jest-validate@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-28.1.0.tgz#8a6821f48432aba9f830c26e28226ad77b9a0e18" - integrity sha512-Lly7CJYih3vQBfjLeANGgBSBJ7pEa18cxpQfQEq2go2xyEzehnHfQTjoUia8xUv4x4J80XKFIDwJJThXtRFQXQ== +jest-validate@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.5.0.tgz#8e5a8f36178d40e47138dc00866a5f3bd9916ffc" + integrity sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ== dependencies: - "@jest/types" "^28.1.0" + "@jest/types" "^29.5.0" camelcase "^6.2.0" chalk "^4.0.0" - jest-get-type "^28.0.2" + jest-get-type "^29.4.3" leven "^3.1.0" - pretty-format "^28.1.0" + pretty-format "^29.5.0" -jest-watcher@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-28.1.0.tgz#aaa7b4164a4e77eeb5f7d7b25ede5e7b4e9c9aaf" - integrity sha512-tNHMtfLE8Njcr2IRS+5rXYA4BhU90gAOwI9frTGOqd+jX0P/Au/JfRSNqsf5nUTcWdbVYuLxS1KjnzILSoR5hA== +jest-watcher@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.5.0.tgz#cf7f0f949828ba65ddbbb45c743a382a4d911363" + integrity sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA== dependencies: - "@jest/test-result" "^28.1.0" - "@jest/types" "^28.1.0" + "@jest/test-result" "^29.5.0" + "@jest/types" "^29.5.0" "@types/node" "*" ansi-escapes "^4.2.1" chalk "^4.0.0" - emittery "^0.10.2" - jest-util "^28.1.0" + emittery "^0.13.1" + jest-util "^29.5.0" string-length "^4.0.1" -jest-worker@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-28.1.0.tgz#ced54757a035e87591e1208253a6e3aac1a855e5" - integrity sha512-ZHwM6mNwaWBR52Snff8ZvsCTqQsvhCxP/bT1I6T6DAnb6ygkshsyLQIMxFwHpYxht0HOoqt23JlC01viI7T03A== +jest-worker@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.5.0.tgz#bdaefb06811bd3384d93f009755014d8acb4615d" + integrity sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA== dependencies: "@types/node" "*" + jest-util "^29.5.0" merge-stream "^2.0.0" supports-color "^8.0.0" -jest@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/jest/-/jest-28.1.0.tgz#f420e41c8f2395b9a30445a97189ebb57593d831" - integrity sha512-TZR+tHxopPhzw3c3560IJXZWLNHgpcz1Zh0w5A65vynLGNcg/5pZ+VildAd7+XGOu6jd58XMY/HNn0IkZIXVXg== +jest@^29.4.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest/-/jest-29.5.0.tgz#f75157622f5ce7ad53028f2f8888ab53e1f1f24e" + integrity sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ== dependencies: - "@jest/core" "^28.1.0" + "@jest/core" "^29.5.0" + "@jest/types" "^29.5.0" import-local "^3.0.2" - jest-cli "^28.1.0" + jest-cli "^29.5.0" js-tokens@^4.0.0: version "4.0.0" @@ -2746,7 +2751,7 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== -json5@2.2.1, json5@2.x, json5@^2.2.1: +json5@2.2.1, json5@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== @@ -2758,6 +2763,11 @@ json5@^1.0.1: dependencies: minimist "^1.2.0" +json5@^2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + kleur@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" @@ -2976,9 +2986,9 @@ node-domexception@1.0.0: integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== node-fetch@^2.6.7: - version "2.6.7" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" - integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== + version "2.6.11" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.11.tgz#cde7fc71deef3131ef80a738919f999e6edfff25" + integrity sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w== dependencies: whatwg-url "^5.0.0" @@ -3023,6 +3033,10 @@ onetime@^5.1.2: dependencies: mimic-fn "^2.1.0" +"openai@link:.": + version "0.0.0" + uid "" + optionator@^0.9.1: version "0.9.1" resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" @@ -3052,7 +3066,7 @@ p-limit@^2.2.0: dependencies: p-try "^2.0.0" -p-limit@^3.0.2: +p-limit@^3.0.2, p-limit@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== @@ -3302,22 +3316,12 @@ prettier@rattrayalex/prettier#postfix-ternaries: wcwidth "1.0.1" yaml-unist-parser "1.3.1" -pretty-format@^27.0.0, pretty-format@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e" - integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== - dependencies: - ansi-regex "^5.0.1" - ansi-styles "^5.0.0" - react-is "^17.0.1" - -pretty-format@^28.1.0: - version "28.1.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-28.1.0.tgz#8f5836c6a0dfdb834730577ec18029052191af55" - integrity sha512-79Z4wWOYCdvQkEoEuSlBhHJqWeZ8D8YRPiPctJFCtvuaClGpiwiQYSCUOE6IEKUbbFukKOTFIUAXE8N4EQTo1Q== +pretty-format@^29.0.0, pretty-format@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.5.0.tgz#283134e74f70e2e3e7229336de0e4fce94ccde5a" + integrity sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw== dependencies: - "@jest/schemas" "^28.0.2" - ansi-regex "^5.0.1" + "@jest/schemas" "^29.4.3" ansi-styles "^5.0.0" react-is "^18.0.0" @@ -3339,6 +3343,11 @@ punycode@^2.1.0: resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== +pure-rand@^6.0.0: + version "6.0.2" + resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.0.2.tgz#a9c2ddcae9b68d736a8163036f088a2781c8b306" + integrity sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ== + qs@^6.10.3: version "6.10.3" resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.3.tgz#d6cde1b2ffca87b5aa57889816c5f81535e22e8e" @@ -3356,11 +3365,6 @@ queue-microtask@^1.2.2: resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== -react-is@^17.0.1: - version "17.0.2" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" - integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== - react-is@^18.0.0: version "18.1.0" resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.1.0.tgz#61aaed3096d30eacf2a2127118b5b41387d32a67" @@ -3444,10 +3448,10 @@ resolve-from@^5.0.0: resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== -resolve.exports@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.0.tgz#5ce842b94b05146c0e03076985d1d0e7e48c90c9" - integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ== +resolve.exports@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800" + integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== resolve@1.22.1: version "1.22.1" @@ -3472,7 +3476,7 @@ reusify@^1.0.4: resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== -rimraf@^3.0.0, rimraf@^3.0.2: +rimraf@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== @@ -3661,7 +3665,7 @@ supports-color@^5.3.0: dependencies: has-flag "^3.0.0" -supports-color@^7.0.0, supports-color@^7.1.0: +supports-color@^7.1.0: version "7.2.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== @@ -3675,27 +3679,11 @@ supports-color@^8.0.0: dependencies: has-flag "^4.0.0" -supports-hyperlinks@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" - integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== - dependencies: - has-flag "^4.0.0" - supports-color "^7.0.0" - supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== -terminal-link@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" - integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== - dependencies: - ansi-escapes "^4.2.1" - supports-hyperlinks "^2.0.0" - test-exclude@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" @@ -3710,11 +3698,6 @@ text-table@^0.2.0: resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== -throat@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/throat/-/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375" - integrity sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w== - tmpl@1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" @@ -3752,19 +3735,19 @@ trough@^1.0.0: resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406" integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA== -ts-jest@^28.0.2: - version "28.0.2" - resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-28.0.2.tgz#e4026357006731f96a033b94db89d01e0d3c0591" - integrity sha512-IOZMb3D0gx6IHO9ywPgiQxJ3Zl4ECylEFwoVpENB55aTn5sdO0Ptyx/7noNBxAaUff708RqQL4XBNxxOVjY0vQ== +ts-jest@^29.1.0: + version "29.1.0" + resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.0.tgz#4a9db4104a49b76d2b368ea775b6c9535c603891" + integrity sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA== dependencies: bs-logger "0.x" fast-json-stable-stringify "2.x" - jest-util "^28.0.0" - json5 "2.x" + jest-util "^29.0.0" + json5 "^2.2.3" lodash.memoize "4.x" make-error "1.x" semver "7.x" - yargs-parser "^20.x" + yargs-parser "^21.0.1" ts-node@^10.5.0: version "10.7.0" @@ -3943,12 +3926,12 @@ v8-compile-cache@^2.0.3: resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== -v8-to-istanbul@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.0.0.tgz#be0dae58719fc53cb97e5c7ac1d7e6d4f5b19511" - integrity sha512-HcvgY/xaRm7isYmyx+lFKA4uQmfUbN0J4M0nNItvzTvH/iQ9kW5j/t4YSR+Ge323/lrgDAWJoF46tzGQHwBHFw== +v8-to-istanbul@^9.0.1: + version "9.1.0" + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz#1b83ed4e397f58c85c266a570fc2558b5feb9265" + integrity sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA== dependencies: - "@jridgewell/trace-mapping" "^0.3.7" + "@jridgewell/trace-mapping" "^0.3.12" "@types/istanbul-lib-coverage" "^2.0.1" convert-source-map "^1.6.0" @@ -3984,7 +3967,7 @@ vnopts@1.0.2: leven "^2.1.0" tslib "^1.9.3" -walker@^1.0.7: +walker@^1.0.8: version "1.0.8" resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== @@ -4042,10 +4025,10 @@ wrappy@1: resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= -write-file-atomic@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.1.tgz#9faa33a964c1c85ff6f849b80b42a88c2c537c8f" - integrity sha512-nSKUxgAbyioruk6hU87QzVbY279oYT6uiwgDoujth2ju4mJ+TZau7SQBhtbTmUyuNYTuXnSyRn66FV0+eCgcrQ== +write-file-atomic@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" + integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== dependencies: imurmurhash "^0.1.4" signal-exit "^3.0.7" @@ -4084,16 +4067,16 @@ yaml@^1.10.0: resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== -yargs-parser@^20.x: - version "20.2.9" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" - integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== - yargs-parser@^21.0.0: version "21.0.1" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.1.tgz#0267f286c877a4f0f728fceb6f8a3e4cb95c6e35" integrity sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg== +yargs-parser@^21.0.1: + version "21.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== + yargs@^17.3.1: version "17.4.1" resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.4.1.tgz#ebe23284207bb75cee7c408c33e722bfb27b5284" From 492cc2ef1b4b12fc48785b655a004c3ad9420153 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Fri, 30 Jun 2023 18:45:59 -0700 Subject: [PATCH 017/725] v4.0.0-beta.2 --- .npmignore | 2 - _shims/fetch.node.ts | 11 - _shims/fetch.ts | 32 - _shims/formdata.ts | 22 - _shims/newFileArgs.ts | 94 - _shims/toFile.node.ts | 25 - _shims/toFile.ts | 26 - _shims/uploadable.node.ts | 21 - _shims/uploadable.ts | 82 - api.md | 53 +- build | 54 +- ecosystem-tests/cli.ts | 130 +- .../cloudflare-worker/jest.config.cjs | 1 + .../cloudflare-worker/package-lock.json | 5460 +++++ .../cloudflare-worker/package.json | 4 +- .../src/uploadWebApiTestCases.ts | 16 +- .../cloudflare-worker/tsconfig.check.json | 8 + ecosystem-tests/deno/deno.jsonc | 1 + ecosystem-tests/deno/main_test.ts | 9 + ecosystem-tests/deno/package-lock.json | 98 + .../node-ts-cjs-dom/jest.config.cjs | 9 + .../node-ts-cjs-dom/package-lock.json | 3767 +++ ecosystem-tests/node-ts-cjs-dom/package.json | 22 + ecosystem-tests/node-ts-cjs-dom/sample1.mp3 | Bin 0 -> 121671 bytes ecosystem-tests/node-ts-cjs-dom/tests/test.ts | 102 + ecosystem-tests/node-ts-cjs-dom/tsconfig.json | 54 + .../node-ts-cjs-dom/tsconfig.nodenext.json | 54 + ecosystem-tests/node-ts-cjs/jest.config.cjs | 11 +- ecosystem-tests/node-ts-cjs/package-lock.json | 3767 +++ ecosystem-tests/node-ts-cjs/package.json | 2 +- ecosystem-tests/node-ts-cjs/tests/test.ts | 62 +- ecosystem-tests/node-ts-cjs/tsconfig.json | 2 +- .../node-ts-cjs/tsconfig.nodenext.json | 54 + .../node-ts-esm-dom/jest.config.cjs | 23 + .../node-ts-esm-dom/package-lock.json | 3825 +++ ecosystem-tests/node-ts-esm-dom/package.json | 22 + ecosystem-tests/node-ts-esm-dom/sample1.mp3 | Bin 0 -> 121671 bytes ecosystem-tests/node-ts-esm-dom/tests/test.ts | 102 + ecosystem-tests/node-ts-esm-dom/tsconfig.json | 54 + .../tsconfig.noderesolution.json | 54 + ecosystem-tests/node-ts-esm/jest.config.cjs | 1 + ecosystem-tests/node-ts-esm/package-lock.json | 3825 +++ ecosystem-tests/node-ts-esm/package.json | 2 +- ecosystem-tests/node-ts-esm/tests/test.ts | 62 +- .../node-ts-esm/tsconfig.noderesolution.json | 54 + .../ts-browser-webpack/package-lock.json | 5896 +++++ .../ts-browser-webpack/package.json | 1 + .../ts-browser-webpack/src/index.ts | 17 + .../ts-browser-webpack/tsconfig.json | 1 + ecosystem-tests/vercel-edge/package-lock.json | 19852 ++++++++++++++++ ecosystem-tests/vercel-edge/package.json | 5 +- .../vercel-edge/src/pages/ai-streaming.tsx | 29 + .../vercel-edge/src/pages/api/transcribe.ts | 15 +- .../src/pages/api/vercel-ai-streaming.ts | 30 + fetch-polyfill.ts | 69 - jest.config.js | 7 +- package.json | 103 +- resources/answers.ts | 180 - resources/classifications.ts | 169 - check-version.ts => scripts/check-version.cjs | 10 +- scripts/fix-index-exports.cjs | 10 + scripts/make-dist-package-json.cjs | 20 + scripts/prepare-cjs-build.mjs | 15 - scripts/prepare-esm-build.mjs | 12 - {_shims => src/_shims}/agent.node.ts | 2 + {_shims => src/_shims}/agent.ts | 4 +- src/_shims/fetch.d.ts | 52 + src/_shims/fetch.js | 13 + src/_shims/fetch.mjs | 15 + src/_shims/fetch.node.d.ts | 53 + src/_shims/fetch.node.js | 12 + src/_shims/fetch.node.mjs | 14 + {_shims => src/_shims}/fileFromPath.node.ts | 3 +- {_shims => src/_shims}/fileFromPath.ts | 3 +- src/_shims/formdata.d.ts | 43 + src/_shims/formdata.js | 9 + src/_shims/formdata.mjs | 11 + src/_shims/formdata.node.d.ts | 44 + src/_shims/formdata.node.js | 11 + .../_shims/formdata.node.mjs | 0 .../getMultipartRequestOptions.node.ts | 3 +- .../_shims}/getMultipartRequestOptions.ts | 3 +- src/_shims/node-readable.node.ts | 10 + src/_shims/node-readable.ts | 30 + core.ts => src/core.ts | 53 +- error.ts => src/error.ts | 4 +- index.ts => src/index.ts | 27 +- src/pagination.ts | 42 + resource.ts => src/resource.ts | 0 {resources => src/resources}/audio/audio.ts | 2 +- {resources => src/resources}/audio/index.ts | 0 .../resources}/audio/transcriptions.ts | 6 +- .../resources}/audio/translations.ts | 6 +- {resources => src/resources}/chat/chat.ts | 2 +- .../resources}/chat/completions.ts | 84 +- {resources => src/resources}/chat/index.ts | 0 {resources => src/resources}/completions.ts | 10 +- {resources => src/resources}/edits.ts | 4 +- {resources => src/resources}/embeddings.ts | 4 +- {resources => src/resources}/files.ts | 56 +- {resources => src/resources}/fine-tunes.ts | 44 +- {resources => src/resources}/images.ts | 6 +- {resources => src/resources}/index.ts | 15 +- {resources => src/resources}/models.ts | 34 +- {resources => src/resources}/moderations.ts | 4 +- streaming.ts => src/streaming.ts | 3 +- src/uploads.ts | 248 + src/version.ts | 1 + tests/api-resources/answers.test.ts | 242 - .../audio/transcriptions.test.ts | 3 +- .../api-resources/audio/translations.test.ts | 3 +- tests/api-resources/chat/completions.test.ts | 4 +- tests/api-resources/classifications.test.ts | 36 - tests/api-resources/completions.test.ts | 2 +- tests/api-resources/edits.test.ts | 2 +- tests/api-resources/embeddings.test.ts | 2 +- tests/api-resources/files.test.ts | 3 +- tests/api-resources/fine-tunes.test.ts | 2 +- tests/api-resources/images.test.ts | 3 +- tests/api-resources/models.test.ts | 2 +- tests/api-resources/moderations.test.ts | 2 +- tests/form.test.ts | 2 +- tests/index.test.ts | 4 +- tests/responses.test.ts | 2 +- tests/uploads.test.ts | 3 +- tsc-multi.json | 7 + tsconfig.build.json | 43 + tsconfig.cjs.json | 9 - tsconfig.esm.json | 10 - tsconfig.json | 9 +- uploads.ts | 81 - version.ts | 1 - yarn.lock | 175 +- 133 files changed, 48580 insertions(+), 1582 deletions(-) delete mode 100644 .npmignore delete mode 100644 _shims/fetch.node.ts delete mode 100644 _shims/fetch.ts delete mode 100644 _shims/formdata.ts delete mode 100644 _shims/newFileArgs.ts delete mode 100644 _shims/toFile.node.ts delete mode 100644 _shims/toFile.ts delete mode 100644 _shims/uploadable.node.ts delete mode 100644 _shims/uploadable.ts create mode 100644 ecosystem-tests/cloudflare-worker/package-lock.json create mode 100644 ecosystem-tests/cloudflare-worker/tsconfig.check.json create mode 100644 ecosystem-tests/deno/package-lock.json create mode 100644 ecosystem-tests/node-ts-cjs-dom/jest.config.cjs create mode 100644 ecosystem-tests/node-ts-cjs-dom/package-lock.json create mode 100644 ecosystem-tests/node-ts-cjs-dom/package.json create mode 100644 ecosystem-tests/node-ts-cjs-dom/sample1.mp3 create mode 100644 ecosystem-tests/node-ts-cjs-dom/tests/test.ts create mode 100644 ecosystem-tests/node-ts-cjs-dom/tsconfig.json create mode 100644 ecosystem-tests/node-ts-cjs-dom/tsconfig.nodenext.json create mode 100644 ecosystem-tests/node-ts-cjs/package-lock.json create mode 100644 ecosystem-tests/node-ts-cjs/tsconfig.nodenext.json create mode 100644 ecosystem-tests/node-ts-esm-dom/jest.config.cjs create mode 100644 ecosystem-tests/node-ts-esm-dom/package-lock.json create mode 100644 ecosystem-tests/node-ts-esm-dom/package.json create mode 100644 ecosystem-tests/node-ts-esm-dom/sample1.mp3 create mode 100644 ecosystem-tests/node-ts-esm-dom/tests/test.ts create mode 100644 ecosystem-tests/node-ts-esm-dom/tsconfig.json create mode 100644 ecosystem-tests/node-ts-esm-dom/tsconfig.noderesolution.json create mode 100644 ecosystem-tests/node-ts-esm/package-lock.json create mode 100644 ecosystem-tests/node-ts-esm/tsconfig.noderesolution.json create mode 100644 ecosystem-tests/ts-browser-webpack/package-lock.json create mode 100644 ecosystem-tests/vercel-edge/package-lock.json create mode 100644 ecosystem-tests/vercel-edge/src/pages/ai-streaming.tsx create mode 100644 ecosystem-tests/vercel-edge/src/pages/api/vercel-ai-streaming.ts delete mode 100644 fetch-polyfill.ts delete mode 100644 resources/answers.ts delete mode 100644 resources/classifications.ts rename check-version.ts => scripts/check-version.cjs (60%) create mode 100644 scripts/fix-index-exports.cjs create mode 100644 scripts/make-dist-package-json.cjs delete mode 100755 scripts/prepare-cjs-build.mjs delete mode 100755 scripts/prepare-esm-build.mjs rename {_shims => src/_shims}/agent.node.ts (97%) rename {_shims => src/_shims}/agent.ts (68%) create mode 100644 src/_shims/fetch.d.ts create mode 100644 src/_shims/fetch.js create mode 100644 src/_shims/fetch.mjs create mode 100644 src/_shims/fetch.node.d.ts create mode 100644 src/_shims/fetch.node.js create mode 100644 src/_shims/fetch.node.mjs rename {_shims => src/_shims}/fileFromPath.node.ts (90%) rename {_shims => src/_shims}/fileFromPath.ts (91%) create mode 100644 src/_shims/formdata.d.ts create mode 100644 src/_shims/formdata.js create mode 100644 src/_shims/formdata.mjs create mode 100644 src/_shims/formdata.node.d.ts create mode 100644 src/_shims/formdata.node.js rename _shims/formdata.node.ts => src/_shims/formdata.node.mjs (100%) rename {_shims => src/_shims}/getMultipartRequestOptions.node.ts (88%) rename {_shims => src/_shims}/getMultipartRequestOptions.ts (76%) create mode 100644 src/_shims/node-readable.node.ts create mode 100644 src/_shims/node-readable.ts rename core.ts => src/core.ts (96%) rename error.ts => src/error.ts (100%) rename index.ts => src/index.ts (87%) create mode 100644 src/pagination.ts rename resource.ts => src/resource.ts (100%) rename {resources => src/resources}/audio/audio.ts (93%) rename {resources => src/resources}/audio/index.ts (100%) rename {resources => src/resources}/audio/transcriptions.ts (92%) rename {resources => src/resources}/audio/translations.ts (91%) rename {resources => src/resources}/chat/chat.ts (91%) rename {resources => src/resources}/chat/completions.ts (93%) rename {resources => src/resources}/chat/index.ts (100%) rename {resources => src/resources}/completions.ts (99%) rename {resources => src/resources}/edits.ts (96%) rename {resources => src/resources}/embeddings.ts (95%) rename {resources => src/resources}/files.ts (65%) rename {resources => src/resources}/fine-tunes.ts (90%) rename {resources => src/resources}/images.ts (96%) rename {resources => src/resources}/index.ts (72%) rename {resources => src/resources}/models.ts (64%) rename {resources => src/resources}/moderations.ts (96%) rename streaming.ts => src/streaming.ts (98%) create mode 100644 src/uploads.ts create mode 100644 src/version.ts delete mode 100644 tests/api-resources/answers.test.ts delete mode 100644 tests/api-resources/classifications.test.ts create mode 100644 tsc-multi.json create mode 100644 tsconfig.build.json delete mode 100644 tsconfig.cjs.json delete mode 100644 tsconfig.esm.json delete mode 100644 uploads.ts delete mode 100644 version.ts diff --git a/.npmignore b/.npmignore deleted file mode 100644 index 93cab344d..000000000 --- a/.npmignore +++ /dev/null @@ -1,2 +0,0 @@ -node_modules -yarn-error.log diff --git a/_shims/fetch.node.ts b/_shims/fetch.node.ts deleted file mode 100644 index 3bb8a610e..000000000 --- a/_shims/fetch.node.ts +++ /dev/null @@ -1,11 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -import fetch, { Request, Response, Headers } from 'node-fetch'; -import type { RequestInfo, RequestInit, BodyInit } from 'node-fetch'; - -export { fetch, Request, Response, Headers }; -export type { RequestInfo, RequestInit, BodyInit }; - -export const isPolyfilled = true; diff --git a/_shims/fetch.ts b/_shims/fetch.ts deleted file mode 100644 index 638fb6faa..000000000 --- a/_shims/fetch.ts +++ /dev/null @@ -1,32 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -import type * as nf from 'node-fetch'; - -const _fetch: typeof nf.default = - // @ts-ignore - fetch as any; -type _fetch = typeof nf.default; -const _Request: typeof nf.Request = - // @ts-ignore - Request as any; -type _Request = nf.Request; -const _Response: typeof nf.Response = - // @ts-ignore - Response as any; -type _Response = nf.Response; -const _Headers: typeof nf.Headers = - // @ts-ignore - Headers as any; -type _Headers = nf.Headers; - -export const isPolyfilled = false; - -export { _fetch as fetch, _Request as Request, _Response as Response, _Headers as Headers }; - -type _RequestInfo = nf.RequestInfo; -type _RequestInit = nf.RequestInit; -type _BodyInit = nf.BodyInit; - -export type { _RequestInit as RequestInit, _RequestInfo as RequestInfo, _BodyInit as BodyInit }; diff --git a/_shims/formdata.ts b/_shims/formdata.ts deleted file mode 100644 index 862da725a..000000000 --- a/_shims/formdata.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -import type * as fd from 'formdata-node'; - -const _FormData: typeof fd.FormData = - // @ts-ignore - FormData as any; -type _FormData = fd.FormData; -const _File: typeof fd.File = - // @ts-ignore - File as any; -type _File = fd.File; -const _Blob: typeof fd.Blob = - // @ts-ignore - Blob as any; -type _Blob = fd.Blob; - -export const isPolyfilled = false; - -export { _FormData as FormData, _File as File, _Blob as Blob }; diff --git a/_shims/newFileArgs.ts b/_shims/newFileArgs.ts deleted file mode 100644 index af7041d2f..000000000 --- a/_shims/newFileArgs.ts +++ /dev/null @@ -1,94 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -import { type BlobPart, type Uploadable, isResponseLike, isBlobLike } from './uploadable'; - -export type ToFileInput = Uploadable | Exclude | AsyncIterable; - -export type FilePropertyBag = { - type?: string; - lastModified?: number; -}; - -export async function newFileArgs( - value: ToFileInput, - name?: string | null, - options: FilePropertyBag = {}, -): Promise<{ - bits: BlobPart[]; - name: string; - options: FilePropertyBag; -}> { - if (isResponseLike(value)) { - const blob = await value.blob(); - name ||= new URL(value.url).pathname.split(/[\\/]/).pop() ?? 'unknown_file'; - - return { bits: [blob as any], name, options }; - } - - const bits = await getBytes(value); - - name ||= getName(value) ?? 'unknown_file'; - - if (!options.type) { - const type = (bits[0] as any)?.type; - if (typeof type === 'string') { - options = { ...options, type }; - } - } - - return { bits, name, options }; -} - -async function getBytes(value: ToFileInput): Promise> { - if (value instanceof Promise) return getBytes(await (value as any)); - - let parts: Array = []; - if ( - typeof value === 'string' || - ArrayBuffer.isView(value) || // includes Uint8Array, Buffer, etc. - value instanceof ArrayBuffer - ) { - parts.push(value); - } else if (isBlobLike(value)) { - parts.push(await value.arrayBuffer()); - } else if ( - isAsyncIterableIterator(value) // includes Readable, ReadableStream, etc. - ) { - for await (const chunk of value) { - parts.push(chunk as BlobPart); // TODO, consider validating? - } - } else { - throw new Error( - `Unexpected data type: ${typeof value}; constructor: ${ - value?.constructor?.name - }; props: ${propsForError(value)}`, - ); - } - - return parts; -} - -function propsForError(value: any): string { - const props = Object.getOwnPropertyNames(value); - return `[${props.map((p) => `"${p}"`).join(', ')}]`; -} - -function getName(value: any): string | undefined { - return ( - getStringFromMaybeBuffer(value.name) || - getStringFromMaybeBuffer(value.filename) || - // For fs.ReadStream - getStringFromMaybeBuffer(value.path)?.split(/[\\/]/).pop() - ); -} - -const getStringFromMaybeBuffer = (x: string | Buffer | unknown): string | undefined => { - if (typeof x === 'string') return x; - if (typeof Buffer !== 'undefined' && x instanceof Buffer) return String(x); - return undefined; -}; - -const isAsyncIterableIterator = (value: any): value is AsyncIterableIterator => - value != null && typeof value === 'object' && typeof value[Symbol.asyncIterator] === 'function'; diff --git a/_shims/toFile.node.ts b/_shims/toFile.node.ts deleted file mode 100644 index 82a7cc77a..000000000 --- a/_shims/toFile.node.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -import { File } from 'formdata-node'; -import { type ToFileInput, newFileArgs, type FilePropertyBag } from './newFileArgs'; -import type { Uploadable, BlobPart, FileLike } from './uploadable.node'; // eslint-disable-line - -/** - * Helper for creating a {@link File} to pass to an SDK upload method from a variety of different data formats - * @param bits the raw content of the file. Can be an {@link Uploadable}, {@link BlobPart}, or {@link AsyncIterable} of {@link BlobPart}s - * @param name the name of the file. If omitted, toFile will try to determine a file name from bits if possible - * @param {Object=} options additional properties - * @param {string=} options.type the MIME type of the content - * @param {number=} options.lastModified the last modified timestamp - * @returns a {@link File} with the given properties - */ -export async function toFile( - bits: ToFileInput, - name?: string | null | undefined, - options: FilePropertyBag | undefined = {}, -): Promise { - const args = await newFileArgs(bits, name, options); - return new File(args.bits, args.name, args.options); -} diff --git a/_shims/toFile.ts b/_shims/toFile.ts deleted file mode 100644 index 7490d0f1c..000000000 --- a/_shims/toFile.ts +++ /dev/null @@ -1,26 +0,0 @@ -/// ; - -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -import { type ToFileInput, newFileArgs, type FilePropertyBag } from './newFileArgs'; -import type { FileLike, Uploadable } from './uploadable'; // eslint-disable-line - -/** - * Helper for creating a {@link File} to pass to an SDK upload method from a variety of different data formats - * @param bits the raw content of the file. Can be an {@link Uploadable}, {@link BlobPart}, or {@link AsyncIterable} of {@link BlobPart}s - * @param {string=} name the name of the file. If omitted, toFile will try to determine a file name from bits if possible - * @param {Object=} options additional properties - * @param {string=} options.type the MIME type of the content - * @param {number=} options.lastModified the last modified timestamp - * @returns a {@link File} with the given properties - */ -export async function toFile( - bits: ToFileInput, - name?: string | null | undefined, - options: FilePropertyBag | undefined = {}, -): Promise { - const args = await newFileArgs(bits, name, options); - return new File(args.bits as BlobPart[], args.name, args.options); -} diff --git a/_shims/uploadable.node.ts b/_shims/uploadable.node.ts deleted file mode 100644 index 78c4c362f..000000000 --- a/_shims/uploadable.node.ts +++ /dev/null @@ -1,21 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -import { ReadStream } from 'node:fs'; -import { - BlobPart, - Uploadable, - BlobLike, - FileLike, - ResponseLike, - isBlobLike, - isFileLike, - isResponseLike, -} from './uploadable'; - -export { BlobPart, BlobLike, FileLike, ResponseLike, isBlobLike, Uploadable }; - -export const isUploadable = (value: any): value is Uploadable => { - return isFileLike(value) || isResponseLike(value) || value instanceof ReadStream; -}; diff --git a/_shims/uploadable.ts b/_shims/uploadable.ts deleted file mode 100644 index f3a58ac73..000000000 --- a/_shims/uploadable.ts +++ /dev/null @@ -1,82 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -import type * as fs from 'node:fs'; -import type { toFile } from 'openai/_shims/toFile'; // eslint-disable-line - -export type BlobPart = string | ArrayBuffer | ArrayBufferView | BlobLike | Uint8Array | DataView; - -/** - * Typically, this is a native "File" class. - * - * We provide the {@link toFile} utility to convert a variety of objects - * into the File class. - * - * For convenience, you can also pass a fetch Response - * or, on Node, the result of {@link fs.createReadStream}('./myfile'). - */ -export type Uploadable = FileLike | ResponseLike | fs.ReadStream; - -/** - * Intended to match web.Blob, node.Blob, node-fetch.Blob, etc. - */ -export interface BlobLike { - /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/size) */ - readonly size: number; - /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/type) */ - readonly type: string; - /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/text) */ - text(): Promise; - /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/slice) */ - slice(start?: number, end?: number): BlobLike; - // unfortunately @types/node-fetch@^2.6.4 doesn't type the arrayBuffer method -} - -/** - * Intended to match web.File, node.File, node-fetch.File, etc. - */ -export interface FileLike extends BlobLike { - /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/File/lastModified) */ - readonly lastModified: number; - /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/File/name) */ - readonly name: string; -} - -/** - * Intended to match web.Response, node.Response, node-fetch.Response, etc. - */ -export interface ResponseLike { - url: string; - blob(): Promise; -} - -export const isResponseLike = (value: any): value is ResponseLike => - value != null && - typeof value === 'object' && - typeof value.url === 'string' && - typeof value.blob === 'function'; - -export const isFileLike = (value: any): value is FileLike => - value != null && - typeof value === 'object' && - typeof value.name === 'string' && - typeof value.lastModified === 'number' && - isBlobLike(value); - -/** - * The BlobLike type omits arrayBuffer() because @types/node-fetch@^2.6.4 lacks it; but this check - * adds the arrayBuffer() method type because it is available and used at runtime - */ -export const isBlobLike = (value: any): value is BlobLike & { arrayBuffer(): Promise } => - value != null && - typeof value === 'object' && - typeof value.size === 'number' && - typeof value.type === 'string' && - typeof value.text === 'function' && - typeof value.slice === 'function' && - typeof value.arrayBuffer === 'function'; - -export const isUploadable = (value: any): value is Uploadable => { - return isFileLike(value) || isResponseLike(value); -}; diff --git a/api.md b/api.md index 05d1507e4..a5ee1a25b 100644 --- a/api.md +++ b/api.md @@ -1,6 +1,6 @@ # Completions -Models: +Types: - Completion - CompletionChoice @@ -13,7 +13,7 @@ Methods: ## Completions -Models: +Types: - ChatCompletion - ChatCompletionChunk @@ -24,7 +24,7 @@ Methods: # Edits -Models: +Types: - Edit @@ -34,7 +34,7 @@ Methods: # Embeddings -Models: +Types: - Embedding @@ -44,24 +44,23 @@ Methods: # Files -Models: +Types: -- FileContentResponse -- FileDeletedResponse -- FileResponse -- FileListResponse +- FileContent +- FileDeleted +- FileObject Methods: -- client.files.create({ ...params }) -> FileResponse -- client.files.retrieve(fileId) -> FileResponse -- client.files.list() -> FileListResponse -- client.files.del(fileId) -> FileDeletedResponse -- client.files.retrieveFileContent(fileId) -> Promise +- client.files.create({ ...params }) -> FileObject +- client.files.retrieve(fileId) -> FileObject +- client.files.list() -> FileObjectsPage +- client.files.del(fileId) -> FileDeleted +- client.files.retrieveFileContent(fileId) -> string # Images -Models: +Types: - Image - ImagesResponse @@ -76,7 +75,7 @@ Methods: ## Transcriptions -Models: +Types: - Transcription @@ -86,7 +85,7 @@ Methods: ## Translations -Models: +Types: - Translation @@ -96,7 +95,7 @@ Methods: # Moderations -Models: +Types: - Moderation - ModerationCreateResponse @@ -107,31 +106,29 @@ Methods: # Models -Models: +Types: -- ListModelsResponse - Model -- ModelDeletedResponse +- ModelDeleted Methods: - client.models.retrieve(model) -> Model -- client.models.list() -> ListModelsResponse -- client.models.del(model) -> ModelDeletedResponse +- client.models.list() -> ModelsPage +- client.models.del(model) -> ModelDeleted # FineTunes -Models: +Types: - FineTune - FineTuneEvent -- ListFineTuneEventsResponse -- ListFineTunesResponse +- FineTuneEventsListResponse Methods: - client.fineTunes.create({ ...params }) -> FineTune - client.fineTunes.retrieve(fineTuneId) -> FineTune -- client.fineTunes.list() -> ListFineTunesResponse +- client.fineTunes.list() -> FineTunesPage - client.fineTunes.cancel(fineTuneId) -> FineTune -- client.fineTunes.listEvents(fineTuneId, { ...params }) -> ListFineTuneEventsResponse +- client.fineTunes.listEvents(fineTuneId, { ...params }) -> FineTuneEventsListResponse diff --git a/build b/build index 5804eb842..4370f6ba7 100755 --- a/build +++ b/build @@ -1,24 +1,50 @@ #!/usr/bin/env bash -set -euo pipefail +set -exuo pipefail -rm -rf dist/* +node scripts/check-version.cjs -yarn tsn check-version.ts +# Build into dist and will publish the package from there, +# so that src/resources/foo.ts becomes /resources/foo.js +# This way importing from `"openai/resources/foo"` works +# even with `"moduleResolution": "node"` -# build node: -node scripts/prepare-cjs-build.mjs -yarn tsc -p tsconfig.cjs.json -yarn tsc-alias -p tsconfig.cjs.json +rm -rf dist +mkdir dist +# Copy src to dist/src and build from dist/src into dist, so that +# the source map for index.js.map will refer to ./src/index.ts etc +cp -rp src dist +# this converts the export map paths for the dist directory +# and does a few other minor things +node scripts/make-dist-package-json.cjs > dist/package.json -node scripts/prepare-esm-build.mjs -yarn tsc -p tsconfig.esm.json -yarn tsc-alias -p tsconfig.esm.json --resolve-full-paths true +# build to .js/.mjs/.d.ts files +tsc-multi +# copy over handwritten .js/.mjs/.d.ts files +cp src/_shims/*.{d.ts,js,mjs} dist/_shims +tsc-alias -p tsconfig.json --resolve-full-paths +# we need to add exports = module.exports = OpenAI Node to index.js; +# No way to get that from index.ts because it would cause compile errors +# when building .mjs +node scripts/fix-index-exports.cjs +# with "moduleResolution": "nodenext", if ESM resolves to index.d.ts, +# it'll have TS errors on the default import. But if it resolves to +# index.d.mts the default import will work (even though both files have +# the same export default statement) +cp dist/index.d.ts dist/index.d.mts -echo '{"type": "module"}' > dist/esm/package.json +# strip out lib="dom" and types="node" references; these are needed at build time, +# but would pollute the user's TS environment +REFERENCE_SUBS='s/^ *\/\/\/ * { - await run('yarn', ['install']); await installPackage(); - await run('yarn', ['build']); + await run('npm', ['run', 'tsc']); + await run('npm', ['run', 'build']); }, 'vercel-edge': async () => { - await run('yarn', ['install']); - await installPackage({ method: 'copy' }); + await installPackage(); - await run('yarn', ['build']); + await run('npm', ['run', 'build']); if (state.deploy) { - await run('yarn', ['vercel', 'deploy', '--prod', '--force']); + await run('npm', ['run', 'vercel', 'deploy', '--prod', '--force']); } }, 'cloudflare-worker': async () => { - await run('yarn', ['install']); await installPackage(); - await run('yarn', ['tsc']); + await run('npm', ['run', 'tsc']); if (state.live) { - await run('yarn', ['test:ci']); + await run('npm', ['run', 'test:ci']); } if (state.deploy) { - await run('yarn', ['deploy']); + await run('npm', ['run', 'deploy']); } }, 'node-ts-cjs': async () => { - await run('yarn', ['install']); await installPackage(); - await run('yarn', ['tsc']); + await run('npm', ['run', 'tsc']); if (state.live) { - await run('yarn', ['test']); + await run('npm', ['test']); } }, + 'node-ts-cjs-dom': async () => { + await installPackage(); + await run('npm', ['run', 'tsc']); + }, 'node-ts-esm': async () => { - await run('yarn', ['install']); await installPackage(); - await run('yarn', ['tsc']); + await run('npm', ['run', 'tsc']); if (state.live) { - await run('yarn', ['test']); + await run('pnpm', ['test']); } }, + 'node-ts-esm-dom': async () => { + await installPackage(); + await run('npm', ['run', 'tsc']); + }, deno: async () => { await run('deno', ['task', 'install']); - await run('yarn', ['install']); await installPackage(); + const packFile = getPackFile(); + const openaiDir = path.resolve( process.cwd(), 'node_modules', @@ -71,12 +76,11 @@ const projects = { ); await run('sh', ['-c', 'rm -rf *'], { cwd: openaiDir, stdio: 'inherit' }); - const packFile = getPackFile(); await run('tar', ['xzf', path.resolve(packFile)], { cwd: openaiDir, stdio: 'inherit' }); await run('sh', ['-c', 'mv package/* .'], { cwd: openaiDir, stdio: 'inherit' }); await run('sh', ['-c', 'rm -rf package'], { cwd: openaiDir, stdio: 'inherit' }); - await run('deno', ['lint']); + await run('deno', ['task', 'check']); if (state.live) await run('deno', ['task', 'test']); }, }; @@ -103,6 +107,10 @@ function parseArgs() { type: 'boolean', default: false, }, + fromNpm: { + type: 'string', + description: 'Test installing from a given NPM package instead of the local package', + }, live: { type: 'boolean', default: false, @@ -123,10 +131,10 @@ let state: Args & { rootDir: string }; async function main() { const args = (await parseArgs()) as Args; - console.log(`args:`, args); + console.error(`args:`, args); const rootDir = await packageDir(); - console.log(`rootDir:`, rootDir); + console.error(`rootDir:`, rootDir); state = { ...args, rootDir }; @@ -141,7 +149,7 @@ async function main() { args.projects?.length ? args.projects : args._.length ? args._ : projectNames) as typeof projectNames; - console.log(`running projects: ${projectsToRun}`); + console.error(`running projects: ${projectsToRun}`); const failed: typeof projectNames = []; @@ -149,58 +157,82 @@ async function main() { const fn = projects[project]; await withChdir(path.join(rootDir, 'ecosystem-tests', project), async () => { - console.log('\n'); - console.log(`----------- ${project} -----------`); + console.error('\n'); + console.error(banner(project)); + console.error('\n'); try { await fn(); - console.log(`✅ - Successfully ran ${project}`); + console.error(`✅ - Successfully ran ${project}`); } catch (err) { - console.error(err); + if (err && (err as any).shortMessage) { + console.error((err as any).shortMessage); + } else { + console.error(err); + } failed.push(project); } }); } if (failed.length) { - throw new Error(`${failed.length} project(s) failed - ${failed.join(', ')}`); + console.error(`${failed.length} project(s) failed - ${failed.join(', ')}`); + process.exit(1); + } + console.error(); + process.exit(0); +} + +function centerPad(text: string, width = text.length, char = ' '): string { + return text.padStart(Math.floor((width + text.length) / 2), char).padEnd(width, char); +} + +function banner(name: string, width = 80): string { + function line(text = ''): string { + if (text) text = centerPad(text, width - 40); + return centerPad(text, width, '/'); } + return [line(), line(), line(' '), line(name), line(' '), line(), line()].join('\n'); } +module.exports = banner; + async function buildPackage() { + if (state.fromNpm) { + return; + } + await run('yarn', ['build']); if (!(await pathExists('.pack'))) { await fs.mkdir('.pack'); } - const proc = await run('npm', ['pack', '--json'], { alwaysPipe: true }); + const proc = await run('npm', ['pack', '--ignore-scripts', '--json'], { + cwd: path.join(process.cwd(), 'dist'), + alwaysPipe: true, + }); + const pack = JSON.parse(proc.stdout); assert(Array.isArray(pack), `Expected pack output to be an array but got ${typeof pack}`); assert(pack.length === 1, `Expected pack output to be an array of length 1 but got ${pack.length}`); - const filename = pack[0].filename; - console.log({ filename }); + const filename = path.join('dist', (pack[0] as any).filename); + console.error({ filename }); await fs.rename(filename, PACK_FILE); - console.log(`Successfully created tarball at ${PACK_FILE}`); + console.error(`Successfully created tarball at ${PACK_FILE}`); } -async function installPackage({ method }: { method: 'reference' | 'copy' } = { method: 'reference' }) { - // TODO: this won't always install, sometimes it will read from a cache +async function installPackage() { + if (state.fromNpm) { + await run('npm', ['install', '-D', state.fromNpm]); + return; + } const packFile = getPackFile(); - - switch (method) { - case 'reference': { - return await run('yarn', ['add', '-D', '--force', packFile]); - } - case 'copy': - await fs.copyFile(packFile, TAR_NAME); - return await run('yarn', ['add', '-D', '--force', './' + TAR_NAME]); - default: - throw checkNever(method); - } + await fs.copyFile(packFile, `./${TAR_NAME}`); + return await run('npm', ['install', '-D', `./${TAR_NAME}`]); } function getPackFile() { @@ -219,7 +251,15 @@ async function run(command: string, args: string[], config?: RunOpts): Promise(newDir: string, fn: () => Promise): Promise { diff --git a/ecosystem-tests/cloudflare-worker/jest.config.cjs b/ecosystem-tests/cloudflare-worker/jest.config.cjs index 508fc0951..f1f0f38aa 100644 --- a/ecosystem-tests/cloudflare-worker/jest.config.cjs +++ b/ecosystem-tests/cloudflare-worker/jest.config.cjs @@ -5,4 +5,5 @@ module.exports = { testMatch: ['/tests/*.js'], watchPathIgnorePatterns: ['/node_modules/'], verbose: false, + testTimeout: 60000, }; diff --git a/ecosystem-tests/cloudflare-worker/package-lock.json b/ecosystem-tests/cloudflare-worker/package-lock.json new file mode 100644 index 000000000..28b18b11d --- /dev/null +++ b/ecosystem-tests/cloudflare-worker/package-lock.json @@ -0,0 +1,5460 @@ +{ + "name": "cfw", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "cfw", + "version": "0.0.0", + "dependencies": { + "node-fetch": "^3.3.1" + }, + "devDependencies": { + "@cloudflare/workers-types": "^4.20230419.0", + "jest": "^29.5.0", + "start-server-and-test": "^2.0.0", + "ts-jest": "^29.1.0", + "typescript": "^5.0.4", + "wrangler": "^3.0.0" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", + "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", + "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.5.tgz", + "integrity": "sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helpers": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/@babel/generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", + "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", + "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", + "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", + "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", + "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", + "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", + "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", + "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", + "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", + "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", + "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", + "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", + "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", + "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", + "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "node_modules/@cloudflare/kv-asset-handler": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.2.0.tgz", + "integrity": "sha512-MVbXLbTcAotOPUj0pAMhVtJ+3/kFkwJqc5qNOleOZTv6QkZZABDMS21dSrSlVswEHwrpWC03e4fWytjqKvuE2A==", + "dev": true, + "dependencies": { + "mime": "^3.0.0" + } + }, + "node_modules/@cloudflare/workerd-darwin-64": { + "version": "1.20230518.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20230518.0.tgz", + "integrity": "sha512-reApIf2/do6GjLlajU6LbRYh8gm/XcaRtzGbF8jo5IzyDSsdStmfNuvq7qssZXG92219Yp1kuTgR9+D1GGZGbg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=16" + } + }, + "node_modules/@cloudflare/workerd-darwin-arm64": { + "version": "1.20230518.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20230518.0.tgz", + "integrity": "sha512-1l+xdbmPddqb2YIHd1YJ3YG/Fl1nhayzcxfL30xfNS89zJn9Xn3JomM0XMD4mk0d5GruBP3q8BQZ1Uo4rRLF3A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=16" + } + }, + "node_modules/@cloudflare/workerd-linux-64": { + "version": "1.20230518.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20230518.0.tgz", + "integrity": "sha512-/pfR+YBpMOPr2cAlwjtInil0hRZjD8KX9LqK9JkfkEiaBH8CYhnJQcOdNHZI+3OjcY09JnQtEVC5xC4nbW7Bvw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=16" + } + }, + "node_modules/@cloudflare/workerd-linux-arm64": { + "version": "1.20230518.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20230518.0.tgz", + "integrity": "sha512-q3HQvn3J4uEkE0cfDAGG8zqzSZrD47cavB/Tzv4mNutqwg6B4wL3ifjtGeB55tnP2K2KL0GVmX4tObcvpUF4BA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=16" + } + }, + "node_modules/@cloudflare/workerd-windows-64": { + "version": "1.20230518.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20230518.0.tgz", + "integrity": "sha512-vNEHKS5gKKduNOBYtQjcBopAmFT1iScuPWMZa2nJboSjOB9I/5oiVsUpSyk5Y2ARyrohXNz0y8D7p87YzTASWw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=16" + } + }, + "node_modules/@cloudflare/workers-types": { + "version": "4.20230518.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workers-types/-/workers-types-4.20230518.0.tgz", + "integrity": "sha512-A0w1V+5SUawGaaPRlhFhSC/SCDT9oQG8TMoWOKFLA4qbqagELqEAFD4KySBIkeVOvCBLT1DZSYBMCxbXddl0kw==", + "dev": true + }, + "node_modules/@esbuild-plugins/node-globals-polyfill": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@esbuild-plugins/node-globals-polyfill/-/node-globals-polyfill-0.1.1.tgz", + "integrity": "sha512-MR0oAA+mlnJWrt1RQVQ+4VYuRJW/P2YmRTv1AsplObyvuBMnPHiizUF95HHYiSsMGLhyGtWufaq2XQg6+iurBg==", + "dev": true, + "peerDependencies": { + "esbuild": "*" + } + }, + "node_modules/@esbuild-plugins/node-modules-polyfill": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@esbuild-plugins/node-modules-polyfill/-/node-modules-polyfill-0.1.4.tgz", + "integrity": "sha512-uZbcXi0zbmKC/050p3gJnne5Qdzw8vkXIv+c2BW0Lsc1ji1SkrxbKPUy5Efr0blbTu1SL8w4eyfpnSdPg3G0Qg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^4.0.0", + "rollup-plugin-node-polyfills": "^0.2.1" + }, + "peerDependencies": { + "esbuild": "*" + } + }, + "node_modules/@esbuild-plugins/node-modules-polyfill/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.16.3.tgz", + "integrity": "sha512-mueuEoh+s1eRbSJqq9KNBQwI4QhQV6sRXIfTyLXSHGMpyew61rOK4qY21uKbXl1iBoMb0AdL1deWFCQVlN2qHA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.16.3.tgz", + "integrity": "sha512-RolFVeinkeraDvN/OoRf1F/lP0KUfGNb5jxy/vkIMeRRChkrX/HTYN6TYZosRJs3a1+8wqpxAo5PI5hFmxyPRg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.16.3.tgz", + "integrity": "sha512-SFpTUcIT1bIJuCCBMCQWq1bL2gPTjWoLZdjmIhjdcQHaUfV41OQfho6Ici5uvvkMmZRXIUGpM3GxysP/EU7ifQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.16.3.tgz", + "integrity": "sha512-DO8WykMyB+N9mIDfI/Hug70Dk1KipavlGAecxS3jDUwAbTpDXj0Lcwzw9svkhxfpCagDmpaTMgxWK8/C/XcXvw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.16.3.tgz", + "integrity": "sha512-uEqZQ2omc6BvWqdCiyZ5+XmxuHEi1SPzpVxXCSSV2+Sh7sbXbpeNhHIeFrIpRjAs0lI1FmA1iIOxFozKBhKgRQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.3.tgz", + "integrity": "sha512-nJansp3sSXakNkOD5i5mIz2Is/HjzIhFs49b1tjrPrpCmwgBmH9SSzhC/Z1UqlkivqMYkhfPwMw1dGFUuwmXhw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.16.3.tgz", + "integrity": "sha512-TfoDzLw+QHfc4a8aKtGSQ96Wa+6eimljjkq9HKR0rHlU83vw8aldMOUSJTUDxbcUdcgnJzPaX8/vGWm7vyV7ug==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.16.3.tgz", + "integrity": "sha512-VwswmSYwVAAq6LysV59Fyqk3UIjbhuc6wb3vEcJ7HEJUtFuLK9uXWuFoH1lulEbE4+5GjtHi3MHX+w1gNHdOWQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.16.3.tgz", + "integrity": "sha512-7I3RlsnxEFCHVZNBLb2w7unamgZ5sVwO0/ikE2GaYvYuUQs9Qte/w7TqWcXHtCwxvZx/2+F97ndiUQAWs47ZfQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.16.3.tgz", + "integrity": "sha512-X8FDDxM9cqda2rJE+iblQhIMYY49LfvW4kaEjoFbTTQ4Go8G96Smj2w3BRTwA8IHGoi9dPOPGAX63dhuv19UqA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.16.3.tgz", + "integrity": "sha512-hIbeejCOyO0X9ujfIIOKjBjNAs9XD/YdJ9JXAy1lHA+8UXuOqbFe4ErMCqMr8dhlMGBuvcQYGF7+kO7waj2KHw==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.16.3.tgz", + "integrity": "sha512-znFRzICT/V8VZQMt6rjb21MtAVJv/3dmKRMlohlShrbVXdBuOdDrGb+C2cZGQAR8RFyRe7HS6klmHq103WpmVw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.16.3.tgz", + "integrity": "sha512-EV7LuEybxhXrVTDpbqWF2yehYRNz5e5p+u3oQUS2+ZFpknyi1NXxr8URk4ykR8Efm7iu04//4sBg249yNOwy5Q==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.16.3.tgz", + "integrity": "sha512-uDxqFOcLzFIJ+r/pkTTSE9lsCEaV/Y6rMlQjUI9BkzASEChYL/aSQjZjchtEmdnVxDKETnUAmsaZ4pqK1eE5BQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.16.3.tgz", + "integrity": "sha512-NbeREhzSxYwFhnCAQOQZmajsPYtX71Ufej3IQ8W2Gxskfz9DK58ENEju4SbpIj48VenktRASC52N5Fhyf/aliQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.16.3.tgz", + "integrity": "sha512-SDiG0nCixYO9JgpehoKgScwic7vXXndfasjnD5DLbp1xltANzqZ425l7LSdHynt19UWOcDjG9wJJzSElsPvk0w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.16.3.tgz", + "integrity": "sha512-AzbsJqiHEq1I/tUvOfAzCY15h4/7Ivp3ff/o1GpP16n48JMNAtbW0qui2WCgoIZArEHD0SUQ95gvR0oSO7ZbdA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.16.3.tgz", + "integrity": "sha512-gSABi8qHl8k3Cbi/4toAzHiykuBuWLZs43JomTcXkjMZVkp0gj3gg9mO+9HJW/8GB5H89RX/V0QP4JGL7YEEVg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.16.3.tgz", + "integrity": "sha512-SF9Kch5Ete4reovvRO6yNjMxrvlfT0F0Flm+NPoUw5Z4Q3r1d23LFTgaLwm3Cp0iGbrU/MoUI+ZqwCv5XJijCw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.16.3.tgz", + "integrity": "sha512-u5aBonZIyGopAZyOnoPAA6fGsDeHByZ9CnEzyML9NqntK6D/xl5jteZUKm/p6nD09+v3pTM6TuUIqSPcChk5gg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.16.3.tgz", + "integrity": "sha512-GlgVq1WpvOEhNioh74TKelwla9KDuAaLZrdxuuUgsP2vayxeLgVc+rbpIv0IYF4+tlIzq2vRhofV+KGLD+37EQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.16.3.tgz", + "integrity": "sha512-5/JuTd8OWW8UzEtyf19fbrtMJENza+C9JoPIkvItgTBQ1FO2ZLvjbPO6Xs54vk0s5JB5QsfieUEshRQfu7ZHow==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", + "dev": true + }, + "node_modules/@hapi/topo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", + "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", + "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.5.0", + "@jest/reporters": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.5.0", + "jest-config": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-resolve-dependencies": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "jest-watcher": "^29.5.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/environment": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", + "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-mock": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", + "dev": true, + "dependencies": { + "expect": "^29.5.0", + "jest-snapshot": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", + "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.4.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", + "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", + "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", + "@jest/types": "^29.5.0", + "jest-mock": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", + "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/schemas": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", + "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.25.16" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", + "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.15", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", + "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", + "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.5.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", + "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/types": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", + "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.4.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "node_modules/@sideway/address": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz", + "integrity": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@sideway/formula": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", + "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==", + "dev": true + }, + "node_modules/@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", + "dev": true + }, + "node_modules/@sinclair/typebox": { + "version": "0.25.24", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", + "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "dev": true + }, + "node_modules/@sinonjs/commons": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", + "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", + "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/node": { + "version": "20.3.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.2.tgz", + "integrity": "sha512-vOBLVQeCQfIcF/2Y7eKFTqrMnizK5lRNQ7ykML/5RuwVXVWxYkgwS7xbt4B6fKCUPgbSL5FSsjHQpaGQP/dQmw==", + "dev": true + }, + "node_modules/@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", + "dev": true + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/@types/yargs": { + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", + "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/as-table": { + "version": "1.0.55", + "resolved": "https://registry.npmjs.org/as-table/-/as-table-1.0.55.tgz", + "integrity": "sha512-xvsWESUJn0JN421Xb9MQw6AsMHRCUknCe0Wjlxvjud80mU4E6hQf1A6NzQKcYNmYw62MfzEtXc+badstZP3JpQ==", + "dev": true, + "dependencies": { + "printable-characters": "^1.0.42" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/axios": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", + "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", + "dev": true, + "dependencies": { + "follow-redirects": "^1.14.9", + "form-data": "^4.0.0" + } + }, + "node_modules/babel-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", + "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", + "dev": true, + "dependencies": { + "@jest/transform": "^29.5.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.5.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", + "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", + "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^29.5.0", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/better-sqlite3": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-8.4.0.tgz", + "integrity": "sha512-NmsNW1CQvqMszu/CFAJ3pLct6NEFlNfuGM6vw72KHkjOD1UDnL96XNN1BMQc1hiHo8vE2GbOWQYIpZ+YM5wrZw==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "bindings": "^1.5.0", + "prebuild-install": "^7.1.0" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/blake3-wasm": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/blake3-wasm/-/blake3-wasm-2.1.5.tgz", + "integrity": "sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==", + "dev": true + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.21.9", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", + "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001503", + "electron-to-chromium": "^1.4.431", + "node-releases": "^2.0.12", + "update-browserslist-db": "^1.0.11" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dev": true, + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001508", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001508.tgz", + "integrity": "sha512-sdQZOJdmt3GJs1UMNpCCCyeuS2IEGLXnHyAo9yIO5JJDjbjoVRij4M1qep6P6gFpptD1PqIYgzM+gwJbOi92mw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/capnp-ts": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/capnp-ts/-/capnp-ts-0.7.0.tgz", + "integrity": "sha512-XKxXAC3HVPv7r674zP0VC3RTXz+/JKhfyw94ljvF80yynK6VkTnqE3jMuN8b3dUVmmc43TjyxjW4KTsmB3c86g==", + "dev": true, + "dependencies": { + "debug": "^4.3.1", + "tslib": "^2.2.0" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/check-more-types": { + "version": "2.24.0", + "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", + "integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "node_modules/ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "dev": true + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "dev": true + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/data-uri-to-buffer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", + "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", + "engines": { + "node": ">= 12" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dev": true, + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/detect-libc": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", + "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/diff-sequences": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", + "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.4.442", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.442.tgz", + "integrity": "sha512-RkrZF//Ya+0aJq2NM3OdisNh5ZodZq1rdXOS96G8DdDgpDKqKE81yTbbQ3F/4CKm1JBPsGu1Lp/akkna2xO06Q==", + "dev": true + }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/esbuild": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.16.3.tgz", + "integrity": "sha512-71f7EjPWTiSguen8X/kxEpkAS7BFHwtQKisCDDV3Y4GLGWBaoSCyD5uXkaUew6JDzA9FEN1W23mdnSwW9kqCeg==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.16.3", + "@esbuild/android-arm64": "0.16.3", + "@esbuild/android-x64": "0.16.3", + "@esbuild/darwin-arm64": "0.16.3", + "@esbuild/darwin-x64": "0.16.3", + "@esbuild/freebsd-arm64": "0.16.3", + "@esbuild/freebsd-x64": "0.16.3", + "@esbuild/linux-arm": "0.16.3", + "@esbuild/linux-arm64": "0.16.3", + "@esbuild/linux-ia32": "0.16.3", + "@esbuild/linux-loong64": "0.16.3", + "@esbuild/linux-mips64el": "0.16.3", + "@esbuild/linux-ppc64": "0.16.3", + "@esbuild/linux-riscv64": "0.16.3", + "@esbuild/linux-s390x": "0.16.3", + "@esbuild/linux-x64": "0.16.3", + "@esbuild/netbsd-x64": "0.16.3", + "@esbuild/openbsd-x64": "0.16.3", + "@esbuild/sunos-x64": "0.16.3", + "@esbuild/win32-arm64": "0.16.3", + "@esbuild/win32-ia32": "0.16.3", + "@esbuild/win32-x64": "0.16.3" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/estree-walker": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", + "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==", + "dev": true + }, + "node_modules/event-stream": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", + "integrity": "sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==", + "dev": true, + "dependencies": { + "duplexer": "~0.1.1", + "from": "~0", + "map-stream": "~0.1.0", + "pause-stream": "0.0.11", + "split": "0.3", + "stream-combiner": "~0.0.4", + "through": "~2.3.1" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/exit-hook": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-2.2.1.tgz", + "integrity": "sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/expand-template": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", + "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", + "dev": true, + "dependencies": { + "@jest/expect-utils": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fetch-blob": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "paypal", + "url": "https://paypal.me/jimmywarting" + } + ], + "dependencies": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + }, + "engines": { + "node": "^12.20 || >= 14.13" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/formdata-polyfill": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "dependencies": { + "fetch-blob": "^3.1.2" + }, + "engines": { + "node": ">=12.20.0" + } + }, + "node_modules/from": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", + "integrity": "sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==", + "dev": true + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-source": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/get-source/-/get-source-2.0.12.tgz", + "integrity": "sha512-X5+4+iD+HoSeEED+uwrQ07BOQr0kEDFMVqqpBuI+RaZBpBpHCuXxo70bjar6f0b0u/DQJsJ7ssurpP0V60Az+w==", + "dev": true, + "dependencies": { + "data-uri-to-buffer": "^2.0.0", + "source-map": "^0.6.1" + } + }, + "node_modules/get-source/node_modules/data-uri-to-buffer": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-2.0.2.tgz", + "integrity": "sha512-ND9qDTLc6diwj+Xe5cdAgVTbLVdXbtxTJRXRhli8Mowuaan+0EJOtdqJ0QCHNSSPyoXGx9HX2/VMnKeC34AChA==", + "dev": true + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/github-from-package": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", + "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==", + "dev": true + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", + "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", + "dev": true, + "dependencies": { + "@jest/core": "^29.5.0", + "@jest/types": "^29.5.0", + "import-local": "^3.0.2", + "jest-cli": "^29.5.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", + "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", + "dev": true, + "dependencies": { + "execa": "^5.0.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", + "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.5.0", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.5.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", + "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", + "dev": true, + "dependencies": { + "@jest/core": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "prompts": "^2.0.1", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-config": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", + "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.5.0", + "@jest/types": "^29.5.0", + "babel-jest": "^29.5.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.5.0", + "jest-environment-node": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-diff": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", + "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.4.3", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-docblock": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", + "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", + "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "jest-util": "^29.5.0", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", + "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", + "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", + "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", + "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", + "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.5.0", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-mock": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", + "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", + "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", + "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", + "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", + "dev": true, + "dependencies": { + "jest-regex-util": "^29.4.3", + "jest-snapshot": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", + "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.5.0", + "@jest/environment": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.4.3", + "jest-environment-node": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-leak-detector": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-resolve": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-util": "^29.5.0", + "jest-watcher": "^29.5.0", + "jest-worker": "^29.5.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", + "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/globals": "^29.5.0", + "@jest/source-map": "^29.4.3", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", + "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/babel__traverse": "^7.0.6", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.5.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.5.0", + "semver": "^7.3.5" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/jest-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", + "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", + "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "leven": "^3.1.0", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watcher": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", + "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.5.0", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", + "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", + "dev": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.5.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/joi": { + "version": "17.9.2", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.2.tgz", + "integrity": "sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0", + "@hapi/topo": "^5.0.0", + "@sideway/address": "^4.1.3", + "@sideway/formula": "^3.0.1", + "@sideway/pinpoint": "^2.0.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/lazy-ass": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", + "integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==", + "dev": true, + "engines": { + "node": "> 0.8" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "dev": true, + "dependencies": { + "sourcemap-codec": "^1.4.8" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/map-stream": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz", + "integrity": "sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==", + "dev": true + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/miniflare": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-3.0.2.tgz", + "integrity": "sha512-tSwmK+JPwHsV2KR7/dSZFGtTF/2M30OShjPDY7e5lAxyGE8SkHqXn/ckjg2TVltc9B8rXCSffMnCfYW1pH7R4A==", + "dev": true, + "dependencies": { + "acorn": "^8.8.0", + "acorn-walk": "^8.2.0", + "better-sqlite3": "^8.1.0", + "capnp-ts": "^0.7.0", + "exit-hook": "^2.2.1", + "glob-to-regexp": "^0.4.1", + "http-cache-semantics": "^4.1.0", + "kleur": "^4.1.5", + "source-map-support": "0.5.21", + "stoppable": "^1.1.0", + "undici": "^5.13.0", + "workerd": "^1.20230512.0", + "ws": "^8.11.0", + "youch": "^3.2.2", + "zod": "^3.20.6" + }, + "engines": { + "node": ">=16.13" + } + }, + "node_modules/miniflare/node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/miniflare/node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/mustache": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/mustache/-/mustache-4.2.0.tgz", + "integrity": "sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==", + "dev": true, + "bin": { + "mustache": "bin/mustache" + } + }, + "node_modules/nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/napi-build-utils": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", + "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==", + "dev": true + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/node-abi": { + "version": "3.45.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.45.0.tgz", + "integrity": "sha512-iwXuFrMAcFVi/ZoZiqq8BzAdsLw9kxDfTC0HMyjXfSL/6CSDAGD5UmR7azrAgWV1zKYq7dUUMj4owusBWKLsiQ==", + "dev": true, + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-abi/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-abi/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-abi/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "engines": { + "node": ">=10.5.0" + } + }, + "node_modules/node-fetch": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.1.tgz", + "integrity": "sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==", + "dependencies": { + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/node-fetch" + } + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "dev": true, + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", + "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-to-regexp": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz", + "integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==", + "dev": true + }, + "node_modules/pause-stream": { + "version": "0.0.11", + "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", + "integrity": "sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==", + "dev": true, + "dependencies": { + "through": "~2.3" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/prebuild-install": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.1.tgz", + "integrity": "sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==", + "dev": true, + "dependencies": { + "detect-libc": "^2.0.0", + "expand-template": "^2.0.3", + "github-from-package": "0.0.0", + "minimist": "^1.2.3", + "mkdirp-classic": "^0.5.3", + "napi-build-utils": "^1.0.1", + "node-abi": "^3.3.0", + "pump": "^3.0.0", + "rc": "^1.2.7", + "simple-get": "^4.0.0", + "tar-fs": "^2.0.0", + "tunnel-agent": "^0.6.0" + }, + "bin": { + "prebuild-install": "bin.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/pretty-format": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", + "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.4.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/printable-characters": { + "version": "1.0.42", + "resolved": "https://registry.npmjs.org/printable-characters/-/printable-characters-1.0.42.tgz", + "integrity": "sha512-dKp+C4iXWK4vVYZmYSd0KBH5F/h1HoZRsbJ82AVKRO3PEo8L4lBS/vLwhVtpwwuYcoIsVY+1JYKR268yn480uQ==", + "dev": true + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/ps-tree": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz", + "integrity": "sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==", + "dev": true, + "dependencies": { + "event-stream": "=3.3.4" + }, + "bin": { + "ps-tree": "bin/ps-tree.js" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pure-rand": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", + "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ] + }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "dev": true, + "dependencies": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/rollup-plugin-inject": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-inject/-/rollup-plugin-inject-3.0.2.tgz", + "integrity": "sha512-ptg9PQwzs3orn4jkgXJ74bfs5vYz1NCZlSQMBUA0wKcGp5i5pA1AO3fOUEte8enhGUC+iapTCzEWw2jEFFUO/w==", + "deprecated": "This package has been deprecated and is no longer maintained. Please use @rollup/plugin-inject.", + "dev": true, + "dependencies": { + "estree-walker": "^0.6.1", + "magic-string": "^0.25.3", + "rollup-pluginutils": "^2.8.1" + } + }, + "node_modules/rollup-plugin-node-polyfills": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/rollup-plugin-node-polyfills/-/rollup-plugin-node-polyfills-0.2.1.tgz", + "integrity": "sha512-4kCrKPTJ6sK4/gLL/U5QzVT8cxJcofO0OU74tnB19F40cmuAKSzH5/siithxlofFEjwvw1YAhPmbvGNA6jEroA==", + "dev": true, + "dependencies": { + "rollup-plugin-inject": "^3.0.0" + } + }, + "node_modules/rollup-pluginutils": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz", + "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==", + "dev": true, + "dependencies": { + "estree-walker": "^0.6.1" + } + }, + "node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "dev": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/selfsigned": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", + "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", + "dev": true, + "dependencies": { + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/simple-get": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", + "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "decompress-response": "^6.0.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "deprecated": "Please use @jridgewell/sourcemap-codec instead", + "dev": true + }, + "node_modules/split": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz", + "integrity": "sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==", + "dev": true, + "dependencies": { + "through": "2" + }, + "engines": { + "node": "*" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stacktracey": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/stacktracey/-/stacktracey-2.1.8.tgz", + "integrity": "sha512-Kpij9riA+UNg7TnphqjH7/CzctQ/owJGNbFkfEeve4Z4uxT5+JapVLFXcsurIfN34gnTWZNJ/f7NMG0E8JDzTw==", + "dev": true, + "dependencies": { + "as-table": "^1.0.36", + "get-source": "^2.0.12" + } + }, + "node_modules/start-server-and-test": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-2.0.0.tgz", + "integrity": "sha512-UqKLw0mJbfrsG1jcRLTUlvuRi9sjNuUiDOLI42r7R5fA9dsFoywAy9DoLXNYys9B886E4RCKb+qM1Gzu96h7DQ==", + "dev": true, + "dependencies": { + "arg": "^5.0.2", + "bluebird": "3.7.2", + "check-more-types": "2.24.0", + "debug": "4.3.4", + "execa": "5.1.1", + "lazy-ass": "1.6.0", + "ps-tree": "1.2.0", + "wait-on": "7.0.1" + }, + "bin": { + "server-test": "src/bin/start.js", + "start-server-and-test": "src/bin/start.js", + "start-test": "src/bin/start.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/stoppable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stoppable/-/stoppable-1.1.0.tgz", + "integrity": "sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==", + "dev": true, + "engines": { + "node": ">=4", + "npm": ">=6" + } + }, + "node_modules/stream-combiner": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz", + "integrity": "sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==", + "dev": true, + "dependencies": { + "duplexer": "~0.1.1" + } + }, + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dev": true, + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-jest": { + "version": "29.1.0", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz", + "integrity": "sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==", + "dev": true, + "dependencies": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "7.x", + "yargs-parser": "^21.0.1" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.0.0-beta.0 <8", + "@jest/types": "^29.0.0", + "babel-jest": "^29.0.0", + "jest": "^29.0.0", + "typescript": ">=4.3 <6" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@jest/types": { + "optional": true + }, + "babel-jest": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/ts-jest/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/tslib": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", + "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==", + "dev": true + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", + "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici": { + "version": "5.22.1", + "resolved": "https://registry.npmjs.org/undici/-/undici-5.22.1.tgz", + "integrity": "sha512-Ji2IJhFXZY0x/0tVBXeQwgPlLWw13GVzpsWPQ3rV50IFMMof2I55PZZxtm4P6iNq+L5znYN9nSTAq0ZyE6lSJw==", + "dev": true, + "dependencies": { + "busboy": "^1.6.0" + }, + "engines": { + "node": ">=14.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/v8-to-istanbul": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", + "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/wait-on": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-7.0.1.tgz", + "integrity": "sha512-9AnJE9qTjRQOlTZIldAaf/da2eW0eSRSgcqq85mXQja/DW3MriHxkpODDSUEg+Gri/rKEcXUZHe+cevvYItaog==", + "dev": true, + "dependencies": { + "axios": "^0.27.2", + "joi": "^17.7.0", + "lodash": "^4.17.21", + "minimist": "^1.2.7", + "rxjs": "^7.8.0" + }, + "bin": { + "wait-on": "bin/wait-on" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/web-streams-polyfill": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz", + "integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/workerd": { + "version": "1.20230518.0", + "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20230518.0.tgz", + "integrity": "sha512-VNmK0zoNZXrwEEx77O/oQDVUzzyDjf5kKKK8bty+FmKCd5EQJCpqi8NlRKWLGMyyYrKm86MFz0kAsreTEs7HHA==", + "dev": true, + "hasInstallScript": true, + "bin": { + "workerd": "bin/workerd" + }, + "engines": { + "node": ">=16" + }, + "optionalDependencies": { + "@cloudflare/workerd-darwin-64": "1.20230518.0", + "@cloudflare/workerd-darwin-arm64": "1.20230518.0", + "@cloudflare/workerd-linux-64": "1.20230518.0", + "@cloudflare/workerd-linux-arm64": "1.20230518.0", + "@cloudflare/workerd-windows-64": "1.20230518.0" + } + }, + "node_modules/wrangler": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-3.1.1.tgz", + "integrity": "sha512-iG6QGOt+qgSm7UroJ8IJ+JdXEcDcW7yp9ilP0V7alCGhKm8shqa/M1iyMOpukZSCSZo8Vmn5nH2C9OY1PR3dQQ==", + "dev": true, + "dependencies": { + "@cloudflare/kv-asset-handler": "^0.2.0", + "@esbuild-plugins/node-globals-polyfill": "^0.1.1", + "@esbuild-plugins/node-modules-polyfill": "^0.1.4", + "blake3-wasm": "^2.1.5", + "chokidar": "^3.5.3", + "esbuild": "0.16.3", + "miniflare": "^3.0.1", + "nanoid": "^3.3.3", + "path-to-regexp": "^6.2.0", + "selfsigned": "^2.0.1", + "source-map": "^0.7.4", + "xxhash-wasm": "^1.0.1" + }, + "bin": { + "wrangler": "bin/wrangler.js", + "wrangler2": "bin/wrangler.js" + }, + "engines": { + "node": ">=16.13.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/wrangler/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/ws": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", + "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xxhash-wasm": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/xxhash-wasm/-/xxhash-wasm-1.0.2.tgz", + "integrity": "sha512-ibF0Or+FivM9lNrg+HGJfVX8WJqgo+kCLDc4vx6xMeTce7Aj+DLttKbxxRR/gNLSAelRc1omAPlJ77N/Jem07A==", + "dev": true + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/youch": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/youch/-/youch-3.2.3.tgz", + "integrity": "sha512-ZBcWz/uzZaQVdCvfV4uk616Bbpf2ee+F/AvuKDR5EwX/Y4v06xWdtMluqTD7+KlZdM93lLm9gMZYo0sKBS0pgw==", + "dev": true, + "dependencies": { + "cookie": "^0.5.0", + "mustache": "^4.2.0", + "stacktracey": "^2.1.8" + } + }, + "node_modules/zod": { + "version": "3.21.4", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", + "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + } + } +} diff --git a/ecosystem-tests/cloudflare-worker/package.json b/ecosystem-tests/cloudflare-worker/package.json index 600c029b9..b7af88375 100644 --- a/ecosystem-tests/cloudflare-worker/package.json +++ b/ecosystem-tests/cloudflare-worker/package.json @@ -4,11 +4,11 @@ "private": true, "type": "module", "scripts": { - "tsc": "tsc", + "tsc": "tsc && tsc -p tsconfig.check.json", "deploy": "wrangler publish", "start": "wrangler dev", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", - "test:ci": "start-server-and-test start http://localhost:8787 test" + "test:ci": "WAIT_ON_INTERVAL=10000 start-server-and-test start http://localhost:8787 test" }, "devDependencies": { "@cloudflare/workers-types": "^4.20230419.0", diff --git a/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts b/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts index b22c1f374..13d5bd382 100644 --- a/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts +++ b/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts @@ -1,4 +1,5 @@ import OpenAI, { toFile } from 'openai'; +import { TranscriptionCreateParams } from 'openai/resources/audio/transcriptions'; /** * Tests uploads using various Web API data objects. @@ -30,12 +31,23 @@ export function uploadWebApiTestCases({ 'It was anxious to find him no one that expectation of a man who were giving his father enjoyment. But he was avoided in sight in the minister to which indeed,'; const model = 'whisper-1'; + async function typeTests() { + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: null, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); + } + it('handles File', async () => { const file = await fetch(url) .then((x) => x.arrayBuffer()) .then((x) => new File([x], filename)); - const result = await client.audio.transcriptions.create({ file, model }); + const params: TranscriptionCreateParams = { file, model }; + + const result = await client.audio.transcriptions.create(params); expectEqual(result.text, correctAnswer); }); @@ -50,7 +62,7 @@ export function uploadWebApiTestCases({ it('toFile handles string', async () => { // @ts-expect-error we don't type support for `string` to avoid a footgun with passing the file path - const file = await toFile(fineTune, 'finetune.jsonl') + const file = await toFile(fineTune, 'finetune.jsonl'); const result = await client.files.create({ file, purpose: 'fine-tune' }); expectEqual(result.status, 'uploaded'); }); diff --git a/ecosystem-tests/cloudflare-worker/tsconfig.check.json b/ecosystem-tests/cloudflare-worker/tsconfig.check.json new file mode 100644 index 000000000..22d6f227b --- /dev/null +++ b/ecosystem-tests/cloudflare-worker/tsconfig.check.json @@ -0,0 +1,8 @@ +{ + "extends": "./tsconfig.json", + "include": ["src"], + "exclude": ["tests", "jest.config.cjs"], + "compilerOptions": { + "skipLibCheck": false + } +} diff --git a/ecosystem-tests/deno/deno.jsonc b/ecosystem-tests/deno/deno.jsonc index 6ed4bc23b..ba78e9d30 100644 --- a/ecosystem-tests/deno/deno.jsonc +++ b/ecosystem-tests/deno/deno.jsonc @@ -1,6 +1,7 @@ { "tasks": { "install": "deno install --node-modules-dir main_test.ts -f", + "check": "deno lint && deno check main_test.ts", "test": "deno test --allow-env --allow-net --allow-read --node-modules-dir" } } diff --git a/ecosystem-tests/deno/main_test.ts b/ecosystem-tests/deno/main_test.ts index 28702db4b..2c27efd58 100644 --- a/ecosystem-tests/deno/main_test.ts +++ b/ecosystem-tests/deno/main_test.ts @@ -10,6 +10,15 @@ const model = 'whisper-1'; const client = new OpenAI({ apiKey: Deno.env.get('OPENAI_API_KEY') }); +async function _typeTests() { + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: null, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); +} + Deno.test(async function handlesFile() { const file = await fetch(url) .then((x) => x.arrayBuffer()) diff --git a/ecosystem-tests/deno/package-lock.json b/ecosystem-tests/deno/package-lock.json new file mode 100644 index 000000000..99ead654a --- /dev/null +++ b/ecosystem-tests/deno/package-lock.json @@ -0,0 +1,98 @@ +{ + "name": "deno", + "lockfileVersion": 3, + "requires": true, + "packages": { + "node_modules/.deno/asynckit@0.4.0/node_modules/asynckit": { + "version": "0.4.0", + "extraneous": true, + "license": "MIT", + "devDependencies": { + "browserify": "^13.0.0", + "browserify-istanbul": "^2.0.0", + "coveralls": "^2.11.9", + "eslint": "^2.9.0", + "istanbul": "^0.4.3", + "obake": "^0.1.2", + "phantomjs-prebuilt": "^2.1.7", + "pre-commit": "^1.1.3", + "reamde": "^1.1.0", + "rimraf": "^2.5.2", + "size-table": "^0.2.0", + "tap-spec": "^4.1.1", + "tape": "^4.5.1" + } + }, + "node_modules/.deno/axios@0.26.1": {}, + "node_modules/.deno/combined-stream@1.0.8": {}, + "node_modules/.deno/delayed-stream@1.0.0/node_modules/delayed-stream": { + "version": "1.0.0", + "extraneous": true, + "license": "MIT", + "devDependencies": { + "fake": "0.2.0", + "far": "0.0.1" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/.deno/follow-redirects@1.15.2/node_modules/follow-redirects": { + "version": "1.15.2", + "extraneous": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "devDependencies": { + "concat-stream": "^2.0.0", + "eslint": "^5.16.0", + "express": "^4.16.4", + "lolex": "^3.1.0", + "mocha": "^6.0.2", + "nyc": "^14.1.1" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/.deno/form-data@4.0.0": {}, + "node_modules/.deno/mime-db@1.52.0/node_modules/mime-db": { + "version": "1.52.0", + "extraneous": true, + "license": "MIT", + "devDependencies": { + "bluebird": "3.7.2", + "co": "4.6.0", + "cogent": "1.0.1", + "csv-parse": "4.16.3", + "eslint": "7.32.0", + "eslint-config-standard": "15.0.1", + "eslint-plugin-import": "2.25.4", + "eslint-plugin-markdown": "2.2.1", + "eslint-plugin-node": "11.1.0", + "eslint-plugin-promise": "5.1.1", + "eslint-plugin-standard": "4.1.0", + "gnode": "0.1.2", + "media-typer": "1.1.0", + "mocha": "9.2.1", + "nyc": "15.1.0", + "raw-body": "2.5.0", + "stream-to-array": "2.3.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/.deno/mime-types@2.1.35": {}, + "node_modules/.deno/openai@3.3.0": {} + } +} diff --git a/ecosystem-tests/node-ts-cjs-dom/jest.config.cjs b/ecosystem-tests/node-ts-cjs-dom/jest.config.cjs new file mode 100644 index 000000000..656d1f04f --- /dev/null +++ b/ecosystem-tests/node-ts-cjs-dom/jest.config.cjs @@ -0,0 +1,9 @@ +/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ +module.exports = { + preset: 'ts-jest', + testEnvironment: 'node', + testMatch: ['/tests/*.ts'], + watchPathIgnorePatterns: ['/node_modules/'], + verbose: false, + testTimeout: 15000, +}; diff --git a/ecosystem-tests/node-ts-cjs-dom/package-lock.json b/ecosystem-tests/node-ts-cjs-dom/package-lock.json new file mode 100644 index 000000000..d2586cff0 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs-dom/package-lock.json @@ -0,0 +1,3767 @@ +{ + "name": "nod-ts-cjs", + "version": "0.0.1", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "nod-ts-cjs", + "version": "0.0.1", + "dependencies": { + "formdata-node": "^4.4.1", + "node-fetch": "^2.6.1", + "tsconfig-paths": "^3.12.0" + }, + "devDependencies": { + "@types/node": "^17.0.9", + "@types/node-fetch": "^2.6.1", + "jest": "^29.5.0", + "ts-jest": "^29.1.0", + "typescript": "^4.9.3" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", + "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", + "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.5.tgz", + "integrity": "sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helpers": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/@babel/generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", + "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", + "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", + "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", + "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", + "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", + "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", + "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", + "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", + "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", + "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", + "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", + "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", + "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", + "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", + "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", + "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", + "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.5.0", + "@jest/reporters": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.5.0", + "jest-config": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-resolve-dependencies": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "jest-watcher": "^29.5.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/environment": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", + "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-mock": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", + "dev": true, + "dependencies": { + "expect": "^29.5.0", + "jest-snapshot": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", + "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.4.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", + "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", + "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", + "@jest/types": "^29.5.0", + "jest-mock": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", + "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/schemas": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", + "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.25.16" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", + "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.15", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", + "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", + "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.5.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", + "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/types": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", + "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.4.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "node_modules/@sinclair/typebox": { + "version": "0.25.24", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", + "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "dev": true + }, + "node_modules/@sinonjs/commons": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", + "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", + "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + }, + "node_modules/@types/node": { + "version": "17.0.45", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz", + "integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==", + "dev": true + }, + "node_modules/@types/node-fetch": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", + "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "form-data": "^3.0.0" + } + }, + "node_modules/@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", + "dev": true + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/@types/yargs": { + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/babel-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", + "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", + "dev": true, + "dependencies": { + "@jest/transform": "^29.5.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.5.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", + "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", + "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^29.5.0", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.21.9", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", + "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001503", + "electron-to-chromium": "^1.4.431", + "node-releases": "^2.0.12", + "update-browserslist-db": "^1.0.11" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001508", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001508.tgz", + "integrity": "sha512-sdQZOJdmt3GJs1UMNpCCCyeuS2IEGLXnHyAo9yIO5JJDjbjoVRij4M1qep6P6gFpptD1PqIYgzM+gwJbOi92mw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "dev": true + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "dev": true + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/diff-sequences": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", + "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.442", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.442.tgz", + "integrity": "sha512-RkrZF//Ya+0aJq2NM3OdisNh5ZodZq1rdXOS96G8DdDgpDKqKE81yTbbQ3F/4CKm1JBPsGu1Lp/akkna2xO06Q==", + "dev": true + }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", + "dev": true, + "dependencies": { + "@jest/expect-utils": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/formdata-node": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-4.4.1.tgz", + "integrity": "sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==", + "dependencies": { + "node-domexception": "1.0.0", + "web-streams-polyfill": "4.0.0-beta.3" + }, + "engines": { + "node": ">= 12.20" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-core-module": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", + "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", + "dev": true, + "dependencies": { + "@jest/core": "^29.5.0", + "@jest/types": "^29.5.0", + "import-local": "^3.0.2", + "jest-cli": "^29.5.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", + "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", + "dev": true, + "dependencies": { + "execa": "^5.0.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", + "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.5.0", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.5.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", + "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", + "dev": true, + "dependencies": { + "@jest/core": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "prompts": "^2.0.1", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-config": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", + "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.5.0", + "@jest/types": "^29.5.0", + "babel-jest": "^29.5.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.5.0", + "jest-environment-node": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-diff": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", + "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.4.3", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-docblock": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", + "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", + "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "jest-util": "^29.5.0", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", + "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", + "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", + "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", + "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", + "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.5.0", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-mock": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", + "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", + "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", + "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", + "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", + "dev": true, + "dependencies": { + "jest-regex-util": "^29.4.3", + "jest-snapshot": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", + "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.5.0", + "@jest/environment": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.4.3", + "jest-environment-node": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-leak-detector": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-resolve": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-util": "^29.5.0", + "jest-watcher": "^29.5.0", + "jest-worker": "^29.5.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", + "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/globals": "^29.5.0", + "@jest/source-map": "^29.4.3", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", + "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/babel__traverse": "^7.0.6", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.5.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.5.0", + "semver": "^7.3.5" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/jest-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", + "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", + "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "leven": "^3.1.0", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watcher": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", + "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.5.0", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", + "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", + "dev": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.5.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "engines": { + "node": ">=10.5.0" + } + }, + "node_modules/node-fetch": { + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", + "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pretty-format": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", + "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.4.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pure-rand": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", + "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ] + }, + "node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "dev": true, + "dependencies": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "node_modules/ts-jest": { + "version": "29.1.0", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz", + "integrity": "sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==", + "dev": true, + "dependencies": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "7.x", + "yargs-parser": "^21.0.1" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.0.0-beta.0 <8", + "@jest/types": "^29.0.0", + "babel-jest": "^29.0.0", + "jest": "^29.0.0", + "typescript": ">=4.3 <6" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@jest/types": { + "optional": true + }, + "babel-jest": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/ts-jest/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/v8-to-istanbul": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", + "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/web-streams-polyfill": { + "version": "4.0.0-beta.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz", + "integrity": "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==", + "engines": { + "node": ">= 14" + } + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/ecosystem-tests/node-ts-cjs-dom/package.json b/ecosystem-tests/node-ts-cjs-dom/package.json new file mode 100644 index 000000000..7971b196d --- /dev/null +++ b/ecosystem-tests/node-ts-cjs-dom/package.json @@ -0,0 +1,22 @@ +{ + "name": "nod-ts-cjs", + "version": "0.0.1", + "main": "index.js", + "private": true, + "scripts": { + "tsc": "tsc && tsc -p tsconfig.nodenext.json", + "test": "jest" + }, + "dependencies": { + "formdata-node": "^4.4.1", + "node-fetch": "^2.6.1", + "tsconfig-paths": "^3.12.0" + }, + "devDependencies": { + "@types/node": "^17.0.9", + "@types/node-fetch": "^2.6.1", + "jest": "^29.5.0", + "ts-jest": "^29.1.0", + "typescript": "^4.9.3" + } +} diff --git a/ecosystem-tests/node-ts-cjs-dom/sample1.mp3 b/ecosystem-tests/node-ts-cjs-dom/sample1.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1e787cd7cf33203d99fa50b39b232b318d287541 GIT binary patch literal 121671 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC x.arrayBuffer()) + .then((x) => new FormDataFile([x], filename)); + + const params: TranscriptionCreateParams = { file, model }; + + const result = await client.audio.transcriptions.create(params); + expect(result.text).toEqual(correctAnswer); +}); + +if (typeof File !== 'undefined') { + it('handles builtinFile', async function () { + const file = await fetch(url) + .then((x) => x.arrayBuffer()) + .then((x) => new File([x], filename)); + + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toEqual(correctAnswer); + }); +} + +it('handles Response', async function () { + const file = await fetch(url); + + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toEqual(correctAnswer); +}); + +it('handles fs.ReadStream', async function () { + const result = await client.audio.transcriptions.create({ + file: fs.createReadStream('sample1.mp3'), + model, + }); + expect(result.text).toEqual(correctAnswer); +}); + +const fineTune = `{"prompt": "", "completion": ""}`; + +describe('toFile', () => { + it('handles form-data Blob', async function () { + const result = await client.files.create({ + file: await toFile(new FormDataBlob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + if (typeof Blob !== 'undefined') { + it('handles builtin Blob', async function () { + const result = await client.files.create({ + file: await toFile(new Blob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + } + it('handles Uint8Array', async function () { + const result = await client.files.create({ + file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles ArrayBuffer', async function () { + const result = await client.files.create({ + file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles DataView', async function () { + const result = await client.files.create({ + file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); +}); diff --git a/ecosystem-tests/node-ts-cjs-dom/tsconfig.json b/ecosystem-tests/node-ts-cjs-dom/tsconfig.json new file mode 100644 index 000000000..48cf9dadf --- /dev/null +++ b/ecosystem-tests/node-ts-cjs-dom/tsconfig.json @@ -0,0 +1,54 @@ +{ + "exclude": ["node_modules"], + + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ + /* Projects */ + "incremental": true, + + /* Language and Environment */ + "target": "ES2022", + "lib": ["ES2022", "DOM"], + "jsx": "react", + + /* Modules */ + "module": "commonjs", + "rootDir": "./", + "moduleResolution": "node", + "baseUrl": "./", + "paths": { + "~/*": ["*"] + }, + "resolveJsonModule": true, + "composite": true, + + /* Emit */ + "outDir": "node_modules", + "noEmit": true, + + /* Interop Constraints */ + "isolatedModules": true, + "allowSyntheticDefaultImports": true, + /* "esModuleInterop": true, */ + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "checkJs": true, + + /* Experimental Features */ + "experimentalDecorators": true, + + /* Type Checking */ + "strict": true, + "noImplicitAny": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "strictBindCallApply": true, + "strictPropertyInitialization": true, + "noImplicitThis": true, + "alwaysStrict": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + "noPropertyAccessFromIndexSignature": true, + "skipLibCheck": true + } +} diff --git a/ecosystem-tests/node-ts-cjs-dom/tsconfig.nodenext.json b/ecosystem-tests/node-ts-cjs-dom/tsconfig.nodenext.json new file mode 100644 index 000000000..d658ee142 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs-dom/tsconfig.nodenext.json @@ -0,0 +1,54 @@ +{ + "exclude": ["node_modules"], + + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ + /* Projects */ + "incremental": true, + + /* Language and Environment */ + "target": "ES2022", + "lib": ["ES2022", "DOM"], + "jsx": "react", + + /* Modules */ + "module": "commonjs", + "rootDir": "./", + "moduleResolution": "NodeNext", + "baseUrl": "./", + "paths": { + "~/*": ["*"] + }, + "resolveJsonModule": true, + "composite": true, + + /* Emit */ + "outDir": "node_modules", + "noEmit": true, + + /* Interop Constraints */ + "isolatedModules": true, + "allowSyntheticDefaultImports": true, + /* "esModuleInterop": true, */ + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "checkJs": true, + + /* Experimental Features */ + "experimentalDecorators": true, + + /* Type Checking */ + "strict": true, + "noImplicitAny": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "strictBindCallApply": true, + "strictPropertyInitialization": true, + "noImplicitThis": true, + "alwaysStrict": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + "noPropertyAccessFromIndexSignature": true, + "skipLibCheck": true + } +} diff --git a/ecosystem-tests/node-ts-cjs/jest.config.cjs b/ecosystem-tests/node-ts-cjs/jest.config.cjs index c8e5c8119..656d1f04f 100644 --- a/ecosystem-tests/node-ts-cjs/jest.config.cjs +++ b/ecosystem-tests/node-ts-cjs/jest.config.cjs @@ -1,8 +1,9 @@ /** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ module.exports = { - preset: 'ts-jest', - testEnvironment: 'node', - testMatch: ['/tests/*.ts'], - watchPathIgnorePatterns: ['/node_modules/'], - verbose: false, + preset: 'ts-jest', + testEnvironment: 'node', + testMatch: ['/tests/*.ts'], + watchPathIgnorePatterns: ['/node_modules/'], + verbose: false, + testTimeout: 15000, }; diff --git a/ecosystem-tests/node-ts-cjs/package-lock.json b/ecosystem-tests/node-ts-cjs/package-lock.json new file mode 100644 index 000000000..d2586cff0 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs/package-lock.json @@ -0,0 +1,3767 @@ +{ + "name": "nod-ts-cjs", + "version": "0.0.1", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "nod-ts-cjs", + "version": "0.0.1", + "dependencies": { + "formdata-node": "^4.4.1", + "node-fetch": "^2.6.1", + "tsconfig-paths": "^3.12.0" + }, + "devDependencies": { + "@types/node": "^17.0.9", + "@types/node-fetch": "^2.6.1", + "jest": "^29.5.0", + "ts-jest": "^29.1.0", + "typescript": "^4.9.3" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", + "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", + "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.5.tgz", + "integrity": "sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helpers": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/@babel/generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", + "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", + "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", + "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", + "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", + "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", + "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", + "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", + "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", + "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", + "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", + "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", + "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", + "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", + "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", + "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", + "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", + "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.5.0", + "@jest/reporters": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.5.0", + "jest-config": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-resolve-dependencies": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "jest-watcher": "^29.5.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/environment": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", + "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-mock": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", + "dev": true, + "dependencies": { + "expect": "^29.5.0", + "jest-snapshot": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", + "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.4.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", + "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", + "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", + "@jest/types": "^29.5.0", + "jest-mock": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", + "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/schemas": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", + "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.25.16" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", + "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.15", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", + "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", + "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.5.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", + "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/types": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", + "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.4.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "node_modules/@sinclair/typebox": { + "version": "0.25.24", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", + "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "dev": true + }, + "node_modules/@sinonjs/commons": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", + "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", + "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + }, + "node_modules/@types/node": { + "version": "17.0.45", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz", + "integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==", + "dev": true + }, + "node_modules/@types/node-fetch": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", + "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "form-data": "^3.0.0" + } + }, + "node_modules/@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", + "dev": true + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/@types/yargs": { + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/babel-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", + "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", + "dev": true, + "dependencies": { + "@jest/transform": "^29.5.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.5.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", + "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", + "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^29.5.0", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.21.9", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", + "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001503", + "electron-to-chromium": "^1.4.431", + "node-releases": "^2.0.12", + "update-browserslist-db": "^1.0.11" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001508", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001508.tgz", + "integrity": "sha512-sdQZOJdmt3GJs1UMNpCCCyeuS2IEGLXnHyAo9yIO5JJDjbjoVRij4M1qep6P6gFpptD1PqIYgzM+gwJbOi92mw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "dev": true + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "dev": true + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/diff-sequences": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", + "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.442", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.442.tgz", + "integrity": "sha512-RkrZF//Ya+0aJq2NM3OdisNh5ZodZq1rdXOS96G8DdDgpDKqKE81yTbbQ3F/4CKm1JBPsGu1Lp/akkna2xO06Q==", + "dev": true + }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", + "dev": true, + "dependencies": { + "@jest/expect-utils": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/formdata-node": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-4.4.1.tgz", + "integrity": "sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==", + "dependencies": { + "node-domexception": "1.0.0", + "web-streams-polyfill": "4.0.0-beta.3" + }, + "engines": { + "node": ">= 12.20" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-core-module": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", + "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", + "dev": true, + "dependencies": { + "@jest/core": "^29.5.0", + "@jest/types": "^29.5.0", + "import-local": "^3.0.2", + "jest-cli": "^29.5.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", + "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", + "dev": true, + "dependencies": { + "execa": "^5.0.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", + "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.5.0", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.5.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", + "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", + "dev": true, + "dependencies": { + "@jest/core": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "prompts": "^2.0.1", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-config": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", + "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.5.0", + "@jest/types": "^29.5.0", + "babel-jest": "^29.5.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.5.0", + "jest-environment-node": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-diff": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", + "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.4.3", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-docblock": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", + "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", + "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "jest-util": "^29.5.0", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", + "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", + "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", + "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", + "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", + "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.5.0", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-mock": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", + "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", + "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", + "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", + "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", + "dev": true, + "dependencies": { + "jest-regex-util": "^29.4.3", + "jest-snapshot": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", + "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.5.0", + "@jest/environment": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.4.3", + "jest-environment-node": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-leak-detector": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-resolve": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-util": "^29.5.0", + "jest-watcher": "^29.5.0", + "jest-worker": "^29.5.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", + "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/globals": "^29.5.0", + "@jest/source-map": "^29.4.3", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", + "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/babel__traverse": "^7.0.6", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.5.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.5.0", + "semver": "^7.3.5" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/jest-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", + "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", + "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "leven": "^3.1.0", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watcher": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", + "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.5.0", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", + "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", + "dev": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.5.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "engines": { + "node": ">=10.5.0" + } + }, + "node_modules/node-fetch": { + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", + "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pretty-format": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", + "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.4.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pure-rand": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", + "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ] + }, + "node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "dev": true, + "dependencies": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "node_modules/ts-jest": { + "version": "29.1.0", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz", + "integrity": "sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==", + "dev": true, + "dependencies": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "7.x", + "yargs-parser": "^21.0.1" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.0.0-beta.0 <8", + "@jest/types": "^29.0.0", + "babel-jest": "^29.0.0", + "jest": "^29.0.0", + "typescript": ">=4.3 <6" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@jest/types": { + "optional": true + }, + "babel-jest": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/ts-jest/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/v8-to-istanbul": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", + "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/web-streams-polyfill": { + "version": "4.0.0-beta.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz", + "integrity": "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==", + "engines": { + "node": ">= 14" + } + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/ecosystem-tests/node-ts-cjs/package.json b/ecosystem-tests/node-ts-cjs/package.json index d2fb80a47..7971b196d 100644 --- a/ecosystem-tests/node-ts-cjs/package.json +++ b/ecosystem-tests/node-ts-cjs/package.json @@ -4,7 +4,7 @@ "main": "index.js", "private": true, "scripts": { - "tsc": "tsc", + "tsc": "tsc && tsc -p tsconfig.nodenext.json", "test": "jest" }, "dependencies": { diff --git a/ecosystem-tests/node-ts-cjs/tests/test.ts b/ecosystem-tests/node-ts-cjs/tests/test.ts index 2711b3c85..6b9d09050 100644 --- a/ecosystem-tests/node-ts-cjs/tests/test.ts +++ b/ecosystem-tests/node-ts-cjs/tests/test.ts @@ -1,19 +1,9 @@ -/// ; - import OpenAI, { toFile } from 'openai'; +import { TranscriptionCreateParams } from 'openai/resources/audio/transcriptions'; import fetch from 'node-fetch'; import { File as FormDataFile, Blob as FormDataBlob } from 'formdata-node'; import * as fs from 'fs'; -async function typeTests() { - // @ts-expect-error this should error if the `Uploadable` type was resolved correctly - await openai.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); - // @ts-expect-error this should error if the `Uploadable` type was resolved correctly - await openai.audio.transcriptions.create({ file: null, model: 'whisper-1' }); - // @ts-expect-error this should error if the `Uploadable` type was resolved correctly - await openai.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); -} - const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; const filename = 'sample-1.mp3'; @@ -23,19 +13,32 @@ const model = 'whisper-1'; const client = new OpenAI(); +async function typeTests() { + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: null, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); +} + it('handles formdata-node File', async function () { const file = await fetch(url) .then((x) => x.arrayBuffer()) .then((x) => new FormDataFile([x], filename)); - const result = await client.audio.transcriptions.create({ file, model }); + const params: TranscriptionCreateParams = { file, model }; + + const result = await client.audio.transcriptions.create(params); expect(result.text).toEqual(correctAnswer); }); +// @ts-ignore avoid DOM lib for testing purposes if (typeof File !== 'undefined') { it('handles builtinFile', async function () { const file = await fetch(url) .then((x) => x.arrayBuffer()) + // @ts-ignore avoid DOM lib for testing purposes .then((x) => new File([x], filename)); const result = await client.audio.transcriptions.create({ file, model }); @@ -63,15 +66,26 @@ const fineTune = `{"prompt": "", "completion": " { it('handles form-data Blob', async function () { const result = await client.files.create({ - file: await toFile(new FormDataBlob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), + file: await toFile( + new FormDataBlob([ + // @ts-ignore avoid DOM lib for testing purposes + new TextEncoder().encode(fineTune), + ]), + 'finetune.jsonl', + ), purpose: 'fine-tune', }); expect(result.status).toEqual('uploaded'); }); + // @ts-ignore avoid DOM lib for testing purposes if (typeof Blob !== 'undefined') { it('handles builtin Blob', async function () { const result = await client.files.create({ - file: await toFile(new Blob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new Blob([new TextEncoder().encode(fineTune)]), + 'finetune.jsonl', + ), purpose: 'fine-tune', }); expect(result.status).toEqual('uploaded'); @@ -79,21 +93,33 @@ describe('toFile', () => { } it('handles Uint8Array', async function () { const result = await client.files.create({ - file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new TextEncoder().encode(fineTune), + 'finetune.jsonl', + ), purpose: 'fine-tune', }); expect(result.status).toEqual('uploaded'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ - file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new TextEncoder().encode(fineTune).buffer, + 'finetune.jsonl', + ), purpose: 'fine-tune', }); expect(result.status).toEqual('uploaded'); }); - it('handles ArrayBuffer', async function () { + it('handles DataView', async function () { const result = await client.files.create({ - file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new DataView(new TextEncoder().encode(fineTune).buffer), + 'finetune.jsonl', + ), purpose: 'fine-tune', }); expect(result.status).toEqual('uploaded'); diff --git a/ecosystem-tests/node-ts-cjs/tsconfig.json b/ecosystem-tests/node-ts-cjs/tsconfig.json index 526d7015e..1efb97eb2 100644 --- a/ecosystem-tests/node-ts-cjs/tsconfig.json +++ b/ecosystem-tests/node-ts-cjs/tsconfig.json @@ -49,6 +49,6 @@ "noUncheckedIndexedAccess": true, "noImplicitOverride": true, "noPropertyAccessFromIndexSignature": true, - "skipLibCheck": true + "skipLibCheck": false } } diff --git a/ecosystem-tests/node-ts-cjs/tsconfig.nodenext.json b/ecosystem-tests/node-ts-cjs/tsconfig.nodenext.json new file mode 100644 index 000000000..8f53f6764 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs/tsconfig.nodenext.json @@ -0,0 +1,54 @@ +{ + "exclude": ["node_modules"], + + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ + /* Projects */ + "incremental": true, + + /* Language and Environment */ + "target": "ES2022", + "lib": ["ES2022"], + "jsx": "react", + + /* Modules */ + "module": "commonjs", + "rootDir": "./", + "moduleResolution": "NodeNext", + "baseUrl": "./", + "paths": { + "~/*": ["*"] + }, + "resolveJsonModule": true, + "composite": true, + + /* Emit */ + "outDir": "node_modules", + "noEmit": true, + + /* Interop Constraints */ + "isolatedModules": true, + "allowSyntheticDefaultImports": true, + /* "esModuleInterop": true, */ + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "checkJs": true, + + /* Experimental Features */ + "experimentalDecorators": true, + + /* Type Checking */ + "strict": true, + "noImplicitAny": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "strictBindCallApply": true, + "strictPropertyInitialization": true, + "noImplicitThis": true, + "alwaysStrict": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + "noPropertyAccessFromIndexSignature": true, + "skipLibCheck": false + } +} diff --git a/ecosystem-tests/node-ts-esm-dom/jest.config.cjs b/ecosystem-tests/node-ts-esm-dom/jest.config.cjs new file mode 100644 index 000000000..201445e1c --- /dev/null +++ b/ecosystem-tests/node-ts-esm-dom/jest.config.cjs @@ -0,0 +1,23 @@ +/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ +module.exports = { + extensionsToTreatAsEsm: ['.ts'], + moduleNameMapper: { + '^(\\.{1,2}/.*)\\.js$': '$1', + }, + transform: { + // '^.+\\.[tj]sx?$' to process js/ts with `ts-jest` + // '^.+\\.m?[tj]sx?$' to process js/ts/mjs/mts with `ts-jest` + '^.+\\.tsx?$': [ + 'ts-jest', + { + useESM: true, + diagnostics: false, + }, + ], + }, + testEnvironment: 'node', + testMatch: ['/tests/*.ts'], + watchPathIgnorePatterns: ['/node_modules/'], + verbose: false, + testTimeout: 15000, +}; diff --git a/ecosystem-tests/node-ts-esm-dom/package-lock.json b/ecosystem-tests/node-ts-esm-dom/package-lock.json new file mode 100644 index 000000000..afeba88e1 --- /dev/null +++ b/ecosystem-tests/node-ts-esm-dom/package-lock.json @@ -0,0 +1,3825 @@ +{ + "name": "node-esm", + "version": "0.0.1", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "node-esm", + "version": "0.0.1", + "dependencies": { + "formdata-node": "^5.0.1", + "node-fetch": "^3.0.0" + }, + "devDependencies": { + "@types/node": "^20.3.1", + "jest": "^29.5.0", + "ts-jest": "^29.1.0", + "ts-node": "^10.9.1", + "typescript": "^5.1.3" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", + "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", + "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.5.tgz", + "integrity": "sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helpers": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/@babel/generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", + "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", + "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", + "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", + "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", + "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", + "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", + "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", + "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", + "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", + "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", + "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", + "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", + "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", + "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", + "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", + "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", + "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.5.0", + "@jest/reporters": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.5.0", + "jest-config": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-resolve-dependencies": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "jest-watcher": "^29.5.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/environment": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", + "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-mock": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", + "dev": true, + "dependencies": { + "expect": "^29.5.0", + "jest-snapshot": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", + "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.4.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", + "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", + "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", + "@jest/types": "^29.5.0", + "jest-mock": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", + "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/schemas": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", + "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.25.16" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", + "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.15", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", + "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", + "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.5.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", + "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/types": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", + "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.4.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "node_modules/@sinclair/typebox": { + "version": "0.25.24", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", + "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "dev": true + }, + "node_modules/@sinonjs/commons": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true + }, + "node_modules/@types/babel__core": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", + "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", + "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/node": { + "version": "20.3.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.2.tgz", + "integrity": "sha512-vOBLVQeCQfIcF/2Y7eKFTqrMnizK5lRNQ7ykML/5RuwVXVWxYkgwS7xbt4B6fKCUPgbSL5FSsjHQpaGQP/dQmw==", + "dev": true + }, + "node_modules/@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", + "dev": true + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/@types/yargs": { + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", + "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/babel-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", + "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", + "dev": true, + "dependencies": { + "@jest/transform": "^29.5.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.5.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", + "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", + "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^29.5.0", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.21.9", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", + "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001503", + "electron-to-chromium": "^1.4.431", + "node-releases": "^2.0.12", + "update-browserslist-db": "^1.0.11" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001508", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001508.tgz", + "integrity": "sha512-sdQZOJdmt3GJs1UMNpCCCyeuS2IEGLXnHyAo9yIO5JJDjbjoVRij4M1qep6P6gFpptD1PqIYgzM+gwJbOi92mw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "dev": true + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "dev": true + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/data-uri-to-buffer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", + "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", + "engines": { + "node": ">= 12" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/diff-sequences": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", + "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.442", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.442.tgz", + "integrity": "sha512-RkrZF//Ya+0aJq2NM3OdisNh5ZodZq1rdXOS96G8DdDgpDKqKE81yTbbQ3F/4CKm1JBPsGu1Lp/akkna2xO06Q==", + "dev": true + }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", + "dev": true, + "dependencies": { + "@jest/expect-utils": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fetch-blob": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "paypal", + "url": "https://paypal.me/jimmywarting" + } + ], + "dependencies": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + }, + "engines": { + "node": "^12.20 || >= 14.13" + } + }, + "node_modules/fetch-blob/node_modules/web-streams-polyfill": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz", + "integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/formdata-node": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-5.0.1.tgz", + "integrity": "sha512-8xnIjMYGKPj+rY2BTbAmpqVpi8der/2FT4d9f7J32FlsCpO5EzZPq3C/N56zdv8KweHzVF6TGijsS1JT6r1H2g==", + "dependencies": { + "node-domexception": "1.0.0", + "web-streams-polyfill": "4.0.0-beta.3" + }, + "engines": { + "node": ">= 14.17" + } + }, + "node_modules/formdata-polyfill": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "dependencies": { + "fetch-blob": "^3.1.2" + }, + "engines": { + "node": ">=12.20.0" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-core-module": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", + "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", + "dev": true, + "dependencies": { + "@jest/core": "^29.5.0", + "@jest/types": "^29.5.0", + "import-local": "^3.0.2", + "jest-cli": "^29.5.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", + "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", + "dev": true, + "dependencies": { + "execa": "^5.0.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", + "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.5.0", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.5.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", + "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", + "dev": true, + "dependencies": { + "@jest/core": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "prompts": "^2.0.1", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-config": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", + "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.5.0", + "@jest/types": "^29.5.0", + "babel-jest": "^29.5.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.5.0", + "jest-environment-node": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-diff": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", + "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.4.3", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-docblock": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", + "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", + "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "jest-util": "^29.5.0", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", + "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", + "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", + "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", + "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", + "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.5.0", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-mock": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", + "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", + "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", + "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", + "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", + "dev": true, + "dependencies": { + "jest-regex-util": "^29.4.3", + "jest-snapshot": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", + "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.5.0", + "@jest/environment": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.4.3", + "jest-environment-node": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-leak-detector": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-resolve": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-util": "^29.5.0", + "jest-watcher": "^29.5.0", + "jest-worker": "^29.5.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", + "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/globals": "^29.5.0", + "@jest/source-map": "^29.4.3", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", + "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/babel__traverse": "^7.0.6", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.5.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.5.0", + "semver": "^7.3.5" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/jest-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", + "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", + "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "leven": "^3.1.0", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watcher": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", + "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.5.0", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", + "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", + "dev": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.5.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "engines": { + "node": ">=10.5.0" + } + }, + "node_modules/node-fetch": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.1.tgz", + "integrity": "sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==", + "dependencies": { + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/node-fetch" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", + "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pretty-format": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", + "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.4.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pure-rand": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", + "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ] + }, + "node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "dev": true, + "dependencies": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-jest": { + "version": "29.1.0", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz", + "integrity": "sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==", + "dev": true, + "dependencies": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "7.x", + "yargs-parser": "^21.0.1" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.0.0-beta.0 <8", + "@jest/types": "^29.0.0", + "babel-jest": "^29.0.0", + "jest": "^29.0.0", + "typescript": ">=4.3 <6" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@jest/types": { + "optional": true + }, + "babel-jest": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/ts-jest/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/ts-node": { + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", + "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "dev": true, + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", + "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "dev": true + }, + "node_modules/v8-to-istanbul": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", + "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/web-streams-polyfill": { + "version": "4.0.0-beta.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz", + "integrity": "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==", + "engines": { + "node": ">= 14" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/ecosystem-tests/node-ts-esm-dom/package.json b/ecosystem-tests/node-ts-esm-dom/package.json new file mode 100644 index 000000000..b19e5ee6f --- /dev/null +++ b/ecosystem-tests/node-ts-esm-dom/package.json @@ -0,0 +1,22 @@ +{ + "name": "node-esm", + "version": "0.0.1", + "main": "index.js", + "type": "module", + "private": true, + "scripts": { + "tsc": "tsc && tsc -p tsconfig.noderesolution.json", + "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" + }, + "dependencies": { + "formdata-node": "^5.0.1", + "node-fetch": "^3.0.0" + }, + "devDependencies": { + "@types/node": "^20.3.1", + "jest": "^29.5.0", + "ts-jest": "^29.1.0", + "ts-node": "^10.9.1", + "typescript": "^5.1.3" + } +} diff --git a/ecosystem-tests/node-ts-esm-dom/sample1.mp3 b/ecosystem-tests/node-ts-esm-dom/sample1.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1e787cd7cf33203d99fa50b39b232b318d287541 GIT binary patch literal 121671 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC x.arrayBuffer()) + .then((x) => new FormDataFile([x], filename)); + + const params: TranscriptionCreateParams = { file, model }; + + const result = await client.audio.transcriptions.create(params); + expect(result.text).toEqual(correctAnswer); +}); + +if (typeof File !== 'undefined') { + it('handles builtinFile', async function () { + const file = await fetch(url) + .then((x) => x.arrayBuffer()) + .then((x) => new File([x], filename)); + + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toEqual(correctAnswer); + }); +} + +it('handles Response', async function () { + const file = await fetch(url); + + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toEqual(correctAnswer); +}); + +it('handles fs.ReadStream', async function () { + const result = await client.audio.transcriptions.create({ + file: fs.createReadStream('sample1.mp3'), + model, + }); + expect(result.text).toEqual(correctAnswer); +}); + +const fineTune = `{"prompt": "", "completion": ""}`; + +describe('toFile', () => { + it('handles form-data Blob', async function () { + const result = await client.files.create({ + file: await toFile(new FormDataBlob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + if (typeof Blob !== 'undefined') { + it('handles builtin Blob', async function () { + const result = await client.files.create({ + file: await toFile(new Blob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + } + it('handles Uint8Array', async function () { + const result = await client.files.create({ + file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles ArrayBuffer', async function () { + const result = await client.files.create({ + file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles DataView', async function () { + const result = await client.files.create({ + file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); +}); diff --git a/ecosystem-tests/node-ts-esm-dom/tsconfig.json b/ecosystem-tests/node-ts-esm-dom/tsconfig.json new file mode 100644 index 000000000..0d45c35f3 --- /dev/null +++ b/ecosystem-tests/node-ts-esm-dom/tsconfig.json @@ -0,0 +1,54 @@ +{ + "exclude": ["node_modules"], + + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ + /* Projects */ + "incremental": true, + + /* Language and Environment */ + "target": "ES2022", + "lib": ["ES2022", "DOM"], + "jsx": "react", + + /* Modules */ + "module": "ESNext", + "rootDir": "./", + "moduleResolution": "NodeNext", + "baseUrl": "./", + "paths": { + "~/*": ["*"] + }, + "resolveJsonModule": true, + "composite": true, + + /* Emit */ + "outDir": "node_modules", + "noEmit": true, + + /* Interop Constraints */ + "isolatedModules": true, + "allowSyntheticDefaultImports": true, + /* "esModuleInterop": true, */ + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "checkJs": true, + + /* Experimental Features */ + "experimentalDecorators": true, + + /* Type Checking */ + "strict": true, + "noImplicitAny": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "strictBindCallApply": true, + "strictPropertyInitialization": true, + "noImplicitThis": true, + "alwaysStrict": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + "noPropertyAccessFromIndexSignature": true, + "skipLibCheck": true + } +} diff --git a/ecosystem-tests/node-ts-esm-dom/tsconfig.noderesolution.json b/ecosystem-tests/node-ts-esm-dom/tsconfig.noderesolution.json new file mode 100644 index 000000000..09e7243b1 --- /dev/null +++ b/ecosystem-tests/node-ts-esm-dom/tsconfig.noderesolution.json @@ -0,0 +1,54 @@ +{ + "exclude": ["node_modules"], + + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ + /* Projects */ + "incremental": true, + + /* Language and Environment */ + "target": "ES2022", + "lib": ["ES2022", "DOM"], + "jsx": "react", + + /* Modules */ + "module": "ESNext", + "rootDir": "./", + "moduleResolution": "node", + "baseUrl": "./", + "paths": { + "~/*": ["*"] + }, + "resolveJsonModule": true, + "composite": true, + + /* Emit */ + "outDir": "node_modules", + "noEmit": true, + + /* Interop Constraints */ + "isolatedModules": true, + "allowSyntheticDefaultImports": true, + /* "esModuleInterop": true, */ + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "checkJs": true, + + /* Experimental Features */ + "experimentalDecorators": true, + + /* Type Checking */ + "strict": true, + "noImplicitAny": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "strictBindCallApply": true, + "strictPropertyInitialization": true, + "noImplicitThis": true, + "alwaysStrict": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + "noPropertyAccessFromIndexSignature": true, + "skipLibCheck": true + } +} diff --git a/ecosystem-tests/node-ts-esm/jest.config.cjs b/ecosystem-tests/node-ts-esm/jest.config.cjs index 498779998..201445e1c 100644 --- a/ecosystem-tests/node-ts-esm/jest.config.cjs +++ b/ecosystem-tests/node-ts-esm/jest.config.cjs @@ -19,4 +19,5 @@ module.exports = { testMatch: ['/tests/*.ts'], watchPathIgnorePatterns: ['/node_modules/'], verbose: false, + testTimeout: 15000, }; diff --git a/ecosystem-tests/node-ts-esm/package-lock.json b/ecosystem-tests/node-ts-esm/package-lock.json new file mode 100644 index 000000000..afeba88e1 --- /dev/null +++ b/ecosystem-tests/node-ts-esm/package-lock.json @@ -0,0 +1,3825 @@ +{ + "name": "node-esm", + "version": "0.0.1", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "node-esm", + "version": "0.0.1", + "dependencies": { + "formdata-node": "^5.0.1", + "node-fetch": "^3.0.0" + }, + "devDependencies": { + "@types/node": "^20.3.1", + "jest": "^29.5.0", + "ts-jest": "^29.1.0", + "ts-node": "^10.9.1", + "typescript": "^5.1.3" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", + "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", + "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.5.tgz", + "integrity": "sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helpers": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/@babel/generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", + "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", + "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", + "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", + "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", + "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", + "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", + "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", + "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", + "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", + "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", + "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", + "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", + "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", + "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", + "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", + "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", + "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.5.0", + "@jest/reporters": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.5.0", + "jest-config": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-resolve-dependencies": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "jest-watcher": "^29.5.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/environment": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", + "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-mock": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", + "dev": true, + "dependencies": { + "expect": "^29.5.0", + "jest-snapshot": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", + "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.4.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", + "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", + "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", + "@jest/types": "^29.5.0", + "jest-mock": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", + "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/schemas": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", + "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.25.16" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", + "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.15", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", + "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", + "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.5.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", + "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/types": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", + "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.4.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "node_modules/@sinclair/typebox": { + "version": "0.25.24", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", + "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "dev": true + }, + "node_modules/@sinonjs/commons": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true + }, + "node_modules/@types/babel__core": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", + "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", + "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/node": { + "version": "20.3.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.2.tgz", + "integrity": "sha512-vOBLVQeCQfIcF/2Y7eKFTqrMnizK5lRNQ7ykML/5RuwVXVWxYkgwS7xbt4B6fKCUPgbSL5FSsjHQpaGQP/dQmw==", + "dev": true + }, + "node_modules/@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", + "dev": true + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/@types/yargs": { + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", + "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/babel-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", + "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", + "dev": true, + "dependencies": { + "@jest/transform": "^29.5.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.5.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", + "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", + "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^29.5.0", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.21.9", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", + "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001503", + "electron-to-chromium": "^1.4.431", + "node-releases": "^2.0.12", + "update-browserslist-db": "^1.0.11" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001508", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001508.tgz", + "integrity": "sha512-sdQZOJdmt3GJs1UMNpCCCyeuS2IEGLXnHyAo9yIO5JJDjbjoVRij4M1qep6P6gFpptD1PqIYgzM+gwJbOi92mw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "dev": true + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "dev": true + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/data-uri-to-buffer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", + "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", + "engines": { + "node": ">= 12" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/diff-sequences": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", + "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.442", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.442.tgz", + "integrity": "sha512-RkrZF//Ya+0aJq2NM3OdisNh5ZodZq1rdXOS96G8DdDgpDKqKE81yTbbQ3F/4CKm1JBPsGu1Lp/akkna2xO06Q==", + "dev": true + }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", + "dev": true, + "dependencies": { + "@jest/expect-utils": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fetch-blob": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "paypal", + "url": "https://paypal.me/jimmywarting" + } + ], + "dependencies": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + }, + "engines": { + "node": "^12.20 || >= 14.13" + } + }, + "node_modules/fetch-blob/node_modules/web-streams-polyfill": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz", + "integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/formdata-node": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-5.0.1.tgz", + "integrity": "sha512-8xnIjMYGKPj+rY2BTbAmpqVpi8der/2FT4d9f7J32FlsCpO5EzZPq3C/N56zdv8KweHzVF6TGijsS1JT6r1H2g==", + "dependencies": { + "node-domexception": "1.0.0", + "web-streams-polyfill": "4.0.0-beta.3" + }, + "engines": { + "node": ">= 14.17" + } + }, + "node_modules/formdata-polyfill": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "dependencies": { + "fetch-blob": "^3.1.2" + }, + "engines": { + "node": ">=12.20.0" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-core-module": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", + "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", + "dev": true, + "dependencies": { + "@jest/core": "^29.5.0", + "@jest/types": "^29.5.0", + "import-local": "^3.0.2", + "jest-cli": "^29.5.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", + "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", + "dev": true, + "dependencies": { + "execa": "^5.0.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", + "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.5.0", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.5.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", + "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", + "dev": true, + "dependencies": { + "@jest/core": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "prompts": "^2.0.1", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-config": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", + "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.5.0", + "@jest/types": "^29.5.0", + "babel-jest": "^29.5.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.5.0", + "jest-environment-node": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-diff": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", + "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.4.3", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-docblock": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", + "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", + "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "jest-util": "^29.5.0", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", + "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", + "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", + "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", + "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", + "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.5.0", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-mock": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", + "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", + "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", + "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", + "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", + "dev": true, + "dependencies": { + "jest-regex-util": "^29.4.3", + "jest-snapshot": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", + "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.5.0", + "@jest/environment": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.4.3", + "jest-environment-node": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-leak-detector": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-resolve": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-util": "^29.5.0", + "jest-watcher": "^29.5.0", + "jest-worker": "^29.5.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", + "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/globals": "^29.5.0", + "@jest/source-map": "^29.4.3", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", + "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/babel__traverse": "^7.0.6", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.5.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.5.0", + "semver": "^7.3.5" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/jest-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", + "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", + "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "leven": "^3.1.0", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watcher": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", + "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.5.0", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", + "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", + "dev": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.5.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "engines": { + "node": ">=10.5.0" + } + }, + "node_modules/node-fetch": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.1.tgz", + "integrity": "sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==", + "dependencies": { + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/node-fetch" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", + "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pretty-format": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", + "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.4.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pure-rand": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", + "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ] + }, + "node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "dev": true, + "dependencies": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-jest": { + "version": "29.1.0", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz", + "integrity": "sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==", + "dev": true, + "dependencies": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "7.x", + "yargs-parser": "^21.0.1" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.0.0-beta.0 <8", + "@jest/types": "^29.0.0", + "babel-jest": "^29.0.0", + "jest": "^29.0.0", + "typescript": ">=4.3 <6" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@jest/types": { + "optional": true + }, + "babel-jest": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/ts-jest/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/ts-node": { + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", + "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "dev": true, + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", + "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "dev": true + }, + "node_modules/v8-to-istanbul": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", + "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/web-streams-polyfill": { + "version": "4.0.0-beta.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz", + "integrity": "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==", + "engines": { + "node": ">= 14" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/ecosystem-tests/node-ts-esm/package.json b/ecosystem-tests/node-ts-esm/package.json index 15568082b..b19e5ee6f 100644 --- a/ecosystem-tests/node-ts-esm/package.json +++ b/ecosystem-tests/node-ts-esm/package.json @@ -5,7 +5,7 @@ "type": "module", "private": true, "scripts": { - "tsc": "tsc", + "tsc": "tsc && tsc -p tsconfig.noderesolution.json", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { diff --git a/ecosystem-tests/node-ts-esm/tests/test.ts b/ecosystem-tests/node-ts-esm/tests/test.ts index 2711b3c85..6b9d09050 100644 --- a/ecosystem-tests/node-ts-esm/tests/test.ts +++ b/ecosystem-tests/node-ts-esm/tests/test.ts @@ -1,19 +1,9 @@ -/// ; - import OpenAI, { toFile } from 'openai'; +import { TranscriptionCreateParams } from 'openai/resources/audio/transcriptions'; import fetch from 'node-fetch'; import { File as FormDataFile, Blob as FormDataBlob } from 'formdata-node'; import * as fs from 'fs'; -async function typeTests() { - // @ts-expect-error this should error if the `Uploadable` type was resolved correctly - await openai.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); - // @ts-expect-error this should error if the `Uploadable` type was resolved correctly - await openai.audio.transcriptions.create({ file: null, model: 'whisper-1' }); - // @ts-expect-error this should error if the `Uploadable` type was resolved correctly - await openai.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); -} - const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; const filename = 'sample-1.mp3'; @@ -23,19 +13,32 @@ const model = 'whisper-1'; const client = new OpenAI(); +async function typeTests() { + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: null, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); +} + it('handles formdata-node File', async function () { const file = await fetch(url) .then((x) => x.arrayBuffer()) .then((x) => new FormDataFile([x], filename)); - const result = await client.audio.transcriptions.create({ file, model }); + const params: TranscriptionCreateParams = { file, model }; + + const result = await client.audio.transcriptions.create(params); expect(result.text).toEqual(correctAnswer); }); +// @ts-ignore avoid DOM lib for testing purposes if (typeof File !== 'undefined') { it('handles builtinFile', async function () { const file = await fetch(url) .then((x) => x.arrayBuffer()) + // @ts-ignore avoid DOM lib for testing purposes .then((x) => new File([x], filename)); const result = await client.audio.transcriptions.create({ file, model }); @@ -63,15 +66,26 @@ const fineTune = `{"prompt": "", "completion": " { it('handles form-data Blob', async function () { const result = await client.files.create({ - file: await toFile(new FormDataBlob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), + file: await toFile( + new FormDataBlob([ + // @ts-ignore avoid DOM lib for testing purposes + new TextEncoder().encode(fineTune), + ]), + 'finetune.jsonl', + ), purpose: 'fine-tune', }); expect(result.status).toEqual('uploaded'); }); + // @ts-ignore avoid DOM lib for testing purposes if (typeof Blob !== 'undefined') { it('handles builtin Blob', async function () { const result = await client.files.create({ - file: await toFile(new Blob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new Blob([new TextEncoder().encode(fineTune)]), + 'finetune.jsonl', + ), purpose: 'fine-tune', }); expect(result.status).toEqual('uploaded'); @@ -79,21 +93,33 @@ describe('toFile', () => { } it('handles Uint8Array', async function () { const result = await client.files.create({ - file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new TextEncoder().encode(fineTune), + 'finetune.jsonl', + ), purpose: 'fine-tune', }); expect(result.status).toEqual('uploaded'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ - file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new TextEncoder().encode(fineTune).buffer, + 'finetune.jsonl', + ), purpose: 'fine-tune', }); expect(result.status).toEqual('uploaded'); }); - it('handles ArrayBuffer', async function () { + it('handles DataView', async function () { const result = await client.files.create({ - file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new DataView(new TextEncoder().encode(fineTune).buffer), + 'finetune.jsonl', + ), purpose: 'fine-tune', }); expect(result.status).toEqual('uploaded'); diff --git a/ecosystem-tests/node-ts-esm/tsconfig.noderesolution.json b/ecosystem-tests/node-ts-esm/tsconfig.noderesolution.json new file mode 100644 index 000000000..b14dc7f61 --- /dev/null +++ b/ecosystem-tests/node-ts-esm/tsconfig.noderesolution.json @@ -0,0 +1,54 @@ +{ + "exclude": ["node_modules"], + + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ + /* Projects */ + "incremental": true, + + /* Language and Environment */ + "target": "ES2022", + "lib": ["ES2022"], + "jsx": "react", + + /* Modules */ + "module": "ESNext", + "rootDir": "./", + "moduleResolution": "node", + "baseUrl": "./", + "paths": { + "~/*": ["*"] + }, + "resolveJsonModule": true, + "composite": true, + + /* Emit */ + "outDir": "node_modules", + "noEmit": true, + + /* Interop Constraints */ + "isolatedModules": true, + "allowSyntheticDefaultImports": true, + /* "esModuleInterop": true, */ + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "checkJs": true, + + /* Experimental Features */ + "experimentalDecorators": true, + + /* Type Checking */ + "strict": true, + "noImplicitAny": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "strictBindCallApply": true, + "strictPropertyInitialization": true, + "noImplicitThis": true, + "alwaysStrict": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + "noPropertyAccessFromIndexSignature": true, + "skipLibCheck": true + } +} diff --git a/ecosystem-tests/ts-browser-webpack/package-lock.json b/ecosystem-tests/ts-browser-webpack/package-lock.json new file mode 100644 index 000000000..5c1830d0e --- /dev/null +++ b/ecosystem-tests/ts-browser-webpack/package-lock.json @@ -0,0 +1,5896 @@ +{ + "name": "ts-browser-webpack", + "version": "0.0.1", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "ts-browser-webpack", + "version": "0.0.1", + "devDependencies": { + "babel-core": "^6.26.3", + "babel-loader": "^9.1.2", + "babel-preset-es2015": "^6.24.1", + "force": "^0.0.3", + "html-webpack-plugin": "^5.5.3", + "ts-loader": "^9.4.3", + "typescript": "^5.0.4", + "webpack": "^5.87.0", + "webpack-cli": "^5.0.2", + "webpack-dev-server": "^4.15.1" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "peer": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", + "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/highlight": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", + "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.5.tgz", + "integrity": "sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==", + "dev": true, + "peer": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helpers": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", + "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/types": "^7.22.5", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", + "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/compat-data": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", + "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", + "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", + "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", + "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", + "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", + "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", + "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", + "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", + "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", + "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", + "dev": true, + "peer": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", + "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", + "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.3.tgz", + "integrity": "sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", + "dev": true + }, + "node_modules/@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "dev": true, + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect-history-api-fallback": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz", + "integrity": "sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==", + "dev": true, + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "node_modules/@types/eslint": { + "version": "8.40.2", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.40.2.tgz", + "integrity": "sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ==", + "dev": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "dev": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", + "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", + "dev": true + }, + "node_modules/@types/express": { + "version": "4.17.17", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", + "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", + "dev": true, + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.17.35", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz", + "integrity": "sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", + "dev": true + }, + "node_modules/@types/http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==", + "dev": true + }, + "node_modules/@types/http-proxy": { + "version": "1.17.11", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", + "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", + "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", + "dev": true + }, + "node_modules/@types/mime": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", + "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", + "dev": true + }, + "node_modules/@types/node": { + "version": "20.3.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.2.tgz", + "integrity": "sha512-vOBLVQeCQfIcF/2Y7eKFTqrMnizK5lRNQ7ykML/5RuwVXVWxYkgwS7xbt4B6fKCUPgbSL5FSsjHQpaGQP/dQmw==", + "dev": true + }, + "node_modules/@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "dev": true + }, + "node_modules/@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "dev": true + }, + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "dev": true + }, + "node_modules/@types/send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz", + "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==", + "dev": true, + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "node_modules/@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "dev": true, + "dependencies": { + "@types/express": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.2.tgz", + "integrity": "sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==", + "dev": true, + "dependencies": { + "@types/http-errors": "*", + "@types/mime": "*", + "@types/node": "*" + } + }, + "node_modules/@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/ws": { + "version": "8.5.5", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", + "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "dev": true, + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "dev": true, + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "dev": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "dev": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "dev": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webpack-cli/configtest": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.1.1.tgz", + "integrity": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==", + "dev": true, + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + } + }, + "node_modules/@webpack-cli/info": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.2.tgz", + "integrity": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==", + "dev": true, + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + } + }, + "node_modules/@webpack-cli/serve": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-2.0.5.tgz", + "integrity": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==", + "dev": true, + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + }, + "peerDependenciesMeta": { + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", + "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "dev": true, + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true, + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "peer": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + }, + "node_modules/asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "dev": true, + "dependencies": { + "safer-buffer": "~2.1.0" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/aws4": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", + "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==", + "dev": true + }, + "node_modules/babel-code-frame": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", + "integrity": "sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==", + "dev": true, + "dependencies": { + "chalk": "^1.1.3", + "esutils": "^2.0.2", + "js-tokens": "^3.0.2" + } + }, + "node_modules/babel-code-frame/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-code-frame/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-code-frame/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "dev": true, + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-code-frame/node_modules/js-tokens": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", + "integrity": "sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==", + "dev": true + }, + "node_modules/babel-code-frame/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-code-frame/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/babel-core": { + "version": "6.26.3", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz", + "integrity": "sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==", + "dev": true, + "dependencies": { + "babel-code-frame": "^6.26.0", + "babel-generator": "^6.26.0", + "babel-helpers": "^6.24.1", + "babel-messages": "^6.23.0", + "babel-register": "^6.26.0", + "babel-runtime": "^6.26.0", + "babel-template": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "convert-source-map": "^1.5.1", + "debug": "^2.6.9", + "json5": "^0.5.1", + "lodash": "^4.17.4", + "minimatch": "^3.0.4", + "path-is-absolute": "^1.0.1", + "private": "^0.1.8", + "slash": "^1.0.0", + "source-map": "^0.5.7" + } + }, + "node_modules/babel-core/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/babel-core/node_modules/json5": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", + "integrity": "sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/babel-core/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/babel-generator": { + "version": "6.26.1", + "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz", + "integrity": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==", + "dev": true, + "dependencies": { + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "detect-indent": "^4.0.0", + "jsesc": "^1.3.0", + "lodash": "^4.17.4", + "source-map": "^0.5.7", + "trim-right": "^1.0.1" + } + }, + "node_modules/babel-generator/node_modules/jsesc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz", + "integrity": "sha512-Mke0DA0QjUWuJlhsE0ZPPhYiJkRap642SmI/4ztCFaUs6V2AiH1sfecc+57NgaryfAA2VR3v6O+CSjC1jZJKOA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/babel-helper-call-delegate": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz", + "integrity": "sha512-RL8n2NiEj+kKztlrVJM9JT1cXzzAdvWFh76xh/H1I4nKwunzE4INBXn8ieCZ+wh4zWszZk7NBS1s/8HR5jDkzQ==", + "dev": true, + "dependencies": { + "babel-helper-hoist-variables": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "node_modules/babel-helper-define-map": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz", + "integrity": "sha512-bHkmjcC9lM1kmZcVpA5t2om2nzT/xiZpo6TJq7UlZ3wqKfzia4veeXbIhKvJXAMzhhEBd3cR1IElL5AenWEUpA==", + "dev": true, + "dependencies": { + "babel-helper-function-name": "^6.24.1", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "lodash": "^4.17.4" + } + }, + "node_modules/babel-helper-function-name": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz", + "integrity": "sha512-Oo6+e2iX+o9eVvJ9Y5eKL5iryeRdsIkwRYheCuhYdVHsdEQysbc2z2QkqCLIYnNxkT5Ss3ggrHdXiDI7Dhrn4Q==", + "dev": true, + "dependencies": { + "babel-helper-get-function-arity": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "node_modules/babel-helper-get-function-arity": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz", + "integrity": "sha512-WfgKFX6swFB1jS2vo+DwivRN4NB8XUdM3ij0Y1gnC21y1tdBoe6xjVnd7NSI6alv+gZXCtJqvrTeMW3fR/c0ng==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "node_modules/babel-helper-hoist-variables": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz", + "integrity": "sha512-zAYl3tqerLItvG5cKYw7f1SpvIxS9zi7ohyGHaI9cgDUjAT6YcY9jIEH5CstetP5wHIVSceXwNS7Z5BpJg+rOw==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "node_modules/babel-helper-optimise-call-expression": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz", + "integrity": "sha512-Op9IhEaxhbRT8MDXx2iNuMgciu2V8lDvYCNQbDGjdBNCjaMvyLf4wl4A3b8IgndCyQF8TwfgsQ8T3VD8aX1/pA==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "node_modules/babel-helper-regex": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz", + "integrity": "sha512-VlPiWmqmGJp0x0oK27Out1D+71nVVCTSdlbhIVoaBAj2lUgrNjBCRR9+llO4lTSb2O4r7PJg+RobRkhBrf6ofg==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "lodash": "^4.17.4" + } + }, + "node_modules/babel-helper-replace-supers": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz", + "integrity": "sha512-sLI+u7sXJh6+ToqDr57Bv973kCepItDhMou0xCP2YPVmR1jkHSCY+p1no8xErbV1Siz5QE8qKT1WIwybSWlqjw==", + "dev": true, + "dependencies": { + "babel-helper-optimise-call-expression": "^6.24.1", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "node_modules/babel-helpers": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz", + "integrity": "sha512-n7pFrqQm44TCYvrCDb0MqabAF+JUBq+ijBvNMUxpkLjJaAu32faIexewMumrH5KLLJ1HDyT0PTEqRyAe/GwwuQ==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" + } + }, + "node_modules/babel-loader": { + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.2.tgz", + "integrity": "sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==", + "dev": true, + "dependencies": { + "find-cache-dir": "^3.3.2", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 14.15.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0", + "webpack": ">=5" + } + }, + "node_modules/babel-messages": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz", + "integrity": "sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.22.0" + } + }, + "node_modules/babel-plugin-check-es2015-constants": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz", + "integrity": "sha512-B1M5KBP29248dViEo1owyY32lk1ZSH2DaNNrXLGt8lyjjHm7pBqAdQ7VKUPR6EEDO323+OvT3MQXbCin8ooWdA==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.22.0" + } + }, + "node_modules/babel-plugin-transform-es2015-arrow-functions": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz", + "integrity": "sha512-PCqwwzODXW7JMrzu+yZIaYbPQSKjDTAsNNlK2l5Gg9g4rz2VzLnZsStvp/3c46GfXpwkyufb3NCyG9+50FF1Vg==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.22.0" + } + }, + "node_modules/babel-plugin-transform-es2015-block-scoped-functions": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz", + "integrity": "sha512-2+ujAT2UMBzYFm7tidUsYh+ZoIutxJ3pN9IYrF1/H6dCKtECfhmB8UkHVpyxDwkj0CYbQG35ykoz925TUnBc3A==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.22.0" + } + }, + "node_modules/babel-plugin-transform-es2015-block-scoping": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz", + "integrity": "sha512-YiN6sFAQ5lML8JjCmr7uerS5Yc/EMbgg9G8ZNmk2E3nYX4ckHR01wrkeeMijEf5WHNK5TW0Sl0Uu3pv3EdOJWw==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.26.0", + "babel-template": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "lodash": "^4.17.4" + } + }, + "node_modules/babel-plugin-transform-es2015-classes": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz", + "integrity": "sha512-5Dy7ZbRinGrNtmWpquZKZ3EGY8sDgIVB4CU8Om8q8tnMLrD/m94cKglVcHps0BCTdZ0TJeeAWOq2TK9MIY6cag==", + "dev": true, + "dependencies": { + "babel-helper-define-map": "^6.24.1", + "babel-helper-function-name": "^6.24.1", + "babel-helper-optimise-call-expression": "^6.24.1", + "babel-helper-replace-supers": "^6.24.1", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "node_modules/babel-plugin-transform-es2015-computed-properties": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz", + "integrity": "sha512-C/uAv4ktFP/Hmh01gMTvYvICrKze0XVX9f2PdIXuriCSvUmV9j+u+BB9f5fJK3+878yMK6dkdcq+Ymr9mrcLzw==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" + } + }, + "node_modules/babel-plugin-transform-es2015-destructuring": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz", + "integrity": "sha512-aNv/GDAW0j/f4Uy1OEPZn1mqD+Nfy9viFGBfQ5bZyT35YqOiqx7/tXdyfZkJ1sC21NyEsBdfDY6PYmLHF4r5iA==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.22.0" + } + }, + "node_modules/babel-plugin-transform-es2015-duplicate-keys": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz", + "integrity": "sha512-ossocTuPOssfxO2h+Z3/Ea1Vo1wWx31Uqy9vIiJusOP4TbF7tPs9U0sJ9pX9OJPf4lXRGj5+6Gkl/HHKiAP5ug==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "node_modules/babel-plugin-transform-es2015-for-of": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz", + "integrity": "sha512-DLuRwoygCoXx+YfxHLkVx5/NpeSbVwfoTeBykpJK7JhYWlL/O8hgAK/reforUnZDlxasOrVPPJVI/guE3dCwkw==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.22.0" + } + }, + "node_modules/babel-plugin-transform-es2015-function-name": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz", + "integrity": "sha512-iFp5KIcorf11iBqu/y/a7DK3MN5di3pNCzto61FqCNnUX4qeBwcV1SLqe10oXNnCaxBUImX3SckX2/o1nsrTcg==", + "dev": true, + "dependencies": { + "babel-helper-function-name": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "node_modules/babel-plugin-transform-es2015-literals": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz", + "integrity": "sha512-tjFl0cwMPpDYyoqYA9li1/7mGFit39XiNX5DKC/uCNjBctMxyL1/PT/l4rSlbvBG1pOKI88STRdUsWXB3/Q9hQ==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.22.0" + } + }, + "node_modules/babel-plugin-transform-es2015-modules-amd": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz", + "integrity": "sha512-LnIIdGWIKdw7zwckqx+eGjcS8/cl8D74A3BpJbGjKTFFNJSMrjN4bIh22HY1AlkUbeLG6X6OZj56BDvWD+OeFA==", + "dev": true, + "dependencies": { + "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" + } + }, + "node_modules/babel-plugin-transform-es2015-modules-commonjs": { + "version": "6.26.2", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz", + "integrity": "sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==", + "dev": true, + "dependencies": { + "babel-plugin-transform-strict-mode": "^6.24.1", + "babel-runtime": "^6.26.0", + "babel-template": "^6.26.0", + "babel-types": "^6.26.0" + } + }, + "node_modules/babel-plugin-transform-es2015-modules-systemjs": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz", + "integrity": "sha512-ONFIPsq8y4bls5PPsAWYXH/21Hqv64TBxdje0FvU3MhIV6QM2j5YS7KvAzg/nTIVLot2D2fmFQrFWCbgHlFEjg==", + "dev": true, + "dependencies": { + "babel-helper-hoist-variables": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" + } + }, + "node_modules/babel-plugin-transform-es2015-modules-umd": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz", + "integrity": "sha512-LpVbiT9CLsuAIp3IG0tfbVo81QIhn6pE8xBJ7XSeCtFlMltuar5VuBV6y6Q45tpui9QWcy5i0vLQfCfrnF7Kiw==", + "dev": true, + "dependencies": { + "babel-plugin-transform-es2015-modules-amd": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" + } + }, + "node_modules/babel-plugin-transform-es2015-object-super": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz", + "integrity": "sha512-8G5hpZMecb53vpD3mjs64NhI1au24TAmokQ4B+TBFBjN9cVoGoOvotdrMMRmHvVZUEvqGUPWL514woru1ChZMA==", + "dev": true, + "dependencies": { + "babel-helper-replace-supers": "^6.24.1", + "babel-runtime": "^6.22.0" + } + }, + "node_modules/babel-plugin-transform-es2015-parameters": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz", + "integrity": "sha512-8HxlW+BB5HqniD+nLkQ4xSAVq3bR/pcYW9IigY+2y0dI+Y7INFeTbfAQr+63T3E4UDsZGjyb+l9txUnABWxlOQ==", + "dev": true, + "dependencies": { + "babel-helper-call-delegate": "^6.24.1", + "babel-helper-get-function-arity": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "node_modules/babel-plugin-transform-es2015-shorthand-properties": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz", + "integrity": "sha512-mDdocSfUVm1/7Jw/FIRNw9vPrBQNePy6wZJlR8HAUBLybNp1w/6lr6zZ2pjMShee65t/ybR5pT8ulkLzD1xwiw==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "node_modules/babel-plugin-transform-es2015-spread": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz", + "integrity": "sha512-3Ghhi26r4l3d0Js933E5+IhHwk0A1yiutj9gwvzmFbVV0sPMYk2lekhOufHBswX7NCoSeF4Xrl3sCIuSIa+zOg==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.22.0" + } + }, + "node_modules/babel-plugin-transform-es2015-sticky-regex": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz", + "integrity": "sha512-CYP359ADryTo3pCsH0oxRo/0yn6UsEZLqYohHmvLQdfS9xkf+MbCzE3/Kolw9OYIY4ZMilH25z/5CbQbwDD+lQ==", + "dev": true, + "dependencies": { + "babel-helper-regex": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "node_modules/babel-plugin-transform-es2015-template-literals": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz", + "integrity": "sha512-x8b9W0ngnKzDMHimVtTfn5ryimars1ByTqsfBDwAqLibmuuQY6pgBQi5z1ErIsUOWBdw1bW9FSz5RZUojM4apg==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.22.0" + } + }, + "node_modules/babel-plugin-transform-es2015-typeof-symbol": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz", + "integrity": "sha512-fz6J2Sf4gYN6gWgRZaoFXmq93X+Li/8vf+fb0sGDVtdeWvxC9y5/bTD7bvfWMEq6zetGEHpWjtzRGSugt5kNqw==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.22.0" + } + }, + "node_modules/babel-plugin-transform-es2015-unicode-regex": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz", + "integrity": "sha512-v61Dbbihf5XxnYjtBN04B/JBvsScY37R1cZT5r9permN1cp+b70DY3Ib3fIkgn1DI9U3tGgBJZVD8p/mE/4JbQ==", + "dev": true, + "dependencies": { + "babel-helper-regex": "^6.24.1", + "babel-runtime": "^6.22.0", + "regexpu-core": "^2.0.0" + } + }, + "node_modules/babel-plugin-transform-regenerator": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz", + "integrity": "sha512-LS+dBkUGlNR15/5WHKe/8Neawx663qttS6AGqoOUhICc9d1KciBvtrQSuc0PI+CxQ2Q/S1aKuJ+u64GtLdcEZg==", + "dev": true, + "dependencies": { + "regenerator-transform": "^0.10.0" + } + }, + "node_modules/babel-plugin-transform-strict-mode": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz", + "integrity": "sha512-j3KtSpjyLSJxNoCDrhwiJad8kw0gJ9REGj8/CqL0HeRyLnvUNYV9zcqluL6QJSXh3nfsLEmSLvwRfGzrgR96Pw==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "node_modules/babel-preset-es2015": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz", + "integrity": "sha512-XfwUqG1Ry6R43m4Wfob+vHbIVBIqTg/TJY4Snku1iIzeH7mUnwHA8Vagmv+ZQbPwhS8HgsdQvy28Py3k5zpoFQ==", + "deprecated": "🙌 Thanks for using Babel: we recommend using babel-preset-env now: please read https://babeljs.io/env to update!", + "dev": true, + "dependencies": { + "babel-plugin-check-es2015-constants": "^6.22.0", + "babel-plugin-transform-es2015-arrow-functions": "^6.22.0", + "babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0", + "babel-plugin-transform-es2015-block-scoping": "^6.24.1", + "babel-plugin-transform-es2015-classes": "^6.24.1", + "babel-plugin-transform-es2015-computed-properties": "^6.24.1", + "babel-plugin-transform-es2015-destructuring": "^6.22.0", + "babel-plugin-transform-es2015-duplicate-keys": "^6.24.1", + "babel-plugin-transform-es2015-for-of": "^6.22.0", + "babel-plugin-transform-es2015-function-name": "^6.24.1", + "babel-plugin-transform-es2015-literals": "^6.22.0", + "babel-plugin-transform-es2015-modules-amd": "^6.24.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1", + "babel-plugin-transform-es2015-modules-systemjs": "^6.24.1", + "babel-plugin-transform-es2015-modules-umd": "^6.24.1", + "babel-plugin-transform-es2015-object-super": "^6.24.1", + "babel-plugin-transform-es2015-parameters": "^6.24.1", + "babel-plugin-transform-es2015-shorthand-properties": "^6.24.1", + "babel-plugin-transform-es2015-spread": "^6.22.0", + "babel-plugin-transform-es2015-sticky-regex": "^6.24.1", + "babel-plugin-transform-es2015-template-literals": "^6.22.0", + "babel-plugin-transform-es2015-typeof-symbol": "^6.22.0", + "babel-plugin-transform-es2015-unicode-regex": "^6.24.1", + "babel-plugin-transform-regenerator": "^6.24.1" + } + }, + "node_modules/babel-register": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz", + "integrity": "sha512-veliHlHX06wjaeY8xNITbveXSiI+ASFnOqvne/LaIJIqOWi2Ogmj91KOugEz/hoh/fwMhXNBJPCv8Xaz5CyM4A==", + "dev": true, + "dependencies": { + "babel-core": "^6.26.0", + "babel-runtime": "^6.26.0", + "core-js": "^2.5.0", + "home-or-tmp": "^2.0.0", + "lodash": "^4.17.4", + "mkdirp": "^0.5.1", + "source-map-support": "^0.4.15" + } + }, + "node_modules/babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==", + "dev": true, + "dependencies": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + } + }, + "node_modules/babel-template": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz", + "integrity": "sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "lodash": "^4.17.4" + } + }, + "node_modules/babel-traverse": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz", + "integrity": "sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA==", + "dev": true, + "dependencies": { + "babel-code-frame": "^6.26.0", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "debug": "^2.6.8", + "globals": "^9.18.0", + "invariant": "^2.2.2", + "lodash": "^4.17.4" + } + }, + "node_modules/babel-traverse/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/babel-traverse/node_modules/globals": { + "version": "9.18.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz", + "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-traverse/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/babel-types": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz", + "integrity": "sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + } + }, + "node_modules/babel-types/node_modules/to-fast-properties": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", + "integrity": "sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babylon": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", + "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==", + "dev": true, + "bin": { + "babylon": "bin/babylon.js" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", + "dev": true, + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/body-parser/node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/bonjour-service": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.1.tgz", + "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==", + "dev": true, + "dependencies": { + "array-flatten": "^2.1.2", + "dns-equal": "^1.0.0", + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.21.9", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", + "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001503", + "electron-to-chromium": "^1.4.431", + "node-releases": "^2.0.12", + "update-browserslist-db": "^1.0.11" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001508", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001508.tgz", + "integrity": "sha512-sdQZOJdmt3GJs1UMNpCCCyeuS2IEGLXnHyAo9yIO5JJDjbjoVRij4M1qep6P6gFpptD1PqIYgzM+gwJbOi92mw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", + "dev": true + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "peer": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/clean-css": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.2.tgz", + "integrity": "sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==", + "dev": true, + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "node_modules/clean-css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "peer": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true, + "peer": true + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "node_modules/cookiejar": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.4.tgz", + "integrity": "sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==", + "dev": true + }, + "node_modules/core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "deprecated": "core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.", + "dev": true, + "hasInstallScript": true + }, + "node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", + "dev": true, + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "dev": true, + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-indent": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz", + "integrity": "sha512-BDKtmHlOzwI7iRuEkhzsnPoi5ypEhWAJB5RvHWe1kMr06js3uK5B3734i3ui5Yd+wOJV1cpE4JnivPD283GU/A==", + "dev": true, + "dependencies": { + "repeating": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", + "dev": true + }, + "node_modules/dns-packet": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.0.tgz", + "integrity": "sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==", + "dev": true, + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dev": true, + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", + "dev": true, + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.4.442", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.442.tgz", + "integrity": "sha512-RkrZF//Ya+0aJq2NM3OdisNh5ZodZq1rdXOS96G8DdDgpDKqKE81yTbbQ3F/4CKm1JBPsGu1Lp/akkna2xO06Q==", + "dev": true + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/envinfo": { + "version": "7.10.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.10.0.tgz", + "integrity": "sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==", + "dev": true, + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/es-module-lexer": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.0.tgz", + "integrity": "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==", + "dev": true + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/express/node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "node_modules/extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", + "dev": true, + "engines": [ + "node >=0.6.0" + ] + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true, + "engines": { + "node": ">= 4.9.1" + } + }, + "node_modules/faye": { + "version": "0.8.11", + "resolved": "https://registry.npmjs.org/faye/-/faye-0.8.11.tgz", + "integrity": "sha512-d2SXlWy+wR8D2AgYjCnJrA8v4RvwKeRQeTB2aLUetyhrNKTU28mAvSMezSZDNyOONVrsF0IY1s4625QgggM2XA==", + "dev": true, + "dependencies": { + "cookiejar": "", + "faye-websocket": ">=0.4.0" + }, + "engines": { + "node": ">=0.1.96" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/force": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/force/-/force-0.0.3.tgz", + "integrity": "sha512-B/4gl3/7o8Q4jYfXNKSvTHlAPxB1ruYCkxVkiVUUuHziYbDa2NsURljSgpm+Q+d4cGmN1EaAD5QXhLodGN44zA==", + "dev": true, + "dependencies": { + "faye": "~0.8.3", + "mime": "~1.2.9", + "request": "*" + }, + "engines": { + "node": "*" + } + }, + "node_modules/forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-monkey": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.4.tgz", + "integrity": "sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==", + "dev": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", + "dev": true, + "dependencies": { + "assert-plus": "^1.0.0" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "node_modules/har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "deprecated": "this library is no longer supported", + "dev": true, + "dependencies": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-ansi/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "bin": { + "he": "bin/he" + } + }, + "node_modules/home-or-tmp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz", + "integrity": "sha512-ycURW7oUxE2sNiPVw1HVEFsW+ecOpJ5zaj7eC0RlwhibhRBod20muUN8qu/gzx956YrLolVvs1MTXwKgC2rVEg==", + "dev": true, + "dependencies": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/hpack.js/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/hpack.js/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/html-entities": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", + "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ] + }, + "node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "dev": true, + "dependencies": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-webpack-plugin": { + "version": "5.5.3", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.3.tgz", + "integrity": "sha512-6YrDKTuqaP/TquFH7h4srYWsZx+x6k6+FbsTm0ziCwGHDP78Unr1r9F/H4+sGmMbX08GQcJ+K64x55b+7VM/jg==", + "dev": true, + "dependencies": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" + }, + "peerDependencies": { + "webpack": "^5.20.0" + } + }, + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "dev": true, + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "dev": true, + "dependencies": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } + } + }, + "node_modules/http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", + "dev": true, + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/interpret": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", + "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dev": true, + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/ipaddr.js": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", + "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finite": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", + "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", + "dev": true, + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "dev": true + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", + "dev": true + }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", + "dev": true + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "peer": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "peer": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "dev": true, + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/launch-editor": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.0.tgz", + "integrity": "sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==", + "dev": true, + "dependencies": { + "picocolors": "^1.0.0", + "shell-quote": "^1.7.3" + } + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dev": true, + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "peer": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "dev": true, + "dependencies": { + "fs-monkey": "^1.0.4" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.2.11", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz", + "integrity": "sha512-Ysa2F/nqTNGHhhm9MV8ure4+Hc+Y8AWiqUdHxsO7xu8zc92ND9f3kpALHjaP026Ft17UfxrMt95c50PLUeynBw==", + "dev": true + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "dev": true, + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "dev": true, + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-releases": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", + "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "dev": true, + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "dev": true, + "dependencies": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "dev": true, + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "node_modules/private": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", + "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/rechoir": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", + "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", + "dev": true, + "dependencies": { + "resolve": "^1.20.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "node_modules/regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", + "dev": true + }, + "node_modules/regenerator-transform": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz", + "integrity": "sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==", + "dev": true, + "dependencies": { + "babel-runtime": "^6.18.0", + "babel-types": "^6.19.0", + "private": "^0.1.6" + } + }, + "node_modules/regexpu-core": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz", + "integrity": "sha512-tJ9+S4oKjxY8IZ9jmjnp/mtytu1u3iyIQAfmI51IKWH6bFf7XR1ybtaO6j7INhZKXOTYADk7V5qxaqLkmNxiZQ==", + "dev": true, + "dependencies": { + "regenerate": "^1.2.1", + "regjsgen": "^0.2.0", + "regjsparser": "^0.1.4" + } + }, + "node_modules/regjsgen": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz", + "integrity": "sha512-x+Y3yA24uF68m5GA+tBjbGYo64xXVJpbToBaWCoSNSc1hdk6dfctaRWrNFTVJZIIhL5GxW8zwjoixbnifnK59g==", + "dev": true + }, + "node_modules/regjsparser": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz", + "integrity": "sha512-jlQ9gYLfk2p3V5Ag5fYhA7fv7OHzd1KUH0PRP46xc3TgwjwgROIW572AfYg/X9kaNq/LJnu6oJcFRXlIrGoTRw==", + "dev": true, + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "dev": true, + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "node_modules/repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==", + "dev": true, + "dependencies": { + "is-finite": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "dev": true, + "dependencies": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, + "node_modules/resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "dev": true, + "dependencies": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/schema-utils/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/schema-utils/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/schema-utils/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "dev": true + }, + "node_modules/selfsigned": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", + "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", + "dev": true, + "dependencies": { + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/send/node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/serialize-javascript": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "dev": true, + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/slash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dev": true, + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/sockjs/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.4.18", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz", + "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==", + "dev": true, + "dependencies": { + "source-map": "^0.5.6" + } + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/sshpk": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", + "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", + "dev": true, + "dependencies": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "peer": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/terser": { + "version": "5.18.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.18.2.tgz", + "integrity": "sha512-Ah19JS86ypbJzTzvUCX7KOsEIhDaRONungA4aYBjEP3JZRf4ocuDzTg4QWZnPn9DEMiMYGJPiSOy7aykoCc70w==", + "dev": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.9", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", + "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.17", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/terser/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/terser/node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/trim-right": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", + "integrity": "sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ts-loader": { + "version": "9.4.3", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.3.tgz", + "integrity": "sha512-n3hBnm6ozJYzwiwt5YRiJZkzktftRpMiBApHaJPoWLA+qetQBAXkHqCLM6nwSdRDimqVtA5ocIkcTRLMTt7yzA==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "enhanced-resolve": "^5.0.0", + "micromatch": "^4.0.0", + "semver": "^7.3.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "typescript": "*", + "webpack": "^5.0.0" + } + }, + "node_modules/ts-loader/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ts-loader/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/ts-loader/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/ts-loader/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/ts-loader/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-loader/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-loader/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-loader/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-loader/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/tslib": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", + "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==", + "dev": true + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", + "dev": true + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typescript": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", + "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", + "dev": true + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "dev": true, + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", + "dev": true, + "engines": [ + "node >=0.6.0" + ], + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dev": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/webpack": { + "version": "5.88.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.0.tgz", + "integrity": "sha512-O3jDhG5e44qIBSi/P6KpcCcH7HD+nYIHVBhdWFxcLOcIGN8zGo5nqF3BjyNCxIh4p1vFdNnreZv2h2KkoAw3lw==", + "dev": true, + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-cli": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.1.4.tgz", + "integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==", + "dev": true, + "dependencies": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^2.1.1", + "@webpack-cli/info": "^2.0.2", + "@webpack-cli/serve": "^2.0.5", + "colorette": "^2.0.14", + "commander": "^10.0.1", + "cross-spawn": "^7.0.3", + "envinfo": "^7.7.3", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^3.1.1", + "rechoir": "^0.8.0", + "webpack-merge": "^5.7.3" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "5.x.x" + }, + "peerDependenciesMeta": { + "@webpack-cli/generators": { + "optional": true + }, + "webpack-bundle-analyzer": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/webpack-cli/node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/webpack-dev-middleware": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "dev": true, + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-server": { + "version": "4.15.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz", + "integrity": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==", + "dev": true, + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.5", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "launch-editor": "^2.6.0", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.1.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.13.0" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-merge": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.9.0.tgz", + "integrity": "sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg==", + "dev": true, + "dependencies": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wildcard": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", + "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", + "dev": true + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/ws": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", + "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "peer": true + } + } +} diff --git a/ecosystem-tests/ts-browser-webpack/package.json b/ecosystem-tests/ts-browser-webpack/package.json index 53f1427f2..3af4bfa17 100644 --- a/ecosystem-tests/ts-browser-webpack/package.json +++ b/ecosystem-tests/ts-browser-webpack/package.json @@ -4,6 +4,7 @@ "private": true, "description": "ts-browser-webpack", "scripts": { + "tsc": "tsc", "test": "echo \"Error: no test specified\" && exit 1", "serve": "webpack-cli serve --mode development", "build": "webpack" diff --git a/ecosystem-tests/ts-browser-webpack/src/index.ts b/ecosystem-tests/ts-browser-webpack/src/index.ts index f3434f82b..9979abf7c 100644 --- a/ecosystem-tests/ts-browser-webpack/src/index.ts +++ b/ecosystem-tests/ts-browser-webpack/src/index.ts @@ -1,4 +1,5 @@ import OpenAI from 'openai'; +import { TranscriptionCreateParams } from 'openai/resources/audio'; // smoke test that importing and constructing the client works const openai = new OpenAI({ apiKey: '' }); @@ -12,6 +13,22 @@ openai.completions }) .catch((err) => console.error(err)); +async function typeTests() { + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await openai.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await openai.audio.transcriptions.create({ file: null, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await openai.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); + + const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; + const model = 'whisper-1'; + + const file = await fetch(url); + const params: TranscriptionCreateParams = { file, model }; + + await openai.audio.transcriptions.create(params); +} // -------- class Greeter { diff --git a/ecosystem-tests/ts-browser-webpack/tsconfig.json b/ecosystem-tests/ts-browser-webpack/tsconfig.json index c0750de5b..73086a3ce 100644 --- a/ecosystem-tests/ts-browser-webpack/tsconfig.json +++ b/ecosystem-tests/ts-browser-webpack/tsconfig.json @@ -7,6 +7,7 @@ "preserveConstEnums": true, "sourceMap": true, "declaration": true, + "skipLibCheck": false, "target": "es2015", "lib": ["es2017", "dom"], "outDir": "dist", diff --git a/ecosystem-tests/vercel-edge/package-lock.json b/ecosystem-tests/vercel-edge/package-lock.json new file mode 100644 index 000000000..223fbc94f --- /dev/null +++ b/ecosystem-tests/vercel-edge/package-lock.json @@ -0,0 +1,19852 @@ +{ + "name": "vercel-edge", + "version": "0.1.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "vercel-edge", + "version": "0.1.0", + "dependencies": { + "ai": "2.1.9", + "next": "13.4.6", + "react": "18.2.0", + "react-dom": "18.2.0" + }, + "devDependencies": { + "@types/node": "20.3.1", + "@types/react": "18.2.13", + "@types/react-dom": "18.2.6", + "edge-runtime": "^2.4.3", + "typescript": "5.1.3", + "vercel": "^30.2.3" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", + "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", + "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.5.tgz", + "integrity": "sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helpers": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", + "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/generator/node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz", + "integrity": "sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", + "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.5.tgz", + "integrity": "sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.5.tgz", + "integrity": "sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "regexpu-core": "^5.3.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.0.tgz", + "integrity": "sha512-RnanLx5ETe6aybRi1cO/edaRH+bNYWaryCEmjDDYyNr4wnSzyOp8T0dWipmqVHKEY3AbVKUom50AKSlj1zmKbg==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0-0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", + "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", + "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz", + "integrity": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", + "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", + "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz", + "integrity": "sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-wrap-function": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz", + "integrity": "sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", + "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", + "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", + "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz", + "integrity": "sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==", + "dev": true, + "dependencies": { + "@babel/helper-function-name": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", + "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", + "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", + "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz", + "integrity": "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz", + "integrity": "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "dev": true, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz", + "integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz", + "integrity": "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", + "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz", + "integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.5.tgz", + "integrity": "sha512-gGOEvFzm3fWoyD5uZq7vVTD57pPJ3PczPUD/xCFGjzBpUosnklmXyKnGQbbbGs1NPNPskFex0j93yKbHt0cHyg==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.5", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz", + "integrity": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz", + "integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz", + "integrity": "sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz", + "integrity": "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz", + "integrity": "sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.5.tgz", + "integrity": "sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz", + "integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/template": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz", + "integrity": "sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz", + "integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz", + "integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz", + "integrity": "sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz", + "integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==", + "dev": true, + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz", + "integrity": "sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz", + "integrity": "sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz", + "integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz", + "integrity": "sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz", + "integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz", + "integrity": "sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz", + "integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz", + "integrity": "sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz", + "integrity": "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz", + "integrity": "sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==", + "dev": true, + "dependencies": { + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz", + "integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", + "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz", + "integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz", + "integrity": "sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz", + "integrity": "sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz", + "integrity": "sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz", + "integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz", + "integrity": "sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.5.tgz", + "integrity": "sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz", + "integrity": "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz", + "integrity": "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz", + "integrity": "sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz", + "integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz", + "integrity": "sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "regenerator-transform": "^0.15.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz", + "integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz", + "integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz", + "integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz", + "integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz", + "integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz", + "integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.5.tgz", + "integrity": "sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-typescript": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz", + "integrity": "sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz", + "integrity": "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz", + "integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz", + "integrity": "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.5.tgz", + "integrity": "sha512-fj06hw89dpiZzGZtxn+QybifF07nNiZjZ7sazs2aVDcysAZVGjW7+7iFYxg6GLNM47R/thYfLdrXc+2f11Vi9A==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.5", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.5", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.22.5", + "@babel/plugin-syntax-import-attributes": "^7.22.5", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.22.5", + "@babel/plugin-transform-async-generator-functions": "^7.22.5", + "@babel/plugin-transform-async-to-generator": "^7.22.5", + "@babel/plugin-transform-block-scoped-functions": "^7.22.5", + "@babel/plugin-transform-block-scoping": "^7.22.5", + "@babel/plugin-transform-class-properties": "^7.22.5", + "@babel/plugin-transform-class-static-block": "^7.22.5", + "@babel/plugin-transform-classes": "^7.22.5", + "@babel/plugin-transform-computed-properties": "^7.22.5", + "@babel/plugin-transform-destructuring": "^7.22.5", + "@babel/plugin-transform-dotall-regex": "^7.22.5", + "@babel/plugin-transform-duplicate-keys": "^7.22.5", + "@babel/plugin-transform-dynamic-import": "^7.22.5", + "@babel/plugin-transform-exponentiation-operator": "^7.22.5", + "@babel/plugin-transform-export-namespace-from": "^7.22.5", + "@babel/plugin-transform-for-of": "^7.22.5", + "@babel/plugin-transform-function-name": "^7.22.5", + "@babel/plugin-transform-json-strings": "^7.22.5", + "@babel/plugin-transform-literals": "^7.22.5", + "@babel/plugin-transform-logical-assignment-operators": "^7.22.5", + "@babel/plugin-transform-member-expression-literals": "^7.22.5", + "@babel/plugin-transform-modules-amd": "^7.22.5", + "@babel/plugin-transform-modules-commonjs": "^7.22.5", + "@babel/plugin-transform-modules-systemjs": "^7.22.5", + "@babel/plugin-transform-modules-umd": "^7.22.5", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", + "@babel/plugin-transform-new-target": "^7.22.5", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.5", + "@babel/plugin-transform-numeric-separator": "^7.22.5", + "@babel/plugin-transform-object-rest-spread": "^7.22.5", + "@babel/plugin-transform-object-super": "^7.22.5", + "@babel/plugin-transform-optional-catch-binding": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.22.5", + "@babel/plugin-transform-parameters": "^7.22.5", + "@babel/plugin-transform-private-methods": "^7.22.5", + "@babel/plugin-transform-private-property-in-object": "^7.22.5", + "@babel/plugin-transform-property-literals": "^7.22.5", + "@babel/plugin-transform-regenerator": "^7.22.5", + "@babel/plugin-transform-reserved-words": "^7.22.5", + "@babel/plugin-transform-shorthand-properties": "^7.22.5", + "@babel/plugin-transform-spread": "^7.22.5", + "@babel/plugin-transform-sticky-regex": "^7.22.5", + "@babel/plugin-transform-template-literals": "^7.22.5", + "@babel/plugin-transform-typeof-symbol": "^7.22.5", + "@babel/plugin-transform-unicode-escapes": "^7.22.5", + "@babel/plugin-transform-unicode-property-regex": "^7.22.5", + "@babel/plugin-transform-unicode-regex": "^7.22.5", + "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.22.5", + "babel-plugin-polyfill-corejs2": "^0.4.3", + "babel-plugin-polyfill-corejs3": "^0.8.1", + "babel-plugin-polyfill-regenerator": "^0.5.0", + "core-js-compat": "^3.30.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz", + "integrity": "sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.22.5", + "@babel/plugin-transform-modules-commonjs": "^7.22.5", + "@babel/plugin-transform-typescript": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", + "dev": true + }, + "node_modules/@babel/runtime": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz", + "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==", + "dev": true, + "dependencies": { + "regenerator-runtime": "^0.13.4" + } + }, + "node_modules/@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", + "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", + "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@edge-runtime/format": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@edge-runtime/format/-/format-2.1.0.tgz", + "integrity": "sha512-gc2qbYEIIJRczBApBPznVI1c5vZgzrZQOsFZnAxxFiYah9qldHiu1YEitzSvXI8X8ZgvAguuIiyIbpWz17nlXA==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@edge-runtime/node-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/node-utils/-/node-utils-2.0.3.tgz", + "integrity": "sha512-JUSbi5xu/A8+D2t9B9wfirCI1J8n8q0660FfmqZgA+n3RqxD3y7SnamL1sKRE5/AbHsKs9zcqCbK2YDklbc9Bg==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@edge-runtime/primitives": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.3.tgz", + "integrity": "sha512-YnfMWMRQABAH8IsnFMJWMW+SyB4ZeYBPnR7V0aqdnew7Pq60cbH5DyFjS/FhiLwvHQk9wBREmXD7PP0HooEQ1A==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@edge-runtime/vm": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.3.tgz", + "integrity": "sha512-SPfI1JeIRNs/4EEE2Oc0X6gG3RqjD1TnKu2lwmwFXq0435xgZGKhc3UiKkYAdoMn2dNFD73nlabMKHBRoMRpxg==", + "dev": true, + "dependencies": { + "@edge-runtime/primitives": "3.0.3" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@emotion/hash": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", + "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==", + "dev": true + }, + "node_modules/@esbuild/android-arm": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.6.tgz", + "integrity": "sha512-bSC9YVUjADDy1gae8RrioINU6e1lCkg3VGVwm0QQ2E1CWcC4gnMce9+B6RpxuSsrsXsk1yojn7sp1fnG8erE2g==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.6.tgz", + "integrity": "sha512-YnYSCceN/dUzUr5kdtUzB+wZprCafuD89Hs0Aqv9QSdwhYQybhXTaSTcrl6X/aWThn1a/j0eEpUBGOE7269REg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.6.tgz", + "integrity": "sha512-MVcYcgSO7pfu/x34uX9u2QIZHmXAB7dEiLQC5bBl5Ryqtpj9lT2sg3gNDEsrPEmimSJW2FXIaxqSQ501YLDsZQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.6.tgz", + "integrity": "sha512-bsDRvlbKMQMt6Wl08nHtFz++yoZHsyTOxnjfB2Q95gato+Yi4WnRl13oC2/PJJA9yLCoRv9gqT/EYX0/zDsyMA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.6.tgz", + "integrity": "sha512-xh2A5oPrYRfMFz74QXIQTQo8uA+hYzGWJFoeTE8EvoZGHb+idyV4ATaukaUvnnxJiauhs/fPx3vYhU4wiGfosg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.6.tgz", + "integrity": "sha512-EnUwjRc1inT4ccZh4pB3v1cIhohE2S4YXlt1OvI7sw/+pD+dIE4smwekZlEPIwY6PhU6oDWwITrQQm5S2/iZgg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.6.tgz", + "integrity": "sha512-Uh3HLWGzH6FwpviUcLMKPCbZUAFzv67Wj5MTwK6jn89b576SR2IbEp+tqUHTr8DIl0iDmBAf51MVaP7pw6PY5Q==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.6.tgz", + "integrity": "sha512-7YdGiurNt7lqO0Bf/U9/arrPWPqdPqcV6JCZda4LZgEn+PTQ5SMEI4MGR52Bfn3+d6bNEGcWFzlIxiQdS48YUw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.6.tgz", + "integrity": "sha512-bUR58IFOMJX523aDVozswnlp5yry7+0cRLCXDsxnUeQYJik1DukMY+apBsLOZJblpH+K7ox7YrKrHmJoWqVR9w==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.6.tgz", + "integrity": "sha512-ujp8uoQCM9FRcbDfkqECoARsLnLfCUhKARTP56TFPog8ie9JG83D5GVKjQ6yVrEVdMie1djH86fm98eY3quQkQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.6.tgz", + "integrity": "sha512-y2NX1+X/Nt+izj9bLoiaYB9YXT/LoaQFYvCkVD77G/4F+/yuVXYCWz4SE9yr5CBMbOxOfBcy/xFL4LlOeNlzYQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.6.tgz", + "integrity": "sha512-09AXKB1HDOzXD+j3FdXCiL/MWmZP0Ex9eR8DLMBVcHorrWJxWmY8Nms2Nm41iRM64WVx7bA/JVHMv081iP2kUA==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.6.tgz", + "integrity": "sha512-AmLhMzkM8JuqTIOhxnX4ubh0XWJIznEynRnZAVdA2mMKE6FAfwT2TWKTwdqMG+qEaeyDPtfNoZRpJbD4ZBv0Tg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.6.tgz", + "integrity": "sha512-Y4Ri62PfavhLQhFbqucysHOmRamlTVK10zPWlqjNbj2XMea+BOs4w6ASKwQwAiqf9ZqcY9Ab7NOU4wIgpxwoSQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.6.tgz", + "integrity": "sha512-SPUiz4fDbnNEm3JSdUW8pBJ/vkop3M1YwZAVwvdwlFLoJwKEZ9L98l3tzeyMzq27CyepDQ3Qgoba44StgbiN5Q==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.6.tgz", + "integrity": "sha512-a3yHLmOodHrzuNgdpB7peFGPx1iJ2x6m+uDvhP2CKdr2CwOaqEFMeSqYAHU7hG+RjCq8r2NFujcd/YsEsFgTGw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.6.tgz", + "integrity": "sha512-EanJqcU/4uZIBreTrnbnre2DXgXSa+Gjap7ifRfllpmyAU7YMvaXmljdArptTHmjrkkKm9BK6GH5D5Yo+p6y5A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.6.tgz", + "integrity": "sha512-xaxeSunhQRsTNGFanoOkkLtnmMn5QbA0qBhNet/XLVsc+OVkpIWPHcr3zTW2gxVU5YOHFbIHR9ODuaUdNza2Vw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.6.tgz", + "integrity": "sha512-gnMnMPg5pfMkZvhHee21KbKdc6W3GR8/JuE0Da1kjwpK6oiFU3nqfHuVPgUX2rsOx9N2SadSQTIYV1CIjYG+xw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.6.tgz", + "integrity": "sha512-G95n7vP1UnGJPsVdKXllAJPtqjMvFYbN20e8RK8LVLhlTiSOH1sd7+Gt7rm70xiG+I5tM58nYgwWrLs6I1jHqg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.6.tgz", + "integrity": "sha512-96yEFzLhq5bv9jJo5JhTs1gI+1cKQ83cUpyxHuGqXVwQtY5Eq54ZEsKs8veKtiKwlrNimtckHEkj4mRh4pPjsg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.6.tgz", + "integrity": "sha512-n6d8MOyUrNp6G4VSpRcgjs5xj4A91svJSaiwLIDWVWEsZtpN5FA9NlBbZHDmAJc2e8e6SF4tkBD3HAvPF+7igA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@gar/promisify": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", + "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", + "dev": true + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "node_modules/@jspm/core": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@jspm/core/-/core-2.0.1.tgz", + "integrity": "sha512-Lg3PnLp0QXpxwLIAuuJboLeRaIhrgJjeuh797QADg3xz8wGLugQOS5DpsE8A6i6Adgzf+bacllkKZG3J0tGfDw==", + "dev": true + }, + "node_modules/@mapbox/node-pre-gyp": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz", + "integrity": "sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==", + "dev": true, + "dependencies": { + "detect-libc": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "make-dir": "^3.1.0", + "node-fetch": "^2.6.7", + "nopt": "^5.0.0", + "npmlog": "^5.0.1", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.11" + }, + "bin": { + "node-pre-gyp": "bin/node-pre-gyp" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@next/env": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.6.tgz", + "integrity": "sha512-nqUxEtvDqFhmV1/awSg0K2XHNwkftNaiUqCYO9e6+MYmqNObpKVl7OgMkGaQ2SZnFx5YqF0t60ZJTlyJIDAijg==" + }, + "node_modules/@next/swc-darwin-arm64": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.6.tgz", + "integrity": "sha512-ahi6VP98o4HV19rkOXPSUu+ovfHfUxbJQ7VVJ7gL2FnZRr7onEFC1oGQ6NQHpm8CxpIzSSBW79kumlFMOmZVjg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-darwin-x64": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.6.tgz", + "integrity": "sha512-13cXxKFsPJIJKzUqrU5XB1mc0xbUgYsRcdH6/rB8c4NMEbWGdtD4QoK9ShN31TZdePpD4k416Ur7p+deMIxnnA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.6.tgz", + "integrity": "sha512-Ti+NMHEjTNktCVxNjeWbYgmZvA2AqMMI2AMlzkXsU7W4pXCMhrryAmAIoo+7YdJbsx01JQWYVxGe62G6DoCLaA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-musl": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.6.tgz", + "integrity": "sha512-OHoC6gO7XfjstgwR+z6UHKlvhqJfyMtNaJidjx3sEcfaDwS7R2lqR5AABi8PuilGgi0BO0O0sCXqLlpp3a0emQ==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.6.tgz", + "integrity": "sha512-zHZxPGkUlpfNJCboUrFqwlwEX5vI9LSN70b8XEb0DYzzlrZyCyOi7hwDp/+3Urm9AB7YCAJkgR5Sp1XBVjHdfQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.6.tgz", + "integrity": "sha512-K/Y8lYGTwTpv5ME8PSJxwxLolaDRdVy+lOd9yMRMiQE0BLUhtxtCWC9ypV42uh9WpLjoaD0joOsB9Q6mbrSGJg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.6.tgz", + "integrity": "sha512-U6LtxEUrjBL2tpW+Kr1nHCSJWNeIed7U7l5o7FiKGGwGgIlFi4UHDiLI6TQ2lxi20fAU33CsruV3U0GuzMlXIw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-ia32-msvc": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.6.tgz", + "integrity": "sha512-eEBeAqpCfhdPSlCZCayjCiyIllVqy4tcqvm1xmg3BgJG0G5ITiMM4Cw2WVeRSgWDJqQGRyyb+q8Y2ltzhXOWsQ==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-x64-msvc": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.6.tgz", + "integrity": "sha512-OrZs94AuO3ZS5tnqlyPRNgfWvboXaDQCi5aXGve3o3C+Sj0ctMUV9+Do+0zMvvLRumR8E0PTWKvtz9n5vzIsWw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@npmcli/fs": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", + "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", + "dev": true, + "dependencies": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + } + }, + "node_modules/@npmcli/fs/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/fs/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "deprecated": "This functionality has been moved to @npmcli/fs", + "dev": true, + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/package-json": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-2.0.0.tgz", + "integrity": "sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA==", + "dev": true, + "dependencies": { + "json-parse-even-better-errors": "^2.3.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/@remix-run/dev": { + "name": "@vercel/remix-run-dev", + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/@vercel/remix-run-dev/-/remix-run-dev-1.17.0.tgz", + "integrity": "sha512-S71dx9sxHi/9Ery9za+ryQYNq5rEA/OeWFaKalHsgA7jYhiJC2U2iP9lV4m251oLXp3K6J8gwY0zF1CWmA7ANA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.21.8", + "@babel/generator": "^7.21.5", + "@babel/parser": "^7.21.8", + "@babel/plugin-syntax-jsx": "^7.21.4", + "@babel/plugin-syntax-typescript": "^7.21.4", + "@babel/preset-env": "^7.21.5", + "@babel/preset-typescript": "^7.21.5", + "@babel/traverse": "^7.21.5", + "@babel/types": "^7.21.5", + "@npmcli/package-json": "^2.0.0", + "@remix-run/server-runtime": "1.17.0", + "@vanilla-extract/integration": "^6.2.0", + "arg": "^5.0.1", + "cacache": "^15.0.5", + "chalk": "^4.1.2", + "chokidar": "^3.5.1", + "dotenv": "^16.0.0", + "esbuild": "0.17.6", + "esbuild-plugin-polyfill-node": "^0.2.0", + "execa": "5.1.1", + "exit-hook": "2.2.1", + "express": "^4.17.1", + "fast-glob": "3.2.11", + "fs-extra": "^10.0.0", + "get-port": "^5.1.1", + "gunzip-maybe": "^1.4.2", + "inquirer": "^8.2.1", + "jsesc": "3.0.2", + "json5": "^2.2.2", + "lodash": "^4.17.21", + "lodash.debounce": "^4.0.8", + "lru-cache": "^7.14.1", + "minimatch": "^9.0.0", + "node-fetch": "^2.6.9", + "ora": "^5.4.1", + "picomatch": "^2.3.1", + "postcss": "^8.4.19", + "postcss-discard-duplicates": "^5.1.0", + "postcss-load-config": "^4.0.1", + "postcss-modules": "^6.0.0", + "prettier": "^2.7.1", + "pretty-ms": "^7.0.1", + "proxy-agent": "^5.0.0", + "react-refresh": "^0.14.0", + "recast": "^0.21.5", + "remark-frontmatter": "4.0.1", + "remark-mdx-frontmatter": "^1.0.1", + "semver": "^7.3.7", + "sort-package-json": "^1.55.0", + "tar-fs": "^2.1.1", + "tsconfig-paths": "^4.0.0", + "ws": "^7.4.5", + "xdm": "^2.0.0" + }, + "bin": { + "remix": "dist/cli.js" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@remix-run/serve": "^1.17.0" + }, + "peerDependenciesMeta": { + "@remix-run/serve": { + "optional": true + } + } + }, + "node_modules/@remix-run/dev/node_modules/esbuild": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.6.tgz", + "integrity": "sha512-TKFRp9TxrJDdRWfSsSERKEovm6v30iHnrjlcGhLBOtReE28Yp1VSBRfO3GTaOFMoxsNerx4TjrhzSuma9ha83Q==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.17.6", + "@esbuild/android-arm64": "0.17.6", + "@esbuild/android-x64": "0.17.6", + "@esbuild/darwin-arm64": "0.17.6", + "@esbuild/darwin-x64": "0.17.6", + "@esbuild/freebsd-arm64": "0.17.6", + "@esbuild/freebsd-x64": "0.17.6", + "@esbuild/linux-arm": "0.17.6", + "@esbuild/linux-arm64": "0.17.6", + "@esbuild/linux-ia32": "0.17.6", + "@esbuild/linux-loong64": "0.17.6", + "@esbuild/linux-mips64el": "0.17.6", + "@esbuild/linux-ppc64": "0.17.6", + "@esbuild/linux-riscv64": "0.17.6", + "@esbuild/linux-s390x": "0.17.6", + "@esbuild/linux-x64": "0.17.6", + "@esbuild/netbsd-x64": "0.17.6", + "@esbuild/openbsd-x64": "0.17.6", + "@esbuild/sunos-x64": "0.17.6", + "@esbuild/win32-arm64": "0.17.6", + "@esbuild/win32-ia32": "0.17.6", + "@esbuild/win32-x64": "0.17.6" + } + }, + "node_modules/@remix-run/dev/node_modules/postcss": { + "version": "8.4.24", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", + "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/@remix-run/dev/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@remix-run/dev/node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@remix-run/router": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.6.3.tgz", + "integrity": "sha512-EXJysQ7J3veRECd0kZFQwYYd5sJMcq2O/m60zu1W2l3oVQ9xtub8jTOtYRE0+M2iomyG/W3Ps7+vp2kna0C27Q==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@remix-run/server-runtime": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/@remix-run/server-runtime/-/server-runtime-1.17.0.tgz", + "integrity": "sha512-xcUXaOibfIFZlvuyuWouz/t3fYhHCqRoKeGxQFGd1BvQBCmPaiau7B1Ao4aJFKyY7eU/L35KCaGzZBTdIF+d5w==", + "dev": true, + "dependencies": { + "@remix-run/router": "1.6.3", + "@web3-storage/multipart-parser": "^1.0.0", + "cookie": "^0.4.1", + "set-cookie-parser": "^2.4.8", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@rollup/pluginutils": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", + "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", + "dev": true, + "dependencies": { + "estree-walker": "^2.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/@sinclair/typebox": { + "version": "0.25.24", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", + "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "dev": true + }, + "node_modules/@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/@swc/helpers": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", + "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@szmarczak/http-timer": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", + "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "dev": true, + "dependencies": { + "defer-to-connect": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@ts-morph/common": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/@ts-morph/common/-/common-0.11.1.tgz", + "integrity": "sha512-7hWZS0NRpEsNV8vWJzg7FEz6V8MaLNeJOmwmghqUXTpzk16V1LLZhdo+4QvE/+zv4cVci0OviuJFnqhEfoV3+g==", + "dev": true, + "dependencies": { + "fast-glob": "^3.2.7", + "minimatch": "^3.0.4", + "mkdirp": "^1.0.4", + "path-browserify": "^1.0.1" + } + }, + "node_modules/@ts-morph/common/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@ts-morph/common/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true + }, + "node_modules/@types/acorn": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz", + "integrity": "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==", + "dev": true, + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/@types/cacheable-request": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", + "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", + "dev": true, + "dependencies": { + "@types/http-cache-semantics": "*", + "@types/keyv": "^3.1.4", + "@types/node": "*", + "@types/responselike": "^1.0.0" + } + }, + "node_modules/@types/debug": { + "version": "4.1.8", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.8.tgz", + "integrity": "sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ==", + "dev": true, + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", + "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", + "dev": true + }, + "node_modules/@types/estree-jsx": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-0.0.1.tgz", + "integrity": "sha512-gcLAYiMfQklDCPjQegGn0TBAn9it05ISEsEhlKQUddIk7o2XDokOcTN7HBO8tznM0D9dGezvHEfRZBfZf6me0A==", + "dev": true, + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "node_modules/@types/hast": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.4.tgz", + "integrity": "sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==", + "dev": true, + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/http-cache-semantics": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", + "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==", + "dev": true + }, + "node_modules/@types/json-schema": { + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", + "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", + "dev": true + }, + "node_modules/@types/keyv": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", + "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/mdast": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.11.tgz", + "integrity": "sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==", + "dev": true, + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/mdurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.2.tgz", + "integrity": "sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==", + "dev": true + }, + "node_modules/@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", + "dev": true + }, + "node_modules/@types/ms": { + "version": "0.7.31", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz", + "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==", + "dev": true + }, + "node_modules/@types/node": { + "version": "20.3.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.1.tgz", + "integrity": "sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg==", + "dev": true + }, + "node_modules/@types/node-fetch": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", + "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", + "dev": true, + "dependencies": { + "@types/node": "*", + "form-data": "^3.0.0" + } + }, + "node_modules/@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", + "dev": true + }, + "node_modules/@types/react": { + "version": "18.2.13", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.13.tgz", + "integrity": "sha512-vJ+zElvi/Zn9cVXB5slX2xL8PZodPCwPRDpittQdw43JR2AJ5k3vKdgJJyneV/cYgIbLQUwXa9JVDvUZXGba+Q==", + "dev": true, + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.2.6", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.6.tgz", + "integrity": "sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==", + "dev": true, + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/responselike": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", + "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/scheduler": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", + "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==", + "dev": true + }, + "node_modules/@types/unist": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", + "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==", + "dev": true + }, + "node_modules/@vanilla-extract/babel-plugin-debug-ids": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@vanilla-extract/babel-plugin-debug-ids/-/babel-plugin-debug-ids-1.0.3.tgz", + "integrity": "sha512-vm4jYu1xhSa6ofQ9AhIpR3DkAp4c+eoR1Rpm8/TQI4DmWbmGbOjYRcqV0aWsfaIlNhN4kFuxFMKBNN9oG6iRzA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.20.7" + } + }, + "node_modules/@vanilla-extract/css": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/@vanilla-extract/css/-/css-1.12.0.tgz", + "integrity": "sha512-TEttZfnqTRtwgVYiBWQSGGUiVaYWReHp59DsavITEvh4TpJNifZFGhBznHx4wQFEsyio6xA513jps4tmqR6zmw==", + "dev": true, + "dependencies": { + "@emotion/hash": "^0.9.0", + "@vanilla-extract/private": "^1.0.3", + "ahocorasick": "1.0.2", + "chalk": "^4.1.1", + "css-what": "^6.1.0", + "cssesc": "^3.0.0", + "csstype": "^3.0.7", + "deep-object-diff": "^1.1.9", + "deepmerge": "^4.2.2", + "media-query-parser": "^2.0.2", + "outdent": "^0.8.0" + } + }, + "node_modules/@vanilla-extract/integration": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/@vanilla-extract/integration/-/integration-6.2.1.tgz", + "integrity": "sha512-+xYJz07G7TFAMZGrOqArOsURG+xcYvqctujEkANjw2McCBvGEK505RxQqOuNiA9Mi9hgGdNp2JedSa94f3eoLg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.20.7", + "@babel/plugin-syntax-typescript": "^7.20.0", + "@vanilla-extract/babel-plugin-debug-ids": "^1.0.2", + "@vanilla-extract/css": "^1.10.0", + "esbuild": "0.17.6", + "eval": "0.1.6", + "find-up": "^5.0.0", + "javascript-stringify": "^2.0.1", + "lodash": "^4.17.21", + "mlly": "^1.1.0", + "outdent": "^0.8.0", + "vite": "^4.1.4", + "vite-node": "^0.28.5" + } + }, + "node_modules/@vanilla-extract/integration/node_modules/esbuild": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.6.tgz", + "integrity": "sha512-TKFRp9TxrJDdRWfSsSERKEovm6v30iHnrjlcGhLBOtReE28Yp1VSBRfO3GTaOFMoxsNerx4TjrhzSuma9ha83Q==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.17.6", + "@esbuild/android-arm64": "0.17.6", + "@esbuild/android-x64": "0.17.6", + "@esbuild/darwin-arm64": "0.17.6", + "@esbuild/darwin-x64": "0.17.6", + "@esbuild/freebsd-arm64": "0.17.6", + "@esbuild/freebsd-x64": "0.17.6", + "@esbuild/linux-arm": "0.17.6", + "@esbuild/linux-arm64": "0.17.6", + "@esbuild/linux-ia32": "0.17.6", + "@esbuild/linux-loong64": "0.17.6", + "@esbuild/linux-mips64el": "0.17.6", + "@esbuild/linux-ppc64": "0.17.6", + "@esbuild/linux-riscv64": "0.17.6", + "@esbuild/linux-s390x": "0.17.6", + "@esbuild/linux-x64": "0.17.6", + "@esbuild/netbsd-x64": "0.17.6", + "@esbuild/openbsd-x64": "0.17.6", + "@esbuild/sunos-x64": "0.17.6", + "@esbuild/win32-arm64": "0.17.6", + "@esbuild/win32-ia32": "0.17.6", + "@esbuild/win32-x64": "0.17.6" + } + }, + "node_modules/@vanilla-extract/private": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@vanilla-extract/private/-/private-1.0.3.tgz", + "integrity": "sha512-17kVyLq3ePTKOkveHxXuIJZtGYs+cSoev7BlP+Lf4916qfDhk/HBjvlYDe8egrea7LNPHKwSZJK/bzZC+Q6AwQ==", + "dev": true + }, + "node_modules/@vercel/build-utils": { + "version": "6.7.5", + "resolved": "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-6.7.5.tgz", + "integrity": "sha512-nzglYEz9BvZH0lptfTtTVDDD3Dyn31gnBGChOUT7J1jkzlMT1IReuysgJPisaWk4v92Ax5SpZL35I0lOQdfKwQ==", + "dev": true + }, + "node_modules/@vercel/error-utils": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@vercel/error-utils/-/error-utils-1.0.10.tgz", + "integrity": "sha512-nsKy2sy+pjUWyKI1V/XXKspVzHMYgSalmj5+EsKWFXZbnNZicqxNtMR94J8Hs7SB4TQxh0s4KhczJtL59AVGMg==", + "dev": true + }, + "node_modules/@vercel/gatsby-plugin-vercel-analytics": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-analytics/-/gatsby-plugin-vercel-analytics-1.0.10.tgz", + "integrity": "sha512-v329WHdtIce+y7oAmaWRvEx59Xfo0FxlQqK4BJG0u6VWYoKWPaflohDAiehIZf/YHCRVb59ZxnzmMOcm/LR8YQ==", + "dev": true, + "dependencies": { + "@babel/runtime": "7.12.1", + "web-vitals": "0.2.4" + } + }, + "node_modules/@vercel/gatsby-plugin-vercel-builder": { + "version": "1.3.10", + "resolved": "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.10.tgz", + "integrity": "sha512-LtmjAUrH+1G4ryyjCCqITvPivEFb6qby7rVGRplb+rtI5RrT/igqz95FrAC70+xpSVsqz4nu3j15NkEIR3woog==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "0.25.24", + "@vercel/build-utils": "6.7.5", + "@vercel/node": "2.15.2", + "@vercel/routing-utils": "2.2.1", + "esbuild": "0.14.47", + "etag": "1.8.1", + "fs-extra": "11.1.0" + } + }, + "node_modules/@vercel/gatsby-plugin-vercel-builder/node_modules/fs-extra": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", + "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/@vercel/go": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@vercel/go/-/go-2.5.1.tgz", + "integrity": "sha512-yZGzzGmVXt2Rsy1cR0EDbst0fMhdELQY8c3jXy6/FTWJFG1e/40JYksu+WiRCxRBp8e7zfcxMrv0dN8JWRmbPQ==", + "dev": true + }, + "node_modules/@vercel/hydrogen": { + "version": "0.0.64", + "resolved": "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-0.0.64.tgz", + "integrity": "sha512-1rzFB664G6Yzp7j4ezW9hvVjqnaU2BhyUdhchbsxtRuxkMpGgPBZKhjzRQHFvlmkz37XLC658T5Nb1P91b4sBw==", + "dev": true + }, + "node_modules/@vercel/next": { + "version": "3.8.6", + "resolved": "https://registry.npmjs.org/@vercel/next/-/next-3.8.6.tgz", + "integrity": "sha512-q+BxVLAfKFjTcak+z3U0SvYpgsnF8spu3Wz0GdRSVHiZpd1TtmIIp5r5RT5WVJLt4NNgmD4KxLNbvXhwjxOFKA==", + "dev": true + }, + "node_modules/@vercel/nft": { + "version": "0.22.5", + "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.22.5.tgz", + "integrity": "sha512-mug57Wd1BL7GMj9gXMgMeKUjdqO0e4u+0QLPYMFE1rwdJ+55oPy6lp3nIBCS8gOvigT62UI4QKUL2sGqcoW4Hw==", + "dev": true, + "dependencies": { + "@mapbox/node-pre-gyp": "^1.0.5", + "@rollup/pluginutils": "^4.0.0", + "acorn": "^8.6.0", + "async-sema": "^3.1.1", + "bindings": "^1.4.0", + "estree-walker": "2.0.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.2", + "node-gyp-build": "^4.2.2", + "resolve-from": "^5.0.0" + }, + "bin": { + "nft": "out/cli.js" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@vercel/node": { + "version": "2.15.2", + "resolved": "https://registry.npmjs.org/@vercel/node/-/node-2.15.2.tgz", + "integrity": "sha512-1Dn4hdQY/ErHXOB0+h3I0zIlqAb6/2LRBi+8Od+MYG8ooGKkTsK+j9IPWVBWn6ycBsM0eeNTIhqgYSGTYbMjMw==", + "dev": true, + "dependencies": { + "@edge-runtime/node-utils": "2.0.3", + "@edge-runtime/primitives": "2.1.2", + "@edge-runtime/vm": "3.0.1", + "@types/node": "14.18.33", + "@types/node-fetch": "2.6.3", + "@vercel/build-utils": "6.7.5", + "@vercel/error-utils": "1.0.10", + "@vercel/static-config": "2.0.17", + "async-listen": "3.0.0", + "edge-runtime": "2.4.3", + "esbuild": "0.14.47", + "exit-hook": "2.2.1", + "node-fetch": "2.6.9", + "path-to-regexp": "6.2.1", + "ts-morph": "12.0.0", + "ts-node": "10.9.1", + "typescript": "4.9.5" + } + }, + "node_modules/@vercel/node/node_modules/@edge-runtime/primitives": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-2.1.2.tgz", + "integrity": "sha512-SR04SMDybALlhIYIi0hiuEUwIl0b7Sn+RKwQkX6hydg4+AKMzBNDFhj2nqHDD1+xkHArV9EhmJIb6iGjShwSzg==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@vercel/node/node_modules/@edge-runtime/vm": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.1.tgz", + "integrity": "sha512-69twXLIcqVx0iNlc1vFqnXgka2CZi2c/QBAmMzXBk0M6mPG+ICCBh2dd+cv1K+HW2pfLuSW+EskkFXWGeCf1Vw==", + "dev": true, + "dependencies": { + "@edge-runtime/primitives": "3.0.1" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@vercel/node/node_modules/@edge-runtime/vm/node_modules/@edge-runtime/primitives": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.1.tgz", + "integrity": "sha512-l5NNDcPkKW4N6qRmB8zzpCF6uRW1S808V/zm72z7b/aWwZUYbmEPPkzyhGAW0aQxLU1pGdZ8u2gNjamdaU6RXw==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@vercel/node/node_modules/@types/node": { + "version": "14.18.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.33.tgz", + "integrity": "sha512-qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg==", + "dev": true + }, + "node_modules/@vercel/node/node_modules/edge-runtime": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.4.3.tgz", + "integrity": "sha512-Amv/P+OJhxopvoVXFr7UXAKheBpdLeCcdR5Vw4GSdNFDWVny9sioQbczjEKPLER5WsMXl17P+llS011Xftducw==", + "dev": true, + "dependencies": { + "@edge-runtime/format": "2.1.0", + "@edge-runtime/vm": "3.0.3", + "async-listen": "3.0.0", + "mri": "1.2.0", + "picocolors": "1.0.0", + "pretty-bytes": "5.6.0", + "pretty-ms": "7.0.1", + "signal-exit": "4.0.2", + "time-span": "4.0.0" + }, + "bin": { + "edge-runtime": "dist/cli/index.js" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@vercel/node/node_modules/edge-runtime/node_modules/@edge-runtime/primitives": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.3.tgz", + "integrity": "sha512-YnfMWMRQABAH8IsnFMJWMW+SyB4ZeYBPnR7V0aqdnew7Pq60cbH5DyFjS/FhiLwvHQk9wBREmXD7PP0HooEQ1A==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@vercel/node/node_modules/edge-runtime/node_modules/@edge-runtime/vm": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.3.tgz", + "integrity": "sha512-SPfI1JeIRNs/4EEE2Oc0X6gG3RqjD1TnKu2lwmwFXq0435xgZGKhc3UiKkYAdoMn2dNFD73nlabMKHBRoMRpxg==", + "dev": true, + "dependencies": { + "@edge-runtime/primitives": "3.0.3" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@vercel/node/node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/@vercel/python": { + "version": "3.1.60", + "resolved": "https://registry.npmjs.org/@vercel/python/-/python-3.1.60.tgz", + "integrity": "sha512-1aYinyTfejS8Us+sOum+RQPYcre0vF3XoL7ohL170ZCcHA0l35qV0b1slGAmLt3pqaHKYy3g/nkzUhuR8XXIrQ==", + "dev": true + }, + "node_modules/@vercel/redwood": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/@vercel/redwood/-/redwood-1.1.15.tgz", + "integrity": "sha512-j0XaXe4ZpGVHG7XQSmZ3kza6s+ZtOBfRhnSxA70yCkrvPNN3tZgF3fevSKXizfL9fzVDd7Tdj++SCGWMdGfsyA==", + "dev": true, + "dependencies": { + "@vercel/nft": "0.22.5", + "@vercel/routing-utils": "2.2.1", + "semver": "6.1.1" + } + }, + "node_modules/@vercel/remix-builder": { + "version": "1.8.14", + "resolved": "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-1.8.14.tgz", + "integrity": "sha512-4CnYxCv6rgRxyXGnpGySf+K2rihLgTkMKN9pYJKQJh/VmlBcxqYP9tndDEH8sYtDsdUZuSfuX3ecajGuqb/wPA==", + "dev": true, + "dependencies": { + "@remix-run/dev": "npm:@vercel/remix-run-dev@1.17.0", + "@vercel/build-utils": "6.7.5", + "@vercel/nft": "0.22.5", + "@vercel/static-config": "2.0.17", + "path-to-regexp": "6.2.1", + "semver": "7.3.8", + "ts-morph": "12.0.0" + } + }, + "node_modules/@vercel/remix-builder/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@vercel/remix-builder/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@vercel/routing-utils": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@vercel/routing-utils/-/routing-utils-2.2.1.tgz", + "integrity": "sha512-kzMZsvToDCDskNRZD71B9UAgstec7ujmlGH8cBEo6F/07VaFeji6GQdgd6Zwnrj+TvzQBggKoPQR64VkVY8Lzw==", + "dev": true, + "dependencies": { + "path-to-regexp": "6.1.0" + }, + "optionalDependencies": { + "ajv": "^6.0.0" + } + }, + "node_modules/@vercel/routing-utils/node_modules/path-to-regexp": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.1.0.tgz", + "integrity": "sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==", + "dev": true + }, + "node_modules/@vercel/ruby": { + "version": "1.3.76", + "resolved": "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.76.tgz", + "integrity": "sha512-J8I0B7wAn8piGoPhBroBfJWgMEJTMEL/2o8MCoCyWdaE7MRtpXhI10pj8IvcUvAECoGJ+SM1Pm+SvBqtbtZ5FQ==", + "dev": true + }, + "node_modules/@vercel/static-build": { + "version": "1.3.37", + "resolved": "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.3.37.tgz", + "integrity": "sha512-AkmWV8sqXUqkVj4F7vt7LZ9cRfO57U7he23l3xvykD/xV2ufsuLxwgIS9idM5AeqVh7juJNuTJq+ObIht6OgLw==", + "dev": true, + "dependencies": { + "@vercel/gatsby-plugin-vercel-analytics": "1.0.10", + "@vercel/gatsby-plugin-vercel-builder": "1.3.10" + } + }, + "node_modules/@vercel/static-config": { + "version": "2.0.17", + "resolved": "https://registry.npmjs.org/@vercel/static-config/-/static-config-2.0.17.tgz", + "integrity": "sha512-2f50OTVrN07x7pH+XNW0e7cj7T+Ufg+19+a2N3/XZBjQmV+FaMlmSLiaQ4tBxp2H8lWWHzENua7ZSSQPtRZ3/A==", + "dev": true, + "dependencies": { + "ajv": "8.6.3", + "json-schema-to-ts": "1.6.4", + "ts-morph": "12.0.0" + } + }, + "node_modules/@vercel/static-config/node_modules/ajv": { + "version": "8.6.3", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.6.3.tgz", + "integrity": "sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@vercel/static-config/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@vue/compiler-core": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.4.tgz", + "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==", + "peer": true, + "dependencies": { + "@babel/parser": "^7.21.3", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "source-map-js": "^1.0.2" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz", + "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==", + "peer": true, + "dependencies": { + "@vue/compiler-core": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz", + "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==", + "peer": true, + "dependencies": { + "@babel/parser": "^7.20.15", + "@vue/compiler-core": "3.3.4", + "@vue/compiler-dom": "3.3.4", + "@vue/compiler-ssr": "3.3.4", + "@vue/reactivity-transform": "3.3.4", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.0", + "postcss": "^8.1.10", + "source-map-js": "^1.0.2" + } + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz", + "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==", + "peer": true, + "dependencies": { + "@vue/compiler-dom": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "node_modules/@vue/reactivity": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.4.tgz", + "integrity": "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==", + "peer": true, + "dependencies": { + "@vue/shared": "3.3.4" + } + }, + "node_modules/@vue/reactivity-transform": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz", + "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==", + "peer": true, + "dependencies": { + "@babel/parser": "^7.20.15", + "@vue/compiler-core": "3.3.4", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.0" + } + }, + "node_modules/@vue/runtime-core": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.4.tgz", + "integrity": "sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==", + "peer": true, + "dependencies": { + "@vue/reactivity": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz", + "integrity": "sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==", + "peer": true, + "dependencies": { + "@vue/runtime-core": "3.3.4", + "@vue/shared": "3.3.4", + "csstype": "^3.1.1" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.4.tgz", + "integrity": "sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==", + "peer": true, + "dependencies": { + "@vue/compiler-ssr": "3.3.4", + "@vue/shared": "3.3.4" + }, + "peerDependencies": { + "vue": "3.3.4" + } + }, + "node_modules/@vue/shared": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz", + "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==", + "peer": true + }, + "node_modules/@web3-storage/multipart-parser": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@web3-storage/multipart-parser/-/multipart-parser-1.0.0.tgz", + "integrity": "sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw==", + "dev": true + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", + "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ahocorasick": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/ahocorasick/-/ahocorasick-1.0.2.tgz", + "integrity": "sha512-hCOfMzbFx5IDutmWLAt6MZwOUjIfSM9G9FyVxytmE4Rs/5YDPWQrD/+IR1w+FweD9H2oOZEnv36TmkjhNURBVA==", + "dev": true + }, + "node_modules/ai": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/ai/-/ai-2.1.9.tgz", + "integrity": "sha512-PiDWO/5lFvnbEziJjl+4CE44jg4weknJuW5VZAQQ4PDyFnDjxoCMkSJ95zEatX3qrYZfRP6zXHkmy+/OqwclfA==", + "dependencies": { + "eventsource-parser": "1.0.0", + "nanoid": "^3.3.6", + "sswr": "^1.10.0", + "swr": "2.1.5", + "swrv": "1.0.3" + }, + "engines": { + "node": ">=14.6" + }, + "peerDependencies": { + "react": "^18.2.0", + "svelte": "^3.29.0", + "vue": "^3.3.4" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "svelte": { + "optional": true + }, + "vue": { + "optional": true + } + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "optional": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", + "dev": true + }, + "node_modules/are-we-there-yet": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", + "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", + "dev": true, + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ast-types": { + "version": "0.13.4", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", + "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", + "dev": true, + "dependencies": { + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/astring": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/astring/-/astring-1.8.6.tgz", + "integrity": "sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==", + "dev": true, + "bin": { + "astring": "bin/astring" + } + }, + "node_modules/async-listen": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/async-listen/-/async-listen-3.0.0.tgz", + "integrity": "sha512-V+SsTpDqkrWTimiotsyl33ePSjA5/KrithwupuvJ6ztsqPvGv6ge4OredFhPffVXiLN/QUWvE0XcqJaYgt6fOg==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, + "node_modules/async-sema": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz", + "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==", + "dev": true + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.3.tgz", + "integrity": "sha512-bM3gHc337Dta490gg+/AseNB9L4YLHxq1nGKZZSHbhXv4aTYU2MD2cjza1Ru4S6975YLTaL1K8uJf6ukJhhmtw==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-define-polyfill-provider": "^0.4.0", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.1.tgz", + "integrity": "sha512-ikFrZITKg1xH6pLND8zT14UPgjKHiGLqex7rGEZCH2EvhsneJaJPemmpQaIZV5AL03II+lXylw3UmddDK8RU5Q==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.4.0", + "core-js-compat": "^3.30.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.0.tgz", + "integrity": "sha512-hDJtKjMLVa7Z+LwnTCxoDLQj6wdc+B8dun7ayF2fYieI6OzfuvcLMB32ihJZ4UhCBwNYGl5bg/x/P9cMdnkc2g==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.4.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/bail": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserify-zlib": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz", + "integrity": "sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==", + "dev": true, + "dependencies": { + "pako": "~0.2.0" + } + }, + "node_modules/browserslist": { + "version": "4.21.9", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", + "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001503", + "electron-to-chromium": "^1.4.431", + "node-releases": "^2.0.12", + "update-browserslist-db": "^1.0.11" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/cacache": { + "version": "15.3.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", + "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", + "dev": true, + "dependencies": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/cacache/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cacheable-lookup": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", + "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "dev": true, + "engines": { + "node": ">=10.6.0" + } + }, + "node_modules/cacheable-request": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", + "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", + "dev": true, + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^6.0.1", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cacheable-request/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cacheable-request/node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001509", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001509.tgz", + "integrity": "sha512-2uDDk+TRiTX5hMcUYT/7CSyzMZxjfGu0vAUjS2g0LSD8UoXOv0LtpH4LxGMemsiPq6LCVIUjNwVM0erkOkGCDA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/character-entities": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-legacy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-reference-invalid": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", + "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-spinners": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.0.tgz", + "integrity": "sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" + }, + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-response": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "dev": true, + "dependencies": { + "mimic-response": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/code-block-writer": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-10.1.1.tgz", + "integrity": "sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==", + "dev": true + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true, + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", + "dev": true + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-hrtime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-3.0.0.tgz", + "integrity": "sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/cookie": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", + "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "node_modules/core-js-compat": { + "version": "3.31.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.31.0.tgz", + "integrity": "sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "node_modules/data-uri-to-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz", + "integrity": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/deasync": { + "version": "0.1.28", + "resolved": "https://registry.npmjs.org/deasync/-/deasync-0.1.28.tgz", + "integrity": "sha512-QqLF6inIDwiATrfROIyQtwOQxjZuek13WRYZ7donU5wJPLoP67MnYxA6QtqdvdBy2mMqv5m3UefBVdJjvevOYg==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "dependencies": { + "bindings": "^1.5.0", + "node-addon-api": "^1.7.1" + }, + "engines": { + "node": ">=0.11.0" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decode-named-character-reference": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", + "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", + "dev": true, + "dependencies": { + "character-entities": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dev": true, + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/deep-object-diff": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/deep-object-diff/-/deep-object-diff-1.1.9.tgz", + "integrity": "sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==", + "dev": true + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "dev": true, + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/degenerator": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-3.0.4.tgz", + "integrity": "sha512-Z66uPeBfHZAHVmue3HPfyKu2Q0rC2cRxbTOsvmU/po5fvvcx27W4mIu9n0PUlQih4oUYvcG1BsbtVv8x7KDOSw==", + "dev": true, + "dependencies": { + "ast-types": "^0.13.2", + "escodegen": "^1.8.1", + "esprima": "^4.0.0", + "vm2": "^3.9.17" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "dev": true + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-indent": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-libc": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", + "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dotenv": { + "version": "16.3.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", + "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/motdotla/dotenv?sponsor=1" + } + }, + "node_modules/duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/duplexify/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/duplexify/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/duplexify/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/edge-runtime": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.4.4.tgz", + "integrity": "sha512-uq1YdIxkMDsBYLdSSp/w62PciCL46ic4m1Z/2G6N8RcAPI8p35O8u6hJQT83j28Dnt4U5iyvmwFMYouHMK51uA==", + "dev": true, + "dependencies": { + "@edge-runtime/format": "2.1.0", + "@edge-runtime/vm": "3.0.3", + "async-listen": "3.0.0", + "mri": "1.2.0", + "picocolors": "1.0.0", + "pretty-bytes": "5.6.0", + "pretty-ms": "7.0.1", + "signal-exit": "4.0.2", + "time-span": "4.0.0" + }, + "bin": { + "edge-runtime": "dist/cli/index.js" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.4.445", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.445.tgz", + "integrity": "sha512-++DB+9VK8SBJwC+X1zlMfJ1tMA3F0ipi39GdEp+x3cV2TyBihqAgad8cNMWtLDEkbH39nlDQP7PfGrDr3Dr7HA==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/esbuild": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.47.tgz", + "integrity": "sha512-wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "esbuild-android-64": "0.14.47", + "esbuild-android-arm64": "0.14.47", + "esbuild-darwin-64": "0.14.47", + "esbuild-darwin-arm64": "0.14.47", + "esbuild-freebsd-64": "0.14.47", + "esbuild-freebsd-arm64": "0.14.47", + "esbuild-linux-32": "0.14.47", + "esbuild-linux-64": "0.14.47", + "esbuild-linux-arm": "0.14.47", + "esbuild-linux-arm64": "0.14.47", + "esbuild-linux-mips64le": "0.14.47", + "esbuild-linux-ppc64le": "0.14.47", + "esbuild-linux-riscv64": "0.14.47", + "esbuild-linux-s390x": "0.14.47", + "esbuild-netbsd-64": "0.14.47", + "esbuild-openbsd-64": "0.14.47", + "esbuild-sunos-64": "0.14.47", + "esbuild-windows-32": "0.14.47", + "esbuild-windows-64": "0.14.47", + "esbuild-windows-arm64": "0.14.47" + } + }, + "node_modules/esbuild-android-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.47.tgz", + "integrity": "sha512-R13Bd9+tqLVFndncMHssZrPWe6/0Kpv2/dt4aA69soX4PRxlzsVpCvoJeFE8sOEoeVEiBkI0myjlkDodXlHa0g==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-android-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.47.tgz", + "integrity": "sha512-OkwOjj7ts4lBp/TL6hdd8HftIzOy/pdtbrNA4+0oVWgGG64HrdVzAF5gxtJufAPOsEjkyh1oIYvKAUinKKQRSQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-darwin-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.47.tgz", + "integrity": "sha512-R6oaW0y5/u6Eccti/TS6c/2c1xYTb1izwK3gajJwi4vIfNs1s8B1dQzI1UiC9T61YovOQVuePDcfqHLT3mUZJA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-darwin-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.47.tgz", + "integrity": "sha512-seCmearlQyvdvM/noz1L9+qblC5vcBrhUaOoLEDDoLInF/VQ9IkobGiLlyTPYP5dW1YD4LXhtBgOyevoIHGGnw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-freebsd-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.47.tgz", + "integrity": "sha512-ZH8K2Q8/Ux5kXXvQMDsJcxvkIwut69KVrYQhza/ptkW50DC089bCVrJZZ3sKzIoOx+YPTrmsZvqeZERjyYrlvQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-freebsd-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.47.tgz", + "integrity": "sha512-ZJMQAJQsIOhn3XTm7MPQfCzEu5b9STNC+s90zMWe2afy9EwnHV7Ov7ohEMv2lyWlc2pjqLW8QJnz2r0KZmeAEQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-32": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.47.tgz", + "integrity": "sha512-FxZOCKoEDPRYvq300lsWCTv1kcHgiiZfNrPtEhFAiqD7QZaXrad8LxyJ8fXGcWzIFzRiYZVtB3ttvITBvAFhKw==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.47.tgz", + "integrity": "sha512-nFNOk9vWVfvWYF9YNYksZptgQAdstnDCMtR6m42l5Wfugbzu11VpMCY9XrD4yFxvPo9zmzcoUL/88y0lfJZJJw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-arm": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.47.tgz", + "integrity": "sha512-ZGE1Bqg/gPRXrBpgpvH81tQHpiaGxa8c9Rx/XOylkIl2ypLuOcawXEAo8ls+5DFCcRGt/o3sV+PzpAFZobOsmA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.47.tgz", + "integrity": "sha512-ywfme6HVrhWcevzmsufjd4iT3PxTfCX9HOdxA7Hd+/ZM23Y9nXeb+vG6AyA6jgq/JovkcqRHcL9XwRNpWG6XRw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-mips64le": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.47.tgz", + "integrity": "sha512-mg3D8YndZ1LvUiEdDYR3OsmeyAew4MA/dvaEJxvyygahWmpv1SlEEnhEZlhPokjsUMfRagzsEF/d/2XF+kTQGg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-ppc64le": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.47.tgz", + "integrity": "sha512-WER+f3+szmnZiWoK6AsrTKGoJoErG2LlauSmk73LEZFQ/iWC+KhhDsOkn1xBUpzXWsxN9THmQFltLoaFEH8F8w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-riscv64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.47.tgz", + "integrity": "sha512-1fI6bP3A3rvI9BsaaXbMoaOjLE3lVkJtLxsgLHqlBhLlBVY7UqffWBvkrX/9zfPhhVMd9ZRFiaqXnB1T7BsL2g==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-s390x": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.47.tgz", + "integrity": "sha512-eZrWzy0xFAhki1CWRGnhsHVz7IlSKX6yT2tj2Eg8lhAwlRE5E96Hsb0M1mPSE1dHGpt1QVwwVivXIAacF/G6mw==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-netbsd-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.47.tgz", + "integrity": "sha512-Qjdjr+KQQVH5Q2Q1r6HBYswFTToPpss3gqCiSw2Fpq/ua8+eXSQyAMG+UvULPqXceOwpnPo4smyZyHdlkcPppQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-openbsd-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.47.tgz", + "integrity": "sha512-QpgN8ofL7B9z8g5zZqJE+eFvD1LehRlxr25PBkjyyasakm4599iroUpaj96rdqRlO2ShuyqwJdr+oNqWwTUmQw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-plugin-polyfill-node": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/esbuild-plugin-polyfill-node/-/esbuild-plugin-polyfill-node-0.2.0.tgz", + "integrity": "sha512-rpCoK4mag0nehBtFlFMLSuL9bNBLEh8h3wZ/FsrJEDompA/AwOqInx6Xow01+CXAcvZYhkoJ0SIZiS37qkecDA==", + "dev": true, + "dependencies": { + "@jspm/core": "^2.0.1", + "import-meta-resolve": "^2.2.2" + }, + "peerDependencies": { + "esbuild": "*" + } + }, + "node_modules/esbuild-sunos-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.47.tgz", + "integrity": "sha512-uOeSgLUwukLioAJOiGYm3kNl+1wJjgJA8R671GYgcPgCx7QR73zfvYqXFFcIO93/nBdIbt5hd8RItqbbf3HtAQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-windows-32": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.47.tgz", + "integrity": "sha512-H0fWsLTp2WBfKLBgwYT4OTfFly4Im/8B5f3ojDv1Kx//kiubVY0IQunP2Koc/fr/0wI7hj3IiBDbSrmKlrNgLQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-windows-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.47.tgz", + "integrity": "sha512-/Pk5jIEH34T68r8PweKRi77W49KwanZ8X6lr3vDAtOlH5EumPE4pBHqkCUdELanvsT14yMXLQ/C/8XPi1pAtkQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-windows-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.47.tgz", + "integrity": "sha512-HFSW2lnp62fl86/qPQlqw6asIwCnEsEoNIL1h2uVMgakddf+vUuMcCbtUY1i8sst7KkgHrVKCJQB33YhhOweCQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dev": true, + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-util-attach-comments": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-2.1.1.tgz", + "integrity": "sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==", + "dev": true, + "dependencies": { + "@types/estree": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/estree-util-build-jsx": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-2.2.2.tgz", + "integrity": "sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==", + "dev": true, + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "estree-util-is-identifier-name": "^2.0.0", + "estree-walker": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/estree-util-build-jsx/node_modules/@types/estree-jsx": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", + "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", + "dev": true, + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/estree-util-build-jsx/node_modules/estree-util-is-identifier-name": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", + "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/estree-util-build-jsx/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/estree-util-is-identifier-name": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-1.1.0.tgz", + "integrity": "sha512-OVJZ3fGGt9By77Ix9NhaRbzfbDV/2rx9EP7YIDJTmsZSEc5kYn2vWcNccYyahJL2uAQZK2a5Or2i0wtIKTPoRQ==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/estree-util-value-to-estree": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/estree-util-value-to-estree/-/estree-util-value-to-estree-1.3.0.tgz", + "integrity": "sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==", + "dev": true, + "dependencies": { + "is-plain-obj": "^3.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/estree-util-visit": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-1.2.1.tgz", + "integrity": "sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==", + "dev": true, + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/estree-util-visit/node_modules/@types/estree-jsx": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", + "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", + "dev": true, + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eval": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/eval/-/eval-0.1.6.tgz", + "integrity": "sha512-o0XUw+5OGkXw4pJZzQoXUk+H87DHuC+7ZE//oSrRGtatTmr12oTnLfg6QOq9DyTt0c/p4TwzgmkKrBzWTSizyQ==", + "dev": true, + "dependencies": { + "require-like": ">= 0.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/eventsource-parser": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-1.0.0.tgz", + "integrity": "sha512-9jgfSCa3dmEme2ES3mPByGXfgZ87VbP97tng1G2nWwWx6bV2nYxm2AWCrbQjXToSe+yYlqaZNtxffR9IeQr95g==", + "engines": { + "node": ">=14.18" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/execa/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/exit-hook": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-2.2.1.tgz", + "integrity": "sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/express/node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "node_modules/external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "optional": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fault": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fault/-/fault-2.0.1.tgz", + "integrity": "sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==", + "dev": true, + "dependencies": { + "format": "^0.2.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/format": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz", + "integrity": "sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==", + "dev": true, + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/ftp": { + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz", + "integrity": "sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ==", + "dev": true, + "dependencies": { + "readable-stream": "1.1.x", + "xregexp": "2.0.0" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/ftp/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "dev": true + }, + "node_modules/ftp/node_modules/readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "node_modules/ftp/node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", + "dev": true + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/gauge": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", + "dev": true, + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/gauge/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/generic-names": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/generic-names/-/generic-names-4.0.0.tgz", + "integrity": "sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==", + "dev": true, + "dependencies": { + "loader-utils": "^3.2.0" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-port": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", + "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-uri": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-3.0.2.tgz", + "integrity": "sha512-+5s0SJbGoyiJTZZ2JTpFPLMPSch72KEqGOTvQsBqg0RBWvwhWUSYZFAtz3TPW0GXJuLBJPts1E241iHg+VRfhg==", + "dev": true, + "dependencies": { + "@tootallnate/once": "1", + "data-uri-to-buffer": "3", + "debug": "4", + "file-uri-to-path": "2", + "fs-extra": "^8.1.0", + "ftp": "^0.3.10" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/get-uri/node_modules/file-uri-to-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-2.0.0.tgz", + "integrity": "sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/get-uri/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/get-uri/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/get-uri/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/git-hooks-list": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/git-hooks-list/-/git-hooks-list-1.0.3.tgz", + "integrity": "sha512-Y7wLWcrLUXwk2noSka166byGCvhMtDRpgHdzCno1UQv/n/Hegp++a2xBWJL1lJarnKD3SWaljD+0z1ztqxuKyQ==", + "dev": true, + "funding": { + "url": "https://github.com/fisker/git-hooks-list?sponsor=1" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/glob/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/globby": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.0.tgz", + "integrity": "sha512-3LifW9M4joGZasyYPz2A1U74zbC/45fvpXUvO/9KbSa+VV0aGZarWkfdgKyR9sExNP0t0x0ss/UMJpNpcaTspw==", + "dev": true, + "dependencies": { + "@types/glob": "^7.1.1", + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "glob": "^7.1.3", + "ignore": "^5.1.1", + "merge2": "^1.2.3", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/got": { + "version": "11.8.6", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", + "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", + "dev": true, + "dependencies": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=10.19.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/gunzip-maybe": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/gunzip-maybe/-/gunzip-maybe-1.4.2.tgz", + "integrity": "sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==", + "dev": true, + "dependencies": { + "browserify-zlib": "^0.1.4", + "is-deflate": "^1.0.0", + "is-gzip": "^1.0.0", + "peek-stream": "^1.1.0", + "pumpify": "^1.3.3", + "through2": "^2.0.3" + }, + "bin": { + "gunzip-maybe": "bin.js" + } + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", + "dev": true + }, + "node_modules/hast-util-to-estree": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-2.3.3.tgz", + "integrity": "sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==", + "dev": true, + "dependencies": { + "@types/estree": "^1.0.0", + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^2.0.0", + "@types/unist": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "estree-util-attach-comments": "^2.0.0", + "estree-util-is-identifier-name": "^2.0.0", + "hast-util-whitespace": "^2.0.0", + "mdast-util-mdx-expression": "^1.0.0", + "mdast-util-mdxjs-esm": "^1.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-object": "^0.4.1", + "unist-util-position": "^4.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-estree/node_modules/@types/estree-jsx": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", + "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", + "dev": true, + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/hast-util-to-estree/node_modules/estree-util-is-identifier-name": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", + "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-whitespace": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz", + "integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dev": true, + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/http2-wrapper": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", + "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "dev": true, + "dependencies": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" + }, + "engines": { + "node": ">=10.19.0" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-meta-resolve": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-2.2.2.tgz", + "integrity": "sha512-f8KcQ1D80V7RnqVm+/lirO9zkOxjGxhaTC1IPrBGd3MEfNgmNG67tSUO9gTi2F3Blr2Az6g1vocaxzkVnWl9MA==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/inline-style-parser": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", + "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==", + "dev": true + }, + "node_modules/inquirer": { + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", + "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", + "dev": true, + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/ip": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", + "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", + "dev": true + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-alphabetical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", + "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-alphanumerical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", + "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", + "dev": true, + "dependencies": { + "is-alphabetical": "^2.0.0", + "is-decimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "engines": { + "node": ">=4" + } + }, + "node_modules/is-core-module": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-decimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", + "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-deflate": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-deflate/-/is-deflate-1.0.0.tgz", + "integrity": "sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==", + "dev": true + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-gzip": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz", + "integrity": "sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-hexadecimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", + "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-reference": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.1.tgz", + "integrity": "sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==", + "dev": true, + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/javascript-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", + "integrity": "sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==", + "dev": true + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-schema-to-ts": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/json-schema-to-ts/-/json-schema-to-ts-1.6.4.tgz", + "integrity": "sha512-pR4yQ9DHz6itqswtHCm26mw45FSNfQ9rEQjosaZErhn5J3J2sIViQiz8rDaezjKAhFGpmsoczYVBgGHzFw/stA==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.6", + "ts-toolbelt": "^6.15.5" + } + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "optional": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonc-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "dev": true + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/keyv": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", + "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/loader-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", + "dev": true, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "dev": true + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/longest-streak": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/magic-string": { + "version": "0.30.0", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz", + "integrity": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==", + "peer": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.13" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/markdown-extensions": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-1.1.1.tgz", + "integrity": "sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mdast-util-definitions": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz", + "integrity": "sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "unist-util-visit": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-from-markdown": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz", + "integrity": "sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "mdast-util-to-string": "^3.1.0", + "micromark": "^3.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-decode-string": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "unist-util-stringify-position": "^3.0.0", + "uvu": "^0.5.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-frontmatter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-frontmatter/-/mdast-util-frontmatter-1.0.1.tgz", + "integrity": "sha512-JjA2OjxRqAa8wEG8hloD0uTU0kdn8kbtOWpPP94NBkfAlbxn4S8gCGf/9DwFtEeGPXrDcNXdiDjVaRdUFqYokw==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.3.0", + "micromark-extension-frontmatter": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-1.1.0.tgz", + "integrity": "sha512-leKb9uG7laXdyFlTleYV4ZEaCpsxeU1LlkkR/xp35pgKrfV1Y0fNCuOw9vaRc2a9YDpH22wd145Wt7UY5yzeZw==", + "dev": true, + "dependencies": { + "mdast-util-mdx-expression": "^1.0.0", + "mdast-util-mdx-jsx": "^1.0.0", + "mdast-util-mdxjs-esm": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-expression": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.2.tgz", + "integrity": "sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==", + "dev": true, + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-to-markdown": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-expression/node_modules/@types/estree-jsx": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", + "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", + "dev": true, + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/mdast-util-mdx-jsx": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-1.2.0.tgz", + "integrity": "sha512-5+ot/kfxYd3ChgEMwsMUO71oAfYjyRI3pADEK4I7xTmWLGQ8Y7ghm1CG36zUoUvDPxMlIYwQV/9DYHAUWdG4dA==", + "dev": true, + "dependencies": { + "@types/estree-jsx": "^0.0.1", + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.0.0", + "parse-entities": "^4.0.0", + "stringify-entities": "^4.0.0", + "unist-util-remove-position": "^4.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile-message": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdxjs-esm": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.1.tgz", + "integrity": "sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==", + "dev": true, + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-to-markdown": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdxjs-esm/node_modules/@types/estree-jsx": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", + "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", + "dev": true, + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/mdast-util-phrasing": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz", + "integrity": "sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast": { + "version": "11.3.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-11.3.0.tgz", + "integrity": "sha512-4o3Cli3hXPmm1LhB+6rqhfsIUBjnKFlIUZvudaermXB+4/KONdd/W4saWWkC+LBLbPMqhFSSTSRgafHsT5fVJw==", + "dev": true, + "dependencies": { + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "@types/mdurl": "^1.0.0", + "mdast-util-definitions": "^5.0.0", + "mdurl": "^1.0.0", + "unist-builder": "^3.0.0", + "unist-util-generated": "^2.0.0", + "unist-util-position": "^4.0.0", + "unist-util-visit": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz", + "integrity": "sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^3.0.0", + "mdast-util-to-string": "^3.0.0", + "micromark-util-decode-string": "^1.0.0", + "unist-util-visit": "^4.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-string": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", + "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", + "dev": true + }, + "node_modules/media-query-parser": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/media-query-parser/-/media-query-parser-2.0.2.tgz", + "integrity": "sha512-1N4qp+jE0pL5Xv4uEcwVUhIkwdUO3S/9gML90nqKA7v7FcOS5vUtatfzok9S9U1EJU8dHWlcv95WLnKmmxZI9w==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.12.5" + } + }, + "node_modules/media-query-parser/node_modules/@babel/runtime": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.5.tgz", + "integrity": "sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==", + "dev": true, + "dependencies": { + "regenerator-runtime": "^0.13.11" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromark": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.2.0.tgz", + "integrity": "sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "micromark-core-commonmark": "^1.0.1", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-combine-extensions": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-sanitize-uri": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-core-commonmark": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz", + "integrity": "sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-factory-destination": "^1.0.0", + "micromark-factory-label": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-factory-title": "^1.0.0", + "micromark-factory-whitespace": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-classify-character": "^1.0.0", + "micromark-util-html-tag-name": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-extension-frontmatter": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/micromark-extension-frontmatter/-/micromark-extension-frontmatter-1.1.1.tgz", + "integrity": "sha512-m2UH9a7n3W8VAH9JO9y01APpPKmNNNs71P0RbknEmYSaZU5Ghogv38BYO94AI5Xw6OYfxZRdHZZ2nYjs/Z+SZQ==", + "dev": true, + "dependencies": { + "fault": "^2.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdx-expression": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.8.tgz", + "integrity": "sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "@types/estree": "^1.0.0", + "micromark-factory-mdx-expression": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-events-to-acorn": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-extension-mdx-jsx": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.5.tgz", + "integrity": "sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==", + "dev": true, + "dependencies": { + "@types/acorn": "^4.0.0", + "@types/estree": "^1.0.0", + "estree-util-is-identifier-name": "^2.0.0", + "micromark-factory-mdx-expression": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0", + "vfile-message": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdx-jsx/node_modules/estree-util-is-identifier-name": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", + "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdx-md": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.1.tgz", + "integrity": "sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==", + "dev": true, + "dependencies": { + "micromark-util-types": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdxjs": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.1.tgz", + "integrity": "sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==", + "dev": true, + "dependencies": { + "acorn": "^8.0.0", + "acorn-jsx": "^5.0.0", + "micromark-extension-mdx-expression": "^1.0.0", + "micromark-extension-mdx-jsx": "^1.0.0", + "micromark-extension-mdx-md": "^1.0.0", + "micromark-extension-mdxjs-esm": "^1.0.0", + "micromark-util-combine-extensions": "^1.0.0", + "micromark-util-types": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdxjs-esm": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.5.tgz", + "integrity": "sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==", + "dev": true, + "dependencies": { + "@types/estree": "^1.0.0", + "micromark-core-commonmark": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-events-to-acorn": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "unist-util-position-from-estree": "^1.1.0", + "uvu": "^0.5.0", + "vfile-message": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-factory-destination": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz", + "integrity": "sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-factory-label": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz", + "integrity": "sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-factory-mdx-expression": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.9.tgz", + "integrity": "sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "@types/estree": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-events-to-acorn": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "unist-util-position-from-estree": "^1.0.0", + "uvu": "^0.5.0", + "vfile-message": "^3.0.0" + } + }, + "node_modules/micromark-factory-space": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz", + "integrity": "sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-factory-title": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz", + "integrity": "sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-factory-whitespace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz", + "integrity": "sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-character": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.2.0.tgz", + "integrity": "sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-chunked": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz", + "integrity": "sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-classify-character": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz", + "integrity": "sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-combine-extensions": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz", + "integrity": "sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-chunked": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-decode-numeric-character-reference": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz", + "integrity": "sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-decode-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz", + "integrity": "sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz", + "integrity": "sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-events-to-acorn": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.3.tgz", + "integrity": "sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "@types/acorn": "^4.0.0", + "@types/estree": "^1.0.0", + "@types/unist": "^2.0.0", + "estree-util-visit": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0", + "vfile-message": "^3.0.0" + } + }, + "node_modules/micromark-util-html-tag-name": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz", + "integrity": "sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-normalize-identifier": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz", + "integrity": "sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-resolve-all": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz", + "integrity": "sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-sanitize-uri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz", + "integrity": "sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-symbol": "^1.0.0" + } + }, + "node_modules/micromark-util-subtokenize": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz", + "integrity": "sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-chunked": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } + }, + "node_modules/micromark-util-symbol": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz", + "integrity": "sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz", + "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", + "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true + }, + "node_modules/mlly": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.4.0.tgz", + "integrity": "sha512-ua8PAThnTwpprIaU47EPeZ/bPUVp2QYBbWMphUQpVdBI3Lgqzm5KZQ45Agm3YJedHXaIHl6pBGabaLSUPPSptg==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "pathe": "^1.1.1", + "pkg-types": "^1.0.3", + "ufo": "^1.1.2" + } + }, + "node_modules/mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, + "node_modules/nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/netmask": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", + "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/next": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/next/-/next-13.4.6.tgz", + "integrity": "sha512-sjVqjxU+U2aXZnYt4Ud6CTLNNwWjdSfMgemGpIQJcN3Z7Jni9xRWbR0ie5fQzCg87aLqQVhKA2ud2gPoqJ9lGw==", + "dependencies": { + "@next/env": "13.4.6", + "@swc/helpers": "0.5.1", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001406", + "postcss": "8.4.14", + "styled-jsx": "5.1.1", + "watchpack": "2.4.0", + "zod": "3.21.4" + }, + "bin": { + "next": "dist/bin/next" + }, + "engines": { + "node": ">=16.8.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "13.4.6", + "@next/swc-darwin-x64": "13.4.6", + "@next/swc-linux-arm64-gnu": "13.4.6", + "@next/swc-linux-arm64-musl": "13.4.6", + "@next/swc-linux-x64-gnu": "13.4.6", + "@next/swc-linux-x64-musl": "13.4.6", + "@next/swc-win32-arm64-msvc": "13.4.6", + "@next/swc-win32-ia32-msvc": "13.4.6", + "@next/swc-win32-x64-msvc": "13.4.6" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "fibers": ">= 3.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "fibers": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/node-addon-api": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz", + "integrity": "sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==", + "dev": true, + "optional": true + }, + "node_modules/node-fetch": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", + "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", + "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-gyp-build": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", + "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", + "dev": true, + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" + } + }, + "node_modules/node-releases": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", + "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "dev": true + }, + "node_modules/nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "dev": true, + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npmlog": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", + "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", + "dev": true, + "dependencies": { + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dev": true, + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/outdent": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/outdent/-/outdent-0.8.0.tgz", + "integrity": "sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A==", + "dev": true + }, + "node_modules/p-cancelable": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", + "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pac-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-5.0.0.tgz", + "integrity": "sha512-CcFG3ZtnxO8McDigozwE3AqAw15zDvGH+OjXO4kzf7IkEKkQ4gxQ+3sdF50WmhQ4P/bVusXcqNE2S3XrNURwzQ==", + "dev": true, + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4", + "get-uri": "3", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "5", + "pac-resolver": "^5.0.0", + "raw-body": "^2.2.0", + "socks-proxy-agent": "5" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/pac-resolver": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-5.0.1.tgz", + "integrity": "sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q==", + "dev": true, + "dependencies": { + "degenerator": "^3.0.2", + "ip": "^1.1.5", + "netmask": "^2.0.2" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/pako": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", + "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==", + "dev": true + }, + "node_modules/parse-entities": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.1.tgz", + "integrity": "sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0", + "character-entities": "^2.0.0", + "character-entities-legacy": "^3.0.0", + "character-reference-invalid": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "is-alphanumerical": "^2.0.0", + "is-decimal": "^2.0.0", + "is-hexadecimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/parse-ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz", + "integrity": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "dev": true + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-to-regexp": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz", + "integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==", + "dev": true + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/pathe": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.1.tgz", + "integrity": "sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==", + "dev": true + }, + "node_modules/peek-stream": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/peek-stream/-/peek-stream-1.1.3.tgz", + "integrity": "sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "duplexify": "^3.5.0", + "through2": "^2.0.3" + } + }, + "node_modules/periscopic": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", + "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", + "dev": true, + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^3.0.0", + "is-reference": "^3.0.0" + } + }, + "node_modules/periscopic/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pkg-types": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.0.3.tgz", + "integrity": "sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==", + "dev": true, + "dependencies": { + "jsonc-parser": "^3.2.0", + "mlly": "^1.2.0", + "pathe": "^1.1.0" + } + }, + "node_modules/postcss": { + "version": "8.4.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", + "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + ], + "dependencies": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", + "dev": true, + "dependencies": { + "lilconfig": "^2.0.5", + "yaml": "^2.1.1" + }, + "engines": { + "node": ">= 14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-modules": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules/-/postcss-modules-6.0.0.tgz", + "integrity": "sha512-7DGfnlyi/ju82BRzTIjWS5C4Tafmzl3R79YP/PASiocj+aa6yYphHhhKUOEoXQToId5rgyFgJ88+ccOUydjBXQ==", + "dev": true, + "dependencies": { + "generic-names": "^4.0.0", + "icss-utils": "^5.1.0", + "lodash.camelcase": "^4.3.0", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "string-hash": "^1.1.1" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", + "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-ms": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-7.0.1.tgz", + "integrity": "sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==", + "dev": true, + "dependencies": { + "parse-ms": "^2.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", + "dev": true + }, + "node_modules/property-information": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.2.0.tgz", + "integrity": "sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-5.0.0.tgz", + "integrity": "sha512-gkH7BkvLVkSfX9Dk27W6TyNOWWZWRilRfk1XxGNWOYJ2TuedAv1yFpCaU9QSBmBe716XOTNpYNOzhysyw8xn7g==", + "dev": true, + "dependencies": { + "agent-base": "^6.0.0", + "debug": "4", + "http-proxy-agent": "^4.0.0", + "https-proxy-agent": "^5.0.0", + "lru-cache": "^5.1.1", + "pac-proxy-agent": "^5.0.0", + "proxy-from-env": "^1.0.0", + "socks-proxy-agent": "^5.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/proxy-agent/node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/proxy-agent/node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "dev": true + }, + "node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, + "dependencies": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-refresh": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", + "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/recast": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz", + "integrity": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==", + "dev": true, + "dependencies": { + "ast-types": "0.15.2", + "esprima": "~4.0.0", + "source-map": "~0.6.1", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/recast/node_modules/ast-types": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz", + "integrity": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/recast/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "dev": true + }, + "node_modules/regenerator-transform": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", + "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "dev": true, + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dev": true, + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/remark-frontmatter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-4.0.1.tgz", + "integrity": "sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0", + "mdast-util-frontmatter": "^1.0.0", + "micromark-extension-frontmatter": "^1.0.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx-frontmatter": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/remark-mdx-frontmatter/-/remark-mdx-frontmatter-1.1.1.tgz", + "integrity": "sha512-7teX9DW4tI2WZkXS4DBxneYSY7NHiXl4AKdWDO9LXVweULlCT8OPWsOjLEnMIXViN1j+QcY8mfbq3k0EK6x3uA==", + "dev": true, + "dependencies": { + "estree-util-is-identifier-name": "^1.0.0", + "estree-util-value-to-estree": "^1.0.0", + "js-yaml": "^4.0.0", + "toml": "^3.0.0" + }, + "engines": { + "node": ">=12.2.0" + } + }, + "node_modules/remark-parse": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.2.tgz", + "integrity": "sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==", + "dev": true, + "dependencies": { + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-rehype": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-9.1.0.tgz", + "integrity": "sha512-oLa6YmgAYg19zb0ZrBACh40hpBLteYROaPLhBXzLgjqyHQrN+gVP9N/FJvfzuNNuzCutktkroXEZBrxAxKhh7Q==", + "dev": true, + "dependencies": { + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-to-hast": "^11.0.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-like": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/require-like/-/require-like-0.1.2.tgz", + "integrity": "sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "dev": true, + "dependencies": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", + "dev": true + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/responselike": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", + "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", + "dev": true, + "dependencies": { + "lowercase-keys": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/restore-cursor/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rollup": { + "version": "3.25.3", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.25.3.tgz", + "integrity": "sha512-ZT279hx8gszBj9uy5FfhoG4bZx8c+0A1sbqtr7Q3KNWIizpTdDEPZbV2xcbvHsnFp4MavCQYZyzApJ+virB8Yw==", + "dev": true, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=14.18.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "dev": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/sade": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", + "dev": true, + "dependencies": { + "mri": "^1.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/semver": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.1.1.tgz", + "integrity": "sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "node_modules/set-cookie-parser": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.6.0.tgz", + "integrity": "sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==", + "dev": true + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", + "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "dev": true, + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "dev": true, + "dependencies": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.13.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-5.0.1.tgz", + "integrity": "sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==", + "dev": true, + "dependencies": { + "agent-base": "^6.0.2", + "debug": "4", + "socks": "^2.3.3" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/socks/node_modules/ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "dev": true + }, + "node_modules/sort-object-keys": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/sort-object-keys/-/sort-object-keys-1.1.3.tgz", + "integrity": "sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==", + "dev": true + }, + "node_modules/sort-package-json": { + "version": "1.57.0", + "resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-1.57.0.tgz", + "integrity": "sha512-FYsjYn2dHTRb41wqnv+uEqCUvBpK3jZcTp9rbz2qDTmel7Pmdtf+i2rLaaPMRZeSVM60V3Se31GyWFpmKs4Q5Q==", + "dev": true, + "dependencies": { + "detect-indent": "^6.0.0", + "detect-newline": "3.1.0", + "git-hooks-list": "1.0.3", + "globby": "10.0.0", + "is-plain-obj": "2.1.0", + "sort-object-keys": "^1.1.3" + }, + "bin": { + "sort-package-json": "cli.js" + } + }, + "node_modules/sort-package-json/node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dev": true, + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/sswr": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/sswr/-/sswr-1.10.0.tgz", + "integrity": "sha512-nLWAJSQy3h8t7rrbTXanRyVHuQPj4PwKIVGe4IMlxJFdhyaxnN/JGACnvQKGDeWiTGYIZIx/jRuUsPEF0867Pg==", + "dependencies": { + "swrev": "^3.0.0" + }, + "peerDependencies": { + "svelte": "^3.29.0" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "dev": true + }, + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-hash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", + "integrity": "sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==", + "dev": true + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/stringify-entities": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.3.tgz", + "integrity": "sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==", + "dev": true, + "dependencies": { + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^3.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/style-to-object": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.1.tgz", + "integrity": "sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw==", + "dev": true, + "dependencies": { + "inline-style-parser": "0.1.1" + } + }, + "node_modules/styled-jsx": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", + "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", + "dependencies": { + "client-only": "0.0.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svelte": { + "version": "3.59.2", + "resolved": "https://registry.npmjs.org/svelte/-/svelte-3.59.2.tgz", + "integrity": "sha512-vzSyuGr3eEoAtT/A6bmajosJZIUWySzY2CzB3w2pgPvnkUjGqlDnsNnA0PMO+mMAhuyMul6C2uuZzY6ELSkzyA==", + "peer": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/swr": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/swr/-/swr-2.1.5.tgz", + "integrity": "sha512-/OhfZMcEpuz77KavXST5q6XE9nrOBOVcBLWjMT+oAE/kQHyE3PASrevXCtQDZ8aamntOfFkbVJp7Il9tNBQWrw==", + "dependencies": { + "use-sync-external-store": "^1.2.0" + }, + "peerDependencies": { + "react": "^16.11.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/swrev": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/swrev/-/swrev-3.0.0.tgz", + "integrity": "sha512-QJuZiptdOmbDY45pECBRVEgnoBlOKjeT2MWVz04wKHpWX15hM3P7EjcIbHDg5yLoPCMQ7to3349MEE+l9QF5HA==" + }, + "node_modules/swrv": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/swrv/-/swrv-1.0.3.tgz", + "integrity": "sha512-sl+eLEE+aPPjhP1E8gQ75q3RPRyw5Gd/kROnrTFo3+LkCeLskv7F+uAl5W97wgJkzitobL6FLsRPVm0DgIgN8A==", + "peerDependencies": { + "vue": ">=3.2.26 < 4" + } + }, + "node_modules/tar": { + "version": "6.1.15", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz", + "integrity": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==", + "dev": true, + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dev": true, + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "node_modules/tar-fs/node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "node_modules/tar-fs/node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/through2/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/through2/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/through2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/time-span": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/time-span/-/time-span-4.0.0.tgz", + "integrity": "sha512-MyqZCTGLDZ77u4k+jqg4UlrzPTPZ49NDlaekU6uuFaJLzPIN1woaRXCbGeqOfxwc3Y37ZROGAJ614Rdv7Olt+g==", + "dev": true, + "dependencies": { + "convert-hrtime": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/toml": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/toml/-/toml-3.0.0.tgz", + "integrity": "sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==", + "dev": true + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, + "node_modules/trough": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz", + "integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/ts-morph": { + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/ts-morph/-/ts-morph-12.0.0.tgz", + "integrity": "sha512-VHC8XgU2fFW7yO1f/b3mxKDje1vmyzFXHWzOYmKEkCEwcLjDtbdLgBQviqj4ZwP4MJkQtRo6Ha2I29lq/B+VxA==", + "dev": true, + "dependencies": { + "@ts-morph/common": "~0.11.0", + "code-block-writer": "^10.1.1" + } + }, + "node_modules/ts-node": { + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", + "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "dev": true, + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/ts-node/node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, + "node_modules/ts-toolbelt": { + "version": "6.15.5", + "resolved": "https://registry.npmjs.org/ts-toolbelt/-/ts-toolbelt-6.15.5.tgz", + "integrity": "sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A==", + "dev": true + }, + "node_modules/tsconfig-paths": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", + "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", + "dev": true, + "dependencies": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tslib": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", + "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==" + }, + "node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typescript": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", + "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/ufo": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.1.2.tgz", + "integrity": "sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ==", + "dev": true + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unified": { + "version": "10.1.2", + "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", + "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0", + "bail": "^2.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unified/node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dev": true, + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "node_modules/unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, + "node_modules/unist-builder": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/unist-builder/-/unist-builder-3.0.1.tgz", + "integrity": "sha512-gnpOw7DIpCA0vpr6NqdPvTWnlPTApCTRzr+38E6hCWx3rz/cjo83SsKIlS1Z+L5ttScQ2AwutNnb8+tAvpb6qQ==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-generated": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.1.tgz", + "integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz", + "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position-from-estree": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.2.tgz", + "integrity": "sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-remove-position": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-4.0.2.tgz", + "integrity": "sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-visit": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", + "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-parents": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/use-sync-external-store": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", + "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uvu": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz", + "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", + "dev": true, + "dependencies": { + "dequal": "^2.0.0", + "diff": "^5.0.0", + "kleur": "^4.0.3", + "sade": "^1.7.3" + }, + "bin": { + "uvu": "bin.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/uvu/node_modules/diff": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz", + "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "dev": true + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vercel": { + "version": "30.2.3", + "resolved": "https://registry.npmjs.org/vercel/-/vercel-30.2.3.tgz", + "integrity": "sha512-Eil4CR1a/pZkTl3gewzN8rDTisRmuixHAgymWutrRlc1qBYGPMo9ZPTu/9cR3k2PT7yjeRMYYLm0ax9l43lDhQ==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "@vercel/build-utils": "6.7.5", + "@vercel/go": "2.5.1", + "@vercel/hydrogen": "0.0.64", + "@vercel/next": "3.8.6", + "@vercel/node": "2.15.2", + "@vercel/python": "3.1.60", + "@vercel/redwood": "1.1.15", + "@vercel/remix-builder": "1.8.14", + "@vercel/ruby": "1.3.76", + "@vercel/static-build": "1.3.37" + }, + "bin": { + "vc": "dist/index.js", + "vercel": "dist/index.js" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/vfile": { + "version": "5.3.7", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", + "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile-message": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", + "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", + "dev": true, + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vite": { + "version": "4.3.9", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.3.9.tgz", + "integrity": "sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==", + "dev": true, + "dependencies": { + "esbuild": "^0.17.5", + "postcss": "^8.4.23", + "rollup": "^3.21.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@types/node": ">= 14", + "less": "*", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vite-node": { + "version": "0.28.5", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-0.28.5.tgz", + "integrity": "sha512-LmXb9saMGlrMZbXTvOveJKwMTBTNUH66c8rJnQ0ZPNX+myPEol64+szRzXtV5ORb0Hb/91yq+/D3oERoyAt6LA==", + "dev": true, + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.3.4", + "mlly": "^1.1.0", + "pathe": "^1.1.0", + "picocolors": "^1.0.0", + "source-map": "^0.6.1", + "source-map-support": "^0.5.21", + "vite": "^3.0.0 || ^4.0.0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": ">=v14.16.0" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/vite-node/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/vite/node_modules/@esbuild/android-arm": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.19.tgz", + "integrity": "sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/android-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz", + "integrity": "sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/android-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.19.tgz", + "integrity": "sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/darwin-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz", + "integrity": "sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/darwin-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz", + "integrity": "sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz", + "integrity": "sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/freebsd-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz", + "integrity": "sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-arm": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz", + "integrity": "sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz", + "integrity": "sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-ia32": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz", + "integrity": "sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-loong64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz", + "integrity": "sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-mips64el": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz", + "integrity": "sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-ppc64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz", + "integrity": "sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-riscv64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz", + "integrity": "sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-s390x": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz", + "integrity": "sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz", + "integrity": "sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/netbsd-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz", + "integrity": "sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/openbsd-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz", + "integrity": "sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/sunos-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz", + "integrity": "sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz", + "integrity": "sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-ia32": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz", + "integrity": "sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz", + "integrity": "sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/esbuild": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.19.tgz", + "integrity": "sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.17.19", + "@esbuild/android-arm64": "0.17.19", + "@esbuild/android-x64": "0.17.19", + "@esbuild/darwin-arm64": "0.17.19", + "@esbuild/darwin-x64": "0.17.19", + "@esbuild/freebsd-arm64": "0.17.19", + "@esbuild/freebsd-x64": "0.17.19", + "@esbuild/linux-arm": "0.17.19", + "@esbuild/linux-arm64": "0.17.19", + "@esbuild/linux-ia32": "0.17.19", + "@esbuild/linux-loong64": "0.17.19", + "@esbuild/linux-mips64el": "0.17.19", + "@esbuild/linux-ppc64": "0.17.19", + "@esbuild/linux-riscv64": "0.17.19", + "@esbuild/linux-s390x": "0.17.19", + "@esbuild/linux-x64": "0.17.19", + "@esbuild/netbsd-x64": "0.17.19", + "@esbuild/openbsd-x64": "0.17.19", + "@esbuild/sunos-x64": "0.17.19", + "@esbuild/win32-arm64": "0.17.19", + "@esbuild/win32-ia32": "0.17.19", + "@esbuild/win32-x64": "0.17.19" + } + }, + "node_modules/vite/node_modules/postcss": { + "version": "8.4.24", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", + "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/vm2": { + "version": "3.9.19", + "resolved": "https://registry.npmjs.org/vm2/-/vm2-3.9.19.tgz", + "integrity": "sha512-J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg==", + "dev": true, + "dependencies": { + "acorn": "^8.7.0", + "acorn-walk": "^8.2.0" + }, + "bin": { + "vm2": "bin/vm2" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/vue": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.3.4.tgz", + "integrity": "sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==", + "peer": true, + "dependencies": { + "@vue/compiler-dom": "3.3.4", + "@vue/compiler-sfc": "3.3.4", + "@vue/runtime-dom": "3.3.4", + "@vue/server-renderer": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "dev": true, + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/web-vitals": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-0.2.4.tgz", + "integrity": "sha512-6BjspCO9VriYy12z356nL6JBS0GYeEcA457YyRzD+dD6XYCQ75NKhcOHUMHentOE7OcVCIXXDvOm0jKFfQG2Gg==", + "dev": true + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "dev": true, + "dependencies": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "node_modules/word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "dev": true, + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xdm": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/xdm/-/xdm-2.1.0.tgz", + "integrity": "sha512-3LxxbxKcRogYY7cQSMy1tUuU1zKNK9YPqMT7/S0r7Cz2QpyF8O9yFySGD7caOZt+LWUOQioOIX+6ZzCoBCpcAA==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^4.0.0", + "@types/estree-jsx": "^0.0.1", + "astring": "^1.6.0", + "estree-util-build-jsx": "^2.0.0", + "estree-util-is-identifier-name": "^2.0.0", + "estree-walker": "^3.0.0", + "got": "^11.0.0", + "hast-util-to-estree": "^2.0.0", + "loader-utils": "^2.0.0", + "markdown-extensions": "^1.0.0", + "mdast-util-mdx": "^1.0.0", + "micromark-extension-mdxjs": "^1.0.0", + "periscopic": "^3.0.0", + "remark-parse": "^10.0.0", + "remark-rehype": "^9.0.0", + "source-map": "^0.7.0", + "unified": "^10.0.0", + "unist-util-position-from-estree": "^1.0.0", + "unist-util-stringify-position": "^3.0.0", + "unist-util-visit": "^4.0.0", + "vfile": "^5.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + }, + "optionalDependencies": { + "deasync": "^0.1.0" + } + }, + "node_modules/xdm/node_modules/estree-util-is-identifier-name": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", + "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/xdm/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/xdm/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/xregexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz", + "integrity": "sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yaml": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "3.21.4", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", + "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + } + }, + "dependencies": { + "@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@babel/code-frame": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", + "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", + "dev": true, + "requires": { + "@babel/highlight": "^7.22.5" + } + }, + "@babel/compat-data": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", + "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", + "dev": true + }, + "@babel/core": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.5.tgz", + "integrity": "sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==", + "dev": true, + "requires": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helpers": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", + "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "dependencies": { + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + } + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz", + "integrity": "sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", + "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" + }, + "dependencies": { + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.5.tgz", + "integrity": "sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.5.tgz", + "integrity": "sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "regexpu-core": "^5.3.1", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.0.tgz", + "integrity": "sha512-RnanLx5ETe6aybRi1cO/edaRH+bNYWaryCEmjDDYyNr4wnSzyOp8T0dWipmqVHKEY3AbVKUom50AKSlj1zmKbg==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/helper-environment-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", + "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", + "dev": true + }, + "@babel/helper-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", + "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", + "dev": true, + "requires": { + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz", + "integrity": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-module-imports": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", + "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-module-transforms": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", + "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz", + "integrity": "sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-wrap-function": "^7.22.5", + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-replace-supers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz", + "integrity": "sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", + "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "dev": true + }, + "@babel/helper-validator-identifier": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", + "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", + "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", + "dev": true + }, + "@babel/helper-wrap-function": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz", + "integrity": "sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + } + }, + "@babel/helpers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", + "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", + "dev": true, + "requires": { + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5" + } + }, + "@babel/highlight": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", + "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@babel/parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", + "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==" + }, + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz", + "integrity": "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz", + "integrity": "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.22.5" + } + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "dev": true, + "requires": {} + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-import-assertions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz", + "integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-syntax-import-attributes": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz", + "integrity": "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", + "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz", + "integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-async-generator-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.5.tgz", + "integrity": "sha512-gGOEvFzm3fWoyD5uZq7vVTD57pPJ3PczPUD/xCFGjzBpUosnklmXyKnGQbbbGs1NPNPskFex0j93yKbHt0cHyg==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.5", + "@babel/plugin-syntax-async-generators": "^7.8.4" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz", + "integrity": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.5" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz", + "integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz", + "integrity": "sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-class-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz", + "integrity": "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-class-static-block": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz", + "integrity": "sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.5.tgz", + "integrity": "sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz", + "integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/template": "^7.22.5" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz", + "integrity": "sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz", + "integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz", + "integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-dynamic-import": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz", + "integrity": "sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz", + "integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==", + "dev": true, + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-export-namespace-from": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz", + "integrity": "sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz", + "integrity": "sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz", + "integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-json-strings": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz", + "integrity": "sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz", + "integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-logical-assignment-operators": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz", + "integrity": "sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz", + "integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz", + "integrity": "sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz", + "integrity": "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz", + "integrity": "sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==", + "dev": true, + "requires": { + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz", + "integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", + "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz", + "integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz", + "integrity": "sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-transform-numeric-separator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz", + "integrity": "sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-transform-object-rest-spread": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz", + "integrity": "sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.22.5" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz", + "integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5" + } + }, + "@babel/plugin-transform-optional-catch-binding": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz", + "integrity": "sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-transform-optional-chaining": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.5.tgz", + "integrity": "sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz", + "integrity": "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-private-methods": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz", + "integrity": "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-private-property-in-object": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz", + "integrity": "sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz", + "integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz", + "integrity": "sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "regenerator-transform": "^0.15.1" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz", + "integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz", + "integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz", + "integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz", + "integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz", + "integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz", + "integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.5.tgz", + "integrity": "sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-typescript": "^7.22.5" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz", + "integrity": "sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-unicode-property-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz", + "integrity": "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz", + "integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-unicode-sets-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz", + "integrity": "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/preset-env": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.5.tgz", + "integrity": "sha512-fj06hw89dpiZzGZtxn+QybifF07nNiZjZ7sazs2aVDcysAZVGjW7+7iFYxg6GLNM47R/thYfLdrXc+2f11Vi9A==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.5", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.5", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.22.5", + "@babel/plugin-syntax-import-attributes": "^7.22.5", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.22.5", + "@babel/plugin-transform-async-generator-functions": "^7.22.5", + "@babel/plugin-transform-async-to-generator": "^7.22.5", + "@babel/plugin-transform-block-scoped-functions": "^7.22.5", + "@babel/plugin-transform-block-scoping": "^7.22.5", + "@babel/plugin-transform-class-properties": "^7.22.5", + "@babel/plugin-transform-class-static-block": "^7.22.5", + "@babel/plugin-transform-classes": "^7.22.5", + "@babel/plugin-transform-computed-properties": "^7.22.5", + "@babel/plugin-transform-destructuring": "^7.22.5", + "@babel/plugin-transform-dotall-regex": "^7.22.5", + "@babel/plugin-transform-duplicate-keys": "^7.22.5", + "@babel/plugin-transform-dynamic-import": "^7.22.5", + "@babel/plugin-transform-exponentiation-operator": "^7.22.5", + "@babel/plugin-transform-export-namespace-from": "^7.22.5", + "@babel/plugin-transform-for-of": "^7.22.5", + "@babel/plugin-transform-function-name": "^7.22.5", + "@babel/plugin-transform-json-strings": "^7.22.5", + "@babel/plugin-transform-literals": "^7.22.5", + "@babel/plugin-transform-logical-assignment-operators": "^7.22.5", + "@babel/plugin-transform-member-expression-literals": "^7.22.5", + "@babel/plugin-transform-modules-amd": "^7.22.5", + "@babel/plugin-transform-modules-commonjs": "^7.22.5", + "@babel/plugin-transform-modules-systemjs": "^7.22.5", + "@babel/plugin-transform-modules-umd": "^7.22.5", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", + "@babel/plugin-transform-new-target": "^7.22.5", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.5", + "@babel/plugin-transform-numeric-separator": "^7.22.5", + "@babel/plugin-transform-object-rest-spread": "^7.22.5", + "@babel/plugin-transform-object-super": "^7.22.5", + "@babel/plugin-transform-optional-catch-binding": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.22.5", + "@babel/plugin-transform-parameters": "^7.22.5", + "@babel/plugin-transform-private-methods": "^7.22.5", + "@babel/plugin-transform-private-property-in-object": "^7.22.5", + "@babel/plugin-transform-property-literals": "^7.22.5", + "@babel/plugin-transform-regenerator": "^7.22.5", + "@babel/plugin-transform-reserved-words": "^7.22.5", + "@babel/plugin-transform-shorthand-properties": "^7.22.5", + "@babel/plugin-transform-spread": "^7.22.5", + "@babel/plugin-transform-sticky-regex": "^7.22.5", + "@babel/plugin-transform-template-literals": "^7.22.5", + "@babel/plugin-transform-typeof-symbol": "^7.22.5", + "@babel/plugin-transform-unicode-escapes": "^7.22.5", + "@babel/plugin-transform-unicode-property-regex": "^7.22.5", + "@babel/plugin-transform-unicode-regex": "^7.22.5", + "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.22.5", + "babel-plugin-polyfill-corejs2": "^0.4.3", + "babel-plugin-polyfill-corejs3": "^0.8.1", + "babel-plugin-polyfill-regenerator": "^0.5.0", + "core-js-compat": "^3.30.2", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/preset-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz", + "integrity": "sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.22.5", + "@babel/plugin-transform-modules-commonjs": "^7.22.5", + "@babel/plugin-transform-typescript": "^7.22.5" + } + }, + "@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", + "dev": true + }, + "@babel/runtime": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz", + "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==", + "dev": true, + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + } + }, + "@babel/traverse": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", + "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", + "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "dev": true, + "requires": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "to-fast-properties": "^2.0.0" + } + }, + "@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "dependencies": { + "@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + } + } + }, + "@edge-runtime/format": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@edge-runtime/format/-/format-2.1.0.tgz", + "integrity": "sha512-gc2qbYEIIJRczBApBPznVI1c5vZgzrZQOsFZnAxxFiYah9qldHiu1YEitzSvXI8X8ZgvAguuIiyIbpWz17nlXA==", + "dev": true + }, + "@edge-runtime/node-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/node-utils/-/node-utils-2.0.3.tgz", + "integrity": "sha512-JUSbi5xu/A8+D2t9B9wfirCI1J8n8q0660FfmqZgA+n3RqxD3y7SnamL1sKRE5/AbHsKs9zcqCbK2YDklbc9Bg==", + "dev": true + }, + "@edge-runtime/primitives": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.3.tgz", + "integrity": "sha512-YnfMWMRQABAH8IsnFMJWMW+SyB4ZeYBPnR7V0aqdnew7Pq60cbH5DyFjS/FhiLwvHQk9wBREmXD7PP0HooEQ1A==", + "dev": true + }, + "@edge-runtime/vm": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.3.tgz", + "integrity": "sha512-SPfI1JeIRNs/4EEE2Oc0X6gG3RqjD1TnKu2lwmwFXq0435xgZGKhc3UiKkYAdoMn2dNFD73nlabMKHBRoMRpxg==", + "dev": true, + "requires": { + "@edge-runtime/primitives": "3.0.3" + } + }, + "@emotion/hash": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", + "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==", + "dev": true + }, + "@esbuild/android-arm": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.6.tgz", + "integrity": "sha512-bSC9YVUjADDy1gae8RrioINU6e1lCkg3VGVwm0QQ2E1CWcC4gnMce9+B6RpxuSsrsXsk1yojn7sp1fnG8erE2g==", + "dev": true, + "optional": true + }, + "@esbuild/android-arm64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.6.tgz", + "integrity": "sha512-YnYSCceN/dUzUr5kdtUzB+wZprCafuD89Hs0Aqv9QSdwhYQybhXTaSTcrl6X/aWThn1a/j0eEpUBGOE7269REg==", + "dev": true, + "optional": true + }, + "@esbuild/android-x64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.6.tgz", + "integrity": "sha512-MVcYcgSO7pfu/x34uX9u2QIZHmXAB7dEiLQC5bBl5Ryqtpj9lT2sg3gNDEsrPEmimSJW2FXIaxqSQ501YLDsZQ==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-arm64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.6.tgz", + "integrity": "sha512-bsDRvlbKMQMt6Wl08nHtFz++yoZHsyTOxnjfB2Q95gato+Yi4WnRl13oC2/PJJA9yLCoRv9gqT/EYX0/zDsyMA==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-x64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.6.tgz", + "integrity": "sha512-xh2A5oPrYRfMFz74QXIQTQo8uA+hYzGWJFoeTE8EvoZGHb+idyV4ATaukaUvnnxJiauhs/fPx3vYhU4wiGfosg==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-arm64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.6.tgz", + "integrity": "sha512-EnUwjRc1inT4ccZh4pB3v1cIhohE2S4YXlt1OvI7sw/+pD+dIE4smwekZlEPIwY6PhU6oDWwITrQQm5S2/iZgg==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-x64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.6.tgz", + "integrity": "sha512-Uh3HLWGzH6FwpviUcLMKPCbZUAFzv67Wj5MTwK6jn89b576SR2IbEp+tqUHTr8DIl0iDmBAf51MVaP7pw6PY5Q==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.6.tgz", + "integrity": "sha512-7YdGiurNt7lqO0Bf/U9/arrPWPqdPqcV6JCZda4LZgEn+PTQ5SMEI4MGR52Bfn3+d6bNEGcWFzlIxiQdS48YUw==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.6.tgz", + "integrity": "sha512-bUR58IFOMJX523aDVozswnlp5yry7+0cRLCXDsxnUeQYJik1DukMY+apBsLOZJblpH+K7ox7YrKrHmJoWqVR9w==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ia32": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.6.tgz", + "integrity": "sha512-ujp8uoQCM9FRcbDfkqECoARsLnLfCUhKARTP56TFPog8ie9JG83D5GVKjQ6yVrEVdMie1djH86fm98eY3quQkQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-loong64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.6.tgz", + "integrity": "sha512-y2NX1+X/Nt+izj9bLoiaYB9YXT/LoaQFYvCkVD77G/4F+/yuVXYCWz4SE9yr5CBMbOxOfBcy/xFL4LlOeNlzYQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-mips64el": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.6.tgz", + "integrity": "sha512-09AXKB1HDOzXD+j3FdXCiL/MWmZP0Ex9eR8DLMBVcHorrWJxWmY8Nms2Nm41iRM64WVx7bA/JVHMv081iP2kUA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ppc64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.6.tgz", + "integrity": "sha512-AmLhMzkM8JuqTIOhxnX4ubh0XWJIznEynRnZAVdA2mMKE6FAfwT2TWKTwdqMG+qEaeyDPtfNoZRpJbD4ZBv0Tg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-riscv64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.6.tgz", + "integrity": "sha512-Y4Ri62PfavhLQhFbqucysHOmRamlTVK10zPWlqjNbj2XMea+BOs4w6ASKwQwAiqf9ZqcY9Ab7NOU4wIgpxwoSQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-s390x": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.6.tgz", + "integrity": "sha512-SPUiz4fDbnNEm3JSdUW8pBJ/vkop3M1YwZAVwvdwlFLoJwKEZ9L98l3tzeyMzq27CyepDQ3Qgoba44StgbiN5Q==", + "dev": true, + "optional": true + }, + "@esbuild/linux-x64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.6.tgz", + "integrity": "sha512-a3yHLmOodHrzuNgdpB7peFGPx1iJ2x6m+uDvhP2CKdr2CwOaqEFMeSqYAHU7hG+RjCq8r2NFujcd/YsEsFgTGw==", + "dev": true, + "optional": true + }, + "@esbuild/netbsd-x64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.6.tgz", + "integrity": "sha512-EanJqcU/4uZIBreTrnbnre2DXgXSa+Gjap7ifRfllpmyAU7YMvaXmljdArptTHmjrkkKm9BK6GH5D5Yo+p6y5A==", + "dev": true, + "optional": true + }, + "@esbuild/openbsd-x64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.6.tgz", + "integrity": "sha512-xaxeSunhQRsTNGFanoOkkLtnmMn5QbA0qBhNet/XLVsc+OVkpIWPHcr3zTW2gxVU5YOHFbIHR9ODuaUdNza2Vw==", + "dev": true, + "optional": true + }, + "@esbuild/sunos-x64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.6.tgz", + "integrity": "sha512-gnMnMPg5pfMkZvhHee21KbKdc6W3GR8/JuE0Da1kjwpK6oiFU3nqfHuVPgUX2rsOx9N2SadSQTIYV1CIjYG+xw==", + "dev": true, + "optional": true + }, + "@esbuild/win32-arm64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.6.tgz", + "integrity": "sha512-G95n7vP1UnGJPsVdKXllAJPtqjMvFYbN20e8RK8LVLhlTiSOH1sd7+Gt7rm70xiG+I5tM58nYgwWrLs6I1jHqg==", + "dev": true, + "optional": true + }, + "@esbuild/win32-ia32": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.6.tgz", + "integrity": "sha512-96yEFzLhq5bv9jJo5JhTs1gI+1cKQ83cUpyxHuGqXVwQtY5Eq54ZEsKs8veKtiKwlrNimtckHEkj4mRh4pPjsg==", + "dev": true, + "optional": true + }, + "@esbuild/win32-x64": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.6.tgz", + "integrity": "sha512-n6d8MOyUrNp6G4VSpRcgjs5xj4A91svJSaiwLIDWVWEsZtpN5FA9NlBbZHDmAJc2e8e6SF4tkBD3HAvPF+7igA==", + "dev": true, + "optional": true + }, + "@gar/promisify": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", + "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", + "dev": true + }, + "@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "@jridgewell/trace-mapping": { + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + }, + "dependencies": { + "@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + } + } + }, + "@jspm/core": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@jspm/core/-/core-2.0.1.tgz", + "integrity": "sha512-Lg3PnLp0QXpxwLIAuuJboLeRaIhrgJjeuh797QADg3xz8wGLugQOS5DpsE8A6i6Adgzf+bacllkKZG3J0tGfDw==", + "dev": true + }, + "@mapbox/node-pre-gyp": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz", + "integrity": "sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==", + "dev": true, + "requires": { + "detect-libc": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "make-dir": "^3.1.0", + "node-fetch": "^2.6.7", + "nopt": "^5.0.0", + "npmlog": "^5.0.1", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.11" + }, + "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@next/env": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.6.tgz", + "integrity": "sha512-nqUxEtvDqFhmV1/awSg0K2XHNwkftNaiUqCYO9e6+MYmqNObpKVl7OgMkGaQ2SZnFx5YqF0t60ZJTlyJIDAijg==" + }, + "@next/swc-darwin-arm64": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.6.tgz", + "integrity": "sha512-ahi6VP98o4HV19rkOXPSUu+ovfHfUxbJQ7VVJ7gL2FnZRr7onEFC1oGQ6NQHpm8CxpIzSSBW79kumlFMOmZVjg==", + "optional": true + }, + "@next/swc-darwin-x64": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.6.tgz", + "integrity": "sha512-13cXxKFsPJIJKzUqrU5XB1mc0xbUgYsRcdH6/rB8c4NMEbWGdtD4QoK9ShN31TZdePpD4k416Ur7p+deMIxnnA==", + "optional": true + }, + "@next/swc-linux-arm64-gnu": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.6.tgz", + "integrity": "sha512-Ti+NMHEjTNktCVxNjeWbYgmZvA2AqMMI2AMlzkXsU7W4pXCMhrryAmAIoo+7YdJbsx01JQWYVxGe62G6DoCLaA==", + "optional": true + }, + "@next/swc-linux-arm64-musl": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.6.tgz", + "integrity": "sha512-OHoC6gO7XfjstgwR+z6UHKlvhqJfyMtNaJidjx3sEcfaDwS7R2lqR5AABi8PuilGgi0BO0O0sCXqLlpp3a0emQ==", + "optional": true + }, + "@next/swc-linux-x64-gnu": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.6.tgz", + "integrity": "sha512-zHZxPGkUlpfNJCboUrFqwlwEX5vI9LSN70b8XEb0DYzzlrZyCyOi7hwDp/+3Urm9AB7YCAJkgR5Sp1XBVjHdfQ==", + "optional": true + }, + "@next/swc-linux-x64-musl": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.6.tgz", + "integrity": "sha512-K/Y8lYGTwTpv5ME8PSJxwxLolaDRdVy+lOd9yMRMiQE0BLUhtxtCWC9ypV42uh9WpLjoaD0joOsB9Q6mbrSGJg==", + "optional": true + }, + "@next/swc-win32-arm64-msvc": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.6.tgz", + "integrity": "sha512-U6LtxEUrjBL2tpW+Kr1nHCSJWNeIed7U7l5o7FiKGGwGgIlFi4UHDiLI6TQ2lxi20fAU33CsruV3U0GuzMlXIw==", + "optional": true + }, + "@next/swc-win32-ia32-msvc": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.6.tgz", + "integrity": "sha512-eEBeAqpCfhdPSlCZCayjCiyIllVqy4tcqvm1xmg3BgJG0G5ITiMM4Cw2WVeRSgWDJqQGRyyb+q8Y2ltzhXOWsQ==", + "optional": true + }, + "@next/swc-win32-x64-msvc": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.6.tgz", + "integrity": "sha512-OrZs94AuO3ZS5tnqlyPRNgfWvboXaDQCi5aXGve3o3C+Sj0ctMUV9+Do+0zMvvLRumR8E0PTWKvtz9n5vzIsWw==", + "optional": true + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@npmcli/fs": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", + "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", + "dev": true, + "requires": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + }, + "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "dev": true, + "requires": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + } + }, + "@npmcli/package-json": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-2.0.0.tgz", + "integrity": "sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA==", + "dev": true, + "requires": { + "json-parse-even-better-errors": "^2.3.1" + } + }, + "@remix-run/dev": { + "version": "npm:@vercel/remix-run-dev@1.17.0", + "resolved": "https://registry.npmjs.org/@vercel/remix-run-dev/-/remix-run-dev-1.17.0.tgz", + "integrity": "sha512-S71dx9sxHi/9Ery9za+ryQYNq5rEA/OeWFaKalHsgA7jYhiJC2U2iP9lV4m251oLXp3K6J8gwY0zF1CWmA7ANA==", + "dev": true, + "requires": { + "@babel/core": "^7.21.8", + "@babel/generator": "^7.21.5", + "@babel/parser": "^7.21.8", + "@babel/plugin-syntax-jsx": "^7.21.4", + "@babel/plugin-syntax-typescript": "^7.21.4", + "@babel/preset-env": "^7.21.5", + "@babel/preset-typescript": "^7.21.5", + "@babel/traverse": "^7.21.5", + "@babel/types": "^7.21.5", + "@npmcli/package-json": "^2.0.0", + "@remix-run/server-runtime": "1.17.0", + "@vanilla-extract/integration": "^6.2.0", + "arg": "^5.0.1", + "cacache": "^15.0.5", + "chalk": "^4.1.2", + "chokidar": "^3.5.1", + "dotenv": "^16.0.0", + "esbuild": "0.17.6", + "esbuild-plugin-polyfill-node": "^0.2.0", + "execa": "5.1.1", + "exit-hook": "2.2.1", + "express": "^4.17.1", + "fast-glob": "3.2.11", + "fs-extra": "^10.0.0", + "get-port": "^5.1.1", + "gunzip-maybe": "^1.4.2", + "inquirer": "^8.2.1", + "jsesc": "3.0.2", + "json5": "^2.2.2", + "lodash": "^4.17.21", + "lodash.debounce": "^4.0.8", + "lru-cache": "^7.14.1", + "minimatch": "^9.0.0", + "node-fetch": "^2.6.9", + "ora": "^5.4.1", + "picomatch": "^2.3.1", + "postcss": "^8.4.19", + "postcss-discard-duplicates": "^5.1.0", + "postcss-load-config": "^4.0.1", + "postcss-modules": "^6.0.0", + "prettier": "^2.7.1", + "pretty-ms": "^7.0.1", + "proxy-agent": "^5.0.0", + "react-refresh": "^0.14.0", + "recast": "^0.21.5", + "remark-frontmatter": "4.0.1", + "remark-mdx-frontmatter": "^1.0.1", + "semver": "^7.3.7", + "sort-package-json": "^1.55.0", + "tar-fs": "^2.1.1", + "tsconfig-paths": "^4.0.0", + "ws": "^7.4.5", + "xdm": "^2.0.0" + }, + "dependencies": { + "esbuild": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.6.tgz", + "integrity": "sha512-TKFRp9TxrJDdRWfSsSERKEovm6v30iHnrjlcGhLBOtReE28Yp1VSBRfO3GTaOFMoxsNerx4TjrhzSuma9ha83Q==", + "dev": true, + "requires": { + "@esbuild/android-arm": "0.17.6", + "@esbuild/android-arm64": "0.17.6", + "@esbuild/android-x64": "0.17.6", + "@esbuild/darwin-arm64": "0.17.6", + "@esbuild/darwin-x64": "0.17.6", + "@esbuild/freebsd-arm64": "0.17.6", + "@esbuild/freebsd-x64": "0.17.6", + "@esbuild/linux-arm": "0.17.6", + "@esbuild/linux-arm64": "0.17.6", + "@esbuild/linux-ia32": "0.17.6", + "@esbuild/linux-loong64": "0.17.6", + "@esbuild/linux-mips64el": "0.17.6", + "@esbuild/linux-ppc64": "0.17.6", + "@esbuild/linux-riscv64": "0.17.6", + "@esbuild/linux-s390x": "0.17.6", + "@esbuild/linux-x64": "0.17.6", + "@esbuild/netbsd-x64": "0.17.6", + "@esbuild/openbsd-x64": "0.17.6", + "@esbuild/sunos-x64": "0.17.6", + "@esbuild/win32-arm64": "0.17.6", + "@esbuild/win32-ia32": "0.17.6", + "@esbuild/win32-x64": "0.17.6" + } + }, + "postcss": { + "version": "8.4.24", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", + "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", + "dev": true, + "requires": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + }, + "semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + } + } + } + } + }, + "@remix-run/router": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.6.3.tgz", + "integrity": "sha512-EXJysQ7J3veRECd0kZFQwYYd5sJMcq2O/m60zu1W2l3oVQ9xtub8jTOtYRE0+M2iomyG/W3Ps7+vp2kna0C27Q==", + "dev": true + }, + "@remix-run/server-runtime": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/@remix-run/server-runtime/-/server-runtime-1.17.0.tgz", + "integrity": "sha512-xcUXaOibfIFZlvuyuWouz/t3fYhHCqRoKeGxQFGd1BvQBCmPaiau7B1Ao4aJFKyY7eU/L35KCaGzZBTdIF+d5w==", + "dev": true, + "requires": { + "@remix-run/router": "1.6.3", + "@web3-storage/multipart-parser": "^1.0.0", + "cookie": "^0.4.1", + "set-cookie-parser": "^2.4.8", + "source-map": "^0.7.3" + } + }, + "@rollup/pluginutils": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", + "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", + "dev": true, + "requires": { + "estree-walker": "^2.0.1", + "picomatch": "^2.2.2" + } + }, + "@sinclair/typebox": { + "version": "0.25.24", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", + "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "dev": true + }, + "@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "dev": true + }, + "@swc/helpers": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", + "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", + "requires": { + "tslib": "^2.4.0" + } + }, + "@szmarczak/http-timer": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", + "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "dev": true, + "requires": { + "defer-to-connect": "^2.0.0" + } + }, + "@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "dev": true + }, + "@ts-morph/common": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/@ts-morph/common/-/common-0.11.1.tgz", + "integrity": "sha512-7hWZS0NRpEsNV8vWJzg7FEz6V8MaLNeJOmwmghqUXTpzk16V1LLZhdo+4QvE/+zv4cVci0OviuJFnqhEfoV3+g==", + "dev": true, + "requires": { + "fast-glob": "^3.2.7", + "minimatch": "^3.0.4", + "mkdirp": "^1.0.4", + "path-browserify": "^1.0.1" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } + } + }, + "@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true + }, + "@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true + }, + "@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true + }, + "@types/acorn": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz", + "integrity": "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==", + "dev": true, + "requires": { + "@types/estree": "*" + } + }, + "@types/cacheable-request": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", + "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", + "dev": true, + "requires": { + "@types/http-cache-semantics": "*", + "@types/keyv": "^3.1.4", + "@types/node": "*", + "@types/responselike": "^1.0.0" + } + }, + "@types/debug": { + "version": "4.1.8", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.8.tgz", + "integrity": "sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ==", + "dev": true, + "requires": { + "@types/ms": "*" + } + }, + "@types/estree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", + "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", + "dev": true + }, + "@types/estree-jsx": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-0.0.1.tgz", + "integrity": "sha512-gcLAYiMfQklDCPjQegGn0TBAn9it05ISEsEhlKQUddIk7o2XDokOcTN7HBO8tznM0D9dGezvHEfRZBfZf6me0A==", + "dev": true, + "requires": { + "@types/estree": "*" + } + }, + "@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "@types/hast": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.4.tgz", + "integrity": "sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==", + "dev": true, + "requires": { + "@types/unist": "*" + } + }, + "@types/http-cache-semantics": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", + "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==", + "dev": true + }, + "@types/json-schema": { + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", + "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", + "dev": true + }, + "@types/keyv": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", + "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/mdast": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.11.tgz", + "integrity": "sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==", + "dev": true, + "requires": { + "@types/unist": "*" + } + }, + "@types/mdurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.2.tgz", + "integrity": "sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==", + "dev": true + }, + "@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", + "dev": true + }, + "@types/ms": { + "version": "0.7.31", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz", + "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==", + "dev": true + }, + "@types/node": { + "version": "20.3.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.1.tgz", + "integrity": "sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg==", + "dev": true + }, + "@types/node-fetch": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", + "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", + "dev": true, + "requires": { + "@types/node": "*", + "form-data": "^3.0.0" + } + }, + "@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", + "dev": true + }, + "@types/react": { + "version": "18.2.13", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.13.tgz", + "integrity": "sha512-vJ+zElvi/Zn9cVXB5slX2xL8PZodPCwPRDpittQdw43JR2AJ5k3vKdgJJyneV/cYgIbLQUwXa9JVDvUZXGba+Q==", + "dev": true, + "requires": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "@types/react-dom": { + "version": "18.2.6", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.6.tgz", + "integrity": "sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==", + "dev": true, + "requires": { + "@types/react": "*" + } + }, + "@types/responselike": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", + "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/scheduler": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", + "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==", + "dev": true + }, + "@types/unist": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", + "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==", + "dev": true + }, + "@vanilla-extract/babel-plugin-debug-ids": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@vanilla-extract/babel-plugin-debug-ids/-/babel-plugin-debug-ids-1.0.3.tgz", + "integrity": "sha512-vm4jYu1xhSa6ofQ9AhIpR3DkAp4c+eoR1Rpm8/TQI4DmWbmGbOjYRcqV0aWsfaIlNhN4kFuxFMKBNN9oG6iRzA==", + "dev": true, + "requires": { + "@babel/core": "^7.20.7" + } + }, + "@vanilla-extract/css": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/@vanilla-extract/css/-/css-1.12.0.tgz", + "integrity": "sha512-TEttZfnqTRtwgVYiBWQSGGUiVaYWReHp59DsavITEvh4TpJNifZFGhBznHx4wQFEsyio6xA513jps4tmqR6zmw==", + "dev": true, + "requires": { + "@emotion/hash": "^0.9.0", + "@vanilla-extract/private": "^1.0.3", + "ahocorasick": "1.0.2", + "chalk": "^4.1.1", + "css-what": "^6.1.0", + "cssesc": "^3.0.0", + "csstype": "^3.0.7", + "deep-object-diff": "^1.1.9", + "deepmerge": "^4.2.2", + "media-query-parser": "^2.0.2", + "outdent": "^0.8.0" + } + }, + "@vanilla-extract/integration": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/@vanilla-extract/integration/-/integration-6.2.1.tgz", + "integrity": "sha512-+xYJz07G7TFAMZGrOqArOsURG+xcYvqctujEkANjw2McCBvGEK505RxQqOuNiA9Mi9hgGdNp2JedSa94f3eoLg==", + "dev": true, + "requires": { + "@babel/core": "^7.20.7", + "@babel/plugin-syntax-typescript": "^7.20.0", + "@vanilla-extract/babel-plugin-debug-ids": "^1.0.2", + "@vanilla-extract/css": "^1.10.0", + "esbuild": "0.17.6", + "eval": "0.1.6", + "find-up": "^5.0.0", + "javascript-stringify": "^2.0.1", + "lodash": "^4.17.21", + "mlly": "^1.1.0", + "outdent": "^0.8.0", + "vite": "^4.1.4", + "vite-node": "^0.28.5" + }, + "dependencies": { + "esbuild": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.6.tgz", + "integrity": "sha512-TKFRp9TxrJDdRWfSsSERKEovm6v30iHnrjlcGhLBOtReE28Yp1VSBRfO3GTaOFMoxsNerx4TjrhzSuma9ha83Q==", + "dev": true, + "requires": { + "@esbuild/android-arm": "0.17.6", + "@esbuild/android-arm64": "0.17.6", + "@esbuild/android-x64": "0.17.6", + "@esbuild/darwin-arm64": "0.17.6", + "@esbuild/darwin-x64": "0.17.6", + "@esbuild/freebsd-arm64": "0.17.6", + "@esbuild/freebsd-x64": "0.17.6", + "@esbuild/linux-arm": "0.17.6", + "@esbuild/linux-arm64": "0.17.6", + "@esbuild/linux-ia32": "0.17.6", + "@esbuild/linux-loong64": "0.17.6", + "@esbuild/linux-mips64el": "0.17.6", + "@esbuild/linux-ppc64": "0.17.6", + "@esbuild/linux-riscv64": "0.17.6", + "@esbuild/linux-s390x": "0.17.6", + "@esbuild/linux-x64": "0.17.6", + "@esbuild/netbsd-x64": "0.17.6", + "@esbuild/openbsd-x64": "0.17.6", + "@esbuild/sunos-x64": "0.17.6", + "@esbuild/win32-arm64": "0.17.6", + "@esbuild/win32-ia32": "0.17.6", + "@esbuild/win32-x64": "0.17.6" + } + } + } + }, + "@vanilla-extract/private": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@vanilla-extract/private/-/private-1.0.3.tgz", + "integrity": "sha512-17kVyLq3ePTKOkveHxXuIJZtGYs+cSoev7BlP+Lf4916qfDhk/HBjvlYDe8egrea7LNPHKwSZJK/bzZC+Q6AwQ==", + "dev": true + }, + "@vercel/build-utils": { + "version": "6.7.5", + "resolved": "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-6.7.5.tgz", + "integrity": "sha512-nzglYEz9BvZH0lptfTtTVDDD3Dyn31gnBGChOUT7J1jkzlMT1IReuysgJPisaWk4v92Ax5SpZL35I0lOQdfKwQ==", + "dev": true + }, + "@vercel/error-utils": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@vercel/error-utils/-/error-utils-1.0.10.tgz", + "integrity": "sha512-nsKy2sy+pjUWyKI1V/XXKspVzHMYgSalmj5+EsKWFXZbnNZicqxNtMR94J8Hs7SB4TQxh0s4KhczJtL59AVGMg==", + "dev": true + }, + "@vercel/gatsby-plugin-vercel-analytics": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-analytics/-/gatsby-plugin-vercel-analytics-1.0.10.tgz", + "integrity": "sha512-v329WHdtIce+y7oAmaWRvEx59Xfo0FxlQqK4BJG0u6VWYoKWPaflohDAiehIZf/YHCRVb59ZxnzmMOcm/LR8YQ==", + "dev": true, + "requires": { + "@babel/runtime": "7.12.1", + "web-vitals": "0.2.4" + } + }, + "@vercel/gatsby-plugin-vercel-builder": { + "version": "1.3.10", + "resolved": "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.10.tgz", + "integrity": "sha512-LtmjAUrH+1G4ryyjCCqITvPivEFb6qby7rVGRplb+rtI5RrT/igqz95FrAC70+xpSVsqz4nu3j15NkEIR3woog==", + "dev": true, + "requires": { + "@sinclair/typebox": "0.25.24", + "@vercel/build-utils": "6.7.5", + "@vercel/node": "2.15.2", + "@vercel/routing-utils": "2.2.1", + "esbuild": "0.14.47", + "etag": "1.8.1", + "fs-extra": "11.1.0" + }, + "dependencies": { + "fs-extra": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", + "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + } + } + }, + "@vercel/go": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@vercel/go/-/go-2.5.1.tgz", + "integrity": "sha512-yZGzzGmVXt2Rsy1cR0EDbst0fMhdELQY8c3jXy6/FTWJFG1e/40JYksu+WiRCxRBp8e7zfcxMrv0dN8JWRmbPQ==", + "dev": true + }, + "@vercel/hydrogen": { + "version": "0.0.64", + "resolved": "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-0.0.64.tgz", + "integrity": "sha512-1rzFB664G6Yzp7j4ezW9hvVjqnaU2BhyUdhchbsxtRuxkMpGgPBZKhjzRQHFvlmkz37XLC658T5Nb1P91b4sBw==", + "dev": true + }, + "@vercel/next": { + "version": "3.8.6", + "resolved": "https://registry.npmjs.org/@vercel/next/-/next-3.8.6.tgz", + "integrity": "sha512-q+BxVLAfKFjTcak+z3U0SvYpgsnF8spu3Wz0GdRSVHiZpd1TtmIIp5r5RT5WVJLt4NNgmD4KxLNbvXhwjxOFKA==", + "dev": true + }, + "@vercel/nft": { + "version": "0.22.5", + "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.22.5.tgz", + "integrity": "sha512-mug57Wd1BL7GMj9gXMgMeKUjdqO0e4u+0QLPYMFE1rwdJ+55oPy6lp3nIBCS8gOvigT62UI4QKUL2sGqcoW4Hw==", + "dev": true, + "requires": { + "@mapbox/node-pre-gyp": "^1.0.5", + "@rollup/pluginutils": "^4.0.0", + "acorn": "^8.6.0", + "async-sema": "^3.1.1", + "bindings": "^1.4.0", + "estree-walker": "2.0.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.2", + "node-gyp-build": "^4.2.2", + "resolve-from": "^5.0.0" + } + }, + "@vercel/node": { + "version": "2.15.2", + "resolved": "https://registry.npmjs.org/@vercel/node/-/node-2.15.2.tgz", + "integrity": "sha512-1Dn4hdQY/ErHXOB0+h3I0zIlqAb6/2LRBi+8Od+MYG8ooGKkTsK+j9IPWVBWn6ycBsM0eeNTIhqgYSGTYbMjMw==", + "dev": true, + "requires": { + "@edge-runtime/node-utils": "2.0.3", + "@edge-runtime/primitives": "2.1.2", + "@edge-runtime/vm": "3.0.1", + "@types/node": "14.18.33", + "@types/node-fetch": "2.6.3", + "@vercel/build-utils": "6.7.5", + "@vercel/error-utils": "1.0.10", + "@vercel/static-config": "2.0.17", + "async-listen": "3.0.0", + "edge-runtime": "2.4.3", + "esbuild": "0.14.47", + "exit-hook": "2.2.1", + "node-fetch": "2.6.9", + "path-to-regexp": "6.2.1", + "ts-morph": "12.0.0", + "ts-node": "10.9.1", + "typescript": "4.9.5" + }, + "dependencies": { + "@edge-runtime/primitives": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-2.1.2.tgz", + "integrity": "sha512-SR04SMDybALlhIYIi0hiuEUwIl0b7Sn+RKwQkX6hydg4+AKMzBNDFhj2nqHDD1+xkHArV9EhmJIb6iGjShwSzg==", + "dev": true + }, + "@edge-runtime/vm": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.1.tgz", + "integrity": "sha512-69twXLIcqVx0iNlc1vFqnXgka2CZi2c/QBAmMzXBk0M6mPG+ICCBh2dd+cv1K+HW2pfLuSW+EskkFXWGeCf1Vw==", + "dev": true, + "requires": { + "@edge-runtime/primitives": "3.0.1" + }, + "dependencies": { + "@edge-runtime/primitives": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.1.tgz", + "integrity": "sha512-l5NNDcPkKW4N6qRmB8zzpCF6uRW1S808V/zm72z7b/aWwZUYbmEPPkzyhGAW0aQxLU1pGdZ8u2gNjamdaU6RXw==", + "dev": true + } + } + }, + "@types/node": { + "version": "14.18.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.33.tgz", + "integrity": "sha512-qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg==", + "dev": true + }, + "edge-runtime": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.4.3.tgz", + "integrity": "sha512-Amv/P+OJhxopvoVXFr7UXAKheBpdLeCcdR5Vw4GSdNFDWVny9sioQbczjEKPLER5WsMXl17P+llS011Xftducw==", + "dev": true, + "requires": { + "@edge-runtime/format": "2.1.0", + "@edge-runtime/vm": "3.0.3", + "async-listen": "3.0.0", + "mri": "1.2.0", + "picocolors": "1.0.0", + "pretty-bytes": "5.6.0", + "pretty-ms": "7.0.1", + "signal-exit": "4.0.2", + "time-span": "4.0.0" + }, + "dependencies": { + "@edge-runtime/primitives": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.3.tgz", + "integrity": "sha512-YnfMWMRQABAH8IsnFMJWMW+SyB4ZeYBPnR7V0aqdnew7Pq60cbH5DyFjS/FhiLwvHQk9wBREmXD7PP0HooEQ1A==", + "dev": true + }, + "@edge-runtime/vm": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.3.tgz", + "integrity": "sha512-SPfI1JeIRNs/4EEE2Oc0X6gG3RqjD1TnKu2lwmwFXq0435xgZGKhc3UiKkYAdoMn2dNFD73nlabMKHBRoMRpxg==", + "dev": true, + "requires": { + "@edge-runtime/primitives": "3.0.3" + } + } + } + }, + "typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "dev": true + } + } + }, + "@vercel/python": { + "version": "3.1.60", + "resolved": "https://registry.npmjs.org/@vercel/python/-/python-3.1.60.tgz", + "integrity": "sha512-1aYinyTfejS8Us+sOum+RQPYcre0vF3XoL7ohL170ZCcHA0l35qV0b1slGAmLt3pqaHKYy3g/nkzUhuR8XXIrQ==", + "dev": true + }, + "@vercel/redwood": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/@vercel/redwood/-/redwood-1.1.15.tgz", + "integrity": "sha512-j0XaXe4ZpGVHG7XQSmZ3kza6s+ZtOBfRhnSxA70yCkrvPNN3tZgF3fevSKXizfL9fzVDd7Tdj++SCGWMdGfsyA==", + "dev": true, + "requires": { + "@vercel/nft": "0.22.5", + "@vercel/routing-utils": "2.2.1", + "semver": "6.1.1" + } + }, + "@vercel/remix-builder": { + "version": "1.8.14", + "resolved": "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-1.8.14.tgz", + "integrity": "sha512-4CnYxCv6rgRxyXGnpGySf+K2rihLgTkMKN9pYJKQJh/VmlBcxqYP9tndDEH8sYtDsdUZuSfuX3ecajGuqb/wPA==", + "dev": true, + "requires": { + "@remix-run/dev": "npm:@vercel/remix-run-dev@1.17.0", + "@vercel/build-utils": "6.7.5", + "@vercel/nft": "0.22.5", + "@vercel/static-config": "2.0.17", + "path-to-regexp": "6.2.1", + "semver": "7.3.8", + "ts-morph": "12.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@vercel/routing-utils": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@vercel/routing-utils/-/routing-utils-2.2.1.tgz", + "integrity": "sha512-kzMZsvToDCDskNRZD71B9UAgstec7ujmlGH8cBEo6F/07VaFeji6GQdgd6Zwnrj+TvzQBggKoPQR64VkVY8Lzw==", + "dev": true, + "requires": { + "ajv": "^6.0.0", + "path-to-regexp": "6.1.0" + }, + "dependencies": { + "path-to-regexp": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.1.0.tgz", + "integrity": "sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==", + "dev": true + } + } + }, + "@vercel/ruby": { + "version": "1.3.76", + "resolved": "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.76.tgz", + "integrity": "sha512-J8I0B7wAn8piGoPhBroBfJWgMEJTMEL/2o8MCoCyWdaE7MRtpXhI10pj8IvcUvAECoGJ+SM1Pm+SvBqtbtZ5FQ==", + "dev": true + }, + "@vercel/static-build": { + "version": "1.3.37", + "resolved": "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.3.37.tgz", + "integrity": "sha512-AkmWV8sqXUqkVj4F7vt7LZ9cRfO57U7he23l3xvykD/xV2ufsuLxwgIS9idM5AeqVh7juJNuTJq+ObIht6OgLw==", + "dev": true, + "requires": { + "@vercel/gatsby-plugin-vercel-analytics": "1.0.10", + "@vercel/gatsby-plugin-vercel-builder": "1.3.10" + } + }, + "@vercel/static-config": { + "version": "2.0.17", + "resolved": "https://registry.npmjs.org/@vercel/static-config/-/static-config-2.0.17.tgz", + "integrity": "sha512-2f50OTVrN07x7pH+XNW0e7cj7T+Ufg+19+a2N3/XZBjQmV+FaMlmSLiaQ4tBxp2H8lWWHzENua7ZSSQPtRZ3/A==", + "dev": true, + "requires": { + "ajv": "8.6.3", + "json-schema-to-ts": "1.6.4", + "ts-morph": "12.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.6.3", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.6.3.tgz", + "integrity": "sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + } + } + }, + "@vue/compiler-core": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.4.tgz", + "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==", + "peer": true, + "requires": { + "@babel/parser": "^7.21.3", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "source-map-js": "^1.0.2" + } + }, + "@vue/compiler-dom": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz", + "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==", + "peer": true, + "requires": { + "@vue/compiler-core": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "@vue/compiler-sfc": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz", + "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==", + "peer": true, + "requires": { + "@babel/parser": "^7.20.15", + "@vue/compiler-core": "3.3.4", + "@vue/compiler-dom": "3.3.4", + "@vue/compiler-ssr": "3.3.4", + "@vue/reactivity-transform": "3.3.4", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.0", + "postcss": "^8.1.10", + "source-map-js": "^1.0.2" + } + }, + "@vue/compiler-ssr": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz", + "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==", + "peer": true, + "requires": { + "@vue/compiler-dom": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "@vue/reactivity": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.4.tgz", + "integrity": "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==", + "peer": true, + "requires": { + "@vue/shared": "3.3.4" + } + }, + "@vue/reactivity-transform": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz", + "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==", + "peer": true, + "requires": { + "@babel/parser": "^7.20.15", + "@vue/compiler-core": "3.3.4", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.0" + } + }, + "@vue/runtime-core": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.4.tgz", + "integrity": "sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==", + "peer": true, + "requires": { + "@vue/reactivity": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "@vue/runtime-dom": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz", + "integrity": "sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==", + "peer": true, + "requires": { + "@vue/runtime-core": "3.3.4", + "@vue/shared": "3.3.4", + "csstype": "^3.1.1" + } + }, + "@vue/server-renderer": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.4.tgz", + "integrity": "sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==", + "peer": true, + "requires": { + "@vue/compiler-ssr": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "@vue/shared": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz", + "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==", + "peer": true + }, + "@web3-storage/multipart-parser": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@web3-storage/multipart-parser/-/multipart-parser-1.0.0.tgz", + "integrity": "sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw==", + "dev": true + }, + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true + }, + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "acorn": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", + "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", + "dev": true + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "requires": {} + }, + "acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true + }, + "agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "requires": { + "debug": "4" + } + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ahocorasick": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/ahocorasick/-/ahocorasick-1.0.2.tgz", + "integrity": "sha512-hCOfMzbFx5IDutmWLAt6MZwOUjIfSM9G9FyVxytmE4Rs/5YDPWQrD/+IR1w+FweD9H2oOZEnv36TmkjhNURBVA==", + "dev": true + }, + "ai": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/ai/-/ai-2.1.9.tgz", + "integrity": "sha512-PiDWO/5lFvnbEziJjl+4CE44jg4weknJuW5VZAQQ4PDyFnDjxoCMkSJ95zEatX3qrYZfRP6zXHkmy+/OqwclfA==", + "requires": { + "eventsource-parser": "1.0.0", + "nanoid": "^3.3.6", + "sswr": "^1.10.0", + "swr": "2.1.5", + "swrv": "1.0.3" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "optional": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", + "dev": true + }, + "are-we-there-yet": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", + "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", + "dev": true, + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + } + }, + "arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "ast-types": { + "version": "0.13.4", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", + "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", + "dev": true, + "requires": { + "tslib": "^2.0.1" + } + }, + "astring": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/astring/-/astring-1.8.6.tgz", + "integrity": "sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==", + "dev": true + }, + "async-listen": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/async-listen/-/async-listen-3.0.0.tgz", + "integrity": "sha512-V+SsTpDqkrWTimiotsyl33ePSjA5/KrithwupuvJ6ztsqPvGv6ge4OredFhPffVXiLN/QUWvE0XcqJaYgt6fOg==", + "dev": true + }, + "async-sema": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz", + "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==", + "dev": true + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.3.tgz", + "integrity": "sha512-bM3gHc337Dta490gg+/AseNB9L4YLHxq1nGKZZSHbhXv4aTYU2MD2cjza1Ru4S6975YLTaL1K8uJf6ukJhhmtw==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-define-polyfill-provider": "^0.4.0", + "semver": "^6.1.1" + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.1.tgz", + "integrity": "sha512-ikFrZITKg1xH6pLND8zT14UPgjKHiGLqex7rGEZCH2EvhsneJaJPemmpQaIZV5AL03II+lXylw3UmddDK8RU5Q==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.4.0", + "core-js-compat": "^3.30.1" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.0.tgz", + "integrity": "sha512-hDJtKjMLVa7Z+LwnTCxoDLQj6wdc+B8dun7ayF2fYieI6OzfuvcLMB32ihJZ4UhCBwNYGl5bg/x/P9cMdnkc2g==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.4.0" + } + }, + "bail": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "dev": true + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "dev": true, + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "browserify-zlib": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz", + "integrity": "sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==", + "dev": true, + "requires": { + "pako": "~0.2.0" + } + }, + "browserslist": { + "version": "4.21.9", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", + "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001503", + "electron-to-chromium": "^1.4.431", + "node-releases": "^2.0.12", + "update-browserslist-db": "^1.0.11" + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "requires": { + "streamsearch": "^1.1.0" + } + }, + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true + }, + "cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true + }, + "cacache": { + "version": "15.3.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", + "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", + "dev": true, + "requires": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "cacheable-lookup": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", + "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "dev": true + }, + "cacheable-request": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", + "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", + "dev": true, + "requires": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^6.0.1", + "responselike": "^2.0.0" + }, + "dependencies": { + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "caniuse-lite": { + "version": "1.0.30001509", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001509.tgz", + "integrity": "sha512-2uDDk+TRiTX5hMcUYT/7CSyzMZxjfGu0vAUjS2g0LSD8UoXOv0LtpH4LxGMemsiPq6LCVIUjNwVM0erkOkGCDA==" + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "character-entities": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "dev": true + }, + "character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "dev": true + }, + "character-entities-legacy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "dev": true + }, + "character-reference-invalid": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", + "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", + "dev": true + }, + "chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cli-spinners": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.0.tgz", + "integrity": "sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==", + "dev": true + }, + "cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true + }, + "client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" + }, + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "dev": true + }, + "clone-response": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "dev": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, + "code-block-writer": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-10.1.1.tgz", + "integrity": "sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==", + "dev": true + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", + "dev": true + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "requires": { + "safe-buffer": "5.2.1" + } + }, + "content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true + }, + "convert-hrtime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-3.0.0.tgz", + "integrity": "sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA==", + "dev": true + }, + "convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "cookie": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", + "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", + "dev": true + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "core-js-compat": { + "version": "3.31.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.31.0.tgz", + "integrity": "sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==", + "dev": true, + "requires": { + "browserslist": "^4.21.5" + } + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true + }, + "csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "data-uri-to-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz", + "integrity": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==", + "dev": true + }, + "deasync": { + "version": "0.1.28", + "resolved": "https://registry.npmjs.org/deasync/-/deasync-0.1.28.tgz", + "integrity": "sha512-QqLF6inIDwiATrfROIyQtwOQxjZuek13WRYZ7donU5wJPLoP67MnYxA6QtqdvdBy2mMqv5m3UefBVdJjvevOYg==", + "dev": true, + "optional": true, + "requires": { + "bindings": "^1.5.0", + "node-addon-api": "^1.7.1" + } + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "decode-named-character-reference": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", + "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", + "dev": true, + "requires": { + "character-entities": "^2.0.0" + } + }, + "decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dev": true, + "requires": { + "mimic-response": "^3.1.0" + }, + "dependencies": { + "mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "dev": true + } + } + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "deep-object-diff": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/deep-object-diff/-/deep-object-diff-1.1.9.tgz", + "integrity": "sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==", + "dev": true + }, + "deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true + }, + "defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "dev": true, + "requires": { + "clone": "^1.0.2" + } + }, + "defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "dev": true + }, + "degenerator": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-3.0.4.tgz", + "integrity": "sha512-Z66uPeBfHZAHVmue3HPfyKu2Q0rC2cRxbTOsvmU/po5fvvcx27W4mIu9n0PUlQih4oUYvcG1BsbtVv8x7KDOSw==", + "dev": true, + "requires": { + "ast-types": "^0.13.2", + "escodegen": "^1.8.1", + "esprima": "^4.0.0", + "vm2": "^3.9.17" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true + }, + "delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "dev": true + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true + }, + "dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "dev": true + }, + "destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true + }, + "detect-indent": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", + "dev": true + }, + "detect-libc": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", + "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", + "dev": true + }, + "detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true + }, + "diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "dotenv": { + "version": "16.3.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", + "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", + "dev": true + }, + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "edge-runtime": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.4.4.tgz", + "integrity": "sha512-uq1YdIxkMDsBYLdSSp/w62PciCL46ic4m1Z/2G6N8RcAPI8p35O8u6hJQT83j28Dnt4U5iyvmwFMYouHMK51uA==", + "dev": true, + "requires": { + "@edge-runtime/format": "2.1.0", + "@edge-runtime/vm": "3.0.3", + "async-listen": "3.0.0", + "mri": "1.2.0", + "picocolors": "1.0.0", + "pretty-bytes": "5.6.0", + "pretty-ms": "7.0.1", + "signal-exit": "4.0.2", + "time-span": "4.0.0" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "electron-to-chromium": { + "version": "1.4.445", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.445.tgz", + "integrity": "sha512-++DB+9VK8SBJwC+X1zlMfJ1tMA3F0ipi39GdEp+x3cV2TyBihqAgad8cNMWtLDEkbH39nlDQP7PfGrDr3Dr7HA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "esbuild": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.47.tgz", + "integrity": "sha512-wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA==", + "dev": true, + "requires": { + "esbuild-android-64": "0.14.47", + "esbuild-android-arm64": "0.14.47", + "esbuild-darwin-64": "0.14.47", + "esbuild-darwin-arm64": "0.14.47", + "esbuild-freebsd-64": "0.14.47", + "esbuild-freebsd-arm64": "0.14.47", + "esbuild-linux-32": "0.14.47", + "esbuild-linux-64": "0.14.47", + "esbuild-linux-arm": "0.14.47", + "esbuild-linux-arm64": "0.14.47", + "esbuild-linux-mips64le": "0.14.47", + "esbuild-linux-ppc64le": "0.14.47", + "esbuild-linux-riscv64": "0.14.47", + "esbuild-linux-s390x": "0.14.47", + "esbuild-netbsd-64": "0.14.47", + "esbuild-openbsd-64": "0.14.47", + "esbuild-sunos-64": "0.14.47", + "esbuild-windows-32": "0.14.47", + "esbuild-windows-64": "0.14.47", + "esbuild-windows-arm64": "0.14.47" + } + }, + "esbuild-android-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.47.tgz", + "integrity": "sha512-R13Bd9+tqLVFndncMHssZrPWe6/0Kpv2/dt4aA69soX4PRxlzsVpCvoJeFE8sOEoeVEiBkI0myjlkDodXlHa0g==", + "dev": true, + "optional": true + }, + "esbuild-android-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.47.tgz", + "integrity": "sha512-OkwOjj7ts4lBp/TL6hdd8HftIzOy/pdtbrNA4+0oVWgGG64HrdVzAF5gxtJufAPOsEjkyh1oIYvKAUinKKQRSQ==", + "dev": true, + "optional": true + }, + "esbuild-darwin-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.47.tgz", + "integrity": "sha512-R6oaW0y5/u6Eccti/TS6c/2c1xYTb1izwK3gajJwi4vIfNs1s8B1dQzI1UiC9T61YovOQVuePDcfqHLT3mUZJA==", + "dev": true, + "optional": true + }, + "esbuild-darwin-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.47.tgz", + "integrity": "sha512-seCmearlQyvdvM/noz1L9+qblC5vcBrhUaOoLEDDoLInF/VQ9IkobGiLlyTPYP5dW1YD4LXhtBgOyevoIHGGnw==", + "dev": true, + "optional": true + }, + "esbuild-freebsd-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.47.tgz", + "integrity": "sha512-ZH8K2Q8/Ux5kXXvQMDsJcxvkIwut69KVrYQhza/ptkW50DC089bCVrJZZ3sKzIoOx+YPTrmsZvqeZERjyYrlvQ==", + "dev": true, + "optional": true + }, + "esbuild-freebsd-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.47.tgz", + "integrity": "sha512-ZJMQAJQsIOhn3XTm7MPQfCzEu5b9STNC+s90zMWe2afy9EwnHV7Ov7ohEMv2lyWlc2pjqLW8QJnz2r0KZmeAEQ==", + "dev": true, + "optional": true + }, + "esbuild-linux-32": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.47.tgz", + "integrity": "sha512-FxZOCKoEDPRYvq300lsWCTv1kcHgiiZfNrPtEhFAiqD7QZaXrad8LxyJ8fXGcWzIFzRiYZVtB3ttvITBvAFhKw==", + "dev": true, + "optional": true + }, + "esbuild-linux-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.47.tgz", + "integrity": "sha512-nFNOk9vWVfvWYF9YNYksZptgQAdstnDCMtR6m42l5Wfugbzu11VpMCY9XrD4yFxvPo9zmzcoUL/88y0lfJZJJw==", + "dev": true, + "optional": true + }, + "esbuild-linux-arm": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.47.tgz", + "integrity": "sha512-ZGE1Bqg/gPRXrBpgpvH81tQHpiaGxa8c9Rx/XOylkIl2ypLuOcawXEAo8ls+5DFCcRGt/o3sV+PzpAFZobOsmA==", + "dev": true, + "optional": true + }, + "esbuild-linux-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.47.tgz", + "integrity": "sha512-ywfme6HVrhWcevzmsufjd4iT3PxTfCX9HOdxA7Hd+/ZM23Y9nXeb+vG6AyA6jgq/JovkcqRHcL9XwRNpWG6XRw==", + "dev": true, + "optional": true + }, + "esbuild-linux-mips64le": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.47.tgz", + "integrity": "sha512-mg3D8YndZ1LvUiEdDYR3OsmeyAew4MA/dvaEJxvyygahWmpv1SlEEnhEZlhPokjsUMfRagzsEF/d/2XF+kTQGg==", + "dev": true, + "optional": true + }, + "esbuild-linux-ppc64le": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.47.tgz", + "integrity": "sha512-WER+f3+szmnZiWoK6AsrTKGoJoErG2LlauSmk73LEZFQ/iWC+KhhDsOkn1xBUpzXWsxN9THmQFltLoaFEH8F8w==", + "dev": true, + "optional": true + }, + "esbuild-linux-riscv64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.47.tgz", + "integrity": "sha512-1fI6bP3A3rvI9BsaaXbMoaOjLE3lVkJtLxsgLHqlBhLlBVY7UqffWBvkrX/9zfPhhVMd9ZRFiaqXnB1T7BsL2g==", + "dev": true, + "optional": true + }, + "esbuild-linux-s390x": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.47.tgz", + "integrity": "sha512-eZrWzy0xFAhki1CWRGnhsHVz7IlSKX6yT2tj2Eg8lhAwlRE5E96Hsb0M1mPSE1dHGpt1QVwwVivXIAacF/G6mw==", + "dev": true, + "optional": true + }, + "esbuild-netbsd-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.47.tgz", + "integrity": "sha512-Qjdjr+KQQVH5Q2Q1r6HBYswFTToPpss3gqCiSw2Fpq/ua8+eXSQyAMG+UvULPqXceOwpnPo4smyZyHdlkcPppQ==", + "dev": true, + "optional": true + }, + "esbuild-openbsd-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.47.tgz", + "integrity": "sha512-QpgN8ofL7B9z8g5zZqJE+eFvD1LehRlxr25PBkjyyasakm4599iroUpaj96rdqRlO2ShuyqwJdr+oNqWwTUmQw==", + "dev": true, + "optional": true + }, + "esbuild-plugin-polyfill-node": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/esbuild-plugin-polyfill-node/-/esbuild-plugin-polyfill-node-0.2.0.tgz", + "integrity": "sha512-rpCoK4mag0nehBtFlFMLSuL9bNBLEh8h3wZ/FsrJEDompA/AwOqInx6Xow01+CXAcvZYhkoJ0SIZiS37qkecDA==", + "dev": true, + "requires": { + "@jspm/core": "^2.0.1", + "import-meta-resolve": "^2.2.2" + } + }, + "esbuild-sunos-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.47.tgz", + "integrity": "sha512-uOeSgLUwukLioAJOiGYm3kNl+1wJjgJA8R671GYgcPgCx7QR73zfvYqXFFcIO93/nBdIbt5hd8RItqbbf3HtAQ==", + "dev": true, + "optional": true + }, + "esbuild-windows-32": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.47.tgz", + "integrity": "sha512-H0fWsLTp2WBfKLBgwYT4OTfFly4Im/8B5f3ojDv1Kx//kiubVY0IQunP2Koc/fr/0wI7hj3IiBDbSrmKlrNgLQ==", + "dev": true, + "optional": true + }, + "esbuild-windows-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.47.tgz", + "integrity": "sha512-/Pk5jIEH34T68r8PweKRi77W49KwanZ8X6lr3vDAtOlH5EumPE4pBHqkCUdELanvsT14yMXLQ/C/8XPi1pAtkQ==", + "dev": true, + "optional": true + }, + "esbuild-windows-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.47.tgz", + "integrity": "sha512-HFSW2lnp62fl86/qPQlqw6asIwCnEsEoNIL1h2uVMgakddf+vUuMcCbtUY1i8sst7KkgHrVKCJQB33YhhOweCQ==", + "dev": true, + "optional": true + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dev": true, + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true + } + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + }, + "estree-util-attach-comments": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-2.1.1.tgz", + "integrity": "sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==", + "dev": true, + "requires": { + "@types/estree": "^1.0.0" + } + }, + "estree-util-build-jsx": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-2.2.2.tgz", + "integrity": "sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==", + "dev": true, + "requires": { + "@types/estree-jsx": "^1.0.0", + "estree-util-is-identifier-name": "^2.0.0", + "estree-walker": "^3.0.0" + }, + "dependencies": { + "@types/estree-jsx": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", + "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", + "dev": true, + "requires": { + "@types/estree": "*" + } + }, + "estree-util-is-identifier-name": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", + "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", + "dev": true + }, + "estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "requires": { + "@types/estree": "^1.0.0" + } + } + } + }, + "estree-util-is-identifier-name": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-1.1.0.tgz", + "integrity": "sha512-OVJZ3fGGt9By77Ix9NhaRbzfbDV/2rx9EP7YIDJTmsZSEc5kYn2vWcNccYyahJL2uAQZK2a5Or2i0wtIKTPoRQ==", + "dev": true + }, + "estree-util-value-to-estree": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/estree-util-value-to-estree/-/estree-util-value-to-estree-1.3.0.tgz", + "integrity": "sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==", + "dev": true, + "requires": { + "is-plain-obj": "^3.0.0" + } + }, + "estree-util-visit": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-1.2.1.tgz", + "integrity": "sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==", + "dev": true, + "requires": { + "@types/estree-jsx": "^1.0.0", + "@types/unist": "^2.0.0" + }, + "dependencies": { + "@types/estree-jsx": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", + "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", + "dev": true, + "requires": { + "@types/estree": "*" + } + } + } + }, + "estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true + }, + "eval": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/eval/-/eval-0.1.6.tgz", + "integrity": "sha512-o0XUw+5OGkXw4pJZzQoXUk+H87DHuC+7ZE//oSrRGtatTmr12oTnLfg6QOq9DyTt0c/p4TwzgmkKrBzWTSizyQ==", + "dev": true, + "requires": { + "require-like": ">= 0.1.1" + } + }, + "eventsource-parser": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-1.0.0.tgz", + "integrity": "sha512-9jgfSCa3dmEme2ES3mPByGXfgZ87VbP97tng1G2nWwWx6bV2nYxm2AWCrbQjXToSe+yYlqaZNtxffR9IeQr95g==" + }, + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "dependencies": { + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + } + } + }, + "exit-hook": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-2.2.1.tgz", + "integrity": "sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==", + "dev": true + }, + "express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "dev": true, + "requires": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + } + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-glob": { + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "optional": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "fault": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fault/-/fault-2.0.1.tgz", + "integrity": "sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==", + "dev": true, + "requires": { + "format": "^0.2.0" + } + }, + "figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "format": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz", + "integrity": "sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==", + "dev": true + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true + }, + "fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, + "fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "ftp": { + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz", + "integrity": "sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ==", + "dev": true, + "requires": { + "readable-stream": "1.1.x", + "xregexp": "2.0.0" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "dev": true + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", + "dev": true + } + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "gauge": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", + "dev": true, + "requires": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" + }, + "dependencies": { + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + } + } + }, + "generic-names": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/generic-names/-/generic-names-4.0.0.tgz", + "integrity": "sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==", + "dev": true, + "requires": { + "loader-utils": "^3.2.0" + } + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true + }, + "get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + } + }, + "get-port": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", + "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==", + "dev": true + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true + }, + "get-uri": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-3.0.2.tgz", + "integrity": "sha512-+5s0SJbGoyiJTZZ2JTpFPLMPSch72KEqGOTvQsBqg0RBWvwhWUSYZFAtz3TPW0GXJuLBJPts1E241iHg+VRfhg==", + "dev": true, + "requires": { + "@tootallnate/once": "1", + "data-uri-to-buffer": "3", + "debug": "4", + "file-uri-to-path": "2", + "fs-extra": "^8.1.0", + "ftp": "^0.3.10" + }, + "dependencies": { + "file-uri-to-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-2.0.0.tgz", + "integrity": "sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==", + "dev": true + }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + } + } + }, + "git-hooks-list": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/git-hooks-list/-/git-hooks-list-1.0.3.tgz", + "integrity": "sha512-Y7wLWcrLUXwk2noSka166byGCvhMtDRpgHdzCno1UQv/n/Hegp++a2xBWJL1lJarnKD3SWaljD+0z1ztqxuKyQ==", + "dev": true + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + }, + "globby": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.0.tgz", + "integrity": "sha512-3LifW9M4joGZasyYPz2A1U74zbC/45fvpXUvO/9KbSa+VV0aGZarWkfdgKyR9sExNP0t0x0ss/UMJpNpcaTspw==", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "glob": "^7.1.3", + "ignore": "^5.1.1", + "merge2": "^1.2.3", + "slash": "^3.0.0" + } + }, + "got": { + "version": "11.8.6", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", + "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", + "dev": true, + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "gunzip-maybe": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/gunzip-maybe/-/gunzip-maybe-1.4.2.tgz", + "integrity": "sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==", + "dev": true, + "requires": { + "browserify-zlib": "^0.1.4", + "is-deflate": "^1.0.0", + "is-gzip": "^1.0.0", + "peek-stream": "^1.1.0", + "pumpify": "^1.3.3", + "through2": "^2.0.3" + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true + }, + "has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", + "dev": true + }, + "hast-util-to-estree": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-2.3.3.tgz", + "integrity": "sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==", + "dev": true, + "requires": { + "@types/estree": "^1.0.0", + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^2.0.0", + "@types/unist": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "estree-util-attach-comments": "^2.0.0", + "estree-util-is-identifier-name": "^2.0.0", + "hast-util-whitespace": "^2.0.0", + "mdast-util-mdx-expression": "^1.0.0", + "mdast-util-mdxjs-esm": "^1.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-object": "^0.4.1", + "unist-util-position": "^4.0.0", + "zwitch": "^2.0.0" + }, + "dependencies": { + "@types/estree-jsx": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", + "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", + "dev": true, + "requires": { + "@types/estree": "*" + } + }, + "estree-util-is-identifier-name": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", + "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", + "dev": true + } + } + }, + "hast-util-whitespace": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz", + "integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==", + "dev": true + }, + "http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true + }, + "http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "requires": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + } + }, + "http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dev": true, + "requires": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + } + }, + "http2-wrapper": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", + "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "dev": true, + "requires": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" + } + }, + "https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "requires": { + "agent-base": "6", + "debug": "4" + } + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "requires": {} + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true + }, + "ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true + }, + "import-meta-resolve": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-2.2.2.tgz", + "integrity": "sha512-f8KcQ1D80V7RnqVm+/lirO9zkOxjGxhaTC1IPrBGd3MEfNgmNG67tSUO9gTi2F3Blr2Az6g1vocaxzkVnWl9MA==", + "dev": true + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "inline-style-parser": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", + "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==", + "dev": true + }, + "inquirer": { + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", + "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" + } + }, + "ip": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", + "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", + "dev": true + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true + }, + "is-alphabetical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", + "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", + "dev": true + }, + "is-alphanumerical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", + "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", + "dev": true, + "requires": { + "is-alphabetical": "^2.0.0", + "is-decimal": "^2.0.0" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "dev": true + }, + "is-core-module": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-decimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", + "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", + "dev": true + }, + "is-deflate": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-deflate/-/is-deflate-1.0.0.tgz", + "integrity": "sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-gzip": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz", + "integrity": "sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==", + "dev": true + }, + "is-hexadecimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", + "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", + "dev": true + }, + "is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true + }, + "is-reference": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.1.tgz", + "integrity": "sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==", + "dev": true, + "requires": { + "@types/estree": "*" + } + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true + }, + "is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "javascript-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", + "integrity": "sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==", + "dev": true + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "jsesc": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "dev": true + }, + "json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "json-schema-to-ts": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/json-schema-to-ts/-/json-schema-to-ts-1.6.4.tgz", + "integrity": "sha512-pR4yQ9DHz6itqswtHCm26mw45FSNfQ9rEQjosaZErhn5J3J2sIViQiz8rDaezjKAhFGpmsoczYVBgGHzFw/stA==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.6", + "ts-toolbelt": "^6.15.5" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "optional": true + }, + "json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true + }, + "jsonc-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "dev": true + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "keyv": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", + "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", + "dev": true, + "requires": { + "json-buffer": "3.0.1" + } + }, + "kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "dev": true + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true + }, + "loader-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", + "dev": true + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "dev": true + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + } + }, + "longest-streak": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", + "dev": true + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true + }, + "lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "dev": true + }, + "magic-string": { + "version": "0.30.0", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz", + "integrity": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==", + "peer": true, + "requires": { + "@jridgewell/sourcemap-codec": "^1.4.13" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + } + }, + "make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "markdown-extensions": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-1.1.1.tgz", + "integrity": "sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==", + "dev": true + }, + "mdast-util-definitions": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz", + "integrity": "sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==", + "dev": true, + "requires": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "unist-util-visit": "^4.0.0" + } + }, + "mdast-util-from-markdown": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz", + "integrity": "sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==", + "dev": true, + "requires": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "mdast-util-to-string": "^3.1.0", + "micromark": "^3.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-decode-string": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "unist-util-stringify-position": "^3.0.0", + "uvu": "^0.5.0" + } + }, + "mdast-util-frontmatter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-frontmatter/-/mdast-util-frontmatter-1.0.1.tgz", + "integrity": "sha512-JjA2OjxRqAa8wEG8hloD0uTU0kdn8kbtOWpPP94NBkfAlbxn4S8gCGf/9DwFtEeGPXrDcNXdiDjVaRdUFqYokw==", + "dev": true, + "requires": { + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.3.0", + "micromark-extension-frontmatter": "^1.0.0" + } + }, + "mdast-util-mdx": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-1.1.0.tgz", + "integrity": "sha512-leKb9uG7laXdyFlTleYV4ZEaCpsxeU1LlkkR/xp35pgKrfV1Y0fNCuOw9vaRc2a9YDpH22wd145Wt7UY5yzeZw==", + "dev": true, + "requires": { + "mdast-util-mdx-expression": "^1.0.0", + "mdast-util-mdx-jsx": "^1.0.0", + "mdast-util-mdxjs-esm": "^1.0.0" + } + }, + "mdast-util-mdx-expression": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.2.tgz", + "integrity": "sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==", + "dev": true, + "requires": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-to-markdown": "^1.0.0" + }, + "dependencies": { + "@types/estree-jsx": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", + "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", + "dev": true, + "requires": { + "@types/estree": "*" + } + } + } + }, + "mdast-util-mdx-jsx": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-1.2.0.tgz", + "integrity": "sha512-5+ot/kfxYd3ChgEMwsMUO71oAfYjyRI3pADEK4I7xTmWLGQ8Y7ghm1CG36zUoUvDPxMlIYwQV/9DYHAUWdG4dA==", + "dev": true, + "requires": { + "@types/estree-jsx": "^0.0.1", + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.0.0", + "parse-entities": "^4.0.0", + "stringify-entities": "^4.0.0", + "unist-util-remove-position": "^4.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile-message": "^3.0.0" + } + }, + "mdast-util-mdxjs-esm": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.1.tgz", + "integrity": "sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==", + "dev": true, + "requires": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-to-markdown": "^1.0.0" + }, + "dependencies": { + "@types/estree-jsx": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", + "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", + "dev": true, + "requires": { + "@types/estree": "*" + } + } + } + }, + "mdast-util-phrasing": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz", + "integrity": "sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==", + "dev": true, + "requires": { + "@types/mdast": "^3.0.0", + "unist-util-is": "^5.0.0" + } + }, + "mdast-util-to-hast": { + "version": "11.3.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-11.3.0.tgz", + "integrity": "sha512-4o3Cli3hXPmm1LhB+6rqhfsIUBjnKFlIUZvudaermXB+4/KONdd/W4saWWkC+LBLbPMqhFSSTSRgafHsT5fVJw==", + "dev": true, + "requires": { + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "@types/mdurl": "^1.0.0", + "mdast-util-definitions": "^5.0.0", + "mdurl": "^1.0.0", + "unist-builder": "^3.0.0", + "unist-util-generated": "^2.0.0", + "unist-util-position": "^4.0.0", + "unist-util-visit": "^4.0.0" + } + }, + "mdast-util-to-markdown": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz", + "integrity": "sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==", + "dev": true, + "requires": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^3.0.0", + "mdast-util-to-string": "^3.0.0", + "micromark-util-decode-string": "^1.0.0", + "unist-util-visit": "^4.0.0", + "zwitch": "^2.0.0" + } + }, + "mdast-util-to-string": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", + "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", + "dev": true, + "requires": { + "@types/mdast": "^3.0.0" + } + }, + "mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", + "dev": true + }, + "media-query-parser": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/media-query-parser/-/media-query-parser-2.0.2.tgz", + "integrity": "sha512-1N4qp+jE0pL5Xv4uEcwVUhIkwdUO3S/9gML90nqKA7v7FcOS5vUtatfzok9S9U1EJU8dHWlcv95WLnKmmxZI9w==", + "dev": true, + "requires": { + "@babel/runtime": "^7.12.5" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.5.tgz", + "integrity": "sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==", + "dev": true, + "requires": { + "regenerator-runtime": "^0.13.11" + } + } + } + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true + }, + "micromark": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.2.0.tgz", + "integrity": "sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==", + "dev": true, + "requires": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "micromark-core-commonmark": "^1.0.1", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-combine-extensions": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-sanitize-uri": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" + } + }, + "micromark-core-commonmark": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz", + "integrity": "sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==", + "dev": true, + "requires": { + "decode-named-character-reference": "^1.0.0", + "micromark-factory-destination": "^1.0.0", + "micromark-factory-label": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-factory-title": "^1.0.0", + "micromark-factory-whitespace": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-classify-character": "^1.0.0", + "micromark-util-html-tag-name": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" + } + }, + "micromark-extension-frontmatter": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/micromark-extension-frontmatter/-/micromark-extension-frontmatter-1.1.1.tgz", + "integrity": "sha512-m2UH9a7n3W8VAH9JO9y01APpPKmNNNs71P0RbknEmYSaZU5Ghogv38BYO94AI5Xw6OYfxZRdHZZ2nYjs/Z+SZQ==", + "dev": true, + "requires": { + "fault": "^2.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "micromark-extension-mdx-expression": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.8.tgz", + "integrity": "sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==", + "dev": true, + "requires": { + "@types/estree": "^1.0.0", + "micromark-factory-mdx-expression": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-events-to-acorn": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } + }, + "micromark-extension-mdx-jsx": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.5.tgz", + "integrity": "sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==", + "dev": true, + "requires": { + "@types/acorn": "^4.0.0", + "@types/estree": "^1.0.0", + "estree-util-is-identifier-name": "^2.0.0", + "micromark-factory-mdx-expression": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0", + "vfile-message": "^3.0.0" + }, + "dependencies": { + "estree-util-is-identifier-name": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", + "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", + "dev": true + } + } + }, + "micromark-extension-mdx-md": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.1.tgz", + "integrity": "sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==", + "dev": true, + "requires": { + "micromark-util-types": "^1.0.0" + } + }, + "micromark-extension-mdxjs": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.1.tgz", + "integrity": "sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==", + "dev": true, + "requires": { + "acorn": "^8.0.0", + "acorn-jsx": "^5.0.0", + "micromark-extension-mdx-expression": "^1.0.0", + "micromark-extension-mdx-jsx": "^1.0.0", + "micromark-extension-mdx-md": "^1.0.0", + "micromark-extension-mdxjs-esm": "^1.0.0", + "micromark-util-combine-extensions": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "micromark-extension-mdxjs-esm": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.5.tgz", + "integrity": "sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==", + "dev": true, + "requires": { + "@types/estree": "^1.0.0", + "micromark-core-commonmark": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-events-to-acorn": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "unist-util-position-from-estree": "^1.1.0", + "uvu": "^0.5.0", + "vfile-message": "^3.0.0" + } + }, + "micromark-factory-destination": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz", + "integrity": "sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==", + "dev": true, + "requires": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "micromark-factory-label": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz", + "integrity": "sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==", + "dev": true, + "requires": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } + }, + "micromark-factory-mdx-expression": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.9.tgz", + "integrity": "sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==", + "dev": true, + "requires": { + "@types/estree": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-events-to-acorn": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "unist-util-position-from-estree": "^1.0.0", + "uvu": "^0.5.0", + "vfile-message": "^3.0.0" + } + }, + "micromark-factory-space": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz", + "integrity": "sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==", + "dev": true, + "requires": { + "micromark-util-character": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "micromark-factory-title": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz", + "integrity": "sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==", + "dev": true, + "requires": { + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "micromark-factory-whitespace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz", + "integrity": "sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==", + "dev": true, + "requires": { + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "micromark-util-character": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.2.0.tgz", + "integrity": "sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==", + "dev": true, + "requires": { + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "micromark-util-chunked": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz", + "integrity": "sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==", + "dev": true, + "requires": { + "micromark-util-symbol": "^1.0.0" + } + }, + "micromark-util-classify-character": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz", + "integrity": "sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==", + "dev": true, + "requires": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "micromark-util-combine-extensions": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz", + "integrity": "sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==", + "dev": true, + "requires": { + "micromark-util-chunked": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "micromark-util-decode-numeric-character-reference": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz", + "integrity": "sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==", + "dev": true, + "requires": { + "micromark-util-symbol": "^1.0.0" + } + }, + "micromark-util-decode-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz", + "integrity": "sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==", + "dev": true, + "requires": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-symbol": "^1.0.0" + } + }, + "micromark-util-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz", + "integrity": "sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==", + "dev": true + }, + "micromark-util-events-to-acorn": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.3.tgz", + "integrity": "sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==", + "dev": true, + "requires": { + "@types/acorn": "^4.0.0", + "@types/estree": "^1.0.0", + "@types/unist": "^2.0.0", + "estree-util-visit": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0", + "vfile-message": "^3.0.0" + } + }, + "micromark-util-html-tag-name": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz", + "integrity": "sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==", + "dev": true + }, + "micromark-util-normalize-identifier": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz", + "integrity": "sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==", + "dev": true, + "requires": { + "micromark-util-symbol": "^1.0.0" + } + }, + "micromark-util-resolve-all": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz", + "integrity": "sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==", + "dev": true, + "requires": { + "micromark-util-types": "^1.0.0" + } + }, + "micromark-util-sanitize-uri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz", + "integrity": "sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==", + "dev": true, + "requires": { + "micromark-util-character": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-symbol": "^1.0.0" + } + }, + "micromark-util-subtokenize": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz", + "integrity": "sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==", + "dev": true, + "requires": { + "micromark-util-chunked": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } + }, + "micromark-util-symbol": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz", + "integrity": "sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==", + "dev": true + }, + "micromark-util-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz", + "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==", + "dev": true + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "requires": { + "mime-db": "1.52.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true + }, + "minimatch": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", + "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true + }, + "minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + }, + "mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true + }, + "mlly": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.4.0.tgz", + "integrity": "sha512-ua8PAThnTwpprIaU47EPeZ/bPUVp2QYBbWMphUQpVdBI3Lgqzm5KZQ45Agm3YJedHXaIHl6pBGabaLSUPPSptg==", + "dev": true, + "requires": { + "acorn": "^8.9.0", + "pathe": "^1.1.1", + "pkg-types": "^1.0.3", + "ufo": "^1.1.2" + } + }, + "mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "dev": true + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, + "nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true + }, + "netmask": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", + "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", + "dev": true + }, + "next": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/next/-/next-13.4.6.tgz", + "integrity": "sha512-sjVqjxU+U2aXZnYt4Ud6CTLNNwWjdSfMgemGpIQJcN3Z7Jni9xRWbR0ie5fQzCg87aLqQVhKA2ud2gPoqJ9lGw==", + "requires": { + "@next/env": "13.4.6", + "@next/swc-darwin-arm64": "13.4.6", + "@next/swc-darwin-x64": "13.4.6", + "@next/swc-linux-arm64-gnu": "13.4.6", + "@next/swc-linux-arm64-musl": "13.4.6", + "@next/swc-linux-x64-gnu": "13.4.6", + "@next/swc-linux-x64-musl": "13.4.6", + "@next/swc-win32-arm64-msvc": "13.4.6", + "@next/swc-win32-ia32-msvc": "13.4.6", + "@next/swc-win32-x64-msvc": "13.4.6", + "@swc/helpers": "0.5.1", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001406", + "postcss": "8.4.14", + "styled-jsx": "5.1.1", + "watchpack": "2.4.0", + "zod": "3.21.4" + } + }, + "node-addon-api": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz", + "integrity": "sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==", + "dev": true, + "optional": true + }, + "node-fetch": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", + "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", + "dev": true, + "requires": { + "whatwg-url": "^5.0.0" + } + }, + "node-gyp-build": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", + "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", + "dev": true + }, + "node-releases": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", + "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "dev": true + }, + "nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "dev": true, + "requires": { + "abbrev": "1" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "dev": true + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "npmlog": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", + "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", + "dev": true, + "requires": { + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true + }, + "object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "dev": true + }, + "on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dev": true, + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + } + }, + "ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, + "requires": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + } + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "dev": true + }, + "outdent": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/outdent/-/outdent-0.8.0.tgz", + "integrity": "sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A==", + "dev": true + }, + "p-cancelable": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", + "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", + "dev": true + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + } + }, + "p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "pac-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-5.0.0.tgz", + "integrity": "sha512-CcFG3ZtnxO8McDigozwE3AqAw15zDvGH+OjXO4kzf7IkEKkQ4gxQ+3sdF50WmhQ4P/bVusXcqNE2S3XrNURwzQ==", + "dev": true, + "requires": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4", + "get-uri": "3", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "5", + "pac-resolver": "^5.0.0", + "raw-body": "^2.2.0", + "socks-proxy-agent": "5" + } + }, + "pac-resolver": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-5.0.1.tgz", + "integrity": "sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q==", + "dev": true, + "requires": { + "degenerator": "^3.0.2", + "ip": "^1.1.5", + "netmask": "^2.0.2" + } + }, + "pako": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", + "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==", + "dev": true + }, + "parse-entities": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.1.tgz", + "integrity": "sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==", + "dev": true, + "requires": { + "@types/unist": "^2.0.0", + "character-entities": "^2.0.0", + "character-entities-legacy": "^3.0.0", + "character-reference-invalid": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "is-alphanumerical": "^2.0.0", + "is-decimal": "^2.0.0", + "is-hexadecimal": "^2.0.0" + } + }, + "parse-ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz", + "integrity": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==", + "dev": true + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true + }, + "path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "dev": true + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-to-regexp": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz", + "integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "pathe": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.1.tgz", + "integrity": "sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==", + "dev": true + }, + "peek-stream": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/peek-stream/-/peek-stream-1.1.3.tgz", + "integrity": "sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "duplexify": "^3.5.0", + "through2": "^2.0.3" + } + }, + "periscopic": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", + "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", + "dev": true, + "requires": { + "@types/estree": "^1.0.0", + "estree-walker": "^3.0.0", + "is-reference": "^3.0.0" + }, + "dependencies": { + "estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "requires": { + "@types/estree": "^1.0.0" + } + } + } + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pkg-types": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.0.3.tgz", + "integrity": "sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==", + "dev": true, + "requires": { + "jsonc-parser": "^3.2.0", + "mlly": "^1.2.0", + "pathe": "^1.1.0" + } + }, + "postcss": { + "version": "8.4.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", + "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", + "requires": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + }, + "postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "dev": true, + "requires": {} + }, + "postcss-load-config": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", + "dev": true, + "requires": { + "lilconfig": "^2.0.5", + "yaml": "^2.1.1" + } + }, + "postcss-modules": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules/-/postcss-modules-6.0.0.tgz", + "integrity": "sha512-7DGfnlyi/ju82BRzTIjWS5C4Tafmzl3R79YP/PASiocj+aa6yYphHhhKUOEoXQToId5rgyFgJ88+ccOUydjBXQ==", + "dev": true, + "requires": { + "generic-names": "^4.0.0", + "icss-utils": "^5.1.0", + "lodash.camelcase": "^4.3.0", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "string-hash": "^1.1.1" + } + }, + "postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true, + "requires": {} + }, + "postcss-modules-local-by-default": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", + "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.4" + } + }, + "postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0" + } + }, + "postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "dev": true + }, + "prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "dev": true + }, + "pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "dev": true + }, + "pretty-ms": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-7.0.1.tgz", + "integrity": "sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==", + "dev": true, + "requires": { + "parse-ms": "^2.1.0" + } + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", + "dev": true + }, + "property-information": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.2.0.tgz", + "integrity": "sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==", + "dev": true + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + } + }, + "proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-5.0.0.tgz", + "integrity": "sha512-gkH7BkvLVkSfX9Dk27W6TyNOWWZWRilRfk1XxGNWOYJ2TuedAv1yFpCaU9QSBmBe716XOTNpYNOzhysyw8xn7g==", + "dev": true, + "requires": { + "agent-base": "^6.0.0", + "debug": "4", + "http-proxy-agent": "^4.0.0", + "https-proxy-agent": "^5.0.0", + "lru-cache": "^5.1.1", + "pac-proxy-agent": "^5.0.0", + "proxy-from-env": "^1.0.0", + "socks-proxy-agent": "^5.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + } + } + }, + "proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "dev": true + }, + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true + }, + "qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, + "requires": { + "side-channel": "^1.0.4" + } + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "dev": true + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true + }, + "raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dev": true, + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "requires": { + "loose-envify": "^1.1.0" + } + }, + "react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "requires": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + } + }, + "react-refresh": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", + "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", + "dev": true + }, + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "recast": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz", + "integrity": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==", + "dev": true, + "requires": { + "ast-types": "0.15.2", + "esprima": "~4.0.0", + "source-map": "~0.6.1", + "tslib": "^2.0.1" + }, + "dependencies": { + "ast-types": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz", + "integrity": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==", + "dev": true, + "requires": { + "tslib": "^2.0.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "regenerate-unicode-properties": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", + "dev": true, + "requires": { + "regenerate": "^1.4.2" + } + }, + "regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "dev": true + }, + "regenerator-transform": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", + "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", + "dev": true, + "requires": { + "@babel/runtime": "^7.8.4" + } + }, + "regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "dev": true, + "requires": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + } + }, + "regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dev": true, + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true + } + } + }, + "remark-frontmatter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-4.0.1.tgz", + "integrity": "sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA==", + "dev": true, + "requires": { + "@types/mdast": "^3.0.0", + "mdast-util-frontmatter": "^1.0.0", + "micromark-extension-frontmatter": "^1.0.0", + "unified": "^10.0.0" + } + }, + "remark-mdx-frontmatter": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/remark-mdx-frontmatter/-/remark-mdx-frontmatter-1.1.1.tgz", + "integrity": "sha512-7teX9DW4tI2WZkXS4DBxneYSY7NHiXl4AKdWDO9LXVweULlCT8OPWsOjLEnMIXViN1j+QcY8mfbq3k0EK6x3uA==", + "dev": true, + "requires": { + "estree-util-is-identifier-name": "^1.0.0", + "estree-util-value-to-estree": "^1.0.0", + "js-yaml": "^4.0.0", + "toml": "^3.0.0" + } + }, + "remark-parse": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.2.tgz", + "integrity": "sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==", + "dev": true, + "requires": { + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "unified": "^10.0.0" + } + }, + "remark-rehype": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-9.1.0.tgz", + "integrity": "sha512-oLa6YmgAYg19zb0ZrBACh40hpBLteYROaPLhBXzLgjqyHQrN+gVP9N/FJvfzuNNuzCutktkroXEZBrxAxKhh7Q==", + "dev": true, + "requires": { + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-to-hast": "^11.0.0", + "unified": "^10.0.0" + } + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true + }, + "require-like": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/require-like/-/require-like-0.1.2.tgz", + "integrity": "sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==", + "dev": true + }, + "resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "dev": true, + "requires": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", + "dev": true + }, + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true + }, + "responselike": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", + "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", + "dev": true, + "requires": { + "lowercase-keys": "^2.0.0" + } + }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "dependencies": { + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + } + } + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "rollup": { + "version": "3.25.3", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.25.3.tgz", + "integrity": "sha512-ZT279hx8gszBj9uy5FfhoG4bZx8c+0A1sbqtr7Q3KNWIizpTdDEPZbV2xcbvHsnFp4MavCQYZyzApJ+virB8Yw==", + "dev": true, + "requires": { + "fsevents": "~2.3.2" + } + }, + "run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "dev": true + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "dev": true, + "requires": { + "tslib": "^2.1.0" + } + }, + "sade": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", + "dev": true, + "requires": { + "mri": "^1.1.0" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "requires": { + "loose-envify": "^1.1.0" + } + }, + "semver": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.1.1.tgz", + "integrity": "sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ==", + "dev": true + }, + "send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + } + } + }, + "serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "set-cookie-parser": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.6.0.tgz", + "integrity": "sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==", + "dev": true + }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", + "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "dev": true + }, + "socks": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "dev": true, + "requires": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + }, + "dependencies": { + "ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "dev": true + } + } + }, + "socks-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-5.0.1.tgz", + "integrity": "sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==", + "dev": true, + "requires": { + "agent-base": "^6.0.2", + "debug": "4", + "socks": "^2.3.3" + } + }, + "sort-object-keys": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/sort-object-keys/-/sort-object-keys-1.1.3.tgz", + "integrity": "sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==", + "dev": true + }, + "sort-package-json": { + "version": "1.57.0", + "resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-1.57.0.tgz", + "integrity": "sha512-FYsjYn2dHTRb41wqnv+uEqCUvBpK3jZcTp9rbz2qDTmel7Pmdtf+i2rLaaPMRZeSVM60V3Se31GyWFpmKs4Q5Q==", + "dev": true, + "requires": { + "detect-indent": "^6.0.0", + "detect-newline": "3.1.0", + "git-hooks-list": "1.0.3", + "globby": "10.0.0", + "is-plain-obj": "2.1.0", + "sort-object-keys": "^1.1.3" + }, + "dependencies": { + "is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true + } + } + }, + "source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true + }, + "source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + }, + "source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "dev": true + }, + "ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dev": true, + "requires": { + "minipass": "^3.1.1" + } + }, + "sswr": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/sswr/-/sswr-1.10.0.tgz", + "integrity": "sha512-nLWAJSQy3h8t7rrbTXanRyVHuQPj4PwKIVGe4IMlxJFdhyaxnN/JGACnvQKGDeWiTGYIZIx/jRuUsPEF0867Pg==", + "requires": { + "swrev": "^3.0.0" + } + }, + "statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "dev": true + }, + "streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==" + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "string-hash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", + "integrity": "sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "stringify-entities": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.3.tgz", + "integrity": "sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==", + "dev": true, + "requires": { + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^3.0.0" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true + }, + "style-to-object": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.1.tgz", + "integrity": "sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw==", + "dev": true, + "requires": { + "inline-style-parser": "0.1.1" + } + }, + "styled-jsx": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", + "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", + "requires": { + "client-only": "0.0.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, + "svelte": { + "version": "3.59.2", + "resolved": "https://registry.npmjs.org/svelte/-/svelte-3.59.2.tgz", + "integrity": "sha512-vzSyuGr3eEoAtT/A6bmajosJZIUWySzY2CzB3w2pgPvnkUjGqlDnsNnA0PMO+mMAhuyMul6C2uuZzY6ELSkzyA==", + "peer": true + }, + "swr": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/swr/-/swr-2.1.5.tgz", + "integrity": "sha512-/OhfZMcEpuz77KavXST5q6XE9nrOBOVcBLWjMT+oAE/kQHyE3PASrevXCtQDZ8aamntOfFkbVJp7Il9tNBQWrw==", + "requires": { + "use-sync-external-store": "^1.2.0" + } + }, + "swrev": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/swrev/-/swrev-3.0.0.tgz", + "integrity": "sha512-QJuZiptdOmbDY45pECBRVEgnoBlOKjeT2MWVz04wKHpWX15hM3P7EjcIbHDg5yLoPCMQ7to3349MEE+l9QF5HA==" + }, + "swrv": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/swrv/-/swrv-1.0.3.tgz", + "integrity": "sha512-sl+eLEE+aPPjhP1E8gQ75q3RPRyw5Gd/kROnrTFo3+LkCeLskv7F+uAl5W97wgJkzitobL6FLsRPVm0DgIgN8A==", + "requires": {} + }, + "tar": { + "version": "6.1.15", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz", + "integrity": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==", + "dev": true, + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "dependencies": { + "minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "dev": true + } + } + }, + "tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dev": true, + "requires": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + }, + "dependencies": { + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } + } + }, + "tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, + "requires": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + } + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "time-span": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/time-span/-/time-span-4.0.0.tgz", + "integrity": "sha512-MyqZCTGLDZ77u4k+jqg4UlrzPTPZ49NDlaekU6uuFaJLzPIN1woaRXCbGeqOfxwc3Y37ZROGAJ614Rdv7Olt+g==", + "dev": true, + "requires": { + "convert-hrtime": "^3.0.0" + } + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "requires": { + "os-tmpdir": "~1.0.2" + } + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true + }, + "toml": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/toml/-/toml-3.0.0.tgz", + "integrity": "sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==", + "dev": true + }, + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, + "trough": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz", + "integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==", + "dev": true + }, + "ts-morph": { + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/ts-morph/-/ts-morph-12.0.0.tgz", + "integrity": "sha512-VHC8XgU2fFW7yO1f/b3mxKDje1vmyzFXHWzOYmKEkCEwcLjDtbdLgBQviqj4ZwP4MJkQtRo6Ha2I29lq/B+VxA==", + "dev": true, + "requires": { + "@ts-morph/common": "~0.11.0", + "code-block-writer": "^10.1.1" + } + }, + "ts-node": { + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", + "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "dev": true, + "requires": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "dependencies": { + "arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + } + } + }, + "ts-toolbelt": { + "version": "6.15.5", + "resolved": "https://registry.npmjs.org/ts-toolbelt/-/ts-toolbelt-6.15.5.tgz", + "integrity": "sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A==", + "dev": true + }, + "tsconfig-paths": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", + "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", + "dev": true, + "requires": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "tslib": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", + "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==" + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2" + } + }, + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typescript": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", + "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", + "dev": true + }, + "ufo": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.1.2.tgz", + "integrity": "sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ==", + "dev": true + }, + "unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true + }, + "unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "requires": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "dev": true + }, + "unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "dev": true + }, + "unified": { + "version": "10.1.2", + "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", + "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", + "dev": true, + "requires": { + "@types/unist": "^2.0.0", + "bail": "^2.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^5.0.0" + }, + "dependencies": { + "is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "dev": true + } + } + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dev": true, + "requires": { + "unique-slug": "^2.0.0" + } + }, + "unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4" + } + }, + "unist-builder": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/unist-builder/-/unist-builder-3.0.1.tgz", + "integrity": "sha512-gnpOw7DIpCA0vpr6NqdPvTWnlPTApCTRzr+38E6hCWx3rz/cjo83SsKIlS1Z+L5ttScQ2AwutNnb8+tAvpb6qQ==", + "dev": true, + "requires": { + "@types/unist": "^2.0.0" + } + }, + "unist-util-generated": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.1.tgz", + "integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==", + "dev": true + }, + "unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "dev": true, + "requires": { + "@types/unist": "^2.0.0" + } + }, + "unist-util-position": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz", + "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==", + "dev": true, + "requires": { + "@types/unist": "^2.0.0" + } + }, + "unist-util-position-from-estree": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.2.tgz", + "integrity": "sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==", + "dev": true, + "requires": { + "@types/unist": "^2.0.0" + } + }, + "unist-util-remove-position": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-4.0.2.tgz", + "integrity": "sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==", + "dev": true, + "requires": { + "@types/unist": "^2.0.0", + "unist-util-visit": "^4.0.0" + } + }, + "unist-util-stringify-position": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", + "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", + "dev": true, + "requires": { + "@types/unist": "^2.0.0" + } + }, + "unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", + "dev": true, + "requires": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" + } + }, + "unist-util-visit-parents": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", + "dev": true, + "requires": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" + } + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true + }, + "update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "requires": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "use-sync-external-store": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", + "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", + "requires": {} + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true + }, + "uvu": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz", + "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", + "dev": true, + "requires": { + "dequal": "^2.0.0", + "diff": "^5.0.0", + "kleur": "^4.0.3", + "sade": "^1.7.3" + }, + "dependencies": { + "diff": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz", + "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==", + "dev": true + } + } + }, + "v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "dev": true + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true + }, + "vercel": { + "version": "30.2.3", + "resolved": "https://registry.npmjs.org/vercel/-/vercel-30.2.3.tgz", + "integrity": "sha512-Eil4CR1a/pZkTl3gewzN8rDTisRmuixHAgymWutrRlc1qBYGPMo9ZPTu/9cR3k2PT7yjeRMYYLm0ax9l43lDhQ==", + "dev": true, + "requires": { + "@vercel/build-utils": "6.7.5", + "@vercel/go": "2.5.1", + "@vercel/hydrogen": "0.0.64", + "@vercel/next": "3.8.6", + "@vercel/node": "2.15.2", + "@vercel/python": "3.1.60", + "@vercel/redwood": "1.1.15", + "@vercel/remix-builder": "1.8.14", + "@vercel/ruby": "1.3.76", + "@vercel/static-build": "1.3.37" + } + }, + "vfile": { + "version": "5.3.7", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", + "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", + "dev": true, + "requires": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile-message": "^3.0.0" + } + }, + "vfile-message": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", + "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", + "dev": true, + "requires": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^3.0.0" + } + }, + "vite": { + "version": "4.3.9", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.3.9.tgz", + "integrity": "sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==", + "dev": true, + "requires": { + "esbuild": "^0.17.5", + "fsevents": "~2.3.2", + "postcss": "^8.4.23", + "rollup": "^3.21.0" + }, + "dependencies": { + "@esbuild/android-arm": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.19.tgz", + "integrity": "sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==", + "dev": true, + "optional": true + }, + "@esbuild/android-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz", + "integrity": "sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==", + "dev": true, + "optional": true + }, + "@esbuild/android-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.19.tgz", + "integrity": "sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz", + "integrity": "sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz", + "integrity": "sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz", + "integrity": "sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz", + "integrity": "sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz", + "integrity": "sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz", + "integrity": "sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ia32": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz", + "integrity": "sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-loong64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz", + "integrity": "sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-mips64el": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz", + "integrity": "sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ppc64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz", + "integrity": "sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-riscv64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz", + "integrity": "sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-s390x": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz", + "integrity": "sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==", + "dev": true, + "optional": true + }, + "@esbuild/linux-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz", + "integrity": "sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==", + "dev": true, + "optional": true + }, + "@esbuild/netbsd-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz", + "integrity": "sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==", + "dev": true, + "optional": true + }, + "@esbuild/openbsd-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz", + "integrity": "sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==", + "dev": true, + "optional": true + }, + "@esbuild/sunos-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz", + "integrity": "sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==", + "dev": true, + "optional": true + }, + "@esbuild/win32-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz", + "integrity": "sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==", + "dev": true, + "optional": true + }, + "@esbuild/win32-ia32": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz", + "integrity": "sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==", + "dev": true, + "optional": true + }, + "@esbuild/win32-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz", + "integrity": "sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==", + "dev": true, + "optional": true + }, + "esbuild": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.19.tgz", + "integrity": "sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==", + "dev": true, + "requires": { + "@esbuild/android-arm": "0.17.19", + "@esbuild/android-arm64": "0.17.19", + "@esbuild/android-x64": "0.17.19", + "@esbuild/darwin-arm64": "0.17.19", + "@esbuild/darwin-x64": "0.17.19", + "@esbuild/freebsd-arm64": "0.17.19", + "@esbuild/freebsd-x64": "0.17.19", + "@esbuild/linux-arm": "0.17.19", + "@esbuild/linux-arm64": "0.17.19", + "@esbuild/linux-ia32": "0.17.19", + "@esbuild/linux-loong64": "0.17.19", + "@esbuild/linux-mips64el": "0.17.19", + "@esbuild/linux-ppc64": "0.17.19", + "@esbuild/linux-riscv64": "0.17.19", + "@esbuild/linux-s390x": "0.17.19", + "@esbuild/linux-x64": "0.17.19", + "@esbuild/netbsd-x64": "0.17.19", + "@esbuild/openbsd-x64": "0.17.19", + "@esbuild/sunos-x64": "0.17.19", + "@esbuild/win32-arm64": "0.17.19", + "@esbuild/win32-ia32": "0.17.19", + "@esbuild/win32-x64": "0.17.19" + } + }, + "postcss": { + "version": "8.4.24", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", + "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", + "dev": true, + "requires": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + } + } + }, + "vite-node": { + "version": "0.28.5", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-0.28.5.tgz", + "integrity": "sha512-LmXb9saMGlrMZbXTvOveJKwMTBTNUH66c8rJnQ0ZPNX+myPEol64+szRzXtV5ORb0Hb/91yq+/D3oERoyAt6LA==", + "dev": true, + "requires": { + "cac": "^6.7.14", + "debug": "^4.3.4", + "mlly": "^1.1.0", + "pathe": "^1.1.0", + "picocolors": "^1.0.0", + "source-map": "^0.6.1", + "source-map-support": "^0.5.21", + "vite": "^3.0.0 || ^4.0.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "vm2": { + "version": "3.9.19", + "resolved": "https://registry.npmjs.org/vm2/-/vm2-3.9.19.tgz", + "integrity": "sha512-J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg==", + "dev": true, + "requires": { + "acorn": "^8.7.0", + "acorn-walk": "^8.2.0" + } + }, + "vue": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.3.4.tgz", + "integrity": "sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==", + "peer": true, + "requires": { + "@vue/compiler-dom": "3.3.4", + "@vue/compiler-sfc": "3.3.4", + "@vue/runtime-dom": "3.3.4", + "@vue/server-renderer": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "requires": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + } + }, + "wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "dev": true, + "requires": { + "defaults": "^1.0.3" + } + }, + "web-vitals": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-0.2.4.tgz", + "integrity": "sha512-6BjspCO9VriYy12z356nL6JBS0GYeEcA457YyRzD+dD6XYCQ75NKhcOHUMHentOE7OcVCIXXDvOm0jKFfQG2Gg==", + "dev": true + }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "dev": true, + "requires": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "dev": true, + "requires": {} + }, + "xdm": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/xdm/-/xdm-2.1.0.tgz", + "integrity": "sha512-3LxxbxKcRogYY7cQSMy1tUuU1zKNK9YPqMT7/S0r7Cz2QpyF8O9yFySGD7caOZt+LWUOQioOIX+6ZzCoBCpcAA==", + "dev": true, + "requires": { + "@rollup/pluginutils": "^4.0.0", + "@types/estree-jsx": "^0.0.1", + "astring": "^1.6.0", + "deasync": "^0.1.0", + "estree-util-build-jsx": "^2.0.0", + "estree-util-is-identifier-name": "^2.0.0", + "estree-walker": "^3.0.0", + "got": "^11.0.0", + "hast-util-to-estree": "^2.0.0", + "loader-utils": "^2.0.0", + "markdown-extensions": "^1.0.0", + "mdast-util-mdx": "^1.0.0", + "micromark-extension-mdxjs": "^1.0.0", + "periscopic": "^3.0.0", + "remark-parse": "^10.0.0", + "remark-rehype": "^9.0.0", + "source-map": "^0.7.0", + "unified": "^10.0.0", + "unist-util-position-from-estree": "^1.0.0", + "unist-util-stringify-position": "^3.0.0", + "unist-util-visit": "^4.0.0", + "vfile": "^5.0.0" + }, + "dependencies": { + "estree-util-is-identifier-name": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", + "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", + "dev": true + }, + "estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "requires": { + "@types/estree": "^1.0.0" + } + }, + "loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + } + } + }, + "xregexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz", + "integrity": "sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA==", + "dev": true + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "yaml": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "dev": true + }, + "yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true + }, + "zod": { + "version": "3.21.4", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", + "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==" + }, + "zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "dev": true + } + } +} diff --git a/ecosystem-tests/vercel-edge/package.json b/ecosystem-tests/vercel-edge/package.json index cdde4a44a..14ee1da4f 100644 --- a/ecosystem-tests/vercel-edge/package.json +++ b/ecosystem-tests/vercel-edge/package.json @@ -11,6 +11,7 @@ "vercel": "vercel" }, "dependencies": { + "ai": "2.1.9", "next": "13.4.6", "react": "18.2.0", "react-dom": "18.2.0" @@ -20,7 +21,7 @@ "@types/react": "18.2.13", "@types/react-dom": "18.2.6", "edge-runtime": "^2.4.3", - "vercel": "^30.2.3", - "typescript": "5.1.3" + "typescript": "5.1.3", + "vercel": "^30.2.3" } } diff --git a/ecosystem-tests/vercel-edge/src/pages/ai-streaming.tsx b/ecosystem-tests/vercel-edge/src/pages/ai-streaming.tsx new file mode 100644 index 000000000..ba32dc443 --- /dev/null +++ b/ecosystem-tests/vercel-edge/src/pages/ai-streaming.tsx @@ -0,0 +1,29 @@ +import { useChat } from 'ai/react'; + +export default function Chat() { + const { messages, input, handleInputChange, handleSubmit } = useChat({ api: '/api/vercel-ai-streaming' }); + console.log({ messages }); + + return ( +

+ {messages.map((m) => ( +
+ {m.role === 'user' ? 'User: ' : 'AI: '} + {m.content} +
+ ))} + +
+ + +
+
+ ); +} diff --git a/ecosystem-tests/vercel-edge/src/pages/api/transcribe.ts b/ecosystem-tests/vercel-edge/src/pages/api/transcribe.ts index be1bea6b0..6d96163d7 100644 --- a/ecosystem-tests/vercel-edge/src/pages/api/transcribe.ts +++ b/ecosystem-tests/vercel-edge/src/pages/api/transcribe.ts @@ -1,5 +1,6 @@ import { NextRequest, NextResponse } from 'next/server'; import OpenAI, { toFile } from 'openai'; +import { TranscriptionCreateParams } from 'openai/resources/audio'; export const config = { runtime: 'edge', @@ -14,12 +15,22 @@ export const config = { export default async (request: NextRequest) => { const openai = new OpenAI(); + async function typeTests() { + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await openai.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await openai.audio.transcriptions.create({ file: null, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await openai.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); + } + const rsp = await fetch('http://github.com/service/https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'); - const transcription = await openai.audio.transcriptions.create({ + const params: TranscriptionCreateParams = { model: 'whisper-1', file: await toFile(rsp, 'sample-1.mp3'), - }); + }; + const transcription = await openai.audio.transcriptions.create(params); return NextResponse.json(transcription); }; diff --git a/ecosystem-tests/vercel-edge/src/pages/api/vercel-ai-streaming.ts b/ecosystem-tests/vercel-edge/src/pages/api/vercel-ai-streaming.ts new file mode 100644 index 000000000..d698f8a4b --- /dev/null +++ b/ecosystem-tests/vercel-edge/src/pages/api/vercel-ai-streaming.ts @@ -0,0 +1,30 @@ +import OpenAI from 'openai'; +import { OpenAIStream, StreamingTextResponse } from 'ai'; +import { NextRequest } from 'next/server'; + +export const config = { + runtime: 'edge', + unstable_allowDynamic: [ + // This is currently required because `qs` uses `side-channel` which depends on this. + '/node_modules/function-bind/**', + ], +}; + +export default async (request: NextRequest) => { + const openai = new OpenAI(); + + // Extract the `messages` from the body of the request + const { messages } = await request.json(); + + // Ask OpenAI for a streaming chat completion given the prompt + const streamResponse = await openai.chat.completions.create({ + model: 'gpt-3.5-turbo', + stream: true, + messages, + }); + + const stream = OpenAIStream(streamResponse.response); + + // Respond with the stream + return new StreamingTextResponse(stream); +}; diff --git a/fetch-polyfill.ts b/fetch-polyfill.ts deleted file mode 100644 index ebc629550..000000000 --- a/fetch-polyfill.ts +++ /dev/null @@ -1,69 +0,0 @@ -import type NodeFetch from 'node-fetch'; -import type { RequestInfo, RequestInit, Response } from 'node-fetch'; -import type KeepAliveAgent from 'agentkeepalive'; -import type { Agent } from 'http'; -import { AbortController as AbortControllerPolyfill } from 'abort-controller'; - -declare const Deno: any; -// For now, we just pretend that Fetch is the same type as NodeFetch. -declare const fetch: Fetch | undefined; - -let nodeFetch: typeof NodeFetch | undefined = undefined; -let nodeFetchImportError: unknown; -let defaultHttpAgent: Agent; -let defaultHttpsAgent: Agent; - -// In a Node environment, we prefer `node-fetch` to other fetch implementations -// which may be present, because it allows keepAlive and others don't. -// Alternative, "Web Standards"-based environments typically provide fetch implementations -// which provide good performance for this by default, and may not support node-fetch. -const isProbablyNode = typeof process !== 'undefined' && typeof Deno === 'undefined'; -if (isProbablyNode) { - try { - /* eslint-disable @typescript-eslint/no-var-requires */ - nodeFetch = require('node-fetch').default; - const KeepAliveHttpAgent: typeof KeepAliveAgent = require('agentkeepalive'); - /* eslint-enable @typescript-eslint/no-var-requires */ - - defaultHttpAgent = new KeepAliveHttpAgent({ keepAlive: true, timeout: 5 * 60 * 1000 }); - defaultHttpsAgent = new KeepAliveHttpAgent.HttpsAgent({ keepAlive: true, timeout: 5 * 60 * 1000 }); - } catch (e) { - // We can fall back to a built-in "fetch". - nodeFetchImportError = e; - } -} - -// Polyfill global object if needed. -if (typeof AbortController === 'undefined') { - AbortController = AbortControllerPolyfill as typeof AbortController; -} - -export type Fetch = (url: RequestInfo, init?: RequestInit) => Promise; - -export const getFetch = (): Fetch => { - if (isProbablyNode && nodeFetch) { - return nodeFetch; - } - - // For other environments, use a global fetch function expected to already be present - if (typeof fetch === 'undefined' || typeof fetch !== 'function') { - if (isProbablyNode) { - throw new Error( - `Could not import "node-fetch", and no global "fetch" function is defined.`, - // @ts-expect-error This is only Node 16.9.0+, but isn't harmful in other contexts. - { cause: nodeFetchImportError }, - ); - } - throw new Error( - `Unexpected: running in a non-Node environment without a global "fetch" function defined.`, - ); - } - - return fetch; -}; - -export const getDefaultAgent = (url: string): Agent | undefined => { - if (defaultHttpsAgent && url.startsWith('https')) return defaultHttpsAgent; - if (defaultHttpAgent) return defaultHttpAgent; - return undefined; -}; diff --git a/jest.config.js b/jest.config.js index a2f2266e4..b614f3666 100644 --- a/jest.config.js +++ b/jest.config.js @@ -3,8 +3,9 @@ module.exports = { preset: 'ts-jest', testEnvironment: 'node', moduleNameMapper: { - '^~/(.*)$': '/$1', - '^openai/_shims/(.*)$': '/_shims/$1.node', + '^openai$': '/src/index.ts', + '^openai/_shims/(.*)$': '/src/_shims/$1.node', + '^openai/(.*)$': '/src/$1', }, - modulePathIgnorePatterns: ['/ecosystem-tests/'], + modulePathIgnorePatterns: ['/ecosystem-tests/', '/dist/'], }; diff --git a/package.json b/package.json index a13c9ac7c..dc852bda0 100644 --- a/package.json +++ b/package.json @@ -1,98 +1,72 @@ { "name": "openai", - "version": "4.0.0-beta.1", + "version": "4.0.0-beta.2", "description": "Client library for the OpenAI API", "author": "OpenAI ", - "types": "dist/cjs/index.d.ts", - "main": "dist/cjs/index.js", + "types": "dist/index.d.ts", + "main": "dist/index.js", "type": "commonjs", "repository": "github:openai/openai-node", "license": "Apache-2.0", "private": false, - "files": [ - "dist", - "resources", - "_shims", - "/*.ts" - ], "exports": { "./_shims/*": { "deno": { - "require": { - "types": "./dist/cjs/_shims/*.d.ts", - "default": "./dist/cjs/_shims/*.js" - }, - "types": "./dist/esm/_shims/*.d.ts", - "default": "./dist/esm/_shims/*.js" + "types": "./dist/_shims/*.d.ts", + "require": "./dist/_shims/*.js", + "default": "./dist/_shims/*.mjs" }, "browser": { - "require": { - "types": "./dist/cjs/_shims/*.d.ts", - "default": "./dist/cjs/_shims/*.js" - }, - "types": "./dist/esm/_shims/*.d.ts", - "default": "./dist/esm/_shims/*.js" + "types": "./dist/_shims/*.d.ts", + "require": "./dist/_shims/*.js", + "default": "./dist/_shims/*.mjs" }, "worker": { - "require": { - "types": "./dist/cjs/_shims/*.d.ts", - "default": "./dist/cjs/_shims/*.js" - }, - "types": "./dist/esm/_shims/*.d.ts", - "default": "./dist/esm/_shims/*.js" + "types": "./dist/_shims/*.d.ts", + "require": "./dist/_shims/*.js", + "default": "./dist/_shims/*.mjs" }, "workerd": { - "require": { - "types": "./dist/cjs/_shims/*.d.ts", - "default": "./dist/cjs/_shims/*.js" - }, - "types": "./dist/esm/_shims/*.d.ts", - "default": "./dist/esm/_shims/*.js" + "types": "./dist/_shims/*.d.ts", + "require": "./dist/_shims/*.js", + "default": "./dist/_shims/*.mjs" }, "node": { - "require": { - "types": "./dist/cjs/_shims/*.node.d.ts", - "default": "./dist/cjs/_shims/*.node.js" - }, - "types": "./dist/esm/_shims/*.node.d.ts", - "default": "./dist/esm/_shims/*.node.js" + "types": "./dist/_shims/*.node.d.ts", + "require": "./dist/_shims/*.node.js", + "default": "./dist/_shims/*.node.mjs" }, - "require": { - "types": "./dist/cjs/_shims/*.d.ts", - "default": "./dist/cjs/_shims/*.js" - }, - "types": "./dist/esm/_shims/*.d.ts", - "default": "./dist/esm/_shims/*.js" + "types": "./dist/_shims/*.d.ts", + "require": "./dist/_shims/*.js", + "default": "./dist/_shims/*.mjs" }, ".": { "require": { - "types": "./dist/cjs/index.d.ts", - "default": "./dist/cjs/index.js" + "types": "./dist/index.d.ts", + "default": "./dist/index.js" }, - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" + "types": "./dist/index.d.mts", + "default": "./dist/index.mjs" }, "./*": { - "require": { - "types": "./dist/cjs/*.d.ts", - "require": "./dist/cjs/*.js" - }, - "types": "./dist/esm/*.d.ts", - "default": "./dist/esm/*.js" + "types": "./dist/*.d.ts", + "require": "./dist/*.js", + "default": "./dist/*.mjs" }, "./*.js": { - "require": { - "types": "./dist/cjs/*.d.ts", - "require": "./dist/cjs/*.js" - }, - "types": "./dist/esm/*.d.ts", - "default": "./dist/esm/*.js" + "types": "./dist/*.d.ts", + "default": "./dist/*.js" + }, + "./*.mjs": { + "types": "./dist/*.d.ts", + "default": "./dist/*.mjs" } }, "scripts": { "test": "bin/check-test-server && yarn jest", "build": "bash ./build", - "prepack": "yarn build", + "prepack": "echo 'to pack, run yarn build && (cd dist; yarn pack)' && exit 1", + "prepublishOnly": "echo 'to publish, run yarn build && (cd dist; yarn publish)' && exit 1", "format": "prettier --write .", "tsn": "ts-node -r tsconfig-paths/register", "fix": "eslint --fix --ext ts,js ." @@ -110,17 +84,18 @@ "qs": "^6.10.3" }, "devDependencies": { - "openai": "link:.", "@types/jest": "^29.4.0", "@typescript-eslint/eslint-plugin": "^5.33.0", "@typescript-eslint/parser": "^5.33.0", + "openai": "link:.", "eslint": "^8.22.0", "eslint-plugin-unused-imports": "^2.0.0", "jest": "^29.4.0", "prettier": "rattrayalex/prettier#postfix-ternaries", "ts-jest": "^29.1.0", "ts-node": "^10.5.0", - "tsc-alias": "^1.6.9", + "tsc-alias": "^1.8.6", + "tsc-multi": "^1.1.0", "tsconfig-paths": "^3.12.0", "typescript": "^4.8.2" } diff --git a/resources/answers.ts b/resources/answers.ts deleted file mode 100644 index e64a2fa0f..000000000 --- a/resources/answers.ts +++ /dev/null @@ -1,180 +0,0 @@ -// File generated from our OpenAPI spec by Stainless. - -import * as Core from '~/core'; -import { APIResource } from '~/resource'; - -export class Answers extends APIResource { - /** - * Answers the specified question using the provided documents and examples. - * - * The endpoint first [searches](/docs/api-reference/searches) over provided - * documents or files to find relevant context. The relevant context is combined - * with the provided examples and question to create the prompt for - * [completion](/docs/api-reference/completions). - */ - create( - body: AnswerCreateParams, - options?: Core.RequestOptions, - ): Promise> { - return this.post('/answers', { body, ...options }); - } -} - -export interface AnswerCreateResponse { - answers?: Array; - - completion?: string; - - model?: string; - - object?: string; - - search_model?: string; - - selected_documents?: Array; -} - -export namespace AnswerCreateResponse { - export interface SelectedDocuments { - document?: number; - - text?: string; - } -} - -export interface AnswerCreateParams { - /** - * List of (question, answer) pairs that will help steer the model towards the tone - * and answer format you'd like. We recommend adding 2 to 3 examples. - */ - examples: Array>; - - /** - * A text snippet containing the contextual information used to generate the - * answers for the `examples` you provide. - */ - examples_context: string; - - /** - * ID of the model to use for completion. You can select one of `ada`, `babbage`, - * `curie`, or `davinci`. - */ - model: string; - - /** - * Question to get answered. - */ - question: string; - - /** - * List of documents from which the answer for the input `question` should be - * derived. If this is an empty list, the question will be answered based on the - * question-answer examples. - * - * You should specify either `documents` or a `file`, but not both. - */ - documents?: Array | null; - - /** - * If an object name is in the list, we provide the full information of the object; - * otherwise, we only provide the object ID. Currently we support `completion` and - * `file` objects for expansion. - */ - expand?: Array | null; - - /** - * The ID of an uploaded file that contains documents to search over. See - * [upload file](/docs/api-reference/files/upload) for how to upload a file of the - * desired format and purpose. - * - * You should specify either `documents` or a `file`, but not both. - */ - file?: string | null; - - /** - * Modify the likelihood of specified tokens appearing in the completion. - * - * Accepts a json object that maps tokens (specified by their token ID in the GPT - * tokenizer) to an associated bias value from -100 to 100. You can use this - * [tokenizer tool](/tokenizer?view=bpe) (which works for both GPT-2 and GPT-3) to - * convert text to token IDs. Mathematically, the bias is added to the logits - * generated by the model prior to sampling. The exact effect will vary per model, - * but values between -1 and 1 should decrease or increase likelihood of selection; - * values like -100 or 100 should result in a ban or exclusive selection of the - * relevant token. - * - * As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> token - * from being generated. - */ - logit_bias?: unknown | null; - - /** - * Include the log probabilities on the `logprobs` most likely tokens, as well the - * chosen tokens. For example, if `logprobs` is 5, the API will return a list of - * the 5 most likely tokens. The API will always return the `logprob` of the - * sampled token, so there may be up to `logprobs+1` elements in the response. - * - * The maximum value for `logprobs` is 5. - * - * When `logprobs` is set, `completion` will be automatically added into `expand` - * to get the logprobs. - */ - logprobs?: number | null; - - /** - * The maximum number of documents to be ranked by - * [Search](/docs/api-reference/searches/create) when using `file`. Setting it to a - * higher value leads to improved accuracy but with increased latency and cost. - */ - max_rerank?: number | null; - - /** - * The maximum number of tokens allowed for the generated answer - */ - max_tokens?: number | null; - - /** - * How many answers to generate for each question. - */ - n?: number | null; - - /** - * A special boolean flag for showing metadata. If set to `true`, each document - * entry in the returned JSON will contain a "metadata" field. - * - * This flag only takes effect when `file` is set. - */ - return_metadata?: boolean | null; - - /** - * If set to `true`, the returned JSON will include a "prompt" field containing the - * final prompt that was used to request a completion. This is mainly useful for - * debugging purposes. - */ - return_prompt?: boolean | null; - - /** - * ID of the model to use for [Search](/docs/api-reference/searches/create). You - * can select one of `ada`, `babbage`, `curie`, or `davinci`. - */ - search_model?: string | null; - - /** - * Up to 4 sequences where the API will stop generating further tokens. The - * returned text will not contain the stop sequence. - */ - stop?: string | Array | null; - - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will - * make the output more random, while lower values like 0.2 will make it more - * focused and deterministic. - */ - temperature?: number | null; - - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor - * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - */ - user?: string; -} diff --git a/resources/classifications.ts b/resources/classifications.ts deleted file mode 100644 index 70cf2a75d..000000000 --- a/resources/classifications.ts +++ /dev/null @@ -1,169 +0,0 @@ -// File generated from our OpenAPI spec by Stainless. - -import * as Core from '~/core'; -import { APIResource } from '~/resource'; - -export class Classifications extends APIResource { - /** - * Classifies the specified `query` using provided examples. - * - * The endpoint first [searches](/docs/api-reference/searches) over the labeled - * examples to select the ones most relevant for the particular query. Then, the - * relevant examples are combined with the query to construct a prompt to produce - * the final label via the [completions](/docs/api-reference/completions) endpoint. - * - * Labeled examples can be provided via an uploaded `file`, or explicitly listed in - * the request using the `examples` parameter for quick tests and small scale use - * cases. - */ - create( - body: ClassificationCreateParams, - options?: Core.RequestOptions, - ): Promise> { - return this.post('/classifications', { body, ...options }); - } -} - -export interface ClassificationCreateResponse { - completion?: string; - - label?: string; - - model?: string; - - object?: string; - - search_model?: string; - - selected_examples?: Array; -} - -export namespace ClassificationCreateResponse { - export interface SelectedExamples { - document?: number; - - label?: string; - - text?: string; - } -} - -export interface ClassificationCreateParams { - /** - * ID of the model to use. You can use the - * [List models](/docs/api-reference/models/list) API to see all of your available - * models, or see our [Model overview](/docs/models/overview) for descriptions of - * them. - */ - model: string; - - /** - * Query to be classified. - */ - query: string; - - /** - * A list of examples with labels, in the following format: - * - * `[["The movie is so interesting.", "Positive"], ["It is quite boring.", "Negative"], ...]` - * - * All the label strings will be normalized to be capitalized. - * - * You should specify either `examples` or `file`, but not both. - */ - examples?: Array> | null; - - /** - * If an object name is in the list, we provide the full information of the object; - * otherwise, we only provide the object ID. Currently we support `completion` and - * `file` objects for expansion. - */ - expand?: Array | null; - - /** - * The ID of the uploaded file that contains training examples. See - * [upload file](/docs/api-reference/files/upload) for how to upload a file of the - * desired format and purpose. - * - * You should specify either `examples` or `file`, but not both. - */ - file?: string | null; - - /** - * The set of categories being classified. If not specified, candidate labels will - * be automatically collected from the examples you provide. All the label strings - * will be normalized to be capitalized. - */ - labels?: Array | null; - - /** - * Modify the likelihood of specified tokens appearing in the completion. - * - * Accepts a json object that maps tokens (specified by their token ID in the GPT - * tokenizer) to an associated bias value from -100 to 100. You can use this - * [tokenizer tool](/tokenizer?view=bpe) (which works for both GPT-2 and GPT-3) to - * convert text to token IDs. Mathematically, the bias is added to the logits - * generated by the model prior to sampling. The exact effect will vary per model, - * but values between -1 and 1 should decrease or increase likelihood of selection; - * values like -100 or 100 should result in a ban or exclusive selection of the - * relevant token. - * - * As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> token - * from being generated. - */ - logit_bias?: unknown | null; - - /** - * Include the log probabilities on the `logprobs` most likely tokens, as well the - * chosen tokens. For example, if `logprobs` is 5, the API will return a list of - * the 5 most likely tokens. The API will always return the `logprob` of the - * sampled token, so there may be up to `logprobs+1` elements in the response. - * - * The maximum value for `logprobs` is 5. - * - * When `logprobs` is set, `completion` will be automatically added into `expand` - * to get the logprobs. - */ - logprobs?: number | null; - - /** - * The maximum number of examples to be ranked by - * [Search](/docs/api-reference/searches/create) when using `file`. Setting it to a - * higher value leads to improved accuracy but with increased latency and cost. - */ - max_examples?: number | null; - - /** - * A special boolean flag for showing metadata. If set to `true`, each document - * entry in the returned JSON will contain a "metadata" field. - * - * This flag only takes effect when `file` is set. - */ - return_metadata?: boolean | null; - - /** - * If set to `true`, the returned JSON will include a "prompt" field containing the - * final prompt that was used to request a completion. This is mainly useful for - * debugging purposes. - */ - return_prompt?: boolean | null; - - /** - * ID of the model to use for [Search](/docs/api-reference/searches/create). You - * can select one of `ada`, `babbage`, `curie`, or `davinci`. - */ - search_model?: string | null; - - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will - * make the output more random, while lower values like 0.2 will make it more - * focused and deterministic. - */ - temperature?: number | null; - - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor - * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - */ - user?: string; -} diff --git a/check-version.ts b/scripts/check-version.cjs similarity index 60% rename from check-version.ts rename to scripts/check-version.cjs index 8bbd6a96b..50a85669e 100644 --- a/check-version.ts +++ b/scripts/check-version.cjs @@ -1,16 +1,18 @@ -import fs from 'fs'; +const fs = require('fs'); +const path = require('path'); const main = () => { - const pkg = JSON.parse(fs.readFileSync('package.json').toString()) as Record; + const pkg = require('../package.json'); const version = pkg['version']; if (!version) throw 'The version property is not set in the package.json file'; if (typeof version !== 'string') { throw `Unexpected type for the package.json version field; got ${typeof version}, expected string`; } - const contents = fs.readFileSync('version.ts', 'utf8'); + const versionFile = path.resolve(__dirname, '..', 'src', 'version.ts'); + const contents = fs.readFileSync(versionFile, 'utf8'); const output = contents.replace(/(export const VERSION = ')(.*)(')/g, `$1${version}$3`); - fs.writeFileSync('version.ts', output); + fs.writeFileSync(versionFile, output); }; if (require.main === module) { diff --git a/scripts/fix-index-exports.cjs b/scripts/fix-index-exports.cjs new file mode 100644 index 000000000..0909af7cb --- /dev/null +++ b/scripts/fix-index-exports.cjs @@ -0,0 +1,10 @@ +const fs = require('fs'); +const path = require('path'); + +const indexJs = path.resolve(__dirname, '..', 'dist', 'index.js'); +let before = fs.readFileSync(indexJs, 'utf8'); +let after = before.replace( + /^\s*exports\.default\s*=\s*(\w+)/m, + 'exports = module.exports = $1;\nexports.default = $1', +); +fs.writeFileSync(indexJs, after, 'utf8'); diff --git a/scripts/make-dist-package-json.cjs b/scripts/make-dist-package-json.cjs new file mode 100644 index 000000000..8c5889fa8 --- /dev/null +++ b/scripts/make-dist-package-json.cjs @@ -0,0 +1,20 @@ +const pkgJson = require('../package.json'); + +function processExportMap(m) { + for (const key in m) { + const value = m[key]; + if (typeof value === 'string') m[key] = value.replace(/^\.\/dist\//, './'); + else processExportMap(value); + } +} +processExportMap(pkgJson.exports); + +for (const key of ['types', 'main', 'module']) { + if (typeof pkgJson[key] === 'string') pkgJson[key] = pkgJson[key].replace(/^(\.\/)?dist\//, './'); +} + +delete pkgJson.devDependencies; +delete pkgJson.scripts.prepack; +delete pkgJson.scripts.prepublishOnly; + +console.log(JSON.stringify(pkgJson, null, 2)); diff --git a/scripts/prepare-cjs-build.mjs b/scripts/prepare-cjs-build.mjs deleted file mode 100755 index cbb896076..000000000 --- a/scripts/prepare-cjs-build.mjs +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env node - -import fs from 'node:fs/promises'; - -// add the following line back to index.ts if necessary: -// + exports = module.exports = OpenAI -// export default OpenAI -const code = await fs.readFile('index.ts', 'utf8'); -if (!/^\s*exports\s*=\s*module.exports\s*=\s*(\w+)/m.test(code)) { - await fs.writeFile( - 'index.ts', - code.replace(/\n?\s*export\s+default\s+(\w+)/m, '\nexports = module.exports = $1;\nexport default $1'), - 'utf8', - ); -} diff --git a/scripts/prepare-esm-build.mjs b/scripts/prepare-esm-build.mjs deleted file mode 100755 index bad68ebb0..000000000 --- a/scripts/prepare-esm-build.mjs +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env node - -import fs from 'node:fs/promises'; - -// remove the following line from index.ts if present: -// - exports = module.exports = OpenAI -// export default OpenAI -const code = await fs.readFile('index.ts', 'utf8'); -const transformed = code.replace(/^\s*exports\s*=\s*module.exports\s*=\s*(\w+)\s*;?\s*\n?/m, ''); -if (transformed !== code) { - await fs.writeFile('index.ts', transformed, 'utf8'); -} diff --git a/_shims/agent.node.ts b/src/_shims/agent.node.ts similarity index 97% rename from _shims/agent.node.ts rename to src/_shims/agent.node.ts index c1225ca29..31f4d7c5f 100644 --- a/_shims/agent.node.ts +++ b/src/_shims/agent.node.ts @@ -6,6 +6,8 @@ import KeepAliveAgent from 'agentkeepalive'; import type { Agent } from 'node:http'; import { AbortController as AbortControllerPolyfill } from 'abort-controller'; +export type { Agent }; + const defaultHttpAgent: Agent = new KeepAliveAgent({ keepAlive: true, timeout: 5 * 60 * 1000 }); const defaultHttpsAgent: Agent = new KeepAliveAgent.HttpsAgent({ keepAlive: true, timeout: 5 * 60 * 1000 }); diff --git a/_shims/agent.ts b/src/_shims/agent.ts similarity index 68% rename from _shims/agent.ts rename to src/_shims/agent.ts index 310adfdd6..c39d1cfb0 100644 --- a/_shims/agent.ts +++ b/src/_shims/agent.ts @@ -5,8 +5,8 @@ * In node environments, it gets replaced agent.node.ts by the package export map */ -import type { Agent } from 'node:http'; +export type Agent = any; -export const getDefaultAgent = (url: string): Agent | undefined => { +export const getDefaultAgent = (url: string): any => { return undefined; }; diff --git a/src/_shims/fetch.d.ts b/src/_shims/fetch.d.ts new file mode 100644 index 000000000..7635e5a11 --- /dev/null +++ b/src/_shims/fetch.d.ts @@ -0,0 +1,52 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +// Use builtin web types if present; else never (user should +// add appropriate lib or types to tsconfig) + +/** + * >>> Confused? <<< + * + * If you're getting errors from these types, try adding "lib": ["DOM"] + * to your tsconfig.json, or otherwise configure the appropriate builtin + * `fetch` types for your environment. + */ + +// @ts-ignore +type _fetch = unknown extends typeof fetch ? never : typeof fetch; +// @ts-ignore +type _Request = unknown extends Request ? never : Request; +// @ts-ignore +type _RequestInfo = unknown extends RequestInfo ? never : RequestInfo; +// @ts-ignore +type _RequestInit = unknown extends RequestInit ? never : RequestInit; +// @ts-ignore +type _Response = unknown extends Response ? never : Response; +// @ts-ignore +type _ResponseInit = unknown extends ResponseInit ? never : ResponseInit; +// @ts-ignore +type _BodyInit = unknown extends BodyInit ? never : BodyInit; +// @ts-ignore +type _Headers = unknown extends Headers ? never : Headers; +// @ts-ignore +type _HeadersInit = unknown extends HeadersInit ? never : HeadersInit; + +declare const _fetch: _fetch; +declare const _Request: { + prototype: _Request; + new (input: _RequestInfo | URL, init?: _RequestInit): _Request; +}; +declare const _Response: { + prototype: _Response; + new (body?: _BodyInit | null, init?: _ResponseInit): _Response; +}; +declare const _Headers: { + prototype: _Headers; + new (init?: _HeadersInit): _Headers; +}; + +export const isPolyfilled = false; + +export { _fetch as fetch, _Request as Request, _Response as Response, _Headers as Headers }; +export type { _RequestInit as RequestInit, _RequestInfo as RequestInfo, _BodyInit as BodyInit }; diff --git a/src/_shims/fetch.js b/src/_shims/fetch.js new file mode 100644 index 000000000..286373630 --- /dev/null +++ b/src/_shims/fetch.js @@ -0,0 +1,13 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +// If we accidentally call fetch with the wrong this binding, +// in the browser it would throw: +// TypeError: Failed to execute 'fetch' on 'Window': Illegal invocation +exports.fetch = fetch.bind(undefined); +exports.Request = Request; +exports.Response = Response; +exports.Headers = Headers; + +exports.isPolyfilled = true; diff --git a/src/_shims/fetch.mjs b/src/_shims/fetch.mjs new file mode 100644 index 000000000..6d539fbab --- /dev/null +++ b/src/_shims/fetch.mjs @@ -0,0 +1,15 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +// If we accidentally call fetch with the wrong this binding, +// in the browser it would throw: +// TypeError: Failed to execute 'fetch' on 'Window': Illegal invocation +const _fetch = fetch.bind(undefined); +const _Request = Request; +const _Response = Response; +const _Headers = Headers; + +export const isPolyfilled = false; + +export { _fetch as fetch, _Request as Request, _Response as Response, _Headers as Headers }; diff --git a/src/_shims/fetch.node.d.ts b/src/_shims/fetch.node.d.ts new file mode 100644 index 000000000..a220f8ad6 --- /dev/null +++ b/src/_shims/fetch.node.d.ts @@ -0,0 +1,53 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +import * as nf from 'node-fetch'; + +// Use builtin web types if present; else node-fetch types + +/** + * >>> Confused? <<< + * + * If you're getting errors from these types, try adding "lib": ["DOM"] + * to your tsconfig.json, or otherwise configure the appropriate builtin + * `fetch` types for your environment. + */ + +// @ts-ignore +type _fetch = unknown extends typeof fetch ? typeof nf.default : typeof fetch; +// @ts-ignore +type _Request = unknown extends Request ? nf.Request : Request; +// @ts-ignore +type _RequestInfo = unknown extends RequestInfo ? nf.RequestInfo : RequestInfo; +// @ts-ignore +type _RequestInit = unknown extends RequestInit ? nf.RequestInit : RequestInit; +// @ts-ignore +type _Response = unknown extends Response ? nf.Response : Response; +// @ts-ignore +type _ResponseInit = unknown extends ResponseInit ? nf.ResponseInit : ResponseInit; +// @ts-ignore +type _BodyInit = unknown extends BodyInit ? nf.BodyInit : BodyInit; +// @ts-ignore +type _Headers = unknown extends Headers ? nf.Headers : Headers; +// @ts-ignore +type _HeadersInit = unknown extends HeadersInit ? nf.HeadersInit : HeadersInit; + +declare const _fetch: _fetch; +declare const _Request: { + prototype: _Request; + new (input: _RequestInfo | URL, init?: _RequestInit): _Request; +}; +declare const _Response: { + prototype: _Response; + new (body?: _BodyInit | null, init?: _ResponseInit): _Response; +}; +declare const _Headers: { + prototype: _Headers; + new (init?: _HeadersInit): _Headers; +}; + +export const isPolyfilled = false; + +export { _fetch as fetch, _Request as Request, _Response as Response, _Headers as Headers }; +export type { _RequestInit as RequestInit, _RequestInfo as RequestInfo, _BodyInit as BodyInit }; diff --git a/src/_shims/fetch.node.js b/src/_shims/fetch.node.js new file mode 100644 index 000000000..15f8f8abf --- /dev/null +++ b/src/_shims/fetch.node.js @@ -0,0 +1,12 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +const nf = require('node-fetch'); + +exports.fetch = nf.default; +exports.Request = nf.Request; +exports.Response = nf.Response; +exports.Headers = nf.Headers; + +exports.isPolyfilled = true; diff --git a/src/_shims/fetch.node.mjs b/src/_shims/fetch.node.mjs new file mode 100644 index 000000000..d8543dcac --- /dev/null +++ b/src/_shims/fetch.node.mjs @@ -0,0 +1,14 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +import * as nf from 'node-fetch'; + +const _fetch = nf.default; +const _Request = nf.Request; +const _Response = nf.Response; +const _Headers = nf.Headers; + +export { _fetch as fetch, _Request as Request, _Response as Response, _Headers as Headers }; + +export const isPolyfilled = true; diff --git a/_shims/fileFromPath.node.ts b/src/_shims/fileFromPath.node.ts similarity index 90% rename from _shims/fileFromPath.node.ts rename to src/_shims/fileFromPath.node.ts index eca866a16..676d2e2df 100644 --- a/_shims/fileFromPath.node.ts +++ b/src/_shims/fileFromPath.node.ts @@ -2,9 +2,8 @@ * Disclaimer: modules in _shims aren't intended to be imported by SDK users. */ -import type { FilePropertyBag } from 'formdata-node'; import { fileFromPath as _fileFromPath } from 'formdata-node/file-from-path'; -import type { File } from './formdata.node'; +import type { File, FilePropertyBag } from './formdata.node'; export type FileFromPathOptions = Omit; diff --git a/_shims/fileFromPath.ts b/src/_shims/fileFromPath.ts similarity index 91% rename from _shims/fileFromPath.ts rename to src/_shims/fileFromPath.ts index 06ce39a76..7926b4a56 100644 --- a/_shims/fileFromPath.ts +++ b/src/_shims/fileFromPath.ts @@ -5,8 +5,7 @@ * in the package export map */ -import type { FilePropertyBag } from 'formdata-node'; -import type { File } from './formdata'; +import type { FilePropertyBag, File } from './formdata'; export type FileFromPathOptions = Omit; diff --git a/src/_shims/formdata.d.ts b/src/_shims/formdata.d.ts new file mode 100644 index 000000000..0fb24cc44 --- /dev/null +++ b/src/_shims/formdata.d.ts @@ -0,0 +1,43 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +import type { BlobPart } from '../uploads'; + +type EndingType = 'native' | 'transparent'; + +export interface BlobPropertyBag { + endings?: EndingType; + type?: string; +} + +export interface FilePropertyBag extends BlobPropertyBag { + lastModified?: number; +} + +// Use builtin web types if present; else never (user should +// add appropriate lib or types to tsconfig) + +// @ts-ignore +type _FormData = unknown extends FormData ? never : FormData; +// @ts-ignore +type _File = unknown extends File ? never : File; +// @ts-ignore +type _Blob = unknown extends Blob ? never : Blob; + +declare const _FormData: { + new (form?: any): _FormData; + prototype: _FormData; +}; +declare const _File: { + new (fileBits: BlobPart[], fileName: string, options?: FilePropertyBag | undefined): _File; + prototype: _File; +}; +declare const _Blob: { + new (blobParts?: BlobPart[] | undefined, options?: BlobPropertyBag | undefined): _Blob; + prototype: _Blob; +}; + +export const isPolyfilled = false; + +export { _FormData as FormData, _File as File, _Blob as Blob }; diff --git a/src/_shims/formdata.js b/src/_shims/formdata.js new file mode 100644 index 000000000..a3debe985 --- /dev/null +++ b/src/_shims/formdata.js @@ -0,0 +1,9 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +exports.FormData = FormData; +exports.File = File; +exports.Blob = Blob; + +exports.isPolyfilled = false; diff --git a/src/_shims/formdata.mjs b/src/_shims/formdata.mjs new file mode 100644 index 000000000..2871d1309 --- /dev/null +++ b/src/_shims/formdata.mjs @@ -0,0 +1,11 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +const _FormData = FormData; +const _File = File; +const _Blob = Blob; + +export { _FormData as FormData, _File as File, _Blob as Blob }; + +export const isPolyfilled = false; diff --git a/src/_shims/formdata.node.d.ts b/src/_shims/formdata.node.d.ts new file mode 100644 index 000000000..feea1ff92 --- /dev/null +++ b/src/_shims/formdata.node.d.ts @@ -0,0 +1,44 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +import * as fd from 'formdata-node'; + +import type { BlobPart } from '../uploads'; + +type EndingType = 'native' | 'transparent'; + +export interface BlobPropertyBag { + endings?: EndingType; + type?: string; +} + +export interface FilePropertyBag extends BlobPropertyBag { + lastModified?: number; +} + +// Use builtin web types if present; else formdata-node types + +// @ts-ignore +type _FormData = unknown extends FormData ? fd.FormData : FormData; +// @ts-ignore +type _File = unknown extends File ? fd.File : File; +// @ts-ignore +type _Blob = unknown extends Blob ? fd.Blob : Blob; + +declare const _FormData: { + new (form?: any): _FormData; + prototype: _FormData; +}; +declare const _File: { + new (fileBits: BlobPart[], fileName: string, options?: FilePropertyBag | undefined): _File; + prototype: _File; +}; +declare const _Blob: { + new (blobParts?: BlobPart[] | undefined, options?: BlobPropertyBag | undefined): _Blob; + prototype: _Blob; +}; + +export const isPolyfilled = false; + +export { _FormData as FormData, _File as File, _Blob as Blob }; diff --git a/src/_shims/formdata.node.js b/src/_shims/formdata.node.js new file mode 100644 index 000000000..892aba543 --- /dev/null +++ b/src/_shims/formdata.node.js @@ -0,0 +1,11 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +const fd = require('formdata-node'); + +exports.FormData = fd.FormData; +exports.File = fd.File; +exports.Blob = fd.Blob; + +exports.isPolyfilled = true; diff --git a/_shims/formdata.node.ts b/src/_shims/formdata.node.mjs similarity index 100% rename from _shims/formdata.node.ts rename to src/_shims/formdata.node.mjs diff --git a/_shims/getMultipartRequestOptions.node.ts b/src/_shims/getMultipartRequestOptions.node.ts similarity index 88% rename from _shims/getMultipartRequestOptions.node.ts rename to src/_shims/getMultipartRequestOptions.node.ts index c55c664d9..3d6907492 100644 --- a/_shims/getMultipartRequestOptions.node.ts +++ b/src/_shims/getMultipartRequestOptions.node.ts @@ -6,6 +6,7 @@ import { FormData } from './formdata.node'; import type { RequestOptions } from '../core'; import { Readable } from 'node:stream'; import { FormDataEncoder } from 'form-data-encoder'; +import { MultipartBody } from '../uploads'; export async function getMultipartRequestOptions>( form: FormData, @@ -13,7 +14,7 @@ export async function getMultipartRequestOptions> { const encoder = new FormDataEncoder(form); const readable = Readable.from(encoder); - const body = { __multipartBody__: readable }; + const body = new MultipartBody(readable); const headers = { ...opts.headers, ...encoder.headers, diff --git a/_shims/getMultipartRequestOptions.ts b/src/_shims/getMultipartRequestOptions.ts similarity index 76% rename from _shims/getMultipartRequestOptions.ts rename to src/_shims/getMultipartRequestOptions.ts index 1b38c298b..b9abe6437 100644 --- a/_shims/getMultipartRequestOptions.ts +++ b/src/_shims/getMultipartRequestOptions.ts @@ -4,10 +4,11 @@ import { FormData } from './formdata'; import type { RequestOptions } from '../core'; +import { MultipartBody } from '../uploads'; export async function getMultipartRequestOptions>( form: FormData, opts: RequestOptions, ): Promise> { - return { ...opts, body: { __multipartBody__: form } as any }; + return { ...opts, body: new MultipartBody(form) as any }; } diff --git a/src/_shims/node-readable.node.ts b/src/_shims/node-readable.node.ts new file mode 100644 index 000000000..0355aa1e1 --- /dev/null +++ b/src/_shims/node-readable.node.ts @@ -0,0 +1,10 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ +export type { Readable } from 'node:stream'; +import { ReadStream as FsReadStream } from 'node:fs'; +export type { FsReadStream }; + +export function isFsReadStream(value: any): value is FsReadStream { + return value instanceof FsReadStream; +} diff --git a/src/_shims/node-readable.ts b/src/_shims/node-readable.ts new file mode 100644 index 000000000..fc3f2f554 --- /dev/null +++ b/src/_shims/node-readable.ts @@ -0,0 +1,30 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +// shim these Node types to avoid importing @types/node and polluting the user's +// type environment in non-node projects + +export declare class Readable { + readable: boolean; + readonly readableEnded: boolean; + readonly readableFlowing: boolean | null; + readonly readableHighWaterMark: number; + readonly readableLength: number; + readonly readableObjectMode: boolean; + destroyed: boolean; + read(size?: number): any; + pause(): this; + resume(): this; + isPaused(): boolean; + destroy(error?: Error): this; + [Symbol.asyncIterator](): AsyncIterableIterator; +} + +export declare class FsReadStream extends Readable { + path: {}; // node type is string | Buffer +} + +export function isFsReadStream(value: any): value is FsReadStream { + return false; +} diff --git a/core.ts b/src/core.ts similarity index 96% rename from core.ts rename to src/core.ts index b7f01a5a4..22f436ac8 100644 --- a/core.ts +++ b/src/core.ts @@ -1,17 +1,23 @@ -import type { Readable } from 'node:stream'; -import type { Agent } from 'http'; - -import qs from 'qs'; - +import * as qs from 'qs'; import { VERSION } from './version'; import { Stream } from './streaming'; import { APIError, APIConnectionError, APIConnectionTimeoutError } from './error'; -import { getDefaultAgent } from 'openai/_shims/agent'; -import { fetch, isPolyfilled as fetchIsPolyfilled } from 'openai/_shims/fetch'; -import type { RequestInfo, RequestInit, Response } from 'openai/_shims/fetch'; +import type { Readable } from 'openai/_shims/node-readable'; +import { getDefaultAgent, type Agent } from 'openai/_shims/agent'; +import { + fetch, + isPolyfilled as fetchIsPolyfilled, + type RequestInfo, + type RequestInit, + type Response, +} from 'openai/_shims/fetch'; import { isMultipartBody } from './uploads'; -export { maybeMultipartFormRequestOptions, multipartFormRequestOptions, createForm } from './uploads'; -export type { Uploadable } from 'openai/_shims/uploadable'; +export { + maybeMultipartFormRequestOptions, + multipartFormRequestOptions, + createForm, + type Uploadable, +} from './uploads'; const MAX_RETRIES = 2; @@ -118,7 +124,7 @@ export abstract class APIClient { const { method, path, query, headers: headers = {} } = options; const body = - isMultipartBody(options.body) ? options.body.__multipartBody__ + isMultipartBody(options.body) ? options.body.body : options.body ? JSON.stringify(options.body, null, 2) : null; const contentLength = typeof body === 'string' ? body.length.toString() : null; @@ -148,7 +154,7 @@ export abstract class APIClient { const req: RequestInit = { method, - ...(body && { body }), + ...(body && { body: body as any }), headers: reqHeaders, ...(httpAgent && { agent: httpAgent }), }; @@ -263,11 +269,12 @@ export abstract class APIClient { async fetchWithTimeout( url: RequestInfo, - { signal, ...options }: RequestInit = {}, + init: RequestInit | undefined, ms: number, controller: AbortController, - ) { - if (signal) signal.addEventListener('abort', controller.abort); + ): Promise { + const { signal, ...options } = init || {}; + if (signal) signal.addEventListener('abort', () => controller.abort()); const timeout = setTimeout(() => controller.abort(), ms); @@ -491,12 +498,18 @@ export class PagePromise< export const createResponseHeaders = ( headers: Awaited>['headers'], ): Record => { - return new Proxy(Object.fromEntries(headers.entries()), { - get(target, name) { - const key = name.toString(); - return target[key.toLowerCase()] || target[key]; + return new Proxy( + Object.fromEntries( + // @ts-ignore + headers.entries(), + ), + { + get(target, name) { + const key = name.toString(); + return target[key.toLowerCase()] || target[key]; + }, }, - }); + ); }; type HTTPMethod = 'get' | 'post' | 'put' | 'patch' | 'delete'; diff --git a/error.ts b/src/error.ts similarity index 100% rename from error.ts rename to src/error.ts index 3e58106d2..8454e742f 100644 --- a/error.ts +++ b/src/error.ts @@ -23,10 +23,10 @@ export class APIError extends Error { const data = error as Record; this.error = data; - this.type = data?.['type']; + this.code = data?.['code']; this.message = data?.['message']; this.param = data?.['param']; - this.code = data?.['code']; + this.type = data?.['type']; } static generate( diff --git a/index.ts b/src/index.ts similarity index 87% rename from index.ts rename to src/index.ts index 2c9d9d188..f960020dd 100644 --- a/index.ts +++ b/src/index.ts @@ -1,10 +1,11 @@ // File generated from our OpenAPI spec by Stainless. -import qs from 'qs'; +import * as qs from 'qs'; import * as Core from './core'; -import * as API from './resources'; +import * as Pagination from './pagination'; +import * as API from './resources/index'; import * as Errors from './error'; -import type { Agent } from 'http'; +import type { Agent } from 'openai/_shims/agent'; import * as Uploads from './uploads'; type Config = { @@ -109,6 +110,9 @@ export namespace OpenAI { export import toFile = Uploads.toFile; export import fileFromPath = Uploads.fileFromPath; + export import Page = Pagination.Page; + export import PageResponse = Pagination.PageResponse; + export import Completions = API.Completions; export import Completion = API.Completion; export import CompletionChoice = API.CompletionChoice; @@ -125,10 +129,10 @@ export namespace OpenAI { export import EmbeddingCreateParams = API.EmbeddingCreateParams; export import Files = API.Files; - export import FileContentResponse = API.FileContentResponse; - export import FileDeletedResponse = API.FileDeletedResponse; - export import FileResponse = API.FileResponse; - export import FileListResponse = API.FileListResponse; + export import FileContent = API.FileContent; + export import FileDeleted = API.FileDeleted; + export import FileObject = API.FileObject; + export import FileObjectsPage = API.FileObjectsPage; export import FileCreateParams = API.FileCreateParams; export import Images = API.Images; @@ -146,16 +150,17 @@ export namespace OpenAI { export import ModerationCreateParams = API.ModerationCreateParams; export import Models = API.Models; - export import ListModelsResponse = API.ListModelsResponse; export import Model = API.Model; - export import ModelDeletedResponse = API.ModelDeletedResponse; + export import ModelDeleted = API.ModelDeleted; + export import ModelsPage = API.ModelsPage; export import FineTunes = API.FineTunes; export import FineTune = API.FineTune; export import FineTuneEvent = API.FineTuneEvent; - export import ListFineTuneEventsResponse = API.ListFineTuneEventsResponse; - export import ListFineTunesResponse = API.ListFineTunesResponse; + export import FineTuneEventsListResponse = API.FineTuneEventsListResponse; + export import FineTunesPage = API.FineTunesPage; export import FineTuneCreateParams = API.FineTuneCreateParams; export import FineTuneListEventsParams = API.FineTuneListEventsParams; } + export default OpenAI; diff --git a/src/pagination.ts b/src/pagination.ts new file mode 100644 index 000000000..653c15498 --- /dev/null +++ b/src/pagination.ts @@ -0,0 +1,42 @@ +// File generated from our OpenAPI spec by Stainless. + +import { AbstractPage, APIResponse, APIClient, FinalRequestOptions } from './core'; + +export interface PageResponse { + data: Array; + + object: string; +} + +/** + * Note: no pagination actually occurs yet, this is for forwards-compatibility. + */ +export class Page extends AbstractPage implements PageResponse { + object: string; + + data: Array; + + constructor(client: APIClient, response: APIResponse>, options: FinalRequestOptions) { + super(client, response, options); + + this.object = response.object; + this.data = response.data; + } + + getPaginatedItems(): Item[] { + return this.data; + } + + // @deprecated Please use `nextPageInfo()` instead + /** + * This page represents a response that isn't actually paginated at the API level + * so there will never be any next page params. + */ + nextPageParams(): null { + return null; + } + + nextPageInfo(): null { + return null; + } +} diff --git a/resource.ts b/src/resource.ts similarity index 100% rename from resource.ts rename to src/resource.ts diff --git a/resources/audio/audio.ts b/src/resources/audio/audio.ts similarity index 93% rename from resources/audio/audio.ts rename to src/resources/audio/audio.ts index 6b08ae7c1..740c96369 100644 --- a/resources/audio/audio.ts +++ b/src/resources/audio/audio.ts @@ -1,6 +1,6 @@ // File generated from our OpenAPI spec by Stainless. -import { APIResource } from '~/resource'; +import { APIResource } from 'openai/resource'; import { Transcriptions } from './transcriptions'; import { Translations } from './translations'; import * as API from './'; diff --git a/resources/audio/index.ts b/src/resources/audio/index.ts similarity index 100% rename from resources/audio/index.ts rename to src/resources/audio/index.ts diff --git a/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts similarity index 92% rename from resources/audio/transcriptions.ts rename to src/resources/audio/transcriptions.ts index aa80cdb9b..7a9dcde2f 100644 --- a/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -1,9 +1,9 @@ // File generated from our OpenAPI spec by Stainless. -import * as Core from '~/core'; -import { APIResource } from '~/resource'; +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; import * as API from './'; -import { type Uploadable, multipartFormRequestOptions } from '~/core'; +import { type Uploadable, multipartFormRequestOptions } from 'openai/core'; export class Transcriptions extends APIResource { /** diff --git a/resources/audio/translations.ts b/src/resources/audio/translations.ts similarity index 91% rename from resources/audio/translations.ts rename to src/resources/audio/translations.ts index a4376149f..1aaf795d2 100644 --- a/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -1,9 +1,9 @@ // File generated from our OpenAPI spec by Stainless. -import * as Core from '~/core'; -import { APIResource } from '~/resource'; +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; import * as API from './'; -import { type Uploadable, multipartFormRequestOptions } from '~/core'; +import { type Uploadable, multipartFormRequestOptions } from 'openai/core'; export class Translations extends APIResource { /** diff --git a/resources/chat/chat.ts b/src/resources/chat/chat.ts similarity index 91% rename from resources/chat/chat.ts rename to src/resources/chat/chat.ts index 80ae444dd..b821530d0 100644 --- a/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -1,6 +1,6 @@ // File generated from our OpenAPI spec by Stainless. -import { APIResource } from '~/resource'; +import { APIResource } from 'openai/resource'; import { Completions } from './completions'; import * as API from './'; diff --git a/resources/chat/completions.ts b/src/resources/chat/completions.ts similarity index 93% rename from resources/chat/completions.ts rename to src/resources/chat/completions.ts index fad059215..1e78dd230 100644 --- a/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -1,9 +1,9 @@ // File generated from our OpenAPI spec by Stainless. -import * as Core from '~/core'; -import { APIResource } from '~/resource'; +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; import * as API from './'; -import { Stream } from '~/streaming'; +import { Stream } from 'openai/streaming'; export class Completions extends APIResource { /** @@ -26,12 +26,12 @@ export class Completions extends APIResource { } export interface ChatCompletion { + id: string; + choices: Array; created: number; - id: string; - model: string; object: string; @@ -99,12 +99,12 @@ export namespace ChatCompletion { } export interface ChatCompletionChunk { + id: string; + choices: Array; created: number; - id: string; - model: string; object: string; @@ -181,11 +181,14 @@ export namespace CompletionCreateParams { model: | (string & {}) | 'gpt-4' + | 'gpt-4-0314' | 'gpt-4-0613' | 'gpt-4-32k' + | 'gpt-4-32k-0314' | 'gpt-4-32k-0613' | 'gpt-3.5-turbo' | 'gpt-3.5-turbo-16k' + | 'gpt-3.5-turbo-0301' | 'gpt-3.5-turbo-0613' | 'gpt-3.5-turbo-16k-0613'; @@ -295,16 +298,16 @@ export namespace CompletionCreateParams { export namespace CreateChatCompletionRequestNonStreaming { export interface Message { /** - * The role of the messages author. One of `system`, `user`, `assistant`, or - * `function`. + * The contents of the message. `content` is required for all messages, and may be + * null for assistant messages with function calls. */ - role: 'system' | 'user' | 'assistant' | 'function'; + content: string | null; /** - * The contents of the message. `content` is required for all messages except - * assistant messages with function calls. + * The role of the messages author. One of `system`, `user`, `assistant`, or + * `function`. */ - content?: string; + role: 'system' | 'user' | 'assistant' | 'function'; /** * The name and arguments of a function that should be called, as generated by the @@ -333,12 +336,12 @@ export namespace CompletionCreateParams { * hallucinate parameters not defined by your function schema. Validate the * arguments in your code before calling your function. */ - arguments?: string; + arguments: string; /** * The name of the function to call. */ - name?: string; + name: string; } } @@ -356,18 +359,22 @@ export namespace CompletionCreateParams { */ name: string; - /** - * The description of what the function does. - */ - description?: string; - /** * The parameters the functions accepts, described as a JSON Schema object. See the * [guide](/docs/guides/gpt/function-calling) for examples, and the * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for * documentation about the format. + * + * To describe a function that accepts no parameters, provide the value + * `{"type": "object", "properties": {}}`. */ - parameters?: Record; + parameters: Record; + + /** + * A description of what the function does, used by the model to choose when and + * how to call the function. + */ + description?: string; } } @@ -386,11 +393,14 @@ export namespace CompletionCreateParams { model: | (string & {}) | 'gpt-4' + | 'gpt-4-0314' | 'gpt-4-0613' | 'gpt-4-32k' + | 'gpt-4-32k-0314' | 'gpt-4-32k-0613' | 'gpt-3.5-turbo' | 'gpt-3.5-turbo-16k' + | 'gpt-3.5-turbo-0301' | 'gpt-3.5-turbo-0613' | 'gpt-3.5-turbo-16k-0613'; @@ -500,16 +510,16 @@ export namespace CompletionCreateParams { export namespace CreateChatCompletionRequestStreaming { export interface Message { /** - * The role of the messages author. One of `system`, `user`, `assistant`, or - * `function`. + * The contents of the message. `content` is required for all messages, and may be + * null for assistant messages with function calls. */ - role: 'system' | 'user' | 'assistant' | 'function'; + content: string | null; /** - * The contents of the message. `content` is required for all messages except - * assistant messages with function calls. + * The role of the messages author. One of `system`, `user`, `assistant`, or + * `function`. */ - content?: string; + role: 'system' | 'user' | 'assistant' | 'function'; /** * The name and arguments of a function that should be called, as generated by the @@ -538,12 +548,12 @@ export namespace CompletionCreateParams { * hallucinate parameters not defined by your function schema. Validate the * arguments in your code before calling your function. */ - arguments?: string; + arguments: string; /** * The name of the function to call. */ - name?: string; + name: string; } } @@ -561,18 +571,22 @@ export namespace CompletionCreateParams { */ name: string; - /** - * The description of what the function does. - */ - description?: string; - /** * The parameters the functions accepts, described as a JSON Schema object. See the * [guide](/docs/guides/gpt/function-calling) for examples, and the * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for * documentation about the format. + * + * To describe a function that accepts no parameters, provide the value + * `{"type": "object", "properties": {}}`. */ - parameters?: Record; + parameters: Record; + + /** + * A description of what the function does, used by the model to choose when and + * how to call the function. + */ + description?: string; } } } diff --git a/resources/chat/index.ts b/src/resources/chat/index.ts similarity index 100% rename from resources/chat/index.ts rename to src/resources/chat/index.ts diff --git a/resources/completions.ts b/src/resources/completions.ts similarity index 99% rename from resources/completions.ts rename to src/resources/completions.ts index 3e6952084..7f93a423f 100644 --- a/resources/completions.ts +++ b/src/resources/completions.ts @@ -1,9 +1,9 @@ // File generated from our OpenAPI spec by Stainless. -import * as Core from '~/core'; -import { APIResource } from '~/resource'; +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; import * as API from './'; -import { Stream } from '~/streaming'; +import { Stream } from 'openai/streaming'; export class Completions extends APIResource { /** @@ -26,12 +26,12 @@ export class Completions extends APIResource { } export interface Completion { + id: string; + choices: Array; created: number; - id: string; - model: string; object: string; diff --git a/resources/edits.ts b/src/resources/edits.ts similarity index 96% rename from resources/edits.ts rename to src/resources/edits.ts index d03078cef..66ca51347 100644 --- a/resources/edits.ts +++ b/src/resources/edits.ts @@ -1,7 +1,7 @@ // File generated from our OpenAPI spec by Stainless. -import * as Core from '~/core'; -import { APIResource } from '~/resource'; +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; import * as API from './'; export class Edits extends APIResource { diff --git a/resources/embeddings.ts b/src/resources/embeddings.ts similarity index 95% rename from resources/embeddings.ts rename to src/resources/embeddings.ts index b019d3a64..4a0721603 100644 --- a/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -1,7 +1,7 @@ // File generated from our OpenAPI spec by Stainless. -import * as Core from '~/core'; -import { APIResource } from '~/resource'; +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; import * as API from './'; export class Embeddings extends APIResource { diff --git a/resources/files.ts b/src/resources/files.ts similarity index 65% rename from resources/files.ts rename to src/resources/files.ts index b17e0c84a..53e01ca6c 100644 --- a/resources/files.ts +++ b/src/resources/files.ts @@ -1,9 +1,10 @@ // File generated from our OpenAPI spec by Stainless. -import * as Core from '~/core'; -import { APIResource } from '~/resource'; +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; import * as API from './'; -import { type Uploadable, multipartFormRequestOptions } from '~/core'; +import { type Uploadable, multipartFormRequestOptions } from 'openai/core'; +import { Page } from 'openai/pagination'; export class Files extends APIResource { /** @@ -12,41 +13,35 @@ export class Files extends APIResource { * organization can be up to 1 GB. Please contact us if you need to increase the * storage limit. */ - async create( - body: FileCreateParams, - options?: Core.RequestOptions, - ): Promise> { + async create(body: FileCreateParams, options?: Core.RequestOptions): Promise> { return this.post('/files', await multipartFormRequestOptions({ body, ...options })); } /** * Returns information about a specific file. */ - retrieve(fileId: string, options?: Core.RequestOptions): Promise> { + retrieve(fileId: string, options?: Core.RequestOptions): Promise> { return this.get(`/files/${fileId}`, options); } /** * Returns a list of files that belong to the user's organization. */ - list(options?: Core.RequestOptions): Promise> { - return this.get('/files', options); + list(options?: Core.RequestOptions): Core.PagePromise { + return this.getAPIList('/files', FileObjectsPage, options); } /** * Delete a file. */ - del(fileId: string, options?: Core.RequestOptions): Promise> { + del(fileId: string, options?: Core.RequestOptions): Promise> { return this.delete(`/files/${fileId}`, options); } /** * Returns the contents of the specified file */ - retrieveFileContent( - fileId: string, - options?: Core.RequestOptions, - ): Promise>> { + retrieveFileContent(fileId: string, options?: Core.RequestOptions): Promise> { return this.get(`/files/${fileId}/content`, { ...options, headers: { Accept: 'application/json', ...options?.headers }, @@ -54,25 +49,30 @@ export class Files extends APIResource { } } -export type FileContentResponse = string; +/** + * Note: no pagination actually occurs yet, this is for forwards-compatibility. + */ +export class FileObjectsPage extends Page {} -export interface FileDeletedResponse { - deleted: boolean; +export type FileContent = string; +export interface FileDeleted { id: string; + deleted: boolean; + object: string; } -export interface FileResponse { +export interface FileObject { + id: string; + bytes: number; created_at: number; filename: string; - id: string; - object: string; purpose: string; @@ -82,12 +82,6 @@ export interface FileResponse { status_details?: unknown | null; } -export interface FileListResponse { - data: Array; - - object: string; -} - export interface FileCreateParams { /** * Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be @@ -109,9 +103,9 @@ export interface FileCreateParams { } export namespace Files { - export import FileContentResponse = API.FileContentResponse; - export import FileDeletedResponse = API.FileDeletedResponse; - export import FileResponse = API.FileResponse; - export import FileListResponse = API.FileListResponse; + export import FileContent = API.FileContent; + export import FileDeleted = API.FileDeleted; + export import FileObject = API.FileObject; + export import FileObjectsPage = API.FileObjectsPage; export import FileCreateParams = API.FileCreateParams; } diff --git a/resources/fine-tunes.ts b/src/resources/fine-tunes.ts similarity index 90% rename from resources/fine-tunes.ts rename to src/resources/fine-tunes.ts index 2f082b035..551674016 100644 --- a/resources/fine-tunes.ts +++ b/src/resources/fine-tunes.ts @@ -1,10 +1,11 @@ // File generated from our OpenAPI spec by Stainless. -import * as Core from '~/core'; -import { APIResource } from '~/resource'; -import * as Files from '~/resources/files'; +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; +import * as Files from 'openai/resources/files'; import * as API from './'; -import { Stream } from '~/streaming'; +import { Page } from 'openai/pagination'; +import { Stream } from 'openai/streaming'; export class FineTunes extends APIResource { /** @@ -31,8 +32,8 @@ export class FineTunes extends APIResource { /** * List your organization's fine-tuning jobs */ - list(options?: Core.RequestOptions): Promise> { - return this.get('/fine-tunes', options); + list(options?: Core.RequestOptions): Core.PagePromise { + return this.getAPIList('/fine-tunes', FineTunesPage, options); } /** @@ -49,7 +50,7 @@ export class FineTunes extends APIResource { fineTuneId: string, query?: FineTuneListEventsParams.ListEventsRequestNonStreaming, options?: Core.RequestOptions, - ): Promise>; + ): Promise>; listEvents( fineTuneId: string, query: FineTuneListEventsParams.ListEventsRequestStreaming, @@ -59,7 +60,7 @@ export class FineTunes extends APIResource { fineTuneId: string, query?: FineTuneListEventsParams | undefined, options?: Core.RequestOptions, - ): Promise>> { + ): Promise>> { return this.get(`/fine-tunes/${fineTuneId}/events`, { query, ...options, @@ -68,30 +69,35 @@ export class FineTunes extends APIResource { } } +/** + * Note: no pagination actually occurs yet, this is for forwards-compatibility. + */ +export class FineTunesPage extends Page {} + export interface FineTune { + id: string; + created_at: number; fine_tuned_model: string | null; hyperparams: unknown; - id: string; - model: string; object: string; organization_id: string; - result_files: Array; + result_files: Array; status: string; - training_files: Array; + training_files: Array; updated_at: number; - validation_files: Array; + validation_files: Array; events?: Array; } @@ -106,18 +112,12 @@ export interface FineTuneEvent { object: string; } -export interface ListFineTuneEventsResponse { +export interface FineTuneEventsListResponse { data: Array; object: string; } -export interface ListFineTunesResponse { - data: Array; - - object: string; -} - export interface FineTuneCreateParams { /** * The ID of an uploaded file that contains training data. @@ -280,8 +280,8 @@ export namespace FineTuneListEventsParams { export namespace FineTunes { export import FineTune = API.FineTune; export import FineTuneEvent = API.FineTuneEvent; - export import ListFineTuneEventsResponse = API.ListFineTuneEventsResponse; - export import ListFineTunesResponse = API.ListFineTunesResponse; + export import FineTuneEventsListResponse = API.FineTuneEventsListResponse; + export import FineTunesPage = API.FineTunesPage; export import FineTuneCreateParams = API.FineTuneCreateParams; export import FineTuneListEventsParams = API.FineTuneListEventsParams; } diff --git a/resources/images.ts b/src/resources/images.ts similarity index 96% rename from resources/images.ts rename to src/resources/images.ts index 7c79cfe25..3ced23fe3 100644 --- a/resources/images.ts +++ b/src/resources/images.ts @@ -1,9 +1,9 @@ // File generated from our OpenAPI spec by Stainless. -import * as Core from '~/core'; -import { APIResource } from '~/resource'; +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; import * as API from './'; -import { type Uploadable, multipartFormRequestOptions } from '~/core'; +import { type Uploadable, multipartFormRequestOptions } from 'openai/core'; export class Images extends APIResource { /** diff --git a/resources/index.ts b/src/resources/index.ts similarity index 72% rename from resources/index.ts rename to src/resources/index.ts index a604f5c98..6f986db8c 100644 --- a/resources/index.ts +++ b/src/resources/index.ts @@ -5,21 +5,14 @@ export { Chat } from './chat/chat'; export { Completion, CompletionChoice, CompletionCreateParams, Completions } from './completions'; export { Edit, EditCreateParams, Edits } from './edits'; export { Embedding, EmbeddingCreateParams, Embeddings } from './embeddings'; -export { - FileContentResponse, - FileDeletedResponse, - FileResponse, - FileListResponse, - FileCreateParams, - Files, -} from './files'; +export { FileContent, FileDeleted, FileObject, FileCreateParams, FileObjectsPage, Files } from './files'; export { FineTune, FineTuneEvent, - ListFineTuneEventsResponse, - ListFineTunesResponse, + FineTuneEventsListResponse, FineTuneCreateParams, FineTuneListEventsParams, + FineTunesPage, FineTunes, } from './fine-tunes'; export { @@ -30,5 +23,5 @@ export { ImageGenerateParams, Images, } from './images'; -export { ListModelsResponse, Model, ModelDeletedResponse, Models } from './models'; +export { Model, ModelDeleted, ModelsPage, Models } from './models'; export { Moderation, ModerationCreateResponse, ModerationCreateParams, Moderations } from './moderations'; diff --git a/resources/models.ts b/src/resources/models.ts similarity index 64% rename from resources/models.ts rename to src/resources/models.ts index 4a464b4d5..08a25ad9d 100644 --- a/resources/models.ts +++ b/src/resources/models.ts @@ -1,8 +1,9 @@ // File generated from our OpenAPI spec by Stainless. -import * as Core from '~/core'; -import { APIResource } from '~/resource'; +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; import * as API from './'; +import { Page } from 'openai/pagination'; export class Models extends APIResource { /** @@ -17,44 +18,43 @@ export class Models extends APIResource { * Lists the currently available models, and provides basic information about each * one such as the owner and availability. */ - list(options?: Core.RequestOptions): Promise> { - return this.get('/models', options); + list(options?: Core.RequestOptions): Core.PagePromise { + return this.getAPIList('/models', ModelsPage, options); } /** * Delete a fine-tuned model. You must have the Owner role in your organization. */ - del(model: string, options?: Core.RequestOptions): Promise> { + del(model: string, options?: Core.RequestOptions): Promise> { return this.delete(`/models/${model}`, options); } } -export interface ListModelsResponse { - data: Array; - - object: string; -} +/** + * Note: no pagination actually occurs yet, this is for forwards-compatibility. + */ +export class ModelsPage extends Page {} export interface Model { - created: number; - id: string; + created: number; + object: string; owned_by: string; } -export interface ModelDeletedResponse { - deleted: boolean; - +export interface ModelDeleted { id: string; + deleted: boolean; + object: string; } export namespace Models { - export import ListModelsResponse = API.ListModelsResponse; export import Model = API.Model; - export import ModelDeletedResponse = API.ModelDeletedResponse; + export import ModelDeleted = API.ModelDeleted; + export import ModelsPage = API.ModelsPage; } diff --git a/resources/moderations.ts b/src/resources/moderations.ts similarity index 96% rename from resources/moderations.ts rename to src/resources/moderations.ts index 6ddb29f7f..3c94f56a4 100644 --- a/resources/moderations.ts +++ b/src/resources/moderations.ts @@ -1,7 +1,7 @@ // File generated from our OpenAPI spec by Stainless. -import * as Core from '~/core'; -import { APIResource } from '~/resource'; +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; import * as API from './'; export class Moderations extends APIResource { diff --git a/streaming.ts b/src/streaming.ts similarity index 98% rename from streaming.ts rename to src/streaming.ts index 3d5680f44..3de8e2ba2 100644 --- a/streaming.ts +++ b/src/streaming.ts @@ -1,5 +1,5 @@ import type { Response } from 'openai/_shims/fetch'; -import { APIResponse, Headers, createResponseHeaders } from '~/core'; +import { APIResponse, Headers, createResponseHeaders } from './core'; type ServerSentEvent = { event: string | null; @@ -84,6 +84,7 @@ export class Stream implements AsyncIterable, APIResponse; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/slice) */ + slice(start?: number, end?: number): BlobLike; + // unfortunately @types/node-fetch@^2.6.4 doesn't type the arrayBuffer method +} + +/** + * Intended to match web.File, node.File, node-fetch.File, etc. + */ +export interface FileLike extends BlobLike { + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/File/lastModified) */ + readonly lastModified: number; + /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/File/name) */ + readonly name: string; +} + +/** + * Intended to match web.Response, node.Response, node-fetch.Response, etc. + */ +export interface ResponseLike { + url: string; + blob(): Promise; +} + +export const isResponseLike = (value: any): value is ResponseLike => + value != null && + typeof value === 'object' && + typeof value.url === 'string' && + typeof value.blob === 'function'; + +export const isFileLike = (value: any): value is FileLike => + value != null && + typeof value === 'object' && + typeof value.name === 'string' && + typeof value.lastModified === 'number' && + isBlobLike(value); + +/** + * The BlobLike type omits arrayBuffer() because @types/node-fetch@^2.6.4 lacks it; but this check + * adds the arrayBuffer() method type because it is available and used at runtime + */ +export const isBlobLike = (value: any): value is BlobLike & { arrayBuffer(): Promise } => + value != null && + typeof value === 'object' && + typeof value.size === 'number' && + typeof value.type === 'string' && + typeof value.text === 'function' && + typeof value.slice === 'function' && + typeof value.arrayBuffer === 'function'; + +export const isUploadable = (value: any): value is Uploadable => { + return isFileLike(value) || isResponseLike(value) || isFsReadStream(value); +}; + +export type ToFileInput = Uploadable | Exclude | AsyncIterable; + +/** + * Helper for creating a {@link File} to pass to an SDK upload method from a variety of different data formats + * @param bits the raw content of the file. Can be an {@link Uploadable}, {@link BlobPart}, or {@link AsyncIterable} of {@link BlobPart}s + * @param {string=} name the name of the file. If omitted, toFile will try to determine a file name from bits if possible + * @param {Object=} options additional properties + * @param {string=} options.type the MIME type of the content + * @param {number=} options.lastModified the last modified timestamp + * @returns a {@link File} with the given properties + */ +export async function toFile( + value: ToFileInput, + name?: string | null | undefined, + options: FilePropertyBag | undefined = {}, +): Promise { + if (isResponseLike(value)) { + const blob = await value.blob(); + name ||= new URL(value.url).pathname.split(/[\\/]/).pop() ?? 'unknown_file'; + + return new File([blob as any], name, options); + } + + const bits = await getBytes(value); + + name ||= getName(value) ?? 'unknown_file'; + + if (!options.type) { + const type = (bits[0] as any)?.type; + if (typeof type === 'string') { + options = { ...options, type }; + } + } + + return new File(bits, name, options); +} + +async function getBytes(value: ToFileInput): Promise> { + if (value instanceof Promise) return getBytes(await (value as any)); + + let parts: Array = []; + if ( + typeof value === 'string' || + ArrayBuffer.isView(value) || // includes Uint8Array, Buffer, etc. + value instanceof ArrayBuffer + ) { + parts.push(value); + } else if (isBlobLike(value)) { + parts.push(await value.arrayBuffer()); + } else if ( + isAsyncIterableIterator(value) // includes Readable, ReadableStream, etc. + ) { + for await (const chunk of value) { + parts.push(chunk as BlobPart); // TODO, consider validating? + } + } else { + throw new Error( + `Unexpected data type: ${typeof value}; constructor: ${ + value?.constructor?.name + }; props: ${propsForError(value)}`, + ); + } + + return parts; +} + +function propsForError(value: any): string { + const props = Object.getOwnPropertyNames(value); + return `[${props.map((p) => `"${p}"`).join(', ')}]`; +} + +function getName(value: any): string | undefined { + return ( + getStringFromMaybeBuffer(value.name) || + getStringFromMaybeBuffer(value.filename) || + // For fs.ReadStream + getStringFromMaybeBuffer(value.path)?.split(/[\\/]/).pop() + ); +} + +const getStringFromMaybeBuffer = (x: string | Buffer | unknown): string | undefined => { + if (typeof x === 'string') return x; + if (typeof Buffer !== 'undefined' && x instanceof Buffer) return String(x); + return undefined; +}; + +const isAsyncIterableIterator = (value: any): value is AsyncIterableIterator => + value != null && typeof value === 'object' && typeof value[Symbol.asyncIterator] === 'function'; + +export class MultipartBody { + constructor(public body: Readable | BodyInit) {} + get [Symbol.toStringTag](): string { + return 'MultipartBody'; + } +} + +export const isMultipartBody = (body: any): body is MultipartBody => + body && typeof body === 'object' && body.body && body[Symbol.toStringTag] === 'MultipartBody'; + +/** + * Returns a multipart/form-data request if any part of the given request body contains a File / Blob value. + * Otherwise returns the request as is. + */ +export const maybeMultipartFormRequestOptions = async >( + opts: RequestOptions, +): Promise> => { + if (!hasUploadableValue(opts.body)) return opts; + + const form = await createForm(opts.body); + return getMultipartRequestOptions(form, opts); +}; + +export const multipartFormRequestOptions = async >( + opts: RequestOptions, +): Promise> => { + const form = await createForm(opts.body); + return getMultipartRequestOptions(form, opts); +}; + +export const createForm = async >(body: T | undefined): Promise => { + const form = new FormData(); + await Promise.all(Object.entries(body || {}).map(([key, value]) => addFormValue(form, key, value))); + return form; +}; + +const hasUploadableValue = (value: unknown): boolean => { + if (isUploadable(value)) return true; + if (Array.isArray(value)) return value.some(hasUploadableValue); + if (value && typeof value === 'object') { + for (const k in value) { + if (hasUploadableValue((value as any)[k])) return true; + } + } + return false; +}; + +const addFormValue = async (form: FormData, key: string, value: unknown): Promise => { + if (value === undefined) return; + if (value == null) { + throw new TypeError( + `Received null for "${key}"; to pass null in FormData, you must use the string 'null'`, + ); + } + + // TODO: make nested formats configurable + if (typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean') { + form.append(key, value); + } else if (isUploadable(value)) { + const file = await toFile(value); + form.append(key, file); + } else if (Array.isArray(value)) { + await Promise.all(value.map((entry) => addFormValue(form, key + '[]', entry))); + } else if (typeof value === 'object') { + await Promise.all( + Object.entries(value).map(([name, prop]) => addFormValue(form, `${key}[${name}]`, prop)), + ); + } else { + throw new TypeError( + `Invalid value given to form, expected a string, number, boolean, object, Array, File or Blob but got ${value} instead`, + ); + } +}; diff --git a/src/version.ts b/src/version.ts new file mode 100644 index 000000000..4e42addf0 --- /dev/null +++ b/src/version.ts @@ -0,0 +1 @@ +export const VERSION = '4.0.0-beta.2'; diff --git a/tests/api-resources/answers.test.ts b/tests/api-resources/answers.test.ts deleted file mode 100644 index 4df121d09..000000000 --- a/tests/api-resources/answers.test.ts +++ /dev/null @@ -1,242 +0,0 @@ -// File generated from our OpenAPI spec by Stainless. - -import OpenAI from '~/index'; - -const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); - -describe('resource answers', () => { - test('create: only required params', async () => { - const response = await openAI.answers.create({ - examples: [['x', 'x']], - examples_context: - "Ottawa, Canada's capital, is located in the east of southern Ontario, near the city of Montréal and the U.S. border.", - model: 'string', - question: 'What is the capital of Japan?', - }); - }); - - test('create: required and optional params', async () => { - const response = await openAI.answers.create({ - examples: [['x', 'x']], - examples_context: - "Ottawa, Canada's capital, is located in the east of southern Ontario, near the city of Montréal and the U.S. border.", - model: 'string', - question: 'What is the capital of Japan?', - documents: [ - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - 'string', - ], - expand: [{}, {}, {}], - file: 'string', - logit_bias: {}, - logprobs: 0, - max_rerank: 0, - max_tokens: 0, - n: 1, - return_metadata: true, - return_prompt: true, - search_model: 'string', - stop: '\n', - temperature: 0, - user: 'user-1234', - }); - }); -}); diff --git a/tests/api-resources/audio/transcriptions.test.ts b/tests/api-resources/audio/transcriptions.test.ts index d4a5af54c..ec12a956f 100644 --- a/tests/api-resources/audio/transcriptions.test.ts +++ b/tests/api-resources/audio/transcriptions.test.ts @@ -1,7 +1,6 @@ // File generated from our OpenAPI spec by Stainless. -import { toFile } from 'openai'; -import OpenAI from '~/index'; +import OpenAI, { toFile } from 'openai'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); diff --git a/tests/api-resources/audio/translations.test.ts b/tests/api-resources/audio/translations.test.ts index 949e3e4da..908bc596e 100644 --- a/tests/api-resources/audio/translations.test.ts +++ b/tests/api-resources/audio/translations.test.ts @@ -1,7 +1,6 @@ // File generated from our OpenAPI spec by Stainless. -import { toFile } from 'openai'; -import OpenAI from '~/index'; +import OpenAI, { toFile } from 'openai'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 4e88afde8..96076cf1a 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -1,13 +1,13 @@ // File generated from our OpenAPI spec by Stainless. -import OpenAI from '~/index'; +import OpenAI from 'openai'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource completions', () => { test('create: only required params', async () => { const response = await openai.chat.completions.create({ - messages: [{ role: 'system' }], + messages: [{ role: 'system', content: 'string' }], model: 'gpt-3.5-turbo', }); }); diff --git a/tests/api-resources/classifications.test.ts b/tests/api-resources/classifications.test.ts deleted file mode 100644 index 3f63dd56d..000000000 --- a/tests/api-resources/classifications.test.ts +++ /dev/null @@ -1,36 +0,0 @@ -// File generated from our OpenAPI spec by Stainless. - -import OpenAI from '~/index'; - -const openAI = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); - -describe('resource classifications', () => { - test('create: only required params', async () => { - const response = await openAI.classifications.create({ - model: 'string', - query: 'The plot is not very attractive.', - }); - }); - - test('create: required and optional params', async () => { - const response = await openAI.classifications.create({ - model: 'string', - query: 'The plot is not very attractive.', - examples: [ - ['x', 'x'], - ['x', 'x'], - ], - expand: [{}, {}, {}], - file: 'string', - labels: ['string', 'string'], - logit_bias: {}, - logprobs: 0, - max_examples: 0, - return_metadata: true, - return_prompt: true, - search_model: 'string', - temperature: 0, - user: 'user-1234', - }); - }); -}); diff --git a/tests/api-resources/completions.test.ts b/tests/api-resources/completions.test.ts index 5aacb329a..6d6ac8347 100644 --- a/tests/api-resources/completions.test.ts +++ b/tests/api-resources/completions.test.ts @@ -1,6 +1,6 @@ // File generated from our OpenAPI spec by Stainless. -import OpenAI from '~/index'; +import OpenAI from 'openai'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); diff --git a/tests/api-resources/edits.test.ts b/tests/api-resources/edits.test.ts index a37b95557..c39e53fac 100644 --- a/tests/api-resources/edits.test.ts +++ b/tests/api-resources/edits.test.ts @@ -1,6 +1,6 @@ // File generated from our OpenAPI spec by Stainless. -import OpenAI from '~/index'; +import OpenAI from 'openai'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); diff --git a/tests/api-resources/embeddings.test.ts b/tests/api-resources/embeddings.test.ts index dbd3f9a4e..6fc8b88dc 100644 --- a/tests/api-resources/embeddings.test.ts +++ b/tests/api-resources/embeddings.test.ts @@ -1,6 +1,6 @@ // File generated from our OpenAPI spec by Stainless. -import OpenAI from '~/index'; +import OpenAI from 'openai'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); diff --git a/tests/api-resources/files.test.ts b/tests/api-resources/files.test.ts index 600eb6814..dca76e138 100644 --- a/tests/api-resources/files.test.ts +++ b/tests/api-resources/files.test.ts @@ -1,7 +1,6 @@ // File generated from our OpenAPI spec by Stainless. -import { toFile } from 'openai'; -import OpenAI from '~/index'; +import OpenAI, { toFile } from 'openai'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); diff --git a/tests/api-resources/fine-tunes.test.ts b/tests/api-resources/fine-tunes.test.ts index 5e7385bc1..1010c798f 100644 --- a/tests/api-resources/fine-tunes.test.ts +++ b/tests/api-resources/fine-tunes.test.ts @@ -1,6 +1,6 @@ // File generated from our OpenAPI spec by Stainless. -import OpenAI from '~/index'; +import OpenAI from 'openai'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); diff --git a/tests/api-resources/images.test.ts b/tests/api-resources/images.test.ts index 1fc5c8273..d0af10a60 100644 --- a/tests/api-resources/images.test.ts +++ b/tests/api-resources/images.test.ts @@ -1,7 +1,6 @@ // File generated from our OpenAPI spec by Stainless. -import { toFile } from 'openai'; -import OpenAI from '~/index'; +import OpenAI, { toFile } from 'openai'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); diff --git a/tests/api-resources/models.test.ts b/tests/api-resources/models.test.ts index 881284e9d..a89d2543c 100644 --- a/tests/api-resources/models.test.ts +++ b/tests/api-resources/models.test.ts @@ -1,6 +1,6 @@ // File generated from our OpenAPI spec by Stainless. -import OpenAI from '~/index'; +import OpenAI from 'openai'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); diff --git a/tests/api-resources/moderations.test.ts b/tests/api-resources/moderations.test.ts index 6b67b8567..ca7ab18c1 100644 --- a/tests/api-resources/moderations.test.ts +++ b/tests/api-resources/moderations.test.ts @@ -1,6 +1,6 @@ // File generated from our OpenAPI spec by Stainless. -import OpenAI from '~/index'; +import OpenAI from 'openai'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); diff --git a/tests/form.test.ts b/tests/form.test.ts index 47e5ad8ab..1b51d0795 100644 --- a/tests/form.test.ts +++ b/tests/form.test.ts @@ -1,4 +1,4 @@ -import { multipartFormRequestOptions, createForm } from '../core'; +import { multipartFormRequestOptions, createForm } from 'openai/core'; import { Blob } from 'openai/_shims/formdata'; import { toFile } from 'openai'; diff --git a/tests/index.test.ts b/tests/index.test.ts index 39bee011f..cf112ea61 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -1,7 +1,7 @@ // File generated from our OpenAPI spec by Stainless. -import { Headers } from '~/core'; -import OpenAI from '../index'; +import { Headers } from 'openai/core'; +import OpenAI from 'openai'; describe('instantiate client', () => { const env = process.env; diff --git a/tests/responses.test.ts b/tests/responses.test.ts index 38ffc086b..2901d3c43 100644 --- a/tests/responses.test.ts +++ b/tests/responses.test.ts @@ -1,4 +1,4 @@ -import { createResponseHeaders } from '../core'; +import { createResponseHeaders } from 'openai/core'; import { Headers } from 'openai/_shims/fetch'; describe('response parsing', () => { diff --git a/tests/uploads.test.ts b/tests/uploads.test.ts index 9ff353461..1079379ed 100644 --- a/tests/uploads.test.ts +++ b/tests/uploads.test.ts @@ -1,6 +1,5 @@ import fs from 'fs'; -import { toFile } from '~/uploads'; -import { ResponseLike } from 'openai/_shims/uploadable'; +import { toFile, type ResponseLike } from 'openai/uploads'; import { File } from 'openai/_shims/formdata'; class MyClass { diff --git a/tsc-multi.json b/tsc-multi.json new file mode 100644 index 000000000..4facad5ad --- /dev/null +++ b/tsc-multi.json @@ -0,0 +1,7 @@ +{ + "targets": [ + { "extname": ".js", "module": "commonjs" }, + { "extname": ".mjs", "module": "esnext" } + ], + "projects": ["tsconfig.build.json"] +} diff --git a/tsconfig.build.json b/tsconfig.build.json new file mode 100644 index 000000000..ca9e53425 --- /dev/null +++ b/tsconfig.build.json @@ -0,0 +1,43 @@ +{ + "include": ["dist/src"], + "exclude": [], + "compilerOptions": { + "target": "es2019", + "lib": ["es2020"], + "module": "commonjs", + "moduleResolution": "node", + "esModuleInterop": true, + "rootDir": "./dist/src", + "baseUrl": "./", + "paths": { + "openai/_shims/*": ["dist/src/_shims/*.node"], + "openai": ["dist/src/index.ts"], + "openai/*": ["dist/src/*"], + "digest-fetch": ["./typings/digest-fetch"] + }, + + "declaration": true, + "declarationMap": true, + "outDir": "dist", + "pretty": true, + "sourceMap": true, + "resolveJsonModule": true, + + "forceConsistentCasingInFileNames": true, + + "strict": true, + "noImplicitAny": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "strictBindCallApply": true, + "strictPropertyInitialization": true, + "noImplicitThis": true, + "alwaysStrict": true, + "exactOptionalPropertyTypes": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + "noPropertyAccessFromIndexSignature": true, + + "skipLibCheck": true + } +} diff --git a/tsconfig.cjs.json b/tsconfig.cjs.json deleted file mode 100644 index db6064ea9..000000000 --- a/tsconfig.cjs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "extends": "./tsconfig.json", - "exclude": ["examples", "dist", "tests", "ecosystem-tests"], - "compilerOptions": { - "target": "es2016", - "module": "commonjs", - "outDir": "dist/cjs/" - } -} diff --git a/tsconfig.esm.json b/tsconfig.esm.json deleted file mode 100644 index f3f8823c4..000000000 --- a/tsconfig.esm.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "./tsconfig.json", - "exclude": ["examples", "dist", "tests", "ecosystem-tests"], - "compilerOptions": { - "lib": ["ES2021"], - "target": "ES2021", - "module": "ESNext", - "outDir": "dist/esm/" - } -} diff --git a/tsconfig.json b/tsconfig.json index 3b6bc3d64..c663d7307 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,16 +1,17 @@ { - "exclude": ["dist", "ecosystem-tests"], + "include": ["src", "tests", "examples"], "compilerOptions": { "target": "es2019", "lib": ["es2020"], "module": "commonjs", "moduleResolution": "node", "esModuleInterop": true, - "rootDir": "./", + "rootDir": "./src", "baseUrl": "./", "paths": { - "~/*": ["*"], - "openai/_shims/*": ["_shims/*.node"], + "openai/_shims/*": ["src/_shims/*.node"], + "openai": ["src/index.ts"], + "openai/*": ["src/*"], "digest-fetch": ["./typings/digest-fetch"] }, diff --git a/uploads.ts b/uploads.ts deleted file mode 100644 index 965beb946..000000000 --- a/uploads.ts +++ /dev/null @@ -1,81 +0,0 @@ -import type { Readable } from 'node:stream'; -import type { RequestOptions } from './core'; -import { type BodyInit } from 'openai/_shims/fetch'; -import { FormData } from 'openai/_shims/formdata'; -import { getMultipartRequestOptions } from 'openai/_shims/getMultipartRequestOptions'; -import { isUploadable } from 'openai/_shims/uploadable'; -import { toFile } from 'openai/_shims/toFile'; -import { fileFromPath } from 'openai/_shims/fileFromPath'; - -export { toFile, fileFromPath }; - -type MultipartBody = { - __multipartBody__: Readable | BodyInit; -}; - -export const isMultipartBody = (body: any): body is MultipartBody => - typeof body === 'object' && body?.__multipartBody__ != null; - -/** - * Returns a multipart/form-data request if any part of the given request body contains a File / Blob value. - * Otherwise returns the request as is. - */ -export const maybeMultipartFormRequestOptions = async >( - opts: RequestOptions, -): Promise> => { - if (!hasUploadableValue(opts.body)) return opts; - - const form = await createForm(opts.body); - return getMultipartRequestOptions(form, opts); -}; - -export const multipartFormRequestOptions = async >( - opts: RequestOptions, -): Promise> => { - const form = await createForm(opts.body); - return getMultipartRequestOptions(form, opts); -}; - -export const createForm = async >(body: T | undefined): Promise => { - const form = new FormData(); - await Promise.all(Object.entries(body || {}).map(([key, value]) => addFormValue(form, key, value))); - return form; -}; - -const hasUploadableValue = (value: unknown): boolean => { - if (isUploadable(value)) return true; - if (Array.isArray(value)) return value.some(hasUploadableValue); - if (value && typeof value === 'object') { - for (const k in value) { - if (hasUploadableValue((value as any)[k])) return true; - } - } - return false; -}; - -const addFormValue = async (form: FormData, key: string, value: unknown): Promise => { - if (value === undefined) return; - if (value == null) { - throw new TypeError( - `Received null for "${key}"; to pass null in FormData, you must use the string 'null'`, - ); - } - - // TODO: make nested formats configurable - if (typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean') { - form.append(key, value); - } else if (isUploadable(value)) { - const file = await toFile(value); - form.append(key, file); - } else if (Array.isArray(value)) { - await Promise.all(value.map((entry) => addFormValue(form, key + '[]', entry))); - } else if (typeof value === 'object') { - await Promise.all( - Object.entries(value).map(([name, prop]) => addFormValue(form, `${key}[${name}]`, prop)), - ); - } else { - throw new TypeError( - `Invalid value given to form, expected a string, number, boolean, object, Array, File or Blob but got ${value} instead`, - ); - } -}; diff --git a/version.ts b/version.ts deleted file mode 100644 index db4ca0b4a..000000000 --- a/version.ts +++ /dev/null @@ -1 +0,0 @@ -export const VERSION = '4.0.0-beta.1'; diff --git a/yarn.lock b/yarn.lock index 118518286..e24f3516a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -978,6 +978,10 @@ "@typescript-eslint/types" "5.45.0" eslint-visitor-keys "^3.3.0" +"openai@link:.": + version "0.0.0" + uid "" + abort-controller@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" @@ -1019,6 +1023,14 @@ agentkeepalive@^4.2.1: depd "^1.1.2" humanize-ms "^1.2.1" +aggregate-error@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" + integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== + dependencies: + clean-stack "^2.0.0" + indent-string "^4.0.0" + ajv@^6.10.0, ajv@^6.12.4: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" @@ -1080,7 +1092,7 @@ ansi-styles@^5.0.0: resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== -anymatch@^3.0.3, anymatch@~3.1.2: +anymatch@^3.0.3: version "3.1.2" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== @@ -1088,6 +1100,14 @@ anymatch@^3.0.3, anymatch@~3.1.2: normalize-path "^3.0.0" picomatch "^2.0.4" +anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + arg@^4.1.0: version "4.1.3" resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" @@ -1353,6 +1373,11 @@ cjs-module-lexer@^1.0.0: resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== +clean-stack@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== + cliui@^7.0.2: version "7.0.4" resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" @@ -1362,6 +1387,15 @@ cliui@^7.0.2: strip-ansi "^6.0.0" wrap-ansi "^7.0.0" +cliui@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" + integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.1" + wrap-ansi "^7.0.0" + clone@^1.0.2: version "1.0.4" resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" @@ -1419,9 +1453,9 @@ commander@^2.19.0: integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== commander@^9.0.0: - version "9.3.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-9.3.0.tgz#f619114a5a2d2054e0d9ff1b31d5ccf89255e26b" - integrity sha512-hv95iU5uXPbK83mjrJKuZyFM/LBAoCV/XhVGkS5Je6tl7sxr6A0ITMw5WoRV46/UaJ46Nllm3Xt7IaJhXTIkzw== + version "9.5.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz#bc08d1eb5cedf7ccb797a96199d41c7bc3e60d30" + integrity sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ== commondir@^1.0.1: version "1.0.1" @@ -1828,7 +1862,7 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== -fast-glob@3.2.12: +fast-glob@3.2.12, fast-glob@^3.2.12: version "3.2.12" resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== @@ -2007,7 +2041,7 @@ get-package-type@^0.1.0: resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== -get-stdin@8.0.0: +get-stdin@8.0.0, get-stdin@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53" integrity sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg== @@ -2167,6 +2201,11 @@ imurmurhash@^0.1.4: resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + indexes-of@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" @@ -2180,7 +2219,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.0: +inherits@2, inherits@^2.0.0, inherits@^2.0.3: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== @@ -2966,9 +3005,9 @@ ms@^2.0.0: integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== mylas@^2.1.9: - version "2.1.9" - resolved "https://registry.yarnpkg.com/mylas/-/mylas-2.1.9.tgz#8329626f95c0ce522ca7d3c192eca6221d172cdc" - integrity sha512-pa+cQvmhoM8zzgitPYZErmDt9EdTNVnXsH1XFjMeM4TyG4FFcgxrvK1+jwabVFwUOEDaSWuXBMjg43kqt/Ydlg== + version "2.1.13" + resolved "https://registry.yarnpkg.com/mylas/-/mylas-2.1.13.tgz#1e23b37d58fdcc76e15d8a5ed23f9ae9fc0cbdf4" + integrity sha512-+MrqnJRtxdF+xngFfUUkIMQrUUL0KsxbADUkn23Z/4ibGg192Q+z+CQyiYwvWTsYjJygmMR8+w3ZDa98Zh6ESg== n-readlines@1.0.1: version "1.0.1" @@ -3033,10 +3072,6 @@ onetime@^5.1.2: dependencies: mimic-fn "^2.1.0" -"openai@link:.": - version "0.0.0" - uid "" - optionator@^0.9.1: version "0.9.1" resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" @@ -3054,6 +3089,13 @@ outdent@0.8.0: resolved "https://registry.yarnpkg.com/outdent/-/outdent-0.8.0.tgz#2ebc3e77bf49912543f1008100ff8e7f44428eb0" integrity sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A== +p-all@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-all/-/p-all-3.0.0.tgz#077c023c37e75e760193badab2bad3ccd5782bfb" + integrity sha512-qUZbvbBFVXm6uJ7U/WDiO0fv6waBMbjlCm4E66oZdRR+egswICarIdHyVSZZHudH8T5SF8x/JG0q0duFzPnlBw== + dependencies: + p-map "^4.0.0" + p-defer@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" @@ -3087,6 +3129,13 @@ p-locate@^5.0.0: dependencies: p-limit "^3.0.2" +p-map@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" + integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== + dependencies: + aggregate-error "^3.0.0" + p-try@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" @@ -3185,11 +3234,11 @@ please-upgrade-node@3.2.0: semver-compare "^1.0.0" plimit-lit@^1.2.6: - version "1.2.7" - resolved "https://registry.yarnpkg.com/plimit-lit/-/plimit-lit-1.2.7.tgz#ae16e6e5eadf87924e574337b4c01d140b986c4a" - integrity sha512-ce/kfCHFJ2sIK1IuSnXfVBxoMaIwuAF9J5NjFwxng1j+r8XguGxXMK87dBSODQfY+se2Raj/grpx5EAK9kapEA== + version "1.5.0" + resolved "https://registry.yarnpkg.com/plimit-lit/-/plimit-lit-1.5.0.tgz#f66df8a7041de1e965c4f1c0697ab486968a92a5" + integrity sha512-Eb/MqCb1Iv/ok4m1FqIXqvUKPISufcjZ605hl3KM/n8GaX8zfhtgdLwZU3vKjuHGh2O9Rjog/bHTq8ofIShdng== dependencies: - queue-lit "^1.2.8" + queue-lit "^1.5.0" postcss-less@3.1.4: version "3.1.4" @@ -3355,10 +3404,10 @@ qs@^6.10.3: dependencies: side-channel "^1.0.4" -queue-lit@^1.2.8: - version "1.2.8" - resolved "https://registry.yarnpkg.com/queue-lit/-/queue-lit-1.2.8.tgz#2bafa0eafb8db0380ab2301d90c52a065c4baad0" - integrity sha512-CR0/8Xb0oRk4rZrteSZcjrrPhWfXGBAWa/ATxYCqpdM4fnZu8M3zob5ajLxLUCXmpOzhHZ1+zgscrlzQtEOM0A== +queue-lit@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/queue-lit/-/queue-lit-1.5.0.tgz#8197fdafda1edd615c8a0fc14c48353626e5160a" + integrity sha512-IslToJ4eiCEE9xwMzq3viOO5nH8sUWUCwoElrhNMozzr9IIt2qqvB4I+uHu/zJTQVqc9R5DFwok4ijNK1pU3fA== queue-microtask@^1.2.2: version "1.2.3" @@ -3370,6 +3419,15 @@ react-is@^18.0.0: resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.1.0.tgz#61aaed3096d30eacf2a2127118b5b41387d32a67" integrity sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg== +readable-stream@^3.4.0: + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + readdirp@~3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" @@ -3495,6 +3553,11 @@ safe-buffer@~5.1.1: resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== +safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + sdbm@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/sdbm/-/sdbm-2.0.0.tgz#23828c1195e341d0f5810c59dfa60d86278f8718" @@ -3606,6 +3669,13 @@ string-length@^4.0.1: char-regex "^1.0.2" strip-ansi "^6.0.0" +string-to-stream@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/string-to-stream/-/string-to-stream-3.0.1.tgz#480e6fb4d5476d31cb2221f75307a5dcb6638a42" + integrity sha512-Hl092MV3USJuUCC6mfl9sPzGloA3K5VwdIeJjYIkXY/8K+mUvaeEabWJgArp+xXrsWxCajeT2pc4axbVhIZJyg== + dependencies: + readable-stream "^3.4.0" + string-width@5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.0.1.tgz#0d8158335a6cfd8eb95da9b6b262ce314a036ffd" @@ -3624,6 +3694,13 @@ string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + strip-ansi@7.0.1, strip-ansi@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.0.1.tgz#61740a08ce36b61e50e65653f07060d000975fb2" @@ -3658,6 +3735,11 @@ strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== +superstruct@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/superstruct/-/superstruct-1.0.3.tgz#de626a5b49c6641ff4d37da3c7598e7a87697046" + integrity sha512-8iTn3oSS8nRGn+C2pgXSKPI3jmpm6FExNazNpjvqS6ZUJQCej3PUXEKM8NjHBOs54ExM+LPW/FBRhymrdcCiSg== + supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" @@ -3768,10 +3850,10 @@ ts-node@^10.5.0: v8-compile-cache-lib "^3.0.0" yn "3.1.1" -tsc-alias@^1.6.9: - version "1.6.9" - resolved "https://registry.yarnpkg.com/tsc-alias/-/tsc-alias-1.6.9.tgz#d04d95124b95ad8eea55e52d45cf65a744c26baa" - integrity sha512-5lv5uAHn0cgxY1XfpXIdquUSz2xXq3ryQyNtxC6DYH7YT5rt/W+9Gsft2uyLFTh+ozk4qU8iCSP3VemjT69xlQ== +tsc-alias@^1.8.6: + version "1.8.6" + resolved "https://registry.yarnpkg.com/tsc-alias/-/tsc-alias-1.8.6.tgz#28300ed398e90b1c600548ed956f58dfbecc1589" + integrity sha512-vq+i6VpE83IeMsSJVcFN03ZBofADhr8/gIJXjxpbnTRfN/MFXy0+SBaKG2o7p95QqXBGkeG98HYz3IkOOveFbg== dependencies: chokidar "^3.5.3" commander "^9.0.0" @@ -3780,6 +3862,22 @@ tsc-alias@^1.6.9: normalize-path "^3.0.0" plimit-lit "^1.2.6" +tsc-multi@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/tsc-multi/-/tsc-multi-1.1.0.tgz#0e2b03c0ed0ac58ecb556f11709441102d202680" + integrity sha512-THE6X+sse7EZ2qMhqXvBhd2HMTvXyWwYnx+2T/ijqdp/6Rf7rUc2uPRzPdrrljZCNcYDeL0qP2P7tqm2IwayTg== + dependencies: + debug "^4.3.4" + fast-glob "^3.2.12" + get-stdin "^8.0.0" + p-all "^3.0.0" + picocolors "^1.0.0" + signal-exit "^3.0.7" + string-to-stream "^3.0.1" + superstruct "^1.0.3" + tslib "^2.5.0" + yargs "^17.7.1" + tsconfig-paths@^3.12.0: version "3.14.1" resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" @@ -3800,6 +3898,11 @@ tslib@^2.0.3, tslib@^2.2.0: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e" integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA== +tslib@^2.5.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.0.tgz#b295854684dbda164e181d259a22cd779dcd7bc3" + integrity sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA== + tsutils@^3.21.0: version "3.21.0" resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" @@ -3916,6 +4019,11 @@ uri-js@^4.2.2: dependencies: punycode "^2.1.0" +util-deprecate@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + v8-compile-cache-lib@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.0.tgz#0582bcb1c74f3a2ee46487ceecf372e46bce53e8" @@ -4072,7 +4180,7 @@ yargs-parser@^21.0.0: resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.1.tgz#0267f286c877a4f0f728fceb6f8a3e4cb95c6e35" integrity sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg== -yargs-parser@^21.0.1: +yargs-parser@^21.0.1, yargs-parser@^21.1.1: version "21.1.1" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== @@ -4090,6 +4198,19 @@ yargs@^17.3.1: y18n "^5.0.5" yargs-parser "^21.0.0" +yargs@^17.7.1: + version "17.7.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" + integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== + dependencies: + cliui "^8.0.1" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.1.1" + yn@3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" From f35bbc599f5b44acd894353a84cca4c0a352682a Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Sat, 8 Jul 2023 11:14:58 -0700 Subject: [PATCH 018/725] v4.0.0-beta.3 --- api.md | 86 +++---- build | 9 +- ecosystem-tests/vercel-edge/package-lock.json | 14 +- ecosystem-tests/vercel-edge/package.json | 2 +- examples/azure.ts | 48 ++++ package.json | 2 +- scripts/replace-self-referencing-imports.js | 21 ++ src/core.ts | 21 +- src/index.ts | 47 +++- src/resources/chat/completions.ts | 4 +- src/resources/completions.ts | 6 +- src/resources/edits.ts | 6 +- src/resources/files.ts | 6 +- src/resources/fine-tunes.ts | 25 ++- src/resources/models.ts | 4 +- src/streaming.ts | 210 ++++++++++++------ src/uploads.ts | 7 +- src/version.ts | 2 +- tests/api-resources/chat/completions.test.ts | 2 +- tests/api-resources/completions.test.ts | 2 +- tests/index.test.ts | 61 ++++- tsconfig.build.json | 41 ++-- tsconfig.json | 7 +- 23 files changed, 449 insertions(+), 184 deletions(-) create mode 100644 examples/azure.ts create mode 100644 scripts/replace-self-referencing-imports.js diff --git a/api.md b/api.md index a5ee1a25b..b19532071 100644 --- a/api.md +++ b/api.md @@ -2,12 +2,12 @@ Types: -- Completion -- CompletionChoice +- Completion +- CompletionChoice Methods: -- client.completions.create({ ...params }) -> Completion +- client.completions.create({ ...params }) -> Completion # Chat @@ -15,61 +15,61 @@ Methods: Types: -- ChatCompletion -- ChatCompletionChunk +- ChatCompletion +- ChatCompletionChunk Methods: -- client.chat.completions.create({ ...params }) -> ChatCompletion +- client.chat.completions.create({ ...params }) -> ChatCompletion # Edits Types: -- Edit +- Edit Methods: -- client.edits.create({ ...params }) -> Edit +- client.edits.create({ ...params }) -> Edit # Embeddings Types: -- Embedding +- Embedding Methods: -- client.embeddings.create({ ...params }) -> Embedding +- client.embeddings.create({ ...params }) -> Embedding # Files Types: -- FileContent -- FileDeleted -- FileObject +- FileContent +- FileDeleted +- FileObject Methods: -- client.files.create({ ...params }) -> FileObject -- client.files.retrieve(fileId) -> FileObject -- client.files.list() -> FileObjectsPage -- client.files.del(fileId) -> FileDeleted -- client.files.retrieveFileContent(fileId) -> string +- client.files.create({ ...params }) -> FileObject +- client.files.retrieve(fileId) -> FileObject +- client.files.list() -> FileObjectsPage +- client.files.del(fileId) -> FileDeleted +- client.files.retrieveFileContent(fileId) -> string # Images Types: -- Image -- ImagesResponse +- Image +- ImagesResponse Methods: -- client.images.createVariation({ ...params }) -> ImagesResponse -- client.images.edit({ ...params }) -> ImagesResponse -- client.images.generate({ ...params }) -> ImagesResponse +- client.images.createVariation({ ...params }) -> ImagesResponse +- client.images.edit({ ...params }) -> ImagesResponse +- client.images.generate({ ...params }) -> ImagesResponse # Audio @@ -77,58 +77,58 @@ Methods: Types: -- Transcription +- Transcription Methods: -- client.audio.transcriptions.create({ ...params }) -> Transcription +- client.audio.transcriptions.create({ ...params }) -> Transcription ## Translations Types: -- Translation +- Translation Methods: -- client.audio.translations.create({ ...params }) -> Translation +- client.audio.translations.create({ ...params }) -> Translation # Moderations Types: -- Moderation -- ModerationCreateResponse +- Moderation +- ModerationCreateResponse Methods: -- client.moderations.create({ ...params }) -> ModerationCreateResponse +- client.moderations.create({ ...params }) -> ModerationCreateResponse # Models Types: -- Model -- ModelDeleted +- Model +- ModelDeleted Methods: -- client.models.retrieve(model) -> Model -- client.models.list() -> ModelsPage -- client.models.del(model) -> ModelDeleted +- client.models.retrieve(model) -> Model +- client.models.list() -> ModelsPage +- client.models.del(model) -> ModelDeleted # FineTunes Types: -- FineTune -- FineTuneEvent -- FineTuneEventsListResponse +- FineTune +- FineTuneEvent +- FineTuneEventsListResponse Methods: -- client.fineTunes.create({ ...params }) -> FineTune -- client.fineTunes.retrieve(fineTuneId) -> FineTune -- client.fineTunes.list() -> FineTunesPage -- client.fineTunes.cancel(fineTuneId) -> FineTune -- client.fineTunes.listEvents(fineTuneId, { ...params }) -> FineTuneEventsListResponse +- client.fineTunes.create({ ...params }) -> FineTune +- client.fineTunes.retrieve(fineTuneId) -> FineTune +- client.fineTunes.list() -> FineTunesPage +- client.fineTunes.cancel(fineTuneId) -> FineTune +- client.fineTunes.listEvents(fineTuneId, { ...params }) -> FineTuneEventsListResponse diff --git a/build b/build index 4370f6ba7..b205edf8d 100755 --- a/build +++ b/build @@ -3,6 +3,8 @@ set -exuo pipefail node scripts/check-version.cjs +yarn tsc + # Build into dist and will publish the package from there, # so that src/resources/foo.ts becomes /resources/foo.js # This way importing from `"openai/resources/foo"` works @@ -12,7 +14,10 @@ rm -rf dist mkdir dist # Copy src to dist/src and build from dist/src into dist, so that # the source map for index.js.map will refer to ./src/index.ts etc -cp -rp src dist +cp -rp src README.md dist +for file in LICENSE CHANGELOG.md; do + if [ -e "${file}" ]; then cp "${file}" dist; fi +done # this converts the export map paths for the dist directory # and does a few other minor things node scripts/make-dist-package-json.cjs > dist/package.json @@ -21,7 +26,7 @@ node scripts/make-dist-package-json.cjs > dist/package.json tsc-multi # copy over handwritten .js/.mjs/.d.ts files cp src/_shims/*.{d.ts,js,mjs} dist/_shims -tsc-alias -p tsconfig.json --resolve-full-paths +tsc-alias -p tsconfig.build.json # we need to add exports = module.exports = OpenAI Node to index.js; # No way to get that from index.ts because it would cause compile errors # when building .mjs diff --git a/ecosystem-tests/vercel-edge/package-lock.json b/ecosystem-tests/vercel-edge/package-lock.json index 223fbc94f..935112892 100644 --- a/ecosystem-tests/vercel-edge/package-lock.json +++ b/ecosystem-tests/vercel-edge/package-lock.json @@ -14,7 +14,7 @@ "react-dom": "18.2.0" }, "devDependencies": { - "@types/node": "20.3.1", + "@types/node": "20.3.3", "@types/react": "18.2.13", "@types/react-dom": "18.2.6", "edge-runtime": "^2.4.3", @@ -3095,9 +3095,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.3.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.1.tgz", - "integrity": "sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg==", + "version": "20.3.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.3.tgz", + "integrity": "sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==", "dev": true }, "node_modules/@types/node-fetch": { @@ -13739,9 +13739,9 @@ "dev": true }, "@types/node": { - "version": "20.3.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.1.tgz", - "integrity": "sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg==", + "version": "20.3.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.3.tgz", + "integrity": "sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==", "dev": true }, "@types/node-fetch": { diff --git a/ecosystem-tests/vercel-edge/package.json b/ecosystem-tests/vercel-edge/package.json index 14ee1da4f..b44940e0e 100644 --- a/ecosystem-tests/vercel-edge/package.json +++ b/ecosystem-tests/vercel-edge/package.json @@ -17,7 +17,7 @@ "react-dom": "18.2.0" }, "devDependencies": { - "@types/node": "20.3.1", + "@types/node": "20.3.3", "@types/react": "18.2.13", "@types/react-dom": "18.2.6", "edge-runtime": "^2.4.3", diff --git a/examples/azure.ts b/examples/azure.ts new file mode 100644 index 000000000..0076d101d --- /dev/null +++ b/examples/azure.ts @@ -0,0 +1,48 @@ +#!/usr/bin/env yarn tsn -T + +import OpenAI from 'openai'; + +// The name of your Azure OpenAI Resource. +// https://learn.microsoft.com/en-us/azure/cognitive-services/openai/how-to/create-resource?pivots=web-portal#create-a-resource +const resource = ''; + +// Corresponds to your Model deployment within your OpenAI resource, e.g. my-gpt35-16k-deployment +// Navigate to the Azure OpenAI Studio to deploy a model. +const model = ''; + +const apiKey = process.env['AZURE_OPENAI_API_KEY']; +if (!apiKey) { + throw new Error('The AZURE_OPENAI_API_KEY environment variable is missing or empty.'); +} + +// Azure OpenAI requires a custom baseURL, api-version query param, and api-key header. +const openai = new OpenAI({ + apiKey, + baseURL: `https://${resource}.openai.azure.com/openai/deployments/${model}`, + defaultQuery: { 'api-version': '2023-06-01-preview' }, + defaultHeaders: { 'api-key': apiKey }, +}); + +async function main() { + console.log('Non-streaming:'); + const result = await openai.chat.completions.create({ + model, + messages: [{ role: 'user', content: 'Say hello!' }], + }); + console.log(result.choices[0]!.message?.content); + + console.log(); + console.log('Streaming:'); + const stream = await openai.chat.completions.create({ + model, + messages: [{ role: 'user', content: 'Say hello!' }], + stream: true, + }); + + for await (const part of stream) { + process.stdout.write(part.choices[0]?.delta?.content ?? ''); + } + process.stdout.write('\n'); +} + +main().catch(console.error); diff --git a/package.json b/package.json index dc852bda0..43e32027b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.0.0-beta.2", + "version": "4.0.0-beta.3", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/replace-self-referencing-imports.js b/scripts/replace-self-referencing-imports.js new file mode 100644 index 000000000..de3246dd3 --- /dev/null +++ b/scripts/replace-self-referencing-imports.js @@ -0,0 +1,21 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); + +const path = require('path'); +const distSrcDir = path.resolve(__dirname, '..', 'dist', 'src'); + +function replaceSelfReferencingImports({ orig, file, config }) { + // replace self-referencing imports in source files to reduce errors users will + // see if they go to definition + if (!file.startsWith(distSrcDir)) return orig; + return orig.replace(/['"]([^"'\r\n]+)['"]/, (match, importPath) => { + if (!importPath.startsWith('openai/')) return match; + let relativePath = path.relative( + path.dirname(file), + path.join(distSrcDir, importPath.substring('openai/'.length)), + ); + if (!relativePath.startsWith('.')) relativePath = `./${relativePath}`; + return JSON.stringify(relativePath); + }); +} +exports.default = replaceSelfReferencingImports; diff --git a/src/core.ts b/src/core.ts index 22f436ac8..50c7734a5 100644 --- a/src/core.ts +++ b/src/core.ts @@ -73,6 +73,8 @@ export abstract class APIClient { }; } + protected abstract defaultQuery(): DefaultQuery | undefined; + /** * Override this to add your own headers validation: */ @@ -130,9 +132,17 @@ export abstract class APIClient { const contentLength = typeof body === 'string' ? body.length.toString() : null; const url = this.buildURL(path!, query); - const httpAgent = options.httpAgent ?? this.httpAgent ?? getDefaultAgent(url); + if ('timeout' in options) validatePositiveInteger('timeout', options.timeout); const timeout = options.timeout ?? this.timeout; - validatePositiveInteger('timeout', timeout); + const httpAgent = options.httpAgent ?? this.httpAgent ?? getDefaultAgent(url); + const minAgentTimeout = timeout + 1000; + if ((httpAgent as any)?.options && minAgentTimeout > ((httpAgent as any).options.timeout ?? 0)) { + // Allow any given request to bump our agent active socket timeout. + // This may seem strange, but leaking active sockets should be rare and not particularly problematic, + // and without mutating agent we would need to create more of them. + // This tradeoff optimizes for performance. + (httpAgent as any).options.timeout = minAgentTimeout; + } if (this.idempotencyHeader && method !== 'get') { if (!options.idempotencyKey) options.idempotencyKey = this.defaultIdempotencyKey(); @@ -260,6 +270,11 @@ export abstract class APIClient { new URL(path) : new URL(this.baseURL + (this.baseURL.endsWith('/') && path.startsWith('/') ? path.slice(1) : path)); + const defaultQuery = this.defaultQuery(); + if (!isEmptyObj(defaultQuery)) { + query = { ...defaultQuery, ...query } as Req; + } + if (query) { url.search = qs.stringify(query, this.qsOptions()); } @@ -516,6 +531,7 @@ type HTTPMethod = 'get' | 'post' | 'put' | 'patch' | 'delete'; export type RequestClient = { fetch: Fetch }; export type Headers = Record; +export type DefaultQuery = Record; export type KeysEnum = { [P in keyof Required]: true }; export type RequestOptions | Readable> = { @@ -564,6 +580,7 @@ export type FinalRequestOptions | Reada }; export type APIResponse = T & { + /** @deprecated - we plan to add a different way to access raw response information shortly. */ responseHeaders: Headers; }; diff --git a/src/index.ts b/src/index.ts index f960020dd..87063761e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -13,11 +13,52 @@ type Config = { * Defaults to process.env["OPENAI_API_KEY"]. */ apiKey?: string; + + /** + * Override the default base URL for the API, e.g., "https://api.example.com/v2/" + */ baseURL?: string; + + /** + * The maximum amount of time (in milliseconds) that the client should wait for a response + * from the server before timing out a single request. + * + * Note that request timeouts are retried by default, so in a worst-case scenario you may wait + * much longer than this timeout before the promise succeeds or fails. + */ timeout?: number; + + /** + * An HTTP agent used to manage HTTP(S) connections. + * + * If not provided, an agent will be constructed by default in the Node.js environment, + * otherwise no agent is used. + */ httpAgent?: Agent; + + /** + * The maximum number of times that the client will retry a request in case of a + * temporary failure, like a network error or a 5XX error from the server. + * + * @default 2 + */ maxRetries?: number; + + /** + * Default headers to include with every request to the API. + * + * These can be removed in individual requests by explicitly setting the + * header to `undefined` or `null` in request options. + */ defaultHeaders?: Core.Headers; + + /** + * Default query parameters to include with every request to the API. + * + * These can be removed in individual requests by explicitly setting the + * param to `undefined` in request options. + */ + defaultQuery?: Core.DefaultQuery; }; /** Instantiate the API Client. */ @@ -41,7 +82,7 @@ export class OpenAI extends Core.APIClient { super({ baseURL: options.baseURL!, - timeout: options.timeout, + timeout: options.timeout ?? 600000, httpAgent: options.httpAgent, maxRetries: options.maxRetries, }); @@ -60,6 +101,10 @@ export class OpenAI extends Core.APIClient { models: API.Models = new API.Models(this); fineTunes: API.FineTunes = new API.FineTunes(this); + protected override defaultQuery(): Core.DefaultQuery | undefined { + return this._options.defaultQuery; + } + protected override defaultHeaders(): Core.Headers { return { ...super.defaultHeaders(), diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 1e78dd230..ffc94228b 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -229,7 +229,7 @@ export namespace CompletionCreateParams { * increase likelihood of selection; values like -100 or 100 should result in a ban * or exclusive selection of the relevant token. */ - logit_bias?: unknown | null; + logit_bias?: Record | null; /** * The maximum number of [tokens](/tokenizer) to generate in the chat completion. @@ -451,7 +451,7 @@ export namespace CompletionCreateParams { * increase likelihood of selection; values like -100 or 100 should result in a ban * or exclusive selection of the relevant token. */ - logit_bias?: unknown | null; + logit_bias?: Record | null; /** * The maximum number of [tokens](/tokenizer) to generate in the chat completion. diff --git a/src/resources/completions.ts b/src/resources/completions.ts index 7f93a423f..f123db24d 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -67,7 +67,7 @@ export namespace CompletionChoice { tokens?: Array; - top_logprobs?: Array; + top_logprobs?: Array>; } } @@ -145,7 +145,7 @@ export namespace CompletionCreateParams { * As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> token * from being generated. */ - logit_bias?: unknown | null; + logit_bias?: Record | null; /** * Include the log probabilities on the `logprobs` most likely tokens, as well the @@ -310,7 +310,7 @@ export namespace CompletionCreateParams { * As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> token * from being generated. */ - logit_bias?: unknown | null; + logit_bias?: Record | null; /** * Include the log probabilities on the `logprobs` most likely tokens, as well the diff --git a/src/resources/edits.ts b/src/resources/edits.ts index 66ca51347..5e9e44510 100644 --- a/src/resources/edits.ts +++ b/src/resources/edits.ts @@ -7,6 +7,10 @@ import * as API from './'; export class Edits extends APIResource { /** * Creates a new edit for the provided input, instruction, and parameters. + * + * @deprecated The Edits API is deprecated; please use Chat Completions instead. + * + * https://openai.com/blog/gpt-4-api-general-availability#deprecation-of-the-edits-api */ create(body: EditCreateParams, options?: Core.RequestOptions): Promise> { return this.post('/edits', { body, ...options }); @@ -42,7 +46,7 @@ export namespace Edit { tokens?: Array; - top_logprobs?: Array; + top_logprobs?: Array>; } } diff --git a/src/resources/files.ts b/src/resources/files.ts index 53e01ca6c..03fe57de1 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -53,6 +53,8 @@ export class Files extends APIResource { * Note: no pagination actually occurs yet, this is for forwards-compatibility. */ export class FileObjectsPage extends Page {} +// alias so we can export it in the namespace +type _FileObjectsPage = FileObjectsPage; export type FileContent = string; @@ -79,7 +81,7 @@ export interface FileObject { status?: string; - status_details?: unknown | null; + status_details?: string | null; } export interface FileCreateParams { @@ -106,6 +108,6 @@ export namespace Files { export import FileContent = API.FileContent; export import FileDeleted = API.FileDeleted; export import FileObject = API.FileObject; - export import FileObjectsPage = API.FileObjectsPage; + export type FileObjectsPage = _FileObjectsPage; export import FileCreateParams = API.FileCreateParams; } diff --git a/src/resources/fine-tunes.ts b/src/resources/fine-tunes.ts index 551674016..44e71888b 100644 --- a/src/resources/fine-tunes.ts +++ b/src/resources/fine-tunes.ts @@ -63,6 +63,7 @@ export class FineTunes extends APIResource { ): Promise>> { return this.get(`/fine-tunes/${fineTuneId}/events`, { query, + timeout: 86400000, ...options, stream: query?.stream ?? false, }); @@ -73,6 +74,8 @@ export class FineTunes extends APIResource { * Note: no pagination actually occurs yet, this is for forwards-compatibility. */ export class FineTunesPage extends Page {} +// alias so we can export it in the namespace +type _FineTunesPage = FineTunesPage; export interface FineTune { id: string; @@ -81,7 +84,7 @@ export interface FineTune { fine_tuned_model: string | null; - hyperparams: unknown; + hyperparams: FineTune.Hyperparams; model: string; @@ -102,6 +105,24 @@ export interface FineTune { events?: Array; } +export namespace FineTune { + export interface Hyperparams { + batch_size: number; + + learning_rate_multiplier: number; + + n_epochs: number; + + prompt_loss_weight: number; + + classification_n_classes?: number; + + classification_positive_class?: string; + + compute_classification_metrics?: boolean; + } +} + export interface FineTuneEvent { created_at: number; @@ -281,7 +302,7 @@ export namespace FineTunes { export import FineTune = API.FineTune; export import FineTuneEvent = API.FineTuneEvent; export import FineTuneEventsListResponse = API.FineTuneEventsListResponse; - export import FineTunesPage = API.FineTunesPage; + export type FineTunesPage = _FineTunesPage; export import FineTuneCreateParams = API.FineTuneCreateParams; export import FineTuneListEventsParams = API.FineTuneListEventsParams; } diff --git a/src/resources/models.ts b/src/resources/models.ts index 08a25ad9d..2b6ef9ad9 100644 --- a/src/resources/models.ts +++ b/src/resources/models.ts @@ -34,6 +34,8 @@ export class Models extends APIResource { * Note: no pagination actually occurs yet, this is for forwards-compatibility. */ export class ModelsPage extends Page {} +// alias so we can export it in the namespace +type _ModelsPage = ModelsPage; export interface Model { id: string; @@ -56,5 +58,5 @@ export interface ModelDeleted { export namespace Models { export import Model = API.Model; export import ModelDeleted = API.ModelDeleted; - export import ModelsPage = API.ModelsPage; + export type ModelsPage = _ModelsPage; } diff --git a/src/streaming.ts b/src/streaming.ts index 3de8e2ba2..46e93bc3c 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -1,69 +1,19 @@ import type { Response } from 'openai/_shims/fetch'; + import { APIResponse, Headers, createResponseHeaders } from './core'; +type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined; + type ServerSentEvent = { event: string | null; data: string; raw: string[]; }; -class SSEDecoder { - private data: string[]; - private event: string | null; - private chunks: string[]; - - constructor() { - this.event = null; - this.data = []; - this.chunks = []; - } - - decode(line: string) { - if (line.endsWith('\r')) { - line = line.substring(0, line.length - 1); - } - - if (!line) { - // empty line and we didn't previously encounter any messages - if (!this.event && !this.data.length) return null; - - const sse: ServerSentEvent = { - event: this.event, - data: this.data.join('\n'), - raw: this.chunks, - }; - - this.event = null; - this.data = []; - this.chunks = []; - - return sse; - } - - this.chunks.push(line); - - if (line.startsWith(':')) { - return null; - } - - let [fieldname, _, value] = partition(line, ':'); - - if (value.startsWith(' ')) { - value = value.substring(1); - } - - if (fieldname === 'event') { - this.event = value; - } else if (fieldname === 'data') { - this.data.push(value); - } - - return null; - } -} - export class Stream implements AsyncIterable, APIResponse> { + /** @deprecated - please use the async iterator instead. We plan to add additional helper methods shortly. */ response: Response; + /** @deprecated - we plan to add a different way to access raw response information shortly. */ responseHeaders: Headers; controller: AbortController; @@ -81,21 +31,11 @@ export class Stream implements AsyncIterable, APIResponse(this.response.body); + for await (const chunk of iter) { + for (const line of lineDecoder.decode(chunk)) { const sse = this.decoder.decode(line); if (sse) yield sse; } @@ -135,7 +75,60 @@ export class Stream implements AsyncIterable, APIResponse(stream: any): AsyncIterableIterator { + if (stream[Symbol.asyncIterator]) return stream[Symbol.asyncIterator]; + + const reader = stream.getReader(); + return { + next() { + return reader.read(); + }, + async return() { + reader.cancel(); + reader.releaseLock(); + return { done: true, value: undefined }; + }, + [Symbol.asyncIterator]() { + return this; + }, + }; +} diff --git a/src/uploads.ts b/src/uploads.ts index 26cbcbab7..2b19b31da 100644 --- a/src/uploads.ts +++ b/src/uploads.ts @@ -96,7 +96,7 @@ export type ToFileInput = Uploadable | Exclude | AsyncIterable * @returns a {@link File} with the given properties */ export async function toFile( - value: ToFileInput, + value: ToFileInput | PromiseLike, name?: string | null | undefined, options: FilePropertyBag | undefined = {}, ): Promise { @@ -121,8 +121,9 @@ export async function toFile( return new File(bits, name, options); } -async function getBytes(value: ToFileInput): Promise> { - if (value instanceof Promise) return getBytes(await (value as any)); +async function getBytes(value: ToFileInput | PromiseLike): Promise> { + // resolve input promise or promiselike object + value = await value; let parts: Array = []; if ( diff --git a/src/version.ts b/src/version.ts index 4e42addf0..6c18f5dc0 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.0.0-beta.2'; +export const VERSION = '4.0.0-beta.3'; diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 96076cf1a..bdf82568e 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -26,7 +26,7 @@ describe('resource completions', () => { frequency_penalty: -2, function_call: 'none', functions: [{ name: 'string', description: 'string', parameters: { foo: 'bar' } }], - logit_bias: {}, + logit_bias: { foo: 0 }, max_tokens: 0, n: 1, presence_penalty: -2, diff --git a/tests/api-resources/completions.test.ts b/tests/api-resources/completions.test.ts index 6d6ac8347..0067223fb 100644 --- a/tests/api-resources/completions.test.ts +++ b/tests/api-resources/completions.test.ts @@ -16,7 +16,7 @@ describe('resource completions', () => { best_of: 0, echo: true, frequency_penalty: -2, - logit_bias: {}, + logit_bias: { foo: 0 }, logprobs: 0, max_tokens: 16, n: 1, diff --git a/tests/index.test.ts b/tests/index.test.ts index cf112ea61..30b0f80b3 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -17,11 +17,64 @@ describe('instantiate client', () => { process.env = env; }); - test('defaultHeaders are passed through', () => { - const client = new OpenAI({ defaultHeaders: { 'X-My-Default-Header': '2' }, apiKey: 'my api key' }); + describe('defaultHeaders', () => { + const client = new OpenAI({ + baseURL: 'http://localhost:5000/', + defaultHeaders: { 'X-My-Default-Header': '2' }, + apiKey: 'my api key', + }); + + test('they are used in the request', () => { + const { req } = client.buildRequest({ path: '/foo', method: 'post' }); + expect((req.headers as Headers)['X-My-Default-Header']).toEqual('2'); + }); - const { req } = client.buildRequest({ path: '/foo', method: 'post' }); - expect((req.headers as Headers)['X-My-Default-Header']).toEqual('2'); + test('can be overriden with `undefined`', () => { + const { req } = client.buildRequest({ + path: '/foo', + method: 'post', + headers: { 'X-My-Default-Header': undefined }, + }); + expect((req.headers as Headers)['X-My-Default-Header']).toBeUndefined(); + }); + + test('can be overriden with `null`', () => { + const { req } = client.buildRequest({ + path: '/foo', + method: 'post', + headers: { 'X-My-Default-Header': null }, + }); + expect((req.headers as Headers)['X-My-Default-Header']).toBeUndefined(); + }); + }); + + describe('defaultQuery', () => { + test('with null query params given', () => { + const client = new OpenAI({ + baseURL: 'http://localhost:5000/', + defaultQuery: { apiVersion: 'foo' }, + apiKey: 'my api key', + }); + expect(client.buildURL('/foo', null)).toEqual('http://localhost:5000/foo?apiVersion=foo'); + }); + + test('multiple default query params', () => { + const client = new OpenAI({ + baseURL: 'http://localhost:5000/', + defaultQuery: { apiVersion: 'foo', hello: 'world' }, + apiKey: 'my api key', + }); + expect(client.buildURL('/foo', null)).toEqual('http://localhost:5000/foo?apiVersion=foo&hello=world'); + }); + + test('overriding with `undefined`', () => { + const client = new OpenAI({ + baseURL: 'http://localhost:5000/', + defaultQuery: { hello: 'world' }, + apiKey: 'my api key', + }); + expect(client.buildURL('/foo', { hello: undefined })).toEqual('http://localhost:5000/foo'); + }); }); describe('baseUrl', () => { diff --git a/tsconfig.build.json b/tsconfig.build.json index ca9e53425..c3660e68f 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -1,43 +1,32 @@ { + "extends": "./tsconfig.json", "include": ["dist/src"], "exclude": [], "compilerOptions": { - "target": "es2019", - "lib": ["es2020"], - "module": "commonjs", - "moduleResolution": "node", - "esModuleInterop": true, "rootDir": "./dist/src", - "baseUrl": "./", "paths": { "openai/_shims/*": ["dist/src/_shims/*.node"], "openai": ["dist/src/index.ts"], "openai/*": ["dist/src/*"], "digest-fetch": ["./typings/digest-fetch"] }, - + "noEmit": false, "declaration": true, "declarationMap": true, "outDir": "dist", "pretty": true, - "sourceMap": true, - "resolveJsonModule": true, - - "forceConsistentCasingInFileNames": true, - - "strict": true, - "noImplicitAny": true, - "strictNullChecks": true, - "strictFunctionTypes": true, - "strictBindCallApply": true, - "strictPropertyInitialization": true, - "noImplicitThis": true, - "alwaysStrict": true, - "exactOptionalPropertyTypes": true, - "noUncheckedIndexedAccess": true, - "noImplicitOverride": true, - "noPropertyAccessFromIndexSignature": true, - - "skipLibCheck": true + "sourceMap": true + }, + "tsc-alias": { + "resolveFullPaths": true, + "fileExtensions": { + "inputGlob": "{mjs,cjs,js,jsx,mts,cts,ts,tsx}" + }, + "replacers": { + "replace-absolute-imports": { + "enabled": true, + "file": "./scripts/replace-self-referencing-imports.js" + } + } } } diff --git a/tsconfig.json b/tsconfig.json index c663d7307..82ea3f3e3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,6 @@ "module": "commonjs", "moduleResolution": "node", "esModuleInterop": true, - "rootDir": "./src", "baseUrl": "./", "paths": { "openai/_shims/*": ["src/_shims/*.node"], @@ -14,12 +13,8 @@ "openai/*": ["src/*"], "digest-fetch": ["./typings/digest-fetch"] }, + "noEmit": true, - "declaration": true, - "declarationMap": true, - "outDir": "dist", - "pretty": true, - "sourceMap": true, "resolveJsonModule": true, "forceConsistentCasingInFileNames": true, From be1e275cab731baf7c63cd7356e3563fde2aaaf8 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Sun, 9 Jul 2023 10:56:22 -0700 Subject: [PATCH 019/725] v4.0.0-beta.4 --- package.json | 2 +- src/streaming.ts | 2 +- src/version.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 43e32027b..aaae304ca 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.0.0-beta.3", + "version": "4.0.0-beta.4", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/streaming.ts b/src/streaming.ts index 46e93bc3c..38a09a0aa 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -251,7 +251,7 @@ function partition(str: string, delimiter: string): [string, string, string] { * This polyfill was pulled from https://github.com/MattiasBuelens/web-streams-polyfill/pull/122#issuecomment-1624185965 */ function readableStreamAsyncIterable(stream: any): AsyncIterableIterator { - if (stream[Symbol.asyncIterator]) return stream[Symbol.asyncIterator]; + if (stream[Symbol.asyncIterator]) return stream; const reader = stream.getReader(); return { diff --git a/src/version.ts b/src/version.ts index 6c18f5dc0..f1398ce3c 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.0.0-beta.3'; +export const VERSION = '4.0.0-beta.4'; From 07b3504e1c40fd929f4aae1651b83afc19e3baf8 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Mon, 17 Jul 2023 10:25:48 -0700 Subject: [PATCH 020/725] v4.0.0-beta.5 --- .gitignore | 1 + README.md | 55 +- ecosystem-tests/cli.ts | 2 +- .../cloudflare-worker/package-lock.json | 10 + .../cloudflare-worker/package.json | 1 + .../src/uploadWebApiTestCases.ts | 9 +- .../cloudflare-worker/src/worker.ts | 19 + ecosystem-tests/cloudflare-worker/yarn.lock | 3377 --------- ecosystem-tests/deno/main_test.ts | 23 +- .../node-ts-cjs-dom/package-lock.json | 10 + ecosystem-tests/node-ts-cjs-dom/package.json | 1 + ecosystem-tests/node-ts-cjs-dom/tests/test.ts | 39 +- ecosystem-tests/node-ts-cjs/main.ts | 37 - ecosystem-tests/node-ts-cjs/package-lock.json | 32 +- ecosystem-tests/node-ts-cjs/package.json | 6 +- ecosystem-tests/node-ts-cjs/tests/test.ts | 41 +- ecosystem-tests/node-ts-cjs/yarn.lock | 421 -- .../node-ts-esm-dom/package-lock.json | 10 + ecosystem-tests/node-ts-esm-dom/package.json | 1 + ecosystem-tests/node-ts-esm-dom/tests/test.ts | 41 +- ecosystem-tests/node-ts-esm/main.ts | 36 - ecosystem-tests/node-ts-esm/package-lock.json | 10 + ecosystem-tests/node-ts-esm/package.json | 1 + ecosystem-tests/node-ts-esm/tests/test.ts | 41 +- ecosystem-tests/node-ts-esm/yarn.lock | 156 - ecosystem-tests/ts-browser-webpack/yarn.lock | 3503 --------- ecosystem-tests/vercel-edge/yarn.lock | 6359 ----------------- examples/azure.ts | 5 +- examples/demo.ts | 20 +- examples/errors.ts | 3 +- examples/fine-tunes.ts | 5 +- package.json | 4 +- src/_shims/formdata.node.d.ts | 1 + src/core.ts | 58 +- src/error.ts | 8 + src/index.ts | 13 + src/resources/audio/transcriptions.ts | 2 +- src/resources/chat/completions.ts | 12 +- src/resources/edits.ts | 20 +- src/streaming.ts | 25 +- src/uploads.ts | 10 +- src/version.ts | 2 +- .../audio/transcriptions.test.ts | 2 +- tests/index.test.ts | 63 +- 44 files changed, 492 insertions(+), 14003 deletions(-) delete mode 100644 ecosystem-tests/cloudflare-worker/yarn.lock delete mode 100644 ecosystem-tests/node-ts-cjs/main.ts delete mode 100644 ecosystem-tests/node-ts-cjs/yarn.lock delete mode 100644 ecosystem-tests/node-ts-esm/main.ts delete mode 100644 ecosystem-tests/node-ts-esm/yarn.lock delete mode 100644 ecosystem-tests/ts-browser-webpack/yarn.lock delete mode 100644 ecosystem-tests/vercel-edge/yarn.lock diff --git a/.gitignore b/.gitignore index a2d5c1f3f..def8d373e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ node_modules yarn-error.log +codegen.log dist /*.tgz diff --git a/README.md b/README.md index 7d3b432e9..21442fd66 100644 --- a/README.md +++ b/README.md @@ -29,16 +29,15 @@ const openai = new OpenAI({ }); async function main() { - const completion = await openai.completions.create({ - model: 'text-davinci-002', - prompt: 'Say this is a test', - max_tokens: 6, - temperature: 0, + const completion = await openai.chat.completions.create({ + messages: [{ role: 'user', content: 'Say this is a test' }], + model: 'gpt-3.5-turbo', }); console.log(completion.choices); } -main().catch(console.error); + +main(); ``` ## Streaming Responses @@ -48,16 +47,20 @@ We provide support for streaming responses using Server Side Events (SSE). ```ts import OpenAI from 'openai'; -const client = new OpenAI(); +const openai = new OpenAI(); -const stream = await client.completions.create({ - prompt: 'Say this is a test', - model: 'text-davinci-003', - stream: true, -}); -for await (const part of stream) { - process.stdout.write(part.choices[0]?.text || ''); +async function main() { + const completion = await openai.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + stream: true, + }); + for await (const part of stream) { + process.stdout.write(part.choices[0]?.text || ''); + } } + +main(); ``` If you need to cancel a stream, you can `break` from the loop @@ -76,15 +79,14 @@ const openai = new OpenAI({ }); async function main() { - const params: OpenAI.CompletionCreateParams = { - model: 'text-davinci-002', - prompt: 'Say this is a test', - max_tokens: 6, - temperature: 0, + const params: OpenAI.Chat.CompletionCreateParams = { + messages: [{ role: 'user', content: 'Say this is a test' }], + model: 'gpt-3.5-turbo', }; - const completion: OpenAI.Completion = await openai.completions.create(params); + const completion: OpenAI.Chat.ChatCompletion = await openai.chat.completions.create(params); } -main().catch(console.error); + +main(); ``` Documentation for each method, request param, and response field are available in docstrings and will appear on hover in most modern editors. @@ -141,10 +143,13 @@ async function main() { console.log(err.name); // BadRequestError console.log(err.headers); // {server: 'nginx', ...} + } else { + throw err; } }); } -main().catch(console.error); + +main(); ``` Error codes are as followed: @@ -176,7 +181,7 @@ const openai = new OpenAI({ }); // Or, configure per-request: -openai.embeddings.create({ model: 'text-similarity-babbage-001',input: 'The food was delicious and the waiter...' }, { +await openai.chat.completions.create({ messages: [{ role: 'user', content: 'How can I get the name of the current day in Node.js?' }], model: 'gpt-3.5-turbo' }, { maxRetries: 5, }); ``` @@ -193,7 +198,7 @@ const openai = new OpenAI({ }); // Override per-request: -openai.edits.create({ model: 'text-davinci-edit-001',input: 'What day of the wek is it?',instruction: 'Fix the spelling mistakes' }, { +await openai.chat.completions.create({ messages: [{ role: 'user', content: 'How can I list all files in a directory using Python?' }], model: 'gpt-3.5-turbo' }, { timeout: 5 * 1000, }); ``` @@ -219,7 +224,7 @@ const openai = new OpenAI({ }); // Override per-request: -openai.models.list({ +await openai.models.list({ baseURL: 'http://localhost:8080/test-api', httpAgent: new http.Agent({ keepAlive: false }), }) diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index 329f66a67..3b4e64ab7 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -54,7 +54,7 @@ const projects = { await run('npm', ['run', 'tsc']); if (state.live) { - await run('pnpm', ['test']); + await run('npm', ['run', 'test']); } }, 'node-ts-esm-dom': async () => { diff --git a/ecosystem-tests/cloudflare-worker/package-lock.json b/ecosystem-tests/cloudflare-worker/package-lock.json index 28b18b11d..369ba2c08 100644 --- a/ecosystem-tests/cloudflare-worker/package-lock.json +++ b/ecosystem-tests/cloudflare-worker/package-lock.json @@ -12,6 +12,7 @@ }, "devDependencies": { "@cloudflare/workers-types": "^4.20230419.0", + "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", "start-server-and-test": "^2.0.0", "ts-jest": "^29.1.0", @@ -2538,6 +2539,15 @@ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true, + "engines": { + "node": ">= 4.9.1" + } + }, "node_modules/fb-watchman": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", diff --git a/ecosystem-tests/cloudflare-worker/package.json b/ecosystem-tests/cloudflare-worker/package.json index b7af88375..02286c4a2 100644 --- a/ecosystem-tests/cloudflare-worker/package.json +++ b/ecosystem-tests/cloudflare-worker/package.json @@ -12,6 +12,7 @@ }, "devDependencies": { "@cloudflare/workers-types": "^4.20230419.0", + "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", "start-server-and-test": "^2.0.0", "ts-jest": "^29.1.0", diff --git a/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts b/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts index 13d5bd382..236a343c0 100644 --- a/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts +++ b/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts @@ -10,6 +10,7 @@ export function uploadWebApiTestCases({ client, it, expectEqual, + expectSimilar, }: { /** * OpenAI client instance @@ -23,6 +24,10 @@ export function uploadWebApiTestCases({ * Jest expect(a).toEqual(b) function, or an imitation in envs like Cloudflare workers */ expectEqual(a: unknown, b: unknown): void; + /** + * Assert that the levenshtein distance between the two given strings is less than the given max distance. + */ + expectSimilar(received: string, expected: string, maxDistance: number): void; }) { const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; const filename = 'sample-1.mp3'; @@ -48,14 +53,14 @@ export function uploadWebApiTestCases({ const params: TranscriptionCreateParams = { file, model }; const result = await client.audio.transcriptions.create(params); - expectEqual(result.text, correctAnswer); + expectSimilar(result.text, correctAnswer, 12); }); it('handles Response', async () => { const file = await fetch(url); const result = await client.audio.transcriptions.create({ file, model }); - expectEqual(result.text, correctAnswer); + expectSimilar(result.text, correctAnswer, 12); }); const fineTune = `{"prompt": "", "completion": ""}`; diff --git a/ecosystem-tests/cloudflare-worker/src/worker.ts b/ecosystem-tests/cloudflare-worker/src/worker.ts index 05424de33..8130af202 100644 --- a/ecosystem-tests/cloudflare-worker/src/worker.ts +++ b/ecosystem-tests/cloudflare-worker/src/worker.ts @@ -1,5 +1,7 @@ import OpenAI from 'openai'; import { uploadWebApiTestCases } from './uploadWebApiTestCases.js'; +import { distance } from 'fastest-levenshtein' + /** * Welcome to Cloudflare Workers! This is your first worker. * @@ -44,10 +46,27 @@ export default { throw new Error(`expected values to be equal: ${JSON.stringify({ a, b })}`); } } + function expectSimilar(received: string, expected: string, maxDistance: number) { + const receivedDistance = distance(received, expected); + if (receivedDistance < maxDistance) { + return; + } + + const message = [ + `Received: ${JSON.stringify(received)}`, + `Expected: ${JSON.stringify(expected)}`, + `Max distance: ${maxDistance}`, + `Received distance: ${receivedDistance}`, + ].join('\n'); + + throw new Error(message); + } + uploadWebApiTestCases({ client: client as any, it, expectEqual, + expectSimilar, }); let allPassed = true; diff --git a/ecosystem-tests/cloudflare-worker/yarn.lock b/ecosystem-tests/cloudflare-worker/yarn.lock deleted file mode 100644 index aad239ceb..000000000 --- a/ecosystem-tests/cloudflare-worker/yarn.lock +++ /dev/null @@ -1,3377 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@ampproject/remapping@^2.2.0": - version "2.2.1" - resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" - integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== - dependencies: - "@jridgewell/gen-mapping" "^0.3.0" - "@jridgewell/trace-mapping" "^0.3.9" - -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658" - integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ== - dependencies: - "@babel/highlight" "^7.22.5" - -"@babel/compat-data@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.5.tgz#b1f6c86a02d85d2dd3368a2b67c09add8cd0c255" - integrity sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA== - -"@babel/core@^7.11.6", "@babel/core@^7.12.3": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.5.tgz#d67d9747ecf26ee7ecd3ebae1ee22225fe902a89" - integrity sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg== - dependencies: - "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.22.5" - "@babel/generator" "^7.22.5" - "@babel/helper-compilation-targets" "^7.22.5" - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helpers" "^7.22.5" - "@babel/parser" "^7.22.5" - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" - "@babel/types" "^7.22.5" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.2.2" - semver "^6.3.0" - -"@babel/generator@^7.22.5", "@babel/generator@^7.7.2": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.5.tgz#1e7bf768688acfb05cf30b2369ef855e82d984f7" - integrity sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA== - dependencies: - "@babel/types" "^7.22.5" - "@jridgewell/gen-mapping" "^0.3.2" - "@jridgewell/trace-mapping" "^0.3.17" - jsesc "^2.5.1" - -"@babel/helper-compilation-targets@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz#fc7319fc54c5e2fa14b2909cf3c5fd3046813e02" - integrity sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw== - dependencies: - "@babel/compat-data" "^7.22.5" - "@babel/helper-validator-option" "^7.22.5" - browserslist "^4.21.3" - lru-cache "^5.1.1" - semver "^6.3.0" - -"@babel/helper-environment-visitor@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98" - integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q== - -"@babel/helper-function-name@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be" - integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ== - dependencies: - "@babel/template" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/helper-hoist-variables@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" - integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-module-imports@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c" - integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-module-transforms@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz#0f65daa0716961b6e96b164034e737f60a80d2ef" - integrity sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw== - dependencies: - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-module-imports" "^7.22.5" - "@babel/helper-simple-access" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.5" - "@babel/helper-validator-identifier" "^7.22.5" - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" - integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== - -"@babel/helper-simple-access@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" - integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-split-export-declaration@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz#88cf11050edb95ed08d596f7a044462189127a08" - integrity sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-string-parser@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" - integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== - -"@babel/helper-validator-identifier@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193" - integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== - -"@babel/helper-validator-option@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac" - integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw== - -"@babel/helpers@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.5.tgz#74bb4373eb390d1ceed74a15ef97767e63120820" - integrity sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q== - dependencies: - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/highlight@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.5.tgz#aa6c05c5407a67ebce408162b7ede789b4d22031" - integrity sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw== - dependencies: - "@babel/helper-validator-identifier" "^7.22.5" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.5.tgz#721fd042f3ce1896238cf1b341c77eb7dee7dbea" - integrity sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q== - -"@babel/plugin-syntax-async-generators@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" - integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-bigint@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" - integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-class-properties@^7.8.3": - version "7.12.13" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" - integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== - dependencies: - "@babel/helper-plugin-utils" "^7.12.13" - -"@babel/plugin-syntax-import-meta@^7.8.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" - integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-json-strings@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" - integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-jsx@^7.7.2": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918" - integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-syntax-logical-assignment-operators@^7.8.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" - integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" - integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-numeric-separator@^7.8.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" - integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-object-rest-spread@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" - integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-catch-binding@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" - integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-chaining@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" - integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-top-level-await@^7.8.3": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" - integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-typescript@^7.7.2": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz#aac8d383b062c5072c647a31ef990c1d0af90272" - integrity sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/template@^7.22.5", "@babel/template@^7.3.3": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.5.tgz#0c8c4d944509875849bd0344ff0050756eefc6ec" - integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw== - dependencies: - "@babel/code-frame" "^7.22.5" - "@babel/parser" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/traverse@^7.22.5", "@babel/traverse@^7.7.2": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.5.tgz#44bd276690db6f4940fdb84e1cb4abd2f729ccd1" - integrity sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ== - dependencies: - "@babel/code-frame" "^7.22.5" - "@babel/generator" "^7.22.5" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-hoist-variables" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.5" - "@babel/parser" "^7.22.5" - "@babel/types" "^7.22.5" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.22.5", "@babel/types@^7.3.3": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.5.tgz#cd93eeaab025880a3a47ec881f4b096a5b786fbe" - integrity sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA== - dependencies: - "@babel/helper-string-parser" "^7.22.5" - "@babel/helper-validator-identifier" "^7.22.5" - to-fast-properties "^2.0.0" - -"@bcoe/v8-coverage@^0.2.3": - version "0.2.3" - resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" - integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== - -"@cloudflare/kv-asset-handler@^0.2.0": - version "0.2.0" - resolved "https://registry.yarnpkg.com/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.2.0.tgz#c9959bbd7a1c40bd7c674adae98aa8c8d0e5ca68" - integrity sha512-MVbXLbTcAotOPUj0pAMhVtJ+3/kFkwJqc5qNOleOZTv6QkZZABDMS21dSrSlVswEHwrpWC03e4fWytjqKvuE2A== - dependencies: - mime "^3.0.0" - -"@cloudflare/workerd-darwin-64@1.20230518.0": - version "1.20230518.0" - resolved "https://registry.yarnpkg.com/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20230518.0.tgz#d2c951670e11fa9263311dbb64d87c859cb88264" - integrity sha512-reApIf2/do6GjLlajU6LbRYh8gm/XcaRtzGbF8jo5IzyDSsdStmfNuvq7qssZXG92219Yp1kuTgR9+D1GGZGbg== - -"@cloudflare/workerd-darwin-arm64@1.20230518.0": - version "1.20230518.0" - resolved "https://registry.yarnpkg.com/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20230518.0.tgz#ca8422ada85583426fef2bd882da188e23d1ca3b" - integrity sha512-1l+xdbmPddqb2YIHd1YJ3YG/Fl1nhayzcxfL30xfNS89zJn9Xn3JomM0XMD4mk0d5GruBP3q8BQZ1Uo4rRLF3A== - -"@cloudflare/workerd-linux-64@1.20230518.0": - version "1.20230518.0" - resolved "https://registry.yarnpkg.com/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20230518.0.tgz#cc4039db047683866f5cd70b2d24d62548f36b31" - integrity sha512-/pfR+YBpMOPr2cAlwjtInil0hRZjD8KX9LqK9JkfkEiaBH8CYhnJQcOdNHZI+3OjcY09JnQtEVC5xC4nbW7Bvw== - -"@cloudflare/workerd-linux-arm64@1.20230518.0": - version "1.20230518.0" - resolved "https://registry.yarnpkg.com/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20230518.0.tgz#c0e5983492390c719ce6fbbb0241de8fa4a43d8c" - integrity sha512-q3HQvn3J4uEkE0cfDAGG8zqzSZrD47cavB/Tzv4mNutqwg6B4wL3ifjtGeB55tnP2K2KL0GVmX4tObcvpUF4BA== - -"@cloudflare/workerd-windows-64@1.20230518.0": - version "1.20230518.0" - resolved "https://registry.yarnpkg.com/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20230518.0.tgz#d0dcf6b51a1b6593e1c70b04e001bebcf2b703c1" - integrity sha512-vNEHKS5gKKduNOBYtQjcBopAmFT1iScuPWMZa2nJboSjOB9I/5oiVsUpSyk5Y2ARyrohXNz0y8D7p87YzTASWw== - -"@cloudflare/workers-types@^4.20230419.0": - version "4.20230518.0" - resolved "https://registry.yarnpkg.com/@cloudflare/workers-types/-/workers-types-4.20230518.0.tgz#de1b0f71d68e2eac1b546542968ea2b837cb967e" - integrity sha512-A0w1V+5SUawGaaPRlhFhSC/SCDT9oQG8TMoWOKFLA4qbqagELqEAFD4KySBIkeVOvCBLT1DZSYBMCxbXddl0kw== - -"@esbuild-plugins/node-globals-polyfill@^0.1.1": - version "0.1.1" - resolved "https://registry.yarnpkg.com/@esbuild-plugins/node-globals-polyfill/-/node-globals-polyfill-0.1.1.tgz#a313ab3efbb2c17c8ce376aa216c627c9b40f9d7" - integrity sha512-MR0oAA+mlnJWrt1RQVQ+4VYuRJW/P2YmRTv1AsplObyvuBMnPHiizUF95HHYiSsMGLhyGtWufaq2XQg6+iurBg== - -"@esbuild-plugins/node-modules-polyfill@^0.1.4": - version "0.1.4" - resolved "https://registry.yarnpkg.com/@esbuild-plugins/node-modules-polyfill/-/node-modules-polyfill-0.1.4.tgz#eb2f55da11967b2986c913f1a7957d1c868849c0" - integrity sha512-uZbcXi0zbmKC/050p3gJnne5Qdzw8vkXIv+c2BW0Lsc1ji1SkrxbKPUy5Efr0blbTu1SL8w4eyfpnSdPg3G0Qg== - dependencies: - escape-string-regexp "^4.0.0" - rollup-plugin-node-polyfills "^0.2.1" - -"@esbuild/android-arm64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.16.3.tgz#6af6d16be6d534d776a51fc215bfd81a68906d2c" - integrity sha512-RolFVeinkeraDvN/OoRf1F/lP0KUfGNb5jxy/vkIMeRRChkrX/HTYN6TYZosRJs3a1+8wqpxAo5PI5hFmxyPRg== - -"@esbuild/android-arm@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.16.3.tgz#2a091222f3b1928e3246fb3c5202eaca88baab67" - integrity sha512-mueuEoh+s1eRbSJqq9KNBQwI4QhQV6sRXIfTyLXSHGMpyew61rOK4qY21uKbXl1iBoMb0AdL1deWFCQVlN2qHA== - -"@esbuild/android-x64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.16.3.tgz#a6d749c58b022d371dc40d50ac1bb4aebd1eb953" - integrity sha512-SFpTUcIT1bIJuCCBMCQWq1bL2gPTjWoLZdjmIhjdcQHaUfV41OQfho6Ici5uvvkMmZRXIUGpM3GxysP/EU7ifQ== - -"@esbuild/darwin-arm64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.16.3.tgz#92d1826ed2f21dcac5830b70d7215c6afbb744e2" - integrity sha512-DO8WykMyB+N9mIDfI/Hug70Dk1KipavlGAecxS3jDUwAbTpDXj0Lcwzw9svkhxfpCagDmpaTMgxWK8/C/XcXvw== - -"@esbuild/darwin-x64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.16.3.tgz#7fc3570c2b16e9ff4fc178593a0a4adb1ae8ea57" - integrity sha512-uEqZQ2omc6BvWqdCiyZ5+XmxuHEi1SPzpVxXCSSV2+Sh7sbXbpeNhHIeFrIpRjAs0lI1FmA1iIOxFozKBhKgRQ== - -"@esbuild/freebsd-arm64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.3.tgz#16735ce16f8c9a4e7289e9e259aa01a8d9874307" - integrity sha512-nJansp3sSXakNkOD5i5mIz2Is/HjzIhFs49b1tjrPrpCmwgBmH9SSzhC/Z1UqlkivqMYkhfPwMw1dGFUuwmXhw== - -"@esbuild/freebsd-x64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.16.3.tgz#f4edd1464cb072799ed6b8ab5178478e71c13459" - integrity sha512-TfoDzLw+QHfc4a8aKtGSQ96Wa+6eimljjkq9HKR0rHlU83vw8aldMOUSJTUDxbcUdcgnJzPaX8/vGWm7vyV7ug== - -"@esbuild/linux-arm64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.16.3.tgz#4b7ae6fe3618d9a40d6ca39c6edc991ac1447203" - integrity sha512-7I3RlsnxEFCHVZNBLb2w7unamgZ5sVwO0/ikE2GaYvYuUQs9Qte/w7TqWcXHtCwxvZx/2+F97ndiUQAWs47ZfQ== - -"@esbuild/linux-arm@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.16.3.tgz#4b3e9f849822e16a76a70844c4db68075b259a58" - integrity sha512-VwswmSYwVAAq6LysV59Fyqk3UIjbhuc6wb3vEcJ7HEJUtFuLK9uXWuFoH1lulEbE4+5GjtHi3MHX+w1gNHdOWQ== - -"@esbuild/linux-ia32@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.16.3.tgz#2ff3936b91bfff62f9ecf7f6411ef399b29ed22d" - integrity sha512-X8FDDxM9cqda2rJE+iblQhIMYY49LfvW4kaEjoFbTTQ4Go8G96Smj2w3BRTwA8IHGoi9dPOPGAX63dhuv19UqA== - -"@esbuild/linux-loong64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.16.3.tgz#ff8aa59f49d9ccbc1ff952ba1f5cd01a534562df" - integrity sha512-hIbeejCOyO0X9ujfIIOKjBjNAs9XD/YdJ9JXAy1lHA+8UXuOqbFe4ErMCqMr8dhlMGBuvcQYGF7+kO7waj2KHw== - -"@esbuild/linux-mips64el@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.16.3.tgz#5dd5e118071c3912df69beedbfd11fb117f0fe5e" - integrity sha512-znFRzICT/V8VZQMt6rjb21MtAVJv/3dmKRMlohlShrbVXdBuOdDrGb+C2cZGQAR8RFyRe7HS6klmHq103WpmVw== - -"@esbuild/linux-ppc64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.16.3.tgz#36c62e24eae7fa3f0d921506da8fc1e6098a1364" - integrity sha512-EV7LuEybxhXrVTDpbqWF2yehYRNz5e5p+u3oQUS2+ZFpknyi1NXxr8URk4ykR8Efm7iu04//4sBg249yNOwy5Q== - -"@esbuild/linux-riscv64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.16.3.tgz#f0fec8e7affb5bcc817fefc61a21cbb95539e393" - integrity sha512-uDxqFOcLzFIJ+r/pkTTSE9lsCEaV/Y6rMlQjUI9BkzASEChYL/aSQjZjchtEmdnVxDKETnUAmsaZ4pqK1eE5BQ== - -"@esbuild/linux-s390x@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.16.3.tgz#22e10edd6e91f53c2e1f60e46abd453d7794409b" - integrity sha512-NbeREhzSxYwFhnCAQOQZmajsPYtX71Ufej3IQ8W2Gxskfz9DK58ENEju4SbpIj48VenktRASC52N5Fhyf/aliQ== - -"@esbuild/linux-x64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.16.3.tgz#38388b73fd9eebe45b073d7d8099b9c2e54f7139" - integrity sha512-SDiG0nCixYO9JgpehoKgScwic7vXXndfasjnD5DLbp1xltANzqZ425l7LSdHynt19UWOcDjG9wJJzSElsPvk0w== - -"@esbuild/netbsd-x64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.16.3.tgz#e0270569567f1530b8dbe6d11d5b4930b9cc71ae" - integrity sha512-AzbsJqiHEq1I/tUvOfAzCY15h4/7Ivp3ff/o1GpP16n48JMNAtbW0qui2WCgoIZArEHD0SUQ95gvR0oSO7ZbdA== - -"@esbuild/openbsd-x64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.16.3.tgz#3b16642d443848bca605f33ee3978a1890911e6d" - integrity sha512-gSABi8qHl8k3Cbi/4toAzHiykuBuWLZs43JomTcXkjMZVkp0gj3gg9mO+9HJW/8GB5H89RX/V0QP4JGL7YEEVg== - -"@esbuild/sunos-x64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.16.3.tgz#a838f247867380f0ae25ce1936dc5ab6f57b7734" - integrity sha512-SF9Kch5Ete4reovvRO6yNjMxrvlfT0F0Flm+NPoUw5Z4Q3r1d23LFTgaLwm3Cp0iGbrU/MoUI+ZqwCv5XJijCw== - -"@esbuild/win32-arm64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.16.3.tgz#bedd9bef5fb41f89ce2599f1761973cf6d6a67b6" - integrity sha512-u5aBonZIyGopAZyOnoPAA6fGsDeHByZ9CnEzyML9NqntK6D/xl5jteZUKm/p6nD09+v3pTM6TuUIqSPcChk5gg== - -"@esbuild/win32-ia32@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.16.3.tgz#49800aa812d8cc35ceef61e8d3b01224684cc0b1" - integrity sha512-GlgVq1WpvOEhNioh74TKelwla9KDuAaLZrdxuuUgsP2vayxeLgVc+rbpIv0IYF4+tlIzq2vRhofV+KGLD+37EQ== - -"@esbuild/win32-x64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.16.3.tgz#94047dae921949cfb308117d993c4b941291ae10" - integrity sha512-5/JuTd8OWW8UzEtyf19fbrtMJENza+C9JoPIkvItgTBQ1FO2ZLvjbPO6Xs54vk0s5JB5QsfieUEshRQfu7ZHow== - -"@hapi/hoek@^9.0.0": - version "9.3.0" - resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" - integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== - -"@hapi/topo@^5.0.0": - version "5.1.0" - resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" - integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== - dependencies: - "@hapi/hoek" "^9.0.0" - -"@istanbuljs/load-nyc-config@^1.0.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" - integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== - dependencies: - camelcase "^5.3.1" - find-up "^4.1.0" - get-package-type "^0.1.0" - js-yaml "^3.13.1" - resolve-from "^5.0.0" - -"@istanbuljs/schema@^0.1.2": - version "0.1.3" - resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" - integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== - -"@jest/console@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.5.0.tgz#593a6c5c0d3f75689835f1b3b4688c4f8544cb57" - integrity sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ== - dependencies: - "@jest/types" "^29.5.0" - "@types/node" "*" - chalk "^4.0.0" - jest-message-util "^29.5.0" - jest-util "^29.5.0" - slash "^3.0.0" - -"@jest/core@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.5.0.tgz#76674b96904484e8214614d17261cc491e5f1f03" - integrity sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ== - dependencies: - "@jest/console" "^29.5.0" - "@jest/reporters" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" - "@types/node" "*" - ansi-escapes "^4.2.1" - chalk "^4.0.0" - ci-info "^3.2.0" - exit "^0.1.2" - graceful-fs "^4.2.9" - jest-changed-files "^29.5.0" - jest-config "^29.5.0" - jest-haste-map "^29.5.0" - jest-message-util "^29.5.0" - jest-regex-util "^29.4.3" - jest-resolve "^29.5.0" - jest-resolve-dependencies "^29.5.0" - jest-runner "^29.5.0" - jest-runtime "^29.5.0" - jest-snapshot "^29.5.0" - jest-util "^29.5.0" - jest-validate "^29.5.0" - jest-watcher "^29.5.0" - micromatch "^4.0.4" - pretty-format "^29.5.0" - slash "^3.0.0" - strip-ansi "^6.0.0" - -"@jest/environment@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.5.0.tgz#9152d56317c1fdb1af389c46640ba74ef0bb4c65" - integrity sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ== - dependencies: - "@jest/fake-timers" "^29.5.0" - "@jest/types" "^29.5.0" - "@types/node" "*" - jest-mock "^29.5.0" - -"@jest/expect-utils@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.5.0.tgz#f74fad6b6e20f924582dc8ecbf2cb800fe43a036" - integrity sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg== - dependencies: - jest-get-type "^29.4.3" - -"@jest/expect@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.5.0.tgz#80952f5316b23c483fbca4363ce822af79c38fba" - integrity sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g== - dependencies: - expect "^29.5.0" - jest-snapshot "^29.5.0" - -"@jest/fake-timers@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.5.0.tgz#d4d09ec3286b3d90c60bdcd66ed28d35f1b4dc2c" - integrity sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg== - dependencies: - "@jest/types" "^29.5.0" - "@sinonjs/fake-timers" "^10.0.2" - "@types/node" "*" - jest-message-util "^29.5.0" - jest-mock "^29.5.0" - jest-util "^29.5.0" - -"@jest/globals@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.5.0.tgz#6166c0bfc374c58268677539d0c181f9c1833298" - integrity sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ== - dependencies: - "@jest/environment" "^29.5.0" - "@jest/expect" "^29.5.0" - "@jest/types" "^29.5.0" - jest-mock "^29.5.0" - -"@jest/reporters@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.5.0.tgz#985dfd91290cd78ddae4914ba7921bcbabe8ac9b" - integrity sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA== - dependencies: - "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" - "@jridgewell/trace-mapping" "^0.3.15" - "@types/node" "*" - chalk "^4.0.0" - collect-v8-coverage "^1.0.0" - exit "^0.1.2" - glob "^7.1.3" - graceful-fs "^4.2.9" - istanbul-lib-coverage "^3.0.0" - istanbul-lib-instrument "^5.1.0" - istanbul-lib-report "^3.0.0" - istanbul-lib-source-maps "^4.0.0" - istanbul-reports "^3.1.3" - jest-message-util "^29.5.0" - jest-util "^29.5.0" - jest-worker "^29.5.0" - slash "^3.0.0" - string-length "^4.0.1" - strip-ansi "^6.0.0" - v8-to-istanbul "^9.0.1" - -"@jest/schemas@^29.4.3": - version "29.4.3" - resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.4.3.tgz#39cf1b8469afc40b6f5a2baaa146e332c4151788" - integrity sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg== - dependencies: - "@sinclair/typebox" "^0.25.16" - -"@jest/source-map@^29.4.3": - version "29.4.3" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.4.3.tgz#ff8d05cbfff875d4a791ab679b4333df47951d20" - integrity sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w== - dependencies: - "@jridgewell/trace-mapping" "^0.3.15" - callsites "^3.0.0" - graceful-fs "^4.2.9" - -"@jest/test-result@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.5.0.tgz#7c856a6ca84f45cc36926a4e9c6b57f1973f1408" - integrity sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ== - dependencies: - "@jest/console" "^29.5.0" - "@jest/types" "^29.5.0" - "@types/istanbul-lib-coverage" "^2.0.0" - collect-v8-coverage "^1.0.0" - -"@jest/test-sequencer@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz#34d7d82d3081abd523dbddc038a3ddcb9f6d3cc4" - integrity sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ== - dependencies: - "@jest/test-result" "^29.5.0" - graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" - slash "^3.0.0" - -"@jest/transform@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.5.0.tgz#cf9c872d0965f0cbd32f1458aa44a2b1988b00f9" - integrity sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw== - dependencies: - "@babel/core" "^7.11.6" - "@jest/types" "^29.5.0" - "@jridgewell/trace-mapping" "^0.3.15" - babel-plugin-istanbul "^6.1.1" - chalk "^4.0.0" - convert-source-map "^2.0.0" - fast-json-stable-stringify "^2.1.0" - graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" - jest-regex-util "^29.4.3" - jest-util "^29.5.0" - micromatch "^4.0.4" - pirates "^4.0.4" - slash "^3.0.0" - write-file-atomic "^4.0.2" - -"@jest/types@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.5.0.tgz#f59ef9b031ced83047c67032700d8c807d6e1593" - integrity sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog== - dependencies: - "@jest/schemas" "^29.4.3" - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^3.0.0" - "@types/node" "*" - "@types/yargs" "^17.0.8" - chalk "^4.0.0" - -"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": - version "0.3.3" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" - integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== - dependencies: - "@jridgewell/set-array" "^1.0.1" - "@jridgewell/sourcemap-codec" "^1.4.10" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/resolve-uri@3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" - integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== - -"@jridgewell/set-array@^1.0.1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" - integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== - -"@jridgewell/sourcemap-codec@1.4.14": - version "1.4.14" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" - integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== - -"@jridgewell/sourcemap-codec@^1.4.10": - version "1.4.15" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" - integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== - -"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.15", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.18" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" - integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== - dependencies: - "@jridgewell/resolve-uri" "3.1.0" - "@jridgewell/sourcemap-codec" "1.4.14" - -"@sideway/address@^4.1.3": - version "4.1.4" - resolved "https://registry.yarnpkg.com/@sideway/address/-/address-4.1.4.tgz#03dccebc6ea47fdc226f7d3d1ad512955d4783f0" - integrity sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw== - dependencies: - "@hapi/hoek" "^9.0.0" - -"@sideway/formula@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.1.tgz#80fcbcbaf7ce031e0ef2dd29b1bfc7c3f583611f" - integrity sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg== - -"@sideway/pinpoint@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" - integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== - -"@sinclair/typebox@^0.25.16": - version "0.25.24" - resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.25.24.tgz#8c7688559979f7079aacaf31aa881c3aa410b718" - integrity sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ== - -"@sinonjs/commons@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.0.tgz#beb434fe875d965265e04722ccfc21df7f755d72" - integrity sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA== - dependencies: - type-detect "4.0.8" - -"@sinonjs/fake-timers@^10.0.2": - version "10.3.0" - resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz#55fdff1ecab9f354019129daf4df0dd4d923ea66" - integrity sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA== - dependencies: - "@sinonjs/commons" "^3.0.0" - -"@types/babel__core@^7.1.14": - version "7.20.1" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.1.tgz#916ecea274b0c776fec721e333e55762d3a9614b" - integrity sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw== - dependencies: - "@babel/parser" "^7.20.7" - "@babel/types" "^7.20.7" - "@types/babel__generator" "*" - "@types/babel__template" "*" - "@types/babel__traverse" "*" - -"@types/babel__generator@*": - version "7.6.4" - resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7" - integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== - dependencies: - "@babel/types" "^7.0.0" - -"@types/babel__template@*": - version "7.4.1" - resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" - integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - -"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - version "7.20.1" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.1.tgz#dd6f1d2411ae677dcb2db008c962598be31d6acf" - integrity sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg== - dependencies: - "@babel/types" "^7.20.7" - -"@types/graceful-fs@^4.1.3": - version "4.1.6" - resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.6.tgz#e14b2576a1c25026b7f02ede1de3b84c3a1efeae" - integrity sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw== - dependencies: - "@types/node" "*" - -"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" - integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== - -"@types/istanbul-lib-report@*": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" - integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== - dependencies: - "@types/istanbul-lib-coverage" "*" - -"@types/istanbul-reports@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" - integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== - dependencies: - "@types/istanbul-lib-report" "*" - -"@types/node-fetch@^2.6.4": - version "2.6.4" - resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.4.tgz#1bc3a26de814f6bf466b25aeb1473fa1afe6a660" - integrity sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg== - dependencies: - "@types/node" "*" - form-data "^3.0.0" - -"@types/node@*": - version "20.3.1" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.3.1.tgz#e8a83f1aa8b649377bb1fb5d7bac5cb90e784dfe" - integrity sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg== - -"@types/node@^18.11.18": - version "18.16.18" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.18.tgz#85da09bafb66d4bc14f7c899185336d0c1736390" - integrity sha512-/aNaQZD0+iSBAGnvvN2Cx92HqE5sZCPZtx2TsK+4nvV23fFe09jVDvpArXr2j9DnYlzuU9WuoykDDc6wqvpNcw== - -"@types/prettier@^2.1.5": - version "2.7.3" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.3.tgz#3e51a17e291d01d17d3fc61422015a933af7a08f" - integrity sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA== - -"@types/qs@^6.9.7": - version "6.9.7" - resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" - integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== - -"@types/stack-utils@^2.0.0": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" - integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== - -"@types/yargs-parser@*": - version "21.0.0" - resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" - integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== - -"@types/yargs@^17.0.8": - version "17.0.24" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.24.tgz#b3ef8d50ad4aa6aecf6ddc97c580a00f5aa11902" - integrity sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw== - dependencies: - "@types/yargs-parser" "*" - -abort-controller@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" - integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== - dependencies: - event-target-shim "^5.0.0" - -acorn-walk@^8.2.0: - version "8.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" - integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== - -acorn@^8.8.0: - version "8.9.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.9.0.tgz#78a16e3b2bcc198c10822786fa6679e245db5b59" - integrity sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ== - -agentkeepalive@^4.2.1: - version "4.3.0" - resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.3.0.tgz#bb999ff07412653c1803b3ced35e50729830a255" - integrity sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg== - dependencies: - debug "^4.1.0" - depd "^2.0.0" - humanize-ms "^1.2.1" - -ansi-escapes@^4.2.1: - version "4.3.2" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" - integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== - dependencies: - type-fest "^0.21.3" - -ansi-regex@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" - integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== - -ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - -ansi-styles@^4.0.0, ansi-styles@^4.1.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" - integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== - dependencies: - color-convert "^2.0.1" - -ansi-styles@^5.0.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" - integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== - -anymatch@^3.0.3, anymatch@~3.1.2: - version "3.1.3" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" - integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - -arg@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" - integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== - -argparse@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - dependencies: - sprintf-js "~1.0.2" - -as-table@^1.0.36: - version "1.0.55" - resolved "https://registry.yarnpkg.com/as-table/-/as-table-1.0.55.tgz#dc984da3937745de902cea1d45843c01bdbbec4f" - integrity sha512-xvsWESUJn0JN421Xb9MQw6AsMHRCUknCe0Wjlxvjud80mU4E6hQf1A6NzQKcYNmYw62MfzEtXc+badstZP3JpQ== - dependencies: - printable-characters "^1.0.42" - -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== - -axios@^0.27.2: - version "0.27.2" - resolved "https://registry.yarnpkg.com/axios/-/axios-0.27.2.tgz#207658cc8621606e586c85db4b41a750e756d972" - integrity sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ== - dependencies: - follow-redirects "^1.14.9" - form-data "^4.0.0" - -babel-jest@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.5.0.tgz#3fe3ddb109198e78b1c88f9ebdecd5e4fc2f50a5" - integrity sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q== - dependencies: - "@jest/transform" "^29.5.0" - "@types/babel__core" "^7.1.14" - babel-plugin-istanbul "^6.1.1" - babel-preset-jest "^29.5.0" - chalk "^4.0.0" - graceful-fs "^4.2.9" - slash "^3.0.0" - -babel-plugin-istanbul@^6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" - integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@istanbuljs/load-nyc-config" "^1.0.0" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-instrument "^5.0.4" - test-exclude "^6.0.0" - -babel-plugin-jest-hoist@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz#a97db437936f441ec196990c9738d4b88538618a" - integrity sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w== - dependencies: - "@babel/template" "^7.3.3" - "@babel/types" "^7.3.3" - "@types/babel__core" "^7.1.14" - "@types/babel__traverse" "^7.0.6" - -babel-preset-current-node-syntax@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" - integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== - dependencies: - "@babel/plugin-syntax-async-generators" "^7.8.4" - "@babel/plugin-syntax-bigint" "^7.8.3" - "@babel/plugin-syntax-class-properties" "^7.8.3" - "@babel/plugin-syntax-import-meta" "^7.8.3" - "@babel/plugin-syntax-json-strings" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.8.3" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - "@babel/plugin-syntax-top-level-await" "^7.8.3" - -babel-preset-jest@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz#57bc8cc88097af7ff6a5ab59d1cd29d52a5916e2" - integrity sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg== - dependencies: - babel-plugin-jest-hoist "^29.5.0" - babel-preset-current-node-syntax "^1.0.0" - -balanced-match@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== - -base-64@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb" - integrity sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA== - -base64-js@^1.3.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== - -better-sqlite3@^8.1.0: - version "8.4.0" - resolved "https://registry.yarnpkg.com/better-sqlite3/-/better-sqlite3-8.4.0.tgz#aa27bbc6bb42bb438fc55c88b146fcfe5978fa76" - integrity sha512-NmsNW1CQvqMszu/CFAJ3pLct6NEFlNfuGM6vw72KHkjOD1UDnL96XNN1BMQc1hiHo8vE2GbOWQYIpZ+YM5wrZw== - dependencies: - bindings "^1.5.0" - prebuild-install "^7.1.0" - -binary-extensions@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" - integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== - -bindings@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" - integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== - dependencies: - file-uri-to-path "1.0.0" - -bl@^4.0.3: - version "4.1.0" - resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" - integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== - dependencies: - buffer "^5.5.0" - inherits "^2.0.4" - readable-stream "^3.4.0" - -blake3-wasm@^2.1.5: - version "2.1.5" - resolved "https://registry.yarnpkg.com/blake3-wasm/-/blake3-wasm-2.1.5.tgz#b22dbb84bc9419ed0159caa76af4b1b132e6ba52" - integrity sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g== - -bluebird@3.7.2: - version "3.7.2" - resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" - integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -braces@^3.0.2, braces@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - dependencies: - fill-range "^7.0.1" - -browserslist@^4.21.3: - version "4.21.9" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.9.tgz#e11bdd3c313d7e2a9e87e8b4b0c7872b13897635" - integrity sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg== - dependencies: - caniuse-lite "^1.0.30001503" - electron-to-chromium "^1.4.431" - node-releases "^2.0.12" - update-browserslist-db "^1.0.11" - -bs-logger@0.x: - version "0.2.6" - resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" - integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== - dependencies: - fast-json-stable-stringify "2.x" - -bser@2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" - integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== - dependencies: - node-int64 "^0.4.0" - -buffer-from@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" - integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== - -buffer@^5.5.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" - integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.1.13" - -busboy@^1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz#966ea36a9502e43cdb9146962523b92f531f6893" - integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA== - dependencies: - streamsearch "^1.1.0" - -call-bind@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" - integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== - dependencies: - function-bind "^1.1.1" - get-intrinsic "^1.0.2" - -callsites@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== - -camelcase@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - -camelcase@^6.2.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" - integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== - -caniuse-lite@^1.0.30001503: - version "1.0.30001506" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001506.tgz#35bd814b310a487970c585430e9e80ee23faf14b" - integrity sha512-6XNEcpygZMCKaufIcgpQNZNf00GEqc7VQON+9Rd0K1bMYo8xhMZRAo5zpbnbMNizi4YNgIDAFrdykWsvY3H4Hw== - -capnp-ts@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/capnp-ts/-/capnp-ts-0.7.0.tgz#16fd8e76b667d002af8fcf4bf92bf15d1a7b54a9" - integrity sha512-XKxXAC3HVPv7r674zP0VC3RTXz+/JKhfyw94ljvF80yynK6VkTnqE3jMuN8b3dUVmmc43TjyxjW4KTsmB3c86g== - dependencies: - debug "^4.3.1" - tslib "^2.2.0" - -chalk@^2.0.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -chalk@^4.0.0: - version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -char-regex@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" - integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== - -charenc@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" - integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA== - -check-more-types@2.24.0: - version "2.24.0" - resolved "https://registry.yarnpkg.com/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" - integrity sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA== - -chokidar@^3.5.3: - version "3.5.3" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" - integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== - dependencies: - anymatch "~3.1.2" - braces "~3.0.2" - glob-parent "~5.1.2" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.6.0" - optionalDependencies: - fsevents "~2.3.2" - -chownr@^1.1.1: - version "1.1.4" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" - integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== - -ci-info@^3.2.0: - version "3.8.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" - integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== - -cjs-module-lexer@^1.0.0: - version "1.2.3" - resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz#6c370ab19f8a3394e318fe682686ec0ac684d107" - integrity sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ== - -cliui@^8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" - integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.1" - wrap-ansi "^7.0.0" - -co@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" - integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== - -collect-v8-coverage@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" - integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== - -color-convert@^1.9.0: - version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - -color-convert@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== - dependencies: - color-name "~1.1.4" - -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== - -color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - -combined-stream@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== - dependencies: - delayed-stream "~1.0.0" - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== - -convert-source-map@^1.6.0, convert-source-map@^1.7.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" - integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== - -convert-source-map@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" - integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== - -cookie@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" - integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== - -cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - -crypt@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" - integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow== - -data-uri-to-buffer@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-2.0.2.tgz#d296973d5a4897a5dbe31716d118211921f04770" - integrity sha512-ND9qDTLc6diwj+Xe5cdAgVTbLVdXbtxTJRXRhli8Mowuaan+0EJOtdqJ0QCHNSSPyoXGx9HX2/VMnKeC34AChA== - -data-uri-to-buffer@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz#d8feb2b2881e6a4f58c2e08acfd0e2834e26222e" - integrity sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A== - -debug@4.3.4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" - -decompress-response@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" - integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== - dependencies: - mimic-response "^3.1.0" - -dedent@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" - integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== - -deep-extend@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" - integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== - -deepmerge@^4.2.2: - version "4.3.1" - resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" - integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== - -delayed-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== - -depd@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" - integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== - -detect-libc@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.1.tgz#e1897aa88fa6ad197862937fbc0441ef352ee0cd" - integrity sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w== - -detect-newline@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" - integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== - -diff-sequences@^29.4.3: - version "29.4.3" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.4.3.tgz#9314bc1fabe09267ffeca9cbafc457d8499a13f2" - integrity sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA== - -digest-fetch@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/digest-fetch/-/digest-fetch-1.3.0.tgz#898e69264d00012a23cf26e8a3e40320143fc661" - integrity sha512-CGJuv6iKNM7QyZlM2T3sPAdZWd/p9zQiRNS9G+9COUCwzWFTs0Xp8NF5iePx7wtvhDykReiRRrSeNb4oMmB8lA== - dependencies: - base-64 "^0.1.0" - md5 "^2.3.0" - -duplexer@~0.1.1: - version "0.1.2" - resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" - integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== - -electron-to-chromium@^1.4.431: - version "1.4.438" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.438.tgz#425f0d51862d36f90817d6dfb7fa2a53ff6a0a73" - integrity sha512-x94U0FhphEsHsOloCvlsujHCvoir0ZQ73ZAs/QN4PLx98uNvyEU79F75rq1db75Bx/atvuh7KPeuxelh+xfYJw== - -emittery@^0.13.1: - version "0.13.1" - resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.13.1.tgz#c04b8c3457490e0847ae51fced3af52d338e3dad" - integrity sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ== - -emoji-regex@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" - integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== - -end-of-stream@^1.1.0, end-of-stream@^1.4.1: - version "1.4.4" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== - dependencies: - once "^1.4.0" - -error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - dependencies: - is-arrayish "^0.2.1" - -esbuild@0.16.3: - version "0.16.3" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.16.3.tgz#5868632fa23f7a8547f2a4ea359c44e946515c94" - integrity sha512-71f7EjPWTiSguen8X/kxEpkAS7BFHwtQKisCDDV3Y4GLGWBaoSCyD5uXkaUew6JDzA9FEN1W23mdnSwW9kqCeg== - optionalDependencies: - "@esbuild/android-arm" "0.16.3" - "@esbuild/android-arm64" "0.16.3" - "@esbuild/android-x64" "0.16.3" - "@esbuild/darwin-arm64" "0.16.3" - "@esbuild/darwin-x64" "0.16.3" - "@esbuild/freebsd-arm64" "0.16.3" - "@esbuild/freebsd-x64" "0.16.3" - "@esbuild/linux-arm" "0.16.3" - "@esbuild/linux-arm64" "0.16.3" - "@esbuild/linux-ia32" "0.16.3" - "@esbuild/linux-loong64" "0.16.3" - "@esbuild/linux-mips64el" "0.16.3" - "@esbuild/linux-ppc64" "0.16.3" - "@esbuild/linux-riscv64" "0.16.3" - "@esbuild/linux-s390x" "0.16.3" - "@esbuild/linux-x64" "0.16.3" - "@esbuild/netbsd-x64" "0.16.3" - "@esbuild/openbsd-x64" "0.16.3" - "@esbuild/sunos-x64" "0.16.3" - "@esbuild/win32-arm64" "0.16.3" - "@esbuild/win32-ia32" "0.16.3" - "@esbuild/win32-x64" "0.16.3" - -escalade@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" - integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== - -escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== - -escape-string-regexp@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" - integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== - -escape-string-regexp@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" - integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== - -esprima@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - -estree-walker@^0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" - integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== - -event-stream@=3.3.4: - version "3.3.4" - resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" - integrity sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g== - dependencies: - duplexer "~0.1.1" - from "~0" - map-stream "~0.1.0" - pause-stream "0.0.11" - split "0.3" - stream-combiner "~0.0.4" - through "~2.3.1" - -event-target-shim@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" - integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== - -execa@5.1.1, execa@^5.0.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" - integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== - dependencies: - cross-spawn "^7.0.3" - get-stream "^6.0.0" - human-signals "^2.1.0" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^4.0.1" - onetime "^5.1.2" - signal-exit "^3.0.3" - strip-final-newline "^2.0.0" - -exit-hook@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-2.2.1.tgz#007b2d92c6428eda2b76e7016a34351586934593" - integrity sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw== - -exit@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" - integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== - -expand-template@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" - integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== - -expect@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/expect/-/expect-29.5.0.tgz#68c0509156cb2a0adb8865d413b137eeaae682f7" - integrity sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg== - dependencies: - "@jest/expect-utils" "^29.5.0" - jest-get-type "^29.4.3" - jest-matcher-utils "^29.5.0" - jest-message-util "^29.5.0" - jest-util "^29.5.0" - -fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" - integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== - -fb-watchman@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" - integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== - dependencies: - bser "2.1.1" - -fetch-blob@^3.1.2, fetch-blob@^3.1.4: - version "3.2.0" - resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" - integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== - dependencies: - node-domexception "^1.0.0" - web-streams-polyfill "^3.0.3" - -file-uri-to-path@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" - integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== - -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== - dependencies: - to-regex-range "^5.0.1" - -find-up@^4.0.0, find-up@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -follow-redirects@^1.14.9: - version "1.15.2" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" - integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== - -form-data-encoder@1.7.2: - version "1.7.2" - resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-1.7.2.tgz#1f1ae3dccf58ed4690b86d87e4f57c654fbab040" - integrity sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A== - -form-data@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" - integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.8" - mime-types "^2.1.12" - -form-data@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" - integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.8" - mime-types "^2.1.12" - -formdata-node@^4.3.2: - version "4.4.1" - resolved "https://registry.yarnpkg.com/formdata-node/-/formdata-node-4.4.1.tgz#23f6a5cb9cb55315912cbec4ff7b0f59bbd191e2" - integrity sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ== - dependencies: - node-domexception "1.0.0" - web-streams-polyfill "4.0.0-beta.3" - -formdata-polyfill@^4.0.10: - version "4.0.10" - resolved "https://registry.yarnpkg.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" - integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== - dependencies: - fetch-blob "^3.1.2" - -from@~0: - version "0.1.7" - resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" - integrity sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g== - -fs-constants@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" - integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== - -fsevents@^2.3.2, fsevents@~2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== - -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -gensync@^1.0.0-beta.2: - version "1.0.0-beta.2" - resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" - integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== - -get-caller-file@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - -get-intrinsic@^1.0.2: - version "1.2.1" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" - integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== - dependencies: - function-bind "^1.1.1" - has "^1.0.3" - has-proto "^1.0.1" - has-symbols "^1.0.3" - -get-package-type@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" - integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== - -get-source@^2.0.12: - version "2.0.12" - resolved "https://registry.yarnpkg.com/get-source/-/get-source-2.0.12.tgz#0b47d57ea1e53ce0d3a69f4f3d277eb8047da944" - integrity sha512-X5+4+iD+HoSeEED+uwrQ07BOQr0kEDFMVqqpBuI+RaZBpBpHCuXxo70bjar6f0b0u/DQJsJ7ssurpP0V60Az+w== - dependencies: - data-uri-to-buffer "^2.0.0" - source-map "^0.6.1" - -get-stream@^6.0.0: - version "6.0.1" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" - integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== - -github-from-package@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" - integrity sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw== - -glob-parent@~5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== - dependencies: - is-glob "^4.0.1" - -glob-to-regexp@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" - integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== - -glob@^7.1.3, glob@^7.1.4: - version "7.2.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" - integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.1.1" - once "^1.3.0" - path-is-absolute "^1.0.0" - -globals@^11.1.0: - version "11.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== - -graceful-fs@^4.2.9: - version "4.2.11" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" - integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== - -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== - -has-proto@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" - integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== - -has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== - -has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -html-escaper@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" - integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== - -http-cache-semantics@^4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" - integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== - -human-signals@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" - integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== - -humanize-ms@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" - integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== - dependencies: - ms "^2.0.0" - -ieee754@^1.1.13: - version "1.2.1" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" - integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== - -import-local@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" - integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== - dependencies: - pkg-dir "^4.2.0" - resolve-cwd "^3.0.0" - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@^2.0.3, inherits@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -ini@~1.3.0: - version "1.3.8" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" - integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== - -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== - -is-binary-path@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" - integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== - dependencies: - binary-extensions "^2.0.0" - -is-buffer@~1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== - -is-core-module@^2.11.0: - version "2.12.1" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd" - integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg== - dependencies: - has "^1.0.3" - -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== - -is-fullwidth-code-point@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" - integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== - -is-generator-fn@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" - integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== - -is-glob@^4.0.1, is-glob@~4.0.1: - version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" - integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== - dependencies: - is-extglob "^2.1.1" - -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - -is-stream@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" - integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== - -istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" - integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== - -istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" - integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== - dependencies: - "@babel/core" "^7.12.3" - "@babel/parser" "^7.14.7" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-coverage "^3.2.0" - semver "^6.3.0" - -istanbul-lib-report@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" - integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== - dependencies: - istanbul-lib-coverage "^3.0.0" - make-dir "^3.0.0" - supports-color "^7.1.0" - -istanbul-lib-source-maps@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" - integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== - dependencies: - debug "^4.1.1" - istanbul-lib-coverage "^3.0.0" - source-map "^0.6.1" - -istanbul-reports@^3.1.3: - version "3.1.5" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.5.tgz#cc9a6ab25cb25659810e4785ed9d9fb742578bae" - integrity sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w== - dependencies: - html-escaper "^2.0.0" - istanbul-lib-report "^3.0.0" - -jest-changed-files@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.5.0.tgz#e88786dca8bf2aa899ec4af7644e16d9dcf9b23e" - integrity sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag== - dependencies: - execa "^5.0.0" - p-limit "^3.1.0" - -jest-circus@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.5.0.tgz#b5926989449e75bff0d59944bae083c9d7fb7317" - integrity sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA== - dependencies: - "@jest/environment" "^29.5.0" - "@jest/expect" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/types" "^29.5.0" - "@types/node" "*" - chalk "^4.0.0" - co "^4.6.0" - dedent "^0.7.0" - is-generator-fn "^2.0.0" - jest-each "^29.5.0" - jest-matcher-utils "^29.5.0" - jest-message-util "^29.5.0" - jest-runtime "^29.5.0" - jest-snapshot "^29.5.0" - jest-util "^29.5.0" - p-limit "^3.1.0" - pretty-format "^29.5.0" - pure-rand "^6.0.0" - slash "^3.0.0" - stack-utils "^2.0.3" - -jest-cli@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.5.0.tgz#b34c20a6d35968f3ee47a7437ff8e53e086b4a67" - integrity sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw== - dependencies: - "@jest/core" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/types" "^29.5.0" - chalk "^4.0.0" - exit "^0.1.2" - graceful-fs "^4.2.9" - import-local "^3.0.2" - jest-config "^29.5.0" - jest-util "^29.5.0" - jest-validate "^29.5.0" - prompts "^2.0.1" - yargs "^17.3.1" - -jest-config@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.5.0.tgz#3cc972faec8c8aaea9ae158c694541b79f3748da" - integrity sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA== - dependencies: - "@babel/core" "^7.11.6" - "@jest/test-sequencer" "^29.5.0" - "@jest/types" "^29.5.0" - babel-jest "^29.5.0" - chalk "^4.0.0" - ci-info "^3.2.0" - deepmerge "^4.2.2" - glob "^7.1.3" - graceful-fs "^4.2.9" - jest-circus "^29.5.0" - jest-environment-node "^29.5.0" - jest-get-type "^29.4.3" - jest-regex-util "^29.4.3" - jest-resolve "^29.5.0" - jest-runner "^29.5.0" - jest-util "^29.5.0" - jest-validate "^29.5.0" - micromatch "^4.0.4" - parse-json "^5.2.0" - pretty-format "^29.5.0" - slash "^3.0.0" - strip-json-comments "^3.1.1" - -jest-diff@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.5.0.tgz#e0d83a58eb5451dcc1fa61b1c3ee4e8f5a290d63" - integrity sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw== - dependencies: - chalk "^4.0.0" - diff-sequences "^29.4.3" - jest-get-type "^29.4.3" - pretty-format "^29.5.0" - -jest-docblock@^29.4.3: - version "29.4.3" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-29.4.3.tgz#90505aa89514a1c7dceeac1123df79e414636ea8" - integrity sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg== - dependencies: - detect-newline "^3.0.0" - -jest-each@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.5.0.tgz#fc6e7014f83eac68e22b7195598de8554c2e5c06" - integrity sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA== - dependencies: - "@jest/types" "^29.5.0" - chalk "^4.0.0" - jest-get-type "^29.4.3" - jest-util "^29.5.0" - pretty-format "^29.5.0" - -jest-environment-node@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.5.0.tgz#f17219d0f0cc0e68e0727c58b792c040e332c967" - integrity sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw== - dependencies: - "@jest/environment" "^29.5.0" - "@jest/fake-timers" "^29.5.0" - "@jest/types" "^29.5.0" - "@types/node" "*" - jest-mock "^29.5.0" - jest-util "^29.5.0" - -jest-get-type@^29.4.3: - version "29.4.3" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.4.3.tgz#1ab7a5207c995161100b5187159ca82dd48b3dd5" - integrity sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg== - -jest-haste-map@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.5.0.tgz#69bd67dc9012d6e2723f20a945099e972b2e94de" - integrity sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA== - dependencies: - "@jest/types" "^29.5.0" - "@types/graceful-fs" "^4.1.3" - "@types/node" "*" - anymatch "^3.0.3" - fb-watchman "^2.0.0" - graceful-fs "^4.2.9" - jest-regex-util "^29.4.3" - jest-util "^29.5.0" - jest-worker "^29.5.0" - micromatch "^4.0.4" - walker "^1.0.8" - optionalDependencies: - fsevents "^2.3.2" - -jest-leak-detector@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz#cf4bdea9615c72bac4a3a7ba7e7930f9c0610c8c" - integrity sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow== - dependencies: - jest-get-type "^29.4.3" - pretty-format "^29.5.0" - -jest-matcher-utils@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz#d957af7f8c0692c5453666705621ad4abc2c59c5" - integrity sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw== - dependencies: - chalk "^4.0.0" - jest-diff "^29.5.0" - jest-get-type "^29.4.3" - pretty-format "^29.5.0" - -jest-message-util@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.5.0.tgz#1f776cac3aca332ab8dd2e3b41625435085c900e" - integrity sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA== - dependencies: - "@babel/code-frame" "^7.12.13" - "@jest/types" "^29.5.0" - "@types/stack-utils" "^2.0.0" - chalk "^4.0.0" - graceful-fs "^4.2.9" - micromatch "^4.0.4" - pretty-format "^29.5.0" - slash "^3.0.0" - stack-utils "^2.0.3" - -jest-mock@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.5.0.tgz#26e2172bcc71d8b0195081ff1f146ac7e1518aed" - integrity sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw== - dependencies: - "@jest/types" "^29.5.0" - "@types/node" "*" - jest-util "^29.5.0" - -jest-pnp-resolver@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" - integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== - -jest-regex-util@^29.4.3: - version "29.4.3" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.4.3.tgz#a42616141e0cae052cfa32c169945d00c0aa0bb8" - integrity sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg== - -jest-resolve-dependencies@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz#f0ea29955996f49788bf70996052aa98e7befee4" - integrity sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg== - dependencies: - jest-regex-util "^29.4.3" - jest-snapshot "^29.5.0" - -jest-resolve@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.5.0.tgz#b053cc95ad1d5f6327f0ac8aae9f98795475ecdc" - integrity sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w== - dependencies: - chalk "^4.0.0" - graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" - jest-pnp-resolver "^1.2.2" - jest-util "^29.5.0" - jest-validate "^29.5.0" - resolve "^1.20.0" - resolve.exports "^2.0.0" - slash "^3.0.0" - -jest-runner@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.5.0.tgz#6a57c282eb0ef749778d444c1d758c6a7693b6f8" - integrity sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ== - dependencies: - "@jest/console" "^29.5.0" - "@jest/environment" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" - "@types/node" "*" - chalk "^4.0.0" - emittery "^0.13.1" - graceful-fs "^4.2.9" - jest-docblock "^29.4.3" - jest-environment-node "^29.5.0" - jest-haste-map "^29.5.0" - jest-leak-detector "^29.5.0" - jest-message-util "^29.5.0" - jest-resolve "^29.5.0" - jest-runtime "^29.5.0" - jest-util "^29.5.0" - jest-watcher "^29.5.0" - jest-worker "^29.5.0" - p-limit "^3.1.0" - source-map-support "0.5.13" - -jest-runtime@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.5.0.tgz#c83f943ee0c1da7eb91fa181b0811ebd59b03420" - integrity sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw== - dependencies: - "@jest/environment" "^29.5.0" - "@jest/fake-timers" "^29.5.0" - "@jest/globals" "^29.5.0" - "@jest/source-map" "^29.4.3" - "@jest/test-result" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" - "@types/node" "*" - chalk "^4.0.0" - cjs-module-lexer "^1.0.0" - collect-v8-coverage "^1.0.0" - glob "^7.1.3" - graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" - jest-message-util "^29.5.0" - jest-mock "^29.5.0" - jest-regex-util "^29.4.3" - jest-resolve "^29.5.0" - jest-snapshot "^29.5.0" - jest-util "^29.5.0" - slash "^3.0.0" - strip-bom "^4.0.0" - -jest-snapshot@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.5.0.tgz#c9c1ce0331e5b63cd444e2f95a55a73b84b1e8ce" - integrity sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g== - dependencies: - "@babel/core" "^7.11.6" - "@babel/generator" "^7.7.2" - "@babel/plugin-syntax-jsx" "^7.7.2" - "@babel/plugin-syntax-typescript" "^7.7.2" - "@babel/traverse" "^7.7.2" - "@babel/types" "^7.3.3" - "@jest/expect-utils" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" - "@types/babel__traverse" "^7.0.6" - "@types/prettier" "^2.1.5" - babel-preset-current-node-syntax "^1.0.0" - chalk "^4.0.0" - expect "^29.5.0" - graceful-fs "^4.2.9" - jest-diff "^29.5.0" - jest-get-type "^29.4.3" - jest-matcher-utils "^29.5.0" - jest-message-util "^29.5.0" - jest-util "^29.5.0" - natural-compare "^1.4.0" - pretty-format "^29.5.0" - semver "^7.3.5" - -jest-util@^29.0.0, jest-util@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.5.0.tgz#24a4d3d92fc39ce90425311b23c27a6e0ef16b8f" - integrity sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ== - dependencies: - "@jest/types" "^29.5.0" - "@types/node" "*" - chalk "^4.0.0" - ci-info "^3.2.0" - graceful-fs "^4.2.9" - picomatch "^2.2.3" - -jest-validate@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.5.0.tgz#8e5a8f36178d40e47138dc00866a5f3bd9916ffc" - integrity sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ== - dependencies: - "@jest/types" "^29.5.0" - camelcase "^6.2.0" - chalk "^4.0.0" - jest-get-type "^29.4.3" - leven "^3.1.0" - pretty-format "^29.5.0" - -jest-watcher@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.5.0.tgz#cf7f0f949828ba65ddbbb45c743a382a4d911363" - integrity sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA== - dependencies: - "@jest/test-result" "^29.5.0" - "@jest/types" "^29.5.0" - "@types/node" "*" - ansi-escapes "^4.2.1" - chalk "^4.0.0" - emittery "^0.13.1" - jest-util "^29.5.0" - string-length "^4.0.1" - -jest-worker@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.5.0.tgz#bdaefb06811bd3384d93f009755014d8acb4615d" - integrity sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA== - dependencies: - "@types/node" "*" - jest-util "^29.5.0" - merge-stream "^2.0.0" - supports-color "^8.0.0" - -jest@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest/-/jest-29.5.0.tgz#f75157622f5ce7ad53028f2f8888ab53e1f1f24e" - integrity sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ== - dependencies: - "@jest/core" "^29.5.0" - "@jest/types" "^29.5.0" - import-local "^3.0.2" - jest-cli "^29.5.0" - -joi@^17.7.0: - version "17.9.2" - resolved "https://registry.yarnpkg.com/joi/-/joi-17.9.2.tgz#8b2e4724188369f55451aebd1d0b1d9482470690" - integrity sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw== - dependencies: - "@hapi/hoek" "^9.0.0" - "@hapi/topo" "^5.0.0" - "@sideway/address" "^4.1.3" - "@sideway/formula" "^3.0.1" - "@sideway/pinpoint" "^2.0.0" - -js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -js-yaml@^3.13.1: - version "3.14.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" - integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== - -json-parse-even-better-errors@^2.3.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" - integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== - -json5@^2.2.2, json5@^2.2.3: - version "2.2.3" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" - integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== - -kleur@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" - integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== - -kleur@^4.1.5: - version "4.1.5" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780" - integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ== - -lazy-ass@1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" - integrity sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw== - -leven@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" - integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== - -lines-and-columns@^1.1.6: - version "1.2.4" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" - integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== - -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== - dependencies: - p-locate "^4.1.0" - -lodash.memoize@4.x: - version "4.1.2" - resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" - integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== - -lodash@^4.17.21: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== - -lru-cache@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" - integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== - dependencies: - yallist "^3.0.2" - -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== - dependencies: - yallist "^4.0.0" - -magic-string@^0.25.3: - version "0.25.9" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c" - integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ== - dependencies: - sourcemap-codec "^1.4.8" - -make-dir@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" - integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== - dependencies: - semver "^6.0.0" - -make-error@1.x: - version "1.3.6" - resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" - integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== - -makeerror@1.0.12: - version "1.0.12" - resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" - integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== - dependencies: - tmpl "1.0.5" - -map-stream@~0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" - integrity sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g== - -md5@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" - integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g== - dependencies: - charenc "0.0.2" - crypt "0.0.2" - is-buffer "~1.1.6" - -merge-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" - integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== - -micromatch@^4.0.4: - version "4.0.5" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" - integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== - dependencies: - braces "^3.0.2" - picomatch "^2.3.1" - -mime-db@1.52.0: - version "1.52.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" - integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== - -mime-types@^2.1.12: - version "2.1.35" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" - integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== - dependencies: - mime-db "1.52.0" - -mime@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-3.0.0.tgz#b374550dca3a0c18443b0c950a6a58f1931cf7a7" - integrity sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A== - -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - -mimic-response@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" - integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== - -miniflare@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/miniflare/-/miniflare-3.0.1.tgz#75ad9d859485de5fac065e2ddf296f83dcbf9789" - integrity sha512-aLOB8d26lOTn493GOv1LmpGHVLSxmeT4MixPG/k3Ze10j0wDKnMj8wsFgbZ6Q4cr1N4faf8O3IbNRJuQ+rLoJA== - dependencies: - acorn "^8.8.0" - acorn-walk "^8.2.0" - better-sqlite3 "^8.1.0" - capnp-ts "^0.7.0" - exit-hook "^2.2.1" - glob-to-regexp "^0.4.1" - http-cache-semantics "^4.1.0" - kleur "^4.1.5" - source-map-support "0.5.21" - stoppable "^1.1.0" - undici "^5.13.0" - workerd "^1.20230512.0" - ws "^8.11.0" - youch "^3.2.2" - zod "^3.20.6" - -minimatch@^3.0.4, minimatch@^3.1.1: - version "3.1.2" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== - dependencies: - brace-expansion "^1.1.7" - -minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.7: - version "1.2.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" - integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== - -mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3: - version "0.5.3" - resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" - integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== - -ms@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -ms@^2.0.0: - version "2.1.3" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - -mustache@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/mustache/-/mustache-4.2.0.tgz#e5892324d60a12ec9c2a73359edca52972bf6f64" - integrity sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ== - -nanoid@^3.3.3: - version "3.3.6" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" - integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== - -napi-build-utils@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806" - integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== - -natural-compare@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== - -node-abi@^3.3.0: - version "3.45.0" - resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.45.0.tgz#f568f163a3bfca5aacfce1fbeee1fa2cc98441f5" - integrity sha512-iwXuFrMAcFVi/ZoZiqq8BzAdsLw9kxDfTC0HMyjXfSL/6CSDAGD5UmR7azrAgWV1zKYq7dUUMj4owusBWKLsiQ== - dependencies: - semver "^7.3.5" - -node-domexception@1.0.0, node-domexception@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" - integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== - -node-fetch@^2.6.7: - version "2.6.11" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.11.tgz#cde7fc71deef3131ef80a738919f999e6edfff25" - integrity sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w== - dependencies: - whatwg-url "^5.0.0" - -node-fetch@^3.3.1: - version "3.3.1" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.3.1.tgz#b3eea7b54b3a48020e46f4f88b9c5a7430d20b2e" - integrity sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow== - dependencies: - data-uri-to-buffer "^4.0.0" - fetch-blob "^3.1.4" - formdata-polyfill "^4.0.10" - -node-forge@^1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" - integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== - -node-int64@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" - integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== - -node-releases@^2.0.12: - version "2.0.12" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.12.tgz#35627cc224a23bfb06fb3380f2b3afaaa7eb1039" - integrity sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ== - -normalize-path@^3.0.0, normalize-path@~3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -npm-run-path@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" - integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== - dependencies: - path-key "^3.0.0" - -object-inspect@^1.9.0: - version "1.12.3" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" - integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== - -once@^1.3.0, once@^1.3.1, once@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== - dependencies: - wrappy "1" - -onetime@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== - dependencies: - mimic-fn "^2.1.0" - -openai@../../.pack/openai.tgz: - version "4.0.0-beta.0" - resolved "../../.pack/openai.tgz#a829154cebccf7fea034ca723caacb362745b562" - dependencies: - "@types/node" "^18.11.18" - "@types/node-fetch" "^2.6.4" - "@types/qs" "^6.9.7" - abort-controller "^3.0.0" - agentkeepalive "^4.2.1" - digest-fetch "^1.3.0" - form-data-encoder "1.7.2" - formdata-node "^4.3.2" - node-fetch "^2.6.7" - qs "^6.10.3" - -p-limit@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== - dependencies: - p-try "^2.0.0" - -p-limit@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" - integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== - dependencies: - yocto-queue "^0.1.0" - -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - dependencies: - p-limit "^2.2.0" - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -parse-json@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" - integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== - dependencies: - "@babel/code-frame" "^7.0.0" - error-ex "^1.3.1" - json-parse-even-better-errors "^2.3.0" - lines-and-columns "^1.1.6" - -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== - -path-key@^3.0.0, path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - -path-parse@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== - -path-to-regexp@^6.2.0: - version "6.2.1" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.2.1.tgz#d54934d6798eb9e5ef14e7af7962c945906918e5" - integrity sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw== - -pause-stream@0.0.11: - version "0.0.11" - resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" - integrity sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A== - dependencies: - through "~2.3" - -picocolors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" - integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== - -picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== - -pirates@^4.0.4: - version "4.0.6" - resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" - integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== - -pkg-dir@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== - dependencies: - find-up "^4.0.0" - -prebuild-install@^7.1.0: - version "7.1.1" - resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.1.tgz#de97d5b34a70a0c81334fd24641f2a1702352e45" - integrity sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw== - dependencies: - detect-libc "^2.0.0" - expand-template "^2.0.3" - github-from-package "0.0.0" - minimist "^1.2.3" - mkdirp-classic "^0.5.3" - napi-build-utils "^1.0.1" - node-abi "^3.3.0" - pump "^3.0.0" - rc "^1.2.7" - simple-get "^4.0.0" - tar-fs "^2.0.0" - tunnel-agent "^0.6.0" - -pretty-format@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.5.0.tgz#283134e74f70e2e3e7229336de0e4fce94ccde5a" - integrity sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw== - dependencies: - "@jest/schemas" "^29.4.3" - ansi-styles "^5.0.0" - react-is "^18.0.0" - -printable-characters@^1.0.42: - version "1.0.42" - resolved "https://registry.yarnpkg.com/printable-characters/-/printable-characters-1.0.42.tgz#3f18e977a9bd8eb37fcc4ff5659d7be90868b3d8" - integrity sha512-dKp+C4iXWK4vVYZmYSd0KBH5F/h1HoZRsbJ82AVKRO3PEo8L4lBS/vLwhVtpwwuYcoIsVY+1JYKR268yn480uQ== - -prompts@^2.0.1: - version "2.4.2" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" - integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== - dependencies: - kleur "^3.0.3" - sisteransi "^1.0.5" - -ps-tree@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.2.0.tgz#5e7425b89508736cdd4f2224d028f7bb3f722ebd" - integrity sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA== - dependencies: - event-stream "=3.3.4" - -pump@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -pure-rand@^6.0.0: - version "6.0.2" - resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.0.2.tgz#a9c2ddcae9b68d736a8163036f088a2781c8b306" - integrity sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ== - -qs@^6.10.3: - version "6.11.2" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" - integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== - dependencies: - side-channel "^1.0.4" - -rc@^1.2.7: - version "1.2.8" - resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" - integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== - dependencies: - deep-extend "^0.6.0" - ini "~1.3.0" - minimist "^1.2.0" - strip-json-comments "~2.0.1" - -react-is@^18.0.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" - integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== - -readable-stream@^3.1.1, readable-stream@^3.4.0: - version "3.6.2" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" - integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -readdirp@~3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" - integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== - dependencies: - picomatch "^2.2.1" - -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== - -resolve-cwd@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" - integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== - dependencies: - resolve-from "^5.0.0" - -resolve-from@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" - integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - -resolve.exports@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800" - integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== - -resolve@^1.20.0: - version "1.22.2" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" - integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== - dependencies: - is-core-module "^2.11.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - -rollup-plugin-inject@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/rollup-plugin-inject/-/rollup-plugin-inject-3.0.2.tgz#e4233855bfba6c0c12a312fd6649dff9a13ee9f4" - integrity sha512-ptg9PQwzs3orn4jkgXJ74bfs5vYz1NCZlSQMBUA0wKcGp5i5pA1AO3fOUEte8enhGUC+iapTCzEWw2jEFFUO/w== - dependencies: - estree-walker "^0.6.1" - magic-string "^0.25.3" - rollup-pluginutils "^2.8.1" - -rollup-plugin-node-polyfills@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/rollup-plugin-node-polyfills/-/rollup-plugin-node-polyfills-0.2.1.tgz#53092a2744837164d5b8a28812ba5f3ff61109fd" - integrity sha512-4kCrKPTJ6sK4/gLL/U5QzVT8cxJcofO0OU74tnB19F40cmuAKSzH5/siithxlofFEjwvw1YAhPmbvGNA6jEroA== - dependencies: - rollup-plugin-inject "^3.0.0" - -rollup-pluginutils@^2.8.1: - version "2.8.2" - resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e" - integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== - dependencies: - estree-walker "^0.6.1" - -rxjs@^7.8.0: - version "7.8.1" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" - integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== - dependencies: - tslib "^2.1.0" - -safe-buffer@^5.0.1, safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -selfsigned@^2.0.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.1.1.tgz#18a7613d714c0cd3385c48af0075abf3f266af61" - integrity sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ== - dependencies: - node-forge "^1" - -semver@7.x, semver@^7.3.5: - version "7.5.2" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.2.tgz#5b851e66d1be07c1cdaf37dfc856f543325a2beb" - integrity sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ== - dependencies: - lru-cache "^6.0.0" - -semver@^6.0.0, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -side-channel@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" - integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== - dependencies: - call-bind "^1.0.0" - get-intrinsic "^1.0.2" - object-inspect "^1.9.0" - -signal-exit@^3.0.3, signal-exit@^3.0.7: - version "3.0.7" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" - integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== - -simple-concat@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" - integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== - -simple-get@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz#4a39db549287c979d352112fa03fd99fd6bc3543" - integrity sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA== - dependencies: - decompress-response "^6.0.0" - once "^1.3.1" - simple-concat "^1.0.0" - -sisteransi@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" - integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== - -slash@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" - integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - -source-map-support@0.5.13: - version "0.5.13" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" - integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map-support@0.5.21: - version "0.5.21" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" - integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map@^0.6.0, source-map@^0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -source-map@^0.7.4: - version "0.7.4" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" - integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== - -sourcemap-codec@^1.4.8: - version "1.4.8" - resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" - integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== - -split@0.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" - integrity sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA== - dependencies: - through "2" - -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== - -stack-utils@^2.0.3: - version "2.0.6" - resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" - integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== - dependencies: - escape-string-regexp "^2.0.0" - -stacktracey@^2.1.8: - version "2.1.8" - resolved "https://registry.yarnpkg.com/stacktracey/-/stacktracey-2.1.8.tgz#bf9916020738ce3700d1323b32bd2c91ea71199d" - integrity sha512-Kpij9riA+UNg7TnphqjH7/CzctQ/owJGNbFkfEeve4Z4uxT5+JapVLFXcsurIfN34gnTWZNJ/f7NMG0E8JDzTw== - dependencies: - as-table "^1.0.36" - get-source "^2.0.12" - -start-server-and-test@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/start-server-and-test/-/start-server-and-test-2.0.0.tgz#0644809d63036a8a001efb70582f3e37ebfdd33d" - integrity sha512-UqKLw0mJbfrsG1jcRLTUlvuRi9sjNuUiDOLI42r7R5fA9dsFoywAy9DoLXNYys9B886E4RCKb+qM1Gzu96h7DQ== - dependencies: - arg "^5.0.2" - bluebird "3.7.2" - check-more-types "2.24.0" - debug "4.3.4" - execa "5.1.1" - lazy-ass "1.6.0" - ps-tree "1.2.0" - wait-on "7.0.1" - -stoppable@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/stoppable/-/stoppable-1.1.0.tgz#32da568e83ea488b08e4d7ea2c3bcc9d75015d5b" - integrity sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw== - -stream-combiner@~0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" - integrity sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw== - dependencies: - duplexer "~0.1.1" - -streamsearch@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764" - integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== - -string-length@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" - integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== - dependencies: - char-regex "^1.0.2" - strip-ansi "^6.0.0" - -string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-bom@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" - integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== - -strip-final-newline@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" - integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== - -strip-json-comments@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" - integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== - -strip-json-comments@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" - integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== - -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - -supports-color@^7.1.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" - integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== - dependencies: - has-flag "^4.0.0" - -supports-color@^8.0.0: - version "8.1.1" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" - integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== - dependencies: - has-flag "^4.0.0" - -supports-preserve-symlinks-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" - integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== - -tar-fs@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" - integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== - dependencies: - chownr "^1.1.1" - mkdirp-classic "^0.5.2" - pump "^3.0.0" - tar-stream "^2.1.4" - -tar-stream@^2.1.4: - version "2.2.0" - resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" - integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== - dependencies: - bl "^4.0.3" - end-of-stream "^1.4.1" - fs-constants "^1.0.0" - inherits "^2.0.3" - readable-stream "^3.1.1" - -test-exclude@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" - integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== - dependencies: - "@istanbuljs/schema" "^0.1.2" - glob "^7.1.4" - minimatch "^3.0.4" - -through@2, through@~2.3, through@~2.3.1: - version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== - -tmpl@1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" - integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== - -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - -tr46@~0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" - integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== - -ts-jest@^29.1.0: - version "29.1.0" - resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.0.tgz#4a9db4104a49b76d2b368ea775b6c9535c603891" - integrity sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA== - dependencies: - bs-logger "0.x" - fast-json-stable-stringify "2.x" - jest-util "^29.0.0" - json5 "^2.2.3" - lodash.memoize "4.x" - make-error "1.x" - semver "7.x" - yargs-parser "^21.0.1" - -tslib@^2.1.0, tslib@^2.2.0: - version "2.5.3" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.3.tgz#24944ba2d990940e6e982c4bea147aba80209913" - integrity sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w== - -tunnel-agent@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== - dependencies: - safe-buffer "^5.0.1" - -type-detect@4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" - integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== - -type-fest@^0.21.3: - version "0.21.3" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" - integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== - -typescript@^5.0.4: - version "5.1.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.3.tgz#8d84219244a6b40b6fb2b33cc1c062f715b9e826" - integrity sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw== - -undici@^5.13.0: - version "5.22.1" - resolved "https://registry.yarnpkg.com/undici/-/undici-5.22.1.tgz#877d512effef2ac8be65e695f3586922e1a57d7b" - integrity sha512-Ji2IJhFXZY0x/0tVBXeQwgPlLWw13GVzpsWPQ3rV50IFMMof2I55PZZxtm4P6iNq+L5znYN9nSTAq0ZyE6lSJw== - dependencies: - busboy "^1.6.0" - -update-browserslist-db@^1.0.11: - version "1.0.11" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" - integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== - dependencies: - escalade "^3.1.1" - picocolors "^1.0.0" - -util-deprecate@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== - -v8-to-istanbul@^9.0.1: - version "9.1.0" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz#1b83ed4e397f58c85c266a570fc2558b5feb9265" - integrity sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA== - dependencies: - "@jridgewell/trace-mapping" "^0.3.12" - "@types/istanbul-lib-coverage" "^2.0.1" - convert-source-map "^1.6.0" - -wait-on@7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/wait-on/-/wait-on-7.0.1.tgz#5cff9f8427e94f4deacbc2762e6b0a489b19eae9" - integrity sha512-9AnJE9qTjRQOlTZIldAaf/da2eW0eSRSgcqq85mXQja/DW3MriHxkpODDSUEg+Gri/rKEcXUZHe+cevvYItaog== - dependencies: - axios "^0.27.2" - joi "^17.7.0" - lodash "^4.17.21" - minimist "^1.2.7" - rxjs "^7.8.0" - -walker@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" - integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== - dependencies: - makeerror "1.0.12" - -web-streams-polyfill@4.0.0-beta.3: - version "4.0.0-beta.3" - resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz#2898486b74f5156095e473efe989dcf185047a38" - integrity sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug== - -web-streams-polyfill@^3.0.3: - version "3.2.1" - resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6" - integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q== - -webidl-conversions@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" - integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== - -whatwg-url@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" - integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== - dependencies: - tr46 "~0.0.3" - webidl-conversions "^3.0.0" - -which@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - dependencies: - isexe "^2.0.0" - -workerd@^1.20230512.0: - version "1.20230518.0" - resolved "https://registry.yarnpkg.com/workerd/-/workerd-1.20230518.0.tgz#4eac4c4b25d859f6f3c8bd826ed57aec12ab08dd" - integrity sha512-VNmK0zoNZXrwEEx77O/oQDVUzzyDjf5kKKK8bty+FmKCd5EQJCpqi8NlRKWLGMyyYrKm86MFz0kAsreTEs7HHA== - optionalDependencies: - "@cloudflare/workerd-darwin-64" "1.20230518.0" - "@cloudflare/workerd-darwin-arm64" "1.20230518.0" - "@cloudflare/workerd-linux-64" "1.20230518.0" - "@cloudflare/workerd-linux-arm64" "1.20230518.0" - "@cloudflare/workerd-windows-64" "1.20230518.0" - -wrangler@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/wrangler/-/wrangler-3.1.0.tgz#7de104a975d604573d584ee9da6fc1b2ccab6466" - integrity sha512-oqVBJZoOQqSKxhgaPt4LcmtBf0FssIz/4F1VgjWOomeGQ3kN9pg3swPO0Zkf0aAphDodG9rekjrtccvKW7bSsA== - dependencies: - "@cloudflare/kv-asset-handler" "^0.2.0" - "@esbuild-plugins/node-globals-polyfill" "^0.1.1" - "@esbuild-plugins/node-modules-polyfill" "^0.1.4" - blake3-wasm "^2.1.5" - chokidar "^3.5.3" - esbuild "0.16.3" - miniflare "^3.0.0" - nanoid "^3.3.3" - path-to-regexp "^6.2.0" - selfsigned "^2.0.1" - source-map "^0.7.4" - xxhash-wasm "^1.0.1" - optionalDependencies: - fsevents "~2.3.2" - -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrappy@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== - -write-file-atomic@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" - integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== - dependencies: - imurmurhash "^0.1.4" - signal-exit "^3.0.7" - -ws@^8.11.0: - version "8.13.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" - integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== - -xxhash-wasm@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/xxhash-wasm/-/xxhash-wasm-1.0.2.tgz#ecc0f813219b727af4d5f3958ca6becee2f2f1ff" - integrity sha512-ibF0Or+FivM9lNrg+HGJfVX8WJqgo+kCLDc4vx6xMeTce7Aj+DLttKbxxRR/gNLSAelRc1omAPlJ77N/Jem07A== - -y18n@^5.0.5: - version "5.0.8" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" - integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== - -yallist@^3.0.2: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" - integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== - -yallist@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== - -yargs-parser@^21.0.1, yargs-parser@^21.1.1: - version "21.1.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" - integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== - -yargs@^17.3.1: - version "17.7.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" - integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== - dependencies: - cliui "^8.0.1" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.3" - y18n "^5.0.5" - yargs-parser "^21.1.1" - -yocto-queue@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" - integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== - -youch@^3.2.2: - version "3.2.3" - resolved "https://registry.yarnpkg.com/youch/-/youch-3.2.3.tgz#63c94ea504950a1a5bf1d5969439addba6c726e2" - integrity sha512-ZBcWz/uzZaQVdCvfV4uk616Bbpf2ee+F/AvuKDR5EwX/Y4v06xWdtMluqTD7+KlZdM93lLm9gMZYo0sKBS0pgw== - dependencies: - cookie "^0.5.0" - mustache "^4.2.0" - stacktracey "^2.1.8" - -zod@^3.20.6: - version "3.21.4" - resolved "https://registry.yarnpkg.com/zod/-/zod-3.21.4.tgz#10882231d992519f0a10b5dd58a38c9dabbb64db" - integrity sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw== diff --git a/ecosystem-tests/deno/main_test.ts b/ecosystem-tests/deno/main_test.ts index 2c27efd58..0c80d8df0 100644 --- a/ecosystem-tests/deno/main_test.ts +++ b/ecosystem-tests/deno/main_test.ts @@ -1,5 +1,6 @@ -import { assertEquals } from 'https://deno.land/std@0.192.0/testing/asserts.ts'; +import { assertEquals, AssertionError } from 'https://deno.land/std@0.192.0/testing/asserts.ts'; import OpenAI, { toFile } from 'npm:openai@3.3.0'; +import { distance } from 'https://deno.land/x/fastest_levenshtein/mod.ts' const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; const filename = 'sample-1.mp3'; @@ -19,19 +20,35 @@ async function _typeTests() { await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); } +function assertSimilar(received: string, expected: string, maxDistance: number) { + const receivedDistance = distance(received, expected); + if (receivedDistance < maxDistance) { + return; + } + + const message = [ + `Received: ${JSON.stringify(received)}`, + `Expected: ${JSON.stringify(expected)}`, + `Max distance: ${maxDistance}`, + `Received distance: ${receivedDistance}`, + ].join('\n'); + + throw new AssertionError(message); +} + Deno.test(async function handlesFile() { const file = await fetch(url) .then((x) => x.arrayBuffer()) .then((x) => new File([x], filename)); const result = await client.audio.transcriptions.create({ file, model }); - assertEquals(result.text, correctAnswer); + assertSimilar(result.text, correctAnswer, 12); }); Deno.test(async function handlesResponse() { const file = await fetch(url); const result = await client.audio.transcriptions.create({ file, model }); - assertEquals(result.text, correctAnswer); + assertSimilar(result.text, correctAnswer, 12); }); const fineTune = `{"prompt": "", "completion": ""}`; diff --git a/ecosystem-tests/node-ts-cjs-dom/package-lock.json b/ecosystem-tests/node-ts-cjs-dom/package-lock.json index d2586cff0..b4c6ad148 100644 --- a/ecosystem-tests/node-ts-cjs-dom/package-lock.json +++ b/ecosystem-tests/node-ts-cjs-dom/package-lock.json @@ -15,6 +15,7 @@ "devDependencies": { "@types/node": "^17.0.9", "@types/node-fetch": "^2.6.1", + "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", "ts-jest": "^29.1.0", "typescript": "^4.9.3" @@ -1687,6 +1688,15 @@ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true, + "engines": { + "node": ">= 4.9.1" + } + }, "node_modules/fb-watchman": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", diff --git a/ecosystem-tests/node-ts-cjs-dom/package.json b/ecosystem-tests/node-ts-cjs-dom/package.json index 7971b196d..631c784a4 100644 --- a/ecosystem-tests/node-ts-cjs-dom/package.json +++ b/ecosystem-tests/node-ts-cjs-dom/package.json @@ -15,6 +15,7 @@ "devDependencies": { "@types/node": "^17.0.9", "@types/node-fetch": "^2.6.1", + "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", "ts-jest": "^29.1.0", "typescript": "^4.9.3" diff --git a/ecosystem-tests/node-ts-cjs-dom/tests/test.ts b/ecosystem-tests/node-ts-cjs-dom/tests/test.ts index 7ea134cdf..6e90d5416 100644 --- a/ecosystem-tests/node-ts-cjs-dom/tests/test.ts +++ b/ecosystem-tests/node-ts-cjs-dom/tests/test.ts @@ -3,6 +3,7 @@ import { TranscriptionCreateParams } from 'openai/resources/audio/transcriptions import fetch from 'node-fetch'; import { File as FormDataFile, Blob as FormDataBlob } from 'formdata-node'; import * as fs from 'fs'; +import { distance } from 'fastest-levenshtein' const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; const filename = 'sample-1.mp3'; @@ -22,6 +23,38 @@ async function typeTests() { await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); } +declare global { + namespace jest { + interface Matchers { + toBeSimilarTo(comparedTo: string, expectedDistance: number): R; + } + } +} +expect.extend({ + toBeSimilarTo(received, comparedTo: string, expectedDistance: number) { + const message = () => + [ + `Received: ${JSON.stringify(received)}`, + `Expected: ${JSON.stringify(comparedTo)}`, + `Expected distance: ${expectedDistance}`, + `Received distance: ${actualDistance}`, + ].join('\n'); + + const actualDistance = distance(received, comparedTo); + if (actualDistance < expectedDistance) { + return { + message, + pass: true, + }; + } + + return { + message, + pass: false, + }; + } +}); + it('handles formdata-node File', async function () { const file = await fetch(url) .then((x) => x.arrayBuffer()) @@ -40,7 +73,7 @@ if (typeof File !== 'undefined') { .then((x) => new File([x], filename)); const result = await client.audio.transcriptions.create({ file, model }); - expect(result.text).toEqual(correctAnswer); + expect(result.text).toBeSimilarTo(correctAnswer, 12); }); } @@ -48,7 +81,7 @@ it('handles Response', async function () { const file = await fetch(url); const result = await client.audio.transcriptions.create({ file, model }); - expect(result.text).toEqual(correctAnswer); + expect(result.text).toBeSimilarTo(correctAnswer, 12); }); it('handles fs.ReadStream', async function () { @@ -56,7 +89,7 @@ it('handles fs.ReadStream', async function () { file: fs.createReadStream('sample1.mp3'), model, }); - expect(result.text).toEqual(correctAnswer); + expect(result.text).toBeSimilarTo(correctAnswer, 12); }); const fineTune = `{"prompt": "", "completion": ""}`; diff --git a/ecosystem-tests/node-ts-cjs/main.ts b/ecosystem-tests/node-ts-cjs/main.ts deleted file mode 100644 index 824532b45..000000000 --- a/ecosystem-tests/node-ts-cjs/main.ts +++ /dev/null @@ -1,37 +0,0 @@ -import fetch from 'node-fetch'; -import OpenAI from 'openai'; - -// TODO: should not have to import from dist -import type { Uploadable } from 'openai/dist/cjs/uploads'; - -const openai = new OpenAI(); - -async function main() { - if (false as any) { - typeTests(); - } - - const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; - console.log(`Fetching ${url}`); - const rsp = await fetch(url); - - console.log('Sending request to OpenAI'); - console.log(await openai.audio.transcriptions.create({ file: rsp, model: 'whisper-1' })); -} - -async function typeTests() { - // @ts-expect-error this should error if the `Uploadable` type was resolved correctly - fileParam(null); - - // @ts-expect-error this should error if the `Uploadable` type was resolved correctly - await openai.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); -} - -function fileParam(_file: Uploadable) { - // -} - -main().catch((err) => { - console.error(err); - process.exit(1); -}); diff --git a/ecosystem-tests/node-ts-cjs/package-lock.json b/ecosystem-tests/node-ts-cjs/package-lock.json index d2586cff0..8525ad8ce 100644 --- a/ecosystem-tests/node-ts-cjs/package-lock.json +++ b/ecosystem-tests/node-ts-cjs/package-lock.json @@ -1,11 +1,11 @@ { - "name": "nod-ts-cjs", + "name": "node-ts-cjs", "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "nod-ts-cjs", + "name": "node-ts-cjs", "version": "0.0.1", "dependencies": { "formdata-node": "^4.4.1", @@ -13,8 +13,10 @@ "tsconfig-paths": "^3.12.0" }, "devDependencies": { - "@types/node": "^17.0.9", + "@types/node": "^20.4.2", "@types/node-fetch": "^2.6.1", + "@types/ws": "^8.5.4", + "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", "ts-jest": "^29.1.0", "typescript": "^4.9.3" @@ -1053,9 +1055,9 @@ "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" }, "node_modules/@types/node": { - "version": "17.0.45", - "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz", - "integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==", + "version": "20.4.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.4.2.tgz", + "integrity": "sha512-Dd0BYtWgnWJKwO1jkmTrzofjK2QXXcai0dmtzvIBhcA+RsG5h8R3xlyta0kGOZRNfL9GuRtb1knmPEhQrePCEw==", "dev": true }, "node_modules/@types/node-fetch": { @@ -1080,6 +1082,15 @@ "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", "dev": true }, + "node_modules/@types/ws": { + "version": "8.5.5", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", + "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, "node_modules/@types/yargs": { "version": "17.0.24", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", @@ -1687,6 +1698,15 @@ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true, + "engines": { + "node": ">= 4.9.1" + } + }, "node_modules/fb-watchman": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", diff --git a/ecosystem-tests/node-ts-cjs/package.json b/ecosystem-tests/node-ts-cjs/package.json index 7971b196d..26a00dbc6 100644 --- a/ecosystem-tests/node-ts-cjs/package.json +++ b/ecosystem-tests/node-ts-cjs/package.json @@ -1,5 +1,5 @@ { - "name": "nod-ts-cjs", + "name": "node-ts-cjs", "version": "0.0.1", "main": "index.js", "private": true, @@ -13,8 +13,10 @@ "tsconfig-paths": "^3.12.0" }, "devDependencies": { - "@types/node": "^17.0.9", + "@types/node": "^20.4.2", "@types/node-fetch": "^2.6.1", + "@types/ws": "^8.5.4", + "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", "ts-jest": "^29.1.0", "typescript": "^4.9.3" diff --git a/ecosystem-tests/node-ts-cjs/tests/test.ts b/ecosystem-tests/node-ts-cjs/tests/test.ts index 6b9d09050..52e7566ba 100644 --- a/ecosystem-tests/node-ts-cjs/tests/test.ts +++ b/ecosystem-tests/node-ts-cjs/tests/test.ts @@ -3,6 +3,7 @@ import { TranscriptionCreateParams } from 'openai/resources/audio/transcriptions import fetch from 'node-fetch'; import { File as FormDataFile, Blob as FormDataBlob } from 'formdata-node'; import * as fs from 'fs'; +import { distance } from 'fastest-levenshtein' const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; const filename = 'sample-1.mp3'; @@ -22,6 +23,38 @@ async function typeTests() { await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); } +declare global { + namespace jest { + interface Matchers { + toBeSimilarTo(comparedTo: string, expectedDistance: number): R; + } + } +} +expect.extend({ + toBeSimilarTo(received, comparedTo: string, expectedDistance: number) { + const message = () => + [ + `Received: ${JSON.stringify(received)}`, + `Expected: ${JSON.stringify(comparedTo)}`, + `Expected distance: ${expectedDistance}`, + `Received distance: ${actualDistance}`, + ].join('\n'); + + const actualDistance = distance(received, comparedTo); + if (actualDistance < expectedDistance) { + return { + message, + pass: true, + }; + } + + return { + message, + pass: false, + }; + } +}); + it('handles formdata-node File', async function () { const file = await fetch(url) .then((x) => x.arrayBuffer()) @@ -30,7 +63,7 @@ it('handles formdata-node File', async function () { const params: TranscriptionCreateParams = { file, model }; const result = await client.audio.transcriptions.create(params); - expect(result.text).toEqual(correctAnswer); + expect(result.text).toBeSimilarTo(correctAnswer, 12); }); // @ts-ignore avoid DOM lib for testing purposes @@ -42,7 +75,7 @@ if (typeof File !== 'undefined') { .then((x) => new File([x], filename)); const result = await client.audio.transcriptions.create({ file, model }); - expect(result.text).toEqual(correctAnswer); + expect(result.text).toBeSimilarTo(correctAnswer, 12); }); } @@ -50,7 +83,7 @@ it('handles Response', async function () { const file = await fetch(url); const result = await client.audio.transcriptions.create({ file, model }); - expect(result.text).toEqual(correctAnswer); + expect(result.text).toBeSimilarTo(correctAnswer, 12); }); it('handles fs.ReadStream', async function () { @@ -58,7 +91,7 @@ it('handles fs.ReadStream', async function () { file: fs.createReadStream('sample1.mp3'), model, }); - expect(result.text).toEqual(correctAnswer); + expect(result.text).toBeSimilarTo(correctAnswer, 12); }); const fineTune = `{"prompt": "", "completion": ""}`; diff --git a/ecosystem-tests/node-ts-cjs/yarn.lock b/ecosystem-tests/node-ts-cjs/yarn.lock deleted file mode 100644 index 5fbd2adbe..000000000 --- a/ecosystem-tests/node-ts-cjs/yarn.lock +++ /dev/null @@ -1,421 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@cspotcode/source-map-support@^0.8.0": - version "0.8.1" - resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" - integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== - dependencies: - "@jridgewell/trace-mapping" "0.3.9" - -"@jridgewell/resolve-uri@^3.0.3": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" - integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== - -"@jridgewell/sourcemap-codec@^1.4.10": - version "1.4.15" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" - integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== - -"@jridgewell/trace-mapping@0.3.9": - version "0.3.9" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" - integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== - dependencies: - "@jridgewell/resolve-uri" "^3.0.3" - "@jridgewell/sourcemap-codec" "^1.4.10" - -"@tsconfig/node10@^1.0.7": - version "1.0.9" - resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2" - integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== - -"@tsconfig/node12@^1.0.7": - version "1.0.11" - resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" - integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== - -"@tsconfig/node14@^1.0.0": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" - integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== - -"@tsconfig/node16@^1.0.2": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" - integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== - -"@types/json5@^0.0.29": - version "0.0.29" - resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" - integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== - -"@types/node-fetch@^2.6.4": - version "2.6.4" - resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.4.tgz#1bc3a26de814f6bf466b25aeb1473fa1afe6a660" - integrity sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg== - dependencies: - "@types/node" "*" - form-data "^3.0.0" - -"@types/node@*": - version "20.3.1" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.3.1.tgz#e8a83f1aa8b649377bb1fb5d7bac5cb90e784dfe" - integrity sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg== - -"@types/node@^17.0.9": - version "17.0.45" - resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190" - integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw== - -"@types/node@^18.11.18": - version "18.16.18" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.18.tgz#85da09bafb66d4bc14f7c899185336d0c1736390" - integrity sha512-/aNaQZD0+iSBAGnvvN2Cx92HqE5sZCPZtx2TsK+4nvV23fFe09jVDvpArXr2j9DnYlzuU9WuoykDDc6wqvpNcw== - -"@types/qs@^6.9.7": - version "6.9.7" - resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" - integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== - -abort-controller@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" - integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== - dependencies: - event-target-shim "^5.0.0" - -acorn-walk@^8.1.1: - version "8.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" - integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== - -acorn@^8.4.1: - version "8.9.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.9.0.tgz#78a16e3b2bcc198c10822786fa6679e245db5b59" - integrity sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ== - -agentkeepalive@^4.2.1: - version "4.3.0" - resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.3.0.tgz#bb999ff07412653c1803b3ced35e50729830a255" - integrity sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg== - dependencies: - debug "^4.1.0" - depd "^2.0.0" - humanize-ms "^1.2.1" - -arg@^4.1.0: - version "4.1.3" - resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" - integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== - -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== - -base-64@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb" - integrity sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA== - -call-bind@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" - integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== - dependencies: - function-bind "^1.1.1" - get-intrinsic "^1.0.2" - -charenc@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" - integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA== - -combined-stream@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== - dependencies: - delayed-stream "~1.0.0" - -create-require@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" - integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== - -crypt@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" - integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow== - -debug@^4.1.0: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" - -delayed-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== - -depd@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" - integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== - -diff@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" - integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== - -digest-fetch@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/digest-fetch/-/digest-fetch-1.3.0.tgz#898e69264d00012a23cf26e8a3e40320143fc661" - integrity sha512-CGJuv6iKNM7QyZlM2T3sPAdZWd/p9zQiRNS9G+9COUCwzWFTs0Xp8NF5iePx7wtvhDykReiRRrSeNb4oMmB8lA== - dependencies: - base-64 "^0.1.0" - md5 "^2.3.0" - -event-target-shim@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" - integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== - -form-data-encoder@1.7.2: - version "1.7.2" - resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-1.7.2.tgz#1f1ae3dccf58ed4690b86d87e4f57c654fbab040" - integrity sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A== - -form-data@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" - integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.8" - mime-types "^2.1.12" - -formdata-node@^4.3.2: - version "4.4.1" - resolved "https://registry.yarnpkg.com/formdata-node/-/formdata-node-4.4.1.tgz#23f6a5cb9cb55315912cbec4ff7b0f59bbd191e2" - integrity sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ== - dependencies: - node-domexception "1.0.0" - web-streams-polyfill "4.0.0-beta.3" - -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -get-intrinsic@^1.0.2: - version "1.2.1" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" - integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== - dependencies: - function-bind "^1.1.1" - has "^1.0.3" - has-proto "^1.0.1" - has-symbols "^1.0.3" - -has-proto@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" - integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== - -has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== - -has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -humanize-ms@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" - integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== - dependencies: - ms "^2.0.0" - -is-buffer@~1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== - -json5@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" - integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== - dependencies: - minimist "^1.2.0" - -make-error@^1.1.1: - version "1.3.6" - resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" - integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== - -md5@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" - integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g== - dependencies: - charenc "0.0.2" - crypt "0.0.2" - is-buffer "~1.1.6" - -mime-db@1.52.0: - version "1.52.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" - integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== - -mime-types@^2.1.12: - version "2.1.35" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" - integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== - dependencies: - mime-db "1.52.0" - -minimist@^1.2.0, minimist@^1.2.6: - version "1.2.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" - integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== - -ms@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -ms@^2.0.0: - version "2.1.3" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - -node-domexception@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" - integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== - -node-fetch@^2.6.7: - version "2.6.11" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.11.tgz#cde7fc71deef3131ef80a738919f999e6edfff25" - integrity sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w== - dependencies: - whatwg-url "^5.0.0" - -object-inspect@^1.9.0: - version "1.12.3" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" - integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== - -openai@../../.pack/openai.tgz: - version "4.0.0-beta.0" - resolved "../../.pack/openai.tgz#dd3471b96fa0d97a690c0c6f2b31097a034f012a" - dependencies: - "@types/node" "^18.11.18" - "@types/node-fetch" "^2.6.4" - "@types/qs" "^6.9.7" - abort-controller "^3.0.0" - agentkeepalive "^4.2.1" - digest-fetch "^1.3.0" - form-data-encoder "1.7.2" - formdata-node "^4.3.2" - node-fetch "^2.6.7" - qs "^6.10.3" - -qs@^6.10.3: - version "6.11.2" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" - integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== - dependencies: - side-channel "^1.0.4" - -side-channel@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" - integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== - dependencies: - call-bind "^1.0.0" - get-intrinsic "^1.0.2" - object-inspect "^1.9.0" - -strip-bom@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" - integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== - -tr46@~0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" - integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== - -ts-node@^10.4.0: - version "10.9.1" - resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" - integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== - dependencies: - "@cspotcode/source-map-support" "^0.8.0" - "@tsconfig/node10" "^1.0.7" - "@tsconfig/node12" "^1.0.7" - "@tsconfig/node14" "^1.0.0" - "@tsconfig/node16" "^1.0.2" - acorn "^8.4.1" - acorn-walk "^8.1.1" - arg "^4.1.0" - create-require "^1.1.0" - diff "^4.0.1" - make-error "^1.1.1" - v8-compile-cache-lib "^3.0.1" - yn "3.1.1" - -tsconfig-paths@^3.12.0: - version "3.14.2" - resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088" - integrity sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g== - dependencies: - "@types/json5" "^0.0.29" - json5 "^1.0.2" - minimist "^1.2.6" - strip-bom "^3.0.0" - -typescript@^4.9.3: - version "4.9.5" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" - integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== - -v8-compile-cache-lib@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" - integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== - -web-streams-polyfill@4.0.0-beta.3: - version "4.0.0-beta.3" - resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz#2898486b74f5156095e473efe989dcf185047a38" - integrity sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug== - -webidl-conversions@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" - integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== - -whatwg-url@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" - integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== - dependencies: - tr46 "~0.0.3" - webidl-conversions "^3.0.0" - -yn@3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" - integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== diff --git a/ecosystem-tests/node-ts-esm-dom/package-lock.json b/ecosystem-tests/node-ts-esm-dom/package-lock.json index afeba88e1..37204b81f 100644 --- a/ecosystem-tests/node-ts-esm-dom/package-lock.json +++ b/ecosystem-tests/node-ts-esm-dom/package-lock.json @@ -13,6 +13,7 @@ }, "devDependencies": { "@types/node": "^20.3.1", + "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", @@ -1740,6 +1741,15 @@ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true, + "engines": { + "node": ">= 4.9.1" + } + }, "node_modules/fb-watchman": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", diff --git a/ecosystem-tests/node-ts-esm-dom/package.json b/ecosystem-tests/node-ts-esm-dom/package.json index b19e5ee6f..4729a8216 100644 --- a/ecosystem-tests/node-ts-esm-dom/package.json +++ b/ecosystem-tests/node-ts-esm-dom/package.json @@ -14,6 +14,7 @@ }, "devDependencies": { "@types/node": "^20.3.1", + "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", diff --git a/ecosystem-tests/node-ts-esm-dom/tests/test.ts b/ecosystem-tests/node-ts-esm-dom/tests/test.ts index 7ea134cdf..5027c508f 100644 --- a/ecosystem-tests/node-ts-esm-dom/tests/test.ts +++ b/ecosystem-tests/node-ts-esm-dom/tests/test.ts @@ -3,6 +3,7 @@ import { TranscriptionCreateParams } from 'openai/resources/audio/transcriptions import fetch from 'node-fetch'; import { File as FormDataFile, Blob as FormDataBlob } from 'formdata-node'; import * as fs from 'fs'; +import { distance } from 'fastest-levenshtein' const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; const filename = 'sample-1.mp3'; @@ -22,6 +23,38 @@ async function typeTests() { await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); } +declare global { + namespace jest { + interface Matchers { + toBeSimilarTo(comparedTo: string, expectedDistance: number): R; + } + } +} +expect.extend({ + toBeSimilarTo(received, comparedTo: string, expectedDistance: number) { + const message = () => + [ + `Received: ${JSON.stringify(received)}`, + `Expected: ${JSON.stringify(comparedTo)}`, + `Expected distance: ${expectedDistance}`, + `Received distance: ${actualDistance}`, + ].join('\n'); + + const actualDistance = distance(received, comparedTo); + if (actualDistance < expectedDistance) { + return { + message, + pass: true, + }; + } + + return { + message, + pass: false, + }; + } +}); + it('handles formdata-node File', async function () { const file = await fetch(url) .then((x) => x.arrayBuffer()) @@ -30,7 +63,7 @@ it('handles formdata-node File', async function () { const params: TranscriptionCreateParams = { file, model }; const result = await client.audio.transcriptions.create(params); - expect(result.text).toEqual(correctAnswer); + expect(result.text).toBeSimilarTo(correctAnswer, 12); }); if (typeof File !== 'undefined') { @@ -40,7 +73,7 @@ if (typeof File !== 'undefined') { .then((x) => new File([x], filename)); const result = await client.audio.transcriptions.create({ file, model }); - expect(result.text).toEqual(correctAnswer); + expect(result.text).toBeSimilarTo(correctAnswer, 12); }); } @@ -48,7 +81,7 @@ it('handles Response', async function () { const file = await fetch(url); const result = await client.audio.transcriptions.create({ file, model }); - expect(result.text).toEqual(correctAnswer); + expect(result.text).toBeSimilarTo(correctAnswer, 12); }); it('handles fs.ReadStream', async function () { @@ -56,7 +89,7 @@ it('handles fs.ReadStream', async function () { file: fs.createReadStream('sample1.mp3'), model, }); - expect(result.text).toEqual(correctAnswer); + expect(result.text).toBeSimilarTo(correctAnswer, 12); }); const fineTune = `{"prompt": "", "completion": ""}`; diff --git a/ecosystem-tests/node-ts-esm/main.ts b/ecosystem-tests/node-ts-esm/main.ts deleted file mode 100644 index 6ffec2d37..000000000 --- a/ecosystem-tests/node-ts-esm/main.ts +++ /dev/null @@ -1,36 +0,0 @@ -import fetch from 'node-fetch'; -import OpenAI from 'openai'; - -import type { Uploadable } from 'openai/core'; - -const openai = new OpenAI(); - -async function main() { - if (false as any) { - typeTests(); - } - - const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; - console.log(`Fetching ${url}`); - const rsp = await fetch(url); - - console.log('Sending request to OpenAI'); - console.log(await openai.audio.transcriptions.create({ file: rsp, model: 'whisper-1' })); -} - -async function typeTests() { - // @ts-expect-error this should error if the `Uploadable` type was resolved correctly - fileParam(null); - - // @ts-expect-error this should error if the `Uploadable` type was resolved correctly - await openai.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); -} - -function fileParam(_file: Uploadable) { - // -} - -main().catch((err) => { - console.error(err); - process.exit(1); -}); diff --git a/ecosystem-tests/node-ts-esm/package-lock.json b/ecosystem-tests/node-ts-esm/package-lock.json index afeba88e1..37204b81f 100644 --- a/ecosystem-tests/node-ts-esm/package-lock.json +++ b/ecosystem-tests/node-ts-esm/package-lock.json @@ -13,6 +13,7 @@ }, "devDependencies": { "@types/node": "^20.3.1", + "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", @@ -1740,6 +1741,15 @@ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true, + "engines": { + "node": ">= 4.9.1" + } + }, "node_modules/fb-watchman": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", diff --git a/ecosystem-tests/node-ts-esm/package.json b/ecosystem-tests/node-ts-esm/package.json index b19e5ee6f..4729a8216 100644 --- a/ecosystem-tests/node-ts-esm/package.json +++ b/ecosystem-tests/node-ts-esm/package.json @@ -14,6 +14,7 @@ }, "devDependencies": { "@types/node": "^20.3.1", + "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", diff --git a/ecosystem-tests/node-ts-esm/tests/test.ts b/ecosystem-tests/node-ts-esm/tests/test.ts index 6b9d09050..52e7566ba 100644 --- a/ecosystem-tests/node-ts-esm/tests/test.ts +++ b/ecosystem-tests/node-ts-esm/tests/test.ts @@ -3,6 +3,7 @@ import { TranscriptionCreateParams } from 'openai/resources/audio/transcriptions import fetch from 'node-fetch'; import { File as FormDataFile, Blob as FormDataBlob } from 'formdata-node'; import * as fs from 'fs'; +import { distance } from 'fastest-levenshtein' const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; const filename = 'sample-1.mp3'; @@ -22,6 +23,38 @@ async function typeTests() { await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); } +declare global { + namespace jest { + interface Matchers { + toBeSimilarTo(comparedTo: string, expectedDistance: number): R; + } + } +} +expect.extend({ + toBeSimilarTo(received, comparedTo: string, expectedDistance: number) { + const message = () => + [ + `Received: ${JSON.stringify(received)}`, + `Expected: ${JSON.stringify(comparedTo)}`, + `Expected distance: ${expectedDistance}`, + `Received distance: ${actualDistance}`, + ].join('\n'); + + const actualDistance = distance(received, comparedTo); + if (actualDistance < expectedDistance) { + return { + message, + pass: true, + }; + } + + return { + message, + pass: false, + }; + } +}); + it('handles formdata-node File', async function () { const file = await fetch(url) .then((x) => x.arrayBuffer()) @@ -30,7 +63,7 @@ it('handles formdata-node File', async function () { const params: TranscriptionCreateParams = { file, model }; const result = await client.audio.transcriptions.create(params); - expect(result.text).toEqual(correctAnswer); + expect(result.text).toBeSimilarTo(correctAnswer, 12); }); // @ts-ignore avoid DOM lib for testing purposes @@ -42,7 +75,7 @@ if (typeof File !== 'undefined') { .then((x) => new File([x], filename)); const result = await client.audio.transcriptions.create({ file, model }); - expect(result.text).toEqual(correctAnswer); + expect(result.text).toBeSimilarTo(correctAnswer, 12); }); } @@ -50,7 +83,7 @@ it('handles Response', async function () { const file = await fetch(url); const result = await client.audio.transcriptions.create({ file, model }); - expect(result.text).toEqual(correctAnswer); + expect(result.text).toBeSimilarTo(correctAnswer, 12); }); it('handles fs.ReadStream', async function () { @@ -58,7 +91,7 @@ it('handles fs.ReadStream', async function () { file: fs.createReadStream('sample1.mp3'), model, }); - expect(result.text).toEqual(correctAnswer); + expect(result.text).toBeSimilarTo(correctAnswer, 12); }); const fineTune = `{"prompt": "", "completion": ""}`; diff --git a/ecosystem-tests/node-ts-esm/yarn.lock b/ecosystem-tests/node-ts-esm/yarn.lock deleted file mode 100644 index b1147c351..000000000 --- a/ecosystem-tests/node-ts-esm/yarn.lock +++ /dev/null @@ -1,156 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@cspotcode/source-map-support@^0.8.0": - version "0.8.1" - resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" - integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== - dependencies: - "@jridgewell/trace-mapping" "0.3.9" - -"@jridgewell/resolve-uri@^3.0.3": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" - integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== - -"@jridgewell/sourcemap-codec@^1.4.10": - version "1.4.15" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" - integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== - -"@jridgewell/trace-mapping@0.3.9": - version "0.3.9" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" - integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== - dependencies: - "@jridgewell/resolve-uri" "^3.0.3" - "@jridgewell/sourcemap-codec" "^1.4.10" - -"@tsconfig/node10@^1.0.7": - version "1.0.9" - resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2" - integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== - -"@tsconfig/node12@^1.0.7": - version "1.0.11" - resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" - integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== - -"@tsconfig/node14@^1.0.0": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" - integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== - -"@tsconfig/node16@^1.0.2": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" - integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== - -"@types/node@^20.3.1": - version "20.3.1" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.3.1.tgz#e8a83f1aa8b649377bb1fb5d7bac5cb90e784dfe" - integrity sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg== - -acorn-walk@^8.1.1: - version "8.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" - integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== - -acorn@^8.4.1: - version "8.9.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.9.0.tgz#78a16e3b2bcc198c10822786fa6679e245db5b59" - integrity sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ== - -arg@^4.1.0: - version "4.1.3" - resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" - integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== - -create-require@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" - integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== - -data-uri-to-buffer@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz#d8feb2b2881e6a4f58c2e08acfd0e2834e26222e" - integrity sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A== - -diff@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" - integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== - -fetch-blob@^3.1.2, fetch-blob@^3.1.4: - version "3.2.0" - resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" - integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== - dependencies: - node-domexception "^1.0.0" - web-streams-polyfill "^3.0.3" - -formdata-polyfill@^4.0.10: - version "4.0.10" - resolved "https://registry.yarnpkg.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" - integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== - dependencies: - fetch-blob "^3.1.2" - -make-error@^1.1.1: - version "1.3.6" - resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" - integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== - -node-domexception@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" - integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== - -node-fetch@^3.0.0: - version "3.3.1" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.3.1.tgz#b3eea7b54b3a48020e46f4f88b9c5a7430d20b2e" - integrity sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow== - dependencies: - data-uri-to-buffer "^4.0.0" - fetch-blob "^3.1.4" - formdata-polyfill "^4.0.10" - -ts-node@^10.9.1: - version "10.9.1" - resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" - integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== - dependencies: - "@cspotcode/source-map-support" "^0.8.0" - "@tsconfig/node10" "^1.0.7" - "@tsconfig/node12" "^1.0.7" - "@tsconfig/node14" "^1.0.0" - "@tsconfig/node16" "^1.0.2" - acorn "^8.4.1" - acorn-walk "^8.1.1" - arg "^4.1.0" - create-require "^1.1.0" - diff "^4.0.1" - make-error "^1.1.1" - v8-compile-cache-lib "^3.0.1" - yn "3.1.1" - -typescript@^5.1.3: - version "5.1.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.3.tgz#8d84219244a6b40b6fb2b33cc1c062f715b9e826" - integrity sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw== - -v8-compile-cache-lib@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" - integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== - -web-streams-polyfill@^3.0.3: - version "3.2.1" - resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6" - integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q== - -yn@3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" - integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== diff --git a/ecosystem-tests/ts-browser-webpack/yarn.lock b/ecosystem-tests/ts-browser-webpack/yarn.lock deleted file mode 100644 index 1fd11fa6a..000000000 --- a/ecosystem-tests/ts-browser-webpack/yarn.lock +++ /dev/null @@ -1,3503 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@discoveryjs/json-ext@^0.5.0": - version "0.5.7" - resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" - integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw== - -"@jridgewell/gen-mapping@^0.3.0": - version "0.3.3" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" - integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== - dependencies: - "@jridgewell/set-array" "^1.0.1" - "@jridgewell/sourcemap-codec" "^1.4.10" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/resolve-uri@3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" - integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== - -"@jridgewell/set-array@^1.0.1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" - integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== - -"@jridgewell/source-map@^0.3.3": - version "0.3.3" - resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.3.tgz#8108265659d4c33e72ffe14e33d6cc5eb59f2fda" - integrity sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg== - dependencies: - "@jridgewell/gen-mapping" "^0.3.0" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/sourcemap-codec@1.4.14": - version "1.4.14" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" - integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== - -"@jridgewell/sourcemap-codec@^1.4.10": - version "1.4.15" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" - integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== - -"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.18" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" - integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== - dependencies: - "@jridgewell/resolve-uri" "3.1.0" - "@jridgewell/sourcemap-codec" "1.4.14" - -"@leichtgewicht/ip-codec@^2.0.1": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz#b2ac626d6cb9c8718ab459166d4bb405b8ffa78b" - integrity sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A== - -"@types/body-parser@*": - version "1.19.2" - resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.2.tgz#aea2059e28b7658639081347ac4fab3de166e6f0" - integrity sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g== - dependencies: - "@types/connect" "*" - "@types/node" "*" - -"@types/bonjour@^3.5.9": - version "3.5.10" - resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.10.tgz#0f6aadfe00ea414edc86f5d106357cda9701e275" - integrity sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw== - dependencies: - "@types/node" "*" - -"@types/connect-history-api-fallback@^1.3.5": - version "1.5.0" - resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz#9fd20b3974bdc2bcd4ac6567e2e0f6885cb2cf41" - integrity sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig== - dependencies: - "@types/express-serve-static-core" "*" - "@types/node" "*" - -"@types/connect@*": - version "3.4.35" - resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" - integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== - dependencies: - "@types/node" "*" - -"@types/eslint-scope@^3.7.3": - version "3.7.4" - resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.4.tgz#37fc1223f0786c39627068a12e94d6e6fc61de16" - integrity sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA== - dependencies: - "@types/eslint" "*" - "@types/estree" "*" - -"@types/eslint@*": - version "8.40.2" - resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.40.2.tgz#2833bc112d809677864a4b0e7d1de4f04d7dac2d" - integrity sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ== - dependencies: - "@types/estree" "*" - "@types/json-schema" "*" - -"@types/estree@*", "@types/estree@^1.0.0": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.1.tgz#aa22750962f3bf0e79d753d3cc067f010c95f194" - integrity sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA== - -"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.33": - version "4.17.35" - resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz#c95dd4424f0d32e525d23812aa8ab8e4d3906c4f" - integrity sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg== - dependencies: - "@types/node" "*" - "@types/qs" "*" - "@types/range-parser" "*" - "@types/send" "*" - -"@types/express@*", "@types/express@^4.17.13": - version "4.17.17" - resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.17.tgz#01d5437f6ef9cfa8668e616e13c2f2ac9a491ae4" - integrity sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q== - dependencies: - "@types/body-parser" "*" - "@types/express-serve-static-core" "^4.17.33" - "@types/qs" "*" - "@types/serve-static" "*" - -"@types/html-minifier-terser@^6.0.0": - version "6.1.0" - resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#4fc33a00c1d0c16987b1a20cf92d20614c55ac35" - integrity sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg== - -"@types/http-proxy@^1.17.8": - version "1.17.11" - resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.11.tgz#0ca21949a5588d55ac2b659b69035c84bd5da293" - integrity sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA== - dependencies: - "@types/node" "*" - -"@types/json-schema@*", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": - version "7.0.12" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb" - integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA== - -"@types/mime@*": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.1.tgz#5f8f2bca0a5863cb69bc0b0acd88c96cb1d4ae10" - integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA== - -"@types/mime@^1": - version "1.3.2" - resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a" - integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw== - -"@types/node-fetch@^2.6.4": - version "2.6.4" - resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.4.tgz#1bc3a26de814f6bf466b25aeb1473fa1afe6a660" - integrity sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg== - dependencies: - "@types/node" "*" - form-data "^3.0.0" - -"@types/node@*": - version "20.3.1" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.3.1.tgz#e8a83f1aa8b649377bb1fb5d7bac5cb90e784dfe" - integrity sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg== - -"@types/node@^18.11.18": - version "18.16.18" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.18.tgz#85da09bafb66d4bc14f7c899185336d0c1736390" - integrity sha512-/aNaQZD0+iSBAGnvvN2Cx92HqE5sZCPZtx2TsK+4nvV23fFe09jVDvpArXr2j9DnYlzuU9WuoykDDc6wqvpNcw== - -"@types/qs@*", "@types/qs@^6.9.7": - version "6.9.7" - resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" - integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== - -"@types/range-parser@*": - version "1.2.4" - resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc" - integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw== - -"@types/retry@0.12.0": - version "0.12.0" - resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.0.tgz#2b35eccfcee7d38cd72ad99232fbd58bffb3c84d" - integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA== - -"@types/send@*": - version "0.17.1" - resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.1.tgz#ed4932b8a2a805f1fe362a70f4e62d0ac994e301" - integrity sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q== - dependencies: - "@types/mime" "^1" - "@types/node" "*" - -"@types/serve-index@^1.9.1": - version "1.9.1" - resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.1.tgz#1b5e85370a192c01ec6cec4735cf2917337a6278" - integrity sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg== - dependencies: - "@types/express" "*" - -"@types/serve-static@*", "@types/serve-static@^1.13.10": - version "1.15.1" - resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.1.tgz#86b1753f0be4f9a1bee68d459fcda5be4ea52b5d" - integrity sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ== - dependencies: - "@types/mime" "*" - "@types/node" "*" - -"@types/sockjs@^0.3.33": - version "0.3.33" - resolved "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.33.tgz#570d3a0b99ac995360e3136fd6045113b1bd236f" - integrity sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw== - dependencies: - "@types/node" "*" - -"@types/ws@^8.5.5": - version "8.5.5" - resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.5.tgz#af587964aa06682702ee6dcbc7be41a80e4b28eb" - integrity sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg== - dependencies: - "@types/node" "*" - -"@webassemblyjs/ast@1.11.6", "@webassemblyjs/ast@^1.11.5": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.6.tgz#db046555d3c413f8966ca50a95176a0e2c642e24" - integrity sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q== - dependencies: - "@webassemblyjs/helper-numbers" "1.11.6" - "@webassemblyjs/helper-wasm-bytecode" "1.11.6" - -"@webassemblyjs/floating-point-hex-parser@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz#dacbcb95aff135c8260f77fa3b4c5fea600a6431" - integrity sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw== - -"@webassemblyjs/helper-api-error@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz#6132f68c4acd59dcd141c44b18cbebbd9f2fa768" - integrity sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q== - -"@webassemblyjs/helper-buffer@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz#b66d73c43e296fd5e88006f18524feb0f2c7c093" - integrity sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA== - -"@webassemblyjs/helper-numbers@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz#cbce5e7e0c1bd32cf4905ae444ef64cea919f1b5" - integrity sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g== - dependencies: - "@webassemblyjs/floating-point-hex-parser" "1.11.6" - "@webassemblyjs/helper-api-error" "1.11.6" - "@xtuc/long" "4.2.2" - -"@webassemblyjs/helper-wasm-bytecode@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz#bb2ebdb3b83aa26d9baad4c46d4315283acd51e9" - integrity sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA== - -"@webassemblyjs/helper-wasm-section@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz#ff97f3863c55ee7f580fd5c41a381e9def4aa577" - integrity sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g== - dependencies: - "@webassemblyjs/ast" "1.11.6" - "@webassemblyjs/helper-buffer" "1.11.6" - "@webassemblyjs/helper-wasm-bytecode" "1.11.6" - "@webassemblyjs/wasm-gen" "1.11.6" - -"@webassemblyjs/ieee754@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz#bb665c91d0b14fffceb0e38298c329af043c6e3a" - integrity sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg== - dependencies: - "@xtuc/ieee754" "^1.2.0" - -"@webassemblyjs/leb128@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.6.tgz#70e60e5e82f9ac81118bc25381a0b283893240d7" - integrity sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ== - dependencies: - "@xtuc/long" "4.2.2" - -"@webassemblyjs/utf8@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.6.tgz#90f8bc34c561595fe156603be7253cdbcd0fab5a" - integrity sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA== - -"@webassemblyjs/wasm-edit@^1.11.5": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz#c72fa8220524c9b416249f3d94c2958dfe70ceab" - integrity sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw== - dependencies: - "@webassemblyjs/ast" "1.11.6" - "@webassemblyjs/helper-buffer" "1.11.6" - "@webassemblyjs/helper-wasm-bytecode" "1.11.6" - "@webassemblyjs/helper-wasm-section" "1.11.6" - "@webassemblyjs/wasm-gen" "1.11.6" - "@webassemblyjs/wasm-opt" "1.11.6" - "@webassemblyjs/wasm-parser" "1.11.6" - "@webassemblyjs/wast-printer" "1.11.6" - -"@webassemblyjs/wasm-gen@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz#fb5283e0e8b4551cc4e9c3c0d7184a65faf7c268" - integrity sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA== - dependencies: - "@webassemblyjs/ast" "1.11.6" - "@webassemblyjs/helper-wasm-bytecode" "1.11.6" - "@webassemblyjs/ieee754" "1.11.6" - "@webassemblyjs/leb128" "1.11.6" - "@webassemblyjs/utf8" "1.11.6" - -"@webassemblyjs/wasm-opt@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz#d9a22d651248422ca498b09aa3232a81041487c2" - integrity sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g== - dependencies: - "@webassemblyjs/ast" "1.11.6" - "@webassemblyjs/helper-buffer" "1.11.6" - "@webassemblyjs/wasm-gen" "1.11.6" - "@webassemblyjs/wasm-parser" "1.11.6" - -"@webassemblyjs/wasm-parser@1.11.6", "@webassemblyjs/wasm-parser@^1.11.5": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz#bb85378c527df824004812bbdb784eea539174a1" - integrity sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ== - dependencies: - "@webassemblyjs/ast" "1.11.6" - "@webassemblyjs/helper-api-error" "1.11.6" - "@webassemblyjs/helper-wasm-bytecode" "1.11.6" - "@webassemblyjs/ieee754" "1.11.6" - "@webassemblyjs/leb128" "1.11.6" - "@webassemblyjs/utf8" "1.11.6" - -"@webassemblyjs/wast-printer@1.11.6": - version "1.11.6" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz#a7bf8dd7e362aeb1668ff43f35cb849f188eff20" - integrity sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A== - dependencies: - "@webassemblyjs/ast" "1.11.6" - "@xtuc/long" "4.2.2" - -"@webpack-cli/configtest@^2.1.1": - version "2.1.1" - resolved "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-2.1.1.tgz#3b2f852e91dac6e3b85fb2a314fb8bef46d94646" - integrity sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw== - -"@webpack-cli/info@^2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@webpack-cli/info/-/info-2.0.2.tgz#cc3fbf22efeb88ff62310cf885c5b09f44ae0fdd" - integrity sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A== - -"@webpack-cli/serve@^2.0.5": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-2.0.5.tgz#325db42395cd49fe6c14057f9a900e427df8810e" - integrity sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ== - -"@xtuc/ieee754@^1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" - integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== - -"@xtuc/long@4.2.2": - version "4.2.2" - resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" - integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== - -abort-controller@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" - integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== - dependencies: - event-target-shim "^5.0.0" - -accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8: - version "1.3.8" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" - integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== - dependencies: - mime-types "~2.1.34" - negotiator "0.6.3" - -acorn-import-assertions@^1.9.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz#507276249d684797c84e0734ef84860334cfb1ac" - integrity sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA== - -acorn@^8.7.1, acorn@^8.8.2: - version "8.9.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.9.0.tgz#78a16e3b2bcc198c10822786fa6679e245db5b59" - integrity sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ== - -agentkeepalive@^4.2.1: - version "4.3.0" - resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.3.0.tgz#bb999ff07412653c1803b3ced35e50729830a255" - integrity sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg== - dependencies: - debug "^4.1.0" - depd "^2.0.0" - humanize-ms "^1.2.1" - -ajv-formats@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520" - integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== - dependencies: - ajv "^8.0.0" - -ajv-keywords@^3.5.2: - version "3.5.2" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" - integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== - -ajv-keywords@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16" - integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== - dependencies: - fast-deep-equal "^3.1.3" - -ajv@^6.12.3, ajv@^6.12.5: - version "6.12.6" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" - integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== - dependencies: - fast-deep-equal "^3.1.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ajv@^8.0.0, ajv@^8.9.0: - version "8.12.0" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1" - integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA== - dependencies: - fast-deep-equal "^3.1.1" - json-schema-traverse "^1.0.0" - require-from-string "^2.0.2" - uri-js "^4.2.2" - -ansi-html-community@^0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41" - integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw== - -ansi-regex@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - integrity sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA== - -ansi-regex@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" - integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== - -ansi-styles@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" - integrity sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA== - -ansi-styles@^4.1.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" - integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== - dependencies: - color-convert "^2.0.1" - -anymatch@~3.1.2: - version "3.1.3" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" - integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - -array-flatten@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" - integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== - -array-flatten@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099" - integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ== - -asn1@~0.2.3: - version "0.2.6" - resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d" - integrity sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ== - dependencies: - safer-buffer "~2.1.0" - -assert-plus@1.0.0, assert-plus@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" - integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== - -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== - -aws-sign2@~0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" - integrity sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA== - -aws4@^1.8.0: - version "1.12.0" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.12.0.tgz#ce1c9d143389679e253b314241ea9aa5cec980d3" - integrity sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg== - -babel-code-frame@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" - integrity sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g== - dependencies: - chalk "^1.1.3" - esutils "^2.0.2" - js-tokens "^3.0.2" - -babel-core@^6.26.0, babel-core@^6.26.3: - version "6.26.3" - resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" - integrity sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA== - dependencies: - babel-code-frame "^6.26.0" - babel-generator "^6.26.0" - babel-helpers "^6.24.1" - babel-messages "^6.23.0" - babel-register "^6.26.0" - babel-runtime "^6.26.0" - babel-template "^6.26.0" - babel-traverse "^6.26.0" - babel-types "^6.26.0" - babylon "^6.18.0" - convert-source-map "^1.5.1" - debug "^2.6.9" - json5 "^0.5.1" - lodash "^4.17.4" - minimatch "^3.0.4" - path-is-absolute "^1.0.1" - private "^0.1.8" - slash "^1.0.0" - source-map "^0.5.7" - -babel-generator@^6.26.0: - version "6.26.1" - resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" - integrity sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA== - dependencies: - babel-messages "^6.23.0" - babel-runtime "^6.26.0" - babel-types "^6.26.0" - detect-indent "^4.0.0" - jsesc "^1.3.0" - lodash "^4.17.4" - source-map "^0.5.7" - trim-right "^1.0.1" - -babel-helper-call-delegate@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" - integrity sha512-RL8n2NiEj+kKztlrVJM9JT1cXzzAdvWFh76xh/H1I4nKwunzE4INBXn8ieCZ+wh4zWszZk7NBS1s/8HR5jDkzQ== - dependencies: - babel-helper-hoist-variables "^6.24.1" - babel-runtime "^6.22.0" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-helper-define-map@^6.24.1: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" - integrity sha512-bHkmjcC9lM1kmZcVpA5t2om2nzT/xiZpo6TJq7UlZ3wqKfzia4veeXbIhKvJXAMzhhEBd3cR1IElL5AenWEUpA== - dependencies: - babel-helper-function-name "^6.24.1" - babel-runtime "^6.26.0" - babel-types "^6.26.0" - lodash "^4.17.4" - -babel-helper-function-name@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" - integrity sha512-Oo6+e2iX+o9eVvJ9Y5eKL5iryeRdsIkwRYheCuhYdVHsdEQysbc2z2QkqCLIYnNxkT5Ss3ggrHdXiDI7Dhrn4Q== - dependencies: - babel-helper-get-function-arity "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-helper-get-function-arity@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" - integrity sha512-WfgKFX6swFB1jS2vo+DwivRN4NB8XUdM3ij0Y1gnC21y1tdBoe6xjVnd7NSI6alv+gZXCtJqvrTeMW3fR/c0ng== - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-helper-hoist-variables@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" - integrity sha512-zAYl3tqerLItvG5cKYw7f1SpvIxS9zi7ohyGHaI9cgDUjAT6YcY9jIEH5CstetP5wHIVSceXwNS7Z5BpJg+rOw== - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-helper-optimise-call-expression@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" - integrity sha512-Op9IhEaxhbRT8MDXx2iNuMgciu2V8lDvYCNQbDGjdBNCjaMvyLf4wl4A3b8IgndCyQF8TwfgsQ8T3VD8aX1/pA== - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-helper-regex@^6.24.1: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" - integrity sha512-VlPiWmqmGJp0x0oK27Out1D+71nVVCTSdlbhIVoaBAj2lUgrNjBCRR9+llO4lTSb2O4r7PJg+RobRkhBrf6ofg== - dependencies: - babel-runtime "^6.26.0" - babel-types "^6.26.0" - lodash "^4.17.4" - -babel-helper-replace-supers@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" - integrity sha512-sLI+u7sXJh6+ToqDr57Bv973kCepItDhMou0xCP2YPVmR1jkHSCY+p1no8xErbV1Siz5QE8qKT1WIwybSWlqjw== - dependencies: - babel-helper-optimise-call-expression "^6.24.1" - babel-messages "^6.23.0" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-helpers@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" - integrity sha512-n7pFrqQm44TCYvrCDb0MqabAF+JUBq+ijBvNMUxpkLjJaAu32faIexewMumrH5KLLJ1HDyT0PTEqRyAe/GwwuQ== - dependencies: - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-loader@^9.1.2: - version "9.1.2" - resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.2.tgz#a16a080de52d08854ee14570469905a5fc00d39c" - integrity sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA== - dependencies: - find-cache-dir "^3.3.2" - schema-utils "^4.0.0" - -babel-messages@^6.23.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" - integrity sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w== - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-check-es2015-constants@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" - integrity sha512-B1M5KBP29248dViEo1owyY32lk1ZSH2DaNNrXLGt8lyjjHm7pBqAdQ7VKUPR6EEDO323+OvT3MQXbCin8ooWdA== - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-arrow-functions@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" - integrity sha512-PCqwwzODXW7JMrzu+yZIaYbPQSKjDTAsNNlK2l5Gg9g4rz2VzLnZsStvp/3c46GfXpwkyufb3NCyG9+50FF1Vg== - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" - integrity sha512-2+ujAT2UMBzYFm7tidUsYh+ZoIutxJ3pN9IYrF1/H6dCKtECfhmB8UkHVpyxDwkj0CYbQG35ykoz925TUnBc3A== - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-block-scoping@^6.24.1: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" - integrity sha512-YiN6sFAQ5lML8JjCmr7uerS5Yc/EMbgg9G8ZNmk2E3nYX4ckHR01wrkeeMijEf5WHNK5TW0Sl0Uu3pv3EdOJWw== - dependencies: - babel-runtime "^6.26.0" - babel-template "^6.26.0" - babel-traverse "^6.26.0" - babel-types "^6.26.0" - lodash "^4.17.4" - -babel-plugin-transform-es2015-classes@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" - integrity sha512-5Dy7ZbRinGrNtmWpquZKZ3EGY8sDgIVB4CU8Om8q8tnMLrD/m94cKglVcHps0BCTdZ0TJeeAWOq2TK9MIY6cag== - dependencies: - babel-helper-define-map "^6.24.1" - babel-helper-function-name "^6.24.1" - babel-helper-optimise-call-expression "^6.24.1" - babel-helper-replace-supers "^6.24.1" - babel-messages "^6.23.0" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-computed-properties@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" - integrity sha512-C/uAv4ktFP/Hmh01gMTvYvICrKze0XVX9f2PdIXuriCSvUmV9j+u+BB9f5fJK3+878yMK6dkdcq+Ymr9mrcLzw== - dependencies: - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-plugin-transform-es2015-destructuring@^6.22.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" - integrity sha512-aNv/GDAW0j/f4Uy1OEPZn1mqD+Nfy9viFGBfQ5bZyT35YqOiqx7/tXdyfZkJ1sC21NyEsBdfDY6PYmLHF4r5iA== - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-duplicate-keys@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" - integrity sha512-ossocTuPOssfxO2h+Z3/Ea1Vo1wWx31Uqy9vIiJusOP4TbF7tPs9U0sJ9pX9OJPf4lXRGj5+6Gkl/HHKiAP5ug== - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-for-of@^6.22.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" - integrity sha512-DLuRwoygCoXx+YfxHLkVx5/NpeSbVwfoTeBykpJK7JhYWlL/O8hgAK/reforUnZDlxasOrVPPJVI/guE3dCwkw== - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-function-name@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" - integrity sha512-iFp5KIcorf11iBqu/y/a7DK3MN5di3pNCzto61FqCNnUX4qeBwcV1SLqe10oXNnCaxBUImX3SckX2/o1nsrTcg== - dependencies: - babel-helper-function-name "^6.24.1" - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-literals@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" - integrity sha512-tjFl0cwMPpDYyoqYA9li1/7mGFit39XiNX5DKC/uCNjBctMxyL1/PT/l4rSlbvBG1pOKI88STRdUsWXB3/Q9hQ== - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-modules-amd@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" - integrity sha512-LnIIdGWIKdw7zwckqx+eGjcS8/cl8D74A3BpJbGjKTFFNJSMrjN4bIh22HY1AlkUbeLG6X6OZj56BDvWD+OeFA== - dependencies: - babel-plugin-transform-es2015-modules-commonjs "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-plugin-transform-es2015-modules-commonjs@^6.24.1: - version "6.26.2" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" - integrity sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q== - dependencies: - babel-plugin-transform-strict-mode "^6.24.1" - babel-runtime "^6.26.0" - babel-template "^6.26.0" - babel-types "^6.26.0" - -babel-plugin-transform-es2015-modules-systemjs@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" - integrity sha512-ONFIPsq8y4bls5PPsAWYXH/21Hqv64TBxdje0FvU3MhIV6QM2j5YS7KvAzg/nTIVLot2D2fmFQrFWCbgHlFEjg== - dependencies: - babel-helper-hoist-variables "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-plugin-transform-es2015-modules-umd@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" - integrity sha512-LpVbiT9CLsuAIp3IG0tfbVo81QIhn6pE8xBJ7XSeCtFlMltuar5VuBV6y6Q45tpui9QWcy5i0vLQfCfrnF7Kiw== - dependencies: - babel-plugin-transform-es2015-modules-amd "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-plugin-transform-es2015-object-super@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" - integrity sha512-8G5hpZMecb53vpD3mjs64NhI1au24TAmokQ4B+TBFBjN9cVoGoOvotdrMMRmHvVZUEvqGUPWL514woru1ChZMA== - dependencies: - babel-helper-replace-supers "^6.24.1" - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-parameters@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" - integrity sha512-8HxlW+BB5HqniD+nLkQ4xSAVq3bR/pcYW9IigY+2y0dI+Y7INFeTbfAQr+63T3E4UDsZGjyb+l9txUnABWxlOQ== - dependencies: - babel-helper-call-delegate "^6.24.1" - babel-helper-get-function-arity "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-shorthand-properties@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" - integrity sha512-mDdocSfUVm1/7Jw/FIRNw9vPrBQNePy6wZJlR8HAUBLybNp1w/6lr6zZ2pjMShee65t/ybR5pT8ulkLzD1xwiw== - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-spread@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" - integrity sha512-3Ghhi26r4l3d0Js933E5+IhHwk0A1yiutj9gwvzmFbVV0sPMYk2lekhOufHBswX7NCoSeF4Xrl3sCIuSIa+zOg== - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-sticky-regex@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" - integrity sha512-CYP359ADryTo3pCsH0oxRo/0yn6UsEZLqYohHmvLQdfS9xkf+MbCzE3/Kolw9OYIY4ZMilH25z/5CbQbwDD+lQ== - dependencies: - babel-helper-regex "^6.24.1" - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-template-literals@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" - integrity sha512-x8b9W0ngnKzDMHimVtTfn5ryimars1ByTqsfBDwAqLibmuuQY6pgBQi5z1ErIsUOWBdw1bW9FSz5RZUojM4apg== - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-typeof-symbol@^6.22.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" - integrity sha512-fz6J2Sf4gYN6gWgRZaoFXmq93X+Li/8vf+fb0sGDVtdeWvxC9y5/bTD7bvfWMEq6zetGEHpWjtzRGSugt5kNqw== - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-unicode-regex@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" - integrity sha512-v61Dbbihf5XxnYjtBN04B/JBvsScY37R1cZT5r9permN1cp+b70DY3Ib3fIkgn1DI9U3tGgBJZVD8p/mE/4JbQ== - dependencies: - babel-helper-regex "^6.24.1" - babel-runtime "^6.22.0" - regexpu-core "^2.0.0" - -babel-plugin-transform-regenerator@^6.24.1: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" - integrity sha512-LS+dBkUGlNR15/5WHKe/8Neawx663qttS6AGqoOUhICc9d1KciBvtrQSuc0PI+CxQ2Q/S1aKuJ+u64GtLdcEZg== - dependencies: - regenerator-transform "^0.10.0" - -babel-plugin-transform-strict-mode@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" - integrity sha512-j3KtSpjyLSJxNoCDrhwiJad8kw0gJ9REGj8/CqL0HeRyLnvUNYV9zcqluL6QJSXh3nfsLEmSLvwRfGzrgR96Pw== - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-preset-es2015@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" - integrity sha512-XfwUqG1Ry6R43m4Wfob+vHbIVBIqTg/TJY4Snku1iIzeH7mUnwHA8Vagmv+ZQbPwhS8HgsdQvy28Py3k5zpoFQ== - dependencies: - babel-plugin-check-es2015-constants "^6.22.0" - babel-plugin-transform-es2015-arrow-functions "^6.22.0" - babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" - babel-plugin-transform-es2015-block-scoping "^6.24.1" - babel-plugin-transform-es2015-classes "^6.24.1" - babel-plugin-transform-es2015-computed-properties "^6.24.1" - babel-plugin-transform-es2015-destructuring "^6.22.0" - babel-plugin-transform-es2015-duplicate-keys "^6.24.1" - babel-plugin-transform-es2015-for-of "^6.22.0" - babel-plugin-transform-es2015-function-name "^6.24.1" - babel-plugin-transform-es2015-literals "^6.22.0" - babel-plugin-transform-es2015-modules-amd "^6.24.1" - babel-plugin-transform-es2015-modules-commonjs "^6.24.1" - babel-plugin-transform-es2015-modules-systemjs "^6.24.1" - babel-plugin-transform-es2015-modules-umd "^6.24.1" - babel-plugin-transform-es2015-object-super "^6.24.1" - babel-plugin-transform-es2015-parameters "^6.24.1" - babel-plugin-transform-es2015-shorthand-properties "^6.24.1" - babel-plugin-transform-es2015-spread "^6.22.0" - babel-plugin-transform-es2015-sticky-regex "^6.24.1" - babel-plugin-transform-es2015-template-literals "^6.22.0" - babel-plugin-transform-es2015-typeof-symbol "^6.22.0" - babel-plugin-transform-es2015-unicode-regex "^6.24.1" - babel-plugin-transform-regenerator "^6.24.1" - -babel-register@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" - integrity sha512-veliHlHX06wjaeY8xNITbveXSiI+ASFnOqvne/LaIJIqOWi2Ogmj91KOugEz/hoh/fwMhXNBJPCv8Xaz5CyM4A== - dependencies: - babel-core "^6.26.0" - babel-runtime "^6.26.0" - core-js "^2.5.0" - home-or-tmp "^2.0.0" - lodash "^4.17.4" - mkdirp "^0.5.1" - source-map-support "^0.4.15" - -babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" - integrity sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g== - dependencies: - core-js "^2.4.0" - regenerator-runtime "^0.11.0" - -babel-template@^6.24.1, babel-template@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" - integrity sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg== - dependencies: - babel-runtime "^6.26.0" - babel-traverse "^6.26.0" - babel-types "^6.26.0" - babylon "^6.18.0" - lodash "^4.17.4" - -babel-traverse@^6.24.1, babel-traverse@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" - integrity sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA== - dependencies: - babel-code-frame "^6.26.0" - babel-messages "^6.23.0" - babel-runtime "^6.26.0" - babel-types "^6.26.0" - babylon "^6.18.0" - debug "^2.6.8" - globals "^9.18.0" - invariant "^2.2.2" - lodash "^4.17.4" - -babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" - integrity sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g== - dependencies: - babel-runtime "^6.26.0" - esutils "^2.0.2" - lodash "^4.17.4" - to-fast-properties "^1.0.3" - -babylon@^6.18.0: - version "6.18.0" - resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" - integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== - -balanced-match@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== - -base-64@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb" - integrity sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA== - -batch@0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" - integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw== - -bcrypt-pbkdf@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" - integrity sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w== - dependencies: - tweetnacl "^0.14.3" - -binary-extensions@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" - integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== - -body-parser@1.20.1: - version "1.20.1" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" - integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== - dependencies: - bytes "3.1.2" - content-type "~1.0.4" - debug "2.6.9" - depd "2.0.0" - destroy "1.2.0" - http-errors "2.0.0" - iconv-lite "0.4.24" - on-finished "2.4.1" - qs "6.11.0" - raw-body "2.5.1" - type-is "~1.6.18" - unpipe "1.0.0" - -bonjour-service@^1.0.11: - version "1.1.1" - resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.1.1.tgz#960948fa0e0153f5d26743ab15baf8e33752c135" - integrity sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg== - dependencies: - array-flatten "^2.1.2" - dns-equal "^1.0.0" - fast-deep-equal "^3.1.3" - multicast-dns "^7.2.5" - -boolbase@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" - integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -braces@^3.0.2, braces@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - dependencies: - fill-range "^7.0.1" - -browserslist@^4.14.5: - version "4.21.9" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.9.tgz#e11bdd3c313d7e2a9e87e8b4b0c7872b13897635" - integrity sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg== - dependencies: - caniuse-lite "^1.0.30001503" - electron-to-chromium "^1.4.431" - node-releases "^2.0.12" - update-browserslist-db "^1.0.11" - -buffer-from@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" - integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== - -bytes@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" - integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== - -bytes@3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" - integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== - -call-bind@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" - integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== - dependencies: - function-bind "^1.1.1" - get-intrinsic "^1.0.2" - -camel-case@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" - integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== - dependencies: - pascal-case "^3.1.2" - tslib "^2.0.3" - -caniuse-lite@^1.0.30001503: - version "1.0.30001506" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001506.tgz#35bd814b310a487970c585430e9e80ee23faf14b" - integrity sha512-6XNEcpygZMCKaufIcgpQNZNf00GEqc7VQON+9Rd0K1bMYo8xhMZRAo5zpbnbMNizi4YNgIDAFrdykWsvY3H4Hw== - -caseless@~0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" - integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== - -chalk@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" - integrity sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A== - dependencies: - ansi-styles "^2.2.1" - escape-string-regexp "^1.0.2" - has-ansi "^2.0.0" - strip-ansi "^3.0.0" - supports-color "^2.0.0" - -chalk@^4.1.0: - version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -charenc@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" - integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA== - -chokidar@^3.5.3: - version "3.5.3" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" - integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== - dependencies: - anymatch "~3.1.2" - braces "~3.0.2" - glob-parent "~5.1.2" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.6.0" - optionalDependencies: - fsevents "~2.3.2" - -chrome-trace-event@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" - integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== - -clean-css@^5.2.2: - version "5.3.2" - resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.2.tgz#70ecc7d4d4114921f5d298349ff86a31a9975224" - integrity sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww== - dependencies: - source-map "~0.6.0" - -clone-deep@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" - integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== - dependencies: - is-plain-object "^2.0.4" - kind-of "^6.0.2" - shallow-clone "^3.0.0" - -color-convert@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== - dependencies: - color-name "~1.1.4" - -color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - -colorette@^2.0.10, colorette@^2.0.14: - version "2.0.20" - resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" - integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== - -combined-stream@^1.0.6, combined-stream@^1.0.8, combined-stream@~1.0.6: - version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== - dependencies: - delayed-stream "~1.0.0" - -commander@^10.0.1: - version "10.0.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06" - integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug== - -commander@^2.20.0: - version "2.20.3" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" - integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== - -commander@^8.3.0: - version "8.3.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" - integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== - -commondir@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" - integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== - -compressible@~2.0.16: - version "2.0.18" - resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" - integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== - dependencies: - mime-db ">= 1.43.0 < 2" - -compression@^1.7.4: - version "1.7.4" - resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" - integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== - dependencies: - accepts "~1.3.5" - bytes "3.0.0" - compressible "~2.0.16" - debug "2.6.9" - on-headers "~1.0.2" - safe-buffer "5.1.2" - vary "~1.1.2" - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== - -connect-history-api-fallback@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz#647264845251a0daf25b97ce87834cace0f5f1c8" - integrity sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA== - -content-disposition@0.5.4: - version "0.5.4" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" - integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== - dependencies: - safe-buffer "5.2.1" - -content-type@~1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" - integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== - -convert-source-map@^1.5.1: - version "1.9.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" - integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== - -cookie-signature@1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" - integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== - -cookie@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" - integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== - -cookiejar@: - version "2.1.4" - resolved "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.1.4.tgz#ee669c1fea2cf42dc31585469d193fef0d65771b" - integrity sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw== - -core-js@^2.4.0, core-js@^2.5.0: - version "2.6.12" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec" - integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== - -core-util-is@1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== - -core-util-is@~1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" - integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== - -cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - -crypt@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" - integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow== - -css-select@^4.1.3: - version "4.3.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" - integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== - dependencies: - boolbase "^1.0.0" - css-what "^6.0.1" - domhandler "^4.3.1" - domutils "^2.8.0" - nth-check "^2.0.1" - -css-what@^6.0.1: - version "6.1.0" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" - integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== - -dashdash@^1.12.0: - version "1.14.1" - resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" - integrity sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g== - dependencies: - assert-plus "^1.0.0" - -debug@2.6.9, debug@^2.6.8, debug@^2.6.9: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - dependencies: - ms "2.0.0" - -debug@^4.1.0: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" - -default-gateway@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-6.0.3.tgz#819494c888053bdb743edbf343d6cdf7f2943a71" - integrity sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg== - dependencies: - execa "^5.0.0" - -define-lazy-prop@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" - integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== - -delayed-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== - -depd@2.0.0, depd@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" - integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== - -depd@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" - integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== - -destroy@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" - integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== - -detect-indent@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" - integrity sha512-BDKtmHlOzwI7iRuEkhzsnPoi5ypEhWAJB5RvHWe1kMr06js3uK5B3734i3ui5Yd+wOJV1cpE4JnivPD283GU/A== - dependencies: - repeating "^2.0.0" - -detect-node@^2.0.4: - version "2.1.0" - resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" - integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== - -digest-fetch@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/digest-fetch/-/digest-fetch-1.3.0.tgz#898e69264d00012a23cf26e8a3e40320143fc661" - integrity sha512-CGJuv6iKNM7QyZlM2T3sPAdZWd/p9zQiRNS9G+9COUCwzWFTs0Xp8NF5iePx7wtvhDykReiRRrSeNb4oMmB8lA== - dependencies: - base-64 "^0.1.0" - md5 "^2.3.0" - -dns-equal@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d" - integrity sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg== - -dns-packet@^5.2.2: - version "5.6.0" - resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.6.0.tgz#2202c947845c7a63c23ece58f2f70ff6ab4c2f7d" - integrity sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ== - dependencies: - "@leichtgewicht/ip-codec" "^2.0.1" - -dom-converter@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768" - integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== - dependencies: - utila "~0.4" - -dom-serializer@^1.0.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" - integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== - dependencies: - domelementtype "^2.0.1" - domhandler "^4.2.0" - entities "^2.0.0" - -domelementtype@^2.0.1, domelementtype@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" - integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== - -domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1: - version "4.3.1" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" - integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== - dependencies: - domelementtype "^2.2.0" - -domutils@^2.5.2, domutils@^2.8.0: - version "2.8.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" - integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== - dependencies: - dom-serializer "^1.0.1" - domelementtype "^2.2.0" - domhandler "^4.2.0" - -dot-case@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" - integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== - dependencies: - no-case "^3.0.4" - tslib "^2.0.3" - -ecc-jsbn@~0.1.1: - version "0.1.2" - resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" - integrity sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw== - dependencies: - jsbn "~0.1.0" - safer-buffer "^2.1.0" - -ee-first@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" - integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== - -electron-to-chromium@^1.4.431: - version "1.4.437" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.437.tgz#d0e73a431a9ade4467f73d48a59d752d91909316" - integrity sha512-ZFekRuBOHUXp21wrR5lshT6pZa/KmjkhKBAtmZz4NN5sCWlHOk3kdhiwFINrDBsRLX6FjyBAb1TRN+KBeNlyzQ== - -encodeurl@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" - integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== - -enhanced-resolve@^5.0.0, enhanced-resolve@^5.15.0: - version "5.15.0" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35" - integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg== - dependencies: - graceful-fs "^4.2.4" - tapable "^2.2.0" - -entities@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" - integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== - -envinfo@^7.7.3: - version "7.9.0" - resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.9.0.tgz#47594a13081be0d9be6e513534e8c58dbb26c7a1" - integrity sha512-RODB4txU+xImYDemN5DqaKC0CHk05XSVkOX4pq0hK26Qx+1LChkuOyUDlGEjYb3ACr0n9qBhFjg37hQuJvpkRQ== - -es-module-lexer@^1.2.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.3.0.tgz#6be9c9e0b4543a60cd166ff6f8b4e9dae0b0c16f" - integrity sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA== - -escalade@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" - integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== - -escape-html@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" - integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== - -escape-string-regexp@^1.0.2: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== - -eslint-scope@5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" - integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== - dependencies: - esrecurse "^4.3.0" - estraverse "^4.1.1" - -esrecurse@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" - integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== - dependencies: - estraverse "^5.2.0" - -estraverse@^4.1.1: - version "4.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" - integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== - -estraverse@^5.2.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" - integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== - -esutils@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - -etag@~1.8.1: - version "1.8.1" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" - integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== - -event-target-shim@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" - integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== - -eventemitter3@^4.0.0: - version "4.0.7" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" - integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== - -events@^3.2.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" - integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== - -execa@^5.0.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" - integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== - dependencies: - cross-spawn "^7.0.3" - get-stream "^6.0.0" - human-signals "^2.1.0" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^4.0.1" - onetime "^5.1.2" - signal-exit "^3.0.3" - strip-final-newline "^2.0.0" - -express@^4.17.3: - version "4.18.2" - resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59" - integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ== - dependencies: - accepts "~1.3.8" - array-flatten "1.1.1" - body-parser "1.20.1" - content-disposition "0.5.4" - content-type "~1.0.4" - cookie "0.5.0" - cookie-signature "1.0.6" - debug "2.6.9" - depd "2.0.0" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - finalhandler "1.2.0" - fresh "0.5.2" - http-errors "2.0.0" - merge-descriptors "1.0.1" - methods "~1.1.2" - on-finished "2.4.1" - parseurl "~1.3.3" - path-to-regexp "0.1.7" - proxy-addr "~2.0.7" - qs "6.11.0" - range-parser "~1.2.1" - safe-buffer "5.2.1" - send "0.18.0" - serve-static "1.15.0" - setprototypeof "1.2.0" - statuses "2.0.1" - type-is "~1.6.18" - utils-merge "1.0.1" - vary "~1.1.2" - -extend@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" - integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== - -extsprintf@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" - integrity sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g== - -extsprintf@^1.2.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz#8d172c064867f235c0c84a596806d279bf4bcc07" - integrity sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA== - -fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" - integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== - -fast-json-stable-stringify@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" - integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== - -fastest-levenshtein@^1.0.12: - version "1.0.16" - resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" - integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== - -faye-websocket@>=0.4.0, faye-websocket@^0.11.3: - version "0.11.4" - resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da" - integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g== - dependencies: - websocket-driver ">=0.5.1" - -faye@~0.8.3: - version "0.8.11" - resolved "https://registry.yarnpkg.com/faye/-/faye-0.8.11.tgz#06b25f22c9be51ebe6fe6d8d59dee6e546751967" - integrity sha512-d2SXlWy+wR8D2AgYjCnJrA8v4RvwKeRQeTB2aLUetyhrNKTU28mAvSMezSZDNyOONVrsF0IY1s4625QgggM2XA== - dependencies: - cookiejar "" - faye-websocket ">=0.4.0" - -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== - dependencies: - to-regex-range "^5.0.1" - -finalhandler@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" - integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== - dependencies: - debug "2.6.9" - encodeurl "~1.0.2" - escape-html "~1.0.3" - on-finished "2.4.1" - parseurl "~1.3.3" - statuses "2.0.1" - unpipe "~1.0.0" - -find-cache-dir@^3.3.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" - integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== - dependencies: - commondir "^1.0.1" - make-dir "^3.0.2" - pkg-dir "^4.1.0" - -find-up@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -follow-redirects@^1.0.0: - version "1.15.2" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" - integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== - -force@^0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/force/-/force-0.0.3.tgz#16a711e6b9a542a974da85546434a3ae94d66b14" - integrity sha512-B/4gl3/7o8Q4jYfXNKSvTHlAPxB1ruYCkxVkiVUUuHziYbDa2NsURljSgpm+Q+d4cGmN1EaAD5QXhLodGN44zA== - dependencies: - faye "~0.8.3" - mime "~1.2.9" - request "*" - -forever-agent@~0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" - integrity sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw== - -form-data-encoder@1.7.2: - version "1.7.2" - resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-1.7.2.tgz#1f1ae3dccf58ed4690b86d87e4f57c654fbab040" - integrity sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A== - -form-data@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" - integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.8" - mime-types "^2.1.12" - -form-data@~2.3.2: - version "2.3.3" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" - integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.6" - mime-types "^2.1.12" - -formdata-node@^4.3.2: - version "4.4.1" - resolved "https://registry.yarnpkg.com/formdata-node/-/formdata-node-4.4.1.tgz#23f6a5cb9cb55315912cbec4ff7b0f59bbd191e2" - integrity sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ== - dependencies: - node-domexception "1.0.0" - web-streams-polyfill "4.0.0-beta.3" - -forwarded@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" - integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== - -fresh@0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" - integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== - -fs-monkey@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.4.tgz#ee8c1b53d3fe8bb7e5d2c5c5dfc0168afdd2f747" - integrity sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ== - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== - -fsevents@~2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== - -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -get-intrinsic@^1.0.2: - version "1.2.1" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" - integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== - dependencies: - function-bind "^1.1.1" - has "^1.0.3" - has-proto "^1.0.1" - has-symbols "^1.0.3" - -get-stream@^6.0.0: - version "6.0.1" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" - integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== - -getpass@^0.1.1: - version "0.1.7" - resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" - integrity sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng== - dependencies: - assert-plus "^1.0.0" - -glob-parent@~5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== - dependencies: - is-glob "^4.0.1" - -glob-to-regexp@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" - integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== - -glob@^7.1.3: - version "7.2.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" - integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.1.1" - once "^1.3.0" - path-is-absolute "^1.0.0" - -globals@^9.18.0: - version "9.18.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" - integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== - -graceful-fs@^4.1.2, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: - version "4.2.11" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" - integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== - -handle-thing@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e" - integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== - -har-schema@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" - integrity sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q== - -har-validator@~5.1.3: - version "5.1.5" - resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" - integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== - dependencies: - ajv "^6.12.3" - har-schema "^2.0.0" - -has-ansi@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" - integrity sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg== - dependencies: - ansi-regex "^2.0.0" - -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== - -has-proto@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" - integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== - -has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== - -has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -he@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" - integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== - -home-or-tmp@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" - integrity sha512-ycURW7oUxE2sNiPVw1HVEFsW+ecOpJ5zaj7eC0RlwhibhRBod20muUN8qu/gzx956YrLolVvs1MTXwKgC2rVEg== - dependencies: - os-homedir "^1.0.0" - os-tmpdir "^1.0.1" - -hpack.js@^2.1.6: - version "2.1.6" - resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" - integrity sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ== - dependencies: - inherits "^2.0.1" - obuf "^1.0.0" - readable-stream "^2.0.1" - wbuf "^1.1.0" - -html-entities@^2.3.2: - version "2.3.6" - resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.3.6.tgz#966391d58e5737c77bca4025e31721b496ab7454" - integrity sha512-9o0+dcpIw2/HxkNuYKxSJUF/MMRZQECK4GnF+oQOmJ83yCVHTWgCH5aOXxK5bozNRmM8wtgryjHD3uloPBDEGw== - -html-minifier-terser@^6.0.2: - version "6.1.0" - resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#bfc818934cc07918f6b3669f5774ecdfd48f32ab" - integrity sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw== - dependencies: - camel-case "^4.1.2" - clean-css "^5.2.2" - commander "^8.3.0" - he "^1.2.0" - param-case "^3.0.4" - relateurl "^0.2.7" - terser "^5.10.0" - -html-webpack-plugin@^5.5.3: - version "5.5.3" - resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.5.3.tgz#72270f4a78e222b5825b296e5e3e1328ad525a3e" - integrity sha512-6YrDKTuqaP/TquFH7h4srYWsZx+x6k6+FbsTm0ziCwGHDP78Unr1r9F/H4+sGmMbX08GQcJ+K64x55b+7VM/jg== - dependencies: - "@types/html-minifier-terser" "^6.0.0" - html-minifier-terser "^6.0.2" - lodash "^4.17.21" - pretty-error "^4.0.0" - tapable "^2.0.0" - -htmlparser2@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7" - integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== - dependencies: - domelementtype "^2.0.1" - domhandler "^4.0.0" - domutils "^2.5.2" - entities "^2.0.0" - -http-deceiver@^1.2.7: - version "1.2.7" - resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" - integrity sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw== - -http-errors@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" - integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== - dependencies: - depd "2.0.0" - inherits "2.0.4" - setprototypeof "1.2.0" - statuses "2.0.1" - toidentifier "1.0.1" - -http-errors@~1.6.2: - version "1.6.3" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" - integrity sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A== - dependencies: - depd "~1.1.2" - inherits "2.0.3" - setprototypeof "1.1.0" - statuses ">= 1.4.0 < 2" - -http-parser-js@>=0.5.1: - version "0.5.8" - resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.8.tgz#af23090d9ac4e24573de6f6aecc9d84a48bf20e3" - integrity sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q== - -http-proxy-middleware@^2.0.3: - version "2.0.6" - resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz#e1a4dd6979572c7ab5a4e4b55095d1f32a74963f" - integrity sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw== - dependencies: - "@types/http-proxy" "^1.17.8" - http-proxy "^1.18.1" - is-glob "^4.0.1" - is-plain-obj "^3.0.0" - micromatch "^4.0.2" - -http-proxy@^1.18.1: - version "1.18.1" - resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" - integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== - dependencies: - eventemitter3 "^4.0.0" - follow-redirects "^1.0.0" - requires-port "^1.0.0" - -http-signature@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" - integrity sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ== - dependencies: - assert-plus "^1.0.0" - jsprim "^1.2.2" - sshpk "^1.7.0" - -human-signals@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" - integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== - -humanize-ms@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" - integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== - dependencies: - ms "^2.0.0" - -iconv-lite@0.4.24: - version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - -import-local@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" - integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== - dependencies: - pkg-dir "^4.2.0" - resolve-cwd "^3.0.0" - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -inherits@2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" - integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== - -interpret@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-3.1.1.tgz#5be0ceed67ca79c6c4bc5cf0d7ee843dcea110c4" - integrity sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ== - -invariant@^2.2.2: - version "2.2.4" - resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" - integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== - dependencies: - loose-envify "^1.0.0" - -ipaddr.js@1.9.1: - version "1.9.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" - integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== - -ipaddr.js@^2.0.1: - version "2.1.0" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.1.0.tgz#2119bc447ff8c257753b196fc5f1ce08a4cdf39f" - integrity sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ== - -is-binary-path@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" - integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== - dependencies: - binary-extensions "^2.0.0" - -is-buffer@~1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== - -is-core-module@^2.11.0: - version "2.12.1" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd" - integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg== - dependencies: - has "^1.0.3" - -is-docker@^2.0.0, is-docker@^2.1.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" - integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== - -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== - -is-finite@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3" - integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w== - -is-glob@^4.0.1, is-glob@~4.0.1: - version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" - integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== - dependencies: - is-extglob "^2.1.1" - -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - -is-plain-obj@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7" - integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== - -is-plain-object@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" - integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== - dependencies: - isobject "^3.0.1" - -is-stream@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" - integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== - -is-typedarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" - integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== - -is-wsl@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" - integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== - dependencies: - is-docker "^2.0.0" - -isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== - -isobject@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" - integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== - -isstream@~0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" - integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g== - -jest-worker@^27.4.5: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0" - integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== - dependencies: - "@types/node" "*" - merge-stream "^2.0.0" - supports-color "^8.0.0" - -"js-tokens@^3.0.0 || ^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -js-tokens@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" - integrity sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg== - -jsbn@~0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" - integrity sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg== - -jsesc@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" - integrity sha512-Mke0DA0QjUWuJlhsE0ZPPhYiJkRap642SmI/4ztCFaUs6V2AiH1sfecc+57NgaryfAA2VR3v6O+CSjC1jZJKOA== - -jsesc@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== - -json-parse-even-better-errors@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" - integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== - -json-schema-traverse@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - -json-schema-traverse@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" - integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== - -json-schema@0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5" - integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== - -json-stringify-safe@~5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" - integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== - -json5@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" - integrity sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw== - -jsprim@^1.2.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.2.tgz#712c65533a15c878ba59e9ed5f0e26d5b77c5feb" - integrity sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw== - dependencies: - assert-plus "1.0.0" - extsprintf "1.3.0" - json-schema "0.4.0" - verror "1.10.0" - -kind-of@^6.0.2: - version "6.0.3" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" - integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== - -launch-editor@^2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.6.0.tgz#4c0c1a6ac126c572bd9ff9a30da1d2cae66defd7" - integrity sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ== - dependencies: - picocolors "^1.0.0" - shell-quote "^1.7.3" - -loader-runner@^4.2.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1" - integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== - -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== - dependencies: - p-locate "^4.1.0" - -lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== - -loose-envify@^1.0.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" - integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== - dependencies: - js-tokens "^3.0.0 || ^4.0.0" - -lower-case@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" - integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== - dependencies: - tslib "^2.0.3" - -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== - dependencies: - yallist "^4.0.0" - -make-dir@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" - integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== - dependencies: - semver "^6.0.0" - -md5@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" - integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g== - dependencies: - charenc "0.0.2" - crypt "0.0.2" - is-buffer "~1.1.6" - -media-typer@0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" - integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== - -memfs@^3.4.3: - version "3.5.3" - resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.5.3.tgz#d9b40fe4f8d5788c5f895bda804cd0d9eeee9f3b" - integrity sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw== - dependencies: - fs-monkey "^1.0.4" - -merge-descriptors@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" - integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== - -merge-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" - integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== - -methods@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" - integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== - -micromatch@^4.0.0, micromatch@^4.0.2: - version "4.0.5" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" - integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== - dependencies: - braces "^3.0.2" - picomatch "^2.3.1" - -mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": - version "1.52.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" - integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== - -mime-types@^2.1.12, mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24, mime-types@~2.1.34: - version "2.1.35" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" - integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== - dependencies: - mime-db "1.52.0" - -mime@1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== - -mime@~1.2.9: - version "1.2.11" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.2.11.tgz#58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10" - integrity sha512-Ysa2F/nqTNGHhhm9MV8ure4+Hc+Y8AWiqUdHxsO7xu8zc92ND9f3kpALHjaP026Ft17UfxrMt95c50PLUeynBw== - -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - -minimalistic-assert@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" - integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== - -minimatch@^3.0.4, minimatch@^3.1.1: - version "3.1.2" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== - dependencies: - brace-expansion "^1.1.7" - -minimist@^1.2.6: - version "1.2.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" - integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== - -mkdirp@^0.5.1: - version "0.5.6" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" - integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== - dependencies: - minimist "^1.2.6" - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== - -ms@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -ms@2.1.3, ms@^2.0.0: - version "2.1.3" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - -multicast-dns@^7.2.5: - version "7.2.5" - resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-7.2.5.tgz#77eb46057f4d7adbd16d9290fa7299f6fa64cced" - integrity sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg== - dependencies: - dns-packet "^5.2.2" - thunky "^1.0.2" - -negotiator@0.6.3: - version "0.6.3" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" - integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== - -neo-async@^2.6.2: - version "2.6.2" - resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" - integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== - -no-case@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" - integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== - dependencies: - lower-case "^2.0.2" - tslib "^2.0.3" - -node-domexception@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" - integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== - -node-fetch@^2.6.7: - version "2.6.11" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.11.tgz#cde7fc71deef3131ef80a738919f999e6edfff25" - integrity sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w== - dependencies: - whatwg-url "^5.0.0" - -node-forge@^1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" - integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== - -node-releases@^2.0.12: - version "2.0.12" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.12.tgz#35627cc224a23bfb06fb3380f2b3afaaa7eb1039" - integrity sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ== - -normalize-path@^3.0.0, normalize-path@~3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -npm-run-path@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" - integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== - dependencies: - path-key "^3.0.0" - -nth-check@^2.0.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" - integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== - dependencies: - boolbase "^1.0.0" - -oauth-sign@~0.9.0: - version "0.9.0" - resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" - integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== - -object-inspect@^1.9.0: - version "1.12.3" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" - integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== - -obuf@^1.0.0, obuf@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" - integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== - -on-finished@2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" - integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== - dependencies: - ee-first "1.1.1" - -on-headers@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" - integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== - -once@^1.3.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== - dependencies: - wrappy "1" - -onetime@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== - dependencies: - mimic-fn "^2.1.0" - -open@^8.0.9: - version "8.4.2" - resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9" - integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ== - dependencies: - define-lazy-prop "^2.0.0" - is-docker "^2.1.1" - is-wsl "^2.2.0" - -os-homedir@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" - integrity sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ== - -os-tmpdir@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== - -p-limit@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== - dependencies: - p-try "^2.0.0" - -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - dependencies: - p-limit "^2.2.0" - -p-retry@^4.5.0: - version "4.6.2" - resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-4.6.2.tgz#9baae7184057edd4e17231cee04264106e092a16" - integrity sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ== - dependencies: - "@types/retry" "0.12.0" - retry "^0.13.1" - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -param-case@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" - integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== - dependencies: - dot-case "^3.0.4" - tslib "^2.0.3" - -parseurl@~1.3.2, parseurl@~1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" - integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== - -pascal-case@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" - integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== - dependencies: - no-case "^3.0.4" - tslib "^2.0.3" - -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== - -path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== - -path-key@^3.0.0, path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - -path-parse@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== - -path-to-regexp@0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" - integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== - -performance-now@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" - integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== - -picocolors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" - integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== - -picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== - -pkg-dir@^4.1.0, pkg-dir@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== - dependencies: - find-up "^4.0.0" - -pretty-error@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-4.0.0.tgz#90a703f46dd7234adb46d0f84823e9d1cb8f10d6" - integrity sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw== - dependencies: - lodash "^4.17.20" - renderkid "^3.0.0" - -private@^0.1.6, private@^0.1.8: - version "0.1.8" - resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" - integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== - -process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - -proxy-addr@~2.0.7: - version "2.0.7" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" - integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== - dependencies: - forwarded "0.2.0" - ipaddr.js "1.9.1" - -psl@^1.1.28: - version "1.9.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" - integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== - -punycode@^2.1.0, punycode@^2.1.1: - version "2.3.0" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" - integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== - -qs@6.11.0: - version "6.11.0" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" - integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== - dependencies: - side-channel "^1.0.4" - -qs@^6.10.3: - version "6.11.2" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" - integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== - dependencies: - side-channel "^1.0.4" - -qs@~6.5.2: - version "6.5.3" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.3.tgz#3aeeffc91967ef6e35c0e488ef46fb296ab76aad" - integrity sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA== - -randombytes@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" - integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== - dependencies: - safe-buffer "^5.1.0" - -range-parser@^1.2.1, range-parser@~1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" - integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== - -raw-body@2.5.1: - version "2.5.1" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" - integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== - dependencies: - bytes "3.1.2" - http-errors "2.0.0" - iconv-lite "0.4.24" - unpipe "1.0.0" - -readable-stream@^2.0.1: - version "2.3.8" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" - integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - -readable-stream@^3.0.6: - version "3.6.2" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" - integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -readdirp@~3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" - integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== - dependencies: - picomatch "^2.2.1" - -rechoir@^0.8.0: - version "0.8.0" - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.8.0.tgz#49f866e0d32146142da3ad8f0eff352b3215ff22" - integrity sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ== - dependencies: - resolve "^1.20.0" - -regenerate@^1.2.1: - version "1.4.2" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" - integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== - -regenerator-runtime@^0.11.0: - version "0.11.1" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" - integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== - -regenerator-transform@^0.10.0: - version "0.10.1" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" - integrity sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q== - dependencies: - babel-runtime "^6.18.0" - babel-types "^6.19.0" - private "^0.1.6" - -regexpu-core@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" - integrity sha512-tJ9+S4oKjxY8IZ9jmjnp/mtytu1u3iyIQAfmI51IKWH6bFf7XR1ybtaO6j7INhZKXOTYADk7V5qxaqLkmNxiZQ== - dependencies: - regenerate "^1.2.1" - regjsgen "^0.2.0" - regjsparser "^0.1.4" - -regjsgen@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" - integrity sha512-x+Y3yA24uF68m5GA+tBjbGYo64xXVJpbToBaWCoSNSc1hdk6dfctaRWrNFTVJZIIhL5GxW8zwjoixbnifnK59g== - -regjsparser@^0.1.4: - version "0.1.5" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" - integrity sha512-jlQ9gYLfk2p3V5Ag5fYhA7fv7OHzd1KUH0PRP46xc3TgwjwgROIW572AfYg/X9kaNq/LJnu6oJcFRXlIrGoTRw== - dependencies: - jsesc "~0.5.0" - -relateurl@^0.2.7: - version "0.2.7" - resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" - integrity sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog== - -renderkid@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-3.0.0.tgz#5fd823e4d6951d37358ecc9a58b1f06836b6268a" - integrity sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg== - dependencies: - css-select "^4.1.3" - dom-converter "^0.2.0" - htmlparser2 "^6.1.0" - lodash "^4.17.21" - strip-ansi "^6.0.1" - -repeating@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" - integrity sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A== - dependencies: - is-finite "^1.0.0" - -request@*: - version "2.88.2" - resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" - integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== - dependencies: - aws-sign2 "~0.7.0" - aws4 "^1.8.0" - caseless "~0.12.0" - combined-stream "~1.0.6" - extend "~3.0.2" - forever-agent "~0.6.1" - form-data "~2.3.2" - har-validator "~5.1.3" - http-signature "~1.2.0" - is-typedarray "~1.0.0" - isstream "~0.1.2" - json-stringify-safe "~5.0.1" - mime-types "~2.1.19" - oauth-sign "~0.9.0" - performance-now "^2.1.0" - qs "~6.5.2" - safe-buffer "^5.1.2" - tough-cookie "~2.5.0" - tunnel-agent "^0.6.0" - uuid "^3.3.2" - -require-from-string@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" - integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== - -requires-port@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" - integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== - -resolve-cwd@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" - integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== - dependencies: - resolve-from "^5.0.0" - -resolve-from@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" - integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - -resolve@^1.20.0: - version "1.22.2" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" - integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== - dependencies: - is-core-module "^2.11.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - -retry@^0.13.1: - version "0.13.1" - resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" - integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== - -rimraf@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== - dependencies: - glob "^7.1.3" - -safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2, safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: - version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - -schema-utils@^3.1.1, schema-utils@^3.2.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe" - integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== - dependencies: - "@types/json-schema" "^7.0.8" - ajv "^6.12.5" - ajv-keywords "^3.5.2" - -schema-utils@^4.0.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.2.0.tgz#70d7c93e153a273a805801882ebd3bff20d89c8b" - integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw== - dependencies: - "@types/json-schema" "^7.0.9" - ajv "^8.9.0" - ajv-formats "^2.1.1" - ajv-keywords "^5.1.0" - -select-hose@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" - integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg== - -selfsigned@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.1.1.tgz#18a7613d714c0cd3385c48af0075abf3f266af61" - integrity sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ== - dependencies: - node-forge "^1" - -semver@^6.0.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -semver@^7.3.4: - version "7.5.2" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.2.tgz#5b851e66d1be07c1cdaf37dfc856f543325a2beb" - integrity sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ== - dependencies: - lru-cache "^6.0.0" - -send@0.18.0: - version "0.18.0" - resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" - integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== - dependencies: - debug "2.6.9" - depd "2.0.0" - destroy "1.2.0" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - fresh "0.5.2" - http-errors "2.0.0" - mime "1.6.0" - ms "2.1.3" - on-finished "2.4.1" - range-parser "~1.2.1" - statuses "2.0.1" - -serialize-javascript@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz#b206efb27c3da0b0ab6b52f48d170b7996458e5c" - integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w== - dependencies: - randombytes "^2.1.0" - -serve-index@^1.9.1: - version "1.9.1" - resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" - integrity sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw== - dependencies: - accepts "~1.3.4" - batch "0.6.1" - debug "2.6.9" - escape-html "~1.0.3" - http-errors "~1.6.2" - mime-types "~2.1.17" - parseurl "~1.3.2" - -serve-static@1.15.0: - version "1.15.0" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" - integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== - dependencies: - encodeurl "~1.0.2" - escape-html "~1.0.3" - parseurl "~1.3.3" - send "0.18.0" - -setprototypeof@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" - integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== - -setprototypeof@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" - integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== - -shallow-clone@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" - integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== - dependencies: - kind-of "^6.0.2" - -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -shell-quote@^1.7.3: - version "1.8.1" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" - integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== - -side-channel@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" - integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== - dependencies: - call-bind "^1.0.0" - get-intrinsic "^1.0.2" - object-inspect "^1.9.0" - -signal-exit@^3.0.3: - version "3.0.7" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" - integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== - -slash@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" - integrity sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg== - -sockjs@^0.3.24: - version "0.3.24" - resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.24.tgz#c9bc8995f33a111bea0395ec30aa3206bdb5ccce" - integrity sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ== - dependencies: - faye-websocket "^0.11.3" - uuid "^8.3.2" - websocket-driver "^0.7.4" - -source-map-support@^0.4.15: - version "0.4.18" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" - integrity sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA== - dependencies: - source-map "^0.5.6" - -source-map-support@~0.5.20: - version "0.5.21" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" - integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map@^0.5.6, source-map@^0.5.7: - version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== - -source-map@^0.6.0, source-map@~0.6.0: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -spdy-transport@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31" - integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw== - dependencies: - debug "^4.1.0" - detect-node "^2.0.4" - hpack.js "^2.1.6" - obuf "^1.1.2" - readable-stream "^3.0.6" - wbuf "^1.7.3" - -spdy@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b" - integrity sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA== - dependencies: - debug "^4.1.0" - handle-thing "^2.0.0" - http-deceiver "^1.2.7" - select-hose "^2.0.0" - spdy-transport "^3.0.0" - -sshpk@^1.7.0: - version "1.17.0" - resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.17.0.tgz#578082d92d4fe612b13007496e543fa0fbcbe4c5" - integrity sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ== - dependencies: - asn1 "~0.2.3" - assert-plus "^1.0.0" - bcrypt-pbkdf "^1.0.0" - dashdash "^1.12.0" - ecc-jsbn "~0.1.1" - getpass "^0.1.1" - jsbn "~0.1.0" - safer-buffer "^2.0.2" - tweetnacl "~0.14.0" - -statuses@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" - integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== - -"statuses@>= 1.4.0 < 2": - version "1.5.0" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" - integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== - -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - -strip-ansi@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - integrity sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg== - dependencies: - ansi-regex "^2.0.0" - -strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-final-newline@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" - integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== - -supports-color@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" - integrity sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g== - -supports-color@^7.1.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" - integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== - dependencies: - has-flag "^4.0.0" - -supports-color@^8.0.0: - version "8.1.1" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" - integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== - dependencies: - has-flag "^4.0.0" - -supports-preserve-symlinks-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" - integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== - -tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" - integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== - -terser-webpack-plugin@^5.3.7: - version "5.3.9" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz#832536999c51b46d468067f9e37662a3b96adfe1" - integrity sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA== - dependencies: - "@jridgewell/trace-mapping" "^0.3.17" - jest-worker "^27.4.5" - schema-utils "^3.1.1" - serialize-javascript "^6.0.1" - terser "^5.16.8" - -terser@^5.10.0, terser@^5.16.8: - version "5.18.1" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.18.1.tgz#6d8642508ae9fb7b48768e48f16d675c89a78460" - integrity sha512-j1n0Ao919h/Ai5r43VAnfV/7azUYW43GPxK7qSATzrsERfW7+y2QW9Cp9ufnRF5CQUWbnLSo7UJokSWCqg4tsQ== - dependencies: - "@jridgewell/source-map" "^0.3.3" - acorn "^8.8.2" - commander "^2.20.0" - source-map-support "~0.5.20" - -thunky@^1.0.2: - version "1.1.0" - resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" - integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== - -to-fast-properties@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" - integrity sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og== - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - -toidentifier@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" - integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== - -tough-cookie@~2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" - integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== - dependencies: - psl "^1.1.28" - punycode "^2.1.1" - -tr46@~0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" - integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== - -trim-right@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" - integrity sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw== - -ts-loader@^9.4.3: - version "9.4.3" - resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-9.4.3.tgz#55cfa7c28dd82a2de968ae45c3adb75fb888b27e" - integrity sha512-n3hBnm6ozJYzwiwt5YRiJZkzktftRpMiBApHaJPoWLA+qetQBAXkHqCLM6nwSdRDimqVtA5ocIkcTRLMTt7yzA== - dependencies: - chalk "^4.1.0" - enhanced-resolve "^5.0.0" - micromatch "^4.0.0" - semver "^7.3.4" - -tslib@^2.0.3: - version "2.5.3" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.3.tgz#24944ba2d990940e6e982c4bea147aba80209913" - integrity sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w== - -tunnel-agent@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== - dependencies: - safe-buffer "^5.0.1" - -tweetnacl@^0.14.3, tweetnacl@~0.14.0: - version "0.14.5" - resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" - integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA== - -type-is@~1.6.18: - version "1.6.18" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" - integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== - dependencies: - media-typer "0.3.0" - mime-types "~2.1.24" - -typescript@^5.0.4: - version "5.1.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.3.tgz#8d84219244a6b40b6fb2b33cc1c062f715b9e826" - integrity sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw== - -unpipe@1.0.0, unpipe@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" - integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== - -update-browserslist-db@^1.0.11: - version "1.0.11" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" - integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== - dependencies: - escalade "^3.1.1" - picocolors "^1.0.0" - -uri-js@^4.2.2: - version "4.4.1" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" - integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== - dependencies: - punycode "^2.1.0" - -util-deprecate@^1.0.1, util-deprecate@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== - -utila@~0.4: - version "0.4.0" - resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" - integrity sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA== - -utils-merge@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" - integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== - -uuid@^3.3.2: - version "3.4.0" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" - integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== - -uuid@^8.3.2: - version "8.3.2" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" - integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== - -vary@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" - integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== - -verror@1.10.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" - integrity sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw== - dependencies: - assert-plus "^1.0.0" - core-util-is "1.0.2" - extsprintf "^1.2.0" - -watchpack@^2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" - integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== - dependencies: - glob-to-regexp "^0.4.1" - graceful-fs "^4.1.2" - -wbuf@^1.1.0, wbuf@^1.7.3: - version "1.7.3" - resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df" - integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA== - dependencies: - minimalistic-assert "^1.0.0" - -web-streams-polyfill@4.0.0-beta.3: - version "4.0.0-beta.3" - resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz#2898486b74f5156095e473efe989dcf185047a38" - integrity sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug== - -webidl-conversions@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" - integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== - -webpack-cli@^5.0.2: - version "5.1.4" - resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-5.1.4.tgz#c8e046ba7eaae4911d7e71e2b25b776fcc35759b" - integrity sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg== - dependencies: - "@discoveryjs/json-ext" "^0.5.0" - "@webpack-cli/configtest" "^2.1.1" - "@webpack-cli/info" "^2.0.2" - "@webpack-cli/serve" "^2.0.5" - colorette "^2.0.14" - commander "^10.0.1" - cross-spawn "^7.0.3" - envinfo "^7.7.3" - fastest-levenshtein "^1.0.12" - import-local "^3.0.2" - interpret "^3.1.1" - rechoir "^0.8.0" - webpack-merge "^5.7.3" - -webpack-dev-middleware@^5.3.1: - version "5.3.3" - resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz#efae67c2793908e7311f1d9b06f2a08dcc97e51f" - integrity sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA== - dependencies: - colorette "^2.0.10" - memfs "^3.4.3" - mime-types "^2.1.31" - range-parser "^1.2.1" - schema-utils "^4.0.0" - -webpack-dev-server@^4.15.1: - version "4.15.1" - resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz#8944b29c12760b3a45bdaa70799b17cb91b03df7" - integrity sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA== - dependencies: - "@types/bonjour" "^3.5.9" - "@types/connect-history-api-fallback" "^1.3.5" - "@types/express" "^4.17.13" - "@types/serve-index" "^1.9.1" - "@types/serve-static" "^1.13.10" - "@types/sockjs" "^0.3.33" - "@types/ws" "^8.5.5" - ansi-html-community "^0.0.8" - bonjour-service "^1.0.11" - chokidar "^3.5.3" - colorette "^2.0.10" - compression "^1.7.4" - connect-history-api-fallback "^2.0.0" - default-gateway "^6.0.3" - express "^4.17.3" - graceful-fs "^4.2.6" - html-entities "^2.3.2" - http-proxy-middleware "^2.0.3" - ipaddr.js "^2.0.1" - launch-editor "^2.6.0" - open "^8.0.9" - p-retry "^4.5.0" - rimraf "^3.0.2" - schema-utils "^4.0.0" - selfsigned "^2.1.1" - serve-index "^1.9.1" - sockjs "^0.3.24" - spdy "^4.0.2" - webpack-dev-middleware "^5.3.1" - ws "^8.13.0" - -webpack-merge@^5.7.3: - version "5.9.0" - resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.9.0.tgz#dc160a1c4cf512ceca515cc231669e9ddb133826" - integrity sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg== - dependencies: - clone-deep "^4.0.1" - wildcard "^2.0.0" - -webpack-sources@^3.2.3: - version "3.2.3" - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" - integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== - -webpack@^5.87.0: - version "5.88.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.88.0.tgz#a07aa2f8e7a64a8f1cec0c6c2e180e3cb34440c8" - integrity sha512-O3jDhG5e44qIBSi/P6KpcCcH7HD+nYIHVBhdWFxcLOcIGN8zGo5nqF3BjyNCxIh4p1vFdNnreZv2h2KkoAw3lw== - dependencies: - "@types/eslint-scope" "^3.7.3" - "@types/estree" "^1.0.0" - "@webassemblyjs/ast" "^1.11.5" - "@webassemblyjs/wasm-edit" "^1.11.5" - "@webassemblyjs/wasm-parser" "^1.11.5" - acorn "^8.7.1" - acorn-import-assertions "^1.9.0" - browserslist "^4.14.5" - chrome-trace-event "^1.0.2" - enhanced-resolve "^5.15.0" - es-module-lexer "^1.2.1" - eslint-scope "5.1.1" - events "^3.2.0" - glob-to-regexp "^0.4.1" - graceful-fs "^4.2.9" - json-parse-even-better-errors "^2.3.1" - loader-runner "^4.2.0" - mime-types "^2.1.27" - neo-async "^2.6.2" - schema-utils "^3.2.0" - tapable "^2.1.1" - terser-webpack-plugin "^5.3.7" - watchpack "^2.4.0" - webpack-sources "^3.2.3" - -websocket-driver@>=0.5.1, websocket-driver@^0.7.4: - version "0.7.4" - resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760" - integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== - dependencies: - http-parser-js ">=0.5.1" - safe-buffer ">=5.1.0" - websocket-extensions ">=0.1.1" - -websocket-extensions@>=0.1.1: - version "0.1.4" - resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42" - integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== - -whatwg-url@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" - integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== - dependencies: - tr46 "~0.0.3" - webidl-conversions "^3.0.0" - -which@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - dependencies: - isexe "^2.0.0" - -wildcard@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67" - integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ== - -wrappy@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== - -ws@^8.13.0: - version "8.13.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" - integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== - -yallist@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== diff --git a/ecosystem-tests/vercel-edge/yarn.lock b/ecosystem-tests/vercel-edge/yarn.lock deleted file mode 100644 index 20117f94f..000000000 --- a/ecosystem-tests/vercel-edge/yarn.lock +++ /dev/null @@ -1,6359 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@ampproject/remapping@^2.2.0": - version "2.2.1" - resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" - integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== - dependencies: - "@jridgewell/gen-mapping" "^0.3.0" - "@jridgewell/trace-mapping" "^0.3.9" - -"@babel/code-frame@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658" - integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ== - dependencies: - "@babel/highlight" "^7.22.5" - -"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.5.tgz#b1f6c86a02d85d2dd3368a2b67c09add8cd0c255" - integrity sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA== - -"@babel/core@^7.20.7", "@babel/core@^7.21.8": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.5.tgz#d67d9747ecf26ee7ecd3ebae1ee22225fe902a89" - integrity sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg== - dependencies: - "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.22.5" - "@babel/generator" "^7.22.5" - "@babel/helper-compilation-targets" "^7.22.5" - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helpers" "^7.22.5" - "@babel/parser" "^7.22.5" - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" - "@babel/types" "^7.22.5" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.2.2" - semver "^6.3.0" - -"@babel/generator@^7.21.5", "@babel/generator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.5.tgz#1e7bf768688acfb05cf30b2369ef855e82d984f7" - integrity sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA== - dependencies: - "@babel/types" "^7.22.5" - "@jridgewell/gen-mapping" "^0.3.2" - "@jridgewell/trace-mapping" "^0.3.17" - jsesc "^2.5.1" - -"@babel/helper-annotate-as-pure@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" - integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz#a3f4758efdd0190d8927fcffd261755937c71878" - integrity sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz#fc7319fc54c5e2fa14b2909cf3c5fd3046813e02" - integrity sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw== - dependencies: - "@babel/compat-data" "^7.22.5" - "@babel/helper-validator-option" "^7.22.5" - browserslist "^4.21.3" - lru-cache "^5.1.1" - semver "^6.3.0" - -"@babel/helper-create-class-features-plugin@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.5.tgz#2192a1970ece4685fbff85b48da2c32fcb130b7c" - integrity sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-member-expression-to-functions" "^7.22.5" - "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.5" - semver "^6.3.0" - -"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.5.tgz#bb2bf0debfe39b831986a4efbf4066586819c6e4" - integrity sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - regexpu-core "^5.3.1" - semver "^6.3.0" - -"@babel/helper-define-polyfill-provider@^0.4.0": - version "0.4.0" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.0.tgz#487053f103110f25b9755c5980e031e93ced24d8" - integrity sha512-RnanLx5ETe6aybRi1cO/edaRH+bNYWaryCEmjDDYyNr4wnSzyOp8T0dWipmqVHKEY3AbVKUom50AKSlj1zmKbg== - dependencies: - "@babel/helper-compilation-targets" "^7.17.7" - "@babel/helper-plugin-utils" "^7.16.7" - debug "^4.1.1" - lodash.debounce "^4.0.8" - resolve "^1.14.2" - semver "^6.1.2" - -"@babel/helper-environment-visitor@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98" - integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q== - -"@babel/helper-function-name@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be" - integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ== - dependencies: - "@babel/template" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/helper-hoist-variables@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" - integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-member-expression-to-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz#0a7c56117cad3372fbf8d2fb4bf8f8d64a1e76b2" - integrity sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-module-imports@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c" - integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-module-transforms@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz#0f65daa0716961b6e96b164034e737f60a80d2ef" - integrity sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw== - dependencies: - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-module-imports" "^7.22.5" - "@babel/helper-simple-access" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.5" - "@babel/helper-validator-identifier" "^7.22.5" - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/helper-optimise-call-expression@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e" - integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" - integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== - -"@babel/helper-remap-async-to-generator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz#14a38141a7bf2165ad38da61d61cf27b43015da2" - integrity sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-wrap-function" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/helper-replace-supers@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz#71bc5fb348856dea9fdc4eafd7e2e49f585145dc" - integrity sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg== - dependencies: - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-member-expression-to-functions" "^7.22.5" - "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/helper-simple-access@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" - integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-skip-transparent-expression-wrappers@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847" - integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-split-export-declaration@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz#88cf11050edb95ed08d596f7a044462189127a08" - integrity sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-string-parser@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" - integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== - -"@babel/helper-validator-identifier@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193" - integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== - -"@babel/helper-validator-option@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac" - integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw== - -"@babel/helper-wrap-function@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz#44d205af19ed8d872b4eefb0d2fa65f45eb34f06" - integrity sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw== - dependencies: - "@babel/helper-function-name" "^7.22.5" - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/helpers@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.5.tgz#74bb4373eb390d1ceed74a15ef97767e63120820" - integrity sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q== - dependencies: - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/highlight@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.5.tgz#aa6c05c5407a67ebce408162b7ede789b4d22031" - integrity sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw== - dependencies: - "@babel/helper-validator-identifier" "^7.22.5" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@babel/parser@^7.21.8", "@babel/parser@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.5.tgz#721fd042f3ce1896238cf1b341c77eb7dee7dbea" - integrity sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q== - -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz#87245a21cd69a73b0b81bcda98d443d6df08f05e" - integrity sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz#fef09f9499b1f1c930da8a0c419db42167d792ca" - integrity sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/plugin-transform-optional-chaining" "^7.22.5" - -"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": - version "7.21.0-placeholder-for-preset-env.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" - integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== - -"@babel/plugin-proposal-unicode-property-regex@^7.4.4": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e" - integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-syntax-async-generators@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" - integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-class-properties@^7.12.13": - version "7.12.13" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" - integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== - dependencies: - "@babel/helper-plugin-utils" "^7.12.13" - -"@babel/plugin-syntax-class-static-block@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" - integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-dynamic-import@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" - integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-export-namespace-from@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" - integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-syntax-import-assertions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz#07d252e2aa0bc6125567f742cd58619cb14dce98" - integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-syntax-import-attributes@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz#ab840248d834410b829f569f5262b9e517555ecb" - integrity sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-syntax-import-meta@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" - integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-json-strings@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" - integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-jsx@^7.21.4", "@babel/plugin-syntax-jsx@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918" - integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" - integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" - integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-numeric-separator@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" - integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-object-rest-spread@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" - integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-catch-binding@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" - integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-chaining@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" - integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-private-property-in-object@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" - integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-top-level-await@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" - integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-typescript@^7.20.0", "@babel/plugin-syntax-typescript@^7.21.4", "@babel/plugin-syntax-typescript@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz#aac8d383b062c5072c647a31ef990c1d0af90272" - integrity sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-syntax-unicode-sets-regex@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" - integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-arrow-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958" - integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-async-generator-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.5.tgz#7336356d23380eda9a56314974f053a020dab0c3" - integrity sha512-gGOEvFzm3fWoyD5uZq7vVTD57pPJ3PczPUD/xCFGjzBpUosnklmXyKnGQbbbGs1NPNPskFex0j93yKbHt0cHyg== - dependencies: - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-remap-async-to-generator" "^7.22.5" - "@babel/plugin-syntax-async-generators" "^7.8.4" - -"@babel/plugin-transform-async-to-generator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775" - integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ== - dependencies: - "@babel/helper-module-imports" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-remap-async-to-generator" "^7.22.5" - -"@babel/plugin-transform-block-scoped-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024" - integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-block-scoping@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz#8bfc793b3a4b2742c0983fadc1480d843ecea31b" - integrity sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-class-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz#97a56e31ad8c9dc06a0b3710ce7803d5a48cca77" - integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-class-static-block@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz#3e40c46f048403472d6f4183116d5e46b1bff5ba" - integrity sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - -"@babel/plugin-transform-classes@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.5.tgz#635d4e98da741fad814984639f4c0149eb0135e1" - integrity sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-compilation-targets" "^7.22.5" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.5" - globals "^11.1.0" - -"@babel/plugin-transform-computed-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869" - integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/template" "^7.22.5" - -"@babel/plugin-transform-destructuring@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz#d3aca7438f6c26c78cdd0b0ba920a336001b27cc" - integrity sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-dotall-regex@^7.22.5", "@babel/plugin-transform-dotall-regex@^7.4.4": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165" - integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-duplicate-keys@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz#b6e6428d9416f5f0bba19c70d1e6e7e0b88ab285" - integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-dynamic-import@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz#d6908a8916a810468c4edff73b5b75bda6ad393e" - integrity sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - -"@babel/plugin-transform-exponentiation-operator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a" - integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g== - dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-export-namespace-from@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz#57c41cb1d0613d22f548fddd8b288eedb9973a5b" - integrity sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - -"@babel/plugin-transform-for-of@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz#ab1b8a200a8f990137aff9a084f8de4099ab173f" - integrity sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-function-name@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143" - integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg== - dependencies: - "@babel/helper-compilation-targets" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-json-strings@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz#14b64352fdf7e1f737eed68de1a1468bd2a77ec0" - integrity sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-json-strings" "^7.8.3" - -"@babel/plugin-transform-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920" - integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-logical-assignment-operators@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz#66ae5f068fd5a9a5dc570df16f56c2a8462a9d6c" - integrity sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - -"@babel/plugin-transform-member-expression-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def" - integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-modules-amd@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz#4e045f55dcf98afd00f85691a68fc0780704f526" - integrity sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ== - dependencies: - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-modules-commonjs@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz#7d9875908d19b8c0536085af7b053fd5bd651bfa" - integrity sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA== - dependencies: - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-simple-access" "^7.22.5" - -"@babel/plugin-transform-modules-systemjs@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz#18c31410b5e579a0092638f95c896c2a98a5d496" - integrity sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ== - dependencies: - "@babel/helper-hoist-variables" "^7.22.5" - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-identifier" "^7.22.5" - -"@babel/plugin-transform-modules-umd@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz#4694ae40a87b1745e3775b6a7fe96400315d4f98" - integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ== - dependencies: - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f" - integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-new-target@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz#1b248acea54ce44ea06dfd37247ba089fcf9758d" - integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-nullish-coalescing-operator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz#f8872c65776e0b552e0849d7596cddd416c3e381" - integrity sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - -"@babel/plugin-transform-numeric-separator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz#57226a2ed9e512b9b446517ab6fa2d17abb83f58" - integrity sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - -"@babel/plugin-transform-object-rest-spread@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz#9686dc3447df4753b0b2a2fae7e8bc33cdc1f2e1" - integrity sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ== - dependencies: - "@babel/compat-data" "^7.22.5" - "@babel/helper-compilation-targets" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.22.5" - -"@babel/plugin-transform-object-super@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c" - integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.5" - -"@babel/plugin-transform-optional-catch-binding@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz#842080be3076703be0eaf32ead6ac8174edee333" - integrity sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - -"@babel/plugin-transform-optional-chaining@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.5.tgz#1003762b9c14295501beb41be72426736bedd1e0" - integrity sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - -"@babel/plugin-transform-parameters@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz#c3542dd3c39b42c8069936e48717a8d179d63a18" - integrity sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-private-methods@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz#21c8af791f76674420a147ae62e9935d790f8722" - integrity sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-private-property-in-object@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz#07a77f28cbb251546a43d175a1dda4cf3ef83e32" - integrity sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-create-class-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - -"@babel/plugin-transform-property-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766" - integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-regenerator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz#cd8a68b228a5f75fa01420e8cc2fc400f0fc32aa" - integrity sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - regenerator-transform "^0.15.1" - -"@babel/plugin-transform-reserved-words@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz#832cd35b81c287c4bcd09ce03e22199641f964fb" - integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-shorthand-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624" - integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-spread@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b" - integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - -"@babel/plugin-transform-sticky-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa" - integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-template-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff" - integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-typeof-symbol@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz#5e2ba478da4b603af8673ff7c54f75a97b716b34" - integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-typescript@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.5.tgz#5c0f7adfc1b5f38c4dbc8f79b1f0f8074134bd7d" - integrity sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-create-class-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-typescript" "^7.22.5" - -"@babel/plugin-transform-unicode-escapes@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz#ce0c248522b1cb22c7c992d88301a5ead70e806c" - integrity sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-unicode-property-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz#098898f74d5c1e86660dc112057b2d11227f1c81" - integrity sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-unicode-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183" - integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-unicode-sets-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz#77788060e511b708ffc7d42fdfbc5b37c3004e91" - integrity sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/preset-env@^7.21.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.5.tgz#3da66078b181f3d62512c51cf7014392c511504e" - integrity sha512-fj06hw89dpiZzGZtxn+QybifF07nNiZjZ7sazs2aVDcysAZVGjW7+7iFYxg6GLNM47R/thYfLdrXc+2f11Vi9A== - dependencies: - "@babel/compat-data" "^7.22.5" - "@babel/helper-compilation-targets" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-option" "^7.22.5" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.5" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.22.5" - "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" - "@babel/plugin-syntax-async-generators" "^7.8.4" - "@babel/plugin-syntax-class-properties" "^7.12.13" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-import-assertions" "^7.22.5" - "@babel/plugin-syntax-import-attributes" "^7.22.5" - "@babel/plugin-syntax-import-meta" "^7.10.4" - "@babel/plugin-syntax-json-strings" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - "@babel/plugin-syntax-top-level-await" "^7.14.5" - "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" - "@babel/plugin-transform-arrow-functions" "^7.22.5" - "@babel/plugin-transform-async-generator-functions" "^7.22.5" - "@babel/plugin-transform-async-to-generator" "^7.22.5" - "@babel/plugin-transform-block-scoped-functions" "^7.22.5" - "@babel/plugin-transform-block-scoping" "^7.22.5" - "@babel/plugin-transform-class-properties" "^7.22.5" - "@babel/plugin-transform-class-static-block" "^7.22.5" - "@babel/plugin-transform-classes" "^7.22.5" - "@babel/plugin-transform-computed-properties" "^7.22.5" - "@babel/plugin-transform-destructuring" "^7.22.5" - "@babel/plugin-transform-dotall-regex" "^7.22.5" - "@babel/plugin-transform-duplicate-keys" "^7.22.5" - "@babel/plugin-transform-dynamic-import" "^7.22.5" - "@babel/plugin-transform-exponentiation-operator" "^7.22.5" - "@babel/plugin-transform-export-namespace-from" "^7.22.5" - "@babel/plugin-transform-for-of" "^7.22.5" - "@babel/plugin-transform-function-name" "^7.22.5" - "@babel/plugin-transform-json-strings" "^7.22.5" - "@babel/plugin-transform-literals" "^7.22.5" - "@babel/plugin-transform-logical-assignment-operators" "^7.22.5" - "@babel/plugin-transform-member-expression-literals" "^7.22.5" - "@babel/plugin-transform-modules-amd" "^7.22.5" - "@babel/plugin-transform-modules-commonjs" "^7.22.5" - "@babel/plugin-transform-modules-systemjs" "^7.22.5" - "@babel/plugin-transform-modules-umd" "^7.22.5" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" - "@babel/plugin-transform-new-target" "^7.22.5" - "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.5" - "@babel/plugin-transform-numeric-separator" "^7.22.5" - "@babel/plugin-transform-object-rest-spread" "^7.22.5" - "@babel/plugin-transform-object-super" "^7.22.5" - "@babel/plugin-transform-optional-catch-binding" "^7.22.5" - "@babel/plugin-transform-optional-chaining" "^7.22.5" - "@babel/plugin-transform-parameters" "^7.22.5" - "@babel/plugin-transform-private-methods" "^7.22.5" - "@babel/plugin-transform-private-property-in-object" "^7.22.5" - "@babel/plugin-transform-property-literals" "^7.22.5" - "@babel/plugin-transform-regenerator" "^7.22.5" - "@babel/plugin-transform-reserved-words" "^7.22.5" - "@babel/plugin-transform-shorthand-properties" "^7.22.5" - "@babel/plugin-transform-spread" "^7.22.5" - "@babel/plugin-transform-sticky-regex" "^7.22.5" - "@babel/plugin-transform-template-literals" "^7.22.5" - "@babel/plugin-transform-typeof-symbol" "^7.22.5" - "@babel/plugin-transform-unicode-escapes" "^7.22.5" - "@babel/plugin-transform-unicode-property-regex" "^7.22.5" - "@babel/plugin-transform-unicode-regex" "^7.22.5" - "@babel/plugin-transform-unicode-sets-regex" "^7.22.5" - "@babel/preset-modules" "^0.1.5" - "@babel/types" "^7.22.5" - babel-plugin-polyfill-corejs2 "^0.4.3" - babel-plugin-polyfill-corejs3 "^0.8.1" - babel-plugin-polyfill-regenerator "^0.5.0" - core-js-compat "^3.30.2" - semver "^6.3.0" - -"@babel/preset-modules@^0.1.5": - version "0.1.5" - resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9" - integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" - "@babel/plugin-transform-dotall-regex" "^7.4.4" - "@babel/types" "^7.4.4" - esutils "^2.0.2" - -"@babel/preset-typescript@^7.21.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz#16367d8b01d640e9a507577ed4ee54e0101e51c8" - integrity sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-option" "^7.22.5" - "@babel/plugin-syntax-jsx" "^7.22.5" - "@babel/plugin-transform-modules-commonjs" "^7.22.5" - "@babel/plugin-transform-typescript" "^7.22.5" - -"@babel/regjsgen@^0.8.0": - version "0.8.0" - resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" - integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== - -"@babel/runtime@7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.1.tgz#b4116a6b6711d010b2dad3b7b6e43bf1b9954740" - integrity sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA== - dependencies: - regenerator-runtime "^0.13.4" - -"@babel/runtime@^7.12.5", "@babel/runtime@^7.8.4": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.5.tgz#8564dd588182ce0047d55d7a75e93921107b57ec" - integrity sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA== - dependencies: - regenerator-runtime "^0.13.11" - -"@babel/template@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.5.tgz#0c8c4d944509875849bd0344ff0050756eefc6ec" - integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw== - dependencies: - "@babel/code-frame" "^7.22.5" - "@babel/parser" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/traverse@^7.21.5", "@babel/traverse@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.5.tgz#44bd276690db6f4940fdb84e1cb4abd2f729ccd1" - integrity sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ== - dependencies: - "@babel/code-frame" "^7.22.5" - "@babel/generator" "^7.22.5" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-hoist-variables" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.5" - "@babel/parser" "^7.22.5" - "@babel/types" "^7.22.5" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/types@^7.21.5", "@babel/types@^7.22.5", "@babel/types@^7.4.4": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.5.tgz#cd93eeaab025880a3a47ec881f4b096a5b786fbe" - integrity sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA== - dependencies: - "@babel/helper-string-parser" "^7.22.5" - "@babel/helper-validator-identifier" "^7.22.5" - to-fast-properties "^2.0.0" - -"@cspotcode/source-map-support@^0.8.0": - version "0.8.1" - resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" - integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== - dependencies: - "@jridgewell/trace-mapping" "0.3.9" - -"@edge-runtime/format@2.1.0": - version "2.1.0" - resolved "https://registry.yarnpkg.com/@edge-runtime/format/-/format-2.1.0.tgz#9ceb39fa350f4619871d6c850d22ca9c5c4eccb7" - integrity sha512-gc2qbYEIIJRczBApBPznVI1c5vZgzrZQOsFZnAxxFiYah9qldHiu1YEitzSvXI8X8ZgvAguuIiyIbpWz17nlXA== - -"@edge-runtime/node-utils@2.0.3": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@edge-runtime/node-utils/-/node-utils-2.0.3.tgz#e4f6e0d761734ca82564363cacae8f0555263871" - integrity sha512-JUSbi5xu/A8+D2t9B9wfirCI1J8n8q0660FfmqZgA+n3RqxD3y7SnamL1sKRE5/AbHsKs9zcqCbK2YDklbc9Bg== - -"@edge-runtime/primitives@2.1.2": - version "2.1.2" - resolved "https://registry.yarnpkg.com/@edge-runtime/primitives/-/primitives-2.1.2.tgz#8ff657f12a7f8c7fc4e3a0c10ec19356ef2d656d" - integrity sha512-SR04SMDybALlhIYIi0hiuEUwIl0b7Sn+RKwQkX6hydg4+AKMzBNDFhj2nqHDD1+xkHArV9EhmJIb6iGjShwSzg== - -"@edge-runtime/primitives@3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@edge-runtime/primitives/-/primitives-3.0.1.tgz#36eb40c016bf9f0c7eaa10df7e5e7b59e2114202" - integrity sha512-l5NNDcPkKW4N6qRmB8zzpCF6uRW1S808V/zm72z7b/aWwZUYbmEPPkzyhGAW0aQxLU1pGdZ8u2gNjamdaU6RXw== - -"@edge-runtime/primitives@3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@edge-runtime/primitives/-/primitives-3.0.3.tgz#adc6a4bd34c44faf81c954cf8e5816c7d408a1ea" - integrity sha512-YnfMWMRQABAH8IsnFMJWMW+SyB4ZeYBPnR7V0aqdnew7Pq60cbH5DyFjS/FhiLwvHQk9wBREmXD7PP0HooEQ1A== - -"@edge-runtime/vm@3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@edge-runtime/vm/-/vm-3.0.1.tgz#6a81178fca67f89744ce0bc235fa791427191b3b" - integrity sha512-69twXLIcqVx0iNlc1vFqnXgka2CZi2c/QBAmMzXBk0M6mPG+ICCBh2dd+cv1K+HW2pfLuSW+EskkFXWGeCf1Vw== - dependencies: - "@edge-runtime/primitives" "3.0.1" - -"@edge-runtime/vm@3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@edge-runtime/vm/-/vm-3.0.3.tgz#92f1930d1eb8d0ccf6a3c165561cc22b2d9ddff8" - integrity sha512-SPfI1JeIRNs/4EEE2Oc0X6gG3RqjD1TnKu2lwmwFXq0435xgZGKhc3UiKkYAdoMn2dNFD73nlabMKHBRoMRpxg== - dependencies: - "@edge-runtime/primitives" "3.0.3" - -"@emotion/hash@^0.9.0": - version "0.9.1" - resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.9.1.tgz#4ffb0055f7ef676ebc3a5a91fb621393294e2f43" - integrity sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ== - -"@esbuild/android-arm64@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz#bafb75234a5d3d1b690e7c2956a599345e84a2fd" - integrity sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA== - -"@esbuild/android-arm64@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.6.tgz#b11bd4e4d031bb320c93c83c137797b2be5b403b" - integrity sha512-YnYSCceN/dUzUr5kdtUzB+wZprCafuD89Hs0Aqv9QSdwhYQybhXTaSTcrl6X/aWThn1a/j0eEpUBGOE7269REg== - -"@esbuild/android-arm@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.19.tgz#5898f7832c2298bc7d0ab53701c57beb74d78b4d" - integrity sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A== - -"@esbuild/android-arm@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.6.tgz#ac6b5674da2149997f6306b3314dae59bbe0ac26" - integrity sha512-bSC9YVUjADDy1gae8RrioINU6e1lCkg3VGVwm0QQ2E1CWcC4gnMce9+B6RpxuSsrsXsk1yojn7sp1fnG8erE2g== - -"@esbuild/android-x64@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.19.tgz#658368ef92067866d95fb268719f98f363d13ae1" - integrity sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww== - -"@esbuild/android-x64@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.6.tgz#18c48bf949046638fc209409ff684c6bb35a5462" - integrity sha512-MVcYcgSO7pfu/x34uX9u2QIZHmXAB7dEiLQC5bBl5Ryqtpj9lT2sg3gNDEsrPEmimSJW2FXIaxqSQ501YLDsZQ== - -"@esbuild/darwin-arm64@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz#584c34c5991b95d4d48d333300b1a4e2ff7be276" - integrity sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg== - -"@esbuild/darwin-arm64@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.6.tgz#b3fe19af1e4afc849a07c06318124e9c041e0646" - integrity sha512-bsDRvlbKMQMt6Wl08nHtFz++yoZHsyTOxnjfB2Q95gato+Yi4WnRl13oC2/PJJA9yLCoRv9gqT/EYX0/zDsyMA== - -"@esbuild/darwin-x64@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz#7751d236dfe6ce136cce343dce69f52d76b7f6cb" - integrity sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw== - -"@esbuild/darwin-x64@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.6.tgz#f4dacd1ab21e17b355635c2bba6a31eba26ba569" - integrity sha512-xh2A5oPrYRfMFz74QXIQTQo8uA+hYzGWJFoeTE8EvoZGHb+idyV4ATaukaUvnnxJiauhs/fPx3vYhU4wiGfosg== - -"@esbuild/freebsd-arm64@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz#cacd171665dd1d500f45c167d50c6b7e539d5fd2" - integrity sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ== - -"@esbuild/freebsd-arm64@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.6.tgz#ea4531aeda70b17cbe0e77b0c5c36298053855b4" - integrity sha512-EnUwjRc1inT4ccZh4pB3v1cIhohE2S4YXlt1OvI7sw/+pD+dIE4smwekZlEPIwY6PhU6oDWwITrQQm5S2/iZgg== - -"@esbuild/freebsd-x64@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz#0769456eee2a08b8d925d7c00b79e861cb3162e4" - integrity sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ== - -"@esbuild/freebsd-x64@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.6.tgz#1896170b3c9f63c5e08efdc1f8abc8b1ed7af29f" - integrity sha512-Uh3HLWGzH6FwpviUcLMKPCbZUAFzv67Wj5MTwK6jn89b576SR2IbEp+tqUHTr8DIl0iDmBAf51MVaP7pw6PY5Q== - -"@esbuild/linux-arm64@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz#38e162ecb723862c6be1c27d6389f48960b68edb" - integrity sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg== - -"@esbuild/linux-arm64@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.6.tgz#967dfb951c6b2de6f2af82e96e25d63747f75079" - integrity sha512-bUR58IFOMJX523aDVozswnlp5yry7+0cRLCXDsxnUeQYJik1DukMY+apBsLOZJblpH+K7ox7YrKrHmJoWqVR9w== - -"@esbuild/linux-arm@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz#1a2cd399c50040184a805174a6d89097d9d1559a" - integrity sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA== - -"@esbuild/linux-arm@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.6.tgz#097a0ee2be39fed3f37ea0e587052961e3bcc110" - integrity sha512-7YdGiurNt7lqO0Bf/U9/arrPWPqdPqcV6JCZda4LZgEn+PTQ5SMEI4MGR52Bfn3+d6bNEGcWFzlIxiQdS48YUw== - -"@esbuild/linux-ia32@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz#e28c25266b036ce1cabca3c30155222841dc035a" - integrity sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ== - -"@esbuild/linux-ia32@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.6.tgz#a38a789d0ed157495a6b5b4469ec7868b59e5278" - integrity sha512-ujp8uoQCM9FRcbDfkqECoARsLnLfCUhKARTP56TFPog8ie9JG83D5GVKjQ6yVrEVdMie1djH86fm98eY3quQkQ== - -"@esbuild/linux-loong64@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz#0f887b8bb3f90658d1a0117283e55dbd4c9dcf72" - integrity sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ== - -"@esbuild/linux-loong64@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.6.tgz#ae3983d0fb4057883c8246f57d2518c2af7cf2ad" - integrity sha512-y2NX1+X/Nt+izj9bLoiaYB9YXT/LoaQFYvCkVD77G/4F+/yuVXYCWz4SE9yr5CBMbOxOfBcy/xFL4LlOeNlzYQ== - -"@esbuild/linux-mips64el@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz#f5d2a0b8047ea9a5d9f592a178ea054053a70289" - integrity sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A== - -"@esbuild/linux-mips64el@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.6.tgz#15fbbe04648d944ec660ee5797febdf09a9bd6af" - integrity sha512-09AXKB1HDOzXD+j3FdXCiL/MWmZP0Ex9eR8DLMBVcHorrWJxWmY8Nms2Nm41iRM64WVx7bA/JVHMv081iP2kUA== - -"@esbuild/linux-ppc64@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz#876590e3acbd9fa7f57a2c7d86f83717dbbac8c7" - integrity sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg== - -"@esbuild/linux-ppc64@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.6.tgz#38210094e8e1a971f2d1fd8e48462cc65f15ef19" - integrity sha512-AmLhMzkM8JuqTIOhxnX4ubh0XWJIznEynRnZAVdA2mMKE6FAfwT2TWKTwdqMG+qEaeyDPtfNoZRpJbD4ZBv0Tg== - -"@esbuild/linux-riscv64@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz#7f49373df463cd9f41dc34f9b2262d771688bf09" - integrity sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA== - -"@esbuild/linux-riscv64@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.6.tgz#bc3c66d5578c3b9951a6ed68763f2a6856827e4a" - integrity sha512-Y4Ri62PfavhLQhFbqucysHOmRamlTVK10zPWlqjNbj2XMea+BOs4w6ASKwQwAiqf9ZqcY9Ab7NOU4wIgpxwoSQ== - -"@esbuild/linux-s390x@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz#e2afd1afcaf63afe2c7d9ceacd28ec57c77f8829" - integrity sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q== - -"@esbuild/linux-s390x@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.6.tgz#d7ba7af59285f63cfce6e5b7f82a946f3e6d67fc" - integrity sha512-SPUiz4fDbnNEm3JSdUW8pBJ/vkop3M1YwZAVwvdwlFLoJwKEZ9L98l3tzeyMzq27CyepDQ3Qgoba44StgbiN5Q== - -"@esbuild/linux-x64@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz#8a0e9738b1635f0c53389e515ae83826dec22aa4" - integrity sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw== - -"@esbuild/linux-x64@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.6.tgz#ba51f8760a9b9370a2530f98964be5f09d90fed0" - integrity sha512-a3yHLmOodHrzuNgdpB7peFGPx1iJ2x6m+uDvhP2CKdr2CwOaqEFMeSqYAHU7hG+RjCq8r2NFujcd/YsEsFgTGw== - -"@esbuild/netbsd-x64@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz#c29fb2453c6b7ddef9a35e2c18b37bda1ae5c462" - integrity sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q== - -"@esbuild/netbsd-x64@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.6.tgz#e84d6b6fdde0261602c1e56edbb9e2cb07c211b9" - integrity sha512-EanJqcU/4uZIBreTrnbnre2DXgXSa+Gjap7ifRfllpmyAU7YMvaXmljdArptTHmjrkkKm9BK6GH5D5Yo+p6y5A== - -"@esbuild/openbsd-x64@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz#95e75a391403cb10297280d524d66ce04c920691" - integrity sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g== - -"@esbuild/openbsd-x64@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.6.tgz#cf4b9fb80ce6d280a673d54a731d9c661f88b083" - integrity sha512-xaxeSunhQRsTNGFanoOkkLtnmMn5QbA0qBhNet/XLVsc+OVkpIWPHcr3zTW2gxVU5YOHFbIHR9ODuaUdNza2Vw== - -"@esbuild/sunos-x64@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz#722eaf057b83c2575937d3ffe5aeb16540da7273" - integrity sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg== - -"@esbuild/sunos-x64@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.6.tgz#a6838e246079b24d962b9dcb8d208a3785210a73" - integrity sha512-gnMnMPg5pfMkZvhHee21KbKdc6W3GR8/JuE0Da1kjwpK6oiFU3nqfHuVPgUX2rsOx9N2SadSQTIYV1CIjYG+xw== - -"@esbuild/win32-arm64@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz#9aa9dc074399288bdcdd283443e9aeb6b9552b6f" - integrity sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag== - -"@esbuild/win32-arm64@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.6.tgz#ace0186e904d109ea4123317a3ba35befe83ac21" - integrity sha512-G95n7vP1UnGJPsVdKXllAJPtqjMvFYbN20e8RK8LVLhlTiSOH1sd7+Gt7rm70xiG+I5tM58nYgwWrLs6I1jHqg== - -"@esbuild/win32-ia32@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz#95ad43c62ad62485e210f6299c7b2571e48d2b03" - integrity sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw== - -"@esbuild/win32-ia32@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.6.tgz#7fb3f6d4143e283a7f7dffc98a6baf31bb365c7e" - integrity sha512-96yEFzLhq5bv9jJo5JhTs1gI+1cKQ83cUpyxHuGqXVwQtY5Eq54ZEsKs8veKtiKwlrNimtckHEkj4mRh4pPjsg== - -"@esbuild/win32-x64@0.17.19": - version "0.17.19" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz#8cfaf2ff603e9aabb910e9c0558c26cf32744061" - integrity sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA== - -"@esbuild/win32-x64@0.17.6": - version "0.17.6" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.6.tgz#563ff4277f1230a006472664fa9278a83dd124da" - integrity sha512-n6d8MOyUrNp6G4VSpRcgjs5xj4A91svJSaiwLIDWVWEsZtpN5FA9NlBbZHDmAJc2e8e6SF4tkBD3HAvPF+7igA== - -"@gar/promisify@^1.0.1": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6" - integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== - -"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": - version "0.3.3" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" - integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== - dependencies: - "@jridgewell/set-array" "^1.0.1" - "@jridgewell/sourcemap-codec" "^1.4.10" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/resolve-uri@3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" - integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== - -"@jridgewell/resolve-uri@^3.0.3": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" - integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== - -"@jridgewell/set-array@^1.0.1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" - integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== - -"@jridgewell/sourcemap-codec@1.4.14": - version "1.4.14" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" - integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== - -"@jridgewell/sourcemap-codec@^1.4.10": - version "1.4.15" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" - integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== - -"@jridgewell/trace-mapping@0.3.9": - version "0.3.9" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" - integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== - dependencies: - "@jridgewell/resolve-uri" "^3.0.3" - "@jridgewell/sourcemap-codec" "^1.4.10" - -"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.18" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" - integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== - dependencies: - "@jridgewell/resolve-uri" "3.1.0" - "@jridgewell/sourcemap-codec" "1.4.14" - -"@jspm/core@^2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@jspm/core/-/core-2.0.1.tgz#3f08c59c60a5f5e994523ed6b0b665ec80adc94e" - integrity sha512-Lg3PnLp0QXpxwLIAuuJboLeRaIhrgJjeuh797QADg3xz8wGLugQOS5DpsE8A6i6Adgzf+bacllkKZG3J0tGfDw== - -"@mapbox/node-pre-gyp@^1.0.5": - version "1.0.10" - resolved "https://registry.yarnpkg.com/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz#8e6735ccebbb1581e5a7e652244cadc8a844d03c" - integrity sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA== - dependencies: - detect-libc "^2.0.0" - https-proxy-agent "^5.0.0" - make-dir "^3.1.0" - node-fetch "^2.6.7" - nopt "^5.0.0" - npmlog "^5.0.1" - rimraf "^3.0.2" - semver "^7.3.5" - tar "^6.1.11" - -"@next/env@13.4.6": - version "13.4.6" - resolved "https://registry.yarnpkg.com/@next/env/-/env-13.4.6.tgz#3f2041c7758660d7255707ae4cb9166519113dea" - integrity sha512-nqUxEtvDqFhmV1/awSg0K2XHNwkftNaiUqCYO9e6+MYmqNObpKVl7OgMkGaQ2SZnFx5YqF0t60ZJTlyJIDAijg== - -"@next/swc-darwin-arm64@13.4.6": - version "13.4.6" - resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.6.tgz#47485f3deaee6681b4a4036c74bb9c4b728d5ddd" - integrity sha512-ahi6VP98o4HV19rkOXPSUu+ovfHfUxbJQ7VVJ7gL2FnZRr7onEFC1oGQ6NQHpm8CxpIzSSBW79kumlFMOmZVjg== - -"@next/swc-darwin-x64@13.4.6": - version "13.4.6" - resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.6.tgz#a6a5b232ec0f2079224fb8ed6bf11dc479af1acf" - integrity sha512-13cXxKFsPJIJKzUqrU5XB1mc0xbUgYsRcdH6/rB8c4NMEbWGdtD4QoK9ShN31TZdePpD4k416Ur7p+deMIxnnA== - -"@next/swc-linux-arm64-gnu@13.4.6": - version "13.4.6" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.6.tgz#2a67144e863d9c45fdbd13c7827370e7f2a28405" - integrity sha512-Ti+NMHEjTNktCVxNjeWbYgmZvA2AqMMI2AMlzkXsU7W4pXCMhrryAmAIoo+7YdJbsx01JQWYVxGe62G6DoCLaA== - -"@next/swc-linux-arm64-musl@13.4.6": - version "13.4.6" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.6.tgz#5a191ac3575a70598e9e9c6e7264fc0b8a90b2db" - integrity sha512-OHoC6gO7XfjstgwR+z6UHKlvhqJfyMtNaJidjx3sEcfaDwS7R2lqR5AABi8PuilGgi0BO0O0sCXqLlpp3a0emQ== - -"@next/swc-linux-x64-gnu@13.4.6": - version "13.4.6" - resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.6.tgz#d38adf842a8b8f9de492454328fd32a2c53350f3" - integrity sha512-zHZxPGkUlpfNJCboUrFqwlwEX5vI9LSN70b8XEb0DYzzlrZyCyOi7hwDp/+3Urm9AB7YCAJkgR5Sp1XBVjHdfQ== - -"@next/swc-linux-x64-musl@13.4.6": - version "13.4.6" - resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.6.tgz#74c745774358b78be7f958e7a8b7d93936cd6ebc" - integrity sha512-K/Y8lYGTwTpv5ME8PSJxwxLolaDRdVy+lOd9yMRMiQE0BLUhtxtCWC9ypV42uh9WpLjoaD0joOsB9Q6mbrSGJg== - -"@next/swc-win32-arm64-msvc@13.4.6": - version "13.4.6" - resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.6.tgz#1e1e02c175573e64808fc1a7e8650e3e217f1edc" - integrity sha512-U6LtxEUrjBL2tpW+Kr1nHCSJWNeIed7U7l5o7FiKGGwGgIlFi4UHDiLI6TQ2lxi20fAU33CsruV3U0GuzMlXIw== - -"@next/swc-win32-ia32-msvc@13.4.6": - version "13.4.6" - resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.6.tgz#2b528ae3ec7f6e727f4f0d81a1015f63da55c7a6" - integrity sha512-eEBeAqpCfhdPSlCZCayjCiyIllVqy4tcqvm1xmg3BgJG0G5ITiMM4Cw2WVeRSgWDJqQGRyyb+q8Y2ltzhXOWsQ== - -"@next/swc-win32-x64-msvc@13.4.6": - version "13.4.6" - resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.6.tgz#38620bd68267ff13e50ecd432f1822eac51382a8" - integrity sha512-OrZs94AuO3ZS5tnqlyPRNgfWvboXaDQCi5aXGve3o3C+Sj0ctMUV9+Do+0zMvvLRumR8E0PTWKvtz9n5vzIsWw== - -"@nodelib/fs.scandir@2.1.5": - version "2.1.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" - integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== - dependencies: - "@nodelib/fs.stat" "2.0.5" - run-parallel "^1.1.9" - -"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" - integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== - -"@nodelib/fs.walk@^1.2.3": - version "1.2.8" - resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" - integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== - dependencies: - "@nodelib/fs.scandir" "2.1.5" - fastq "^1.6.0" - -"@npmcli/fs@^1.0.0": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-1.1.1.tgz#72f719fe935e687c56a4faecf3c03d06ba593257" - integrity sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ== - dependencies: - "@gar/promisify" "^1.0.1" - semver "^7.3.5" - -"@npmcli/move-file@^1.0.1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.2.tgz#1a82c3e372f7cae9253eb66d72543d6b8685c674" - integrity sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg== - dependencies: - mkdirp "^1.0.4" - rimraf "^3.0.2" - -"@npmcli/package-json@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-2.0.0.tgz#3bbcf4677e21055adbe673d9f08c9f9cde942e4a" - integrity sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA== - dependencies: - json-parse-even-better-errors "^2.3.1" - -"@remix-run/dev@npm:@vercel/remix-run-dev@1.17.0": - version "1.17.0" - resolved "https://registry.yarnpkg.com/@vercel/remix-run-dev/-/remix-run-dev-1.17.0.tgz#9182685bc76fced4f02200bc7e8e19027411e5e0" - integrity sha512-S71dx9sxHi/9Ery9za+ryQYNq5rEA/OeWFaKalHsgA7jYhiJC2U2iP9lV4m251oLXp3K6J8gwY0zF1CWmA7ANA== - dependencies: - "@babel/core" "^7.21.8" - "@babel/generator" "^7.21.5" - "@babel/parser" "^7.21.8" - "@babel/plugin-syntax-jsx" "^7.21.4" - "@babel/plugin-syntax-typescript" "^7.21.4" - "@babel/preset-env" "^7.21.5" - "@babel/preset-typescript" "^7.21.5" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" - "@npmcli/package-json" "^2.0.0" - "@remix-run/server-runtime" "1.17.0" - "@vanilla-extract/integration" "^6.2.0" - arg "^5.0.1" - cacache "^15.0.5" - chalk "^4.1.2" - chokidar "^3.5.1" - dotenv "^16.0.0" - esbuild "0.17.6" - esbuild-plugin-polyfill-node "^0.2.0" - execa "5.1.1" - exit-hook "2.2.1" - express "^4.17.1" - fast-glob "3.2.11" - fs-extra "^10.0.0" - get-port "^5.1.1" - gunzip-maybe "^1.4.2" - inquirer "^8.2.1" - jsesc "3.0.2" - json5 "^2.2.2" - lodash "^4.17.21" - lodash.debounce "^4.0.8" - lru-cache "^7.14.1" - minimatch "^9.0.0" - node-fetch "^2.6.9" - ora "^5.4.1" - picomatch "^2.3.1" - postcss "^8.4.19" - postcss-discard-duplicates "^5.1.0" - postcss-load-config "^4.0.1" - postcss-modules "^6.0.0" - prettier "^2.7.1" - pretty-ms "^7.0.1" - proxy-agent "^5.0.0" - react-refresh "^0.14.0" - recast "^0.21.5" - remark-frontmatter "4.0.1" - remark-mdx-frontmatter "^1.0.1" - semver "^7.3.7" - sort-package-json "^1.55.0" - tar-fs "^2.1.1" - tsconfig-paths "^4.0.0" - ws "^7.4.5" - xdm "^2.0.0" - -"@remix-run/router@1.6.3": - version "1.6.3" - resolved "https://registry.yarnpkg.com/@remix-run/router/-/router-1.6.3.tgz#8205baf6e17ef93be35bf62c37d2d594e9be0dad" - integrity sha512-EXJysQ7J3veRECd0kZFQwYYd5sJMcq2O/m60zu1W2l3oVQ9xtub8jTOtYRE0+M2iomyG/W3Ps7+vp2kna0C27Q== - -"@remix-run/server-runtime@1.17.0": - version "1.17.0" - resolved "https://registry.yarnpkg.com/@remix-run/server-runtime/-/server-runtime-1.17.0.tgz#f49168e9e1d1e343afe842305f346a934897d8a2" - integrity sha512-xcUXaOibfIFZlvuyuWouz/t3fYhHCqRoKeGxQFGd1BvQBCmPaiau7B1Ao4aJFKyY7eU/L35KCaGzZBTdIF+d5w== - dependencies: - "@remix-run/router" "1.6.3" - "@web3-storage/multipart-parser" "^1.0.0" - cookie "^0.4.1" - set-cookie-parser "^2.4.8" - source-map "^0.7.3" - -"@rollup/pluginutils@^4.0.0": - version "4.2.1" - resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz#e6c6c3aba0744edce3fb2074922d3776c0af2a6d" - integrity sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ== - dependencies: - estree-walker "^2.0.1" - picomatch "^2.2.2" - -"@sinclair/typebox@0.25.24": - version "0.25.24" - resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.25.24.tgz#8c7688559979f7079aacaf31aa881c3aa410b718" - integrity sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ== - -"@sindresorhus/is@^4.0.0": - version "4.6.0" - resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f" - integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw== - -"@swc/helpers@0.5.1": - version "0.5.1" - resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.1.tgz#e9031491aa3f26bfcc974a67f48bd456c8a5357a" - integrity sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg== - dependencies: - tslib "^2.4.0" - -"@szmarczak/http-timer@^4.0.5": - version "4.0.6" - resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.6.tgz#b4a914bb62e7c272d4e5989fe4440f812ab1d807" - integrity sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w== - dependencies: - defer-to-connect "^2.0.0" - -"@tootallnate/once@1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" - integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== - -"@ts-morph/common@~0.11.0": - version "0.11.1" - resolved "https://registry.yarnpkg.com/@ts-morph/common/-/common-0.11.1.tgz#281af2a0642b19354d8aa07a0d50dfdb4aa8164e" - integrity sha512-7hWZS0NRpEsNV8vWJzg7FEz6V8MaLNeJOmwmghqUXTpzk16V1LLZhdo+4QvE/+zv4cVci0OviuJFnqhEfoV3+g== - dependencies: - fast-glob "^3.2.7" - minimatch "^3.0.4" - mkdirp "^1.0.4" - path-browserify "^1.0.1" - -"@tsconfig/node10@^1.0.7": - version "1.0.9" - resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2" - integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== - -"@tsconfig/node12@^1.0.7": - version "1.0.11" - resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" - integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== - -"@tsconfig/node14@^1.0.0": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" - integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== - -"@tsconfig/node16@^1.0.2": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" - integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== - -"@types/acorn@^4.0.0": - version "4.0.6" - resolved "https://registry.yarnpkg.com/@types/acorn/-/acorn-4.0.6.tgz#d61ca5480300ac41a7d973dd5b84d0a591154a22" - integrity sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ== - dependencies: - "@types/estree" "*" - -"@types/cacheable-request@^6.0.1": - version "6.0.3" - resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz#a430b3260466ca7b5ca5bfd735693b36e7a9d183" - integrity sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw== - dependencies: - "@types/http-cache-semantics" "*" - "@types/keyv" "^3.1.4" - "@types/node" "*" - "@types/responselike" "^1.0.0" - -"@types/debug@^4.0.0": - version "4.1.8" - resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.8.tgz#cef723a5d0a90990313faec2d1e22aee5eecb317" - integrity sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ== - dependencies: - "@types/ms" "*" - -"@types/estree-jsx@^0.0.1": - version "0.0.1" - resolved "https://registry.yarnpkg.com/@types/estree-jsx/-/estree-jsx-0.0.1.tgz#c36d7a1afeb47a95a8ee0b7bc8bc705db38f919d" - integrity sha512-gcLAYiMfQklDCPjQegGn0TBAn9it05ISEsEhlKQUddIk7o2XDokOcTN7HBO8tznM0D9dGezvHEfRZBfZf6me0A== - dependencies: - "@types/estree" "*" - -"@types/estree-jsx@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@types/estree-jsx/-/estree-jsx-1.0.0.tgz#7bfc979ab9f692b492017df42520f7f765e98df1" - integrity sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ== - dependencies: - "@types/estree" "*" - -"@types/estree@*", "@types/estree@^1.0.0": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.1.tgz#aa22750962f3bf0e79d753d3cc067f010c95f194" - integrity sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA== - -"@types/glob@^7.1.1": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.2.0.tgz#bc1b5bf3aa92f25bd5dd39f35c57361bdce5b2eb" - integrity sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA== - dependencies: - "@types/minimatch" "*" - "@types/node" "*" - -"@types/hast@^2.0.0": - version "2.3.4" - resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.4.tgz#8aa5ef92c117d20d974a82bdfb6a648b08c0bafc" - integrity sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g== - dependencies: - "@types/unist" "*" - -"@types/http-cache-semantics@*": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz#0ea7b61496902b95890dc4c3a116b60cb8dae812" - integrity sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ== - -"@types/json-schema@^7.0.6": - version "7.0.12" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb" - integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA== - -"@types/keyv@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz#3ccdb1c6751b0c7e52300bcdacd5bcbf8faa75b6" - integrity sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg== - dependencies: - "@types/node" "*" - -"@types/mdast@^3.0.0": - version "3.0.11" - resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.11.tgz#dc130f7e7d9306124286f6d6cee40cf4d14a3dc0" - integrity sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw== - dependencies: - "@types/unist" "*" - -"@types/mdurl@^1.0.0": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@types/mdurl/-/mdurl-1.0.2.tgz#e2ce9d83a613bacf284c7be7d491945e39e1f8e9" - integrity sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA== - -"@types/minimatch@*": - version "5.1.2" - resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca" - integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA== - -"@types/ms@*": - version "0.7.31" - resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz#31b7ca6407128a3d2bbc27fe2d21b345397f6197" - integrity sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA== - -"@types/node-fetch@2.6.3": - version "2.6.3" - resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.3.tgz#175d977f5e24d93ad0f57602693c435c57ad7e80" - integrity sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w== - dependencies: - "@types/node" "*" - form-data "^3.0.0" - -"@types/node-fetch@^2.6.4": - version "2.6.4" - resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.4.tgz#1bc3a26de814f6bf466b25aeb1473fa1afe6a660" - integrity sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg== - dependencies: - "@types/node" "*" - form-data "^3.0.0" - -"@types/node@*", "@types/node@20.3.1": - version "20.3.1" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.3.1.tgz#e8a83f1aa8b649377bb1fb5d7bac5cb90e784dfe" - integrity sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg== - -"@types/node@14.18.33": - version "14.18.33" - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.33.tgz#8c29a0036771569662e4635790ffa9e057db379b" - integrity sha512-qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg== - -"@types/node@^18.11.18": - version "18.16.18" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.18.tgz#85da09bafb66d4bc14f7c899185336d0c1736390" - integrity sha512-/aNaQZD0+iSBAGnvvN2Cx92HqE5sZCPZtx2TsK+4nvV23fFe09jVDvpArXr2j9DnYlzuU9WuoykDDc6wqvpNcw== - -"@types/prop-types@*": - version "15.7.5" - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" - integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== - -"@types/qs@^6.9.7": - version "6.9.7" - resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" - integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== - -"@types/react-dom@18.2.6": - version "18.2.6" - resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.6.tgz#ad621fa71a8db29af7c31b41b2ea3d8a6f4144d1" - integrity sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A== - dependencies: - "@types/react" "*" - -"@types/react@*", "@types/react@18.2.13": - version "18.2.13" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.13.tgz#a98c09bde8b18f80021935b11d2d29ef5f4dcb2f" - integrity sha512-vJ+zElvi/Zn9cVXB5slX2xL8PZodPCwPRDpittQdw43JR2AJ5k3vKdgJJyneV/cYgIbLQUwXa9JVDvUZXGba+Q== - dependencies: - "@types/prop-types" "*" - "@types/scheduler" "*" - csstype "^3.0.2" - -"@types/responselike@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.0.tgz#251f4fe7d154d2bad125abe1b429b23afd262e29" - integrity sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA== - dependencies: - "@types/node" "*" - -"@types/scheduler@*": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.3.tgz#cef09e3ec9af1d63d2a6cc5b383a737e24e6dcf5" - integrity sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ== - -"@types/unist@*", "@types/unist@^2.0.0": - version "2.0.6" - resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" - integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== - -"@vanilla-extract/babel-plugin-debug-ids@^1.0.2": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@vanilla-extract/babel-plugin-debug-ids/-/babel-plugin-debug-ids-1.0.3.tgz#ce07190343b51ed658b385bdce1e79952a4e8526" - integrity sha512-vm4jYu1xhSa6ofQ9AhIpR3DkAp4c+eoR1Rpm8/TQI4DmWbmGbOjYRcqV0aWsfaIlNhN4kFuxFMKBNN9oG6iRzA== - dependencies: - "@babel/core" "^7.20.7" - -"@vanilla-extract/css@^1.10.0": - version "1.11.1" - resolved "https://registry.yarnpkg.com/@vanilla-extract/css/-/css-1.11.1.tgz#0669e0b237d50561d669d8be6246dd601552be1a" - integrity sha512-iLalh4K4sXgkfzsiFUsiek4IY1/N4jtJKdr1ubpyszPE7W7G2v+DAl8KcmKkRA6vS7k5mFNW34e4fNki6T2cbQ== - dependencies: - "@emotion/hash" "^0.9.0" - "@vanilla-extract/private" "^1.0.3" - ahocorasick "1.0.2" - chalk "^4.1.1" - css-what "^6.1.0" - cssesc "^3.0.0" - csstype "^3.0.7" - deep-object-diff "^1.1.9" - deepmerge "^4.2.2" - media-query-parser "^2.0.2" - outdent "^0.8.0" - -"@vanilla-extract/integration@^6.2.0": - version "6.2.1" - resolved "https://registry.yarnpkg.com/@vanilla-extract/integration/-/integration-6.2.1.tgz#e87849ed3d8e9ddd2703b8b8597fdbff08cf62ad" - integrity sha512-+xYJz07G7TFAMZGrOqArOsURG+xcYvqctujEkANjw2McCBvGEK505RxQqOuNiA9Mi9hgGdNp2JedSa94f3eoLg== - dependencies: - "@babel/core" "^7.20.7" - "@babel/plugin-syntax-typescript" "^7.20.0" - "@vanilla-extract/babel-plugin-debug-ids" "^1.0.2" - "@vanilla-extract/css" "^1.10.0" - esbuild "0.17.6" - eval "0.1.6" - find-up "^5.0.0" - javascript-stringify "^2.0.1" - lodash "^4.17.21" - mlly "^1.1.0" - outdent "^0.8.0" - vite "^4.1.4" - vite-node "^0.28.5" - -"@vanilla-extract/private@^1.0.3": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@vanilla-extract/private/-/private-1.0.3.tgz#7ec72bc2ff6fe51f9d650f962e8d1989b073690f" - integrity sha512-17kVyLq3ePTKOkveHxXuIJZtGYs+cSoev7BlP+Lf4916qfDhk/HBjvlYDe8egrea7LNPHKwSZJK/bzZC+Q6AwQ== - -"@vercel/build-utils@6.7.5": - version "6.7.5" - resolved "https://registry.yarnpkg.com/@vercel/build-utils/-/build-utils-6.7.5.tgz#b35f92f1c3907697f608f8c1ee236fe46c4d11c3" - integrity sha512-nzglYEz9BvZH0lptfTtTVDDD3Dyn31gnBGChOUT7J1jkzlMT1IReuysgJPisaWk4v92Ax5SpZL35I0lOQdfKwQ== - -"@vercel/error-utils@1.0.10": - version "1.0.10" - resolved "https://registry.yarnpkg.com/@vercel/error-utils/-/error-utils-1.0.10.tgz#6530e9c930d5cf4c7f96045ec3a0bccaf2e6b14c" - integrity sha512-nsKy2sy+pjUWyKI1V/XXKspVzHMYgSalmj5+EsKWFXZbnNZicqxNtMR94J8Hs7SB4TQxh0s4KhczJtL59AVGMg== - -"@vercel/gatsby-plugin-vercel-analytics@1.0.10": - version "1.0.10" - resolved "https://registry.yarnpkg.com/@vercel/gatsby-plugin-vercel-analytics/-/gatsby-plugin-vercel-analytics-1.0.10.tgz#05109138b24880fcd81476c78580bb00bea09ed5" - integrity sha512-v329WHdtIce+y7oAmaWRvEx59Xfo0FxlQqK4BJG0u6VWYoKWPaflohDAiehIZf/YHCRVb59ZxnzmMOcm/LR8YQ== - dependencies: - "@babel/runtime" "7.12.1" - web-vitals "0.2.4" - -"@vercel/gatsby-plugin-vercel-builder@1.3.10": - version "1.3.10" - resolved "https://registry.yarnpkg.com/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.10.tgz#8e35c86f29ba43eead006eacfc437bb02bbda863" - integrity sha512-LtmjAUrH+1G4ryyjCCqITvPivEFb6qby7rVGRplb+rtI5RrT/igqz95FrAC70+xpSVsqz4nu3j15NkEIR3woog== - dependencies: - "@sinclair/typebox" "0.25.24" - "@vercel/build-utils" "6.7.5" - "@vercel/node" "2.15.2" - "@vercel/routing-utils" "2.2.1" - esbuild "0.14.47" - etag "1.8.1" - fs-extra "11.1.0" - -"@vercel/go@2.5.1": - version "2.5.1" - resolved "https://registry.yarnpkg.com/@vercel/go/-/go-2.5.1.tgz#4deb7450b6372ec81cf48a1b6c37a2f4e956517d" - integrity sha512-yZGzzGmVXt2Rsy1cR0EDbst0fMhdELQY8c3jXy6/FTWJFG1e/40JYksu+WiRCxRBp8e7zfcxMrv0dN8JWRmbPQ== - -"@vercel/hydrogen@0.0.64": - version "0.0.64" - resolved "https://registry.yarnpkg.com/@vercel/hydrogen/-/hydrogen-0.0.64.tgz#94bf921e393dad723bb824e9e5301d1c37c74f35" - integrity sha512-1rzFB664G6Yzp7j4ezW9hvVjqnaU2BhyUdhchbsxtRuxkMpGgPBZKhjzRQHFvlmkz37XLC658T5Nb1P91b4sBw== - -"@vercel/next@3.8.6": - version "3.8.6" - resolved "https://registry.yarnpkg.com/@vercel/next/-/next-3.8.6.tgz#bfb4381c5fb2a5842b9374b57236043020e8b073" - integrity sha512-q+BxVLAfKFjTcak+z3U0SvYpgsnF8spu3Wz0GdRSVHiZpd1TtmIIp5r5RT5WVJLt4NNgmD4KxLNbvXhwjxOFKA== - -"@vercel/nft@0.22.5": - version "0.22.5" - resolved "https://registry.yarnpkg.com/@vercel/nft/-/nft-0.22.5.tgz#951bd7589ceebdd3e280afcf3a13bdacf83f6b7e" - integrity sha512-mug57Wd1BL7GMj9gXMgMeKUjdqO0e4u+0QLPYMFE1rwdJ+55oPy6lp3nIBCS8gOvigT62UI4QKUL2sGqcoW4Hw== - dependencies: - "@mapbox/node-pre-gyp" "^1.0.5" - "@rollup/pluginutils" "^4.0.0" - acorn "^8.6.0" - async-sema "^3.1.1" - bindings "^1.4.0" - estree-walker "2.0.2" - glob "^7.1.3" - graceful-fs "^4.2.9" - micromatch "^4.0.2" - node-gyp-build "^4.2.2" - resolve-from "^5.0.0" - -"@vercel/node@2.15.2": - version "2.15.2" - resolved "https://registry.yarnpkg.com/@vercel/node/-/node-2.15.2.tgz#7a2280bc89906dbc9f6259fbd9209bd175ccecb9" - integrity sha512-1Dn4hdQY/ErHXOB0+h3I0zIlqAb6/2LRBi+8Od+MYG8ooGKkTsK+j9IPWVBWn6ycBsM0eeNTIhqgYSGTYbMjMw== - dependencies: - "@edge-runtime/node-utils" "2.0.3" - "@edge-runtime/primitives" "2.1.2" - "@edge-runtime/vm" "3.0.1" - "@types/node" "14.18.33" - "@types/node-fetch" "2.6.3" - "@vercel/build-utils" "6.7.5" - "@vercel/error-utils" "1.0.10" - "@vercel/static-config" "2.0.17" - async-listen "3.0.0" - edge-runtime "2.4.3" - esbuild "0.14.47" - exit-hook "2.2.1" - node-fetch "2.6.9" - path-to-regexp "6.2.1" - ts-morph "12.0.0" - ts-node "10.9.1" - typescript "4.9.5" - -"@vercel/python@3.1.60": - version "3.1.60" - resolved "https://registry.yarnpkg.com/@vercel/python/-/python-3.1.60.tgz#88383ac219c33a946d80f111d1c54559052db2fd" - integrity sha512-1aYinyTfejS8Us+sOum+RQPYcre0vF3XoL7ohL170ZCcHA0l35qV0b1slGAmLt3pqaHKYy3g/nkzUhuR8XXIrQ== - -"@vercel/redwood@1.1.15": - version "1.1.15" - resolved "https://registry.yarnpkg.com/@vercel/redwood/-/redwood-1.1.15.tgz#d608378c316cf0944ac108a2b93c4d877bede83c" - integrity sha512-j0XaXe4ZpGVHG7XQSmZ3kza6s+ZtOBfRhnSxA70yCkrvPNN3tZgF3fevSKXizfL9fzVDd7Tdj++SCGWMdGfsyA== - dependencies: - "@vercel/nft" "0.22.5" - "@vercel/routing-utils" "2.2.1" - semver "6.1.1" - -"@vercel/remix-builder@1.8.14": - version "1.8.14" - resolved "https://registry.yarnpkg.com/@vercel/remix-builder/-/remix-builder-1.8.14.tgz#dbe490e9cbdfc5e98c8e483a4acca1e27c8565fd" - integrity sha512-4CnYxCv6rgRxyXGnpGySf+K2rihLgTkMKN9pYJKQJh/VmlBcxqYP9tndDEH8sYtDsdUZuSfuX3ecajGuqb/wPA== - dependencies: - "@remix-run/dev" "npm:@vercel/remix-run-dev@1.17.0" - "@vercel/build-utils" "6.7.5" - "@vercel/nft" "0.22.5" - "@vercel/static-config" "2.0.17" - path-to-regexp "6.2.1" - semver "7.3.8" - ts-morph "12.0.0" - -"@vercel/routing-utils@2.2.1": - version "2.2.1" - resolved "https://registry.yarnpkg.com/@vercel/routing-utils/-/routing-utils-2.2.1.tgz#c33a3859f4927c5f8483cb4455a6fb7cbf21778b" - integrity sha512-kzMZsvToDCDskNRZD71B9UAgstec7ujmlGH8cBEo6F/07VaFeji6GQdgd6Zwnrj+TvzQBggKoPQR64VkVY8Lzw== - dependencies: - path-to-regexp "6.1.0" - optionalDependencies: - ajv "^6.0.0" - -"@vercel/ruby@1.3.76": - version "1.3.76" - resolved "https://registry.yarnpkg.com/@vercel/ruby/-/ruby-1.3.76.tgz#9c41dda3a688a2c4498a12a70e99f2dddf826b42" - integrity sha512-J8I0B7wAn8piGoPhBroBfJWgMEJTMEL/2o8MCoCyWdaE7MRtpXhI10pj8IvcUvAECoGJ+SM1Pm+SvBqtbtZ5FQ== - -"@vercel/static-build@1.3.37": - version "1.3.37" - resolved "https://registry.yarnpkg.com/@vercel/static-build/-/static-build-1.3.37.tgz#5542b5c76ce82b1d7e27b10459ecef3cbbdf841c" - integrity sha512-AkmWV8sqXUqkVj4F7vt7LZ9cRfO57U7he23l3xvykD/xV2ufsuLxwgIS9idM5AeqVh7juJNuTJq+ObIht6OgLw== - dependencies: - "@vercel/gatsby-plugin-vercel-analytics" "1.0.10" - "@vercel/gatsby-plugin-vercel-builder" "1.3.10" - -"@vercel/static-config@2.0.17": - version "2.0.17" - resolved "https://registry.yarnpkg.com/@vercel/static-config/-/static-config-2.0.17.tgz#2198e0a29c3f41adb6f074c99b6d42b19b57b401" - integrity sha512-2f50OTVrN07x7pH+XNW0e7cj7T+Ufg+19+a2N3/XZBjQmV+FaMlmSLiaQ4tBxp2H8lWWHzENua7ZSSQPtRZ3/A== - dependencies: - ajv "8.6.3" - json-schema-to-ts "1.6.4" - ts-morph "12.0.0" - -"@web3-storage/multipart-parser@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@web3-storage/multipart-parser/-/multipart-parser-1.0.0.tgz#6b69dc2a32a5b207ba43e556c25cc136a56659c4" - integrity sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw== - -abbrev@1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" - integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== - -abort-controller@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" - integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== - dependencies: - event-target-shim "^5.0.0" - -accepts@~1.3.8: - version "1.3.8" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" - integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== - dependencies: - mime-types "~2.1.34" - negotiator "0.6.3" - -acorn-jsx@^5.0.0: - version "5.3.2" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" - integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== - -acorn-walk@^8.1.1, acorn-walk@^8.2.0: - version "8.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" - integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== - -acorn@^8.0.0, acorn@^8.4.1, acorn@^8.6.0, acorn@^8.7.0, acorn@^8.9.0: - version "8.9.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.9.0.tgz#78a16e3b2bcc198c10822786fa6679e245db5b59" - integrity sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ== - -agent-base@6, agent-base@^6.0.0, agent-base@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" - integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== - dependencies: - debug "4" - -agentkeepalive@^4.2.1: - version "4.3.0" - resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.3.0.tgz#bb999ff07412653c1803b3ced35e50729830a255" - integrity sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg== - dependencies: - debug "^4.1.0" - depd "^2.0.0" - humanize-ms "^1.2.1" - -aggregate-error@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" - integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== - dependencies: - clean-stack "^2.0.0" - indent-string "^4.0.0" - -ahocorasick@1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/ahocorasick/-/ahocorasick-1.0.2.tgz#9eee93aef9d02bfb476d9b648d9b7a40ef2fd500" - integrity sha512-hCOfMzbFx5IDutmWLAt6MZwOUjIfSM9G9FyVxytmE4Rs/5YDPWQrD/+IR1w+FweD9H2oOZEnv36TmkjhNURBVA== - -ajv@8.6.3: - version "8.6.3" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.6.3.tgz#11a66527761dc3e9a3845ea775d2d3c0414e8764" - integrity sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw== - dependencies: - fast-deep-equal "^3.1.1" - json-schema-traverse "^1.0.0" - require-from-string "^2.0.2" - uri-js "^4.2.2" - -ajv@^6.0.0: - version "6.12.6" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" - integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== - dependencies: - fast-deep-equal "^3.1.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ansi-escapes@^4.2.1: - version "4.3.2" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" - integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== - dependencies: - type-fest "^0.21.3" - -ansi-regex@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" - integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== - -ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - -ansi-styles@^4.0.0, ansi-styles@^4.1.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" - integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== - dependencies: - color-convert "^2.0.1" - -anymatch@~3.1.2: - version "3.1.3" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" - integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - -"aproba@^1.0.3 || ^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" - integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== - -are-we-there-yet@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz#372e0e7bd279d8e94c653aaa1f67200884bf3e1c" - integrity sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw== - dependencies: - delegates "^1.0.0" - readable-stream "^3.6.0" - -arg@^4.1.0: - version "4.1.3" - resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" - integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== - -arg@^5.0.1: - version "5.0.2" - resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" - integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== - -argparse@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" - integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== - -array-flatten@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" - integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== - -array-union@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" - integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== - -ast-types@0.15.2: - version "0.15.2" - resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.15.2.tgz#39ae4809393c4b16df751ee563411423e85fb49d" - integrity sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg== - dependencies: - tslib "^2.0.1" - -ast-types@^0.13.2: - version "0.13.4" - resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.13.4.tgz#ee0d77b343263965ecc3fb62da16e7222b2b6782" - integrity sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w== - dependencies: - tslib "^2.0.1" - -astring@^1.6.0: - version "1.8.6" - resolved "https://registry.yarnpkg.com/astring/-/astring-1.8.6.tgz#2c9c157cf1739d67561c56ba896e6948f6b93731" - integrity sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg== - -async-listen@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/async-listen/-/async-listen-3.0.0.tgz#2e5941390b7d8c753d4dbe94bc6aecbdde52ec5e" - integrity sha512-V+SsTpDqkrWTimiotsyl33ePSjA5/KrithwupuvJ6ztsqPvGv6ge4OredFhPffVXiLN/QUWvE0XcqJaYgt6fOg== - -async-sema@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/async-sema/-/async-sema-3.1.1.tgz#e527c08758a0f8f6f9f15f799a173ff3c40ea808" - integrity sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg== - -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== - -babel-plugin-polyfill-corejs2@^0.4.3: - version "0.4.3" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.3.tgz#75044d90ba5043a5fb559ac98496f62f3eb668fd" - integrity sha512-bM3gHc337Dta490gg+/AseNB9L4YLHxq1nGKZZSHbhXv4aTYU2MD2cjza1Ru4S6975YLTaL1K8uJf6ukJhhmtw== - dependencies: - "@babel/compat-data" "^7.17.7" - "@babel/helper-define-polyfill-provider" "^0.4.0" - semver "^6.1.1" - -babel-plugin-polyfill-corejs3@^0.8.1: - version "0.8.1" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.1.tgz#39248263c38191f0d226f928d666e6db1b4b3a8a" - integrity sha512-ikFrZITKg1xH6pLND8zT14UPgjKHiGLqex7rGEZCH2EvhsneJaJPemmpQaIZV5AL03II+lXylw3UmddDK8RU5Q== - dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.0" - core-js-compat "^3.30.1" - -babel-plugin-polyfill-regenerator@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.0.tgz#e7344d88d9ef18a3c47ded99362ae4a757609380" - integrity sha512-hDJtKjMLVa7Z+LwnTCxoDLQj6wdc+B8dun7ayF2fYieI6OzfuvcLMB32ihJZ4UhCBwNYGl5bg/x/P9cMdnkc2g== - dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.0" - -bail@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/bail/-/bail-2.0.2.tgz#d26f5cd8fe5d6f832a31517b9f7c356040ba6d5d" - integrity sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw== - -balanced-match@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== - -base-64@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb" - integrity sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA== - -base64-js@^1.3.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== - -big.js@^5.2.2: - version "5.2.2" - resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" - integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== - -binary-extensions@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" - integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== - -bindings@^1.4.0, bindings@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" - integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== - dependencies: - file-uri-to-path "1.0.0" - -bl@^4.0.3, bl@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" - integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== - dependencies: - buffer "^5.5.0" - inherits "^2.0.4" - readable-stream "^3.4.0" - -body-parser@1.20.1: - version "1.20.1" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" - integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== - dependencies: - bytes "3.1.2" - content-type "~1.0.4" - debug "2.6.9" - depd "2.0.0" - destroy "1.2.0" - http-errors "2.0.0" - iconv-lite "0.4.24" - on-finished "2.4.1" - qs "6.11.0" - raw-body "2.5.1" - type-is "~1.6.18" - unpipe "1.0.0" - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -brace-expansion@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" - integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== - dependencies: - balanced-match "^1.0.0" - -braces@^3.0.2, braces@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - dependencies: - fill-range "^7.0.1" - -browserify-zlib@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" - integrity sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ== - dependencies: - pako "~0.2.0" - -browserslist@^4.21.3, browserslist@^4.21.5: - version "4.21.9" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.9.tgz#e11bdd3c313d7e2a9e87e8b4b0c7872b13897635" - integrity sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg== - dependencies: - caniuse-lite "^1.0.30001503" - electron-to-chromium "^1.4.431" - node-releases "^2.0.12" - update-browserslist-db "^1.0.11" - -buffer-from@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" - integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== - -buffer@^5.5.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" - integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.1.13" - -busboy@1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz#966ea36a9502e43cdb9146962523b92f531f6893" - integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA== - dependencies: - streamsearch "^1.1.0" - -bytes@3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" - integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== - -cac@^6.7.14: - version "6.7.14" - resolved "https://registry.yarnpkg.com/cac/-/cac-6.7.14.tgz#804e1e6f506ee363cb0e3ccbb09cad5dd9870959" - integrity sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ== - -cacache@^15.0.5: - version "15.3.0" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.3.0.tgz#dc85380fb2f556fe3dda4c719bfa0ec875a7f1eb" - integrity sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ== - dependencies: - "@npmcli/fs" "^1.0.0" - "@npmcli/move-file" "^1.0.1" - chownr "^2.0.0" - fs-minipass "^2.0.0" - glob "^7.1.4" - infer-owner "^1.0.4" - lru-cache "^6.0.0" - minipass "^3.1.1" - minipass-collect "^1.0.2" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.2" - mkdirp "^1.0.3" - p-map "^4.0.0" - promise-inflight "^1.0.1" - rimraf "^3.0.2" - ssri "^8.0.1" - tar "^6.0.2" - unique-filename "^1.1.1" - -cacheable-lookup@^5.0.3: - version "5.0.4" - resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz#5a6b865b2c44357be3d5ebc2a467b032719a7005" - integrity sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA== - -cacheable-request@^7.0.2: - version "7.0.4" - resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.4.tgz#7a33ebf08613178b403635be7b899d3e69bbe817" - integrity sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg== - dependencies: - clone-response "^1.0.2" - get-stream "^5.1.0" - http-cache-semantics "^4.0.0" - keyv "^4.0.0" - lowercase-keys "^2.0.0" - normalize-url "^6.0.1" - responselike "^2.0.0" - -call-bind@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" - integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== - dependencies: - function-bind "^1.1.1" - get-intrinsic "^1.0.2" - -caniuse-lite@^1.0.30001406, caniuse-lite@^1.0.30001503: - version "1.0.30001506" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001506.tgz#35bd814b310a487970c585430e9e80ee23faf14b" - integrity sha512-6XNEcpygZMCKaufIcgpQNZNf00GEqc7VQON+9Rd0K1bMYo8xhMZRAo5zpbnbMNizi4YNgIDAFrdykWsvY3H4Hw== - -chalk@^2.0.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -character-entities-html4@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-2.1.0.tgz#1f1adb940c971a4b22ba39ddca6b618dc6e56b2b" - integrity sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA== - -character-entities-legacy@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz#76bc83a90738901d7bc223a9e93759fdd560125b" - integrity sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ== - -character-entities@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-2.0.2.tgz#2d09c2e72cd9523076ccb21157dff66ad43fcc22" - integrity sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ== - -character-reference-invalid@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz#85c66b041e43b47210faf401278abf808ac45cb9" - integrity sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw== - -chardet@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" - integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== - -charenc@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" - integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA== - -chokidar@^3.5.1: - version "3.5.3" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" - integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== - dependencies: - anymatch "~3.1.2" - braces "~3.0.2" - glob-parent "~5.1.2" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.6.0" - optionalDependencies: - fsevents "~2.3.2" - -chownr@^1.1.1: - version "1.1.4" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" - integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== - -chownr@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" - integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== - -clean-stack@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== - -cli-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" - integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== - dependencies: - restore-cursor "^3.1.0" - -cli-spinners@^2.5.0: - version "2.9.0" - resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.0.tgz#5881d0ad96381e117bbe07ad91f2008fe6ffd8db" - integrity sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g== - -cli-width@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" - integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== - -client-only@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/client-only/-/client-only-0.0.1.tgz#38bba5d403c41ab150bff64a95c85013cf73bca1" - integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA== - -clone-response@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz#af2032aa47816399cf5f0a1d0db902f517abb8c3" - integrity sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA== - dependencies: - mimic-response "^1.0.0" - -clone@^1.0.2: - version "1.0.4" - resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" - integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== - -code-block-writer@^10.1.1: - version "10.1.1" - resolved "https://registry.yarnpkg.com/code-block-writer/-/code-block-writer-10.1.1.tgz#ad5684ed4bfb2b0783c8b131281ae84ee640a42f" - integrity sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw== - -color-convert@^1.9.0: - version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - -color-convert@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== - dependencies: - color-name "~1.1.4" - -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== - -color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - -color-support@^1.1.2: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" - integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== - -combined-stream@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== - dependencies: - delayed-stream "~1.0.0" - -comma-separated-tokens@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz#4e89c9458acb61bc8fef19f4529973b2392839ee" - integrity sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg== - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== - -console-control-strings@^1.0.0, console-control-strings@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" - integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== - -content-disposition@0.5.4: - version "0.5.4" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" - integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== - dependencies: - safe-buffer "5.2.1" - -content-type@~1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" - integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== - -convert-hrtime@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/convert-hrtime/-/convert-hrtime-3.0.0.tgz#62c7593f5809ca10be8da858a6d2f702bcda00aa" - integrity sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA== - -convert-source-map@^1.7.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" - integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== - -cookie-signature@1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" - integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== - -cookie@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" - integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== - -cookie@^0.4.1: - version "0.4.2" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432" - integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA== - -core-js-compat@^3.30.1, core-js-compat@^3.30.2: - version "3.31.0" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.31.0.tgz#4030847c0766cc0e803dcdfb30055d7ef2064bf1" - integrity sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw== - dependencies: - browserslist "^4.21.5" - -core-util-is@~1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" - integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== - -create-require@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" - integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== - -cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - -crypt@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" - integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow== - -css-what@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" - integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== - -cssesc@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" - integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== - -csstype@^3.0.2, csstype@^3.0.7: - version "3.1.2" - resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" - integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== - -data-uri-to-buffer@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz#594b8973938c5bc2c33046535785341abc4f3636" - integrity sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og== - -deasync@^0.1.0: - version "0.1.28" - resolved "https://registry.yarnpkg.com/deasync/-/deasync-0.1.28.tgz#9b447b79b3f822432f0ab6a8614c0062808b5ad2" - integrity sha512-QqLF6inIDwiATrfROIyQtwOQxjZuek13WRYZ7donU5wJPLoP67MnYxA6QtqdvdBy2mMqv5m3UefBVdJjvevOYg== - dependencies: - bindings "^1.5.0" - node-addon-api "^1.7.1" - -debug@2.6.9: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - dependencies: - ms "2.0.0" - -debug@4, debug@^4.0.0, debug@^4.1.0, debug@^4.1.1, debug@^4.3.4: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" - -decode-named-character-reference@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz#daabac9690874c394c81e4162a0304b35d824f0e" - integrity sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg== - dependencies: - character-entities "^2.0.0" - -decompress-response@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" - integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== - dependencies: - mimic-response "^3.1.0" - -deep-is@~0.1.3: - version "0.1.4" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" - integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== - -deep-object-diff@^1.1.9: - version "1.1.9" - resolved "https://registry.yarnpkg.com/deep-object-diff/-/deep-object-diff-1.1.9.tgz#6df7ef035ad6a0caa44479c536ed7b02570f4595" - integrity sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA== - -deepmerge@^4.2.2: - version "4.3.1" - resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" - integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== - -defaults@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" - integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== - dependencies: - clone "^1.0.2" - -defer-to-connect@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587" - integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg== - -degenerator@^3.0.2: - version "3.0.4" - resolved "https://registry.yarnpkg.com/degenerator/-/degenerator-3.0.4.tgz#07ccf95bc11044a37a6efc2f66029fb636e31f24" - integrity sha512-Z66uPeBfHZAHVmue3HPfyKu2Q0rC2cRxbTOsvmU/po5fvvcx27W4mIu9n0PUlQih4oUYvcG1BsbtVv8x7KDOSw== - dependencies: - ast-types "^0.13.2" - escodegen "^1.8.1" - esprima "^4.0.0" - vm2 "^3.9.17" - -delayed-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== - -delegates@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" - integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== - -depd@2.0.0, depd@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" - integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== - -dequal@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" - integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== - -destroy@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" - integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== - -detect-indent@^6.0.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" - integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== - -detect-libc@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.1.tgz#e1897aa88fa6ad197862937fbc0441ef352ee0cd" - integrity sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w== - -detect-newline@3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" - integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== - -diff@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" - integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== - -diff@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/diff/-/diff-5.1.0.tgz#bc52d298c5ea8df9194800224445ed43ffc87e40" - integrity sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw== - -digest-fetch@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/digest-fetch/-/digest-fetch-1.3.0.tgz#898e69264d00012a23cf26e8a3e40320143fc661" - integrity sha512-CGJuv6iKNM7QyZlM2T3sPAdZWd/p9zQiRNS9G+9COUCwzWFTs0Xp8NF5iePx7wtvhDykReiRRrSeNb4oMmB8lA== - dependencies: - base-64 "^0.1.0" - md5 "^2.3.0" - -dir-glob@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" - integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== - dependencies: - path-type "^4.0.0" - -dotenv@^16.0.0: - version "16.3.1" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.3.1.tgz#369034de7d7e5b120972693352a3bf112172cc3e" - integrity sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ== - -duplexify@^3.5.0, duplexify@^3.6.0: - version "3.7.1" - resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" - integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== - dependencies: - end-of-stream "^1.0.0" - inherits "^2.0.1" - readable-stream "^2.0.0" - stream-shift "^1.0.0" - -edge-runtime@2.4.3, edge-runtime@^2.4.3: - version "2.4.3" - resolved "https://registry.yarnpkg.com/edge-runtime/-/edge-runtime-2.4.3.tgz#8fed85fb061dcb1b443ee0bc5f46a2369b1eb5f6" - integrity sha512-Amv/P+OJhxopvoVXFr7UXAKheBpdLeCcdR5Vw4GSdNFDWVny9sioQbczjEKPLER5WsMXl17P+llS011Xftducw== - dependencies: - "@edge-runtime/format" "2.1.0" - "@edge-runtime/vm" "3.0.3" - async-listen "3.0.0" - mri "1.2.0" - picocolors "1.0.0" - pretty-bytes "5.6.0" - pretty-ms "7.0.1" - signal-exit "4.0.2" - time-span "4.0.0" - -ee-first@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" - integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== - -electron-to-chromium@^1.4.431: - version "1.4.435" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.435.tgz#761c34300603b9f1234f0b6155870d3002435db6" - integrity sha512-B0CBWVFhvoQCW/XtjRzgrmqcgVWg6RXOEM/dK59+wFV93BFGR6AeNKc4OyhM+T3IhJaOOG8o/V+33Y2mwJWtzw== - -emoji-regex@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" - integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== - -emojis-list@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" - integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== - -encodeurl@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" - integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== - -end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: - version "1.4.4" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== - dependencies: - once "^1.4.0" - -esbuild-android-64@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild-android-64/-/esbuild-android-64-0.14.47.tgz#ef95b42c67bcf4268c869153fa3ad1466c4cea6b" - integrity sha512-R13Bd9+tqLVFndncMHssZrPWe6/0Kpv2/dt4aA69soX4PRxlzsVpCvoJeFE8sOEoeVEiBkI0myjlkDodXlHa0g== - -esbuild-android-arm64@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild-android-arm64/-/esbuild-android-arm64-0.14.47.tgz#4ebd7ce9fb250b4695faa3ee46fd3b0754ecd9e6" - integrity sha512-OkwOjj7ts4lBp/TL6hdd8HftIzOy/pdtbrNA4+0oVWgGG64HrdVzAF5gxtJufAPOsEjkyh1oIYvKAUinKKQRSQ== - -esbuild-darwin-64@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild-darwin-64/-/esbuild-darwin-64-0.14.47.tgz#e0da6c244f497192f951807f003f6a423ed23188" - integrity sha512-R6oaW0y5/u6Eccti/TS6c/2c1xYTb1izwK3gajJwi4vIfNs1s8B1dQzI1UiC9T61YovOQVuePDcfqHLT3mUZJA== - -esbuild-darwin-arm64@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.47.tgz#cd40fd49a672fca581ed202834239dfe540a9028" - integrity sha512-seCmearlQyvdvM/noz1L9+qblC5vcBrhUaOoLEDDoLInF/VQ9IkobGiLlyTPYP5dW1YD4LXhtBgOyevoIHGGnw== - -esbuild-freebsd-64@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.47.tgz#8da6a14c095b29c01fc8087a16cb7906debc2d67" - integrity sha512-ZH8K2Q8/Ux5kXXvQMDsJcxvkIwut69KVrYQhza/ptkW50DC089bCVrJZZ3sKzIoOx+YPTrmsZvqeZERjyYrlvQ== - -esbuild-freebsd-arm64@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.47.tgz#ad31f9c92817ff8f33fd253af7ab5122dc1b83f6" - integrity sha512-ZJMQAJQsIOhn3XTm7MPQfCzEu5b9STNC+s90zMWe2afy9EwnHV7Ov7ohEMv2lyWlc2pjqLW8QJnz2r0KZmeAEQ== - -esbuild-linux-32@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild-linux-32/-/esbuild-linux-32-0.14.47.tgz#de085e4db2e692ea30c71208ccc23fdcf5196c58" - integrity sha512-FxZOCKoEDPRYvq300lsWCTv1kcHgiiZfNrPtEhFAiqD7QZaXrad8LxyJ8fXGcWzIFzRiYZVtB3ttvITBvAFhKw== - -esbuild-linux-64@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild-linux-64/-/esbuild-linux-64-0.14.47.tgz#2a9321bbccb01f01b04cebfcfccbabeba3658ba1" - integrity sha512-nFNOk9vWVfvWYF9YNYksZptgQAdstnDCMtR6m42l5Wfugbzu11VpMCY9XrD4yFxvPo9zmzcoUL/88y0lfJZJJw== - -esbuild-linux-arm64@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.47.tgz#b9da7b6fc4b0ca7a13363a0c5b7bb927e4bc535a" - integrity sha512-ywfme6HVrhWcevzmsufjd4iT3PxTfCX9HOdxA7Hd+/ZM23Y9nXeb+vG6AyA6jgq/JovkcqRHcL9XwRNpWG6XRw== - -esbuild-linux-arm@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild-linux-arm/-/esbuild-linux-arm-0.14.47.tgz#56fec2a09b9561c337059d4af53625142aded853" - integrity sha512-ZGE1Bqg/gPRXrBpgpvH81tQHpiaGxa8c9Rx/XOylkIl2ypLuOcawXEAo8ls+5DFCcRGt/o3sV+PzpAFZobOsmA== - -esbuild-linux-mips64le@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.47.tgz#9db21561f8f22ed79ef2aedb7bbef082b46cf823" - integrity sha512-mg3D8YndZ1LvUiEdDYR3OsmeyAew4MA/dvaEJxvyygahWmpv1SlEEnhEZlhPokjsUMfRagzsEF/d/2XF+kTQGg== - -esbuild-linux-ppc64le@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.47.tgz#dc3a3da321222b11e96e50efafec9d2de408198b" - integrity sha512-WER+f3+szmnZiWoK6AsrTKGoJoErG2LlauSmk73LEZFQ/iWC+KhhDsOkn1xBUpzXWsxN9THmQFltLoaFEH8F8w== - -esbuild-linux-riscv64@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.47.tgz#9bd6dcd3dca6c0357084ecd06e1d2d4bf105335f" - integrity sha512-1fI6bP3A3rvI9BsaaXbMoaOjLE3lVkJtLxsgLHqlBhLlBVY7UqffWBvkrX/9zfPhhVMd9ZRFiaqXnB1T7BsL2g== - -esbuild-linux-s390x@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.47.tgz#a458af939b52f2cd32fc561410d441a51f69d41f" - integrity sha512-eZrWzy0xFAhki1CWRGnhsHVz7IlSKX6yT2tj2Eg8lhAwlRE5E96Hsb0M1mPSE1dHGpt1QVwwVivXIAacF/G6mw== - -esbuild-netbsd-64@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.47.tgz#6388e785d7e7e4420cb01348d7483ab511b16aa8" - integrity sha512-Qjdjr+KQQVH5Q2Q1r6HBYswFTToPpss3gqCiSw2Fpq/ua8+eXSQyAMG+UvULPqXceOwpnPo4smyZyHdlkcPppQ== - -esbuild-openbsd-64@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.47.tgz#309af806db561aa886c445344d1aacab850dbdc5" - integrity sha512-QpgN8ofL7B9z8g5zZqJE+eFvD1LehRlxr25PBkjyyasakm4599iroUpaj96rdqRlO2ShuyqwJdr+oNqWwTUmQw== - -esbuild-plugin-polyfill-node@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/esbuild-plugin-polyfill-node/-/esbuild-plugin-polyfill-node-0.2.0.tgz#26a3572c6b32bee126319ebdb4fa3ab584e30106" - integrity sha512-rpCoK4mag0nehBtFlFMLSuL9bNBLEh8h3wZ/FsrJEDompA/AwOqInx6Xow01+CXAcvZYhkoJ0SIZiS37qkecDA== - dependencies: - "@jspm/core" "^2.0.1" - import-meta-resolve "^2.2.2" - -esbuild-sunos-64@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.14.47.tgz#3f19612dcdb89ba6c65283a7ff6e16f8afbf8aaa" - integrity sha512-uOeSgLUwukLioAJOiGYm3kNl+1wJjgJA8R671GYgcPgCx7QR73zfvYqXFFcIO93/nBdIbt5hd8RItqbbf3HtAQ== - -esbuild-windows-32@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild-windows-32/-/esbuild-windows-32-0.14.47.tgz#a92d279c8458d5dc319abcfeb30aa49e8f2e6f7f" - integrity sha512-H0fWsLTp2WBfKLBgwYT4OTfFly4Im/8B5f3ojDv1Kx//kiubVY0IQunP2Koc/fr/0wI7hj3IiBDbSrmKlrNgLQ== - -esbuild-windows-64@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild-windows-64/-/esbuild-windows-64-0.14.47.tgz#2564c3fcf0c23d701edb71af8c52d3be4cec5f8a" - integrity sha512-/Pk5jIEH34T68r8PweKRi77W49KwanZ8X6lr3vDAtOlH5EumPE4pBHqkCUdELanvsT14yMXLQ/C/8XPi1pAtkQ== - -esbuild-windows-arm64@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.47.tgz#86d9db1a22d83360f726ac5fba41c2f625db6878" - integrity sha512-HFSW2lnp62fl86/qPQlqw6asIwCnEsEoNIL1h2uVMgakddf+vUuMcCbtUY1i8sst7KkgHrVKCJQB33YhhOweCQ== - -esbuild@0.14.47: - version "0.14.47" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.14.47.tgz#0d6415f6bd8eb9e73a58f7f9ae04c5276cda0e4d" - integrity sha512-wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA== - optionalDependencies: - esbuild-android-64 "0.14.47" - esbuild-android-arm64 "0.14.47" - esbuild-darwin-64 "0.14.47" - esbuild-darwin-arm64 "0.14.47" - esbuild-freebsd-64 "0.14.47" - esbuild-freebsd-arm64 "0.14.47" - esbuild-linux-32 "0.14.47" - esbuild-linux-64 "0.14.47" - esbuild-linux-arm "0.14.47" - esbuild-linux-arm64 "0.14.47" - esbuild-linux-mips64le "0.14.47" - esbuild-linux-ppc64le "0.14.47" - esbuild-linux-riscv64 "0.14.47" - esbuild-linux-s390x "0.14.47" - esbuild-netbsd-64 "0.14.47" - esbuild-openbsd-64 "0.14.47" - esbuild-sunos-64 "0.14.47" - esbuild-windows-32 "0.14.47" - esbuild-windows-64 "0.14.47" - esbuild-windows-arm64 "0.14.47" - -esbuild@0.17.6: - version "0.17.6" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.6.tgz#bbccd4433629deb6e0a83860b3b61da120ba4e01" - integrity sha512-TKFRp9TxrJDdRWfSsSERKEovm6v30iHnrjlcGhLBOtReE28Yp1VSBRfO3GTaOFMoxsNerx4TjrhzSuma9ha83Q== - optionalDependencies: - "@esbuild/android-arm" "0.17.6" - "@esbuild/android-arm64" "0.17.6" - "@esbuild/android-x64" "0.17.6" - "@esbuild/darwin-arm64" "0.17.6" - "@esbuild/darwin-x64" "0.17.6" - "@esbuild/freebsd-arm64" "0.17.6" - "@esbuild/freebsd-x64" "0.17.6" - "@esbuild/linux-arm" "0.17.6" - "@esbuild/linux-arm64" "0.17.6" - "@esbuild/linux-ia32" "0.17.6" - "@esbuild/linux-loong64" "0.17.6" - "@esbuild/linux-mips64el" "0.17.6" - "@esbuild/linux-ppc64" "0.17.6" - "@esbuild/linux-riscv64" "0.17.6" - "@esbuild/linux-s390x" "0.17.6" - "@esbuild/linux-x64" "0.17.6" - "@esbuild/netbsd-x64" "0.17.6" - "@esbuild/openbsd-x64" "0.17.6" - "@esbuild/sunos-x64" "0.17.6" - "@esbuild/win32-arm64" "0.17.6" - "@esbuild/win32-ia32" "0.17.6" - "@esbuild/win32-x64" "0.17.6" - -esbuild@^0.17.5: - version "0.17.19" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.19.tgz#087a727e98299f0462a3d0bcdd9cd7ff100bd955" - integrity sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw== - optionalDependencies: - "@esbuild/android-arm" "0.17.19" - "@esbuild/android-arm64" "0.17.19" - "@esbuild/android-x64" "0.17.19" - "@esbuild/darwin-arm64" "0.17.19" - "@esbuild/darwin-x64" "0.17.19" - "@esbuild/freebsd-arm64" "0.17.19" - "@esbuild/freebsd-x64" "0.17.19" - "@esbuild/linux-arm" "0.17.19" - "@esbuild/linux-arm64" "0.17.19" - "@esbuild/linux-ia32" "0.17.19" - "@esbuild/linux-loong64" "0.17.19" - "@esbuild/linux-mips64el" "0.17.19" - "@esbuild/linux-ppc64" "0.17.19" - "@esbuild/linux-riscv64" "0.17.19" - "@esbuild/linux-s390x" "0.17.19" - "@esbuild/linux-x64" "0.17.19" - "@esbuild/netbsd-x64" "0.17.19" - "@esbuild/openbsd-x64" "0.17.19" - "@esbuild/sunos-x64" "0.17.19" - "@esbuild/win32-arm64" "0.17.19" - "@esbuild/win32-ia32" "0.17.19" - "@esbuild/win32-x64" "0.17.19" - -escalade@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" - integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== - -escape-html@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" - integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== - -escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== - -escodegen@^1.8.1: - version "1.14.3" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" - integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== - dependencies: - esprima "^4.0.1" - estraverse "^4.2.0" - esutils "^2.0.2" - optionator "^0.8.1" - optionalDependencies: - source-map "~0.6.1" - -esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - -estraverse@^4.2.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" - integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== - -estree-util-attach-comments@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/estree-util-attach-comments/-/estree-util-attach-comments-2.1.1.tgz#ee44f4ff6890ee7dfb3237ac7810154c94c63f84" - integrity sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w== - dependencies: - "@types/estree" "^1.0.0" - -estree-util-build-jsx@^2.0.0: - version "2.2.2" - resolved "https://registry.yarnpkg.com/estree-util-build-jsx/-/estree-util-build-jsx-2.2.2.tgz#32f8a239fb40dc3f3dca75bb5dcf77a831e4e47b" - integrity sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg== - dependencies: - "@types/estree-jsx" "^1.0.0" - estree-util-is-identifier-name "^2.0.0" - estree-walker "^3.0.0" - -estree-util-is-identifier-name@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-1.1.0.tgz#2e3488ea06d9ea2face116058864f6370b37456d" - integrity sha512-OVJZ3fGGt9By77Ix9NhaRbzfbDV/2rx9EP7YIDJTmsZSEc5kYn2vWcNccYyahJL2uAQZK2a5Or2i0wtIKTPoRQ== - -estree-util-is-identifier-name@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz#fb70a432dcb19045e77b05c8e732f1364b4b49b2" - integrity sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ== - -estree-util-value-to-estree@^1.0.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/estree-util-value-to-estree/-/estree-util-value-to-estree-1.3.0.tgz#1d3125594b4d6680f666644491e7ac1745a3df49" - integrity sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw== - dependencies: - is-plain-obj "^3.0.0" - -estree-util-visit@^1.0.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/estree-util-visit/-/estree-util-visit-1.2.1.tgz#8bc2bc09f25b00827294703835aabee1cc9ec69d" - integrity sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw== - dependencies: - "@types/estree-jsx" "^1.0.0" - "@types/unist" "^2.0.0" - -estree-walker@2.0.2, estree-walker@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" - integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== - -estree-walker@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-3.0.3.tgz#67c3e549ec402a487b4fc193d1953a524752340d" - integrity sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g== - dependencies: - "@types/estree" "^1.0.0" - -esutils@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - -etag@1.8.1, etag@~1.8.1: - version "1.8.1" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" - integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== - -eval@0.1.6: - version "0.1.6" - resolved "https://registry.yarnpkg.com/eval/-/eval-0.1.6.tgz#9620d7d8c85515e97e6b47c5814f46ae381cb3cc" - integrity sha512-o0XUw+5OGkXw4pJZzQoXUk+H87DHuC+7ZE//oSrRGtatTmr12oTnLfg6QOq9DyTt0c/p4TwzgmkKrBzWTSizyQ== - dependencies: - require-like ">= 0.1.1" - -event-target-shim@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" - integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== - -execa@5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" - integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== - dependencies: - cross-spawn "^7.0.3" - get-stream "^6.0.0" - human-signals "^2.1.0" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^4.0.1" - onetime "^5.1.2" - signal-exit "^3.0.3" - strip-final-newline "^2.0.0" - -exit-hook@2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-2.2.1.tgz#007b2d92c6428eda2b76e7016a34351586934593" - integrity sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw== - -express@^4.17.1: - version "4.18.2" - resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59" - integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ== - dependencies: - accepts "~1.3.8" - array-flatten "1.1.1" - body-parser "1.20.1" - content-disposition "0.5.4" - content-type "~1.0.4" - cookie "0.5.0" - cookie-signature "1.0.6" - debug "2.6.9" - depd "2.0.0" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - finalhandler "1.2.0" - fresh "0.5.2" - http-errors "2.0.0" - merge-descriptors "1.0.1" - methods "~1.1.2" - on-finished "2.4.1" - parseurl "~1.3.3" - path-to-regexp "0.1.7" - proxy-addr "~2.0.7" - qs "6.11.0" - range-parser "~1.2.1" - safe-buffer "5.2.1" - send "0.18.0" - serve-static "1.15.0" - setprototypeof "1.2.0" - statuses "2.0.1" - type-is "~1.6.18" - utils-merge "1.0.1" - vary "~1.1.2" - -extend@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" - integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== - -external-editor@^3.0.3: - version "3.1.0" - resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" - integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== - dependencies: - chardet "^0.7.0" - iconv-lite "^0.4.24" - tmp "^0.0.33" - -fast-deep-equal@^3.1.1: - version "3.1.3" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" - integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== - -fast-glob@3.2.11: - version "3.2.11" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9" - integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew== - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.2" - merge2 "^1.3.0" - micromatch "^4.0.4" - -fast-glob@^3.0.3, fast-glob@^3.2.7: - version "3.2.12" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" - integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.2" - merge2 "^1.3.0" - micromatch "^4.0.4" - -fast-json-stable-stringify@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" - integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== - -fast-levenshtein@~2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== - -fastq@^1.6.0: - version "1.15.0" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" - integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== - dependencies: - reusify "^1.0.4" - -fault@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/fault/-/fault-2.0.1.tgz#d47ca9f37ca26e4bd38374a7c500b5a384755b6c" - integrity sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ== - dependencies: - format "^0.2.0" - -figures@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" - integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== - dependencies: - escape-string-regexp "^1.0.5" - -file-uri-to-path@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" - integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== - -file-uri-to-path@2: - version "2.0.0" - resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-2.0.0.tgz#7b415aeba227d575851e0a5b0c640d7656403fba" - integrity sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg== - -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== - dependencies: - to-regex-range "^5.0.1" - -finalhandler@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" - integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== - dependencies: - debug "2.6.9" - encodeurl "~1.0.2" - escape-html "~1.0.3" - on-finished "2.4.1" - parseurl "~1.3.3" - statuses "2.0.1" - unpipe "~1.0.0" - -find-up@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" - integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== - dependencies: - locate-path "^6.0.0" - path-exists "^4.0.0" - -form-data-encoder@1.7.2: - version "1.7.2" - resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-1.7.2.tgz#1f1ae3dccf58ed4690b86d87e4f57c654fbab040" - integrity sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A== - -form-data@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" - integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.8" - mime-types "^2.1.12" - -format@^0.2.0: - version "0.2.2" - resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b" - integrity sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww== - -formdata-node@^4.3.2: - version "4.4.1" - resolved "https://registry.yarnpkg.com/formdata-node/-/formdata-node-4.4.1.tgz#23f6a5cb9cb55315912cbec4ff7b0f59bbd191e2" - integrity sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ== - dependencies: - node-domexception "1.0.0" - web-streams-polyfill "4.0.0-beta.3" - -forwarded@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" - integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== - -fresh@0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" - integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== - -fs-constants@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" - integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== - -fs-extra@11.1.0: - version "11.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.1.0.tgz#5784b102104433bb0e090f48bfc4a30742c357ed" - integrity sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - -fs-extra@^10.0.0: - version "10.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" - integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - -fs-extra@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" - integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^4.0.0" - universalify "^0.1.0" - -fs-minipass@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" - integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== - dependencies: - minipass "^3.0.0" - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== - -fsevents@~2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== - -ftp@^0.3.10: - version "0.3.10" - resolved "https://registry.yarnpkg.com/ftp/-/ftp-0.3.10.tgz#9197d861ad8142f3e63d5a83bfe4c59f7330885d" - integrity sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ== - dependencies: - readable-stream "1.1.x" - xregexp "2.0.0" - -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -gauge@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-3.0.2.tgz#03bf4441c044383908bcfa0656ad91803259b395" - integrity sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q== - dependencies: - aproba "^1.0.3 || ^2.0.0" - color-support "^1.1.2" - console-control-strings "^1.0.0" - has-unicode "^2.0.1" - object-assign "^4.1.1" - signal-exit "^3.0.0" - string-width "^4.2.3" - strip-ansi "^6.0.1" - wide-align "^1.1.2" - -generic-names@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/generic-names/-/generic-names-4.0.0.tgz#0bd8a2fd23fe8ea16cbd0a279acd69c06933d9a3" - integrity sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A== - dependencies: - loader-utils "^3.2.0" - -gensync@^1.0.0-beta.2: - version "1.0.0-beta.2" - resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" - integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== - -get-intrinsic@^1.0.2: - version "1.2.1" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" - integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== - dependencies: - function-bind "^1.1.1" - has "^1.0.3" - has-proto "^1.0.1" - has-symbols "^1.0.3" - -get-port@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/get-port/-/get-port-5.1.1.tgz#0469ed07563479de6efb986baf053dcd7d4e3193" - integrity sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ== - -get-stream@^5.1.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" - integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== - dependencies: - pump "^3.0.0" - -get-stream@^6.0.0: - version "6.0.1" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" - integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== - -get-uri@3: - version "3.0.2" - resolved "https://registry.yarnpkg.com/get-uri/-/get-uri-3.0.2.tgz#f0ef1356faabc70e1f9404fa3b66b2ba9bfc725c" - integrity sha512-+5s0SJbGoyiJTZZ2JTpFPLMPSch72KEqGOTvQsBqg0RBWvwhWUSYZFAtz3TPW0GXJuLBJPts1E241iHg+VRfhg== - dependencies: - "@tootallnate/once" "1" - data-uri-to-buffer "3" - debug "4" - file-uri-to-path "2" - fs-extra "^8.1.0" - ftp "^0.3.10" - -git-hooks-list@1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/git-hooks-list/-/git-hooks-list-1.0.3.tgz#be5baaf78203ce342f2f844a9d2b03dba1b45156" - integrity sha512-Y7wLWcrLUXwk2noSka166byGCvhMtDRpgHdzCno1UQv/n/Hegp++a2xBWJL1lJarnKD3SWaljD+0z1ztqxuKyQ== - -glob-parent@^5.1.2, glob-parent@~5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== - dependencies: - is-glob "^4.0.1" - -glob-to-regexp@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" - integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== - -glob@^7.1.3, glob@^7.1.4: - version "7.2.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" - integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.1.1" - once "^1.3.0" - path-is-absolute "^1.0.0" - -globals@^11.1.0: - version "11.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== - -globby@10.0.0: - version "10.0.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-10.0.0.tgz#abfcd0630037ae174a88590132c2f6804e291072" - integrity sha512-3LifW9M4joGZasyYPz2A1U74zbC/45fvpXUvO/9KbSa+VV0aGZarWkfdgKyR9sExNP0t0x0ss/UMJpNpcaTspw== - dependencies: - "@types/glob" "^7.1.1" - array-union "^2.1.0" - dir-glob "^3.0.1" - fast-glob "^3.0.3" - glob "^7.1.3" - ignore "^5.1.1" - merge2 "^1.2.3" - slash "^3.0.0" - -got@^11.0.0: - version "11.8.6" - resolved "https://registry.yarnpkg.com/got/-/got-11.8.6.tgz#276e827ead8772eddbcfc97170590b841823233a" - integrity sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g== - dependencies: - "@sindresorhus/is" "^4.0.0" - "@szmarczak/http-timer" "^4.0.5" - "@types/cacheable-request" "^6.0.1" - "@types/responselike" "^1.0.0" - cacheable-lookup "^5.0.3" - cacheable-request "^7.0.2" - decompress-response "^6.0.0" - http2-wrapper "^1.0.0-beta.5.2" - lowercase-keys "^2.0.0" - p-cancelable "^2.0.0" - responselike "^2.0.0" - -graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.9: - version "4.2.11" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" - integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== - -gunzip-maybe@^1.4.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/gunzip-maybe/-/gunzip-maybe-1.4.2.tgz#b913564ae3be0eda6f3de36464837a9cd94b98ac" - integrity sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw== - dependencies: - browserify-zlib "^0.1.4" - is-deflate "^1.0.0" - is-gzip "^1.0.0" - peek-stream "^1.1.0" - pumpify "^1.3.3" - through2 "^2.0.3" - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== - -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== - -has-proto@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" - integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== - -has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== - -has-unicode@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" - integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== - -has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -hast-util-to-estree@^2.0.0: - version "2.3.3" - resolved "https://registry.yarnpkg.com/hast-util-to-estree/-/hast-util-to-estree-2.3.3.tgz#da60142ffe19a6296923ec222aba73339c8bf470" - integrity sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ== - dependencies: - "@types/estree" "^1.0.0" - "@types/estree-jsx" "^1.0.0" - "@types/hast" "^2.0.0" - "@types/unist" "^2.0.0" - comma-separated-tokens "^2.0.0" - estree-util-attach-comments "^2.0.0" - estree-util-is-identifier-name "^2.0.0" - hast-util-whitespace "^2.0.0" - mdast-util-mdx-expression "^1.0.0" - mdast-util-mdxjs-esm "^1.0.0" - property-information "^6.0.0" - space-separated-tokens "^2.0.0" - style-to-object "^0.4.1" - unist-util-position "^4.0.0" - zwitch "^2.0.0" - -hast-util-whitespace@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz#0ec64e257e6fc216c7d14c8a1b74d27d650b4557" - integrity sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng== - -http-cache-semantics@^4.0.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" - integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== - -http-errors@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" - integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== - dependencies: - depd "2.0.0" - inherits "2.0.4" - setprototypeof "1.2.0" - statuses "2.0.1" - toidentifier "1.0.1" - -http-proxy-agent@^4.0.0, http-proxy-agent@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" - integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== - dependencies: - "@tootallnate/once" "1" - agent-base "6" - debug "4" - -http2-wrapper@^1.0.0-beta.5.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz#b8f55e0c1f25d4ebd08b3b0c2c079f9590800b3d" - integrity sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg== - dependencies: - quick-lru "^5.1.1" - resolve-alpn "^1.0.0" - -https-proxy-agent@5, https-proxy-agent@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" - integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== - dependencies: - agent-base "6" - debug "4" - -human-signals@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" - integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== - -humanize-ms@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" - integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== - dependencies: - ms "^2.0.0" - -iconv-lite@0.4.24, iconv-lite@^0.4.24: - version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - -icss-utils@^5.0.0, icss-utils@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" - integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== - -ieee754@^1.1.13: - version "1.2.1" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" - integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== - -ignore@^5.1.1: - version "5.2.4" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" - integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== - -import-meta-resolve@^2.2.2: - version "2.2.2" - resolved "https://registry.yarnpkg.com/import-meta-resolve/-/import-meta-resolve-2.2.2.tgz#75237301e72d1f0fbd74dbc6cca9324b164c2cc9" - integrity sha512-f8KcQ1D80V7RnqVm+/lirO9zkOxjGxhaTC1IPrBGd3MEfNgmNG67tSUO9gTi2F3Blr2Az6g1vocaxzkVnWl9MA== - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== - -indent-string@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== - -infer-owner@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" - integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -inline-style-parser@0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1" - integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q== - -inquirer@^8.2.1: - version "8.2.5" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.2.5.tgz#d8654a7542c35a9b9e069d27e2df4858784d54f8" - integrity sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ== - dependencies: - ansi-escapes "^4.2.1" - chalk "^4.1.1" - cli-cursor "^3.1.0" - cli-width "^3.0.0" - external-editor "^3.0.3" - figures "^3.0.0" - lodash "^4.17.21" - mute-stream "0.0.8" - ora "^5.4.1" - run-async "^2.4.0" - rxjs "^7.5.5" - string-width "^4.1.0" - strip-ansi "^6.0.0" - through "^2.3.6" - wrap-ansi "^7.0.0" - -ip@^1.1.5: - version "1.1.8" - resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.8.tgz#ae05948f6b075435ed3307acce04629da8cdbf48" - integrity sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg== - -ip@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.0.tgz#4cf4ab182fee2314c75ede1276f8c80b479936da" - integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ== - -ipaddr.js@1.9.1: - version "1.9.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" - integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== - -is-alphabetical@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-2.0.1.tgz#01072053ea7c1036df3c7d19a6daaec7f19e789b" - integrity sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ== - -is-alphanumerical@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz#7c03fbe96e3e931113e57f964b0a368cc2dfd875" - integrity sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw== - dependencies: - is-alphabetical "^2.0.0" - is-decimal "^2.0.0" - -is-binary-path@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" - integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== - dependencies: - binary-extensions "^2.0.0" - -is-buffer@^2.0.0: - version "2.0.5" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" - integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== - -is-buffer@~1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== - -is-core-module@^2.11.0: - version "2.12.1" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd" - integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg== - dependencies: - has "^1.0.3" - -is-decimal@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-2.0.1.tgz#9469d2dc190d0214fd87d78b78caecc0cc14eef7" - integrity sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A== - -is-deflate@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-deflate/-/is-deflate-1.0.0.tgz#c862901c3c161fb09dac7cdc7e784f80e98f2f14" - integrity sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ== - -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== - -is-fullwidth-code-point@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" - integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== - -is-glob@^4.0.1, is-glob@~4.0.1: - version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" - integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== - dependencies: - is-extglob "^2.1.1" - -is-gzip@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-gzip/-/is-gzip-1.0.0.tgz#6ca8b07b99c77998025900e555ced8ed80879a83" - integrity sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ== - -is-hexadecimal@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz#86b5bf668fca307498d319dfc03289d781a90027" - integrity sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg== - -is-interactive@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" - integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== - -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - -is-plain-obj@2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" - integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== - -is-plain-obj@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7" - integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== - -is-plain-obj@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-4.1.0.tgz#d65025edec3657ce032fd7db63c97883eaed71f0" - integrity sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg== - -is-reference@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-3.0.1.tgz#d400f4260f7e55733955e60d361d827eb4d3b831" - integrity sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w== - dependencies: - "@types/estree" "*" - -is-stream@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" - integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== - -is-unicode-supported@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" - integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== - -isarray@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" - integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ== - -isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== - -javascript-stringify@^2.0.1: - version "2.1.0" - resolved "https://registry.yarnpkg.com/javascript-stringify/-/javascript-stringify-2.1.0.tgz#27c76539be14d8bd128219a2d731b09337904e79" - integrity sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg== - -"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -js-yaml@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" - integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== - dependencies: - argparse "^2.0.1" - -jsesc@3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.0.2.tgz#bb8b09a6597ba426425f2e4a07245c3d00b9343e" - integrity sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g== - -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== - -jsesc@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== - -json-buffer@3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" - integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== - -json-parse-even-better-errors@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" - integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== - -json-schema-to-ts@1.6.4: - version "1.6.4" - resolved "https://registry.yarnpkg.com/json-schema-to-ts/-/json-schema-to-ts-1.6.4.tgz#63e4fe854dff093923be9e8b59b39ee9a7971ba4" - integrity sha512-pR4yQ9DHz6itqswtHCm26mw45FSNfQ9rEQjosaZErhn5J3J2sIViQiz8rDaezjKAhFGpmsoczYVBgGHzFw/stA== - dependencies: - "@types/json-schema" "^7.0.6" - ts-toolbelt "^6.15.5" - -json-schema-traverse@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - -json-schema-traverse@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" - integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== - -json5@^2.1.2, json5@^2.2.2: - version "2.2.3" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" - integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== - -jsonc-parser@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz#31ff3f4c2b9793f89c67212627c51c6394f88e76" - integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w== - -jsonfile@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" - integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg== - optionalDependencies: - graceful-fs "^4.1.6" - -jsonfile@^6.0.1: - version "6.1.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" - integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== - dependencies: - universalify "^2.0.0" - optionalDependencies: - graceful-fs "^4.1.6" - -keyv@^4.0.0: - version "4.5.2" - resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.2.tgz#0e310ce73bf7851ec702f2eaf46ec4e3805cce56" - integrity sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g== - dependencies: - json-buffer "3.0.1" - -kleur@^4.0.3: - version "4.1.5" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780" - integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ== - -levn@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" - integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA== - dependencies: - prelude-ls "~1.1.2" - type-check "~0.3.2" - -lilconfig@^2.0.5: - version "2.1.0" - resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" - integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== - -loader-utils@^2.0.0: - version "2.0.4" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c" - integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== - dependencies: - big.js "^5.2.2" - emojis-list "^3.0.0" - json5 "^2.1.2" - -loader-utils@^3.2.0: - version "3.2.1" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-3.2.1.tgz#4fb104b599daafd82ef3e1a41fb9265f87e1f576" - integrity sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw== - -locate-path@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" - integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== - dependencies: - p-locate "^5.0.0" - -lodash.camelcase@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" - integrity sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA== - -lodash.debounce@^4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" - integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== - -lodash@^4.17.21: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== - -log-symbols@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" - integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== - dependencies: - chalk "^4.1.0" - is-unicode-supported "^0.1.0" - -longest-streak@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-3.1.0.tgz#62fa67cd958742a1574af9f39866364102d90cd4" - integrity sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g== - -loose-envify@^1.1.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" - integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== - dependencies: - js-tokens "^3.0.0 || ^4.0.0" - -lowercase-keys@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" - integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== - -lru-cache@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" - integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== - dependencies: - yallist "^3.0.2" - -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== - dependencies: - yallist "^4.0.0" - -lru-cache@^7.14.1: - version "7.18.3" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89" - integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== - -make-dir@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" - integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== - dependencies: - semver "^6.0.0" - -make-error@^1.1.1: - version "1.3.6" - resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" - integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== - -markdown-extensions@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/markdown-extensions/-/markdown-extensions-1.1.1.tgz#fea03b539faeaee9b4ef02a3769b455b189f7fc3" - integrity sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q== - -md5@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" - integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g== - dependencies: - charenc "0.0.2" - crypt "0.0.2" - is-buffer "~1.1.6" - -mdast-util-definitions@^5.0.0: - version "5.1.2" - resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz#9910abb60ac5d7115d6819b57ae0bcef07a3f7a7" - integrity sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA== - dependencies: - "@types/mdast" "^3.0.0" - "@types/unist" "^2.0.0" - unist-util-visit "^4.0.0" - -mdast-util-from-markdown@^1.0.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz#9421a5a247f10d31d2faed2a30df5ec89ceafcf0" - integrity sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww== - dependencies: - "@types/mdast" "^3.0.0" - "@types/unist" "^2.0.0" - decode-named-character-reference "^1.0.0" - mdast-util-to-string "^3.1.0" - micromark "^3.0.0" - micromark-util-decode-numeric-character-reference "^1.0.0" - micromark-util-decode-string "^1.0.0" - micromark-util-normalize-identifier "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - unist-util-stringify-position "^3.0.0" - uvu "^0.5.0" - -mdast-util-frontmatter@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/mdast-util-frontmatter/-/mdast-util-frontmatter-1.0.1.tgz#79c46d7414eb9d3acabe801ee4a70a70b75e5af1" - integrity sha512-JjA2OjxRqAa8wEG8hloD0uTU0kdn8kbtOWpPP94NBkfAlbxn4S8gCGf/9DwFtEeGPXrDcNXdiDjVaRdUFqYokw== - dependencies: - "@types/mdast" "^3.0.0" - mdast-util-to-markdown "^1.3.0" - micromark-extension-frontmatter "^1.0.0" - -mdast-util-mdx-expression@^1.0.0: - version "1.3.2" - resolved "https://registry.yarnpkg.com/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.2.tgz#d027789e67524d541d6de543f36d51ae2586f220" - integrity sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA== - dependencies: - "@types/estree-jsx" "^1.0.0" - "@types/hast" "^2.0.0" - "@types/mdast" "^3.0.0" - mdast-util-from-markdown "^1.0.0" - mdast-util-to-markdown "^1.0.0" - -mdast-util-mdx-jsx@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-1.2.0.tgz#c0f5140e021fd134fa90272eb8bbddb39f8db399" - integrity sha512-5+ot/kfxYd3ChgEMwsMUO71oAfYjyRI3pADEK4I7xTmWLGQ8Y7ghm1CG36zUoUvDPxMlIYwQV/9DYHAUWdG4dA== - dependencies: - "@types/estree-jsx" "^0.0.1" - "@types/mdast" "^3.0.0" - mdast-util-to-markdown "^1.0.0" - parse-entities "^4.0.0" - stringify-entities "^4.0.0" - unist-util-remove-position "^4.0.0" - unist-util-stringify-position "^3.0.0" - vfile-message "^3.0.0" - -mdast-util-mdx@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/mdast-util-mdx/-/mdast-util-mdx-1.1.0.tgz#c98612804719309aea97e3da068658392e126488" - integrity sha512-leKb9uG7laXdyFlTleYV4ZEaCpsxeU1LlkkR/xp35pgKrfV1Y0fNCuOw9vaRc2a9YDpH22wd145Wt7UY5yzeZw== - dependencies: - mdast-util-mdx-expression "^1.0.0" - mdast-util-mdx-jsx "^1.0.0" - mdast-util-mdxjs-esm "^1.0.0" - -mdast-util-mdxjs-esm@^1.0.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.1.tgz#645d02cd607a227b49721d146fd81796b2e2d15b" - integrity sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w== - dependencies: - "@types/estree-jsx" "^1.0.0" - "@types/hast" "^2.0.0" - "@types/mdast" "^3.0.0" - mdast-util-from-markdown "^1.0.0" - mdast-util-to-markdown "^1.0.0" - -mdast-util-phrasing@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz#c7c21d0d435d7fb90956038f02e8702781f95463" - integrity sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg== - dependencies: - "@types/mdast" "^3.0.0" - unist-util-is "^5.0.0" - -mdast-util-to-hast@^11.0.0: - version "11.3.0" - resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-11.3.0.tgz#ea9220617a710e80aa5cc3ac7cc9d4bb0440ae7a" - integrity sha512-4o3Cli3hXPmm1LhB+6rqhfsIUBjnKFlIUZvudaermXB+4/KONdd/W4saWWkC+LBLbPMqhFSSTSRgafHsT5fVJw== - dependencies: - "@types/hast" "^2.0.0" - "@types/mdast" "^3.0.0" - "@types/mdurl" "^1.0.0" - mdast-util-definitions "^5.0.0" - mdurl "^1.0.0" - unist-builder "^3.0.0" - unist-util-generated "^2.0.0" - unist-util-position "^4.0.0" - unist-util-visit "^4.0.0" - -mdast-util-to-markdown@^1.0.0, mdast-util-to-markdown@^1.3.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz#c13343cb3fc98621911d33b5cd42e7d0731171c6" - integrity sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A== - dependencies: - "@types/mdast" "^3.0.0" - "@types/unist" "^2.0.0" - longest-streak "^3.0.0" - mdast-util-phrasing "^3.0.0" - mdast-util-to-string "^3.0.0" - micromark-util-decode-string "^1.0.0" - unist-util-visit "^4.0.0" - zwitch "^2.0.0" - -mdast-util-to-string@^3.0.0, mdast-util-to-string@^3.1.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz#66f7bb6324756741c5f47a53557f0cbf16b6f789" - integrity sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg== - dependencies: - "@types/mdast" "^3.0.0" - -mdurl@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" - integrity sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g== - -media-query-parser@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/media-query-parser/-/media-query-parser-2.0.2.tgz#ff79e56cee92615a304a1c2fa4f2bd056c0a1d29" - integrity sha512-1N4qp+jE0pL5Xv4uEcwVUhIkwdUO3S/9gML90nqKA7v7FcOS5vUtatfzok9S9U1EJU8dHWlcv95WLnKmmxZI9w== - dependencies: - "@babel/runtime" "^7.12.5" - -media-typer@0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" - integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== - -merge-descriptors@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" - integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== - -merge-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" - integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== - -merge2@^1.2.3, merge2@^1.3.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" - integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== - -methods@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" - integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== - -micromark-core-commonmark@^1.0.0, micromark-core-commonmark@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz#1386628df59946b2d39fb2edfd10f3e8e0a75bb8" - integrity sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw== - dependencies: - decode-named-character-reference "^1.0.0" - micromark-factory-destination "^1.0.0" - micromark-factory-label "^1.0.0" - micromark-factory-space "^1.0.0" - micromark-factory-title "^1.0.0" - micromark-factory-whitespace "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-chunked "^1.0.0" - micromark-util-classify-character "^1.0.0" - micromark-util-html-tag-name "^1.0.0" - micromark-util-normalize-identifier "^1.0.0" - micromark-util-resolve-all "^1.0.0" - micromark-util-subtokenize "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.1" - uvu "^0.5.0" - -micromark-extension-frontmatter@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/micromark-extension-frontmatter/-/micromark-extension-frontmatter-1.1.1.tgz#2946643938e491374145d0c9aacc3249e38a865f" - integrity sha512-m2UH9a7n3W8VAH9JO9y01APpPKmNNNs71P0RbknEmYSaZU5Ghogv38BYO94AI5Xw6OYfxZRdHZZ2nYjs/Z+SZQ== - dependencies: - fault "^2.0.0" - micromark-util-character "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - -micromark-extension-mdx-expression@^1.0.0: - version "1.0.8" - resolved "https://registry.yarnpkg.com/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.8.tgz#5bc1f5fd90388e8293b3ef4f7c6f06c24aff6314" - integrity sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw== - dependencies: - "@types/estree" "^1.0.0" - micromark-factory-mdx-expression "^1.0.0" - micromark-factory-space "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-events-to-acorn "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - uvu "^0.5.0" - -micromark-extension-mdx-jsx@^1.0.0: - version "1.0.5" - resolved "https://registry.yarnpkg.com/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.5.tgz#e72d24b7754a30d20fb797ece11e2c4e2cae9e82" - integrity sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA== - dependencies: - "@types/acorn" "^4.0.0" - "@types/estree" "^1.0.0" - estree-util-is-identifier-name "^2.0.0" - micromark-factory-mdx-expression "^1.0.0" - micromark-factory-space "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - uvu "^0.5.0" - vfile-message "^3.0.0" - -micromark-extension-mdx-md@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.1.tgz#595d4b2f692b134080dca92c12272ab5b74c6d1a" - integrity sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA== - dependencies: - micromark-util-types "^1.0.0" - -micromark-extension-mdxjs-esm@^1.0.0: - version "1.0.5" - resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.5.tgz#e4f8be9c14c324a80833d8d3a227419e2b25dec1" - integrity sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w== - dependencies: - "@types/estree" "^1.0.0" - micromark-core-commonmark "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-events-to-acorn "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - unist-util-position-from-estree "^1.1.0" - uvu "^0.5.0" - vfile-message "^3.0.0" - -micromark-extension-mdxjs@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.1.tgz#f78d4671678d16395efeda85170c520ee795ded8" - integrity sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q== - dependencies: - acorn "^8.0.0" - acorn-jsx "^5.0.0" - micromark-extension-mdx-expression "^1.0.0" - micromark-extension-mdx-jsx "^1.0.0" - micromark-extension-mdx-md "^1.0.0" - micromark-extension-mdxjs-esm "^1.0.0" - micromark-util-combine-extensions "^1.0.0" - micromark-util-types "^1.0.0" - -micromark-factory-destination@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz#eb815957d83e6d44479b3df640f010edad667b9f" - integrity sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg== - dependencies: - micromark-util-character "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - -micromark-factory-label@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz#cc95d5478269085cfa2a7282b3de26eb2e2dec68" - integrity sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w== - dependencies: - micromark-util-character "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - uvu "^0.5.0" - -micromark-factory-mdx-expression@^1.0.0: - version "1.0.9" - resolved "https://registry.yarnpkg.com/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.9.tgz#57ba4571b69a867a1530f34741011c71c73a4976" - integrity sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA== - dependencies: - "@types/estree" "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-events-to-acorn "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - unist-util-position-from-estree "^1.0.0" - uvu "^0.5.0" - vfile-message "^3.0.0" - -micromark-factory-space@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz#c8f40b0640a0150751d3345ed885a080b0d15faf" - integrity sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ== - dependencies: - micromark-util-character "^1.0.0" - micromark-util-types "^1.0.0" - -micromark-factory-title@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz#dd0fe951d7a0ac71bdc5ee13e5d1465ad7f50ea1" - integrity sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ== - dependencies: - micromark-factory-space "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - -micromark-factory-whitespace@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz#798fb7489f4c8abafa7ca77eed6b5745853c9705" - integrity sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ== - dependencies: - micromark-factory-space "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - -micromark-util-character@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-1.2.0.tgz#4fedaa3646db249bc58caeb000eb3549a8ca5dcc" - integrity sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg== - dependencies: - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - -micromark-util-chunked@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz#37a24d33333c8c69a74ba12a14651fd9ea8a368b" - integrity sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ== - dependencies: - micromark-util-symbol "^1.0.0" - -micromark-util-classify-character@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz#6a7f8c8838e8a120c8e3c4f2ae97a2bff9190e9d" - integrity sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw== - dependencies: - micromark-util-character "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - -micromark-util-combine-extensions@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz#192e2b3d6567660a85f735e54d8ea6e3952dbe84" - integrity sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA== - dependencies: - micromark-util-chunked "^1.0.0" - micromark-util-types "^1.0.0" - -micromark-util-decode-numeric-character-reference@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz#b1e6e17009b1f20bc652a521309c5f22c85eb1c6" - integrity sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw== - dependencies: - micromark-util-symbol "^1.0.0" - -micromark-util-decode-string@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz#dc12b078cba7a3ff690d0203f95b5d5537f2809c" - integrity sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ== - dependencies: - decode-named-character-reference "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-decode-numeric-character-reference "^1.0.0" - micromark-util-symbol "^1.0.0" - -micromark-util-encode@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz#92e4f565fd4ccb19e0dcae1afab9a173bbeb19a5" - integrity sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw== - -micromark-util-events-to-acorn@^1.0.0: - version "1.2.3" - resolved "https://registry.yarnpkg.com/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.3.tgz#a4ab157f57a380e646670e49ddee97a72b58b557" - integrity sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w== - dependencies: - "@types/acorn" "^4.0.0" - "@types/estree" "^1.0.0" - "@types/unist" "^2.0.0" - estree-util-visit "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - uvu "^0.5.0" - vfile-message "^3.0.0" - -micromark-util-html-tag-name@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz#48fd7a25826f29d2f71479d3b4e83e94829b3588" - integrity sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q== - -micromark-util-normalize-identifier@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz#7a73f824eb9f10d442b4d7f120fecb9b38ebf8b7" - integrity sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q== - dependencies: - micromark-util-symbol "^1.0.0" - -micromark-util-resolve-all@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz#4652a591ee8c8fa06714c9b54cd6c8e693671188" - integrity sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA== - dependencies: - micromark-util-types "^1.0.0" - -micromark-util-sanitize-uri@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz#613f738e4400c6eedbc53590c67b197e30d7f90d" - integrity sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A== - dependencies: - micromark-util-character "^1.0.0" - micromark-util-encode "^1.0.0" - micromark-util-symbol "^1.0.0" - -micromark-util-subtokenize@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz#941c74f93a93eaf687b9054aeb94642b0e92edb1" - integrity sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A== - dependencies: - micromark-util-chunked "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - uvu "^0.5.0" - -micromark-util-symbol@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz#813cd17837bdb912d069a12ebe3a44b6f7063142" - integrity sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag== - -micromark-util-types@^1.0.0, micromark-util-types@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-1.1.0.tgz#e6676a8cae0bb86a2171c498167971886cb7e283" - integrity sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg== - -micromark@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/micromark/-/micromark-3.2.0.tgz#1af9fef3f995ea1ea4ac9c7e2f19c48fd5c006e9" - integrity sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA== - dependencies: - "@types/debug" "^4.0.0" - debug "^4.0.0" - decode-named-character-reference "^1.0.0" - micromark-core-commonmark "^1.0.1" - micromark-factory-space "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-chunked "^1.0.0" - micromark-util-combine-extensions "^1.0.0" - micromark-util-decode-numeric-character-reference "^1.0.0" - micromark-util-encode "^1.0.0" - micromark-util-normalize-identifier "^1.0.0" - micromark-util-resolve-all "^1.0.0" - micromark-util-sanitize-uri "^1.0.0" - micromark-util-subtokenize "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.1" - uvu "^0.5.0" - -micromatch@^4.0.2, micromatch@^4.0.4: - version "4.0.5" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" - integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== - dependencies: - braces "^3.0.2" - picomatch "^2.3.1" - -mime-db@1.52.0: - version "1.52.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" - integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== - -mime-types@^2.1.12, mime-types@~2.1.24, mime-types@~2.1.34: - version "2.1.35" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" - integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== - dependencies: - mime-db "1.52.0" - -mime@1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== - -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - -mimic-response@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" - integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== - -mimic-response@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" - integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== - -minimatch@^3.0.4, minimatch@^3.1.1: - version "3.1.2" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== - dependencies: - brace-expansion "^1.1.7" - -minimatch@^9.0.0: - version "9.0.1" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.1.tgz#8a555f541cf976c622daf078bb28f29fb927c253" - integrity sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w== - dependencies: - brace-expansion "^2.0.1" - -minimist@^1.2.6: - version "1.2.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" - integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== - -minipass-collect@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" - integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== - dependencies: - minipass "^3.0.0" - -minipass-flush@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" - integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== - dependencies: - minipass "^3.0.0" - -minipass-pipeline@^1.2.2: - version "1.2.4" - resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" - integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== - dependencies: - minipass "^3.0.0" - -minipass@^3.0.0, minipass@^3.1.1: - version "3.3.6" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" - integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== - dependencies: - yallist "^4.0.0" - -minipass@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" - integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== - -minizlib@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" - integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== - dependencies: - minipass "^3.0.0" - yallist "^4.0.0" - -mkdirp-classic@^0.5.2: - version "0.5.3" - resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" - integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== - -mkdirp@^1.0.3, mkdirp@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" - integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== - -mlly@^1.1.0, mlly@^1.2.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.4.0.tgz#830c10d63f1f97bd8785377b24dc2a15d972832b" - integrity sha512-ua8PAThnTwpprIaU47EPeZ/bPUVp2QYBbWMphUQpVdBI3Lgqzm5KZQ45Agm3YJedHXaIHl6pBGabaLSUPPSptg== - dependencies: - acorn "^8.9.0" - pathe "^1.1.1" - pkg-types "^1.0.3" - ufo "^1.1.2" - -mri@1.2.0, mri@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b" - integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA== - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== - -ms@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -ms@2.1.3, ms@^2.0.0: - version "2.1.3" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - -mute-stream@0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" - integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== - -nanoid@^3.3.4, nanoid@^3.3.6: - version "3.3.6" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" - integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== - -negotiator@0.6.3: - version "0.6.3" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" - integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== - -netmask@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/netmask/-/netmask-2.0.2.tgz#8b01a07644065d536383835823bc52004ebac5e7" - integrity sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg== - -next@13.4.6: - version "13.4.6" - resolved "https://registry.yarnpkg.com/next/-/next-13.4.6.tgz#ebe52f5c74d60176d45b45e73f25a51103713ea4" - integrity sha512-sjVqjxU+U2aXZnYt4Ud6CTLNNwWjdSfMgemGpIQJcN3Z7Jni9xRWbR0ie5fQzCg87aLqQVhKA2ud2gPoqJ9lGw== - dependencies: - "@next/env" "13.4.6" - "@swc/helpers" "0.5.1" - busboy "1.6.0" - caniuse-lite "^1.0.30001406" - postcss "8.4.14" - styled-jsx "5.1.1" - watchpack "2.4.0" - zod "3.21.4" - optionalDependencies: - "@next/swc-darwin-arm64" "13.4.6" - "@next/swc-darwin-x64" "13.4.6" - "@next/swc-linux-arm64-gnu" "13.4.6" - "@next/swc-linux-arm64-musl" "13.4.6" - "@next/swc-linux-x64-gnu" "13.4.6" - "@next/swc-linux-x64-musl" "13.4.6" - "@next/swc-win32-arm64-msvc" "13.4.6" - "@next/swc-win32-ia32-msvc" "13.4.6" - "@next/swc-win32-x64-msvc" "13.4.6" - -node-addon-api@^1.7.1: - version "1.7.2" - resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz#3df30b95720b53c24e59948b49532b662444f54d" - integrity sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg== - -node-domexception@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" - integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== - -node-fetch@2.6.9: - version "2.6.9" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.9.tgz#7c7f744b5cc6eb5fd404e0c7a9fec630a55657e6" - integrity sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg== - dependencies: - whatwg-url "^5.0.0" - -node-fetch@^2.6.7, node-fetch@^2.6.9: - version "2.6.11" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.11.tgz#cde7fc71deef3131ef80a738919f999e6edfff25" - integrity sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w== - dependencies: - whatwg-url "^5.0.0" - -node-gyp-build@^4.2.2: - version "4.6.0" - resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.6.0.tgz#0c52e4cbf54bbd28b709820ef7b6a3c2d6209055" - integrity sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ== - -node-releases@^2.0.12: - version "2.0.12" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.12.tgz#35627cc224a23bfb06fb3380f2b3afaaa7eb1039" - integrity sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ== - -nopt@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88" - integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== - dependencies: - abbrev "1" - -normalize-path@^3.0.0, normalize-path@~3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -normalize-url@^6.0.1: - version "6.1.0" - resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" - integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== - -npm-run-path@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" - integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== - dependencies: - path-key "^3.0.0" - -npmlog@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-5.0.1.tgz#f06678e80e29419ad67ab964e0fa69959c1eb8b0" - integrity sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw== - dependencies: - are-we-there-yet "^2.0.0" - console-control-strings "^1.1.0" - gauge "^3.0.0" - set-blocking "^2.0.0" - -object-assign@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== - -object-inspect@^1.9.0: - version "1.12.3" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" - integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== - -on-finished@2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" - integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== - dependencies: - ee-first "1.1.1" - -once@^1.3.0, once@^1.3.1, once@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== - dependencies: - wrappy "1" - -onetime@^5.1.0, onetime@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== - dependencies: - mimic-fn "^2.1.0" - -optionator@^0.8.1: - version "0.8.3" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" - integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== - dependencies: - deep-is "~0.1.3" - fast-levenshtein "~2.0.6" - levn "~0.3.0" - prelude-ls "~1.1.2" - type-check "~0.3.2" - word-wrap "~1.2.3" - -ora@^5.4.1: - version "5.4.1" - resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" - integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== - dependencies: - bl "^4.1.0" - chalk "^4.1.0" - cli-cursor "^3.1.0" - cli-spinners "^2.5.0" - is-interactive "^1.0.0" - is-unicode-supported "^0.1.0" - log-symbols "^4.1.0" - strip-ansi "^6.0.0" - wcwidth "^1.0.1" - -os-tmpdir@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== - -outdent@^0.8.0: - version "0.8.0" - resolved "https://registry.yarnpkg.com/outdent/-/outdent-0.8.0.tgz#2ebc3e77bf49912543f1008100ff8e7f44428eb0" - integrity sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A== - -p-cancelable@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz#aab7fbd416582fa32a3db49859c122487c5ed2cf" - integrity sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg== - -p-limit@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" - integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== - dependencies: - yocto-queue "^0.1.0" - -p-locate@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" - integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== - dependencies: - p-limit "^3.0.2" - -p-map@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" - integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== - dependencies: - aggregate-error "^3.0.0" - -pac-proxy-agent@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/pac-proxy-agent/-/pac-proxy-agent-5.0.0.tgz#b718f76475a6a5415c2efbe256c1c971c84f635e" - integrity sha512-CcFG3ZtnxO8McDigozwE3AqAw15zDvGH+OjXO4kzf7IkEKkQ4gxQ+3sdF50WmhQ4P/bVusXcqNE2S3XrNURwzQ== - dependencies: - "@tootallnate/once" "1" - agent-base "6" - debug "4" - get-uri "3" - http-proxy-agent "^4.0.1" - https-proxy-agent "5" - pac-resolver "^5.0.0" - raw-body "^2.2.0" - socks-proxy-agent "5" - -pac-resolver@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/pac-resolver/-/pac-resolver-5.0.1.tgz#c91efa3a9af9f669104fa2f51102839d01cde8e7" - integrity sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q== - dependencies: - degenerator "^3.0.2" - ip "^1.1.5" - netmask "^2.0.2" - -pako@~0.2.0: - version "0.2.9" - resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" - integrity sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA== - -parse-entities@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-4.0.1.tgz#4e2a01111fb1c986549b944af39eeda258fc9e4e" - integrity sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w== - dependencies: - "@types/unist" "^2.0.0" - character-entities "^2.0.0" - character-entities-legacy "^3.0.0" - character-reference-invalid "^2.0.0" - decode-named-character-reference "^1.0.0" - is-alphanumerical "^2.0.0" - is-decimal "^2.0.0" - is-hexadecimal "^2.0.0" - -parse-ms@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-2.1.0.tgz#348565a753d4391fa524029956b172cb7753097d" - integrity sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA== - -parseurl@~1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" - integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== - -path-browserify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" - integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== - -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== - -path-key@^3.0.0, path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - -path-parse@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== - -path-to-regexp@0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" - integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== - -path-to-regexp@6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.1.0.tgz#0b18f88b7a0ce0bfae6a25990c909ab86f512427" - integrity sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw== - -path-to-regexp@6.2.1: - version "6.2.1" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.2.1.tgz#d54934d6798eb9e5ef14e7af7962c945906918e5" - integrity sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw== - -path-type@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" - integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== - -pathe@^1.1.0, pathe@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.1.tgz#1dd31d382b974ba69809adc9a7a347e65d84829a" - integrity sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q== - -peek-stream@^1.1.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/peek-stream/-/peek-stream-1.1.3.tgz#3b35d84b7ccbbd262fff31dc10da56856ead6d67" - integrity sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA== - dependencies: - buffer-from "^1.0.0" - duplexify "^3.5.0" - through2 "^2.0.3" - -periscopic@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/periscopic/-/periscopic-3.1.0.tgz#7e9037bf51c5855bd33b48928828db4afa79d97a" - integrity sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw== - dependencies: - "@types/estree" "^1.0.0" - estree-walker "^3.0.0" - is-reference "^3.0.0" - -picocolors@1.0.0, picocolors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" - integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== - -picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== - -pkg-types@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.0.3.tgz#988b42ab19254c01614d13f4f65a2cfc7880f868" - integrity sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A== - dependencies: - jsonc-parser "^3.2.0" - mlly "^1.2.0" - pathe "^1.1.0" - -postcss-discard-duplicates@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz#9eb4fe8456706a4eebd6d3b7b777d07bad03e848" - integrity sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw== - -postcss-load-config@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.1.tgz#152383f481c2758274404e4962743191d73875bd" - integrity sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA== - dependencies: - lilconfig "^2.0.5" - yaml "^2.1.1" - -postcss-modules-extract-imports@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d" - integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== - -postcss-modules-local-by-default@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz#b08eb4f083050708998ba2c6061b50c2870ca524" - integrity sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA== - dependencies: - icss-utils "^5.0.0" - postcss-selector-parser "^6.0.2" - postcss-value-parser "^4.1.0" - -postcss-modules-scope@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06" - integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== - dependencies: - postcss-selector-parser "^6.0.4" - -postcss-modules-values@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c" - integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== - dependencies: - icss-utils "^5.0.0" - -postcss-modules@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules/-/postcss-modules-6.0.0.tgz#cac283dbabbbdc2558c45391cbd0e2df9ec50118" - integrity sha512-7DGfnlyi/ju82BRzTIjWS5C4Tafmzl3R79YP/PASiocj+aa6yYphHhhKUOEoXQToId5rgyFgJ88+ccOUydjBXQ== - dependencies: - generic-names "^4.0.0" - icss-utils "^5.1.0" - lodash.camelcase "^4.3.0" - postcss-modules-extract-imports "^3.0.0" - postcss-modules-local-by-default "^4.0.0" - postcss-modules-scope "^3.0.0" - postcss-modules-values "^4.0.0" - string-hash "^1.1.1" - -postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4: - version "6.0.13" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b" - integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== - dependencies: - cssesc "^3.0.0" - util-deprecate "^1.0.2" - -postcss-value-parser@^4.1.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" - integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== - -postcss@8.4.14: - version "8.4.14" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf" - integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== - dependencies: - nanoid "^3.3.4" - picocolors "^1.0.0" - source-map-js "^1.0.2" - -postcss@^8.4.19, postcss@^8.4.23: - version "8.4.24" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.24.tgz#f714dba9b2284be3cc07dbd2fc57ee4dc972d2df" - integrity sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg== - dependencies: - nanoid "^3.3.6" - picocolors "^1.0.0" - source-map-js "^1.0.2" - -prelude-ls@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" - integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== - -prettier@^2.7.1: - version "2.8.8" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" - integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== - -pretty-bytes@5.6.0: - version "5.6.0" - resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" - integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== - -pretty-ms@7.0.1, pretty-ms@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-7.0.1.tgz#7d903eaab281f7d8e03c66f867e239dc32fb73e8" - integrity sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q== - dependencies: - parse-ms "^2.1.0" - -process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - -promise-inflight@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" - integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g== - -property-information@^6.0.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.2.0.tgz#b74f522c31c097b5149e3c3cb8d7f3defd986a1d" - integrity sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg== - -proxy-addr@~2.0.7: - version "2.0.7" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" - integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== - dependencies: - forwarded "0.2.0" - ipaddr.js "1.9.1" - -proxy-agent@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/proxy-agent/-/proxy-agent-5.0.0.tgz#d31405c10d6e8431fde96cba7a0c027ce01d633b" - integrity sha512-gkH7BkvLVkSfX9Dk27W6TyNOWWZWRilRfk1XxGNWOYJ2TuedAv1yFpCaU9QSBmBe716XOTNpYNOzhysyw8xn7g== - dependencies: - agent-base "^6.0.0" - debug "4" - http-proxy-agent "^4.0.0" - https-proxy-agent "^5.0.0" - lru-cache "^5.1.1" - pac-proxy-agent "^5.0.0" - proxy-from-env "^1.0.0" - socks-proxy-agent "^5.0.0" - -proxy-from-env@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" - integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== - -pump@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" - integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -pump@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -pumpify@^1.3.3: - version "1.5.1" - resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" - integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== - dependencies: - duplexify "^3.6.0" - inherits "^2.0.3" - pump "^2.0.0" - -punycode@^2.1.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" - integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== - -qs@6.11.0: - version "6.11.0" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" - integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== - dependencies: - side-channel "^1.0.4" - -qs@^6.10.3: - version "6.11.2" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" - integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== - dependencies: - side-channel "^1.0.4" - -queue-microtask@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" - integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== - -quick-lru@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" - integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== - -range-parser@~1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" - integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== - -raw-body@2.5.1: - version "2.5.1" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" - integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== - dependencies: - bytes "3.1.2" - http-errors "2.0.0" - iconv-lite "0.4.24" - unpipe "1.0.0" - -raw-body@^2.2.0: - version "2.5.2" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.2.tgz#99febd83b90e08975087e8f1f9419a149366b68a" - integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA== - dependencies: - bytes "3.1.2" - http-errors "2.0.0" - iconv-lite "0.4.24" - unpipe "1.0.0" - -react-dom@18.2.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" - integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== - dependencies: - loose-envify "^1.1.0" - scheduler "^0.23.0" - -react-refresh@^0.14.0: - version "0.14.0" - resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.0.tgz#4e02825378a5f227079554d4284889354e5f553e" - integrity sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ== - -react@18.2.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" - integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== - dependencies: - loose-envify "^1.1.0" - -readable-stream@1.1.x: - version "1.1.14" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" - integrity sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.1" - isarray "0.0.1" - string_decoder "~0.10.x" - -readable-stream@^2.0.0, readable-stream@~2.3.6: - version "2.3.8" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" - integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - -readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: - version "3.6.2" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" - integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -readdirp@~3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" - integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== - dependencies: - picomatch "^2.2.1" - -recast@^0.21.5: - version "0.21.5" - resolved "https://registry.yarnpkg.com/recast/-/recast-0.21.5.tgz#e8cd22bb51bcd6130e54f87955d33a2b2e57b495" - integrity sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg== - dependencies: - ast-types "0.15.2" - esprima "~4.0.0" - source-map "~0.6.1" - tslib "^2.0.1" - -regenerate-unicode-properties@^10.1.0: - version "10.1.0" - resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c" - integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ== - dependencies: - regenerate "^1.4.2" - -regenerate@^1.4.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" - integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== - -regenerator-runtime@^0.13.11, regenerator-runtime@^0.13.4: - version "0.13.11" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" - integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== - -regenerator-transform@^0.15.1: - version "0.15.1" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56" - integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg== - dependencies: - "@babel/runtime" "^7.8.4" - -regexpu-core@^5.3.1: - version "5.3.2" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" - integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== - dependencies: - "@babel/regjsgen" "^0.8.0" - regenerate "^1.4.2" - regenerate-unicode-properties "^10.1.0" - regjsparser "^0.9.1" - unicode-match-property-ecmascript "^2.0.0" - unicode-match-property-value-ecmascript "^2.1.0" - -regjsparser@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" - integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== - dependencies: - jsesc "~0.5.0" - -remark-frontmatter@4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/remark-frontmatter/-/remark-frontmatter-4.0.1.tgz#84560f7ccef114ef076d3d3735be6d69f8922309" - integrity sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA== - dependencies: - "@types/mdast" "^3.0.0" - mdast-util-frontmatter "^1.0.0" - micromark-extension-frontmatter "^1.0.0" - unified "^10.0.0" - -remark-mdx-frontmatter@^1.0.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/remark-mdx-frontmatter/-/remark-mdx-frontmatter-1.1.1.tgz#54cfb3821fbb9cb6057673e0570ae2d645f6fe32" - integrity sha512-7teX9DW4tI2WZkXS4DBxneYSY7NHiXl4AKdWDO9LXVweULlCT8OPWsOjLEnMIXViN1j+QcY8mfbq3k0EK6x3uA== - dependencies: - estree-util-is-identifier-name "^1.0.0" - estree-util-value-to-estree "^1.0.0" - js-yaml "^4.0.0" - toml "^3.0.0" - -remark-parse@^10.0.0: - version "10.0.2" - resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-10.0.2.tgz#ca241fde8751c2158933f031a4e3efbaeb8bc262" - integrity sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw== - dependencies: - "@types/mdast" "^3.0.0" - mdast-util-from-markdown "^1.0.0" - unified "^10.0.0" - -remark-rehype@^9.0.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/remark-rehype/-/remark-rehype-9.1.0.tgz#e4b5b6e19c125b3780343eb66c3e9b99b0f06a81" - integrity sha512-oLa6YmgAYg19zb0ZrBACh40hpBLteYROaPLhBXzLgjqyHQrN+gVP9N/FJvfzuNNuzCutktkroXEZBrxAxKhh7Q== - dependencies: - "@types/hast" "^2.0.0" - "@types/mdast" "^3.0.0" - mdast-util-to-hast "^11.0.0" - unified "^10.0.0" - -require-from-string@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" - integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== - -"require-like@>= 0.1.1": - version "0.1.2" - resolved "https://registry.yarnpkg.com/require-like/-/require-like-0.1.2.tgz#ad6f30c13becd797010c468afa775c0c0a6b47fa" - integrity sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A== - -resolve-alpn@^1.0.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz#b7adbdac3546aaaec20b45e7d8265927072726f9" - integrity sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g== - -resolve-from@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" - integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - -resolve@^1.14.2: - version "1.22.2" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" - integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== - dependencies: - is-core-module "^2.11.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - -responselike@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/responselike/-/responselike-2.0.1.tgz#9a0bc8fdc252f3fb1cca68b016591059ba1422bc" - integrity sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw== - dependencies: - lowercase-keys "^2.0.0" - -restore-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" - integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== - dependencies: - onetime "^5.1.0" - signal-exit "^3.0.2" - -reusify@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" - integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== - -rimraf@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== - dependencies: - glob "^7.1.3" - -rollup@^3.21.0: - version "3.25.1" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.25.1.tgz#9fff79d22ff1a904b2b595a2fb9bc3793cb987d8" - integrity sha512-tywOR+rwIt5m2ZAWSe5AIJcTat8vGlnPFAv15ycCrw33t6iFsXZ6mzHVFh2psSjxQPmI+xgzMZZizUAukBI4aQ== - optionalDependencies: - fsevents "~2.3.2" - -run-async@^2.4.0: - version "2.4.1" - resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" - integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== - -run-parallel@^1.1.9: - version "1.2.0" - resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" - integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== - dependencies: - queue-microtask "^1.2.2" - -rxjs@^7.5.5: - version "7.8.1" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" - integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== - dependencies: - tslib "^2.1.0" - -sade@^1.7.3: - version "1.8.1" - resolved "https://registry.yarnpkg.com/sade/-/sade-1.8.1.tgz#0a78e81d658d394887be57d2a409bf703a3b2701" - integrity sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A== - dependencies: - mri "^1.1.0" - -safe-buffer@5.2.1, safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -"safer-buffer@>= 2.1.2 < 3": - version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - -scheduler@^0.23.0: - version "0.23.0" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" - integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== - dependencies: - loose-envify "^1.1.0" - -semver@6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.1.1.tgz#53f53da9b30b2103cd4f15eab3a18ecbcb210c9b" - integrity sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ== - -semver@7.3.8: - version "7.3.8" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" - integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== - dependencies: - lru-cache "^6.0.0" - -semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -semver@^7.3.5, semver@^7.3.7: - version "7.5.2" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.2.tgz#5b851e66d1be07c1cdaf37dfc856f543325a2beb" - integrity sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ== - dependencies: - lru-cache "^6.0.0" - -send@0.18.0: - version "0.18.0" - resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" - integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== - dependencies: - debug "2.6.9" - depd "2.0.0" - destroy "1.2.0" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - fresh "0.5.2" - http-errors "2.0.0" - mime "1.6.0" - ms "2.1.3" - on-finished "2.4.1" - range-parser "~1.2.1" - statuses "2.0.1" - -serve-static@1.15.0: - version "1.15.0" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" - integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== - dependencies: - encodeurl "~1.0.2" - escape-html "~1.0.3" - parseurl "~1.3.3" - send "0.18.0" - -set-blocking@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== - -set-cookie-parser@^2.4.8: - version "2.6.0" - resolved "https://registry.yarnpkg.com/set-cookie-parser/-/set-cookie-parser-2.6.0.tgz#131921e50f62ff1a66a461d7d62d7b21d5d15a51" - integrity sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ== - -setprototypeof@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" - integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== - -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -side-channel@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" - integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== - dependencies: - call-bind "^1.0.0" - get-intrinsic "^1.0.2" - object-inspect "^1.9.0" - -signal-exit@4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.0.2.tgz#ff55bb1d9ff2114c13b400688fa544ac63c36967" - integrity sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q== - -signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3: - version "3.0.7" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" - integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== - -slash@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" - integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - -smart-buffer@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" - integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== - -socks-proxy-agent@5, socks-proxy-agent@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-5.0.1.tgz#032fb583048a29ebffec2e6a73fca0761f48177e" - integrity sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ== - dependencies: - agent-base "^6.0.2" - debug "4" - socks "^2.3.3" - -socks@^2.3.3: - version "2.7.1" - resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.1.tgz#d8e651247178fde79c0663043e07240196857d55" - integrity sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ== - dependencies: - ip "^2.0.0" - smart-buffer "^4.2.0" - -sort-object-keys@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/sort-object-keys/-/sort-object-keys-1.1.3.tgz#bff833fe85cab147b34742e45863453c1e190b45" - integrity sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg== - -sort-package-json@^1.55.0: - version "1.57.0" - resolved "https://registry.yarnpkg.com/sort-package-json/-/sort-package-json-1.57.0.tgz#e95fb44af8ede0bb6147e3f39258102d4bb23fc4" - integrity sha512-FYsjYn2dHTRb41wqnv+uEqCUvBpK3jZcTp9rbz2qDTmel7Pmdtf+i2rLaaPMRZeSVM60V3Se31GyWFpmKs4Q5Q== - dependencies: - detect-indent "^6.0.0" - detect-newline "3.1.0" - git-hooks-list "1.0.3" - globby "10.0.0" - is-plain-obj "2.1.0" - sort-object-keys "^1.1.3" - -source-map-js@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" - integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== - -source-map-support@^0.5.21: - version "0.5.21" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" - integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -source-map@^0.7.0, source-map@^0.7.3: - version "0.7.4" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" - integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== - -space-separated-tokens@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz#1ecd9d2350a3844572c3f4a312bceb018348859f" - integrity sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q== - -ssri@^8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af" - integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ== - dependencies: - minipass "^3.1.1" - -statuses@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" - integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== - -stream-shift@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" - integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ== - -streamsearch@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764" - integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== - -string-hash@^1.1.1: - version "1.1.3" - resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b" - integrity sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A== - -"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -string_decoder@~0.10.x: - version "0.10.31" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" - integrity sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ== - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - -stringify-entities@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-4.0.3.tgz#cfabd7039d22ad30f3cc435b0ca2c1574fc88ef8" - integrity sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g== - dependencies: - character-entities-html4 "^2.0.0" - character-entities-legacy "^3.0.0" - -strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-bom@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" - integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== - -strip-final-newline@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" - integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== - -style-to-object@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.4.1.tgz#53cf856f7cf7f172d72939d9679556469ba5de37" - integrity sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw== - dependencies: - inline-style-parser "0.1.1" - -styled-jsx@5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.1.1.tgz#839a1c3aaacc4e735fed0781b8619ea5d0009d1f" - integrity sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw== - dependencies: - client-only "0.0.1" - -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - -supports-color@^7.1.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" - integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== - dependencies: - has-flag "^4.0.0" - -supports-preserve-symlinks-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" - integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== - -tar-fs@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" - integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== - dependencies: - chownr "^1.1.1" - mkdirp-classic "^0.5.2" - pump "^3.0.0" - tar-stream "^2.1.4" - -tar-stream@^2.1.4: - version "2.2.0" - resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" - integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== - dependencies: - bl "^4.0.3" - end-of-stream "^1.4.1" - fs-constants "^1.0.0" - inherits "^2.0.3" - readable-stream "^3.1.1" - -tar@^6.0.2, tar@^6.1.11: - version "6.1.15" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.15.tgz#c9738b0b98845a3b344d334b8fa3041aaba53a69" - integrity sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A== - dependencies: - chownr "^2.0.0" - fs-minipass "^2.0.0" - minipass "^5.0.0" - minizlib "^2.1.1" - mkdirp "^1.0.3" - yallist "^4.0.0" - -through2@^2.0.3: - version "2.0.5" - resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" - integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== - dependencies: - readable-stream "~2.3.6" - xtend "~4.0.1" - -through@^2.3.6: - version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== - -time-span@4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/time-span/-/time-span-4.0.0.tgz#fe74cd50a54e7998712f90ddfe47109040c985c4" - integrity sha512-MyqZCTGLDZ77u4k+jqg4UlrzPTPZ49NDlaekU6uuFaJLzPIN1woaRXCbGeqOfxwc3Y37ZROGAJ614Rdv7Olt+g== - dependencies: - convert-hrtime "^3.0.0" - -tmp@^0.0.33: - version "0.0.33" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" - integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== - dependencies: - os-tmpdir "~1.0.2" - -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - -toidentifier@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" - integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== - -toml@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/toml/-/toml-3.0.0.tgz#342160f1af1904ec9d204d03a5d61222d762c5ee" - integrity sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w== - -tr46@~0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" - integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== - -trough@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/trough/-/trough-2.1.0.tgz#0f7b511a4fde65a46f18477ab38849b22c554876" - integrity sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g== - -ts-morph@12.0.0: - version "12.0.0" - resolved "https://registry.yarnpkg.com/ts-morph/-/ts-morph-12.0.0.tgz#a601c3538703755cbfa2d42b62c52df73e9dbbd7" - integrity sha512-VHC8XgU2fFW7yO1f/b3mxKDje1vmyzFXHWzOYmKEkCEwcLjDtbdLgBQviqj4ZwP4MJkQtRo6Ha2I29lq/B+VxA== - dependencies: - "@ts-morph/common" "~0.11.0" - code-block-writer "^10.1.1" - -ts-node@10.9.1: - version "10.9.1" - resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" - integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== - dependencies: - "@cspotcode/source-map-support" "^0.8.0" - "@tsconfig/node10" "^1.0.7" - "@tsconfig/node12" "^1.0.7" - "@tsconfig/node14" "^1.0.0" - "@tsconfig/node16" "^1.0.2" - acorn "^8.4.1" - acorn-walk "^8.1.1" - arg "^4.1.0" - create-require "^1.1.0" - diff "^4.0.1" - make-error "^1.1.1" - v8-compile-cache-lib "^3.0.1" - yn "3.1.1" - -ts-toolbelt@^6.15.5: - version "6.15.5" - resolved "https://registry.yarnpkg.com/ts-toolbelt/-/ts-toolbelt-6.15.5.tgz#cb3b43ed725cb63644782c64fbcad7d8f28c0a83" - integrity sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A== - -tsconfig-paths@^4.0.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz#ef78e19039133446d244beac0fd6a1632e2d107c" - integrity sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg== - dependencies: - json5 "^2.2.2" - minimist "^1.2.6" - strip-bom "^3.0.0" - -tslib@^2.0.1, tslib@^2.1.0, tslib@^2.4.0: - version "2.5.3" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.3.tgz#24944ba2d990940e6e982c4bea147aba80209913" - integrity sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w== - -type-check@~0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" - integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg== - dependencies: - prelude-ls "~1.1.2" - -type-fest@^0.21.3: - version "0.21.3" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" - integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== - -type-is@~1.6.18: - version "1.6.18" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" - integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== - dependencies: - media-typer "0.3.0" - mime-types "~2.1.24" - -typescript@4.9.5: - version "4.9.5" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" - integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== - -typescript@5.1.3: - version "5.1.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.3.tgz#8d84219244a6b40b6fb2b33cc1c062f715b9e826" - integrity sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw== - -ufo@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.1.2.tgz#d0d9e0fa09dece0c31ffd57bd363f030a35cfe76" - integrity sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ== - -unicode-canonical-property-names-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" - integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== - -unicode-match-property-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" - integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== - dependencies: - unicode-canonical-property-names-ecmascript "^2.0.0" - unicode-property-aliases-ecmascript "^2.0.0" - -unicode-match-property-value-ecmascript@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" - integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== - -unicode-property-aliases-ecmascript@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" - integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== - -unified@^10.0.0: - version "10.1.2" - resolved "https://registry.yarnpkg.com/unified/-/unified-10.1.2.tgz#b1d64e55dafe1f0b98bb6c719881103ecf6c86df" - integrity sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q== - dependencies: - "@types/unist" "^2.0.0" - bail "^2.0.0" - extend "^3.0.0" - is-buffer "^2.0.0" - is-plain-obj "^4.0.0" - trough "^2.0.0" - vfile "^5.0.0" - -unique-filename@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" - integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== - dependencies: - unique-slug "^2.0.0" - -unique-slug@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c" - integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w== - dependencies: - imurmurhash "^0.1.4" - -unist-builder@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/unist-builder/-/unist-builder-3.0.1.tgz#258b89dcadd3c973656b2327b347863556907f58" - integrity sha512-gnpOw7DIpCA0vpr6NqdPvTWnlPTApCTRzr+38E6hCWx3rz/cjo83SsKIlS1Z+L5ttScQ2AwutNnb8+tAvpb6qQ== - dependencies: - "@types/unist" "^2.0.0" - -unist-util-generated@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-2.0.1.tgz#e37c50af35d3ed185ac6ceacb6ca0afb28a85cae" - integrity sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A== - -unist-util-is@^5.0.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-5.2.1.tgz#b74960e145c18dcb6226bc57933597f5486deae9" - integrity sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw== - dependencies: - "@types/unist" "^2.0.0" - -unist-util-position-from-estree@^1.0.0, unist-util-position-from-estree@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.2.tgz#8ac2480027229de76512079e377afbcabcfcce22" - integrity sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww== - dependencies: - "@types/unist" "^2.0.0" - -unist-util-position@^4.0.0: - version "4.0.4" - resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-4.0.4.tgz#93f6d8c7d6b373d9b825844645877c127455f037" - integrity sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg== - dependencies: - "@types/unist" "^2.0.0" - -unist-util-remove-position@^4.0.0: - version "4.0.2" - resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-4.0.2.tgz#a89be6ea72e23b1a402350832b02a91f6a9afe51" - integrity sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ== - dependencies: - "@types/unist" "^2.0.0" - unist-util-visit "^4.0.0" - -unist-util-stringify-position@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz#03ad3348210c2d930772d64b489580c13a7db39d" - integrity sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg== - dependencies: - "@types/unist" "^2.0.0" - -unist-util-visit-parents@^5.1.1: - version "5.1.3" - resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz#b4520811b0ca34285633785045df7a8d6776cfeb" - integrity sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg== - dependencies: - "@types/unist" "^2.0.0" - unist-util-is "^5.0.0" - -unist-util-visit@^4.0.0: - version "4.1.2" - resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-4.1.2.tgz#125a42d1eb876283715a3cb5cceaa531828c72e2" - integrity sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg== - dependencies: - "@types/unist" "^2.0.0" - unist-util-is "^5.0.0" - unist-util-visit-parents "^5.1.1" - -universalify@^0.1.0: - version "0.1.2" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" - integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== - -universalify@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" - integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== - -unpipe@1.0.0, unpipe@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" - integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== - -update-browserslist-db@^1.0.11: - version "1.0.11" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" - integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== - dependencies: - escalade "^3.1.1" - picocolors "^1.0.0" - -uri-js@^4.2.2: - version "4.4.1" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" - integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== - dependencies: - punycode "^2.1.0" - -util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== - -utils-merge@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" - integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== - -uvu@^0.5.0: - version "0.5.6" - resolved "https://registry.yarnpkg.com/uvu/-/uvu-0.5.6.tgz#2754ca20bcb0bb59b64e9985e84d2e81058502df" - integrity sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA== - dependencies: - dequal "^2.0.0" - diff "^5.0.0" - kleur "^4.0.3" - sade "^1.7.3" - -v8-compile-cache-lib@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" - integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== - -vary@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" - integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== - -vercel@^30.2.3: - version "30.2.3" - resolved "https://registry.yarnpkg.com/vercel/-/vercel-30.2.3.tgz#8c00c17fd126c8952061dd9250f2f27deab0d809" - integrity sha512-Eil4CR1a/pZkTl3gewzN8rDTisRmuixHAgymWutrRlc1qBYGPMo9ZPTu/9cR3k2PT7yjeRMYYLm0ax9l43lDhQ== - dependencies: - "@vercel/build-utils" "6.7.5" - "@vercel/go" "2.5.1" - "@vercel/hydrogen" "0.0.64" - "@vercel/next" "3.8.6" - "@vercel/node" "2.15.2" - "@vercel/python" "3.1.60" - "@vercel/redwood" "1.1.15" - "@vercel/remix-builder" "1.8.14" - "@vercel/ruby" "1.3.76" - "@vercel/static-build" "1.3.37" - -vfile-message@^3.0.0: - version "3.1.4" - resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-3.1.4.tgz#15a50816ae7d7c2d1fa87090a7f9f96612b59dea" - integrity sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw== - dependencies: - "@types/unist" "^2.0.0" - unist-util-stringify-position "^3.0.0" - -vfile@^5.0.0: - version "5.3.7" - resolved "https://registry.yarnpkg.com/vfile/-/vfile-5.3.7.tgz#de0677e6683e3380fafc46544cfe603118826ab7" - integrity sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g== - dependencies: - "@types/unist" "^2.0.0" - is-buffer "^2.0.0" - unist-util-stringify-position "^3.0.0" - vfile-message "^3.0.0" - -vite-node@^0.28.5: - version "0.28.5" - resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-0.28.5.tgz#56d0f78846ea40fddf2e28390899df52a4738006" - integrity sha512-LmXb9saMGlrMZbXTvOveJKwMTBTNUH66c8rJnQ0ZPNX+myPEol64+szRzXtV5ORb0Hb/91yq+/D3oERoyAt6LA== - dependencies: - cac "^6.7.14" - debug "^4.3.4" - mlly "^1.1.0" - pathe "^1.1.0" - picocolors "^1.0.0" - source-map "^0.6.1" - source-map-support "^0.5.21" - vite "^3.0.0 || ^4.0.0" - -"vite@^3.0.0 || ^4.0.0", vite@^4.1.4: - version "4.3.9" - resolved "https://registry.yarnpkg.com/vite/-/vite-4.3.9.tgz#db896200c0b1aa13b37cdc35c9e99ee2fdd5f96d" - integrity sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg== - dependencies: - esbuild "^0.17.5" - postcss "^8.4.23" - rollup "^3.21.0" - optionalDependencies: - fsevents "~2.3.2" - -vm2@^3.9.17: - version "3.9.19" - resolved "https://registry.yarnpkg.com/vm2/-/vm2-3.9.19.tgz#be1e1d7a106122c6c492b4d51c2e8b93d3ed6a4a" - integrity sha512-J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg== - dependencies: - acorn "^8.7.0" - acorn-walk "^8.2.0" - -watchpack@2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" - integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== - dependencies: - glob-to-regexp "^0.4.1" - graceful-fs "^4.1.2" - -wcwidth@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" - integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== - dependencies: - defaults "^1.0.3" - -web-streams-polyfill@4.0.0-beta.3: - version "4.0.0-beta.3" - resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz#2898486b74f5156095e473efe989dcf185047a38" - integrity sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug== - -web-vitals@0.2.4: - version "0.2.4" - resolved "https://registry.yarnpkg.com/web-vitals/-/web-vitals-0.2.4.tgz#ec3df43c834a207fd7cdefd732b2987896e08511" - integrity sha512-6BjspCO9VriYy12z356nL6JBS0GYeEcA457YyRzD+dD6XYCQ75NKhcOHUMHentOE7OcVCIXXDvOm0jKFfQG2Gg== - -webidl-conversions@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" - integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== - -whatwg-url@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" - integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== - dependencies: - tr46 "~0.0.3" - webidl-conversions "^3.0.0" - -which@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - dependencies: - isexe "^2.0.0" - -wide-align@^1.1.2: - version "1.1.5" - resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" - integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== - dependencies: - string-width "^1.0.2 || 2 || 3 || 4" - -word-wrap@~1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrappy@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== - -ws@^7.4.5: - version "7.5.9" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" - integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== - -xdm@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/xdm/-/xdm-2.1.0.tgz#d0060eb0f1230b47247bc6b3208ca3965d0053a4" - integrity sha512-3LxxbxKcRogYY7cQSMy1tUuU1zKNK9YPqMT7/S0r7Cz2QpyF8O9yFySGD7caOZt+LWUOQioOIX+6ZzCoBCpcAA== - dependencies: - "@rollup/pluginutils" "^4.0.0" - "@types/estree-jsx" "^0.0.1" - astring "^1.6.0" - estree-util-build-jsx "^2.0.0" - estree-util-is-identifier-name "^2.0.0" - estree-walker "^3.0.0" - got "^11.0.0" - hast-util-to-estree "^2.0.0" - loader-utils "^2.0.0" - markdown-extensions "^1.0.0" - mdast-util-mdx "^1.0.0" - micromark-extension-mdxjs "^1.0.0" - periscopic "^3.0.0" - remark-parse "^10.0.0" - remark-rehype "^9.0.0" - source-map "^0.7.0" - unified "^10.0.0" - unist-util-position-from-estree "^1.0.0" - unist-util-stringify-position "^3.0.0" - unist-util-visit "^4.0.0" - vfile "^5.0.0" - optionalDependencies: - deasync "^0.1.0" - -xregexp@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-2.0.0.tgz#52a63e56ca0b84a7f3a5f3d61872f126ad7a5943" - integrity sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA== - -xtend@~4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - -yallist@^3.0.2: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" - integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== - -yallist@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== - -yaml@^2.1.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.1.tgz#02fe0975d23cd441242aa7204e09fc28ac2ac33b" - integrity sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ== - -yn@3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" - integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== - -yocto-queue@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" - integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== - -zod@3.21.4: - version "3.21.4" - resolved "https://registry.yarnpkg.com/zod/-/zod-3.21.4.tgz#10882231d992519f0a10b5dd58a38c9dabbb64db" - integrity sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw== - -zwitch@^2.0.0: - version "2.0.4" - resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-2.0.4.tgz#c827d4b0acb76fc3e685a4c6ec2902d51070e9d7" - integrity sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A== diff --git a/examples/azure.ts b/examples/azure.ts index 0076d101d..9ff887271 100644 --- a/examples/azure.ts +++ b/examples/azure.ts @@ -45,4 +45,7 @@ async function main() { process.stdout.write('\n'); } -main().catch(console.error); +main().catch((err) => { + console.error(err); + process.exit(1); +}); diff --git a/examples/demo.ts b/examples/demo.ts index 807eca7cf..7c22287a8 100755 --- a/examples/demo.ts +++ b/examples/demo.ts @@ -3,26 +3,26 @@ import OpenAI from 'openai'; // gets API Key from environment variable OPENAI_API_KEY -const client = new OpenAI(); +const openai = new OpenAI(); async function main() { // Non-streaming: - const result = await client.completions.create({ - prompt: 'Say this is a test', - model: 'text-davinci-003', + const completion = await openai.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], }); - console.log(result.choices[0]!.text); + console.log(completion.choices[0]?.message?.content); // Streaming: - const stream = await client.completions.create({ - prompt: 'Say this is a test', - model: 'text-davinci-003', + const stream = await openai.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], stream: true, }); for await (const part of stream) { - process.stdout.write(part.choices[0]?.text || ''); + process.stdout.write(part.choices[0]?.delta?.content || ''); } process.stdout.write('\n'); } -main().catch(console.error); +main(); diff --git a/examples/errors.ts b/examples/errors.ts index 39976d818..7df064886 100644 --- a/examples/errors.ts +++ b/examples/errors.ts @@ -21,8 +21,9 @@ async function main() { console.log(`param: `, err.param); } else { console.log(`Raised unknown error`); + throw err; } } } -main().catch(console.error); +main(); diff --git a/examples/fine-tunes.ts b/examples/fine-tunes.ts index 4fb3b87c2..2de794d8b 100755 --- a/examples/fine-tunes.ts +++ b/examples/fine-tunes.ts @@ -35,4 +35,7 @@ async function main() { } } -main().catch(console.error); +main().catch((err) => { + console.error(err); + process.exit(1); +}); diff --git a/package.json b/package.json index aaae304ca..1a97821c7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.0.0-beta.4", + "version": "4.0.0-beta.5", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", @@ -67,7 +67,7 @@ "build": "bash ./build", "prepack": "echo 'to pack, run yarn build && (cd dist; yarn pack)' && exit 1", "prepublishOnly": "echo 'to publish, run yarn build && (cd dist; yarn publish)' && exit 1", - "format": "prettier --write .", + "format": "prettier --write --cache --cache-strategy metadata . !dist", "tsn": "ts-node -r tsconfig-paths/register", "fix": "eslint --fix --ext ts,js ." }, diff --git a/src/_shims/formdata.node.d.ts b/src/_shims/formdata.node.d.ts index feea1ff92..30eceea80 100644 --- a/src/_shims/formdata.node.d.ts +++ b/src/_shims/formdata.node.d.ts @@ -10,6 +10,7 @@ type EndingType = 'native' | 'transparent'; export interface BlobPropertyBag { endings?: EndingType; + /** MIME type, e.g., "text/plain" */ type?: string; } diff --git a/src/core.ts b/src/core.ts index 50c7734a5..552c51456 100644 --- a/src/core.ts +++ b/src/core.ts @@ -1,7 +1,7 @@ import * as qs from 'qs'; import { VERSION } from './version'; import { Stream } from './streaming'; -import { APIError, APIConnectionError, APIConnectionTimeoutError } from './error'; +import { APIError, APIConnectionError, APIConnectionTimeoutError, APIUserAbortError } from './error'; import type { Readable } from 'openai/_shims/node-readable'; import { getDefaultAgent, type Agent } from 'openai/_shims/agent'; import { @@ -21,7 +21,7 @@ export { const MAX_RETRIES = 2; -type Fetch = (url: RequestInfo, init?: RequestInit) => Promise; +export type Fetch = (url: RequestInfo, init?: RequestInit) => Promise; export abstract class APIClient { baseURL: string; @@ -37,18 +37,20 @@ export abstract class APIClient { maxRetries, timeout = 60 * 1000, // 60s httpAgent, + fetch: overridenFetch, }: { baseURL: string; maxRetries?: number | undefined; timeout: number | undefined; httpAgent: Agent | undefined; + fetch: Fetch | undefined; }) { this.baseURL = baseURL; this.maxRetries = validatePositiveInteger('maxRetries', maxRetries ?? MAX_RETRIES); this.timeout = validatePositiveInteger('timeout', timeout); this.httpAgent = httpAgent; - this.fetch = fetch; + this.fetch = overridenFetch ?? fetch; } protected authHeaders(): Headers { @@ -120,6 +122,20 @@ export abstract class APIClient { return this.requestAPIList(Page, { method: 'get', path, ...opts }); } + private calculateContentLength(body: unknown): string | null { + if (typeof body === 'string') { + if (typeof Buffer !== 'undefined') { + return Buffer.byteLength(body, 'utf8').toString(); + } + + const encoder = new TextEncoder(); + const encoded = encoder.encode(body); + return encoded.length.toString(); + } + + return null; + } + buildRequest( options: FinalRequestOptions, ): { req: RequestInit; url: string; timeout: number } { @@ -129,7 +145,7 @@ export abstract class APIClient { isMultipartBody(options.body) ? options.body.body : options.body ? JSON.stringify(options.body, null, 2) : null; - const contentLength = typeof body === 'string' ? body.length.toString() : null; + const contentLength = this.calculateContentLength(body); const url = this.buildURL(path!, query); if ('timeout' in options) validatePositiveInteger('timeout', options.timeout); @@ -167,6 +183,9 @@ export abstract class APIClient { ...(body && { body: body as any }), headers: reqHeaders, ...(httpAgent && { agent: httpAgent }), + // @ts-ignore node-fetch uses a custom AbortSignal type that is + // not compatible with standard web types + signal: options.signal ?? null, }; this.validateHeaders(reqHeaders, headers); @@ -204,8 +223,15 @@ export abstract class APIClient { const response = await this.fetchWithTimeout(url, req, timeout, controller).catch(castToError); if (response instanceof Error) { - if (retriesRemaining) return this.retryRequest(options, retriesRemaining); - if (response.name === 'AbortError') throw new APIConnectionTimeoutError(); + if (options.signal?.aborted) { + throw new APIUserAbortError(); + } + if (retriesRemaining) { + return this.retryRequest(options, retriesRemaining); + } + if (response.name === 'AbortError') { + throw new APIConnectionTimeoutError(); + } throw new APIConnectionError({ cause: response }); } @@ -229,7 +255,7 @@ export abstract class APIClient { if (options.stream) { // Note: there is an invariant here that isn't represented in the type system // that if you set `stream: true` the response type must also be `Stream` - return new Stream(response, controller) as any; + return new Stream(response, controller) as any; } const contentType = response.headers.get('content-type'); @@ -545,6 +571,7 @@ export type RequestOptions | Readable> stream?: boolean | undefined; timeout?: number; httpAgent?: Agent; + signal?: AbortSignal | undefined | null; idempotencyKey?: string; }; @@ -562,6 +589,7 @@ const requestOptionsKeys: KeysEnum = { stream: true, timeout: true, httpAgent: true, + signal: true, idempotencyKey: true, }; @@ -789,3 +817,19 @@ export const getHeader = (headers: HeadersLike, key: string): string | null | un } return value; }; + +/** + * Encodes a string to Base64 format. + */ +export const toBase64 = (str: string | null | undefined): string => { + if (!str) return ''; + if (typeof Buffer !== 'undefined') { + return Buffer.from(str).toString('base64'); + } + + if (typeof btoa !== 'undefined') { + return btoa(str); + } + + throw new Error('Cannot generate b64 string; Expected `Buffer` or `btoa` to be defined'); +}; diff --git a/src/error.ts b/src/error.ts index 8454e742f..a0d2499e9 100644 --- a/src/error.ts +++ b/src/error.ts @@ -77,6 +77,14 @@ export class APIError extends Error { } } +export class APIUserAbortError extends APIError { + override readonly status: undefined = undefined; + + constructor({ message }: { message?: string } = {}) { + super(undefined, undefined, message || 'Request was aborted.', undefined); + } +} + export class APIConnectionError extends APIError { override readonly status: undefined = undefined; diff --git a/src/index.ts b/src/index.ts index 87063761e..ebf4461f2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -36,6 +36,14 @@ type Config = { */ httpAgent?: Agent; + /** + * Specify a custom `fetch` function implementation. + * + * If not provided, we use `node-fetch` on Node.js and otherwise expect that `fetch` is + * defined globally. + */ + fetch?: Core.Fetch | undefined; + /** * The maximum number of times that the client will retry a request in case of a * temporary failure, like a network error or a 5XX error from the server. @@ -85,6 +93,7 @@ export class OpenAI extends Core.APIClient { timeout: options.timeout ?? 600000, httpAgent: options.httpAgent, maxRetries: options.maxRetries, + fetch: options.fetch, }); this.apiKey = options.apiKey; this._options = options; @@ -120,9 +129,12 @@ export class OpenAI extends Core.APIClient { return { arrayFormat: 'comma' }; } + static OpenAI = this; + static APIError = Errors.APIError; static APIConnectionError = Errors.APIConnectionError; static APIConnectionTimeoutError = Errors.APIConnectionTimeoutError; + static APIUserAbortError = Errors.APIUserAbortError; static NotFoundError = Errors.NotFoundError; static ConflictError = Errors.ConflictError; static RateLimitError = Errors.RateLimitError; @@ -137,6 +149,7 @@ export const { APIError, APIConnectionError, APIConnectionTimeoutError, + APIUserAbortError, NotFoundError, ConflictError, RateLimitError, diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index 7a9dcde2f..2ac83d88d 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -51,7 +51,7 @@ export interface TranscriptionCreateParams { * The format of the transcript output, in one of these options: json, text, srt, * verbose_json, or vtt. */ - response_format?: string; + response_format?: 'json' | 'text' | 'srt' | 'verbose_json' | 'vtt'; /** * The sampling temperature, between 0 and 1. Higher values like 0.8 will make the diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index ffc94228b..dfa5f6bc8 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -41,11 +41,11 @@ export interface ChatCompletion { export namespace ChatCompletion { export interface Choice { - finish_reason?: 'stop' | 'length' | 'function_call'; + finish_reason: 'stop' | 'length' | 'function_call'; - index?: number; + index: number; - message?: Choice.Message; + message: Choice.Message; } export namespace Choice { @@ -112,11 +112,11 @@ export interface ChatCompletionChunk { export namespace ChatCompletionChunk { export interface Choice { - delta?: Choice.Delta; + delta: Choice.Delta; - finish_reason?: 'stop' | 'length' | 'function_call'; + finish_reason: 'stop' | 'length' | 'function_call' | null; - index?: number; + index: number; } export namespace Choice { diff --git a/src/resources/edits.ts b/src/resources/edits.ts index 5e9e44510..815967593 100644 --- a/src/resources/edits.ts +++ b/src/resources/edits.ts @@ -29,25 +29,11 @@ export interface Edit { export namespace Edit { export interface Choice { - finish_reason?: 'stop' | 'length'; + finish_reason: 'stop' | 'length'; - index?: number; + index: number; - logprobs?: Choice.Logprobs | null; - - text?: string; - } - - export namespace Choice { - export interface Logprobs { - text_offset?: Array; - - token_logprobs?: Array; - - tokens?: Array; - - top_logprobs?: Array>; - } + text: string; } export interface Usage { diff --git a/src/streaming.ts b/src/streaming.ts index 38a09a0aa..7137708b6 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -48,10 +48,14 @@ export class Stream implements AsyncIterable, APIResponse { + let done = false; try { for await (const sse of this.iterMessages()) { + if (done) continue; + if (sse.data.startsWith('[DONE]')) { - break; + done = true; + continue; } if (sse.event === null) { @@ -64,13 +68,14 @@ export class Stream implements AsyncIterable, APIResponse(stream: any): AsyncIterableIterator { if (stream[Symbol.asyncIterator]) return stream; const reader = stream.getReader(); return { - next() { - return reader.read(); + async next() { + try { + const result = await reader.read(); + if (result?.done) reader.releaseLock(); // release lock when stream becomes closed + return result; + } catch (e) { + reader.releaseLock(); // release lock when stream becomes errored + throw e; + } }, async return() { - reader.cancel(); + const cancelPromise = reader.cancel(); reader.releaseLock(); + await cancelPromise; return { done: true, value: undefined }; }, [Symbol.asyncIterator]() { diff --git a/src/uploads.ts b/src/uploads.ts index 2b19b31da..89b0226a2 100644 --- a/src/uploads.ts +++ b/src/uploads.ts @@ -88,7 +88,7 @@ export type ToFileInput = Uploadable | Exclude | AsyncIterable /** * Helper for creating a {@link File} to pass to an SDK upload method from a variety of different data formats - * @param bits the raw content of the file. Can be an {@link Uploadable}, {@link BlobPart}, or {@link AsyncIterable} of {@link BlobPart}s + * @param value the raw content of the file. Can be an {@link Uploadable}, {@link BlobPart}, or {@link AsyncIterable} of {@link BlobPart}s * @param {string=} name the name of the file. If omitted, toFile will try to determine a file name from bits if possible * @param {Object=} options additional properties * @param {string=} options.type the MIME type of the content @@ -100,6 +100,9 @@ export async function toFile( name?: string | null | undefined, options: FilePropertyBag | undefined = {}, ): Promise { + // If it's a promise, resolve it. + value = await value; + if (isResponseLike(value)) { const blob = await value.blob(); name ||= new URL(value.url).pathname.split(/[\\/]/).pop() ?? 'unknown_file'; @@ -121,10 +124,7 @@ export async function toFile( return new File(bits, name, options); } -async function getBytes(value: ToFileInput | PromiseLike): Promise> { - // resolve input promise or promiselike object - value = await value; - +async function getBytes(value: ToFileInput): Promise> { let parts: Array = []; if ( typeof value === 'string' || diff --git a/src/version.ts b/src/version.ts index f1398ce3c..f47c946e0 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.0.0-beta.4'; +export const VERSION = '4.0.0-beta.5'; diff --git a/tests/api-resources/audio/transcriptions.test.ts b/tests/api-resources/audio/transcriptions.test.ts index ec12a956f..49069d9c6 100644 --- a/tests/api-resources/audio/transcriptions.test.ts +++ b/tests/api-resources/audio/transcriptions.test.ts @@ -20,7 +20,7 @@ describe('resource transcriptions', () => { model: 'whisper-1', language: 'string', prompt: 'string', - response_format: 'string', + response_format: 'json', temperature: 0, }); }); diff --git a/tests/index.test.ts b/tests/index.test.ts index 30b0f80b3..36b4064ab 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -1,7 +1,9 @@ // File generated from our OpenAPI spec by Stainless. -import { Headers } from 'openai/core'; import OpenAI from 'openai'; +import { APIUserAbortError } from 'openai'; +import { Headers } from 'openai/core'; +import { Response, fetch as defaultFetch } from 'openai/_shims/fetch'; describe('instantiate client', () => { const env = process.env; @@ -77,6 +79,49 @@ describe('instantiate client', () => { }); }); + test('custom fetch', async () => { + const client = new OpenAI({ + baseURL: 'http://localhost:5000/', + apiKey: 'my api key', + fetch: (url) => { + return Promise.resolve( + new Response(JSON.stringify({ url, custom: true }), { + headers: { 'Content-Type': 'application/json' }, + }), + ); + }, + }); + + const response = await client.get('/foo'); + expect(response).toEqual({ url: 'http://localhost:5000/foo', custom: true }); + }); + + test('custom signal', async () => { + const client = new OpenAI({ + baseURL: 'http://127.0.0.1:4010/', + apiKey: 'my api key', + fetch: (...args) => { + return new Promise((resolve, reject) => + setTimeout( + () => + defaultFetch(...args) + .then(resolve) + .catch(reject), + 300, + ), + ); + }, + }); + + const controller = new AbortController(); + setTimeout(() => controller.abort(), 200); + + const spy = jest.spyOn(client, 'request'); + + await expect(client.get('/foo', { signal: controller.signal })).rejects.toThrowError(APIUserAbortError); + expect(spy).toHaveBeenCalledTimes(1); + }); + describe('baseUrl', () => { test('trailing slash', () => { const client = new OpenAI({ baseURL: 'http://localhost:5000/custom/path/', apiKey: 'my api key' }); @@ -127,3 +172,19 @@ describe('instantiate client', () => { }).toThrow(); }); }); + +describe('request building', () => { + const client = new OpenAI({ apiKey: 'my api key' }); + + describe('Content-Length', () => { + test('handles multi-byte characters', () => { + const { req } = client.buildRequest({ path: '/foo', method: 'post', body: { value: '—' } }); + expect((req.headers as Record)['Content-Length']).toEqual('20'); + }); + + test('handles standard characters', () => { + const { req } = client.buildRequest({ path: '/foo', method: 'post', body: { value: 'hello' } }); + expect((req.headers as Record)['Content-Length']).toEqual('22'); + }); + }); +}); From 96e5b7fef104933e94ebf4ccdf15756bdd73f30a Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Thu, 20 Jul 2023 15:19:39 -0700 Subject: [PATCH 021/725] v4.0.0-beta.6 --- ecosystem-tests/cli.ts | 4 + .../ts-browser-webpack/package.json | 11 +- .../ts-browser-webpack/public/index.html | 2 +- .../ts-browser-webpack/src/index.ts | 185 ++++++++++++++---- .../ts-browser-webpack/src/test.ts | 40 ++++ .../ts-browser-webpack/webpack.config.js | 4 +- package.json | 12 +- src/_shims/fetch.js | 2 +- src/core.ts | 40 ++-- src/index.ts | 17 +- src/version.ts | 2 +- tests/stringifyQuery.test.ts | 26 +++ yarn.lock | 48 ----- 13 files changed, 268 insertions(+), 125 deletions(-) create mode 100644 ecosystem-tests/ts-browser-webpack/src/test.ts create mode 100644 tests/stringifyQuery.test.ts diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index 3b4e64ab7..bf4ba9347 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -13,6 +13,10 @@ const projects = { await run('npm', ['run', 'tsc']); await run('npm', ['run', 'build']); + + if (state.live) { + await run('npm', ['run', 'test:ci']); + } }, 'vercel-edge': async () => { await installPackage(); diff --git a/ecosystem-tests/ts-browser-webpack/package.json b/ecosystem-tests/ts-browser-webpack/package.json index 3af4bfa17..59dfc3c15 100644 --- a/ecosystem-tests/ts-browser-webpack/package.json +++ b/ecosystem-tests/ts-browser-webpack/package.json @@ -5,17 +5,22 @@ "description": "ts-browser-webpack", "scripts": { "tsc": "tsc", - "test": "echo \"Error: no test specified\" && exit 1", - "serve": "webpack-cli serve --mode development", - "build": "webpack" + "serve": "webpack-cli serve", + "build": "webpack", + "test": "ts-node src/test.ts", + "test:ci": "WAIT_ON_INTERVAL=10000 start-server-and-test serve http://localhost:8080 test" }, "devDependencies": { "babel-core": "^6.26.3", "babel-loader": "^9.1.2", "babel-preset-es2015": "^6.24.1", + "fastest-levenshtein": "^1.0.16", "force": "^0.0.3", "html-webpack-plugin": "^5.5.3", + "puppeteer": "^20.8.3", + "start-server-and-test": "^2.0.0", "ts-loader": "^9.4.3", + "ts-node": "^10.9.1", "typescript": "^5.0.4", "webpack": "^5.87.0", "webpack-cli": "^5.0.2", diff --git a/ecosystem-tests/ts-browser-webpack/public/index.html b/ecosystem-tests/ts-browser-webpack/public/index.html index 761df0fc6..a2a781234 100644 --- a/ecosystem-tests/ts-browser-webpack/public/index.html +++ b/ecosystem-tests/ts-browser-webpack/public/index.html @@ -5,6 +5,6 @@ Package in the Browser - +
Running tests...
diff --git a/ecosystem-tests/ts-browser-webpack/src/index.ts b/ecosystem-tests/ts-browser-webpack/src/index.ts index 9979abf7c..2c30e2f48 100644 --- a/ecosystem-tests/ts-browser-webpack/src/index.ts +++ b/ecosystem-tests/ts-browser-webpack/src/index.ts @@ -1,49 +1,164 @@ -import OpenAI from 'openai'; -import { TranscriptionCreateParams } from 'openai/resources/audio'; +import OpenAI, { toFile } from 'openai'; +import { distance } from 'fastest-levenshtein'; -// smoke test that importing and constructing the client works -const openai = new OpenAI({ apiKey: '' }); -console.log(openai); +type TestCase = { + path: string[]; + run: () => any; + timeout?: number; +}; + +const tests: TestCase[] = []; + +type TestResult = { path: string[]; passed: boolean; error?: string }; + +async function runTests() { + const results: TestResult[] = []; + function displayResults() { + let pre = document.getElementById('results'); + if (!pre) { + pre = document.createElement('pre'); + pre.id = 'results'; + document.body.appendChild(pre); + } + pre.innerText = JSON.stringify(results, null, 2); + } + for (const { path, run, timeout } of tests) { + console.log('running', ...path); + try { + await Promise.race([ + run(), + new Promise((_, reject) => + setTimeout(() => reject(new Error(`Test timed out after ${timeout} ms`)), timeout), + ), + ]); + console.log('passed ', ...path); + results.push({ path, passed: true }); + } catch (error) { + console.log('error ', ...path); + console.error(error); + results.push({ path, passed: false, error: error instanceof Error ? error.stack : String(error) }); + } + displayResults(); + } + const runningEl = document.getElementById('running'); + if (runningEl) runningEl.remove(); +} + +const testPath: string[] = []; + +function describe(description: string, handler: () => void) { + testPath.push(description); + try { + handler(); + } finally { + testPath.pop(); + } +} + +function it(description: string, run: () => any, timeout = 15000) { + tests.push({ path: [...testPath, description], run, timeout }); +} + +function expect(received: any) { + return { + toEqual(expected: any): void { + if (!Object.is(received, expected)) { + throw new Error( + [`Received: ${JSON.stringify(received)}`, `Expected: ${JSON.stringify(expected)}`].join('\n'), + ); + } + }, + toBeSimilarTo(comparedTo: string, expectedDistance: number) { + const actualDistance = distance(received, comparedTo); + if (actualDistance < expectedDistance) return; -// smoke test that making an API request works, even if it errors -openai.completions - .create({ - prompt: 'Say this is a test', - model: 'text-davinci-003', - }) - .catch((err) => console.error(err)); + throw new Error( + [ + `Received: ${JSON.stringify(received)}`, + `Expected: ${JSON.stringify(comparedTo)}`, + `Expected distance: ${expectedDistance}`, + `Received distance: ${actualDistance}`, + ].join('\n'), + ); + }, + }; +} + +const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; +const filename = 'sample-1.mp3'; + +const correctAnswer = + 'It was anxious to find him no one that expectation of a man who were giving his father enjoyment. But he was avoided in sight in the minister to which indeed,'; +const model = 'whisper-1'; + +const params = new URLSearchParams(location.search); + +const client = new OpenAI({ apiKey: params.get('apiKey') ?? undefined }); async function typeTests() { // @ts-expect-error this should error if the `Uploadable` type was resolved correctly - await openai.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); + await client.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); // @ts-expect-error this should error if the `Uploadable` type was resolved correctly - await openai.audio.transcriptions.create({ file: null, model: 'whisper-1' }); + await client.audio.transcriptions.create({ file: null, model: 'whisper-1' }); // @ts-expect-error this should error if the `Uploadable` type was resolved correctly - await openai.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); + await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); +} + +if (typeof File !== 'undefined') { + it('handles builtinFile', async function () { + const file = await fetch(url) + .then((x) => x.arrayBuffer()) + .then((x) => new File([x], filename)); - const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; - const model = 'whisper-1'; + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toBeSimilarTo(correctAnswer, 12); + }); +} +it('handles Response', async function () { const file = await fetch(url); - const params: TranscriptionCreateParams = { file, model }; - await openai.audio.transcriptions.create(params); -} + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toBeSimilarTo(correctAnswer, 12); +}); -// -------- -class Greeter { - greeting: string; - constructor(message: string) { - this.greeting = message; - } - greet(): string { - return `Hello, ${this.greeting}`; - } -} +const fineTune = `{"prompt": "", "completion": ""}`; -const greeter = new Greeter('world'); +describe('toFile', () => { + if (typeof Blob !== 'undefined') { + it('handles builtin Blob', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new Blob([new TextEncoder().encode(fineTune)]), + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + } + it('handles Uint8Array', async function () { + const result = await client.files.create({ + file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles ArrayBuffer', async function () { + const result = await client.files.create({ + file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles DataView', async function () { + const result = await client.files.create({ + file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); +}); -const button = document.getElementById('myButton')!; -button.onclick = () => { - alert(greeter.greet()); -}; +runTests(); diff --git a/ecosystem-tests/ts-browser-webpack/src/test.ts b/ecosystem-tests/ts-browser-webpack/src/test.ts new file mode 100644 index 000000000..bb1fade7f --- /dev/null +++ b/ecosystem-tests/ts-browser-webpack/src/test.ts @@ -0,0 +1,40 @@ +import puppeteer from 'puppeteer' + +(async () => { + const browser = await puppeteer.launch(); + try { + const page = await browser.newPage(); + + const apiKey = process.env.OPENAI_API_KEY + + if (!apiKey) throw new Error('missing process.env.OPENAI_API_KEY') + + // Navigate the page to a URL + await page.goto(`http://localhost:8080/index.html?apiKey=${apiKey}`); + + await page.waitForSelector('#running', { timeout: 15000 }) + + let start = Date.now() + while (await page.$('#running') != null && Date.now() - start < 60000) { + await new Promise(r => setTimeout(r, 1000)) + } + + let results + const resultsEl = await page.$('#results') + if (resultsEl) { + const text = await page.evaluate(el => el.textContent, resultsEl) + results = text ? JSON.parse(text) : undefined + } + + if (!Array.isArray(results)) { + throw new Error(`failed to get test results from page`) + } + const failed = results.filter(r => !r.passed) + if (failed.length) { + throw new Error(`${failed.length} of ${results.length} tests failed: ${JSON.stringify(failed, null, 2)}`) + } + console.log(`${results.length} tests passed!`) + } finally { + await browser.close(); + } +})(); diff --git a/ecosystem-tests/ts-browser-webpack/webpack.config.js b/ecosystem-tests/ts-browser-webpack/webpack.config.js index 50448f041..4dec6efb4 100644 --- a/ecosystem-tests/ts-browser-webpack/webpack.config.js +++ b/ecosystem-tests/ts-browser-webpack/webpack.config.js @@ -8,6 +8,8 @@ const buildPath = path.resolve(__dirname, 'dist'); module.exports = { entry: path.join(srcPath, 'index.ts'), + mode: 'development', + output: { path: buildPath, filename: 'bundle.js', @@ -32,7 +34,7 @@ module.exports = { extensions: ['*', '.js', '.ts'], }, - devtool: 'inline-source-map', + devtool: 'eval', plugins: [ new HtmlWebpackPlugin({ diff --git a/package.json b/package.json index 1a97821c7..612666b94 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.0.0-beta.5", + "version": "4.0.0-beta.6", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", @@ -48,17 +48,17 @@ "types": "./dist/index.d.mts", "default": "./dist/index.mjs" }, - "./*": { + "./*.mjs": { "types": "./dist/*.d.ts", - "require": "./dist/*.js", "default": "./dist/*.mjs" }, "./*.js": { "types": "./dist/*.d.ts", "default": "./dist/*.js" }, - "./*.mjs": { + "./*": { "types": "./dist/*.d.ts", + "require": "./dist/*.js", "default": "./dist/*.mjs" } }, @@ -74,14 +74,12 @@ "dependencies": { "@types/node": "^18.11.18", "@types/node-fetch": "^2.6.4", - "@types/qs": "^6.9.7", "abort-controller": "^3.0.0", "agentkeepalive": "^4.2.1", "digest-fetch": "^1.3.0", "form-data-encoder": "1.7.2", "formdata-node": "^4.3.2", - "node-fetch": "^2.6.7", - "qs": "^6.10.3" + "node-fetch": "^2.6.7" }, "devDependencies": { "@types/jest": "^29.4.0", diff --git a/src/_shims/fetch.js b/src/_shims/fetch.js index 286373630..3c3821fdd 100644 --- a/src/_shims/fetch.js +++ b/src/_shims/fetch.js @@ -10,4 +10,4 @@ exports.Request = Request; exports.Response = Response; exports.Headers = Headers; -exports.isPolyfilled = true; +exports.isPolyfilled = false; diff --git a/src/core.ts b/src/core.ts index 552c51456..60e94c143 100644 --- a/src/core.ts +++ b/src/core.ts @@ -1,4 +1,3 @@ -import * as qs from 'qs'; import { VERSION } from './version'; import { Stream } from './streaming'; import { APIError, APIConnectionError, APIConnectionTimeoutError, APIUserAbortError } from './error'; @@ -82,18 +81,6 @@ export abstract class APIClient { */ protected validateHeaders(headers: Headers, customHeaders: Headers) {} - /** - * Override this to add your own qs.stringify options, for example: - * - * { - * ...super.qsOptions(), - * strictNullHandling: true, - * } - */ - protected qsOptions(): qs.IStringifyOptions | undefined { - return {}; - } - protected defaultIdempotencyKey(): string { return `stainless-node-retry-${uuid4()}`; } @@ -128,9 +115,11 @@ export abstract class APIClient { return Buffer.byteLength(body, 'utf8').toString(); } - const encoder = new TextEncoder(); - const encoded = encoder.encode(body); - return encoded.length.toString(); + if (typeof TextEncoder !== 'undefined') { + const encoder = new TextEncoder(); + const encoded = encoder.encode(body); + return encoded.length.toString(); + } } return null; @@ -302,12 +291,29 @@ export abstract class APIClient { } if (query) { - url.search = qs.stringify(query, this.qsOptions()); + url.search = this.stringifyQuery(query); } return url.toString(); } + protected stringifyQuery(query: Record): string { + return Object.entries(query) + .filter(([_, value]) => typeof value !== 'undefined') + .map(([key, value]) => { + if (typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean') { + return `${encodeURIComponent(key)}=${encodeURIComponent(value)}`; + } + if (value === null) { + return `${encodeURIComponent(key)}=`; + } + throw new Error( + `Cannot stringify type ${typeof value}; Expected string, number, boolean, or null. If you need to pass nested query parameters, you can manually encode them, e.g. { query: { 'foo[key1]': value1, 'foo[key2]': value2 } }, and please open a GitHub issue requesting better support for your use case.`, + ); + }) + .join('&'); + } + async fetchWithTimeout( url: RequestInfo, init: RequestInit | undefined, diff --git a/src/index.ts b/src/index.ts index ebf4461f2..a0b7c457b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,5 @@ // File generated from our OpenAPI spec by Stainless. -import * as qs from 'qs'; import * as Core from './core'; import * as Pagination from './pagination'; import * as API from './resources/index'; @@ -8,7 +7,7 @@ import * as Errors from './error'; import type { Agent } from 'openai/_shims/agent'; import * as Uploads from './uploads'; -type Config = { +export interface ClientOptions { /** * Defaults to process.env["OPENAI_API_KEY"]. */ @@ -67,19 +66,19 @@ type Config = { * param to `undefined` in request options. */ defaultQuery?: Core.DefaultQuery; -}; +} /** Instantiate the API Client. */ export class OpenAI extends Core.APIClient { apiKey: string; - private _options: Config; + private _options: ClientOptions; - constructor(config?: Config) { - const options: Config = { + constructor(opts?: ClientOptions) { + const options: ClientOptions = { apiKey: typeof process === 'undefined' ? '' : process.env['OPENAI_API_KEY'] || '', baseURL: 'https://api.openai.com/v1', - ...config, + ...opts, }; if (!options.apiKey && options.apiKey !== null) { @@ -125,10 +124,6 @@ export class OpenAI extends Core.APIClient { return { Authorization: `Bearer ${this.apiKey}` }; } - protected override qsOptions(): qs.IStringifyOptions { - return { arrayFormat: 'comma' }; - } - static OpenAI = this; static APIError = Errors.APIError; diff --git a/src/version.ts b/src/version.ts index f47c946e0..f1f77bd74 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.0.0-beta.5'; +export const VERSION = '4.0.0-beta.6'; diff --git a/tests/stringifyQuery.test.ts b/tests/stringifyQuery.test.ts new file mode 100644 index 000000000..6db84d3fe --- /dev/null +++ b/tests/stringifyQuery.test.ts @@ -0,0 +1,26 @@ +import { APIClient } from 'openai/core'; + +const { stringifyQuery } = APIClient.prototype as any; + +describe('APIClient.stringifyQuery', () => { + for (const [input, expected] of [ + [{ a: '1', b: 2, c: true }, 'a=1&b=2&c=true'], + [{ a: null, b: false, c: undefined }, 'a=&b=false'], + [{ 'a/b': 1.28341 }, `${encodeURIComponent('a/b')}=1.28341`], + [ + { 'a/b': 'c/d', 'e=f': 'g&h' }, + `${encodeURIComponent('a/b')}=${encodeURIComponent('c/d')}&${encodeURIComponent( + 'e=f', + )}=${encodeURIComponent('g&h')}`, + ], + ]) { + it(`${JSON.stringify(input)} -> ${expected}`, () => { + expect(stringifyQuery(input)).toEqual(expected); + }); + } + for (const value of [[], {}, new Date()]) { + it(`${JSON.stringify(value)} -> `, () => { + expect(() => stringifyQuery({ value })).toThrow(`Cannot stringify type ${typeof value}`); + }); + } +}); diff --git a/yarn.lock b/yarn.lock index e24f3516a..7f41aca75 100644 --- a/yarn.lock +++ b/yarn.lock @@ -845,11 +845,6 @@ resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.6.0.tgz#efcbd41937f9ae7434c714ab698604822d890759" integrity sha512-G/AdOadiZhnJp0jXCaBQU449W2h716OW/EoXeYkCytxKL06X1WCXB4DZpp8TpZ8eyIJVS1cw4lrlkkSYU21cDw== -"@types/qs@^6.9.7": - version "6.9.7" - resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" - integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== - "@types/stack-utils@^2.0.0": version "2.0.1" resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" @@ -1260,14 +1255,6 @@ buffer-from@^1.0.0: resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== -call-bind@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" - integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== - dependencies: - function-bind "^1.1.1" - get-intrinsic "^1.0.2" - callsites@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" @@ -2027,15 +2014,6 @@ get-caller-file@^2.0.5: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.0.2: - version "1.1.1" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" - integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== - dependencies: - function-bind "^1.1.1" - has "^1.0.3" - has-symbols "^1.0.1" - get-package-type@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" @@ -2126,11 +2104,6 @@ has-flag@^4.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== -has-symbols@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== - has@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" @@ -3053,11 +3026,6 @@ npm-run-path@^4.0.1: dependencies: path-key "^3.0.0" -object-inspect@^1.9.0: - version "1.12.0" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.0.tgz#6e2c120e868fd1fd18cb4f18c31741d0d6e776f0" - integrity sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g== - once@^1.3.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" @@ -3397,13 +3365,6 @@ pure-rand@^6.0.0: resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.0.2.tgz#a9c2ddcae9b68d736a8163036f088a2781c8b306" integrity sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ== -qs@^6.10.3: - version "6.10.3" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.3.tgz#d6cde1b2ffca87b5aa57889816c5f81535e22e8e" - integrity sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ== - dependencies: - side-channel "^1.0.4" - queue-lit@^1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/queue-lit/-/queue-lit-1.5.0.tgz#8197fdafda1edd615c8a0fc14c48353626e5160a" @@ -3597,15 +3558,6 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -side-channel@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" - integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== - dependencies: - call-bind "^1.0.0" - get-intrinsic "^1.0.2" - object-inspect "^1.9.0" - sigmund@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" From 347a22753273fccc90a93dc44b992a32f876cbad Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Sat, 29 Jul 2023 13:45:52 -0700 Subject: [PATCH 022/725] v4.0.0-beta.7 --- README.md | 2 +- api.md | 1 + ecosystem-tests/cli.ts | 119 +++++++++++--- .../cloudflare-worker/src/worker.ts | 96 ++++++----- .../cloudflare-worker/tests/test.js | 10 +- ecosystem-tests/deno/main_test.ts | 2 +- .../node-ts-cjs-dom/jest.config.cjs | 2 +- ecosystem-tests/node-ts-cjs/jest.config.cjs | 2 +- .../node-ts-esm-dom/jest.config.cjs | 2 +- ecosystem-tests/node-ts-esm/jest.config.cjs | 2 +- .../ts-browser-webpack/src/index.ts | 2 +- .../ts-browser-webpack/src/test.ts | 69 ++++++-- package.json | 2 +- src/core.ts | 38 +++++ src/error.ts | 13 +- src/index.ts | 31 ++-- src/resources/chat/chat.ts | 1 + src/resources/chat/completions.ts | 152 ++++++------------ src/resources/chat/index.ts | 8 +- src/version.ts | 2 +- 20 files changed, 353 insertions(+), 203 deletions(-) diff --git a/README.md b/README.md index 21442fd66..2d6676fd7 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ import OpenAI from 'openai'; const openai = new OpenAI(); async function main() { - const completion = await openai.chat.completions.create({ + const stream = await openai.chat.completions.create({ model: 'gpt-4', messages: [{ role: 'user', content: 'Say this is a test' }], stream: true, diff --git a/api.md b/api.md index b19532071..17ce8f880 100644 --- a/api.md +++ b/api.md @@ -17,6 +17,7 @@ Types: - ChatCompletion - ChatCompletionChunk +- CreateChatCompletionRequestMessage Methods: diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index bf4ba9347..fa8c6ef4f 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -125,6 +125,16 @@ function parseArgs() { default: false, description: 'Push projects to live servers', }, + jobs: { + type: 'number', + default: 1, + description: 'number of parallel jobs to run', + }, + parallel: { + type: 'boolean', + default: false, + description: 'run all projects in parallel (jobs = # projects)', + }, }) .help().argv; } @@ -157,26 +167,97 @@ async function main() { const failed: typeof projectNames = []; - for (const project of projectsToRun) { - const fn = projects[project]; - - await withChdir(path.join(rootDir, 'ecosystem-tests', project), async () => { - console.error('\n'); - console.error(banner(project)); - console.error('\n'); - - try { - await fn(); - console.error(`✅ - Successfully ran ${project}`); - } catch (err) { - if (err && (err as any).shortMessage) { - console.error((err as any).shortMessage); - } else { - console.error(err); - } - failed.push(project); + let { jobs } = args; + if (args.parallel) jobs = projectsToRun.length; + if (jobs > 1) { + const queue = [...projectsToRun]; + const runningProjects = new Set(); + + const cursorLeft = '\x1B[G'; + const eraseLine = '\x1B[2K'; + + let progressDisplayed = false; + function clearProgress() { + if (progressDisplayed) { + process.stderr.write(cursorLeft + eraseLine); + progressDisplayed = false; } - }); + } + const spinner = ['|', '/', '-', '\\']; + + function showProgress() { + clearProgress(); + progressDisplayed = true; + const spin = spinner[Math.floor(Date.now() / 500) % spinner.length]; + process.stderr.write( + `${spin} Running ${[...runningProjects].join(', ')}`.substring(0, process.stdout.columns - 3) + '...', + ); + } + + const progressInterval = setInterval(showProgress, process.stdout.isTTY ? 500 : 5000); + showProgress(); + + await Promise.all( + [...Array(jobs).keys()].map(async () => { + while (queue.length) { + const project = queue.shift(); + if (!project) break; + let stdout, stderr; + try { + runningProjects.add(project); + const result = await execa( + 'yarn', + [ + 'tsn', + __filename, + project, + '--skip-pack', + ...(args.live ? ['--live'] : []), + ...(args.verbose ? ['--verbose'] : []), + ...(args.deploy ? ['--deploy'] : []), + ...(args.fromNpm ? ['--from-npm'] : []), + ], + { stdio: 'pipe', encoding: 'utf8', maxBuffer: 100 * 1024 * 1024 }, + ); + ({ stdout, stderr } = result); + } catch (error) { + ({ stdout, stderr } = error as any); + failed.push(project); + } finally { + runningProjects.delete(project); + } + + if (stdout) process.stdout.write(stdout); + if (stderr) process.stderr.write(stderr); + } + }), + ); + + clearInterval(progressInterval); + clearProgress(); + } else { + for (const project of projectsToRun) { + const fn = projects[project]; + + await withChdir(path.join(rootDir, 'ecosystem-tests', project), async () => { + console.error('\n'); + console.error(banner(project)); + console.error('\n'); + + try { + await fn(); + console.error(`✅ - Successfully ran ${project}`); + } catch (err) { + if (err && (err as any).shortMessage) { + console.error('❌', (err as any).shortMessage); + } else { + console.error('❌', err); + } + failed.push(project); + } + console.error('\n'); + }); + } } if (failed.length) { diff --git a/ecosystem-tests/cloudflare-worker/src/worker.ts b/ecosystem-tests/cloudflare-worker/src/worker.ts index 8130af202..9e6b935bd 100644 --- a/ecosystem-tests/cloudflare-worker/src/worker.ts +++ b/ecosystem-tests/cloudflare-worker/src/worker.ts @@ -1,6 +1,4 @@ -import OpenAI from 'openai'; -import { uploadWebApiTestCases } from './uploadWebApiTestCases.js'; -import { distance } from 'fastest-levenshtein' +import { distance } from 'fastest-levenshtein'; /** * Welcome to Cloudflare Workers! This is your first worker. @@ -35,54 +33,68 @@ type Test = { description: string; handler: () => Promise }; export default { async fetch(request: Request, env: Env, ctx: ExecutionContext): Promise { - const client = new OpenAI({ apiKey: env.OPENAI_API_KEY }); + try { + console.error('importing openai'); + const { default: OpenAI } = await import('openai'); + console.error('importing test cases'); + const { uploadWebApiTestCases } = await import('./uploadWebApiTestCases.js'); + console.error('creating client'); + const client = new OpenAI({ apiKey: env.OPENAI_API_KEY }); + console.error('created client'); - const tests: Test[] = []; - function it(description: string, handler: () => Promise) { - tests.push({ description, handler }); - } - function expectEqual(a: any, b: any) { - if (!Object.is(a, b)) { - throw new Error(`expected values to be equal: ${JSON.stringify({ a, b })}`); + const tests: Test[] = []; + function it(description: string, handler: () => Promise) { + tests.push({ description, handler }); } - } - function expectSimilar(received: string, expected: string, maxDistance: number) { - const receivedDistance = distance(received, expected); - if (receivedDistance < maxDistance) { - return; + function expectEqual(a: any, b: any) { + if (!Object.is(a, b)) { + throw new Error(`expected values to be equal: ${JSON.stringify({ a, b })}`); + } } + function expectSimilar(received: string, expected: string, maxDistance: number) { + const receivedDistance = distance(received, expected); + if (receivedDistance < maxDistance) { + return; + } - const message = [ - `Received: ${JSON.stringify(received)}`, - `Expected: ${JSON.stringify(expected)}`, - `Max distance: ${maxDistance}`, - `Received distance: ${receivedDistance}`, - ].join('\n'); + const message = [ + `Received: ${JSON.stringify(received)}`, + `Expected: ${JSON.stringify(expected)}`, + `Max distance: ${maxDistance}`, + `Received distance: ${receivedDistance}`, + ].join('\n'); - throw new Error(message); - } + throw new Error(message); + } - uploadWebApiTestCases({ - client: client as any, - it, - expectEqual, - expectSimilar, - }); + uploadWebApiTestCases({ + client: client as any, + it, + expectEqual, + expectSimilar, + }); - let allPassed = true; - const results = []; + let allPassed = true; + const results = []; - for (const { description, handler } of tests) { - let result; - try { - result = await handler(); - } catch (error) { - allPassed = false; - result = error instanceof Error ? error.stack : String(error); + for (const { description, handler } of tests) { + console.error('running', description); + let result; + try { + result = await handler(); + console.error('passed ', description); + } catch (error) { + console.error('failed ', description, error); + allPassed = false; + result = error instanceof Error ? error.stack : String(error); + } + results.push(`${description}\n\n${String(result)}`); } - results.push(`${description}\n\n${String(result)}`); - } - return new Response(allPassed ? 'Passed!' : results.join('\n\n')); + return new Response(allPassed ? 'Passed!' : results.join('\n\n')); + } catch (error) { + console.error(error instanceof Error ? error.stack : String(error)); + return new Response(error instanceof Error ? error.stack : String(error), { status: 500 }); + } }, }; diff --git a/ecosystem-tests/cloudflare-worker/tests/test.js b/ecosystem-tests/cloudflare-worker/tests/test.js index cf7432fcb..0fc5044a6 100644 --- a/ecosystem-tests/cloudflare-worker/tests/test.js +++ b/ecosystem-tests/cloudflare-worker/tests/test.js @@ -1,5 +1,9 @@ import fetch from 'node-fetch'; -it('works', async () => { - expect(await (await fetch('http://github.com/service/http://localhost:8787/')).text()).toEqual('Passed!'); -}, 30000); +it( + 'works', + async () => { + expect(await (await fetch('http://github.com/service/http://localhost:8787/')).text()).toEqual('Passed!'); + }, + 3 * 60000 +); diff --git a/ecosystem-tests/deno/main_test.ts b/ecosystem-tests/deno/main_test.ts index 0c80d8df0..07ae77505 100644 --- a/ecosystem-tests/deno/main_test.ts +++ b/ecosystem-tests/deno/main_test.ts @@ -1,6 +1,6 @@ import { assertEquals, AssertionError } from 'https://deno.land/std@0.192.0/testing/asserts.ts'; import OpenAI, { toFile } from 'npm:openai@3.3.0'; -import { distance } from 'https://deno.land/x/fastest_levenshtein/mod.ts' +import { distance } from 'https://deno.land/x/fastest_levenshtein/mod.ts'; const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; const filename = 'sample-1.mp3'; diff --git a/ecosystem-tests/node-ts-cjs-dom/jest.config.cjs b/ecosystem-tests/node-ts-cjs-dom/jest.config.cjs index 656d1f04f..b08ea4311 100644 --- a/ecosystem-tests/node-ts-cjs-dom/jest.config.cjs +++ b/ecosystem-tests/node-ts-cjs-dom/jest.config.cjs @@ -5,5 +5,5 @@ module.exports = { testMatch: ['/tests/*.ts'], watchPathIgnorePatterns: ['/node_modules/'], verbose: false, - testTimeout: 15000, + testTimeout: 60000, }; diff --git a/ecosystem-tests/node-ts-cjs/jest.config.cjs b/ecosystem-tests/node-ts-cjs/jest.config.cjs index 656d1f04f..b08ea4311 100644 --- a/ecosystem-tests/node-ts-cjs/jest.config.cjs +++ b/ecosystem-tests/node-ts-cjs/jest.config.cjs @@ -5,5 +5,5 @@ module.exports = { testMatch: ['/tests/*.ts'], watchPathIgnorePatterns: ['/node_modules/'], verbose: false, - testTimeout: 15000, + testTimeout: 60000, }; diff --git a/ecosystem-tests/node-ts-esm-dom/jest.config.cjs b/ecosystem-tests/node-ts-esm-dom/jest.config.cjs index 201445e1c..31e0a832f 100644 --- a/ecosystem-tests/node-ts-esm-dom/jest.config.cjs +++ b/ecosystem-tests/node-ts-esm-dom/jest.config.cjs @@ -19,5 +19,5 @@ module.exports = { testMatch: ['/tests/*.ts'], watchPathIgnorePatterns: ['/node_modules/'], verbose: false, - testTimeout: 15000, + testTimeout: 60000, }; diff --git a/ecosystem-tests/node-ts-esm/jest.config.cjs b/ecosystem-tests/node-ts-esm/jest.config.cjs index 201445e1c..31e0a832f 100644 --- a/ecosystem-tests/node-ts-esm/jest.config.cjs +++ b/ecosystem-tests/node-ts-esm/jest.config.cjs @@ -19,5 +19,5 @@ module.exports = { testMatch: ['/tests/*.ts'], watchPathIgnorePatterns: ['/node_modules/'], verbose: false, - testTimeout: 15000, + testTimeout: 60000, }; diff --git a/ecosystem-tests/ts-browser-webpack/src/index.ts b/ecosystem-tests/ts-browser-webpack/src/index.ts index 2c30e2f48..9f6b1a676 100644 --- a/ecosystem-tests/ts-browser-webpack/src/index.ts +++ b/ecosystem-tests/ts-browser-webpack/src/index.ts @@ -55,7 +55,7 @@ function describe(description: string, handler: () => void) { } } -function it(description: string, run: () => any, timeout = 15000) { +function it(description: string, run: () => any, timeout = 60000) { tests.push({ path: [...testPath, description], run, timeout }); } diff --git a/ecosystem-tests/ts-browser-webpack/src/test.ts b/ecosystem-tests/ts-browser-webpack/src/test.ts index bb1fade7f..af60f2cc8 100644 --- a/ecosystem-tests/ts-browser-webpack/src/test.ts +++ b/ecosystem-tests/ts-browser-webpack/src/test.ts @@ -1,39 +1,74 @@ -import puppeteer from 'puppeteer' +import puppeteer from 'puppeteer'; (async () => { - const browser = await puppeteer.launch(); + const browser = await puppeteer.launch({ + args: ['--no-sandbox'], + }); + let page; try { - const page = await browser.newPage(); + page = await browser.newPage(); + function debugEvent(subj: string) { + return subj.padEnd('requestfailed'.length); + } + page + .on('console', (message) => + console.error( + `${debugEvent('console')} ${message + .type() + .substr(0, 'warning'.length) + .toUpperCase() + .padEnd('warning'.length)} ${message.text()}`, + ), + ) + .on('pageerror', ({ message }) => console.error(`${debugEvent('pageerror')} ${message}`)) + .on('response', (response) => + console.error(`${debugEvent('response')} ${response.status()} ${response.url()}`), + ) + .on('requestfailed', (request) => + console.error(`${debugEvent('requestfailed')} ${request.failure()?.errorText} ${request.url()}`), + ); - const apiKey = process.env.OPENAI_API_KEY + const apiKey = process.env.OPENAI_API_KEY; - if (!apiKey) throw new Error('missing process.env.OPENAI_API_KEY') + if (!apiKey) throw new Error('missing process.env.OPENAI_API_KEY'); // Navigate the page to a URL await page.goto(`http://localhost:8080/index.html?apiKey=${apiKey}`); - await page.waitForSelector('#running', { timeout: 15000 }) + await page.waitForSelector('#running', { timeout: 15000 }); - let start = Date.now() - while (await page.$('#running') != null && Date.now() - start < 60000) { - await new Promise(r => setTimeout(r, 1000)) + let start = Date.now(); + while ((await page.$('#running')) != null && Date.now() - start < 3 * 60000) { + await new Promise((r) => setTimeout(r, 1000)); } - let results - const resultsEl = await page.$('#results') + let results; + const resultsEl = await page.$('#results'); if (resultsEl) { - const text = await page.evaluate(el => el.textContent, resultsEl) - results = text ? JSON.parse(text) : undefined + const text = await page.evaluate((el) => el.textContent, resultsEl); + results = text ? JSON.parse(text) : undefined; } if (!Array.isArray(results)) { - throw new Error(`failed to get test results from page`) + throw new Error(`failed to get test results from page`); } - const failed = results.filter(r => !r.passed) + const failed = results.filter((r) => !r.passed); if (failed.length) { - throw new Error(`${failed.length} of ${results.length} tests failed: ${JSON.stringify(failed, null, 2)}`) + throw new Error( + `${failed.length} of ${results.length} tests failed: ${JSON.stringify(failed, null, 2)}`, + ); + } + console.log(`${results.length} tests passed!`); + } catch (error) { + if (page) { + try { + const html = await page.evaluate(() => document.body.innerHTML); + console.error(`\n====================\nBODY HTML\n====================\n\n${html}\n\n`); + } catch (error) { + console.error(`failed to get body HTML for debugging`, error); + } } - console.log(`${results.length} tests passed!`) + throw error; } finally { await browser.close(); } diff --git a/package.json b/package.json index 612666b94..9a4384579 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.0.0-beta.6", + "version": "4.0.0-beta.7", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/core.ts b/src/core.ts index 60e94c143..cf16c7e61 100644 --- a/src/core.ts +++ b/src/core.ts @@ -208,6 +208,10 @@ export abstract class APIClient { this.debug('request', url, options, req.headers); + if (options.signal?.aborted) { + throw new APIUserAbortError(); + } + const controller = new AbortController(); const response = await this.fetchWithTimeout(url, req, timeout, controller).catch(castToError); @@ -760,6 +764,19 @@ export const ensurePresent = (value: T | null | undefined): T => { return value; }; +/** + * Read an environment variable. + * + * Will return an empty string if the environment variable doesn't exist or cannot be accessed. + */ +export const readEnv = (env: string): string | undefined => { + if (typeof process === 'undefined') { + return undefined; + } + + return process.env[env] ?? undefined; +}; + export const coerceInteger = (value: unknown): number => { if (typeof value === 'number') return Math.round(value); if (typeof value === 'string') return parseInt(value, 10); @@ -780,6 +797,27 @@ export const coerceBoolean = (value: unknown): boolean => { return Boolean(value); }; +export const maybeCoerceInteger = (value: unknown): number | undefined => { + if (value === undefined) { + return undefined; + } + return coerceInteger(value); +}; + +export const maybeCoerceFloat = (value: unknown): number | undefined => { + if (value === undefined) { + return undefined; + } + return coerceFloat(value); +}; + +export const maybeCoerceBoolean = (value: unknown): boolean | undefined => { + if (value === undefined) { + return undefined; + } + return coerceBoolean(value); +}; + // https://stackoverflow.com/a/34491287 export function isEmptyObj(obj: Object | null | undefined): boolean { if (!obj) return true; diff --git a/src/error.ts b/src/error.ts index a0d2499e9..818c6b413 100644 --- a/src/error.ts +++ b/src/error.ts @@ -17,18 +17,27 @@ export class APIError extends Error { message: string | undefined, headers: Headers | undefined, ) { - super(message || (error as any)?.message || 'Unknown error occurred.'); + super(APIError.makeMessage(error, message)); this.status = status; this.headers = headers; const data = error as Record; this.error = data; this.code = data?.['code']; - this.message = data?.['message']; this.param = data?.['param']; this.type = data?.['type']; } + private static makeMessage(error: any, message: string | undefined) { + return ( + error?.message ? + typeof error.message === 'string' ? error.message + : JSON.stringify(error.message) + : error ? JSON.stringify(error) + : message || 'Unknown error occurred' + ); + } + static generate( status: number | undefined, errorResponse: Object | undefined, diff --git a/src/index.ts b/src/index.ts index a0b7c457b..e47227209 100644 --- a/src/index.ts +++ b/src/index.ts @@ -66,27 +66,35 @@ export interface ClientOptions { * param to `undefined` in request options. */ defaultQuery?: Core.DefaultQuery; + + organization?: string | null; } /** Instantiate the API Client. */ export class OpenAI extends Core.APIClient { apiKey: string; + organization?: string | null; private _options: ClientOptions; - constructor(opts?: ClientOptions) { - const options: ClientOptions = { - apiKey: typeof process === 'undefined' ? '' : process.env['OPENAI_API_KEY'] || '', - baseURL: 'https://api.openai.com/v1', - ...opts, - }; - - if (!options.apiKey && options.apiKey !== null) { + constructor({ + apiKey = Core.readEnv('OPENAI_API_KEY'), + organization = Core.readEnv('OPENAI_ORG_ID') ?? null, + ...opts + }: ClientOptions = {}) { + if (apiKey === undefined) { throw new Error( - "The OPENAI_API_KEY environment variable is missing or empty; either provide it, or instantiate the OpenAI client with an apiKey option, like new OpenAI({ apiKey: 'my api key' }).", + 'The OPENAI_API_KEY environment variable is missing or empty; either provide it, or instantiate the OpenAI client with an apiKey option, like new OpenAI({ apiKey: undefined }).', ); } + const options: ClientOptions = { + apiKey, + organization, + baseURL: `https://api.openai.com/v1`, + ...opts, + }; + super({ baseURL: options.baseURL!, timeout: options.timeout ?? 600000, @@ -94,8 +102,10 @@ export class OpenAI extends Core.APIClient { maxRetries: options.maxRetries, fetch: options.fetch, }); - this.apiKey = options.apiKey; this._options = options; + + this.apiKey = apiKey; + this.organization = organization; } completions: API.Completions = new API.Completions(this); @@ -116,6 +126,7 @@ export class OpenAI extends Core.APIClient { protected override defaultHeaders(): Core.Headers { return { ...super.defaultHeaders(), + 'OpenAI-Organization': this.organization, ...this._options.defaultHeaders, }; } diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index b821530d0..2811925bd 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -12,5 +12,6 @@ export namespace Chat { export import Completions = API.Completions; export import ChatCompletion = API.ChatCompletion; export import ChatCompletionChunk = API.ChatCompletionChunk; + export import CreateChatCompletionRequestMessage = API.CreateChatCompletionRequestMessage; export import CompletionCreateParams = API.CompletionCreateParams; } diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index dfa5f6bc8..0c1dc93fd 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -161,6 +161,55 @@ export namespace ChatCompletionChunk { } } +export interface CreateChatCompletionRequestMessage { + /** + * The contents of the message. `content` is required for all messages, and may be + * null for assistant messages with function calls. + */ + content: string | null; + + /** + * The role of the messages author. One of `system`, `user`, `assistant`, or + * `function`. + */ + role: 'system' | 'user' | 'assistant' | 'function'; + + /** + * The name and arguments of a function that should be called, as generated by the + * model. + */ + function_call?: CreateChatCompletionRequestMessage.FunctionCall; + + /** + * The name of the author of this message. `name` is required if role is + * `function`, and it should be the name of the function whose response is in the + * `content`. May contain a-z, A-Z, 0-9, and underscores, with a maximum length of + * 64 characters. + */ + name?: string; +} + +export namespace CreateChatCompletionRequestMessage { + /** + * The name and arguments of a function that should be called, as generated by the + * model. + */ + export interface FunctionCall { + /** + * The arguments to call the function with, as generated by the model in JSON + * format. Note that the model does not always generate valid JSON, and may + * hallucinate parameters not defined by your function schema. Validate the + * arguments in your code before calling your function. + */ + arguments: string; + + /** + * The name of the function to call. + */ + name: string; + } +} + export type CompletionCreateParams = | CompletionCreateParams.CreateChatCompletionRequestNonStreaming | CompletionCreateParams.CreateChatCompletionRequestStreaming; @@ -171,7 +220,7 @@ export namespace CompletionCreateParams { * A list of messages comprising the conversation so far. * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_format_inputs_to_ChatGPT_models.ipynb). */ - messages: Array; + messages: Array; /** * ID of the model to use. See the @@ -296,55 +345,6 @@ export namespace CompletionCreateParams { } export namespace CreateChatCompletionRequestNonStreaming { - export interface Message { - /** - * The contents of the message. `content` is required for all messages, and may be - * null for assistant messages with function calls. - */ - content: string | null; - - /** - * The role of the messages author. One of `system`, `user`, `assistant`, or - * `function`. - */ - role: 'system' | 'user' | 'assistant' | 'function'; - - /** - * The name and arguments of a function that should be called, as generated by the - * model. - */ - function_call?: Message.FunctionCall; - - /** - * The name of the author of this message. `name` is required if role is - * `function`, and it should be the name of the function whose response is in the - * `content`. May contain a-z, A-Z, 0-9, and underscores, with a maximum length of - * 64 characters. - */ - name?: string; - } - - export namespace Message { - /** - * The name and arguments of a function that should be called, as generated by the - * model. - */ - export interface FunctionCall { - /** - * The arguments to call the function with, as generated by the model in JSON - * format. Note that the model does not always generate valid JSON, and may - * hallucinate parameters not defined by your function schema. Validate the - * arguments in your code before calling your function. - */ - arguments: string; - - /** - * The name of the function to call. - */ - name: string; - } - } - export interface FunctionCallOption { /** * The name of the function to call. @@ -383,7 +383,7 @@ export namespace CompletionCreateParams { * A list of messages comprising the conversation so far. * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_format_inputs_to_ChatGPT_models.ipynb). */ - messages: Array; + messages: Array; /** * ID of the model to use. See the @@ -508,55 +508,6 @@ export namespace CompletionCreateParams { } export namespace CreateChatCompletionRequestStreaming { - export interface Message { - /** - * The contents of the message. `content` is required for all messages, and may be - * null for assistant messages with function calls. - */ - content: string | null; - - /** - * The role of the messages author. One of `system`, `user`, `assistant`, or - * `function`. - */ - role: 'system' | 'user' | 'assistant' | 'function'; - - /** - * The name and arguments of a function that should be called, as generated by the - * model. - */ - function_call?: Message.FunctionCall; - - /** - * The name of the author of this message. `name` is required if role is - * `function`, and it should be the name of the function whose response is in the - * `content`. May contain a-z, A-Z, 0-9, and underscores, with a maximum length of - * 64 characters. - */ - name?: string; - } - - export namespace Message { - /** - * The name and arguments of a function that should be called, as generated by the - * model. - */ - export interface FunctionCall { - /** - * The arguments to call the function with, as generated by the model in JSON - * format. Note that the model does not always generate valid JSON, and may - * hallucinate parameters not defined by your function schema. Validate the - * arguments in your code before calling your function. - */ - arguments: string; - - /** - * The name of the function to call. - */ - name: string; - } - } - export interface FunctionCallOption { /** * The name of the function to call. @@ -594,5 +545,6 @@ export namespace CompletionCreateParams { export namespace Completions { export import ChatCompletion = API.ChatCompletion; export import ChatCompletionChunk = API.ChatCompletionChunk; + export import CreateChatCompletionRequestMessage = API.CreateChatCompletionRequestMessage; export import CompletionCreateParams = API.CompletionCreateParams; } diff --git a/src/resources/chat/index.ts b/src/resources/chat/index.ts index 84c8559cc..8cb0282da 100644 --- a/src/resources/chat/index.ts +++ b/src/resources/chat/index.ts @@ -1,4 +1,10 @@ // File generated from our OpenAPI spec by Stainless. export { Chat } from './chat'; -export { ChatCompletion, ChatCompletionChunk, CompletionCreateParams, Completions } from './completions'; +export { + ChatCompletion, + ChatCompletionChunk, + CreateChatCompletionRequestMessage, + CompletionCreateParams, + Completions, +} from './completions'; diff --git a/src/version.ts b/src/version.ts index f1f77bd74..107b8d790 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.0.0-beta.6'; +export const VERSION = '4.0.0-beta.7'; From 61cd8e13287bba1496b4c23bf4eb5940a9c0c7f4 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Sat, 5 Aug 2023 08:27:09 -0700 Subject: [PATCH 023/725] v4.0.0-beta.8 --- .gitignore | 1 + .prettierignore | 1 + README.md | 12 +- build | 30 +- .../ts-browser-webpack/src/index.ts | 2 +- examples/azure.ts | 2 +- examples/demo.ts | 2 +- examples/errors.ts | 2 +- examples/fine-tunes.ts | 2 +- package.json | 3 +- src/_shims/ReadableStream.d.ts | 38 ++ src/_shims/ReadableStream.js | 5 + src/_shims/ReadableStream.mjs | 7 + src/_shims/ReadableStream.node.ts | 6 + src/_shims/fetch.deno.ts | 23 + src/_shims/formdata.deno.ts | 16 + src/core.ts | 83 ++- src/index.ts | 16 + src/resources/audio/audio.ts | 2 +- src/resources/audio/transcriptions.ts | 2 +- src/resources/audio/translations.ts | 2 +- src/resources/chat/chat.ts | 4 +- src/resources/chat/completions.ts | 465 ++++++---------- src/resources/chat/index.ts | 2 + src/resources/completions.ts | 502 +++++++----------- src/resources/edits.ts | 2 +- src/resources/embeddings.ts | 2 +- src/resources/files.ts | 2 +- src/resources/fine-tunes.ts | 79 +-- src/resources/images.ts | 2 +- src/resources/index.ts | 11 +- src/resources/models.ts | 2 +- src/resources/moderations.ts | 2 +- src/streaming.ts | 33 ++ src/uploads.ts | 13 +- src/version.ts | 2 +- tsconfig.build.json | 2 +- tsconfig.deno.json | 21 + tsconfig.json | 1 + yarn.lock | 47 ++ 40 files changed, 752 insertions(+), 699 deletions(-) mode change 100644 => 100755 examples/azure.ts mode change 100644 => 100755 examples/errors.ts create mode 100644 src/_shims/ReadableStream.d.ts create mode 100644 src/_shims/ReadableStream.js create mode 100644 src/_shims/ReadableStream.mjs create mode 100644 src/_shims/ReadableStream.node.ts create mode 100644 src/_shims/fetch.deno.ts create mode 100644 src/_shims/formdata.deno.ts create mode 100644 tsconfig.deno.json diff --git a/.gitignore b/.gitignore index def8d373e..314b24627 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ node_modules yarn-error.log codegen.log dist +/deno /*.tgz diff --git a/.prettierignore b/.prettierignore index 18975ca7d..804a75c60 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,3 +1,4 @@ CHANGELOG.md /ecosystem-tests /node_modules +/deno diff --git a/README.md b/README.md index 2d6676fd7..10057323d 100644 --- a/README.md +++ b/README.md @@ -230,11 +230,15 @@ await openai.models.list({ }) ``` -## Status +## Semantic Versioning -This package is in beta. Its internals and interfaces are not stable -and subject to change without a major semver bump; -please reach out if you rely on any undocumented behavior. +This package generally attempts to follow [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions: + +1. Changes that only affect static types, without breaking runtime behavior. +2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals)_. +3. Changes that we do not expect to impact the vast majority of users in practice. + +We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience. We are keen for your feedback; please open an [issue](https://www.github.com/openai/openai-node/issues) with questions, bugs, or suggestions. diff --git a/build b/build index b205edf8d..b12ec438f 100755 --- a/build +++ b/build @@ -3,15 +3,12 @@ set -exuo pipefail node scripts/check-version.cjs -yarn tsc - # Build into dist and will publish the package from there, # so that src/resources/foo.ts becomes /resources/foo.js # This way importing from `"openai/resources/foo"` works # even with `"moduleResolution": "node"` -rm -rf dist -mkdir dist +rm -rf dist; mkdir dist # Copy src to dist/src and build from dist/src into dist, so that # the source map for index.js.map will refer to ./src/index.ts etc cp -rp src README.md dist @@ -23,10 +20,10 @@ done node scripts/make-dist-package-json.cjs > dist/package.json # build to .js/.mjs/.d.ts files -tsc-multi +npm exec tsc-multi # copy over handwritten .js/.mjs/.d.ts files cp src/_shims/*.{d.ts,js,mjs} dist/_shims -tsc-alias -p tsconfig.build.json +npm exec tsc-alias -- -p tsconfig.build.json # we need to add exports = module.exports = OpenAI Node to index.js; # No way to get that from index.ts because it would cause compile errors # when building .mjs @@ -37,19 +34,22 @@ node scripts/fix-index-exports.cjs # the same export default statement) cp dist/index.d.ts dist/index.d.mts +SED=(sed -i) +if [[ "$OSTYPE" == "darwin"* ]]; then SED=(sed -i ''); fi + # strip out lib="dom" and types="node" references; these are needed at build time, # but would pollute the user's TS environment REFERENCE_SUBS='s/^ *\/\/\/ * /dev/null && [ -e ./build-deno ] +then + ./build-deno +fi diff --git a/ecosystem-tests/ts-browser-webpack/src/index.ts b/ecosystem-tests/ts-browser-webpack/src/index.ts index 9f6b1a676..5082ed5b1 100644 --- a/ecosystem-tests/ts-browser-webpack/src/index.ts +++ b/ecosystem-tests/ts-browser-webpack/src/index.ts @@ -93,7 +93,7 @@ const model = 'whisper-1'; const params = new URLSearchParams(location.search); -const client = new OpenAI({ apiKey: params.get('apiKey') ?? undefined }); +const client = new OpenAI({ apiKey: params.get('apiKey') ?? undefined, dangerouslyAllowBrowser: true }); async function typeTests() { // @ts-expect-error this should error if the `Uploadable` type was resolved correctly diff --git a/examples/azure.ts b/examples/azure.ts old mode 100644 new mode 100755 index 9ff887271..058143885 --- a/examples/azure.ts +++ b/examples/azure.ts @@ -1,4 +1,4 @@ -#!/usr/bin/env yarn tsn -T +#!/usr/bin/env -S npm run tsn -T import OpenAI from 'openai'; diff --git a/examples/demo.ts b/examples/demo.ts index 7c22287a8..a76e61239 100755 --- a/examples/demo.ts +++ b/examples/demo.ts @@ -1,4 +1,4 @@ -#!/usr/bin/env yarn tsn -T +#!/usr/bin/env -S npm run tsn -T import OpenAI from 'openai'; diff --git a/examples/errors.ts b/examples/errors.ts old mode 100644 new mode 100755 index 7df064886..6aa5b5679 --- a/examples/errors.ts +++ b/examples/errors.ts @@ -1,4 +1,4 @@ -#!/usr/bin/env yarn tsn -T +#!/usr/bin/env -S npm run tsn -T import OpenAI, { NotFoundError } from 'openai'; diff --git a/examples/fine-tunes.ts b/examples/fine-tunes.ts index 2de794d8b..ee4cb9eb9 100755 --- a/examples/fine-tunes.ts +++ b/examples/fine-tunes.ts @@ -1,4 +1,4 @@ -#!/usr/bin/env yarn tsn -T +#!/usr/bin/env -S npm run tsn -T /** * Fine-tuning allows you to train models on your own data. diff --git a/package.json b/package.json index 9a4384579..92f9f4d51 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.0.0-beta.7", + "version": "4.0.0-beta.8", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", @@ -91,6 +91,7 @@ "jest": "^29.4.0", "prettier": "rattrayalex/prettier#postfix-ternaries", "ts-jest": "^29.1.0", + "ts-morph": "^19.0.0", "ts-node": "^10.5.0", "tsc-alias": "^1.8.6", "tsc-multi": "^1.1.0", diff --git a/src/_shims/ReadableStream.d.ts b/src/_shims/ReadableStream.d.ts new file mode 100644 index 000000000..b21d01ce2 --- /dev/null +++ b/src/_shims/ReadableStream.d.ts @@ -0,0 +1,38 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +/** + * >>> Confused? <<< + * + * If you're getting errors from these types, try adding "lib": ["DOM"] + * to your tsconfig.json, or otherwise configure the appropriate builtin + * `ReadableStream` type for your environment. + */ + +// @ts-ignore +type _ReadableStream = unknown extends ReadableStream ? never : ReadableStream; +declare const _ReadableStream: { + prototype: _ReadableStream; + new ( + underlyingSource: _UnderlyingByteSource, + strategy?: { highWaterMark?: number }, + ): _ReadableStream; + new ( + underlyingSource: _UnderlyingDefaultSource, + strategy?: _QueuingStrategy, + ): _ReadableStream; + new (underlyingSource?: _UnderlyingSource, strategy?: _QueuingStrategy): _ReadableStream; +}; + +// @ts-ignore +type _UnderlyingSource = unknown extends UnderlyingSource ? never : UnderlyingSource; +// @ts-ignore +type _UnderlyingByteSource = unknown extends UnderlyingByteSource ? never : UnderlyingByteSource; +type _UnderlyingDefaultSource = + // @ts-ignore + unknown extends UnderlyingDefaultSource ? never : UnderlyingDefaultSource; +// @ts-ignore +type _QueuingStrategy = unknown extends QueuingStrategy ? never : QueuingStrategy; + +export { _ReadableStream as ReadableStream }; diff --git a/src/_shims/ReadableStream.js b/src/_shims/ReadableStream.js new file mode 100644 index 000000000..7c0dff176 --- /dev/null +++ b/src/_shims/ReadableStream.js @@ -0,0 +1,5 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +exports.ReadableStream = ReadableStream; diff --git a/src/_shims/ReadableStream.mjs b/src/_shims/ReadableStream.mjs new file mode 100644 index 000000000..a484d65a7 --- /dev/null +++ b/src/_shims/ReadableStream.mjs @@ -0,0 +1,7 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ + +const _ReadableStream = ReadableStream; + +export { _ReadableStream as ReadableStream }; diff --git a/src/_shims/ReadableStream.node.ts b/src/_shims/ReadableStream.node.ts new file mode 100644 index 000000000..adc525861 --- /dev/null +++ b/src/_shims/ReadableStream.node.ts @@ -0,0 +1,6 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ +import { ReadableStream } from 'web-streams-polyfill'; + +export { ReadableStream }; diff --git a/src/_shims/fetch.deno.ts b/src/_shims/fetch.deno.ts new file mode 100644 index 000000000..fbc2a8ddd --- /dev/null +++ b/src/_shims/fetch.deno.ts @@ -0,0 +1,23 @@ +const _fetch = fetch; +const _Request = Request; +type _RequestInfo = RequestInfo; +type _RequestInit = RequestInit; +const _Response = Response; +type _ResponseInit = ResponseInit; +type _BodyInit = BodyInit; +const _Headers = Headers; +type _HeadersInit = HeadersInit; + +export const isPolyfilled = false; + +export { + _fetch as fetch, + _Request as Request, + type _RequestInfo as RequestInfo, + type _RequestInit as RequestInit, + _Response as Response, + type _ResponseInit as ResponseInit, + type _BodyInit as BodyInit, + _Headers as Headers, + type _HeadersInit as HeadersInit, +}; diff --git a/src/_shims/formdata.deno.ts b/src/_shims/formdata.deno.ts new file mode 100644 index 000000000..56e31b302 --- /dev/null +++ b/src/_shims/formdata.deno.ts @@ -0,0 +1,16 @@ +type _BlobPropertyBag = BlobPropertyBag; +type _FilePropertyBag = FilePropertyBag; + +const _FormData = FormData; +const _File = File; +const _Blob = Blob; + +export const isPolyfilled = false; + +export { + _FormData as FormData, + _File as File, + _Blob as Blob, + type _BlobPropertyBag as BlobPropertyBag, + type _FilePropertyBag as FilePropertyBag, +}; diff --git a/src/core.ts b/src/core.ts index cf16c7e61..95ba19c0c 100644 --- a/src/core.ts +++ b/src/core.ts @@ -635,12 +635,13 @@ type PlatformName = | 'Android' | `Other:${string}` | 'Unknown'; +type Browser = 'ie' | 'edge' | 'chrome' | 'firefox' | 'safari'; type PlatformProperties = { 'X-Stainless-Lang': 'js'; 'X-Stainless-Package-Version': string; 'X-Stainless-OS': PlatformName; 'X-Stainless-Arch': Arch; - 'X-Stainless-Runtime': 'node' | 'deno' | 'edge' | 'unknown'; + 'X-Stainless-Runtime': 'node' | 'deno' | 'edge' | `browser:${Browser}` | 'unknown'; 'X-Stainless-Runtime-Version': string; }; const getPlatformProperties = (): PlatformProperties => { @@ -675,7 +676,20 @@ const getPlatformProperties = (): PlatformProperties => { 'X-Stainless-Runtime-Version': process.version, }; } - // TODO add support for Cloudflare workers, browsers, etc. + + const browserInfo = getBrowserInfo(); + if (browserInfo) { + return { + 'X-Stainless-Lang': 'js', + 'X-Stainless-Package-Version': VERSION, + 'X-Stainless-OS': 'Unknown', + 'X-Stainless-Arch': 'unknown', + 'X-Stainless-Runtime': `browser:${browserInfo.browser}`, + 'X-Stainless-Runtime-Version': browserInfo.version, + }; + } + + // TODO add support for Cloudflare workers, etc. return { 'X-Stainless-Lang': 'js', 'X-Stainless-Package-Version': VERSION, @@ -686,6 +700,44 @@ const getPlatformProperties = (): PlatformProperties => { }; }; +type BrowserInfo = { + browser: Browser; + version: string; +}; + +declare const navigator: { userAgent: string } | undefined; + +// Note: modified from https://github.com/JS-DevTools/host-environment/blob/b1ab79ecde37db5d6e163c050e54fe7d287d7c92/src/isomorphic.browser.ts +function getBrowserInfo(): BrowserInfo | null { + if (!navigator || typeof navigator === 'undefined') { + return null; + } + + // NOTE: The order matters here! + const browserPatterns = [ + { key: 'edge' as const, pattern: /Edge(?:\W+(\d+)\.(\d+)(?:\.(\d+))?)?/ }, + { key: 'ie' as const, pattern: /MSIE(?:\W+(\d+)\.(\d+)(?:\.(\d+))?)?/ }, + { key: 'ie' as const, pattern: /Trident(?:.*rv\:(\d+)\.(\d+)(?:\.(\d+))?)?/ }, + { key: 'chrome' as const, pattern: /Chrome(?:\W+(\d+)\.(\d+)(?:\.(\d+))?)?/ }, + { key: 'firefox' as const, pattern: /Firefox(?:\W+(\d+)\.(\d+)(?:\.(\d+))?)?/ }, + { key: 'safari' as const, pattern: /(?:Version\W+(\d+)\.(\d+)(?:\.(\d+))?)?(?:\W+Mobile\S*)?\W+Safari/ }, + ]; + + // Find the FIRST matching browser + for (const { key, pattern } of browserPatterns) { + const match = pattern.exec(navigator.userAgent); + if (match) { + const major = match[1] || 0; + const minor = match[2] || 0; + const patch = match[3] || 0; + + return { browser: key, version: `${major}.${minor}.${patch}` }; + } + } + + return null; +} + const normalizeArch = (arch: string): Arch => { // Node docs: // - https://nodejs.org/api/process.html#processarch @@ -744,8 +796,8 @@ const isAbsoluteURL = (url: string): boolean => { const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms)); -const validatePositiveInteger = (name: string, n: number) => { - if (!Number.isInteger(n)) { +const validatePositiveInteger = (name: string, n: unknown): number => { + if (typeof n !== 'number' || !Number.isInteger(n)) { throw new Error(`${name} must be an integer`); } if (n < 0) { @@ -767,14 +819,16 @@ export const ensurePresent = (value: T | null | undefined): T => { /** * Read an environment variable. * - * Will return an empty string if the environment variable doesn't exist or cannot be accessed. + * Will return undefined if the environment variable doesn't exist or cannot be accessed. */ export const readEnv = (env: string): string | undefined => { - if (typeof process === 'undefined') { - return undefined; + if (typeof process !== 'undefined') { + return process.env?.[env] ?? undefined; } - - return process.env[env] ?? undefined; + if (typeof Deno !== 'undefined') { + return Deno.env?.get?.(env); + } + return undefined; }; export const coerceInteger = (value: unknown): number => { @@ -841,6 +895,17 @@ const uuid4 = () => { }); }; +export const isRunningInBrowser = () => { + return ( + // @ts-ignore + typeof window !== 'undefined' && + // @ts-ignore + typeof window.document !== 'undefined' && + // @ts-ignore + typeof navigator !== 'undefined' + ); +}; + export interface HeadersProtocol { get: (header: string) => string | null | undefined; } diff --git a/src/index.ts b/src/index.ts index e47227209..56a361db9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -67,6 +67,12 @@ export interface ClientOptions { */ defaultQuery?: Core.DefaultQuery; + /** + * By default, client-side use of this library is not allowed, as it risks exposing your secret API credentials to attackers. + * Only set this option to `true` if you understand the risks and have appropriate mitigations in place. + */ + dangerouslyAllowBrowser?: boolean; + organization?: string | null; } @@ -95,6 +101,12 @@ export class OpenAI extends Core.APIClient { ...opts, }; + if (!options.dangerouslyAllowBrowser && Core.isRunningInBrowser()) { + throw new Error( + "It looks like you're running in a browser-like environment.\n\nThis is disabled by default, as it risks exposing your secret API credentials to attackers. \nIf you understand the risks and have appropriate mitigations in place,\nyou can set the `dangerouslyAllowBrowser` option to `true`, e.g.,\n\nnew OpenAI({ apiKey, dangerouslyAllowBrowser: true });\n\nhttps://help.openai.com/en/articles/5112595-best-practices-for-api-key-safety\n", + ); + } + super({ baseURL: options.baseURL!, timeout: options.timeout ?? 600000, @@ -181,6 +193,8 @@ export namespace OpenAI { export import Completion = API.Completion; export import CompletionChoice = API.CompletionChoice; export import CompletionCreateParams = API.CompletionCreateParams; + export import CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; + export import CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; export import Chat = API.Chat; @@ -225,6 +239,8 @@ export namespace OpenAI { export import FineTunesPage = API.FineTunesPage; export import FineTuneCreateParams = API.FineTuneCreateParams; export import FineTuneListEventsParams = API.FineTuneListEventsParams; + export import FineTuneListEventsParamsNonStreaming = API.FineTuneListEventsParamsNonStreaming; + export import FineTuneListEventsParamsStreaming = API.FineTuneListEventsParamsStreaming; } export default OpenAI; diff --git a/src/resources/audio/audio.ts b/src/resources/audio/audio.ts index 740c96369..5061b2000 100644 --- a/src/resources/audio/audio.ts +++ b/src/resources/audio/audio.ts @@ -3,7 +3,7 @@ import { APIResource } from 'openai/resource'; import { Transcriptions } from './transcriptions'; import { Translations } from './translations'; -import * as API from './'; +import * as API from './index'; export class Audio extends APIResource { transcriptions: Transcriptions = new Transcriptions(this.client); diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index 2ac83d88d..e35ee5f5d 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -2,7 +2,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; -import * as API from './'; +import * as API from './index'; import { type Uploadable, multipartFormRequestOptions } from 'openai/core'; export class Transcriptions extends APIResource { diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index 1aaf795d2..942b8478d 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -2,7 +2,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; -import * as API from './'; +import * as API from './index'; import { type Uploadable, multipartFormRequestOptions } from 'openai/core'; export class Translations extends APIResource { diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 2811925bd..b2ed0239e 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -2,7 +2,7 @@ import { APIResource } from 'openai/resource'; import { Completions } from './completions'; -import * as API from './'; +import * as API from './index'; export class Chat extends APIResource { completions: Completions = new Completions(this.client); @@ -14,4 +14,6 @@ export namespace Chat { export import ChatCompletionChunk = API.ChatCompletionChunk; export import CreateChatCompletionRequestMessage = API.CreateChatCompletionRequestMessage; export import CompletionCreateParams = API.CompletionCreateParams; + export import CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; + export import CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; } diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 0c1dc93fd..98f739159 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -2,7 +2,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; -import * as API from './'; +import * as API from './index'; import { Stream } from 'openai/streaming'; export class Completions extends APIResource { @@ -10,13 +10,17 @@ export class Completions extends APIResource { * Creates a model response for the given chat conversation. */ create( - body: CompletionCreateParams.CreateChatCompletionRequestNonStreaming, + body: CompletionCreateParamsNonStreaming, options?: Core.RequestOptions, ): Promise>; create( - body: CompletionCreateParams.CreateChatCompletionRequestStreaming, + body: CompletionCreateParamsStreaming, options?: Core.RequestOptions, ): Promise>>; + create( + body: CompletionCreateParams, + options?: Core.RequestOptions, + ): Promise>>; create( body: CompletionCreateParams, options?: Core.RequestOptions, @@ -210,336 +214,191 @@ export namespace CreateChatCompletionRequestMessage { } } -export type CompletionCreateParams = - | CompletionCreateParams.CreateChatCompletionRequestNonStreaming - | CompletionCreateParams.CreateChatCompletionRequestStreaming; +export interface CompletionCreateParams { + /** + * A list of messages comprising the conversation so far. + * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_format_inputs_to_ChatGPT_models.ipynb). + */ + messages: Array; -export namespace CompletionCreateParams { - export interface CreateChatCompletionRequestNonStreaming { - /** - * A list of messages comprising the conversation so far. - * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_format_inputs_to_ChatGPT_models.ipynb). - */ - messages: Array; + /** + * ID of the model to use. See the + * [model endpoint compatibility](/docs/models/model-endpoint-compatibility) table + * for details on which models work with the Chat API. + */ + model: + | (string & {}) + | 'gpt-4' + | 'gpt-4-0314' + | 'gpt-4-0613' + | 'gpt-4-32k' + | 'gpt-4-32k-0314' + | 'gpt-4-32k-0613' + | 'gpt-3.5-turbo' + | 'gpt-3.5-turbo-16k' + | 'gpt-3.5-turbo-0301' + | 'gpt-3.5-turbo-0613' + | 'gpt-3.5-turbo-16k-0613'; - /** - * ID of the model to use. See the - * [model endpoint compatibility](/docs/models/model-endpoint-compatibility) table - * for details on which models work with the Chat API. - */ - model: - | (string & {}) - | 'gpt-4' - | 'gpt-4-0314' - | 'gpt-4-0613' - | 'gpt-4-32k' - | 'gpt-4-32k-0314' - | 'gpt-4-32k-0613' - | 'gpt-3.5-turbo' - | 'gpt-3.5-turbo-16k' - | 'gpt-3.5-turbo-0301' - | 'gpt-3.5-turbo-0613' - | 'gpt-3.5-turbo-16k-0613'; + /** + * Number between -2.0 and 2.0. Positive values penalize new tokens based on their + * existing frequency in the text so far, decreasing the model's likelihood to + * repeat the same line verbatim. + * + * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) + */ + frequency_penalty?: number | null; - /** - * Number between -2.0 and 2.0. Positive values penalize new tokens based on their - * existing frequency in the text so far, decreasing the model's likelihood to - * repeat the same line verbatim. - * - * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) - */ - frequency_penalty?: number | null; + /** + * Controls how the model responds to function calls. "none" means the model does + * not call a function, and responds to the end-user. "auto" means the model can + * pick between an end-user or calling a function. Specifying a particular function + * via `{"name":\ "my_function"}` forces the model to call that function. "none" is + * the default when no functions are present. "auto" is the default if functions + * are present. + */ + function_call?: 'none' | 'auto' | CompletionCreateParams.FunctionCallOption; - /** - * Controls how the model responds to function calls. "none" means the model does - * not call a function, and responds to the end-user. "auto" means the model can - * pick between an end-user or calling a function. Specifying a particular function - * via `{"name":\ "my_function"}` forces the model to call that function. "none" is - * the default when no functions are present. "auto" is the default if functions - * are present. - */ - function_call?: - | 'none' - | 'auto' - | CompletionCreateParams.CreateChatCompletionRequestNonStreaming.FunctionCallOption; + /** + * A list of functions the model may generate JSON inputs for. + */ + functions?: Array; - /** - * A list of functions the model may generate JSON inputs for. - */ - functions?: Array; + /** + * Modify the likelihood of specified tokens appearing in the completion. + * + * Accepts a json object that maps tokens (specified by their token ID in the + * tokenizer) to an associated bias value from -100 to 100. Mathematically, the + * bias is added to the logits generated by the model prior to sampling. The exact + * effect will vary per model, but values between -1 and 1 should decrease or + * increase likelihood of selection; values like -100 or 100 should result in a ban + * or exclusive selection of the relevant token. + */ + logit_bias?: Record | null; - /** - * Modify the likelihood of specified tokens appearing in the completion. - * - * Accepts a json object that maps tokens (specified by their token ID in the - * tokenizer) to an associated bias value from -100 to 100. Mathematically, the - * bias is added to the logits generated by the model prior to sampling. The exact - * effect will vary per model, but values between -1 and 1 should decrease or - * increase likelihood of selection; values like -100 or 100 should result in a ban - * or exclusive selection of the relevant token. - */ - logit_bias?: Record | null; + /** + * The maximum number of [tokens](/tokenizer) to generate in the chat completion. + * + * The total length of input tokens and generated tokens is limited by the model's + * context length. + * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) + * for counting tokens. + */ + max_tokens?: number; - /** - * The maximum number of [tokens](/tokenizer) to generate in the chat completion. - * - * The total length of input tokens and generated tokens is limited by the model's - * context length. - * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) - * for counting tokens. - */ - max_tokens?: number; + /** + * How many chat completion choices to generate for each input message. + */ + n?: number | null; - /** - * How many chat completion choices to generate for each input message. - */ - n?: number | null; + /** + * Number between -2.0 and 2.0. Positive values penalize new tokens based on + * whether they appear in the text so far, increasing the model's likelihood to + * talk about new topics. + * + * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) + */ + presence_penalty?: number | null; - /** - * Number between -2.0 and 2.0. Positive values penalize new tokens based on - * whether they appear in the text so far, increasing the model's likelihood to - * talk about new topics. - * - * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) - */ - presence_penalty?: number | null; + /** + * Up to 4 sequences where the API will stop generating further tokens. + */ + stop?: string | null | Array; - /** - * Up to 4 sequences where the API will stop generating further tokens. - */ - stop?: string | null | Array; + /** + * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be + * sent as data-only + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) + * as they become available, with the stream terminated by a `data: [DONE]` + * message. + * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). + */ + stream?: boolean | null; - /** - * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be - * sent as data-only - * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) - * as they become available, with the stream terminated by a `data: [DONE]` - * message. - * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). - */ - stream?: false | null; + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. + * + * We generally recommend altering this or `top_p` but not both. + */ + temperature?: number | null; - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will - * make the output more random, while lower values like 0.2 will make it more - * focused and deterministic. - * - * We generally recommend altering this or `top_p` but not both. - */ - temperature?: number | null; + /** + * An alternative to sampling with temperature, called nucleus sampling, where the + * model considers the results of the tokens with top_p probability mass. So 0.1 + * means only the tokens comprising the top 10% probability mass are considered. + * + * We generally recommend altering this or `temperature` but not both. + */ + top_p?: number | null; - /** - * An alternative to sampling with temperature, called nucleus sampling, where the - * model considers the results of the tokens with top_p probability mass. So 0.1 - * means only the tokens comprising the top 10% probability mass are considered. - * - * We generally recommend altering this or `temperature` but not both. - */ - top_p?: number | null; + /** + * A unique identifier representing your end-user, which can help OpenAI to monitor + * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + */ + user?: string; +} +export namespace CompletionCreateParams { + export interface FunctionCallOption { /** - * A unique identifier representing your end-user, which can help OpenAI to monitor - * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + * The name of the function to call. */ - user?: string; - } - - export namespace CreateChatCompletionRequestNonStreaming { - export interface FunctionCallOption { - /** - * The name of the function to call. - */ - name: string; - } - - export interface Function { - /** - * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain - * underscores and dashes, with a maximum length of 64. - */ - name: string; - - /** - * The parameters the functions accepts, described as a JSON Schema object. See the - * [guide](/docs/guides/gpt/function-calling) for examples, and the - * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for - * documentation about the format. - * - * To describe a function that accepts no parameters, provide the value - * `{"type": "object", "properties": {}}`. - */ - parameters: Record; - - /** - * A description of what the function does, used by the model to choose when and - * how to call the function. - */ - description?: string; - } + name: string; } - export interface CreateChatCompletionRequestStreaming { - /** - * A list of messages comprising the conversation so far. - * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_format_inputs_to_ChatGPT_models.ipynb). - */ - messages: Array; - - /** - * ID of the model to use. See the - * [model endpoint compatibility](/docs/models/model-endpoint-compatibility) table - * for details on which models work with the Chat API. - */ - model: - | (string & {}) - | 'gpt-4' - | 'gpt-4-0314' - | 'gpt-4-0613' - | 'gpt-4-32k' - | 'gpt-4-32k-0314' - | 'gpt-4-32k-0613' - | 'gpt-3.5-turbo' - | 'gpt-3.5-turbo-16k' - | 'gpt-3.5-turbo-0301' - | 'gpt-3.5-turbo-0613' - | 'gpt-3.5-turbo-16k-0613'; - - /** - * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be - * sent as data-only - * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) - * as they become available, with the stream terminated by a `data: [DONE]` - * message. - * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). - */ - stream: true; - - /** - * Number between -2.0 and 2.0. Positive values penalize new tokens based on their - * existing frequency in the text so far, decreasing the model's likelihood to - * repeat the same line verbatim. - * - * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) - */ - frequency_penalty?: number | null; - - /** - * Controls how the model responds to function calls. "none" means the model does - * not call a function, and responds to the end-user. "auto" means the model can - * pick between an end-user or calling a function. Specifying a particular function - * via `{"name":\ "my_function"}` forces the model to call that function. "none" is - * the default when no functions are present. "auto" is the default if functions - * are present. - */ - function_call?: - | 'none' - | 'auto' - | CompletionCreateParams.CreateChatCompletionRequestStreaming.FunctionCallOption; - - /** - * A list of functions the model may generate JSON inputs for. - */ - functions?: Array; - - /** - * Modify the likelihood of specified tokens appearing in the completion. - * - * Accepts a json object that maps tokens (specified by their token ID in the - * tokenizer) to an associated bias value from -100 to 100. Mathematically, the - * bias is added to the logits generated by the model prior to sampling. The exact - * effect will vary per model, but values between -1 and 1 should decrease or - * increase likelihood of selection; values like -100 or 100 should result in a ban - * or exclusive selection of the relevant token. - */ - logit_bias?: Record | null; - - /** - * The maximum number of [tokens](/tokenizer) to generate in the chat completion. - * - * The total length of input tokens and generated tokens is limited by the model's - * context length. - * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) - * for counting tokens. - */ - max_tokens?: number; - - /** - * How many chat completion choices to generate for each input message. - */ - n?: number | null; - - /** - * Number between -2.0 and 2.0. Positive values penalize new tokens based on - * whether they appear in the text so far, increasing the model's likelihood to - * talk about new topics. - * - * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) - */ - presence_penalty?: number | null; - + export interface Function { /** - * Up to 4 sequences where the API will stop generating further tokens. + * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain + * underscores and dashes, with a maximum length of 64. */ - stop?: string | null | Array; - - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will - * make the output more random, while lower values like 0.2 will make it more - * focused and deterministic. - * - * We generally recommend altering this or `top_p` but not both. - */ - temperature?: number | null; + name: string; /** - * An alternative to sampling with temperature, called nucleus sampling, where the - * model considers the results of the tokens with top_p probability mass. So 0.1 - * means only the tokens comprising the top 10% probability mass are considered. + * The parameters the functions accepts, described as a JSON Schema object. See the + * [guide](/docs/guides/gpt/function-calling) for examples, and the + * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for + * documentation about the format. * - * We generally recommend altering this or `temperature` but not both. + * To describe a function that accepts no parameters, provide the value + * `{"type": "object", "properties": {}}`. */ - top_p?: number | null; + parameters: Record; /** - * A unique identifier representing your end-user, which can help OpenAI to monitor - * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + * A description of what the function does, used by the model to choose when and + * how to call the function. */ - user?: string; + description?: string; } - export namespace CreateChatCompletionRequestStreaming { - export interface FunctionCallOption { - /** - * The name of the function to call. - */ - name: string; - } - - export interface Function { - /** - * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain - * underscores and dashes, with a maximum length of 64. - */ - name: string; + export type CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; + export type CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; +} - /** - * The parameters the functions accepts, described as a JSON Schema object. See the - * [guide](/docs/guides/gpt/function-calling) for examples, and the - * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for - * documentation about the format. - * - * To describe a function that accepts no parameters, provide the value - * `{"type": "object", "properties": {}}`. - */ - parameters: Record; +export interface CompletionCreateParamsNonStreaming extends CompletionCreateParams { + /** + * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be + * sent as data-only + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) + * as they become available, with the stream terminated by a `data: [DONE]` + * message. + * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). + */ + stream?: false | null; +} - /** - * A description of what the function does, used by the model to choose when and - * how to call the function. - */ - description?: string; - } - } +export interface CompletionCreateParamsStreaming extends CompletionCreateParams { + /** + * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be + * sent as data-only + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) + * as they become available, with the stream terminated by a `data: [DONE]` + * message. + * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). + */ + stream: true; } export namespace Completions { @@ -547,4 +406,6 @@ export namespace Completions { export import ChatCompletionChunk = API.ChatCompletionChunk; export import CreateChatCompletionRequestMessage = API.CreateChatCompletionRequestMessage; export import CompletionCreateParams = API.CompletionCreateParams; + export import CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; + export import CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; } diff --git a/src/resources/chat/index.ts b/src/resources/chat/index.ts index 8cb0282da..726a6704b 100644 --- a/src/resources/chat/index.ts +++ b/src/resources/chat/index.ts @@ -6,5 +6,7 @@ export { ChatCompletionChunk, CreateChatCompletionRequestMessage, CompletionCreateParams, + CompletionCreateParamsNonStreaming, + CompletionCreateParamsStreaming, Completions, } from './completions'; diff --git a/src/resources/completions.ts b/src/resources/completions.ts index f123db24d..dce847802 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -2,7 +2,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; -import * as API from './'; +import * as API from './index'; import { Stream } from 'openai/streaming'; export class Completions extends APIResource { @@ -10,13 +10,17 @@ export class Completions extends APIResource { * Creates a completion for the provided prompt and parameters. */ create( - body: CompletionCreateParams.CreateCompletionRequestNonStreaming, + body: CompletionCreateParamsNonStreaming, options?: Core.RequestOptions, ): Promise>; create( - body: CompletionCreateParams.CreateCompletionRequestStreaming, + body: CompletionCreateParamsStreaming, options?: Core.RequestOptions, ): Promise>>; + create( + body: CompletionCreateParams, + options?: Core.RequestOptions, + ): Promise>>; create( body: CompletionCreateParams, options?: Core.RequestOptions, @@ -71,324 +75,194 @@ export namespace CompletionChoice { } } -export type CompletionCreateParams = - | CompletionCreateParams.CreateCompletionRequestNonStreaming - | CompletionCreateParams.CreateCompletionRequestStreaming; +export interface CompletionCreateParams { + /** + * ID of the model to use. You can use the + * [List models](/docs/api-reference/models/list) API to see all of your available + * models, or see our [Model overview](/docs/models/overview) for descriptions of + * them. + */ + model: + | (string & {}) + | 'text-davinci-003' + | 'text-davinci-002' + | 'text-davinci-001' + | 'code-davinci-002' + | 'text-curie-001' + | 'text-babbage-001' + | 'text-ada-001'; + + /** + * The prompt(s) to generate completions for, encoded as a string, array of + * strings, array of tokens, or array of token arrays. + * + * Note that <|endoftext|> is the document separator that the model sees during + * training, so if a prompt is not specified the model will generate as if from the + * beginning of a new document. + */ + prompt: string | Array | Array | Array> | null; + + /** + * Generates `best_of` completions server-side and returns the "best" (the one with + * the highest log probability per token). Results cannot be streamed. + * + * When used with `n`, `best_of` controls the number of candidate completions and + * `n` specifies how many to return – `best_of` must be greater than `n`. + * + * **Note:** Because this parameter generates many completions, it can quickly + * consume your token quota. Use carefully and ensure that you have reasonable + * settings for `max_tokens` and `stop`. + */ + best_of?: number | null; + + /** + * Echo back the prompt in addition to the completion + */ + echo?: boolean | null; + + /** + * Number between -2.0 and 2.0. Positive values penalize new tokens based on their + * existing frequency in the text so far, decreasing the model's likelihood to + * repeat the same line verbatim. + * + * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) + */ + frequency_penalty?: number | null; + + /** + * Modify the likelihood of specified tokens appearing in the completion. + * + * Accepts a json object that maps tokens (specified by their token ID in the GPT + * tokenizer) to an associated bias value from -100 to 100. You can use this + * [tokenizer tool](/tokenizer?view=bpe) (which works for both GPT-2 and GPT-3) to + * convert text to token IDs. Mathematically, the bias is added to the logits + * generated by the model prior to sampling. The exact effect will vary per model, + * but values between -1 and 1 should decrease or increase likelihood of selection; + * values like -100 or 100 should result in a ban or exclusive selection of the + * relevant token. + * + * As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> token + * from being generated. + */ + logit_bias?: Record | null; + + /** + * Include the log probabilities on the `logprobs` most likely tokens, as well the + * chosen tokens. For example, if `logprobs` is 5, the API will return a list of + * the 5 most likely tokens. The API will always return the `logprob` of the + * sampled token, so there may be up to `logprobs+1` elements in the response. + * + * The maximum value for `logprobs` is 5. + */ + logprobs?: number | null; + + /** + * The maximum number of [tokens](/tokenizer) to generate in the completion. + * + * The token count of your prompt plus `max_tokens` cannot exceed the model's + * context length. + * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) + * for counting tokens. + */ + max_tokens?: number | null; + + /** + * How many completions to generate for each prompt. + * + * **Note:** Because this parameter generates many completions, it can quickly + * consume your token quota. Use carefully and ensure that you have reasonable + * settings for `max_tokens` and `stop`. + */ + n?: number | null; + + /** + * Number between -2.0 and 2.0. Positive values penalize new tokens based on + * whether they appear in the text so far, increasing the model's likelihood to + * talk about new topics. + * + * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) + */ + presence_penalty?: number | null; + + /** + * Up to 4 sequences where the API will stop generating further tokens. The + * returned text will not contain the stop sequence. + */ + stop?: string | null | Array; + + /** + * Whether to stream back partial progress. If set, tokens will be sent as + * data-only + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) + * as they become available, with the stream terminated by a `data: [DONE]` + * message. + * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). + */ + stream?: boolean | null; + + /** + * The suffix that comes after a completion of inserted text. + */ + suffix?: string | null; + + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. + * + * We generally recommend altering this or `top_p` but not both. + */ + temperature?: number | null; + + /** + * An alternative to sampling with temperature, called nucleus sampling, where the + * model considers the results of the tokens with top_p probability mass. So 0.1 + * means only the tokens comprising the top 10% probability mass are considered. + * + * We generally recommend altering this or `temperature` but not both. + */ + top_p?: number | null; + + /** + * A unique identifier representing your end-user, which can help OpenAI to monitor + * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + */ + user?: string; +} export namespace CompletionCreateParams { - export interface CreateCompletionRequestNonStreaming { - /** - * ID of the model to use. You can use the - * [List models](/docs/api-reference/models/list) API to see all of your available - * models, or see our [Model overview](/docs/models/overview) for descriptions of - * them. - */ - model: - | (string & {}) - | 'text-davinci-003' - | 'text-davinci-002' - | 'text-davinci-001' - | 'code-davinci-002' - | 'text-curie-001' - | 'text-babbage-001' - | 'text-ada-001'; - - /** - * The prompt(s) to generate completions for, encoded as a string, array of - * strings, array of tokens, or array of token arrays. - * - * Note that <|endoftext|> is the document separator that the model sees during - * training, so if a prompt is not specified the model will generate as if from the - * beginning of a new document. - */ - prompt: string | Array | Array | Array> | null; - - /** - * Generates `best_of` completions server-side and returns the "best" (the one with - * the highest log probability per token). Results cannot be streamed. - * - * When used with `n`, `best_of` controls the number of candidate completions and - * `n` specifies how many to return – `best_of` must be greater than `n`. - * - * **Note:** Because this parameter generates many completions, it can quickly - * consume your token quota. Use carefully and ensure that you have reasonable - * settings for `max_tokens` and `stop`. - */ - best_of?: number | null; - - /** - * Echo back the prompt in addition to the completion - */ - echo?: boolean | null; - - /** - * Number between -2.0 and 2.0. Positive values penalize new tokens based on their - * existing frequency in the text so far, decreasing the model's likelihood to - * repeat the same line verbatim. - * - * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) - */ - frequency_penalty?: number | null; - - /** - * Modify the likelihood of specified tokens appearing in the completion. - * - * Accepts a json object that maps tokens (specified by their token ID in the GPT - * tokenizer) to an associated bias value from -100 to 100. You can use this - * [tokenizer tool](/tokenizer?view=bpe) (which works for both GPT-2 and GPT-3) to - * convert text to token IDs. Mathematically, the bias is added to the logits - * generated by the model prior to sampling. The exact effect will vary per model, - * but values between -1 and 1 should decrease or increase likelihood of selection; - * values like -100 or 100 should result in a ban or exclusive selection of the - * relevant token. - * - * As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> token - * from being generated. - */ - logit_bias?: Record | null; - - /** - * Include the log probabilities on the `logprobs` most likely tokens, as well the - * chosen tokens. For example, if `logprobs` is 5, the API will return a list of - * the 5 most likely tokens. The API will always return the `logprob` of the - * sampled token, so there may be up to `logprobs+1` elements in the response. - * - * The maximum value for `logprobs` is 5. - */ - logprobs?: number | null; - - /** - * The maximum number of [tokens](/tokenizer) to generate in the completion. - * - * The token count of your prompt plus `max_tokens` cannot exceed the model's - * context length. - * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) - * for counting tokens. - */ - max_tokens?: number | null; - - /** - * How many completions to generate for each prompt. - * - * **Note:** Because this parameter generates many completions, it can quickly - * consume your token quota. Use carefully and ensure that you have reasonable - * settings for `max_tokens` and `stop`. - */ - n?: number | null; - - /** - * Number between -2.0 and 2.0. Positive values penalize new tokens based on - * whether they appear in the text so far, increasing the model's likelihood to - * talk about new topics. - * - * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) - */ - presence_penalty?: number | null; - - /** - * Up to 4 sequences where the API will stop generating further tokens. The - * returned text will not contain the stop sequence. - */ - stop?: string | null | Array; - - /** - * Whether to stream back partial progress. If set, tokens will be sent as - * data-only - * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) - * as they become available, with the stream terminated by a `data: [DONE]` - * message. - * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). - */ - stream?: false | null; - - /** - * The suffix that comes after a completion of inserted text. - */ - suffix?: string | null; - - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will - * make the output more random, while lower values like 0.2 will make it more - * focused and deterministic. - * - * We generally recommend altering this or `top_p` but not both. - */ - temperature?: number | null; - - /** - * An alternative to sampling with temperature, called nucleus sampling, where the - * model considers the results of the tokens with top_p probability mass. So 0.1 - * means only the tokens comprising the top 10% probability mass are considered. - * - * We generally recommend altering this or `temperature` but not both. - */ - top_p?: number | null; - - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor - * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - */ - user?: string; - } + export type CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; + export type CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; +} - export interface CreateCompletionRequestStreaming { - /** - * ID of the model to use. You can use the - * [List models](/docs/api-reference/models/list) API to see all of your available - * models, or see our [Model overview](/docs/models/overview) for descriptions of - * them. - */ - model: - | (string & {}) - | 'text-davinci-003' - | 'text-davinci-002' - | 'text-davinci-001' - | 'code-davinci-002' - | 'text-curie-001' - | 'text-babbage-001' - | 'text-ada-001'; - - /** - * The prompt(s) to generate completions for, encoded as a string, array of - * strings, array of tokens, or array of token arrays. - * - * Note that <|endoftext|> is the document separator that the model sees during - * training, so if a prompt is not specified the model will generate as if from the - * beginning of a new document. - */ - prompt: string | Array | Array | Array> | null; - - /** - * Whether to stream back partial progress. If set, tokens will be sent as - * data-only - * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) - * as they become available, with the stream terminated by a `data: [DONE]` - * message. - * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). - */ - stream: true; - - /** - * Generates `best_of` completions server-side and returns the "best" (the one with - * the highest log probability per token). Results cannot be streamed. - * - * When used with `n`, `best_of` controls the number of candidate completions and - * `n` specifies how many to return – `best_of` must be greater than `n`. - * - * **Note:** Because this parameter generates many completions, it can quickly - * consume your token quota. Use carefully and ensure that you have reasonable - * settings for `max_tokens` and `stop`. - */ - best_of?: number | null; - - /** - * Echo back the prompt in addition to the completion - */ - echo?: boolean | null; - - /** - * Number between -2.0 and 2.0. Positive values penalize new tokens based on their - * existing frequency in the text so far, decreasing the model's likelihood to - * repeat the same line verbatim. - * - * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) - */ - frequency_penalty?: number | null; - - /** - * Modify the likelihood of specified tokens appearing in the completion. - * - * Accepts a json object that maps tokens (specified by their token ID in the GPT - * tokenizer) to an associated bias value from -100 to 100. You can use this - * [tokenizer tool](/tokenizer?view=bpe) (which works for both GPT-2 and GPT-3) to - * convert text to token IDs. Mathematically, the bias is added to the logits - * generated by the model prior to sampling. The exact effect will vary per model, - * but values between -1 and 1 should decrease or increase likelihood of selection; - * values like -100 or 100 should result in a ban or exclusive selection of the - * relevant token. - * - * As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> token - * from being generated. - */ - logit_bias?: Record | null; - - /** - * Include the log probabilities on the `logprobs` most likely tokens, as well the - * chosen tokens. For example, if `logprobs` is 5, the API will return a list of - * the 5 most likely tokens. The API will always return the `logprob` of the - * sampled token, so there may be up to `logprobs+1` elements in the response. - * - * The maximum value for `logprobs` is 5. - */ - logprobs?: number | null; - - /** - * The maximum number of [tokens](/tokenizer) to generate in the completion. - * - * The token count of your prompt plus `max_tokens` cannot exceed the model's - * context length. - * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) - * for counting tokens. - */ - max_tokens?: number | null; - - /** - * How many completions to generate for each prompt. - * - * **Note:** Because this parameter generates many completions, it can quickly - * consume your token quota. Use carefully and ensure that you have reasonable - * settings for `max_tokens` and `stop`. - */ - n?: number | null; - - /** - * Number between -2.0 and 2.0. Positive values penalize new tokens based on - * whether they appear in the text so far, increasing the model's likelihood to - * talk about new topics. - * - * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) - */ - presence_penalty?: number | null; - - /** - * Up to 4 sequences where the API will stop generating further tokens. The - * returned text will not contain the stop sequence. - */ - stop?: string | null | Array; - - /** - * The suffix that comes after a completion of inserted text. - */ - suffix?: string | null; - - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will - * make the output more random, while lower values like 0.2 will make it more - * focused and deterministic. - * - * We generally recommend altering this or `top_p` but not both. - */ - temperature?: number | null; - - /** - * An alternative to sampling with temperature, called nucleus sampling, where the - * model considers the results of the tokens with top_p probability mass. So 0.1 - * means only the tokens comprising the top 10% probability mass are considered. - * - * We generally recommend altering this or `temperature` but not both. - */ - top_p?: number | null; - - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor - * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - */ - user?: string; - } +export interface CompletionCreateParamsNonStreaming extends CompletionCreateParams { + /** + * Whether to stream back partial progress. If set, tokens will be sent as + * data-only + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) + * as they become available, with the stream terminated by a `data: [DONE]` + * message. + * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). + */ + stream?: false | null; +} + +export interface CompletionCreateParamsStreaming extends CompletionCreateParams { + /** + * Whether to stream back partial progress. If set, tokens will be sent as + * data-only + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) + * as they become available, with the stream terminated by a `data: [DONE]` + * message. + * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). + */ + stream: true; } export namespace Completions { export import Completion = API.Completion; export import CompletionChoice = API.CompletionChoice; export import CompletionCreateParams = API.CompletionCreateParams; + export import CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; + export import CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; } diff --git a/src/resources/edits.ts b/src/resources/edits.ts index 815967593..4972fccff 100644 --- a/src/resources/edits.ts +++ b/src/resources/edits.ts @@ -2,7 +2,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; -import * as API from './'; +import * as API from './index'; export class Edits extends APIResource { /** diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index 4a0721603..e6f09876c 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -2,7 +2,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; -import * as API from './'; +import * as API from './index'; export class Embeddings extends APIResource { /** diff --git a/src/resources/files.ts b/src/resources/files.ts index 03fe57de1..676c1ac8c 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -2,7 +2,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; -import * as API from './'; +import * as API from './index'; import { type Uploadable, multipartFormRequestOptions } from 'openai/core'; import { Page } from 'openai/pagination'; diff --git a/src/resources/fine-tunes.ts b/src/resources/fine-tunes.ts index 44e71888b..536274d56 100644 --- a/src/resources/fine-tunes.ts +++ b/src/resources/fine-tunes.ts @@ -3,7 +3,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; import * as Files from 'openai/resources/files'; -import * as API from './'; +import * as API from './index'; import { Page } from 'openai/pagination'; import { Stream } from 'openai/streaming'; @@ -48,14 +48,19 @@ export class FineTunes extends APIResource { */ listEvents( fineTuneId: string, - query?: FineTuneListEventsParams.ListEventsRequestNonStreaming, + query?: FineTuneListEventsParamsNonStreaming, options?: Core.RequestOptions, ): Promise>; listEvents( fineTuneId: string, - query: FineTuneListEventsParams.ListEventsRequestStreaming, + query: FineTuneListEventsParamsStreaming, options?: Core.RequestOptions, ): Promise>>; + listEvents( + fineTuneId: string, + query?: FineTuneListEventsParams, + options?: Core.RequestOptions, + ): Promise>>; listEvents( fineTuneId: string, query?: FineTuneListEventsParams | undefined, @@ -266,36 +271,48 @@ export interface FineTuneCreateParams { validation_file?: string | null; } -export type FineTuneListEventsParams = - | FineTuneListEventsParams.ListEventsRequestNonStreaming - | FineTuneListEventsParams.ListEventsRequestStreaming; +export interface FineTuneListEventsParams { + /** + * Whether to stream events for the fine-tune job. If set to true, events will be + * sent as data-only + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) + * as they become available. The stream will terminate with a `data: [DONE]` + * message when the job is finished (succeeded, cancelled, or failed). + * + * If set to false, only events generated so far will be returned. + */ + stream?: boolean; +} export namespace FineTuneListEventsParams { - export interface ListEventsRequestNonStreaming { - /** - * Whether to stream events for the fine-tune job. If set to true, events will be - * sent as data-only - * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) - * as they become available. The stream will terminate with a `data: [DONE]` - * message when the job is finished (succeeded, cancelled, or failed). - * - * If set to false, only events generated so far will be returned. - */ - stream?: false; - } + export type FineTuneListEventsParamsNonStreaming = API.FineTuneListEventsParamsNonStreaming; + export type FineTuneListEventsParamsStreaming = API.FineTuneListEventsParamsStreaming; +} - export interface ListEventsRequestStreaming { - /** - * Whether to stream events for the fine-tune job. If set to true, events will be - * sent as data-only - * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) - * as they become available. The stream will terminate with a `data: [DONE]` - * message when the job is finished (succeeded, cancelled, or failed). - * - * If set to false, only events generated so far will be returned. - */ - stream: true; - } +export interface FineTuneListEventsParamsNonStreaming extends FineTuneListEventsParams { + /** + * Whether to stream events for the fine-tune job. If set to true, events will be + * sent as data-only + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) + * as they become available. The stream will terminate with a `data: [DONE]` + * message when the job is finished (succeeded, cancelled, or failed). + * + * If set to false, only events generated so far will be returned. + */ + stream?: false; +} + +export interface FineTuneListEventsParamsStreaming extends FineTuneListEventsParams { + /** + * Whether to stream events for the fine-tune job. If set to true, events will be + * sent as data-only + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) + * as they become available. The stream will terminate with a `data: [DONE]` + * message when the job is finished (succeeded, cancelled, or failed). + * + * If set to false, only events generated so far will be returned. + */ + stream: true; } export namespace FineTunes { @@ -305,4 +322,6 @@ export namespace FineTunes { export type FineTunesPage = _FineTunesPage; export import FineTuneCreateParams = API.FineTuneCreateParams; export import FineTuneListEventsParams = API.FineTuneListEventsParams; + export import FineTuneListEventsParamsNonStreaming = API.FineTuneListEventsParamsNonStreaming; + export import FineTuneListEventsParamsStreaming = API.FineTuneListEventsParamsStreaming; } diff --git a/src/resources/images.ts b/src/resources/images.ts index 3ced23fe3..915a32ff4 100644 --- a/src/resources/images.ts +++ b/src/resources/images.ts @@ -2,7 +2,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; -import * as API from './'; +import * as API from './index'; import { type Uploadable, multipartFormRequestOptions } from 'openai/core'; export class Images extends APIResource { diff --git a/src/resources/index.ts b/src/resources/index.ts index 6f986db8c..96e16abc3 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -2,7 +2,14 @@ export { Audio } from './audio/audio'; export { Chat } from './chat/chat'; -export { Completion, CompletionChoice, CompletionCreateParams, Completions } from './completions'; +export { + Completion, + CompletionChoice, + CompletionCreateParams, + CompletionCreateParamsNonStreaming, + CompletionCreateParamsStreaming, + Completions, +} from './completions'; export { Edit, EditCreateParams, Edits } from './edits'; export { Embedding, EmbeddingCreateParams, Embeddings } from './embeddings'; export { FileContent, FileDeleted, FileObject, FileCreateParams, FileObjectsPage, Files } from './files'; @@ -12,6 +19,8 @@ export { FineTuneEventsListResponse, FineTuneCreateParams, FineTuneListEventsParams, + FineTuneListEventsParamsNonStreaming, + FineTuneListEventsParamsStreaming, FineTunesPage, FineTunes, } from './fine-tunes'; diff --git a/src/resources/models.ts b/src/resources/models.ts index 2b6ef9ad9..1be9c4c7e 100644 --- a/src/resources/models.ts +++ b/src/resources/models.ts @@ -2,7 +2,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; -import * as API from './'; +import * as API from './index'; import { Page } from 'openai/pagination'; export class Models extends APIResource { diff --git a/src/resources/moderations.ts b/src/resources/moderations.ts index 3c94f56a4..b578500b1 100644 --- a/src/resources/moderations.ts +++ b/src/resources/moderations.ts @@ -2,7 +2,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; -import * as API from './'; +import * as API from './index'; export class Moderations extends APIResource { /** diff --git a/src/streaming.ts b/src/streaming.ts index 7137708b6..3455e74f3 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -1,4 +1,5 @@ import type { Response } from 'openai/_shims/fetch'; +import { ReadableStream } from 'openai/_shims/ReadableStream'; import { APIResponse, Headers, createResponseHeaders } from './core'; @@ -78,6 +79,38 @@ export class Stream implements AsyncIterable, APIResponse; + const encoder = new TextEncoder(); + + return new ReadableStream({ + async start() { + iter = self[Symbol.asyncIterator](); + }, + async pull(ctrl) { + try { + const { value, done } = await iter.next(); + if (done) return ctrl.close(); + + const str = + typeof value === 'string' ? value : ( + // Add a newline after JSON to make it easier to parse newline-separated JSON on the frontend. + JSON.stringify(value) + '\n' + ); + const bytes = encoder.encode(str); + + ctrl.enqueue(bytes); + } catch (err) { + ctrl.error(err); + } + }, + async cancel() { + await iter.return?.(); + }, + }); + } } class SSEDecoder { diff --git a/src/uploads.ts b/src/uploads.ts index 89b0226a2..642bc66a5 100644 --- a/src/uploads.ts +++ b/src/uploads.ts @@ -1,14 +1,15 @@ import { type RequestOptions } from './core'; import { type Readable } from 'openai/_shims/node-readable'; import { type BodyInit } from 'openai/_shims/fetch'; -import { FormData, File, type FilePropertyBag } from 'openai/_shims/formdata'; +import { FormData, File, type Blob, type FilePropertyBag } from 'openai/_shims/formdata'; import { getMultipartRequestOptions } from 'openai/_shims/getMultipartRequestOptions'; import { fileFromPath } from 'openai/_shims/fileFromPath'; import { type FsReadStream, isFsReadStream } from 'openai/_shims/node-readable'; export { fileFromPath }; -export type BlobPart = string | ArrayBuffer | ArrayBufferView | BlobLike | Uint8Array | DataView; +type BlobLikePart = string | ArrayBuffer | ArrayBufferView | BlobLike | Uint8Array | DataView; +export type BlobPart = string | ArrayBuffer | ArrayBufferView | Blob | Uint8Array | DataView; /** * Typically, this is a native "File" class. @@ -84,11 +85,11 @@ export const isUploadable = (value: any): value is Uploadable => { return isFileLike(value) || isResponseLike(value) || isFsReadStream(value); }; -export type ToFileInput = Uploadable | Exclude | AsyncIterable; +export type ToFileInput = Uploadable | Exclude | AsyncIterable; /** * Helper for creating a {@link File} to pass to an SDK upload method from a variety of different data formats - * @param value the raw content of the file. Can be an {@link Uploadable}, {@link BlobPart}, or {@link AsyncIterable} of {@link BlobPart}s + * @param value the raw content of the file. Can be an {@link Uploadable}, {@link BlobLikePart}, or {@link AsyncIterable} of {@link BlobLikePart}s * @param {string=} name the name of the file. If omitted, toFile will try to determine a file name from bits if possible * @param {Object=} options additional properties * @param {string=} options.type the MIME type of the content @@ -231,10 +232,10 @@ const addFormValue = async (form: FormData, key: string, value: unknown): Promis // TODO: make nested formats configurable if (typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean') { - form.append(key, value); + form.append(key, String(value)); } else if (isUploadable(value)) { const file = await toFile(value); - form.append(key, file); + form.append(key, file as File); } else if (Array.isArray(value)) { await Promise.all(value.map((entry) => addFormValue(form, key + '[]', entry))); } else if (typeof value === 'object') { diff --git a/src/version.ts b/src/version.ts index 107b8d790..ea4ccfb81 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.0.0-beta.7'; +export const VERSION = '4.0.0-beta.8'; diff --git a/tsconfig.build.json b/tsconfig.build.json index c3660e68f..890200d2b 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -1,7 +1,7 @@ { "extends": "./tsconfig.json", "include": ["dist/src"], - "exclude": [], + "exclude": ["dist/src/_shims/*.deno.ts"], "compilerOptions": { "rootDir": "./dist/src", "paths": { diff --git a/tsconfig.deno.json b/tsconfig.deno.json new file mode 100644 index 000000000..1fa5cf8ae --- /dev/null +++ b/tsconfig.deno.json @@ -0,0 +1,21 @@ +{ + "extends": "./tsconfig.json", + "include": ["deno"], + "exclude": [], + "compilerOptions": { + "rootDir": "./deno", + "lib": ["es2020", "DOM"], + "paths": { + "openai/_shims/*": ["deno/_shims/*"], + "openai": ["deno/index.ts"], + "openai/*": ["deno/*"], + "digest-fetch": ["./typings/digest-fetch"] + }, + "noEmit": true, + "declaration": true, + "declarationMap": true, + "outDir": "deno", + "pretty": true, + "sourceMap": true + } +} diff --git a/tsconfig.json b/tsconfig.json index 82ea3f3e3..89f263f29 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,6 @@ { "include": ["src", "tests", "examples"], + "exclude": ["src/_shims/*.deno.ts"], "compilerOptions": { "target": "es2019", "lib": ["es2020"], diff --git a/yarn.lock b/yarn.lock index 7f41aca75..9c92e7bac 100644 --- a/yarn.lock +++ b/yarn.lock @@ -720,6 +720,16 @@ dependencies: "@sinonjs/commons" "^3.0.0" +"@ts-morph/common@~0.20.0": + version "0.20.0" + resolved "https://registry.yarnpkg.com/@ts-morph/common/-/common-0.20.0.tgz#3f161996b085ba4519731e4d24c35f6cba5b80af" + integrity sha512-7uKjByfbPpwuzkstL3L5MQyuXPSKdoNG93Fmi2JoDcTf3pEP731JdRFAduRVkOs8oqxPsXKA+ScrWkdQ8t/I+Q== + dependencies: + fast-glob "^3.2.12" + minimatch "^7.4.3" + mkdirp "^2.1.6" + path-browserify "^1.0.1" + "@tsconfig/node10@^1.0.7": version "1.0.8" resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.8.tgz#c1e4e80d6f964fbecb3359c43bd48b40f7cadad9" @@ -1218,6 +1228,13 @@ brace-expansion@^1.1.7: balanced-match "^1.0.0" concat-map "0.0.1" +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + braces@^3.0.2, braces@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" @@ -1393,6 +1410,11 @@ co@^4.6.0: resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= +code-block-writer@^12.0.0: + version "12.0.0" + resolved "https://registry.yarnpkg.com/code-block-writer/-/code-block-writer-12.0.0.tgz#4dd58946eb4234105aff7f0035977b2afdc2a770" + integrity sha512-q4dMFMlXtKR3XNBHyMHt/3pwYNA69EDk00lloMOaaUMKPUXBw6lpXtbu3MMVG6/uOihGnRDOlkyqsONEUj60+w== + collapse-white-space@1.0.6, collapse-white-space@^1.0.2: version "1.0.6" resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.6.tgz#e63629c0016665792060dbbeb79c42239d2c5287" @@ -2962,11 +2984,23 @@ minimatch@^3.0.4, minimatch@^3.1.2: dependencies: brace-expansion "^1.1.7" +minimatch@^7.4.3: + version "7.4.6" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-7.4.6.tgz#845d6f254d8f4a5e4fd6baf44d5f10c8448365fb" + integrity sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw== + dependencies: + brace-expansion "^2.0.1" + minimist@1.2.6, minimist@^1.2.0, minimist@^1.2.6: version "1.2.6" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== +mkdirp@^2.1.6: + version "2.1.6" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-2.1.6.tgz#964fbcb12b2d8c5d6fbc62a963ac95a273e2cc19" + integrity sha512-+hEnITedc8LAtIP9u3HJDFIdcLV2vXP33sqLLIzkv1Db1zO/1OxbvYf0Y1OC/S/Qo5dxHXepofhmxL02PsKe+A== + ms@2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" @@ -3142,6 +3176,11 @@ parse-srcset@ikatyang/parse-srcset#54eb9c1cb21db5c62b4d0e275d7249516df6f0ee: version "1.0.2" resolved "https://codeload.github.com/ikatyang/parse-srcset/tar.gz/54eb9c1cb21db5c62b4d0e275d7249516df6f0ee" +path-browserify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" + integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== + path-exists@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" @@ -3783,6 +3822,14 @@ ts-jest@^29.1.0: semver "7.x" yargs-parser "^21.0.1" +ts-morph@^19.0.0: + version "19.0.0" + resolved "https://registry.yarnpkg.com/ts-morph/-/ts-morph-19.0.0.tgz#43e95fb0156c3fe3c77c814ac26b7d0be2f93169" + integrity sha512-D6qcpiJdn46tUqV45vr5UGM2dnIEuTGNxVhg0sk5NX11orcouwj6i1bMqZIz2mZTZB1Hcgy7C3oEVhAT+f6mbQ== + dependencies: + "@ts-morph/common" "~0.20.0" + code-block-writer "^12.0.0" + ts-node@^10.5.0: version "10.7.0" resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.7.0.tgz#35d503d0fab3e2baa672a0e94f4b40653c2463f5" From 28276d64008aa97349d243114e380b954dbfd3d0 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Fri, 11 Aug 2023 09:24:50 -0700 Subject: [PATCH 024/725] v4.0.0-beta.9 --- .github/ISSUE_TEMPLATE/bug_report.yml | 4 +- .github/ISSUE_TEMPLATE/config.yml | 2 +- .github/ISSUE_TEMPLATE/feature_request.yml | 4 +- .github/workflows/test.yml | 21 +- README.md | 45 +- api.md | 1 + bin/cli | 21 + build | 4 + .../cloudflare-worker/package-lock.json | 8 +- .../src/uploadWebApiTestCases.ts | 13 + ecosystem-tests/deno/main_test.ts | 13 + .../node-ts-cjs-dom/package-lock.json | 29 +- ecosystem-tests/node-ts-cjs-dom/package.json | 2 +- ecosystem-tests/node-ts-cjs-dom/tests/test.ts | 15 +- ecosystem-tests/node-ts-cjs/package-lock.json | 29 +- ecosystem-tests/node-ts-cjs/package.json | 2 +- ecosystem-tests/node-ts-cjs/tests/test.ts | 15 +- .../node-ts-esm-dom/package-lock.json | 8 +- ecosystem-tests/node-ts-esm-dom/tests/test.ts | 15 +- ecosystem-tests/node-ts-esm/package-lock.json | 8 +- ecosystem-tests/node-ts-esm/tests/test.ts | 15 +- .../ts-browser-webpack/package-lock.json | 1428 +- .../ts-browser-webpack/src/index.ts | 13 + ecosystem-tests/vercel-edge/package-lock.json | 21300 +++------------- ecosystem-tests/vercel-edge/package.json | 4 +- .../src/pages/api/vercel-ai-streaming.ts | 14 +- examples/function-call-stream.ts | 185 + examples/function-call.ts | 142 + examples/raw-response.ts | 34 + jest.config.js | 2 +- package.json | 9 +- src/_shims/fetch.d.ts | 9 +- src/_shims/fetch.node.d.ts | 12 +- src/core.ts | 249 +- src/index.ts | 2 +- src/pagination.ts | 10 +- src/resources/audio/transcriptions.ts | 7 +- src/resources/audio/translations.ts | 7 +- src/resources/chat/chat.ts | 1 + src/resources/chat/completions.ts | 101 +- src/resources/chat/index.ts | 1 + src/resources/completions.ts | 18 +- src/resources/edits.ts | 2 +- src/resources/embeddings.ts | 2 +- src/resources/files.ts | 12 +- src/resources/fine-tunes.ts | 22 +- src/resources/images.ts | 18 +- src/resources/models.ts | 6 +- src/resources/moderations.ts | 2 +- src/streaming.ts | 15 +- src/version.ts | 2 +- .../audio/transcriptions.test.ts | 10 +- .../api-resources/audio/translations.test.ts | 10 +- tests/api-resources/chat/completions.test.ts | 10 +- tests/api-resources/completions.test.ts | 10 +- tests/api-resources/edits.test.ts | 10 +- tests/api-resources/embeddings.test.ts | 10 +- tests/api-resources/files.test.ts | 46 +- tests/api-resources/fine-tunes.test.ts | 46 +- tests/api-resources/images.test.ts | 28 +- tests/api-resources/models.test.ts | 28 +- tests/api-resources/moderations.test.ts | 10 +- yarn.lock | 457 +- 63 files changed, 5929 insertions(+), 18649 deletions(-) create mode 100755 bin/cli create mode 100755 examples/function-call-stream.ts create mode 100755 examples/function-call.ts create mode 100644 examples/raw-response.ts diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 5aaecc4ea..72fedbf5a 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,6 +1,6 @@ name: Bug report description: Create a report to help us improve -labels: ["bug"] +labels: ['bug'] body: - type: markdown attributes: @@ -53,4 +53,4 @@ body: label: Library version placeholder: openai v3.0.1 validations: - required: true \ No newline at end of file + required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 9b58e06f0..6f6c3bfdb 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -4,4 +4,4 @@ contact_links: url: https://help.openai.com/ about: | Please only file issues here that you believe represent actual bugs or feature requests for the OpenAI Node library. - If you're having general trouble with the OpenAI API, please visit our help center to get support. \ No newline at end of file + If you're having general trouble with the OpenAI API, please visit our help center to get support. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index c61321f7b..1be579964 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,6 +1,6 @@ name: Feature request description: Suggest an idea for this library -labels: ["feature-request"] +labels: ['feature-request'] body: - type: markdown attributes: @@ -17,4 +17,4 @@ body: id: context attributes: label: Additional context - description: Add any other context about the feature request here. \ No newline at end of file + description: Add any other context about the feature request here. diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8b1851595..ceaf21b5d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,24 +2,23 @@ name: Node.js CI on: push: - branches: [ master ] + branches: [master] pull_request: - branches: [ master ] + branches: [master] jobs: build: - runs-on: ubuntu-latest strategy: matrix: node-version: [16.x, 18.x] steps: - - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - cache: 'npm' - - run: npm ci - - run: npm run build + - uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + cache: 'npm' + - run: npm ci + - run: npm run build diff --git a/README.md b/README.md index 10057323d..3f939d5c2 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,9 @@ [![NPM version](https://img.shields.io/npm/v/openai.svg)](https://npmjs.org/package/openai) -The OpenAI Node library provides convenient access to the OpenAI REST API from applications written in server-side JavaScript. -It includes TypeScript definitions for all request params and response fields. +This library provides convenient access to the OpenAI REST API from TypeScript or JavaScript. -> ⚠️ **Important note: this library is meant for server-side usage only, as using it in client-side browser code will expose your secret API key. [See here](https://platform.openai.com/docs/api-reference/authentication) for more details.** - -## Documentation +It is generated from our [OpenAPI specification](https://github.com/openai/openai-openapi) with [Stainless](https://stainlessapi.com/). To learn how to use the OpenAI API, check out our [API Reference](https://platform.openai.com/docs/api-reference) and [Documentation](https://platform.openai.com/docs). @@ -21,6 +18,9 @@ yarn add openai ## Usage +> [!IMPORTANT] +> Previous versions of this SDK used a `Configuration` class. See the [v3 to v4 migration guide](https://github.com/openai/openai-node/discussions/217). + ```js import OpenAI from 'openai'; @@ -66,10 +66,9 @@ main(); If you need to cancel a stream, you can `break` from the loop or call `stream.controller.abort()`. -### Usage with TypeScript +### Request & Response types -Importing, instantiating, and interacting with the library are the same as above. -If you like, you may reference our types directly: +This library includes TypeScript definitions for all request params and response fields. You may import and use them like so: ```ts import OpenAI from 'openai'; @@ -207,6 +206,30 @@ On timeout, an `APIConnectionTimeoutError` is thrown. Note that requests which time out will be [retried twice by default](#retries). +## Advanced Usage + +### Accessing raw Response data (e.g., headers) + +The "raw" `Response` returned by `fetch()` can be accessed through the `.asResponse()` method on the `APIPromise` type that all methods return. + +You can also use the `.withResponse()` method to get the raw `Response` along with the parsed data. + +```ts +const openai = new OpenAI(); + +const response = await openai.chat.completions + .create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-3.5-turbo' }) + .asResponse(); +console.log(response.headers.get('X-My-Header')); +console.log(response.statusText); // access the underlying Response object + +const { data: completions, response: raw } = await openai.chat.completions + .create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-3.5-turbo' }) + .withResponse(); +console.log(raw.headers.get('X-My-Header')); +console.log(completions.choices); +``` + ## Configuring an HTTP(S) Agent (e.g., for proxies) By default, this library uses a stable agent for all http/https requests to reuse TCP connections, eliminating many TCP & TLS handshakes and shaving around 100ms off most requests. @@ -247,7 +270,9 @@ We are keen for your feedback; please open an [issue](https://www.github.com/ope The following runtimes are supported: - Node.js 16 LTS or later ([non-EOL](https://endoflife.date/nodejs)) versions. -- Deno v1.28.0 or higher (experimental). - Use `import OpenAI from "npm:openai"`. +- Deno v1.28.0 or higher, using `import OpenAI from "npm:openai"`. + Deno Deploy is not yet supported. +- Cloudflare Workers. +- Vercel Edge Runtime. If you are interested in other runtime environments, please open or upvote an issue on GitHub. diff --git a/api.md b/api.md index 17ce8f880..00bddf98f 100644 --- a/api.md +++ b/api.md @@ -17,6 +17,7 @@ Types: - ChatCompletion - ChatCompletionChunk +- ChatCompletionMessage - CreateChatCompletionRequestMessage Methods: diff --git a/bin/cli b/bin/cli new file mode 100755 index 000000000..c2d110f19 --- /dev/null +++ b/bin/cli @@ -0,0 +1,21 @@ +#!/usr/bin/env bash +set -eou pipefail + +if [ $# -eq 0 ]; then + echo "Usage: $0 " + echo + echo "Subcommands:" + echo " migrate Run migrations to update from openai v3 to v4" + echo + exit 1 +fi + +if [ "$1" = "migrate" ]; then + echo "This automatic code migration is provided by grit.io" + echo "Visit https://app.grit.io/studio?preset=openai_v4 for more details." + shift + npx -y @getgrit/launcher apply openai_v4 "$@" +else + echo "Unknown subcommand $1; Expected 'migrate'" >&2 + exit 1 +fi diff --git a/build b/build index b12ec438f..85312ce8e 100755 --- a/build +++ b/build @@ -15,6 +15,10 @@ cp -rp src README.md dist for file in LICENSE CHANGELOG.md; do if [ -e "${file}" ]; then cp "${file}" dist; fi done +if [ -e "bin/cli" ]; then + mkdir dist/bin + cp -p "bin/cli" dist/bin/; +fi # this converts the export map paths for the dist directory # and does a few other minor things node scripts/make-dist-package-json.cjs > dist/package.json diff --git a/ecosystem-tests/cloudflare-worker/package-lock.json b/ecosystem-tests/cloudflare-worker/package-lock.json index 369ba2c08..19aa462b6 100644 --- a/ecosystem-tests/cloudflare-worker/package-lock.json +++ b/ecosystem-tests/cloudflare-worker/package-lock.json @@ -16,7 +16,7 @@ "jest": "^29.5.0", "start-server-and-test": "^2.0.0", "ts-jest": "^29.1.0", - "typescript": "^5.0.4", + "typescript": "^5.1.6", "wrangler": "^3.0.0" } }, @@ -5139,9 +5139,9 @@ } }, "node_modules/typescript": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", - "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", + "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", "dev": true, "bin": { "tsc": "bin/tsc", diff --git a/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts b/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts index 236a343c0..f915a6794 100644 --- a/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts +++ b/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts @@ -45,6 +45,19 @@ export function uploadWebApiTestCases({ await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); } + it(`streaming works`, async function () { + const stream = await client.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + stream: true, + }); + const chunks = []; + for await (const part of stream) { + chunks.push(part); + } + expectSimilar(chunks.map((c) => c.choices[0]?.delta.content || '').join(''), 'This is a test', 10); + }); + it('handles File', async () => { const file = await fetch(url) .then((x) => x.arrayBuffer()) diff --git a/ecosystem-tests/deno/main_test.ts b/ecosystem-tests/deno/main_test.ts index 07ae77505..4bed6a076 100644 --- a/ecosystem-tests/deno/main_test.ts +++ b/ecosystem-tests/deno/main_test.ts @@ -36,6 +36,19 @@ function assertSimilar(received: string, expected: string, maxDistance: number) throw new AssertionError(message); } +Deno.test(async function streamingWorks() { + const stream = await client.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + stream: true, + }); + const chunks = []; + for await (const part of stream) { + chunks.push(part); + } + assertSimilar(chunks.map((c) => c.choices[0]?.delta.content || '').join(''), 'This is a test', 10); +}); + Deno.test(async function handlesFile() { const file = await fetch(url) .then((x) => x.arrayBuffer()) diff --git a/ecosystem-tests/node-ts-cjs-dom/package-lock.json b/ecosystem-tests/node-ts-cjs-dom/package-lock.json index b4c6ad148..348df089b 100644 --- a/ecosystem-tests/node-ts-cjs-dom/package-lock.json +++ b/ecosystem-tests/node-ts-cjs-dom/package-lock.json @@ -10,7 +10,7 @@ "dependencies": { "formdata-node": "^4.4.1", "node-fetch": "^2.6.1", - "tsconfig-paths": "^3.12.0" + "tsconfig-paths": "^4.0.0" }, "devDependencies": { "@types/node": "^17.0.9", @@ -1048,11 +1048,6 @@ "@types/istanbul-lib-report": "*" } }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" - }, "node_modules/@types/node": { "version": "17.0.45", "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz", @@ -2698,7 +2693,6 @@ "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, "bin": { "json5": "lib/cli.js" }, @@ -3524,25 +3518,16 @@ "dev": true }, "node_modules/tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", + "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", + "json5": "^2.2.2", "minimist": "^1.2.6", "strip-bom": "^3.0.0" - } - }, - "node_modules/tsconfig-paths/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dependencies": { - "minimist": "^1.2.0" }, - "bin": { - "json5": "lib/cli.js" + "engines": { + "node": ">=6" } }, "node_modules/tsconfig-paths/node_modules/strip-bom": { diff --git a/ecosystem-tests/node-ts-cjs-dom/package.json b/ecosystem-tests/node-ts-cjs-dom/package.json index 631c784a4..125ab29ba 100644 --- a/ecosystem-tests/node-ts-cjs-dom/package.json +++ b/ecosystem-tests/node-ts-cjs-dom/package.json @@ -10,7 +10,7 @@ "dependencies": { "formdata-node": "^4.4.1", "node-fetch": "^2.6.1", - "tsconfig-paths": "^3.12.0" + "tsconfig-paths": "^4.0.0" }, "devDependencies": { "@types/node": "^17.0.9", diff --git a/ecosystem-tests/node-ts-cjs-dom/tests/test.ts b/ecosystem-tests/node-ts-cjs-dom/tests/test.ts index 6e90d5416..7afbaa545 100644 --- a/ecosystem-tests/node-ts-cjs-dom/tests/test.ts +++ b/ecosystem-tests/node-ts-cjs-dom/tests/test.ts @@ -3,7 +3,7 @@ import { TranscriptionCreateParams } from 'openai/resources/audio/transcriptions import fetch from 'node-fetch'; import { File as FormDataFile, Blob as FormDataBlob } from 'formdata-node'; import * as fs from 'fs'; -import { distance } from 'fastest-levenshtein' +import { distance } from 'fastest-levenshtein'; const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; const filename = 'sample-1.mp3'; @@ -52,7 +52,20 @@ expect.extend({ message, pass: false, }; + }, +}); + +it(`streaming works`, async function () { + const stream = await client.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + stream: true, + }); + const chunks = []; + for await (const part of stream) { + chunks.push(part); } + expect(chunks.map((c) => c.choices[0]?.delta.content || '').join('')).toBeSimilarTo('This is a test', 10); }); it('handles formdata-node File', async function () { diff --git a/ecosystem-tests/node-ts-cjs/package-lock.json b/ecosystem-tests/node-ts-cjs/package-lock.json index 8525ad8ce..e0976e0ec 100644 --- a/ecosystem-tests/node-ts-cjs/package-lock.json +++ b/ecosystem-tests/node-ts-cjs/package-lock.json @@ -10,7 +10,7 @@ "dependencies": { "formdata-node": "^4.4.1", "node-fetch": "^2.6.1", - "tsconfig-paths": "^3.12.0" + "tsconfig-paths": "^4.0.0" }, "devDependencies": { "@types/node": "^20.4.2", @@ -1049,11 +1049,6 @@ "@types/istanbul-lib-report": "*" } }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" - }, "node_modules/@types/node": { "version": "20.4.2", "resolved": "https://registry.npmjs.org/@types/node/-/node-20.4.2.tgz", @@ -2708,7 +2703,6 @@ "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, "bin": { "json5": "lib/cli.js" }, @@ -3534,25 +3528,16 @@ "dev": true }, "node_modules/tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", + "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", + "json5": "^2.2.2", "minimist": "^1.2.6", "strip-bom": "^3.0.0" - } - }, - "node_modules/tsconfig-paths/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dependencies": { - "minimist": "^1.2.0" }, - "bin": { - "json5": "lib/cli.js" + "engines": { + "node": ">=6" } }, "node_modules/tsconfig-paths/node_modules/strip-bom": { diff --git a/ecosystem-tests/node-ts-cjs/package.json b/ecosystem-tests/node-ts-cjs/package.json index 26a00dbc6..2cfa0dd9f 100644 --- a/ecosystem-tests/node-ts-cjs/package.json +++ b/ecosystem-tests/node-ts-cjs/package.json @@ -10,7 +10,7 @@ "dependencies": { "formdata-node": "^4.4.1", "node-fetch": "^2.6.1", - "tsconfig-paths": "^3.12.0" + "tsconfig-paths": "^4.0.0" }, "devDependencies": { "@types/node": "^20.4.2", diff --git a/ecosystem-tests/node-ts-cjs/tests/test.ts b/ecosystem-tests/node-ts-cjs/tests/test.ts index 52e7566ba..ea6d0a76b 100644 --- a/ecosystem-tests/node-ts-cjs/tests/test.ts +++ b/ecosystem-tests/node-ts-cjs/tests/test.ts @@ -3,7 +3,7 @@ import { TranscriptionCreateParams } from 'openai/resources/audio/transcriptions import fetch from 'node-fetch'; import { File as FormDataFile, Blob as FormDataBlob } from 'formdata-node'; import * as fs from 'fs'; -import { distance } from 'fastest-levenshtein' +import { distance } from 'fastest-levenshtein'; const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; const filename = 'sample-1.mp3'; @@ -52,7 +52,20 @@ expect.extend({ message, pass: false, }; + }, +}); + +it(`streaming works`, async function () { + const stream = await client.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + stream: true, + }); + const chunks = []; + for await (const part of stream) { + chunks.push(part); } + expect(chunks.map((c) => c.choices[0]?.delta.content || '').join('')).toBeSimilarTo('This is a test', 10); }); it('handles formdata-node File', async function () { diff --git a/ecosystem-tests/node-ts-esm-dom/package-lock.json b/ecosystem-tests/node-ts-esm-dom/package-lock.json index 37204b81f..f4fea83ef 100644 --- a/ecosystem-tests/node-ts-esm-dom/package-lock.json +++ b/ecosystem-tests/node-ts-esm-dom/package-lock.json @@ -17,7 +17,7 @@ "jest": "^29.5.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", - "typescript": "^5.1.3" + "typescript": "^5.1.6" } }, "node_modules/@ampproject/remapping": { @@ -3632,9 +3632,9 @@ } }, "node_modules/typescript": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", - "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", + "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", "dev": true, "bin": { "tsc": "bin/tsc", diff --git a/ecosystem-tests/node-ts-esm-dom/tests/test.ts b/ecosystem-tests/node-ts-esm-dom/tests/test.ts index 5027c508f..42890a58c 100644 --- a/ecosystem-tests/node-ts-esm-dom/tests/test.ts +++ b/ecosystem-tests/node-ts-esm-dom/tests/test.ts @@ -3,7 +3,7 @@ import { TranscriptionCreateParams } from 'openai/resources/audio/transcriptions import fetch from 'node-fetch'; import { File as FormDataFile, Blob as FormDataBlob } from 'formdata-node'; import * as fs from 'fs'; -import { distance } from 'fastest-levenshtein' +import { distance } from 'fastest-levenshtein'; const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; const filename = 'sample-1.mp3'; @@ -52,7 +52,20 @@ expect.extend({ message, pass: false, }; + }, +}); + +it(`streaming works`, async function () { + const stream = await client.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + stream: true, + }); + const chunks = []; + for await (const part of stream) { + chunks.push(part); } + expect(chunks.map((c) => c.choices[0]?.delta.content || '').join('')).toBeSimilarTo('This is a test', 10); }); it('handles formdata-node File', async function () { diff --git a/ecosystem-tests/node-ts-esm/package-lock.json b/ecosystem-tests/node-ts-esm/package-lock.json index 37204b81f..f4fea83ef 100644 --- a/ecosystem-tests/node-ts-esm/package-lock.json +++ b/ecosystem-tests/node-ts-esm/package-lock.json @@ -17,7 +17,7 @@ "jest": "^29.5.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", - "typescript": "^5.1.3" + "typescript": "^5.1.6" } }, "node_modules/@ampproject/remapping": { @@ -3632,9 +3632,9 @@ } }, "node_modules/typescript": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", - "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", + "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", "dev": true, "bin": { "tsc": "bin/tsc", diff --git a/ecosystem-tests/node-ts-esm/tests/test.ts b/ecosystem-tests/node-ts-esm/tests/test.ts index 52e7566ba..ea6d0a76b 100644 --- a/ecosystem-tests/node-ts-esm/tests/test.ts +++ b/ecosystem-tests/node-ts-esm/tests/test.ts @@ -3,7 +3,7 @@ import { TranscriptionCreateParams } from 'openai/resources/audio/transcriptions import fetch from 'node-fetch'; import { File as FormDataFile, Blob as FormDataBlob } from 'formdata-node'; import * as fs from 'fs'; -import { distance } from 'fastest-levenshtein' +import { distance } from 'fastest-levenshtein'; const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; const filename = 'sample-1.mp3'; @@ -52,7 +52,20 @@ expect.extend({ message, pass: false, }; + }, +}); + +it(`streaming works`, async function () { + const stream = await client.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + stream: true, + }); + const chunks = []; + for await (const part of stream) { + chunks.push(part); } + expect(chunks.map((c) => c.choices[0]?.delta.content || '').join('')).toBeSimilarTo('This is a test', 10); }); it('handles formdata-node File', async function () { diff --git a/ecosystem-tests/ts-browser-webpack/package-lock.json b/ecosystem-tests/ts-browser-webpack/package-lock.json index 5c1830d0e..553a3a4b7 100644 --- a/ecosystem-tests/ts-browser-webpack/package-lock.json +++ b/ecosystem-tests/ts-browser-webpack/package-lock.json @@ -11,10 +11,14 @@ "babel-core": "^6.26.3", "babel-loader": "^9.1.2", "babel-preset-es2015": "^6.24.1", + "fastest-levenshtein": "^1.0.16", "force": "^0.0.3", "html-webpack-plugin": "^5.5.3", + "puppeteer": "^20.8.3", + "start-server-and-test": "^2.0.0", "ts-loader": "^9.4.3", - "typescript": "^5.0.4", + "ts-node": "^10.9.1", + "typescript": "^5.1.6", "webpack": "^5.87.0", "webpack-cli": "^5.0.2", "webpack-dev-server": "^4.15.1" @@ -39,7 +43,6 @@ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", "dev": true, - "peer": true, "dependencies": { "@babel/highlight": "^7.22.5" }, @@ -235,7 +238,6 @@ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", "dev": true, - "peer": true, "engines": { "node": ">=6.9.0" } @@ -270,7 +272,6 @@ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", "dev": true, - "peer": true, "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", "chalk": "^2.0.0", @@ -345,6 +346,28 @@ "node": ">=6.9.0" } }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, "node_modules/@discoveryjs/json-ext": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", @@ -354,6 +377,21 @@ "node": ">=10.0.0" } }, + "node_modules/@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", + "dev": true + }, + "node_modules/@hapi/topo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, "node_modules/@jridgewell/gen-mapping": { "version": "0.3.3", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", @@ -424,6 +462,86 @@ "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", "dev": true }, + "node_modules/@puppeteer/browsers": { + "version": "1.4.6", + "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-1.4.6.tgz", + "integrity": "sha512-x4BEjr2SjOPowNeiguzjozQbsc6h437ovD/wu+JpaenxVLm3jkgzHY2xOslMTp50HoTvQreMjiexiGQw1sqZlQ==", + "dev": true, + "dependencies": { + "debug": "4.3.4", + "extract-zip": "2.0.1", + "progress": "2.0.3", + "proxy-agent": "6.3.0", + "tar-fs": "3.0.4", + "unbzip2-stream": "1.4.3", + "yargs": "17.7.1" + }, + "bin": { + "browsers": "lib/cjs/main-cli.js" + }, + "engines": { + "node": ">=16.3.0" + }, + "peerDependencies": { + "typescript": ">= 4.7.4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@sideway/address": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz", + "integrity": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@sideway/formula": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", + "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==", + "dev": true + }, + "node_modules/@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", + "dev": true + }, + "node_modules/@tootallnate/quickjs-emscripten": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz", + "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==", + "dev": true + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true + }, "node_modules/@types/body-parser": { "version": "1.19.2", "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", @@ -617,6 +735,16 @@ "@types/node": "*" } }, + "node_modules/@types/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", + "dev": true, + "optional": true, + "dependencies": { + "@types/node": "*" + } + }, "node_modules/@webassemblyjs/ast": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", @@ -853,6 +981,27 @@ "acorn": "^8" } }, + "node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "dev": true, + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, "node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", @@ -943,7 +1092,6 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, - "peer": true, "dependencies": { "color-convert": "^1.9.0" }, @@ -964,6 +1112,18 @@ "node": ">= 8" } }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, "node_modules/array-flatten": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", @@ -988,6 +1148,18 @@ "node": ">=0.8" } }, + "node_modules/ast-types": { + "version": "0.13.4", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", + "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", + "dev": true, + "dependencies": { + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", @@ -1009,6 +1181,36 @@ "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==", "dev": true }, + "node_modules/axios": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", + "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", + "dev": true, + "dependencies": { + "follow-redirects": "^1.14.9", + "form-data": "^4.0.0" + } + }, + "node_modules/axios/node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/b4a": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.4.tgz", + "integrity": "sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==", + "dev": true + }, "node_modules/babel-code-frame": { "version": "6.26.0", "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", @@ -1695,6 +1897,35 @@ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/basic-ftp": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.3.tgz", + "integrity": "sha512-QHX8HLlncOLpy54mh+k/sWIFd0ThmRqwe9ZjELybGZK+tZ8rUb9VO0saKJUROTbE+KhzDUT7xziGpGrW8Kmd+g==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, "node_modules/batch": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", @@ -1719,6 +1950,12 @@ "node": ">=8" } }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, "node_modules/body-parser": { "version": "1.20.1", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", @@ -1854,6 +2091,39 @@ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "dev": true, + "engines": { + "node": "*" + } + }, "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", @@ -1882,6 +2152,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/camel-case": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", @@ -1923,7 +2202,6 @@ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, - "peer": true, "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -1933,6 +2211,15 @@ "node": ">=4" } }, + "node_modules/check-more-types": { + "version": "2.24.0", + "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", + "integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, "node_modules/chokidar": { "version": "3.5.3", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", @@ -1969,6 +2256,18 @@ "node": ">=6.0" } }, + "node_modules/chromium-bidi": { + "version": "0.4.16", + "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.4.16.tgz", + "integrity": "sha512-7ZbXdWERxRxSwo3txsBjjmc/NLxqb1Bk30mRb0BMS4YIaiV6zvKZqL/UAH+DdqcDYayDWk2n/y8klkBDODrPvA==", + "dev": true, + "dependencies": { + "mitt": "3.0.0" + }, + "peerDependencies": { + "devtools-protocol": "*" + } + }, "node_modules/clean-css": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.2.tgz", @@ -1990,6 +2289,20 @@ "node": ">=0.10.0" } }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/clone-deep": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", @@ -2009,7 +2322,6 @@ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, - "peer": true, "dependencies": { "color-name": "1.1.3" } @@ -2018,8 +2330,7 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true, - "peer": true + "dev": true }, "node_modules/colorette": { "version": "2.0.20", @@ -2182,6 +2493,39 @@ "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", "dev": true }, + "node_modules/cosmiconfig": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.2.0.tgz", + "integrity": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==", + "dev": true, + "dependencies": { + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + } + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "node_modules/cross-fetch": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.0.0.tgz", + "integrity": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==", + "dev": true, + "dependencies": { + "node-fetch": "^2.6.12" + } + }, "node_modules/cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", @@ -2236,6 +2580,15 @@ "node": ">=0.10" } }, + "node_modules/data-uri-to-buffer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-5.0.1.tgz", + "integrity": "sha512-a9l6T1qqDogvvnw0nKlfZzqsyikEBZBClF39V3TFoKhDtGBqHu2HkuomJc02j5zft8zrUaXEuoicLeW54RkzPg==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, "node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -2274,6 +2627,20 @@ "node": ">=8" } }, + "node_modules/degenerator": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-5.0.1.tgz", + "integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==", + "dev": true, + "dependencies": { + "ast-types": "^0.13.4", + "escodegen": "^2.1.0", + "esprima": "^4.0.1" + }, + "engines": { + "node": ">= 14" + } + }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -2320,6 +2687,21 @@ "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", "dev": true }, + "node_modules/devtools-protocol": { + "version": "0.0.1147663", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1147663.tgz", + "integrity": "sha512-hyWmRrexdhbZ1tcJUGpO95ivbRhWXz++F4Ko+n21AY5PNln2ovoJw+8ZMNDTtip+CNFQfrtLVh/w4009dXO/eQ==", + "dev": true + }, + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, "node_modules/dns-equal": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", @@ -2412,6 +2794,12 @@ "tslib": "^2.0.3" } }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true + }, "node_modules/ecc-jsbn": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", @@ -2434,6 +2822,12 @@ "integrity": "sha512-RkrZF//Ya+0aJq2NM3OdisNh5ZodZq1rdXOS96G8DdDgpDKqKE81yTbbQ3F/4CKm1JBPsGu1Lp/akkna2xO06Q==", "dev": true }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, "node_modules/encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", @@ -2443,6 +2837,15 @@ "node": ">= 0.8" } }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, "node_modules/enhanced-resolve": { "version": "5.15.0", "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", @@ -2477,6 +2880,15 @@ "node": ">=4" } }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, "node_modules/es-module-lexer": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.0.tgz", @@ -2507,32 +2919,28 @@ "node": ">=0.8.0" } }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", "dev": true, "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "dependencies": { - "estraverse": "^5.2.0" + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" }, "engines": { - "node": ">=4.0" + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" } }, - "node_modules/esrecurse/node_modules/estraverse": { + "node_modules/escodegen/node_modules/estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", @@ -2541,9 +2949,66 @@ "node": ">=4.0" } }, - "node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true, "engines": { @@ -2568,6 +3033,21 @@ "node": ">= 0.6" } }, + "node_modules/event-stream": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", + "integrity": "sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==", + "dev": true, + "dependencies": { + "duplexer": "~0.1.1", + "from": "~0", + "map-stream": "~0.1.0", + "pause-stream": "0.0.11", + "split": "0.3", + "stream-combiner": "~0.0.4", + "through": "~2.3.1" + } + }, "node_modules/eventemitter3": { "version": "4.0.7", "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", @@ -2690,6 +3170,41 @@ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", "dev": true }, + "node_modules/extract-zip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "get-stream": "^5.1.0", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + }, + "engines": { + "node": ">= 10.17.0" + }, + "optionalDependencies": { + "@types/yauzl": "^2.9.1" + } + }, + "node_modules/extract-zip/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/extsprintf": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", @@ -2705,6 +3220,12 @@ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, + "node_modules/fast-fifo": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.0.tgz", + "integrity": "sha512-IgfweLvEpwyA4WgiQe9Nx6VV2QkML2NkvZnk1oKnIzXgXdWxuhF7zw4DvLTPZJn6PIUneiAXPF24QmoEqHTjyw==", + "dev": true + }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", @@ -2745,6 +3266,15 @@ "node": ">=0.8.0" } }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "dev": true, + "dependencies": { + "pend": "~1.2.0" + } + }, "node_modules/fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -2895,6 +3425,26 @@ "node": ">= 0.6" } }, + "node_modules/from": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", + "integrity": "sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==", + "dev": true + }, + "node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, "node_modules/fs-monkey": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.4.tgz", @@ -2937,6 +3487,15 @@ "node": ">=6.9.0" } }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, "node_modules/get-intrinsic": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", @@ -2964,6 +3523,21 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/get-uri": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.1.tgz", + "integrity": "sha512-7ZqONUVqaabogsYNWlYj0t3YZaL6dhuEueZXGF+/YVmf6dHmaFg8/6psJKqhx9QykIDKzpGcy2cn4oV4YC7V/Q==", + "dev": true, + "dependencies": { + "basic-ftp": "^5.0.2", + "data-uri-to-buffer": "^5.0.1", + "debug": "^4.3.4", + "fs-extra": "^8.1.0" + }, + "engines": { + "node": ">= 14" + } + }, "node_modules/getpass": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", @@ -3094,7 +3668,6 @@ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, - "peer": true, "engines": { "node": ">=4" } @@ -3308,6 +3881,19 @@ "node": ">=8.0.0" } }, + "node_modules/http-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", + "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "dev": true, + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, "node_modules/http-proxy-middleware": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", @@ -3347,6 +3933,19 @@ "npm": ">=1.3.7" } }, + "node_modules/https-proxy-agent": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.1.tgz", + "integrity": "sha512-Eun8zV0kcYS1g19r78osiQLEFIRspRUDd9tIfBCTBPBeMieF/EsJNL8VI3xOIdYRDEkjQnqOYPsZ2DsWsVsFwQ==", + "dev": true, + "dependencies": { + "agent-base": "^7.0.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, "node_modules/human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", @@ -3368,6 +3967,51 @@ "node": ">=0.10.0" } }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/import-local": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", @@ -3421,6 +4065,12 @@ "loose-envify": "^1.0.0" } }, + "node_modules/ip": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", + "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", + "dev": true + }, "node_modules/ipaddr.js": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", @@ -3430,6 +4080,12 @@ "node": ">= 10" } }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, "node_modules/is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", @@ -3490,6 +4146,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", @@ -3630,12 +4295,37 @@ "url": "https://github.com/chalk/supports-color?sponsor=1" } }, + "node_modules/joi": { + "version": "17.9.2", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.2.tgz", + "integrity": "sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0", + "@hapi/topo": "^5.0.0", + "@sideway/address": "^4.1.3", + "@sideway/formula": "^3.0.1", + "@sideway/pinpoint": "^2.0.0" + } + }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "dev": true }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, "node_modules/jsbn": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", @@ -3692,6 +4382,15 @@ "node": ">=6" } }, + "node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, "node_modules/jsprim": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", @@ -3726,6 +4425,21 @@ "shell-quote": "^1.7.3" } }, + "node_modules/lazy-ass": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", + "integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==", + "dev": true, + "engines": { + "node": "> 0.8" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, "node_modules/loader-runner": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", @@ -3799,6 +4513,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/map-stream": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz", + "integrity": "sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==", + "dev": true + }, "node_modules/media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", @@ -3917,6 +4643,12 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/mitt": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.0.tgz", + "integrity": "sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ==", + "dev": true + }, "node_modules/mkdirp": { "version": "0.5.6", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", @@ -3929,6 +4661,12 @@ "mkdirp": "bin/cmd.js" } }, + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true + }, "node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", @@ -3963,6 +4701,15 @@ "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "dev": true }, + "node_modules/netmask": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", + "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, "node_modules/no-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", @@ -3973,6 +4720,26 @@ "tslib": "^2.0.3" } }, + "node_modules/node-fetch": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.12.tgz", + "integrity": "sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==", + "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, "node_modules/node-forge": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", @@ -4174,6 +4941,39 @@ "node": ">=6" } }, + "node_modules/pac-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.0.tgz", + "integrity": "sha512-t4tRAMx0uphnZrio0S0Jw9zg3oDbz1zVhQ/Vy18FjLfP1XOLNUEjaVxYCYRI6NS+BsMBXKIzV6cTLOkO9AtywA==", + "dev": true, + "dependencies": { + "@tootallnate/quickjs-emscripten": "^0.23.0", + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "get-uri": "^6.0.1", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.0", + "pac-resolver": "^7.0.0", + "socks-proxy-agent": "^8.0.1" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/pac-resolver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.0.tgz", + "integrity": "sha512-Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg==", + "dev": true, + "dependencies": { + "degenerator": "^5.0.0", + "ip": "^1.1.8", + "netmask": "^2.0.2" + }, + "engines": { + "node": ">= 14" + } + }, "node_modules/param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", @@ -4184,6 +4984,36 @@ "tslib": "^2.0.3" } }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", @@ -4242,11 +5072,35 @@ "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", "dev": true }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", - "dev": true + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/pause-stream": { + "version": "0.0.11", + "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", + "integrity": "sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==", + "dev": true, + "dependencies": { + "through": "~2.3" + } + }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "dev": true + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", + "dev": true }, "node_modules/picocolors": { "version": "1.0.0", @@ -4303,6 +5157,15 @@ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", "dev": true }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/proxy-addr": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", @@ -4325,12 +5188,71 @@ "node": ">= 0.10" } }, + "node_modules/proxy-agent": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.3.0.tgz", + "integrity": "sha512-0LdR757eTj/JfuU7TL2YCuAZnxWXu3tkJbg4Oq3geW/qFNT/32T0sp2HnZ9O0lMR4q3vwAt0+xCA8SR0WAD0og==", + "dev": true, + "dependencies": { + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.0", + "lru-cache": "^7.14.1", + "pac-proxy-agent": "^7.0.0", + "proxy-from-env": "^1.1.0", + "socks-proxy-agent": "^8.0.1" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/proxy-agent/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "dev": true + }, + "node_modules/ps-tree": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz", + "integrity": "sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==", + "dev": true, + "dependencies": { + "event-stream": "=3.3.4" + }, + "bin": { + "ps-tree": "bin/ps-tree.js" + }, + "engines": { + "node": ">= 0.10" + } + }, "node_modules/psl": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", "dev": true }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, "node_modules/punycode": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", @@ -4340,6 +5262,46 @@ "node": ">=6" } }, + "node_modules/puppeteer": { + "version": "20.9.0", + "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-20.9.0.tgz", + "integrity": "sha512-kAglT4VZ9fWEGg3oLc4/de+JcONuEJhlh3J6f5R1TLkrY/EHHIHxWXDOzXvaxQCtedmyVXBwg8M+P8YCO/wZjw==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "@puppeteer/browsers": "1.4.6", + "cosmiconfig": "8.2.0", + "puppeteer-core": "20.9.0" + }, + "engines": { + "node": ">=16.3.0" + } + }, + "node_modules/puppeteer-core": { + "version": "20.9.0", + "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-20.9.0.tgz", + "integrity": "sha512-H9fYZQzMTRrkboEfPmf7m3CLDN6JvbxXA3qTtS+dFt27tR+CsFHzPsT6pzp6lYL6bJbAPaR0HaPO6uSi+F94Pg==", + "dev": true, + "dependencies": { + "@puppeteer/browsers": "1.4.6", + "chromium-bidi": "0.4.16", + "cross-fetch": "4.0.0", + "debug": "4.3.4", + "devtools-protocol": "0.0.1147663", + "ws": "8.13.0" + }, + "engines": { + "node": ">=16.3.0" + }, + "peerDependencies": { + "typescript": ">= 4.7.4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, "node_modules/qs": { "version": "6.5.3", "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", @@ -4349,6 +5311,12 @@ "node": ">=0.6" } }, + "node_modules/queue-tick": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", + "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==", + "dev": true + }, "node_modules/randombytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", @@ -4556,6 +5524,15 @@ "node": ">= 6" } }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/require-from-string": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", @@ -4633,6 +5610,15 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "dev": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, "node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", @@ -4975,6 +5961,16 @@ "node": ">=0.10.0" } }, + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "dev": true, + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, "node_modules/sockjs": { "version": "0.3.24", "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", @@ -4995,6 +5991,40 @@ "uuid": "dist/bin/uuid" } }, + "node_modules/socks": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "dev": true, + "dependencies": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.13.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks-proxy-agent": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.1.tgz", + "integrity": "sha512-59EjPbbgg8U3x62hhKOFVAmySQUcfRQ4C7Q/D5sEHnZTQRrQlNKINks44DMR1gwXp0p4LaVIeccX2KHTTcHVqQ==", + "dev": true, + "dependencies": { + "agent-base": "^7.0.1", + "debug": "^4.3.4", + "socks": "^2.7.1" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/socks/node_modules/ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "dev": true + }, "node_modules/source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", @@ -5043,6 +6073,18 @@ "wbuf": "^1.7.3" } }, + "node_modules/split": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz", + "integrity": "sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==", + "dev": true, + "dependencies": { + "through": "2" + }, + "engines": { + "node": "*" + } + }, "node_modules/sshpk": { "version": "1.17.0", "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", @@ -5068,6 +6110,30 @@ "node": ">=0.10.0" } }, + "node_modules/start-server-and-test": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-2.0.0.tgz", + "integrity": "sha512-UqKLw0mJbfrsG1jcRLTUlvuRi9sjNuUiDOLI42r7R5fA9dsFoywAy9DoLXNYys9B886E4RCKb+qM1Gzu96h7DQ==", + "dev": true, + "dependencies": { + "arg": "^5.0.2", + "bluebird": "3.7.2", + "check-more-types": "2.24.0", + "debug": "4.3.4", + "execa": "5.1.1", + "lazy-ass": "1.6.0", + "ps-tree": "1.2.0", + "wait-on": "7.0.1" + }, + "bin": { + "server-test": "src/bin/start.js", + "start-server-and-test": "src/bin/start.js", + "start-test": "src/bin/start.js" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/statuses": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", @@ -5077,6 +6143,25 @@ "node": ">= 0.8" } }, + "node_modules/stream-combiner": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz", + "integrity": "sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==", + "dev": true, + "dependencies": { + "duplexer": "~0.1.1" + } + }, + "node_modules/streamx": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.15.0.tgz", + "integrity": "sha512-HcxY6ncGjjklGs1xsP1aR71INYcsXFJet5CU1CHqihQ2J5nOsbd4OjgjHO42w/4QNv9gZb3BueV+Vxok5pLEXg==", + "dev": true, + "dependencies": { + "fast-fifo": "^1.1.0", + "queue-tick": "^1.0.1" + } + }, "node_modules/string_decoder": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", @@ -5086,6 +6171,20 @@ "safe-buffer": "~5.2.0" } }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", @@ -5112,7 +6211,6 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, - "peer": true, "dependencies": { "has-flag": "^3.0.0" }, @@ -5141,6 +6239,28 @@ "node": ">=6" } }, + "node_modules/tar-fs": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.4.tgz", + "integrity": "sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w==", + "dev": true, + "dependencies": { + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^3.1.5" + } + }, + "node_modules/tar-stream": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.6.tgz", + "integrity": "sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==", + "dev": true, + "dependencies": { + "b4a": "^1.6.4", + "fast-fifo": "^1.2.0", + "streamx": "^2.15.0" + } + }, "node_modules/terser": { "version": "5.18.2", "resolved": "https://registry.npmjs.org/terser/-/terser-5.18.2.tgz", @@ -5236,6 +6356,12 @@ "source-map": "^0.6.0" } }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, "node_modules/thunky": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", @@ -5286,6 +6412,12 @@ "node": ">=0.8" } }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, "node_modules/trim-right": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", @@ -5417,6 +6549,55 @@ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, + "node_modules/ts-node": { + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", + "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "dev": true, + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/ts-node/node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, "node_modules/tslib": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", @@ -5455,9 +6636,9 @@ } }, "node_modules/typescript": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", - "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", + "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", "dev": true, "bin": { "tsc": "bin/tsc", @@ -5467,6 +6648,25 @@ "node": ">=14.17" } }, + "node_modules/unbzip2-stream": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "dev": true, + "dependencies": { + "buffer": "^5.2.1", + "through": "^2.3.8" + } + }, + "node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, "node_modules/unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", @@ -5546,6 +6746,12 @@ "uuid": "bin/uuid" } }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "dev": true + }, "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", @@ -5569,6 +6775,25 @@ "extsprintf": "^1.2.0" } }, + "node_modules/wait-on": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-7.0.1.tgz", + "integrity": "sha512-9AnJE9qTjRQOlTZIldAaf/da2eW0eSRSgcqq85mXQja/DW3MriHxkpODDSUEg+Gri/rKEcXUZHe+cevvYItaog==", + "dev": true, + "dependencies": { + "axios": "^0.27.2", + "joi": "^17.7.0", + "lodash": "^4.17.21", + "minimist": "^1.2.7", + "rxjs": "^7.8.0" + }, + "bin": { + "wait-on": "bin/wait-on" + }, + "engines": { + "node": ">=12.0.0" + } + }, "node_modules/watchpack": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", @@ -5591,6 +6816,12 @@ "minimalistic-assert": "^1.0.0" } }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, "node_modules/webpack": { "version": "5.88.0", "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.0.tgz", @@ -5837,6 +7068,16 @@ "node": ">=0.8.0" } }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -5858,6 +7099,56 @@ "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", "dev": true }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", @@ -5885,12 +7176,67 @@ } } }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, "node_modules/yallist": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true, "peer": true + }, + "node_modules/yargs": { + "version": "17.7.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.1.tgz", + "integrity": "sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "dev": true, + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true, + "engines": { + "node": ">=6" + } } } } diff --git a/ecosystem-tests/ts-browser-webpack/src/index.ts b/ecosystem-tests/ts-browser-webpack/src/index.ts index 5082ed5b1..415a27c82 100644 --- a/ecosystem-tests/ts-browser-webpack/src/index.ts +++ b/ecosystem-tests/ts-browser-webpack/src/index.ts @@ -104,6 +104,19 @@ async function typeTests() { await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); } +it(`streaming works`, async function () { + const stream = await client.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + stream: true, + }); + const chunks = []; + for await (const part of stream) { + chunks.push(part); + } + expect(chunks.map((c) => c.choices[0]?.delta.content || '').join('')).toBeSimilarTo('This is a test', 10); +}); + if (typeof File !== 'undefined') { it('handles builtinFile', async function () { const file = await fetch(url) diff --git a/ecosystem-tests/vercel-edge/package-lock.json b/ecosystem-tests/vercel-edge/package-lock.json index 935112892..f647adb16 100644 --- a/ecosystem-tests/vercel-edge/package-lock.json +++ b/ecosystem-tests/vercel-edge/package-lock.json @@ -18,17368 +18,4389 @@ "@types/react": "18.2.13", "@types/react-dom": "18.2.6", "edge-runtime": "^2.4.3", - "typescript": "5.1.3", - "vercel": "^30.2.3" + "typescript": "5.1.6", + "vercel": "^31.0.0" } }, - "node_modules/@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", - "dev": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "node_modules/@babel/parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", + "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", + "peer": true, + "bin": { + "parser": "bin/babel-parser.js" }, "engines": { "node": ">=6.0.0" } }, - "node_modules/@babel/code-frame": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", - "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", + "node_modules/@babel/runtime": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz", + "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==", "dev": true, "dependencies": { - "@babel/highlight": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", - "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", - "dev": true, - "engines": { - "node": ">=6.9.0" + "regenerator-runtime": "^0.13.4" } }, - "node_modules/@babel/core": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.5.tgz", - "integrity": "sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==", + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", "dev": true, "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helpers": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" + "@jridgewell/trace-mapping": "0.3.9" }, "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" + "node": ">=12" } }, - "node_modules/@babel/generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", - "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" } }, - "node_modules/@babel/generator/node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "node_modules/@edge-runtime/format": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@edge-runtime/format/-/format-2.1.0.tgz", + "integrity": "sha512-gc2qbYEIIJRczBApBPznVI1c5vZgzrZQOsFZnAxxFiYah9qldHiu1YEitzSvXI8X8ZgvAguuIiyIbpWz17nlXA==", "dev": true, - "bin": { - "jsesc": "bin/jsesc" - }, "engines": { - "node": ">=4" + "node": ">=14" } }, - "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "node_modules/@edge-runtime/node-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/node-utils/-/node-utils-2.0.3.tgz", + "integrity": "sha512-JUSbi5xu/A8+D2t9B9wfirCI1J8n8q0660FfmqZgA+n3RqxD3y7SnamL1sKRE5/AbHsKs9zcqCbK2YDklbc9Bg==", "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, "engines": { - "node": ">=6.9.0" + "node": ">=14" } }, - "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz", - "integrity": "sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==", + "node_modules/@edge-runtime/primitives": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.3.tgz", + "integrity": "sha512-YnfMWMRQABAH8IsnFMJWMW+SyB4ZeYBPnR7V0aqdnew7Pq60cbH5DyFjS/FhiLwvHQk9wBREmXD7PP0HooEQ1A==", "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, "engines": { - "node": ">=6.9.0" + "node": ">=14" } }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", - "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", + "node_modules/@edge-runtime/vm": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.3.tgz", + "integrity": "sha512-SPfI1JeIRNs/4EEE2Oc0X6gG3RqjD1TnKu2lwmwFXq0435xgZGKhc3UiKkYAdoMn2dNFD73nlabMKHBRoMRpxg==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.22.5", - "@babel/helper-validator-option": "^7.22.5", - "browserslist": "^4.21.3", - "lru-cache": "^5.1.1", - "semver": "^6.3.0" + "@edge-runtime/primitives": "3.0.3" }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "dependencies": { - "yallist": "^3.0.2" + "node": ">=14" } }, - "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "engines": { + "node": ">=6.0.0" } }, - "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" }, - "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.5.tgz", - "integrity": "sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==", + "node_modules/@mapbox/node-pre-gyp": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz", + "integrity": "sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" + "detect-libc": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "make-dir": "^3.1.0", + "node-fetch": "^2.6.7", + "nopt": "^5.0.0", + "npmlog": "^5.0.1", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.11" }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, "bin": { - "semver": "bin/semver.js" + "node-pre-gyp": "bin/node-pre-gyp" } }, - "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.5.tgz", - "integrity": "sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==", + "node_modules/@mapbox/node-pre-gyp/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "regexpu-core": "^5.3.1", - "semver": "^6.3.0" + "yallist": "^4.0.0" }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" + "node": ">=10" } }, - "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.0.tgz", - "integrity": "sha512-RnanLx5ETe6aybRi1cO/edaRH+bNYWaryCEmjDDYyNr4wnSzyOp8T0dWipmqVHKEY3AbVKUom50AKSlj1zmKbg==", + "node_modules/@mapbox/node-pre-gyp/node_modules/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", "dev": true, "dependencies": { - "@babel/helper-compilation-targets": "^7.17.7", - "@babel/helper-plugin-utils": "^7.16.7", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" + "lru-cache": "^6.0.0" }, - "peerDependencies": { - "@babel/core": "^7.4.0-0" - } - }, - "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, "bin": { "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", - "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", - "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", - "dev": true, - "dependencies": { - "@babel/template": "^7.22.5", - "@babel/types": "^7.22.5" }, "engines": { - "node": ">=6.9.0" + "node": ">=10" } }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, + "node_modules/@next/env": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.6.tgz", + "integrity": "sha512-nqUxEtvDqFhmV1/awSg0K2XHNwkftNaiUqCYO9e6+MYmqNObpKVl7OgMkGaQ2SZnFx5YqF0t60ZJTlyJIDAijg==" + }, + "node_modules/@next/swc-darwin-arm64": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.6.tgz", + "integrity": "sha512-ahi6VP98o4HV19rkOXPSUu+ovfHfUxbJQ7VVJ7gL2FnZRr7onEFC1oGQ6NQHpm8CxpIzSSBW79kumlFMOmZVjg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=6.9.0" + "node": ">= 10" } }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz", - "integrity": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, + "node_modules/@next/swc-darwin-x64": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.6.tgz", + "integrity": "sha512-13cXxKFsPJIJKzUqrU5XB1mc0xbUgYsRcdH6/rB8c4NMEbWGdtD4QoK9ShN31TZdePpD4k416Ur7p+deMIxnnA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=6.9.0" + "node": ">= 10" } }, - "node_modules/@babel/helper-module-imports": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", - "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.6.tgz", + "integrity": "sha512-Ti+NMHEjTNktCVxNjeWbYgmZvA2AqMMI2AMlzkXsU7W4pXCMhrryAmAIoo+7YdJbsx01JQWYVxGe62G6DoCLaA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6.9.0" + "node": ">= 10" } }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", - "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", - "dev": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-module-imports": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - }, + "node_modules/@next/swc-linux-arm64-musl": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.6.tgz", + "integrity": "sha512-OHoC6gO7XfjstgwR+z6UHKlvhqJfyMtNaJidjx3sEcfaDwS7R2lqR5AABi8PuilGgi0BO0O0sCXqLlpp3a0emQ==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6.9.0" + "node": ">= 10" } }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.6.tgz", + "integrity": "sha512-zHZxPGkUlpfNJCboUrFqwlwEX5vI9LSN70b8XEb0DYzzlrZyCyOi7hwDp/+3Urm9AB7YCAJkgR5Sp1XBVjHdfQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6.9.0" + "node": ">= 10" } }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", - "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", - "dev": true, + "node_modules/@next/swc-linux-x64-musl": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.6.tgz", + "integrity": "sha512-K/Y8lYGTwTpv5ME8PSJxwxLolaDRdVy+lOd9yMRMiQE0BLUhtxtCWC9ypV42uh9WpLjoaD0joOsB9Q6mbrSGJg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6.9.0" + "node": ">= 10" } }, - "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz", - "integrity": "sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-wrap-function": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz", - "integrity": "sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==", - "dev": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.6.tgz", + "integrity": "sha512-U6LtxEUrjBL2tpW+Kr1nHCSJWNeIed7U7l5o7FiKGGwGgIlFi4UHDiLI6TQ2lxi20fAU33CsruV3U0GuzMlXIw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=6.9.0" + "node": ">= 10" } }, - "node_modules/@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, + "node_modules/@next/swc-win32-ia32-msvc": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.6.tgz", + "integrity": "sha512-eEBeAqpCfhdPSlCZCayjCiyIllVqy4tcqvm1xmg3BgJG0G5ITiMM4Cw2WVeRSgWDJqQGRyyb+q8Y2ltzhXOWsQ==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=6.9.0" + "node": ">= 10" } }, - "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, + "node_modules/@next/swc-win32-x64-msvc": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.6.tgz", + "integrity": "sha512-OrZs94AuO3ZS5tnqlyPRNgfWvboXaDQCi5aXGve3o3C+Sj0ctMUV9+Do+0zMvvLRumR8E0PTWKvtz9n5vzIsWw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=6.9.0" + "node": ">= 10" } }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" }, "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", - "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", - "dev": true, - "engines": { - "node": ">=6.9.0" + "node": ">= 8" } }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", - "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, "engines": { - "node": ">=6.9.0" + "node": ">= 8" } }, - "node_modules/@babel/helper-validator-option": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", - "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, "engines": { - "node": ">=6.9.0" + "node": ">= 8" } }, - "node_modules/@babel/helper-wrap-function": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz", - "integrity": "sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==", + "node_modules/@rollup/pluginutils": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", + "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", "dev": true, "dependencies": { - "@babel/helper-function-name": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" + "estree-walker": "^2.0.1", + "picomatch": "^2.2.2" }, "engines": { - "node": ">=6.9.0" + "node": ">= 8.0.0" } }, - "node_modules/@babel/helpers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", - "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", - "dev": true, + "node_modules/@sinclair/typebox": { + "version": "0.25.24", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", + "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "dev": true + }, + "node_modules/@swc/helpers": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", + "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", "dependencies": { - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" + "tslib": "^2.4.0" } }, - "node_modules/@babel/highlight": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", - "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", + "node_modules/@ts-morph/common": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/@ts-morph/common/-/common-0.11.1.tgz", + "integrity": "sha512-7hWZS0NRpEsNV8vWJzg7FEz6V8MaLNeJOmwmghqUXTpzk16V1LLZhdo+4QvE/+zv4cVci0OviuJFnqhEfoV3+g==", "dev": true, "dependencies": { - "@babel/helper-validator-identifier": "^7.22.5", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" + "fast-glob": "^3.2.7", + "minimatch": "^3.0.4", + "mkdirp": "^1.0.4", + "path-browserify": "^1.0.1" } }, - "node_modules/@babel/highlight/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "node_modules/@ts-morph/common/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/@babel/highlight/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "node_modules/@ts-morph/common/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=4" + "node": "*" } }, - "node_modules/@babel/highlight/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "dependencies": { - "color-name": "1.1.3" - } + "node_modules/@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true }, - "node_modules/@babel/highlight/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", "dev": true }, - "node_modules/@babel/highlight/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "engines": { - "node": ">=4" - } + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true + }, + "node_modules/@types/json-schema": { + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", + "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", + "dev": true + }, + "node_modules/@types/node": { + "version": "20.3.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.3.tgz", + "integrity": "sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==", + "dev": true }, - "node_modules/@babel/highlight/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "node_modules/@types/node-fetch": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", + "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", "dev": true, "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" + "@types/node": "*", + "form-data": "^3.0.0" } }, - "node_modules/@babel/parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", - "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } + "node_modules/@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", + "dev": true }, - "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz", - "integrity": "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==", + "node_modules/@types/react": { + "version": "18.2.13", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.13.tgz", + "integrity": "sha512-vJ+zElvi/Zn9cVXB5slX2xL8PZodPCwPRDpittQdw43JR2AJ5k3vKdgJJyneV/cYgIbLQUwXa9JVDvUZXGba+Q==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" } }, - "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz", - "integrity": "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==", + "node_modules/@types/react-dom": { + "version": "18.2.6", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.6.tgz", + "integrity": "sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.13.0" + "@types/react": "*" } }, - "node_modules/@babel/plugin-proposal-private-property-in-object": { - "version": "7.21.0-placeholder-for-preset-env.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", - "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", - "dev": true, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } + "node_modules/@types/scheduler": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", + "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==", + "dev": true }, - "node_modules/@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", - "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", - "dev": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } + "node_modules/@vercel/build-utils": { + "version": "6.8.2", + "resolved": "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-6.8.2.tgz", + "integrity": "sha512-pyDBREAzaLBM3zoURCCKjnKIqtqPprKcwDdd9eBTGI32qOSpbwswtyqtgj2zH/Ro0LI61jCr6sK87JHILCr1sg==", + "dev": true + }, + "node_modules/@vercel/error-utils": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@vercel/error-utils/-/error-utils-1.0.10.tgz", + "integrity": "sha512-nsKy2sy+pjUWyKI1V/XXKspVzHMYgSalmj5+EsKWFXZbnNZicqxNtMR94J8Hs7SB4TQxh0s4KhczJtL59AVGMg==", + "dev": true }, - "node_modules/@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "node_modules/@vercel/gatsby-plugin-vercel-analytics": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-analytics/-/gatsby-plugin-vercel-analytics-1.0.10.tgz", + "integrity": "sha512-v329WHdtIce+y7oAmaWRvEx59Xfo0FxlQqK4BJG0u6VWYoKWPaflohDAiehIZf/YHCRVb59ZxnzmMOcm/LR8YQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/runtime": "7.12.1", + "web-vitals": "0.2.4" } }, - "node_modules/@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "node_modules/@vercel/gatsby-plugin-vercel-builder": { + "version": "1.3.16", + "resolved": "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.16.tgz", + "integrity": "sha512-T59fdopfGUvS7VX6DLQv89foG87/Bn9Oc3afo4A8fhQBA6XPj+0h0VyDmUGErVYJRgqnKRAMuyhKWsr/rhCvsQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@sinclair/typebox": "0.25.24", + "@vercel/build-utils": "6.8.2", + "@vercel/node": "2.15.8", + "@vercel/routing-utils": "2.2.1", + "esbuild": "0.14.47", + "etag": "1.8.1", + "fs-extra": "11.1.0" } }, - "node_modules/@babel/plugin-syntax-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "node_modules/@vercel/go": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@vercel/go/-/go-2.5.1.tgz", + "integrity": "sha512-yZGzzGmVXt2Rsy1cR0EDbst0fMhdELQY8c3jXy6/FTWJFG1e/40JYksu+WiRCxRBp8e7zfcxMrv0dN8JWRmbPQ==", + "dev": true + }, + "node_modules/@vercel/hydrogen": { + "version": "0.0.64", + "resolved": "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-0.0.64.tgz", + "integrity": "sha512-1rzFB664G6Yzp7j4ezW9hvVjqnaU2BhyUdhchbsxtRuxkMpGgPBZKhjzRQHFvlmkz37XLC658T5Nb1P91b4sBw==", + "dev": true + }, + "node_modules/@vercel/next": { + "version": "3.9.3", + "resolved": "https://registry.npmjs.org/@vercel/next/-/next-3.9.3.tgz", + "integrity": "sha512-jHuw1HYzaLt5qzJm+U1ydzKMSM9ptW5vHZ3AkFqkav7qaCDrvV0SKOiNQ8xoJhBLNFuXQY6Z4l8Ag86kUYevGA==", + "dev": true + }, + "node_modules/@vercel/nft": { + "version": "0.22.5", + "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.22.5.tgz", + "integrity": "sha512-mug57Wd1BL7GMj9gXMgMeKUjdqO0e4u+0QLPYMFE1rwdJ+55oPy6lp3nIBCS8gOvigT62UI4QKUL2sGqcoW4Hw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@mapbox/node-pre-gyp": "^1.0.5", + "@rollup/pluginutils": "^4.0.0", + "acorn": "^8.6.0", + "async-sema": "^3.1.1", + "bindings": "^1.4.0", + "estree-walker": "2.0.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.2", + "node-gyp-build": "^4.2.2", + "resolve-from": "^5.0.0" }, - "engines": { - "node": ">=6.9.0" + "bin": { + "nft": "out/cli.js" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">=14" } }, - "node_modules/@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "node_modules/@vercel/node": { + "version": "2.15.8", + "resolved": "https://registry.npmjs.org/@vercel/node/-/node-2.15.8.tgz", + "integrity": "sha512-G8+rC3mAouBFonsCKeQ9nINv7WL4SeHa6qx+bW/6BQAFc/eLKfQNa04t6ZYKLiXZQSw4COSC3g2afh7ejYVvVg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@edge-runtime/node-utils": "2.0.3", + "@edge-runtime/primitives": "2.1.2", + "@edge-runtime/vm": "3.0.1", + "@types/node": "14.18.33", + "@types/node-fetch": "2.6.3", + "@vercel/build-utils": "6.8.2", + "@vercel/error-utils": "1.0.10", + "@vercel/static-config": "2.0.17", + "async-listen": "3.0.0", + "content-type": "1.0.5", + "edge-runtime": "2.4.3", + "esbuild": "0.14.47", + "exit-hook": "2.2.1", + "node-fetch": "2.6.9", + "path-to-regexp": "6.2.1", + "ts-morph": "12.0.0", + "ts-node": "10.9.1", + "typescript": "4.9.5" } }, - "node_modules/@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "node_modules/@vercel/node/node_modules/@edge-runtime/primitives": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-2.1.2.tgz", + "integrity": "sha512-SR04SMDybALlhIYIi0hiuEUwIl0b7Sn+RKwQkX6hydg4+AKMzBNDFhj2nqHDD1+xkHArV9EhmJIb6iGjShwSzg==", "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">=14" } }, - "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz", - "integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==", + "node_modules/@vercel/node/node_modules/@edge-runtime/vm": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.1.tgz", + "integrity": "sha512-69twXLIcqVx0iNlc1vFqnXgka2CZi2c/QBAmMzXBk0M6mPG+ICCBh2dd+cv1K+HW2pfLuSW+EskkFXWGeCf1Vw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@edge-runtime/primitives": "3.0.1" }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=14" } }, - "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz", - "integrity": "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==", + "node_modules/@vercel/node/node_modules/@edge-runtime/vm/node_modules/@edge-runtime/primitives": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.1.tgz", + "integrity": "sha512-l5NNDcPkKW4N6qRmB8zzpCF6uRW1S808V/zm72z7b/aWwZUYbmEPPkzyhGAW0aQxLU1pGdZ8u2gNjamdaU6RXw==", "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=14" } }, - "node_modules/@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } + "node_modules/@vercel/node/node_modules/@types/node": { + "version": "14.18.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.33.tgz", + "integrity": "sha512-qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg==", + "dev": true }, - "node_modules/@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "node_modules/@vercel/node/node_modules/edge-runtime": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.4.3.tgz", + "integrity": "sha512-Amv/P+OJhxopvoVXFr7UXAKheBpdLeCcdR5Vw4GSdNFDWVny9sioQbczjEKPLER5WsMXl17P+llS011Xftducw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" + "@edge-runtime/format": "2.1.0", + "@edge-runtime/vm": "3.0.3", + "async-listen": "3.0.0", + "mri": "1.2.0", + "picocolors": "1.0.0", + "pretty-bytes": "5.6.0", + "pretty-ms": "7.0.1", + "signal-exit": "4.0.2", + "time-span": "4.0.0" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", - "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "bin": { + "edge-runtime": "dist/cli/index.js" }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=14" } }, - "node_modules/@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "node_modules/@vercel/node/node_modules/edge-runtime/node_modules/@edge-runtime/primitives": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.3.tgz", + "integrity": "sha512-YnfMWMRQABAH8IsnFMJWMW+SyB4ZeYBPnR7V0aqdnew7Pq60cbH5DyFjS/FhiLwvHQk9wBREmXD7PP0HooEQ1A==", "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">=14" } }, - "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "node_modules/@vercel/node/node_modules/edge-runtime/node_modules/@edge-runtime/vm": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.3.tgz", + "integrity": "sha512-SPfI1JeIRNs/4EEE2Oc0X6gG3RqjD1TnKu2lwmwFXq0435xgZGKhc3UiKkYAdoMn2dNFD73nlabMKHBRoMRpxg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" + "@edge-runtime/primitives": "3.0.3" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">=14" } }, - "node_modules/@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "node_modules/@vercel/node/node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">=4.2.0" } }, - "node_modules/@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } + "node_modules/@vercel/python": { + "version": "3.1.60", + "resolved": "https://registry.npmjs.org/@vercel/python/-/python-3.1.60.tgz", + "integrity": "sha512-1aYinyTfejS8Us+sOum+RQPYcre0vF3XoL7ohL170ZCcHA0l35qV0b1slGAmLt3pqaHKYy3g/nkzUhuR8XXIrQ==", + "dev": true }, - "node_modules/@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "node_modules/@vercel/redwood": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/@vercel/redwood/-/redwood-1.1.15.tgz", + "integrity": "sha512-j0XaXe4ZpGVHG7XQSmZ3kza6s+ZtOBfRhnSxA70yCkrvPNN3tZgF3fevSKXizfL9fzVDd7Tdj++SCGWMdGfsyA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@vercel/nft": "0.22.5", + "@vercel/routing-utils": "2.2.1", + "semver": "6.1.1" } }, - "node_modules/@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "node_modules/@vercel/remix-builder": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-1.9.1.tgz", + "integrity": "sha512-yOxGKn3uhp3eYxIE4AZVjssv9L+7sZcnS04d+6qPNvuN0WAuN7pi/Jx0ebo4IMgFQmvK6Ws+xwq9UDCs37jcow==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@vercel/build-utils": "6.8.2", + "@vercel/nft": "0.22.5", + "@vercel/static-config": "2.0.17", + "path-to-regexp": "6.2.1", + "semver": "7.3.8", + "ts-morph": "12.0.0" } }, - "node_modules/@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "node_modules/@vercel/remix-builder/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "yallist": "^4.0.0" }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=10" } }, - "node_modules/@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "node_modules/@vercel/remix-builder/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "lru-cache": "^6.0.0" }, - "engines": { - "node": ">=6.9.0" + "bin": { + "semver": "bin/semver.js" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">=10" } }, - "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", - "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "node_modules/@vercel/routing-utils": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@vercel/routing-utils/-/routing-utils-2.2.1.tgz", + "integrity": "sha512-kzMZsvToDCDskNRZD71B9UAgstec7ujmlGH8cBEo6F/07VaFeji6GQdgd6Zwnrj+TvzQBggKoPQR64VkVY8Lzw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" + "path-to-regexp": "6.1.0" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "optionalDependencies": { + "ajv": "^6.0.0" } }, - "node_modules/@babel/plugin-syntax-unicode-sets-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", - "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "node_modules/@vercel/routing-utils/node_modules/path-to-regexp": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.1.0.tgz", + "integrity": "sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==", + "dev": true + }, + "node_modules/@vercel/ruby": { + "version": "1.3.76", + "resolved": "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.76.tgz", + "integrity": "sha512-J8I0B7wAn8piGoPhBroBfJWgMEJTMEL/2o8MCoCyWdaE7MRtpXhI10pj8IvcUvAECoGJ+SM1Pm+SvBqtbtZ5FQ==", + "dev": true + }, + "node_modules/@vercel/static-build": { + "version": "1.3.44", + "resolved": "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.3.44.tgz", + "integrity": "sha512-yn2/92/kvEvfKAVBLxzSm0XePaZVoYQ4hvO5NCGzZXa5iqS+hQ3kYCz1w2EyEpsGdCBQaR+SCYKqv5kmXvxIHw==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "@vercel/gatsby-plugin-vercel-analytics": "1.0.10", + "@vercel/gatsby-plugin-vercel-builder": "1.3.16" } }, - "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz", - "integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==", + "node_modules/@vercel/static-config": { + "version": "2.0.17", + "resolved": "https://registry.npmjs.org/@vercel/static-config/-/static-config-2.0.17.tgz", + "integrity": "sha512-2f50OTVrN07x7pH+XNW0e7cj7T+Ufg+19+a2N3/XZBjQmV+FaMlmSLiaQ4tBxp2H8lWWHzENua7ZSSQPtRZ3/A==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "ajv": "8.6.3", + "json-schema-to-ts": "1.6.4", + "ts-morph": "12.0.0" } }, - "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.5.tgz", - "integrity": "sha512-gGOEvFzm3fWoyD5uZq7vVTD57pPJ3PczPUD/xCFGjzBpUosnklmXyKnGQbbbGs1NPNPskFex0j93yKbHt0cHyg==", + "node_modules/@vercel/static-config/node_modules/ajv": { + "version": "8.6.3", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.6.3.tgz", + "integrity": "sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.5", - "@babel/plugin-syntax-async-generators": "^7.8.4" - }, - "engines": { - "node": ">=6.9.0" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz", - "integrity": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==", - "dev": true, + "node_modules/@vercel/static-config/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@vue/compiler-core": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.4.tgz", + "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==", + "peer": true, "dependencies": { - "@babel/helper-module-imports": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/parser": "^7.21.3", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "source-map-js": "^1.0.2" } }, - "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz", - "integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==", - "dev": true, + "node_modules/@vue/compiler-dom": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz", + "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==", + "peer": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@vue/compiler-core": "3.3.4", + "@vue/shared": "3.3.4" } }, - "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz", - "integrity": "sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==", - "dev": true, + "node_modules/@vue/compiler-sfc": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz", + "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==", + "peer": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/parser": "^7.20.15", + "@vue/compiler-core": "3.3.4", + "@vue/compiler-dom": "3.3.4", + "@vue/compiler-ssr": "3.3.4", + "@vue/reactivity-transform": "3.3.4", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.0", + "postcss": "^8.1.10", + "source-map-js": "^1.0.2" } }, - "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz", - "integrity": "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==", - "dev": true, + "node_modules/@vue/compiler-ssr": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz", + "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==", + "peer": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@vue/compiler-dom": "3.3.4", + "@vue/shared": "3.3.4" } }, - "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz", - "integrity": "sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==", - "dev": true, + "node_modules/@vue/reactivity": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.4.tgz", + "integrity": "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==", + "peer": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0" + "@vue/shared": "3.3.4" } }, - "node_modules/@babel/plugin-transform-classes": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.5.tgz", - "integrity": "sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==", - "dev": true, + "node_modules/@vue/reactivity-transform": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz", + "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==", + "peer": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/parser": "^7.20.15", + "@vue/compiler-core": "3.3.4", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.0" } }, - "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz", - "integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==", - "dev": true, + "node_modules/@vue/runtime-core": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.4.tgz", + "integrity": "sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==", + "peer": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/template": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@vue/reactivity": "3.3.4", + "@vue/shared": "3.3.4" } }, - "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz", - "integrity": "sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==", - "dev": true, + "node_modules/@vue/runtime-dom": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz", + "integrity": "sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==", + "peer": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@vue/runtime-core": "3.3.4", + "@vue/shared": "3.3.4", + "csstype": "^3.1.1" } }, - "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz", - "integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==", - "dev": true, + "node_modules/@vue/server-renderer": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.4.tgz", + "integrity": "sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==", + "peer": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" + "@vue/compiler-ssr": "3.3.4", + "@vue/shared": "3.3.4" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "vue": "3.3.4" } }, - "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz", - "integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==", + "node_modules/@vue/shared": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz", + "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==", + "peer": true + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", + "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "bin": { + "acorn": "bin/acorn" }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=0.4.0" } }, - "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz", - "integrity": "sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==", + "node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=0.4.0" } }, - "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz", - "integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==", + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dev": true, "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "debug": "4" }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">= 6.0.0" } }, - "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz", - "integrity": "sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==", - "dev": true, + "node_modules/ai": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/ai/-/ai-2.1.9.tgz", + "integrity": "sha512-PiDWO/5lFvnbEziJjl+4CE44jg4weknJuW5VZAQQ4PDyFnDjxoCMkSJ95zEatX3qrYZfRP6zXHkmy+/OqwclfA==", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + "eventsource-parser": "1.0.0", + "nanoid": "^3.3.6", + "sswr": "^1.10.0", + "swr": "2.1.5", + "swrv": "1.0.3" }, "engines": { - "node": ">=6.9.0" + "node": ">=14.6" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "react": "^18.2.0", + "svelte": "^3.29.0", + "vue": "^3.3.4" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "svelte": { + "optional": true + }, + "vue": { + "optional": true + } } }, - "node_modules/@babel/plugin-transform-for-of": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz", - "integrity": "sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==", + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, + "optional": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/@babel/plugin-transform-function-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz", - "integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==", + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, - "dependencies": { - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=8" } }, - "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz", - "integrity": "sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==", + "node_modules/aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", + "dev": true + }, + "node_modules/are-we-there-yet": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", + "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-json-strings": "^7.8.3" + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=10" } }, - "node_modules/@babel/plugin-transform-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz", - "integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==", + "node_modules/async-listen": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/async-listen/-/async-listen-3.0.0.tgz", + "integrity": "sha512-V+SsTpDqkrWTimiotsyl33ePSjA5/KrithwupuvJ6ztsqPvGv6ge4OredFhPffVXiLN/QUWvE0XcqJaYgt6fOg==", "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">= 14" } }, - "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz", - "integrity": "sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } + "node_modules/async-sema": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz", + "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==", + "dev": true }, - "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz", - "integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true }, - "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz", - "integrity": "sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==", - "dev": true, - "dependencies": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true }, - "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz", - "integrity": "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==", + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "file-uri-to-path": "1.0.0" } }, - "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz", - "integrity": "sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==", + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, "dependencies": { - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5" + "fill-range": "^7.0.1" }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=8" } }, - "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz", - "integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==", - "dev": true, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", "dependencies": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "streamsearch": "^1.1.0" }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=10.16.0" } }, - "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", - "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "node_modules/caniuse-lite": { + "version": "1.0.30001509", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001509.tgz", + "integrity": "sha512-2uDDk+TRiTX5hMcUYT/7CSyzMZxjfGu0vAUjS2g0LSD8UoXOv0LtpH4LxGMemsiPq6LCVIUjNwVM0erkOkGCDA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", "dev": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "node": ">=10" } }, - "node_modules/@babel/plugin-transform-new-target": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz", - "integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==", + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" + }, + "node_modules/code-block-writer": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-10.1.1.tgz", + "integrity": "sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==", + "dev": true + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "bin": { + "color-support": "bin.js" } }, - "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz", - "integrity": "sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==", + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + "delayed-stream": "~1.0.0" }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">= 0.8" } }, - "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz", - "integrity": "sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==", + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", + "dev": true + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">= 0.6" } }, - "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz", - "integrity": "sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==", + "node_modules/convert-hrtime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-3.0.0.tgz", + "integrity": "sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA==", "dev": true, - "dependencies": { - "@babel/compat-data": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.22.5" - }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=8" } }, - "node_modules/@babel/plugin-transform-object-super": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz", - "integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==", + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "node_modules/csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5" + "ms": "2.1.2" }, "engines": { - "node": ">=6.9.0" + "node": ">=6.0" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz", - "integrity": "sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==", + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=0.4.0" } }, - "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.5.tgz", - "integrity": "sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==", + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "dev": true + }, + "node_modules/detect-libc": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", + "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=8" } }, - "node_modules/@babel/plugin-transform-parameters": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz", - "integrity": "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==", + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=0.3.1" } }, - "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz", - "integrity": "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==", + "node_modules/edge-runtime": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.4.4.tgz", + "integrity": "sha512-uq1YdIxkMDsBYLdSSp/w62PciCL46ic4m1Z/2G6N8RcAPI8p35O8u6hJQT83j28Dnt4U5iyvmwFMYouHMK51uA==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@edge-runtime/format": "2.1.0", + "@edge-runtime/vm": "3.0.3", + "async-listen": "3.0.0", + "mri": "1.2.0", + "picocolors": "1.0.0", + "pretty-bytes": "5.6.0", + "pretty-ms": "7.0.1", + "signal-exit": "4.0.2", + "time-span": "4.0.0" }, - "engines": { - "node": ">=6.9.0" + "bin": { + "edge-runtime": "dist/cli/index.js" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">=14" } }, - "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz", - "integrity": "sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==", + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/esbuild": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.47.tgz", + "integrity": "sha512-wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA==", "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" }, "engines": { - "node": ">=6.9.0" + "node": ">=12" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz", - "integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "optionalDependencies": { + "esbuild-android-64": "0.14.47", + "esbuild-android-arm64": "0.14.47", + "esbuild-darwin-64": "0.14.47", + "esbuild-darwin-arm64": "0.14.47", + "esbuild-freebsd-64": "0.14.47", + "esbuild-freebsd-arm64": "0.14.47", + "esbuild-linux-32": "0.14.47", + "esbuild-linux-64": "0.14.47", + "esbuild-linux-arm": "0.14.47", + "esbuild-linux-arm64": "0.14.47", + "esbuild-linux-mips64le": "0.14.47", + "esbuild-linux-ppc64le": "0.14.47", + "esbuild-linux-riscv64": "0.14.47", + "esbuild-linux-s390x": "0.14.47", + "esbuild-netbsd-64": "0.14.47", + "esbuild-openbsd-64": "0.14.47", + "esbuild-sunos-64": "0.14.47", + "esbuild-windows-32": "0.14.47", + "esbuild-windows-64": "0.14.47", + "esbuild-windows-arm64": "0.14.47" } }, - "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz", - "integrity": "sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==", + "node_modules/esbuild-android-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.47.tgz", + "integrity": "sha512-R13Bd9+tqLVFndncMHssZrPWe6/0Kpv2/dt4aA69soX4PRxlzsVpCvoJeFE8sOEoeVEiBkI0myjlkDodXlHa0g==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "regenerator-transform": "^0.15.1" - }, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=12" } }, - "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz", - "integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==", + "node_modules/esbuild-android-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.47.tgz", + "integrity": "sha512-OkwOjj7ts4lBp/TL6hdd8HftIzOy/pdtbrNA4+0oVWgGG64HrdVzAF5gxtJufAPOsEjkyh1oIYvKAUinKKQRSQ==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=12" } }, - "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz", - "integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==", + "node_modules/esbuild-darwin-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.47.tgz", + "integrity": "sha512-R6oaW0y5/u6Eccti/TS6c/2c1xYTb1izwK3gajJwi4vIfNs1s8B1dQzI1UiC9T61YovOQVuePDcfqHLT3mUZJA==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=12" } }, - "node_modules/@babel/plugin-transform-spread": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz", - "integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==", + "node_modules/esbuild-darwin-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.47.tgz", + "integrity": "sha512-seCmearlQyvdvM/noz1L9+qblC5vcBrhUaOoLEDDoLInF/VQ9IkobGiLlyTPYP5dW1YD4LXhtBgOyevoIHGGnw==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" - }, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=12" } }, - "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz", - "integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==", + "node_modules/esbuild-freebsd-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.47.tgz", + "integrity": "sha512-ZH8K2Q8/Ux5kXXvQMDsJcxvkIwut69KVrYQhza/ptkW50DC089bCVrJZZ3sKzIoOx+YPTrmsZvqeZERjyYrlvQ==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=12" } }, - "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz", - "integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==", + "node_modules/esbuild-freebsd-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.47.tgz", + "integrity": "sha512-ZJMQAJQsIOhn3XTm7MPQfCzEu5b9STNC+s90zMWe2afy9EwnHV7Ov7ohEMv2lyWlc2pjqLW8QJnz2r0KZmeAEQ==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=12" } }, - "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz", - "integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==", + "node_modules/esbuild-linux-32": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.47.tgz", + "integrity": "sha512-FxZOCKoEDPRYvq300lsWCTv1kcHgiiZfNrPtEhFAiqD7QZaXrad8LxyJ8fXGcWzIFzRiYZVtB3ttvITBvAFhKw==", + "cpu": [ + "ia32" + ], "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=12" } }, - "node_modules/@babel/plugin-transform-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.5.tgz", - "integrity": "sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==", + "node_modules/esbuild-linux-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.47.tgz", + "integrity": "sha512-nFNOk9vWVfvWYF9YNYksZptgQAdstnDCMtR6m42l5Wfugbzu11VpMCY9XrD4yFxvPo9zmzcoUL/88y0lfJZJJw==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-typescript": "^7.22.5" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=12" } }, - "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz", - "integrity": "sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==", + "node_modules/esbuild-linux-arm": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.47.tgz", + "integrity": "sha512-ZGE1Bqg/gPRXrBpgpvH81tQHpiaGxa8c9Rx/XOylkIl2ypLuOcawXEAo8ls+5DFCcRGt/o3sV+PzpAFZobOsmA==", + "cpu": [ + "arm" + ], "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=12" } }, - "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz", - "integrity": "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==", + "node_modules/esbuild-linux-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.47.tgz", + "integrity": "sha512-ywfme6HVrhWcevzmsufjd4iT3PxTfCX9HOdxA7Hd+/ZM23Y9nXeb+vG6AyA6jgq/JovkcqRHcL9XwRNpWG6XRw==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=12" } }, - "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz", - "integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==", + "node_modules/esbuild-linux-mips64le": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.47.tgz", + "integrity": "sha512-mg3D8YndZ1LvUiEdDYR3OsmeyAew4MA/dvaEJxvyygahWmpv1SlEEnhEZlhPokjsUMfRagzsEF/d/2XF+kTQGg==", + "cpu": [ + "mips64el" + ], "dev": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=12" } }, - "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz", - "integrity": "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==", + "node_modules/esbuild-linux-ppc64le": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.47.tgz", + "integrity": "sha512-WER+f3+szmnZiWoK6AsrTKGoJoErG2LlauSmk73LEZFQ/iWC+KhhDsOkn1xBUpzXWsxN9THmQFltLoaFEH8F8w==", + "cpu": [ + "ppc64" + ], "dev": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "node": ">=12" } }, - "node_modules/@babel/preset-env": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.5.tgz", - "integrity": "sha512-fj06hw89dpiZzGZtxn+QybifF07nNiZjZ7sazs2aVDcysAZVGjW7+7iFYxg6GLNM47R/thYfLdrXc+2f11Vi9A==", + "node_modules/esbuild-linux-riscv64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.47.tgz", + "integrity": "sha512-1fI6bP3A3rvI9BsaaXbMoaOjLE3lVkJtLxsgLHqlBhLlBVY7UqffWBvkrX/9zfPhhVMd9ZRFiaqXnB1T7BsL2g==", + "cpu": [ + "riscv64" + ], "dev": true, - "dependencies": { - "@babel/compat-data": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.5", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.5", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.5", - "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.22.5", - "@babel/plugin-syntax-import-attributes": "^7.22.5", - "@babel/plugin-syntax-import-meta": "^7.10.4", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.22.5", - "@babel/plugin-transform-async-generator-functions": "^7.22.5", - "@babel/plugin-transform-async-to-generator": "^7.22.5", - "@babel/plugin-transform-block-scoped-functions": "^7.22.5", - "@babel/plugin-transform-block-scoping": "^7.22.5", - "@babel/plugin-transform-class-properties": "^7.22.5", - "@babel/plugin-transform-class-static-block": "^7.22.5", - "@babel/plugin-transform-classes": "^7.22.5", - "@babel/plugin-transform-computed-properties": "^7.22.5", - "@babel/plugin-transform-destructuring": "^7.22.5", - "@babel/plugin-transform-dotall-regex": "^7.22.5", - "@babel/plugin-transform-duplicate-keys": "^7.22.5", - "@babel/plugin-transform-dynamic-import": "^7.22.5", - "@babel/plugin-transform-exponentiation-operator": "^7.22.5", - "@babel/plugin-transform-export-namespace-from": "^7.22.5", - "@babel/plugin-transform-for-of": "^7.22.5", - "@babel/plugin-transform-function-name": "^7.22.5", - "@babel/plugin-transform-json-strings": "^7.22.5", - "@babel/plugin-transform-literals": "^7.22.5", - "@babel/plugin-transform-logical-assignment-operators": "^7.22.5", - "@babel/plugin-transform-member-expression-literals": "^7.22.5", - "@babel/plugin-transform-modules-amd": "^7.22.5", - "@babel/plugin-transform-modules-commonjs": "^7.22.5", - "@babel/plugin-transform-modules-systemjs": "^7.22.5", - "@babel/plugin-transform-modules-umd": "^7.22.5", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.22.5", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.5", - "@babel/plugin-transform-numeric-separator": "^7.22.5", - "@babel/plugin-transform-object-rest-spread": "^7.22.5", - "@babel/plugin-transform-object-super": "^7.22.5", - "@babel/plugin-transform-optional-catch-binding": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.22.5", - "@babel/plugin-transform-parameters": "^7.22.5", - "@babel/plugin-transform-private-methods": "^7.22.5", - "@babel/plugin-transform-private-property-in-object": "^7.22.5", - "@babel/plugin-transform-property-literals": "^7.22.5", - "@babel/plugin-transform-regenerator": "^7.22.5", - "@babel/plugin-transform-reserved-words": "^7.22.5", - "@babel/plugin-transform-shorthand-properties": "^7.22.5", - "@babel/plugin-transform-spread": "^7.22.5", - "@babel/plugin-transform-sticky-regex": "^7.22.5", - "@babel/plugin-transform-template-literals": "^7.22.5", - "@babel/plugin-transform-typeof-symbol": "^7.22.5", - "@babel/plugin-transform-unicode-escapes": "^7.22.5", - "@babel/plugin-transform-unicode-property-regex": "^7.22.5", - "@babel/plugin-transform-unicode-regex": "^7.22.5", - "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.22.5", - "babel-plugin-polyfill-corejs2": "^0.4.3", - "babel-plugin-polyfill-corejs3": "^0.8.1", - "babel-plugin-polyfill-regenerator": "^0.5.0", - "core-js-compat": "^3.30.2", - "semver": "^6.3.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-env/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" + "node": ">=12" } }, - "node_modules/@babel/preset-modules": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", - "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz", - "integrity": "sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.5", - "@babel/plugin-syntax-jsx": "^7.22.5", - "@babel/plugin-transform-modules-commonjs": "^7.22.5", - "@babel/plugin-transform-typescript": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", - "dev": true - }, - "node_modules/@babel/runtime": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz", - "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==", - "dev": true, - "dependencies": { - "regenerator-runtime": "^0.13.4" - } - }, - "node_modules/@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", - "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/types": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", - "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", - "dev": true, - "dependencies": { - "@babel/helper-string-parser": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", - "dev": true, - "dependencies": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", - "dev": true, - "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "node_modules/@edge-runtime/format": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@edge-runtime/format/-/format-2.1.0.tgz", - "integrity": "sha512-gc2qbYEIIJRczBApBPznVI1c5vZgzrZQOsFZnAxxFiYah9qldHiu1YEitzSvXI8X8ZgvAguuIiyIbpWz17nlXA==", - "dev": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/@edge-runtime/node-utils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@edge-runtime/node-utils/-/node-utils-2.0.3.tgz", - "integrity": "sha512-JUSbi5xu/A8+D2t9B9wfirCI1J8n8q0660FfmqZgA+n3RqxD3y7SnamL1sKRE5/AbHsKs9zcqCbK2YDklbc9Bg==", - "dev": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/@edge-runtime/primitives": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.3.tgz", - "integrity": "sha512-YnfMWMRQABAH8IsnFMJWMW+SyB4ZeYBPnR7V0aqdnew7Pq60cbH5DyFjS/FhiLwvHQk9wBREmXD7PP0HooEQ1A==", - "dev": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/@edge-runtime/vm": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.3.tgz", - "integrity": "sha512-SPfI1JeIRNs/4EEE2Oc0X6gG3RqjD1TnKu2lwmwFXq0435xgZGKhc3UiKkYAdoMn2dNFD73nlabMKHBRoMRpxg==", - "dev": true, - "dependencies": { - "@edge-runtime/primitives": "3.0.3" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@emotion/hash": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", - "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==", - "dev": true - }, - "node_modules/@esbuild/android-arm": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.6.tgz", - "integrity": "sha512-bSC9YVUjADDy1gae8RrioINU6e1lCkg3VGVwm0QQ2E1CWcC4gnMce9+B6RpxuSsrsXsk1yojn7sp1fnG8erE2g==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.6.tgz", - "integrity": "sha512-YnYSCceN/dUzUr5kdtUzB+wZprCafuD89Hs0Aqv9QSdwhYQybhXTaSTcrl6X/aWThn1a/j0eEpUBGOE7269REg==", + "node_modules/esbuild-linux-s390x": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.47.tgz", + "integrity": "sha512-eZrWzy0xFAhki1CWRGnhsHVz7IlSKX6yT2tj2Eg8lhAwlRE5E96Hsb0M1mPSE1dHGpt1QVwwVivXIAacF/G6mw==", "cpu": [ - "arm64" + "s390x" ], "dev": true, "optional": true, "os": [ - "android" + "linux" ], "engines": { "node": ">=12" } }, - "node_modules/@esbuild/android-x64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.6.tgz", - "integrity": "sha512-MVcYcgSO7pfu/x34uX9u2QIZHmXAB7dEiLQC5bBl5Ryqtpj9lT2sg3gNDEsrPEmimSJW2FXIaxqSQ501YLDsZQ==", + "node_modules/esbuild-netbsd-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.47.tgz", + "integrity": "sha512-Qjdjr+KQQVH5Q2Q1r6HBYswFTToPpss3gqCiSw2Fpq/ua8+eXSQyAMG+UvULPqXceOwpnPo4smyZyHdlkcPppQ==", "cpu": [ "x64" ], "dev": true, "optional": true, "os": [ - "android" + "netbsd" ], "engines": { "node": ">=12" } }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.6.tgz", - "integrity": "sha512-bsDRvlbKMQMt6Wl08nHtFz++yoZHsyTOxnjfB2Q95gato+Yi4WnRl13oC2/PJJA9yLCoRv9gqT/EYX0/zDsyMA==", + "node_modules/esbuild-openbsd-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.47.tgz", + "integrity": "sha512-QpgN8ofL7B9z8g5zZqJE+eFvD1LehRlxr25PBkjyyasakm4599iroUpaj96rdqRlO2ShuyqwJdr+oNqWwTUmQw==", "cpu": [ - "arm64" + "x64" ], "dev": true, "optional": true, "os": [ - "darwin" + "openbsd" ], "engines": { "node": ">=12" } }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.6.tgz", - "integrity": "sha512-xh2A5oPrYRfMFz74QXIQTQo8uA+hYzGWJFoeTE8EvoZGHb+idyV4ATaukaUvnnxJiauhs/fPx3vYhU4wiGfosg==", + "node_modules/esbuild-sunos-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.47.tgz", + "integrity": "sha512-uOeSgLUwukLioAJOiGYm3kNl+1wJjgJA8R671GYgcPgCx7QR73zfvYqXFFcIO93/nBdIbt5hd8RItqbbf3HtAQ==", "cpu": [ "x64" ], "dev": true, "optional": true, "os": [ - "darwin" + "sunos" ], "engines": { "node": ">=12" } }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.6.tgz", - "integrity": "sha512-EnUwjRc1inT4ccZh4pB3v1cIhohE2S4YXlt1OvI7sw/+pD+dIE4smwekZlEPIwY6PhU6oDWwITrQQm5S2/iZgg==", + "node_modules/esbuild-windows-32": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.47.tgz", + "integrity": "sha512-H0fWsLTp2WBfKLBgwYT4OTfFly4Im/8B5f3ojDv1Kx//kiubVY0IQunP2Koc/fr/0wI7hj3IiBDbSrmKlrNgLQ==", "cpu": [ - "arm64" + "ia32" ], "dev": true, "optional": true, "os": [ - "freebsd" + "win32" ], "engines": { "node": ">=12" } }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.6.tgz", - "integrity": "sha512-Uh3HLWGzH6FwpviUcLMKPCbZUAFzv67Wj5MTwK6jn89b576SR2IbEp+tqUHTr8DIl0iDmBAf51MVaP7pw6PY5Q==", + "node_modules/esbuild-windows-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.47.tgz", + "integrity": "sha512-/Pk5jIEH34T68r8PweKRi77W49KwanZ8X6lr3vDAtOlH5EumPE4pBHqkCUdELanvsT14yMXLQ/C/8XPi1pAtkQ==", "cpu": [ "x64" ], "dev": true, "optional": true, "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.6.tgz", - "integrity": "sha512-7YdGiurNt7lqO0Bf/U9/arrPWPqdPqcV6JCZda4LZgEn+PTQ5SMEI4MGR52Bfn3+d6bNEGcWFzlIxiQdS48YUw==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" + "win32" ], "engines": { "node": ">=12" } }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.6.tgz", - "integrity": "sha512-bUR58IFOMJX523aDVozswnlp5yry7+0cRLCXDsxnUeQYJik1DukMY+apBsLOZJblpH+K7ox7YrKrHmJoWqVR9w==", + "node_modules/esbuild-windows-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.47.tgz", + "integrity": "sha512-HFSW2lnp62fl86/qPQlqw6asIwCnEsEoNIL1h2uVMgakddf+vUuMcCbtUY1i8sst7KkgHrVKCJQB33YhhOweCQ==", "cpu": [ "arm64" ], "dev": true, "optional": true, "os": [ - "linux" + "win32" ], "engines": { "node": ">=12" } }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.6.tgz", - "integrity": "sha512-ujp8uoQCM9FRcbDfkqECoARsLnLfCUhKARTP56TFPog8ie9JG83D5GVKjQ6yVrEVdMie1djH86fm98eY3quQkQ==", - "cpu": [ - "ia32" - ], + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", "dev": true, - "optional": true, - "os": [ - "linux" - ], "engines": { - "node": ">=12" + "node": ">= 0.6" } }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.6.tgz", - "integrity": "sha512-y2NX1+X/Nt+izj9bLoiaYB9YXT/LoaQFYvCkVD77G/4F+/yuVXYCWz4SE9yr5CBMbOxOfBcy/xFL4LlOeNlzYQ==", - "cpu": [ - "loong64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], + "node_modules/eventsource-parser": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-1.0.0.tgz", + "integrity": "sha512-9jgfSCa3dmEme2ES3mPByGXfgZ87VbP97tng1G2nWwWx6bV2nYxm2AWCrbQjXToSe+yYlqaZNtxffR9IeQr95g==", "engines": { - "node": ">=12" + "node": ">=14.18" } }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.6.tgz", - "integrity": "sha512-09AXKB1HDOzXD+j3FdXCiL/MWmZP0Ex9eR8DLMBVcHorrWJxWmY8Nms2Nm41iRM64WVx7bA/JVHMv081iP2kUA==", - "cpu": [ - "mips64el" - ], + "node_modules/exit-hook": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-2.2.1.tgz", + "integrity": "sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], "engines": { - "node": ">=12" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.6.tgz", - "integrity": "sha512-AmLhMzkM8JuqTIOhxnX4ubh0XWJIznEynRnZAVdA2mMKE6FAfwT2TWKTwdqMG+qEaeyDPtfNoZRpJbD4ZBv0Tg==", - "cpu": [ - "ppc64" - ], + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, "engines": { - "node": ">=12" + "node": ">=8.6.0" } }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.6.tgz", - "integrity": "sha512-Y4Ri62PfavhLQhFbqucysHOmRamlTVK10zPWlqjNbj2XMea+BOs4w6ASKwQwAiqf9ZqcY9Ab7NOU4wIgpxwoSQ==", - "cpu": [ - "riscv64" - ], + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } + "optional": true }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.6.tgz", - "integrity": "sha512-SPUiz4fDbnNEm3JSdUW8pBJ/vkop3M1YwZAVwvdwlFLoJwKEZ9L98l3tzeyMzq27CyepDQ3Qgoba44StgbiN5Q==", - "cpu": [ - "s390x" - ], + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "dependencies": { + "reusify": "^1.0.4" } }, - "node_modules/@esbuild/linux-x64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.6.tgz", - "integrity": "sha512-a3yHLmOodHrzuNgdpB7peFGPx1iJ2x6m+uDvhP2CKdr2CwOaqEFMeSqYAHU7hG+RjCq8r2NFujcd/YsEsFgTGw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.6.tgz", - "integrity": "sha512-EanJqcU/4uZIBreTrnbnre2DXgXSa+Gjap7ifRfllpmyAU7YMvaXmljdArptTHmjrkkKm9BK6GH5D5Yo+p6y5A==", - "cpu": [ - "x64" - ], + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, - "optional": true, - "os": [ - "netbsd" - ], + "dependencies": { + "to-regex-range": "^5.0.1" + }, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.6.tgz", - "integrity": "sha512-xaxeSunhQRsTNGFanoOkkLtnmMn5QbA0qBhNet/XLVsc+OVkpIWPHcr3zTW2gxVU5YOHFbIHR9ODuaUdNza2Vw==", - "cpu": [ - "x64" - ], + "node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", "dev": true, - "optional": true, - "os": [ - "openbsd" - ], + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, "engines": { - "node": ">=12" + "node": ">= 6" } }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.6.tgz", - "integrity": "sha512-gnMnMPg5pfMkZvhHee21KbKdc6W3GR8/JuE0Da1kjwpK6oiFU3nqfHuVPgUX2rsOx9N2SadSQTIYV1CIjYG+xw==", - "cpu": [ - "x64" - ], + "node_modules/fs-extra": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", + "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", "dev": true, - "optional": true, - "os": [ - "sunos" - ], + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, "engines": { - "node": ">=12" + "node": ">=14.14" } }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.6.tgz", - "integrity": "sha512-G95n7vP1UnGJPsVdKXllAJPtqjMvFYbN20e8RK8LVLhlTiSOH1sd7+Gt7rm70xiG+I5tM58nYgwWrLs6I1jHqg==", - "cpu": [ - "arm64" - ], + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "dependencies": { + "minipass": "^3.0.0" + }, "engines": { - "node": ">=12" + "node": ">= 8" } }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.6.tgz", - "integrity": "sha512-96yEFzLhq5bv9jJo5JhTs1gI+1cKQ83cUpyxHuGqXVwQtY5Eq54ZEsKs8veKtiKwlrNimtckHEkj4mRh4pPjsg==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true }, - "node_modules/@esbuild/win32-x64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.6.tgz", - "integrity": "sha512-n6d8MOyUrNp6G4VSpRcgjs5xj4A91svJSaiwLIDWVWEsZtpN5FA9NlBbZHDmAJc2e8e6SF4tkBD3HAvPF+7igA==", - "cpu": [ - "x64" - ], + "node_modules/gauge": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" + }, "engines": { - "node": ">=12" + "node": ">=10" } }, - "node_modules/@gar/promisify": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", - "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", + "node_modules/gauge/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=6.0.0" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, "engines": { - "node": ">=6.0.0" + "node": ">= 6" } }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/glob/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, - "engines": { - "node": ">=6.0.0" + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "node_modules/glob/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" }, - "node_modules/@jspm/core": { + "node_modules/has-unicode": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@jspm/core/-/core-2.0.1.tgz", - "integrity": "sha512-Lg3PnLp0QXpxwLIAuuJboLeRaIhrgJjeuh797QADg3xz8wGLugQOS5DpsE8A6i6Adgzf+bacllkKZG3J0tGfDw==", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", "dev": true }, - "node_modules/@mapbox/node-pre-gyp": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz", - "integrity": "sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==", + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dev": true, "dependencies": { - "detect-libc": "^2.0.0", - "https-proxy-agent": "^5.0.0", - "make-dir": "^3.1.0", - "node-fetch": "^2.6.7", - "nopt": "^5.0.0", - "npmlog": "^5.0.1", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.11" + "agent-base": "6", + "debug": "4" }, - "bin": { - "node-pre-gyp": "bin/node-pre-gyp" + "engines": { + "node": ">= 6" } }, - "node_modules/@mapbox/node-pre-gyp/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dev": true, "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@mapbox/node-pre-gyp/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" + "once": "^1.3.0", + "wrappy": "1" } }, - "node_modules/@next/env": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.6.tgz", - "integrity": "sha512-nqUxEtvDqFhmV1/awSg0K2XHNwkftNaiUqCYO9e6+MYmqNObpKVl7OgMkGaQ2SZnFx5YqF0t60ZJTlyJIDAijg==" + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true }, - "node_modules/@next/swc-darwin-arm64": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.6.tgz", - "integrity": "sha512-ahi6VP98o4HV19rkOXPSUu+ovfHfUxbJQ7VVJ7gL2FnZRr7onEFC1oGQ6NQHpm8CxpIzSSBW79kumlFMOmZVjg==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "darwin" - ], + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, "engines": { - "node": ">= 10" + "node": ">=0.10.0" } }, - "node_modules/@next/swc-darwin-x64": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.6.tgz", - "integrity": "sha512-13cXxKFsPJIJKzUqrU5XB1mc0xbUgYsRcdH6/rB8c4NMEbWGdtD4QoK9ShN31TZdePpD4k416Ur7p+deMIxnnA==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "darwin" - ], + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, "engines": { - "node": ">= 10" + "node": ">=8" } }, - "node_modules/@next/swc-linux-arm64-gnu": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.6.tgz", - "integrity": "sha512-Ti+NMHEjTNktCVxNjeWbYgmZvA2AqMMI2AMlzkXsU7W4pXCMhrryAmAIoo+7YdJbsx01JQWYVxGe62G6DoCLaA==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, "engines": { - "node": ">= 10" + "node": ">=0.10.0" } }, - "node_modules/@next/swc-linux-arm64-musl": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.6.tgz", - "integrity": "sha512-OHoC6gO7XfjstgwR+z6UHKlvhqJfyMtNaJidjx3sEcfaDwS7R2lqR5AABi8PuilGgi0BO0O0sCXqLlpp3a0emQ==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, "engines": { - "node": ">= 10" + "node": ">=0.12.0" } }, - "node_modules/@next/swc-linux-x64-gnu": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.6.tgz", - "integrity": "sha512-zHZxPGkUlpfNJCboUrFqwlwEX5vI9LSN70b8XEb0DYzzlrZyCyOi7hwDp/+3Urm9AB7YCAJkgR5Sp1XBVjHdfQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, - "node_modules/@next/swc-linux-x64-musl": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.6.tgz", - "integrity": "sha512-K/Y8lYGTwTpv5ME8PSJxwxLolaDRdVy+lOd9yMRMiQE0BLUhtxtCWC9ypV42uh9WpLjoaD0joOsB9Q6mbrSGJg==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" + "node_modules/json-schema-to-ts": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/json-schema-to-ts/-/json-schema-to-ts-1.6.4.tgz", + "integrity": "sha512-pR4yQ9DHz6itqswtHCm26mw45FSNfQ9rEQjosaZErhn5J3J2sIViQiz8rDaezjKAhFGpmsoczYVBgGHzFw/stA==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.6", + "ts-toolbelt": "^6.15.5" } }, - "node_modules/@next/swc-win32-arm64-msvc": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.6.tgz", - "integrity": "sha512-U6LtxEUrjBL2tpW+Kr1nHCSJWNeIed7U7l5o7FiKGGwGgIlFi4UHDiLI6TQ2lxi20fAU33CsruV3U0GuzMlXIw==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "optional": true + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "node_modules/@next/swc-win32-ia32-msvc": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.6.tgz", - "integrity": "sha512-eEBeAqpCfhdPSlCZCayjCiyIllVqy4tcqvm1xmg3BgJG0G5ITiMM4Cw2WVeRSgWDJqQGRyyb+q8Y2ltzhXOWsQ==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" } }, - "node_modules/@next/swc-win32-x64-msvc": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.6.tgz", - "integrity": "sha512-OrZs94AuO3ZS5tnqlyPRNgfWvboXaDQCi5aXGve3o3C+Sj0ctMUV9+Do+0zMvvLRumR8E0PTWKvtz9n5vzIsWw==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ], + "node_modules/magic-string": { + "version": "0.30.0", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz", + "integrity": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==", + "peer": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.13" + }, "engines": { - "node": ">= 10" + "node": ">=12" } }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" + "semver": "^6.0.0" }, "engines": { - "node": ">= 8" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, "engines": { "node": ">= 8" } }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" + "braces": "^3.0.2", + "picomatch": "^2.3.1" }, "engines": { - "node": ">= 8" + "node": ">=8.6" } }, - "node_modules/@npmcli/fs": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", - "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", - "dev": true, - "dependencies": { - "@gar/promisify": "^1.0.1", - "semver": "^7.3.5" - } - }, - "node_modules/@npmcli/fs/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, "engines": { - "node": ">=10" + "node": ">= 0.6" } }, - "node_modules/@npmcli/fs/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "mime-db": "1.52.0" }, "engines": { - "node": ">=10" + "node": ">= 0.6" } }, - "node_modules/@npmcli/move-file": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", - "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", - "deprecated": "This functionality has been moved to @npmcli/fs", + "node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, "dependencies": { - "mkdirp": "^1.0.4", - "rimraf": "^3.0.2" + "yallist": "^4.0.0" }, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/@npmcli/package-json": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-2.0.0.tgz", - "integrity": "sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA==", + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", "dev": true, "dependencies": { - "json-parse-even-better-errors": "^2.3.1" + "minipass": "^3.0.0", + "yallist": "^4.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">= 8" } }, - "node_modules/@remix-run/dev": { - "name": "@vercel/remix-run-dev", - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/@vercel/remix-run-dev/-/remix-run-dev-1.17.0.tgz", - "integrity": "sha512-S71dx9sxHi/9Ery9za+ryQYNq5rEA/OeWFaKalHsgA7jYhiJC2U2iP9lV4m251oLXp3K6J8gwY0zF1CWmA7ANA==", + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "dev": true, - "dependencies": { - "@babel/core": "^7.21.8", - "@babel/generator": "^7.21.5", - "@babel/parser": "^7.21.8", - "@babel/plugin-syntax-jsx": "^7.21.4", - "@babel/plugin-syntax-typescript": "^7.21.4", - "@babel/preset-env": "^7.21.5", - "@babel/preset-typescript": "^7.21.5", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5", - "@npmcli/package-json": "^2.0.0", - "@remix-run/server-runtime": "1.17.0", - "@vanilla-extract/integration": "^6.2.0", - "arg": "^5.0.1", - "cacache": "^15.0.5", - "chalk": "^4.1.2", - "chokidar": "^3.5.1", - "dotenv": "^16.0.0", - "esbuild": "0.17.6", - "esbuild-plugin-polyfill-node": "^0.2.0", - "execa": "5.1.1", - "exit-hook": "2.2.1", - "express": "^4.17.1", - "fast-glob": "3.2.11", - "fs-extra": "^10.0.0", - "get-port": "^5.1.1", - "gunzip-maybe": "^1.4.2", - "inquirer": "^8.2.1", - "jsesc": "3.0.2", - "json5": "^2.2.2", - "lodash": "^4.17.21", - "lodash.debounce": "^4.0.8", - "lru-cache": "^7.14.1", - "minimatch": "^9.0.0", - "node-fetch": "^2.6.9", - "ora": "^5.4.1", - "picomatch": "^2.3.1", - "postcss": "^8.4.19", - "postcss-discard-duplicates": "^5.1.0", - "postcss-load-config": "^4.0.1", - "postcss-modules": "^6.0.0", - "prettier": "^2.7.1", - "pretty-ms": "^7.0.1", - "proxy-agent": "^5.0.0", - "react-refresh": "^0.14.0", - "recast": "^0.21.5", - "remark-frontmatter": "4.0.1", - "remark-mdx-frontmatter": "^1.0.1", - "semver": "^7.3.7", - "sort-package-json": "^1.55.0", - "tar-fs": "^2.1.1", - "tsconfig-paths": "^4.0.0", - "ws": "^7.4.5", - "xdm": "^2.0.0" - }, "bin": { - "remix": "dist/cli.js" + "mkdirp": "bin/cmd.js" }, "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@remix-run/serve": "^1.17.0" - }, - "peerDependenciesMeta": { - "@remix-run/serve": { - "optional": true - } + "node": ">=10" } }, - "node_modules/@remix-run/dev/node_modules/esbuild": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.6.tgz", - "integrity": "sha512-TKFRp9TxrJDdRWfSsSERKEovm6v30iHnrjlcGhLBOtReE28Yp1VSBRfO3GTaOFMoxsNerx4TjrhzSuma9ha83Q==", + "node_modules/mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.17.6", - "@esbuild/android-arm64": "0.17.6", - "@esbuild/android-x64": "0.17.6", - "@esbuild/darwin-arm64": "0.17.6", - "@esbuild/darwin-x64": "0.17.6", - "@esbuild/freebsd-arm64": "0.17.6", - "@esbuild/freebsd-x64": "0.17.6", - "@esbuild/linux-arm": "0.17.6", - "@esbuild/linux-arm64": "0.17.6", - "@esbuild/linux-ia32": "0.17.6", - "@esbuild/linux-loong64": "0.17.6", - "@esbuild/linux-mips64el": "0.17.6", - "@esbuild/linux-ppc64": "0.17.6", - "@esbuild/linux-riscv64": "0.17.6", - "@esbuild/linux-s390x": "0.17.6", - "@esbuild/linux-x64": "0.17.6", - "@esbuild/netbsd-x64": "0.17.6", - "@esbuild/openbsd-x64": "0.17.6", - "@esbuild/sunos-x64": "0.17.6", - "@esbuild/win32-arm64": "0.17.6", - "@esbuild/win32-ia32": "0.17.6", - "@esbuild/win32-x64": "0.17.6" - } - }, - "node_modules/@remix-run/dev/node_modules/postcss": { - "version": "8.4.24", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", - "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", - "dev": true, + "node": ">=4" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], - "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "bin": { + "nanoid": "bin/nanoid.cjs" }, "engines": { - "node": "^10 || ^12 || >=14" + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/@remix-run/dev/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, + "node_modules/next": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/next/-/next-13.4.6.tgz", + "integrity": "sha512-sjVqjxU+U2aXZnYt4Ud6CTLNNwWjdSfMgemGpIQJcN3Z7Jni9xRWbR0ie5fQzCg87aLqQVhKA2ud2gPoqJ9lGw==", "dependencies": { - "lru-cache": "^6.0.0" + "@next/env": "13.4.6", + "@swc/helpers": "0.5.1", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001406", + "postcss": "8.4.14", + "styled-jsx": "5.1.1", + "watchpack": "2.4.0", + "zod": "3.21.4" }, "bin": { - "semver": "bin/semver.js" + "next": "dist/bin/next" }, "engines": { - "node": ">=10" + "node": ">=16.8.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "13.4.6", + "@next/swc-darwin-x64": "13.4.6", + "@next/swc-linux-arm64-gnu": "13.4.6", + "@next/swc-linux-arm64-musl": "13.4.6", + "@next/swc-linux-x64-gnu": "13.4.6", + "@next/swc-linux-x64-musl": "13.4.6", + "@next/swc-win32-arm64-msvc": "13.4.6", + "@next/swc-win32-ia32-msvc": "13.4.6", + "@next/swc-win32-x64-msvc": "13.4.6" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "fibers": ">= 3.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "fibers": { + "optional": true + }, + "sass": { + "optional": true + } } }, - "node_modules/@remix-run/dev/node_modules/semver/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/node-fetch": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", + "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", "dev": true, "dependencies": { - "yallist": "^4.0.0" + "whatwg-url": "^5.0.0" }, "engines": { - "node": ">=10" + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, - "node_modules/@remix-run/router": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.6.3.tgz", - "integrity": "sha512-EXJysQ7J3veRECd0kZFQwYYd5sJMcq2O/m60zu1W2l3oVQ9xtub8jTOtYRE0+M2iomyG/W3Ps7+vp2kna0C27Q==", + "node_modules/node-gyp-build": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", + "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", "dev": true, - "engines": { - "node": ">=14" + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" } }, - "node_modules/@remix-run/server-runtime": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/@remix-run/server-runtime/-/server-runtime-1.17.0.tgz", - "integrity": "sha512-xcUXaOibfIFZlvuyuWouz/t3fYhHCqRoKeGxQFGd1BvQBCmPaiau7B1Ao4aJFKyY7eU/L35KCaGzZBTdIF+d5w==", + "node_modules/nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", "dev": true, "dependencies": { - "@remix-run/router": "1.6.3", - "@web3-storage/multipart-parser": "^1.0.0", - "cookie": "^0.4.1", - "set-cookie-parser": "^2.4.8", - "source-map": "^0.7.3" + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" }, "engines": { - "node": ">=14" + "node": ">=6" } }, - "node_modules/@rollup/pluginutils": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", - "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", + "node_modules/npmlog": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", + "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", "dev": true, "dependencies": { - "estree-walker": "^2.0.1", - "picomatch": "^2.2.2" - }, - "engines": { - "node": ">= 8.0.0" + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" } }, - "node_modules/@sinclair/typebox": { - "version": "0.25.24", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", - "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", - "dev": true - }, - "node_modules/@sindresorhus/is": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", - "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/is?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/@swc/helpers": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", - "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, "dependencies": { - "tslib": "^2.4.0" + "wrappy": "1" } }, - "node_modules/@szmarczak/http-timer": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", - "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "node_modules/parse-ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz", + "integrity": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==", "dev": true, - "dependencies": { - "defer-to-connect": "^2.0.0" - }, "engines": { - "node": ">=10" + "node": ">=6" } }, - "node_modules/@tootallnate/once": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "node_modules/path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "dev": true + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true, "engines": { - "node": ">= 6" + "node": ">=0.10.0" } }, - "node_modules/@ts-morph/common": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/@ts-morph/common/-/common-0.11.1.tgz", - "integrity": "sha512-7hWZS0NRpEsNV8vWJzg7FEz6V8MaLNeJOmwmghqUXTpzk16V1LLZhdo+4QvE/+zv4cVci0OviuJFnqhEfoV3+g==", - "dev": true, - "dependencies": { - "fast-glob": "^3.2.7", - "minimatch": "^3.0.4", - "mkdirp": "^1.0.4", - "path-browserify": "^1.0.1" - } + "node_modules/path-to-regexp": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz", + "integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==", + "dev": true }, - "node_modules/@ts-morph/common/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" }, - "node_modules/@ts-morph/common/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, "engines": { - "node": "*" + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", - "dev": true - }, - "node_modules/@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "dev": true - }, - "node_modules/@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "dev": true - }, - "node_modules/@tsconfig/node16": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", - "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", - "dev": true - }, - "node_modules/@types/acorn": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz", - "integrity": "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==", - "dev": true, + "node_modules/postcss": { + "version": "8.4.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", + "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + ], "dependencies": { - "@types/estree": "*" + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" } }, - "node_modules/@types/cacheable-request": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", - "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", "dev": true, - "dependencies": { - "@types/http-cache-semantics": "*", - "@types/keyv": "^3.1.4", - "@types/node": "*", - "@types/responselike": "^1.0.0" + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@types/debug": { - "version": "4.1.8", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.8.tgz", - "integrity": "sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ==", + "node_modules/pretty-ms": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-7.0.1.tgz", + "integrity": "sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==", "dev": true, "dependencies": { - "@types/ms": "*" + "parse-ms": "^2.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@types/estree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", - "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", - "dev": true - }, - "node_modules/@types/estree-jsx": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-0.0.1.tgz", - "integrity": "sha512-gcLAYiMfQklDCPjQegGn0TBAn9it05ISEsEhlKQUddIk7o2XDokOcTN7HBO8tznM0D9dGezvHEfRZBfZf6me0A==", + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", "dev": true, - "dependencies": { - "@types/estree": "*" + "engines": { + "node": ">=6" } }, - "node_modules/@types/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, - "dependencies": { - "@types/minimatch": "*", - "@types/node": "*" - } + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "node_modules/@types/hast": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.4.tgz", - "integrity": "sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==", - "dev": true, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", "dependencies": { - "@types/unist": "*" + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/@types/http-cache-semantics": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", - "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==", - "dev": true - }, - "node_modules/@types/json-schema": { - "version": "7.0.12", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", - "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", - "dev": true - }, - "node_modules/@types/keyv": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", - "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", - "dev": true, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", "dependencies": { - "@types/node": "*" + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" } }, - "node_modules/@types/mdast": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.11.tgz", - "integrity": "sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==", + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, "dependencies": { - "@types/unist": "*" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/@types/mdurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.2.tgz", - "integrity": "sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==", - "dev": true - }, - "node_modules/@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", - "dev": true - }, - "node_modules/@types/ms": { - "version": "0.7.31", - "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz", - "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==", - "dev": true - }, - "node_modules/@types/node": { - "version": "20.3.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.3.tgz", - "integrity": "sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==", + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", "dev": true }, - "node_modules/@types/node-fetch": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", - "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true, - "dependencies": { - "@types/node": "*", - "form-data": "^3.0.0" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/@types/prop-types": { - "version": "15.7.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", - "dev": true - }, - "node_modules/@types/react": { - "version": "18.2.13", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.13.tgz", - "integrity": "sha512-vJ+zElvi/Zn9cVXB5slX2xL8PZodPCwPRDpittQdw43JR2AJ5k3vKdgJJyneV/cYgIbLQUwXa9JVDvUZXGba+Q==", + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, - "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" + "engines": { + "node": ">=8" } }, - "node_modules/@types/react-dom": { - "version": "18.2.6", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.6.tgz", - "integrity": "sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==", + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true, - "dependencies": { - "@types/react": "*" + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" } }, - "node_modules/@types/responselike": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", - "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, "dependencies": { - "@types/node": "*" + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@types/scheduler": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", - "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==", - "dev": true - }, - "node_modules/@types/unist": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", - "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==", - "dev": true - }, - "node_modules/@vanilla-extract/babel-plugin-debug-ids": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@vanilla-extract/babel-plugin-debug-ids/-/babel-plugin-debug-ids-1.0.3.tgz", - "integrity": "sha512-vm4jYu1xhSa6ofQ9AhIpR3DkAp4c+eoR1Rpm8/TQI4DmWbmGbOjYRcqV0aWsfaIlNhN4kFuxFMKBNN9oG6iRzA==", + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "dependencies": { - "@babel/core": "^7.20.7" + "queue-microtask": "^1.2.2" } }, - "node_modules/@vanilla-extract/css": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/@vanilla-extract/css/-/css-1.12.0.tgz", - "integrity": "sha512-TEttZfnqTRtwgVYiBWQSGGUiVaYWReHp59DsavITEvh4TpJNifZFGhBznHx4wQFEsyio6xA513jps4tmqR6zmw==", - "dev": true, - "dependencies": { - "@emotion/hash": "^0.9.0", - "@vanilla-extract/private": "^1.0.3", - "ahocorasick": "1.0.2", - "chalk": "^4.1.1", - "css-what": "^6.1.0", - "cssesc": "^3.0.0", - "csstype": "^3.0.7", - "deep-object-diff": "^1.1.9", - "deepmerge": "^4.2.2", - "media-query-parser": "^2.0.2", - "outdent": "^0.8.0" - } - }, - "node_modules/@vanilla-extract/integration": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/@vanilla-extract/integration/-/integration-6.2.1.tgz", - "integrity": "sha512-+xYJz07G7TFAMZGrOqArOsURG+xcYvqctujEkANjw2McCBvGEK505RxQqOuNiA9Mi9hgGdNp2JedSa94f3eoLg==", + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", "dependencies": { - "@babel/core": "^7.20.7", - "@babel/plugin-syntax-typescript": "^7.20.0", - "@vanilla-extract/babel-plugin-debug-ids": "^1.0.2", - "@vanilla-extract/css": "^1.10.0", - "esbuild": "0.17.6", - "eval": "0.1.6", - "find-up": "^5.0.0", - "javascript-stringify": "^2.0.1", - "lodash": "^4.17.21", - "mlly": "^1.1.0", - "outdent": "^0.8.0", - "vite": "^4.1.4", - "vite-node": "^0.28.5" - } - }, - "node_modules/@vanilla-extract/integration/node_modules/esbuild": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.6.tgz", - "integrity": "sha512-TKFRp9TxrJDdRWfSsSERKEovm6v30iHnrjlcGhLBOtReE28Yp1VSBRfO3GTaOFMoxsNerx4TjrhzSuma9ha83Q==", + "loose-envify": "^1.1.0" + } + }, + "node_modules/semver": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.1.1.tgz", + "integrity": "sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ==", "dev": true, - "hasInstallScript": true, "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.17.6", - "@esbuild/android-arm64": "0.17.6", - "@esbuild/android-x64": "0.17.6", - "@esbuild/darwin-arm64": "0.17.6", - "@esbuild/darwin-x64": "0.17.6", - "@esbuild/freebsd-arm64": "0.17.6", - "@esbuild/freebsd-x64": "0.17.6", - "@esbuild/linux-arm": "0.17.6", - "@esbuild/linux-arm64": "0.17.6", - "@esbuild/linux-ia32": "0.17.6", - "@esbuild/linux-loong64": "0.17.6", - "@esbuild/linux-mips64el": "0.17.6", - "@esbuild/linux-ppc64": "0.17.6", - "@esbuild/linux-riscv64": "0.17.6", - "@esbuild/linux-s390x": "0.17.6", - "@esbuild/linux-x64": "0.17.6", - "@esbuild/netbsd-x64": "0.17.6", - "@esbuild/openbsd-x64": "0.17.6", - "@esbuild/sunos-x64": "0.17.6", - "@esbuild/win32-arm64": "0.17.6", - "@esbuild/win32-ia32": "0.17.6", - "@esbuild/win32-x64": "0.17.6" - } - }, - "node_modules/@vanilla-extract/private": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@vanilla-extract/private/-/private-1.0.3.tgz", - "integrity": "sha512-17kVyLq3ePTKOkveHxXuIJZtGYs+cSoev7BlP+Lf4916qfDhk/HBjvlYDe8egrea7LNPHKwSZJK/bzZC+Q6AwQ==", - "dev": true - }, - "node_modules/@vercel/build-utils": { - "version": "6.7.5", - "resolved": "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-6.7.5.tgz", - "integrity": "sha512-nzglYEz9BvZH0lptfTtTVDDD3Dyn31gnBGChOUT7J1jkzlMT1IReuysgJPisaWk4v92Ax5SpZL35I0lOQdfKwQ==", - "dev": true + "semver": "bin/semver" + } }, - "node_modules/@vercel/error-utils": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@vercel/error-utils/-/error-utils-1.0.10.tgz", - "integrity": "sha512-nsKy2sy+pjUWyKI1V/XXKspVzHMYgSalmj5+EsKWFXZbnNZicqxNtMR94J8Hs7SB4TQxh0s4KhczJtL59AVGMg==", + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", "dev": true }, - "node_modules/@vercel/gatsby-plugin-vercel-analytics": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-analytics/-/gatsby-plugin-vercel-analytics-1.0.10.tgz", - "integrity": "sha512-v329WHdtIce+y7oAmaWRvEx59Xfo0FxlQqK4BJG0u6VWYoKWPaflohDAiehIZf/YHCRVb59ZxnzmMOcm/LR8YQ==", + "node_modules/signal-exit": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", + "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", "dev": true, - "dependencies": { - "@babel/runtime": "7.12.1", - "web-vitals": "0.2.4" + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@vercel/gatsby-plugin-vercel-builder": { - "version": "1.3.10", - "resolved": "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.10.tgz", - "integrity": "sha512-LtmjAUrH+1G4ryyjCCqITvPivEFb6qby7rVGRplb+rtI5RrT/igqz95FrAC70+xpSVsqz4nu3j15NkEIR3woog==", - "dev": true, - "dependencies": { - "@sinclair/typebox": "0.25.24", - "@vercel/build-utils": "6.7.5", - "@vercel/node": "2.15.2", - "@vercel/routing-utils": "2.2.1", - "esbuild": "0.14.47", - "etag": "1.8.1", - "fs-extra": "11.1.0" + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "engines": { + "node": ">=0.10.0" } }, - "node_modules/@vercel/gatsby-plugin-vercel-builder/node_modules/fs-extra": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", - "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", - "dev": true, + "node_modules/sswr": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/sswr/-/sswr-1.10.0.tgz", + "integrity": "sha512-nLWAJSQy3h8t7rrbTXanRyVHuQPj4PwKIVGe4IMlxJFdhyaxnN/JGACnvQKGDeWiTGYIZIx/jRuUsPEF0867Pg==", "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "swrev": "^3.0.0" }, - "engines": { - "node": ">=14.14" + "peerDependencies": { + "svelte": "^3.29.0" } }, - "node_modules/@vercel/go": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@vercel/go/-/go-2.5.1.tgz", - "integrity": "sha512-yZGzzGmVXt2Rsy1cR0EDbst0fMhdELQY8c3jXy6/FTWJFG1e/40JYksu+WiRCxRBp8e7zfcxMrv0dN8JWRmbPQ==", - "dev": true - }, - "node_modules/@vercel/hydrogen": { - "version": "0.0.64", - "resolved": "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-0.0.64.tgz", - "integrity": "sha512-1rzFB664G6Yzp7j4ezW9hvVjqnaU2BhyUdhchbsxtRuxkMpGgPBZKhjzRQHFvlmkz37XLC658T5Nb1P91b4sBw==", - "dev": true - }, - "node_modules/@vercel/next": { - "version": "3.8.6", - "resolved": "https://registry.npmjs.org/@vercel/next/-/next-3.8.6.tgz", - "integrity": "sha512-q+BxVLAfKFjTcak+z3U0SvYpgsnF8spu3Wz0GdRSVHiZpd1TtmIIp5r5RT5WVJLt4NNgmD4KxLNbvXhwjxOFKA==", - "dev": true - }, - "node_modules/@vercel/nft": { - "version": "0.22.5", - "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.22.5.tgz", - "integrity": "sha512-mug57Wd1BL7GMj9gXMgMeKUjdqO0e4u+0QLPYMFE1rwdJ+55oPy6lp3nIBCS8gOvigT62UI4QKUL2sGqcoW4Hw==", - "dev": true, - "dependencies": { - "@mapbox/node-pre-gyp": "^1.0.5", - "@rollup/pluginutils": "^4.0.0", - "acorn": "^8.6.0", - "async-sema": "^3.1.1", - "bindings": "^1.4.0", - "estree-walker": "2.0.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.2", - "node-gyp-build": "^4.2.2", - "resolve-from": "^5.0.0" - }, - "bin": { - "nft": "out/cli.js" - }, + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", "engines": { - "node": ">=14" + "node": ">=10.0.0" } }, - "node_modules/@vercel/node": { - "version": "2.15.2", - "resolved": "https://registry.npmjs.org/@vercel/node/-/node-2.15.2.tgz", - "integrity": "sha512-1Dn4hdQY/ErHXOB0+h3I0zIlqAb6/2LRBi+8Od+MYG8ooGKkTsK+j9IPWVBWn6ycBsM0eeNTIhqgYSGTYbMjMw==", + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", "dev": true, "dependencies": { - "@edge-runtime/node-utils": "2.0.3", - "@edge-runtime/primitives": "2.1.2", - "@edge-runtime/vm": "3.0.1", - "@types/node": "14.18.33", - "@types/node-fetch": "2.6.3", - "@vercel/build-utils": "6.7.5", - "@vercel/error-utils": "1.0.10", - "@vercel/static-config": "2.0.17", - "async-listen": "3.0.0", - "edge-runtime": "2.4.3", - "esbuild": "0.14.47", - "exit-hook": "2.2.1", - "node-fetch": "2.6.9", - "path-to-regexp": "6.2.1", - "ts-morph": "12.0.0", - "ts-node": "10.9.1", - "typescript": "4.9.5" + "safe-buffer": "~5.2.0" } }, - "node_modules/@vercel/node/node_modules/@edge-runtime/primitives": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-2.1.2.tgz", - "integrity": "sha512-SR04SMDybALlhIYIi0hiuEUwIl0b7Sn+RKwQkX6hydg4+AKMzBNDFhj2nqHDD1+xkHArV9EhmJIb6iGjShwSzg==", + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, "engines": { - "node": ">=14" + "node": ">=8" } }, - "node_modules/@vercel/node/node_modules/@edge-runtime/vm": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.1.tgz", - "integrity": "sha512-69twXLIcqVx0iNlc1vFqnXgka2CZi2c/QBAmMzXBk0M6mPG+ICCBh2dd+cv1K+HW2pfLuSW+EskkFXWGeCf1Vw==", + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "dependencies": { - "@edge-runtime/primitives": "3.0.1" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">=14" + "node": ">=8" } }, - "node_modules/@vercel/node/node_modules/@edge-runtime/vm/node_modules/@edge-runtime/primitives": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.1.tgz", - "integrity": "sha512-l5NNDcPkKW4N6qRmB8zzpCF6uRW1S808V/zm72z7b/aWwZUYbmEPPkzyhGAW0aQxLU1pGdZ8u2gNjamdaU6RXw==", - "dev": true, + "node_modules/styled-jsx": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", + "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", + "dependencies": { + "client-only": "0.0.1" + }, "engines": { - "node": ">=14" + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } } }, - "node_modules/@vercel/node/node_modules/@types/node": { - "version": "14.18.33", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.33.tgz", - "integrity": "sha512-qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg==", - "dev": true + "node_modules/svelte": { + "version": "3.59.2", + "resolved": "https://registry.npmjs.org/svelte/-/svelte-3.59.2.tgz", + "integrity": "sha512-vzSyuGr3eEoAtT/A6bmajosJZIUWySzY2CzB3w2pgPvnkUjGqlDnsNnA0PMO+mMAhuyMul6C2uuZzY6ELSkzyA==", + "peer": true, + "engines": { + "node": ">= 8" + } }, - "node_modules/@vercel/node/node_modules/edge-runtime": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.4.3.tgz", - "integrity": "sha512-Amv/P+OJhxopvoVXFr7UXAKheBpdLeCcdR5Vw4GSdNFDWVny9sioQbczjEKPLER5WsMXl17P+llS011Xftducw==", - "dev": true, + "node_modules/swr": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/swr/-/swr-2.1.5.tgz", + "integrity": "sha512-/OhfZMcEpuz77KavXST5q6XE9nrOBOVcBLWjMT+oAE/kQHyE3PASrevXCtQDZ8aamntOfFkbVJp7Il9tNBQWrw==", "dependencies": { - "@edge-runtime/format": "2.1.0", - "@edge-runtime/vm": "3.0.3", - "async-listen": "3.0.0", - "mri": "1.2.0", - "picocolors": "1.0.0", - "pretty-bytes": "5.6.0", - "pretty-ms": "7.0.1", - "signal-exit": "4.0.2", - "time-span": "4.0.0" + "use-sync-external-store": "^1.2.0" }, - "bin": { - "edge-runtime": "dist/cli/index.js" + "peerDependencies": { + "react": "^16.11.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/swrev": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/swrev/-/swrev-3.0.0.tgz", + "integrity": "sha512-QJuZiptdOmbDY45pECBRVEgnoBlOKjeT2MWVz04wKHpWX15hM3P7EjcIbHDg5yLoPCMQ7to3349MEE+l9QF5HA==" + }, + "node_modules/swrv": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/swrv/-/swrv-1.0.3.tgz", + "integrity": "sha512-sl+eLEE+aPPjhP1E8gQ75q3RPRyw5Gd/kROnrTFo3+LkCeLskv7F+uAl5W97wgJkzitobL6FLsRPVm0DgIgN8A==", + "peerDependencies": { + "vue": ">=3.2.26 < 4" + } + }, + "node_modules/tar": { + "version": "6.1.15", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz", + "integrity": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==", + "dev": true, + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" }, "engines": { - "node": ">=14" + "node": ">=10" } }, - "node_modules/@vercel/node/node_modules/edge-runtime/node_modules/@edge-runtime/primitives": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.3.tgz", - "integrity": "sha512-YnfMWMRQABAH8IsnFMJWMW+SyB4ZeYBPnR7V0aqdnew7Pq60cbH5DyFjS/FhiLwvHQk9wBREmXD7PP0HooEQ1A==", + "node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", "dev": true, "engines": { - "node": ">=14" + "node": ">=8" } }, - "node_modules/@vercel/node/node_modules/edge-runtime/node_modules/@edge-runtime/vm": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.3.tgz", - "integrity": "sha512-SPfI1JeIRNs/4EEE2Oc0X6gG3RqjD1TnKu2lwmwFXq0435xgZGKhc3UiKkYAdoMn2dNFD73nlabMKHBRoMRpxg==", + "node_modules/time-span": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/time-span/-/time-span-4.0.0.tgz", + "integrity": "sha512-MyqZCTGLDZ77u4k+jqg4UlrzPTPZ49NDlaekU6uuFaJLzPIN1woaRXCbGeqOfxwc3Y37ZROGAJ614Rdv7Olt+g==", "dev": true, "dependencies": { - "@edge-runtime/primitives": "3.0.3" + "convert-hrtime": "^3.0.0" }, "engines": { - "node": ">=14" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@vercel/node/node_modules/typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" + "dependencies": { + "is-number": "^7.0.0" }, "engines": { - "node": ">=4.2.0" + "node": ">=8.0" } }, - "node_modules/@vercel/python": { - "version": "3.1.60", - "resolved": "https://registry.npmjs.org/@vercel/python/-/python-3.1.60.tgz", - "integrity": "sha512-1aYinyTfejS8Us+sOum+RQPYcre0vF3XoL7ohL170ZCcHA0l35qV0b1slGAmLt3pqaHKYy3g/nkzUhuR8XXIrQ==", + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", "dev": true }, - "node_modules/@vercel/redwood": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/@vercel/redwood/-/redwood-1.1.15.tgz", - "integrity": "sha512-j0XaXe4ZpGVHG7XQSmZ3kza6s+ZtOBfRhnSxA70yCkrvPNN3tZgF3fevSKXizfL9fzVDd7Tdj++SCGWMdGfsyA==", + "node_modules/ts-morph": { + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/ts-morph/-/ts-morph-12.0.0.tgz", + "integrity": "sha512-VHC8XgU2fFW7yO1f/b3mxKDje1vmyzFXHWzOYmKEkCEwcLjDtbdLgBQviqj4ZwP4MJkQtRo6Ha2I29lq/B+VxA==", "dev": true, "dependencies": { - "@vercel/nft": "0.22.5", - "@vercel/routing-utils": "2.2.1", - "semver": "6.1.1" + "@ts-morph/common": "~0.11.0", + "code-block-writer": "^10.1.1" } }, - "node_modules/@vercel/remix-builder": { - "version": "1.8.14", - "resolved": "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-1.8.14.tgz", - "integrity": "sha512-4CnYxCv6rgRxyXGnpGySf+K2rihLgTkMKN9pYJKQJh/VmlBcxqYP9tndDEH8sYtDsdUZuSfuX3ecajGuqb/wPA==", + "node_modules/ts-node": { + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", + "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", "dev": true, "dependencies": { - "@remix-run/dev": "npm:@vercel/remix-run-dev@1.17.0", - "@vercel/build-utils": "6.7.5", - "@vercel/nft": "0.22.5", - "@vercel/static-config": "2.0.17", - "path-to-regexp": "6.2.1", - "semver": "7.3.8", - "ts-morph": "12.0.0" + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } } }, - "node_modules/@vercel/remix-builder/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/ts-node/node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, + "node_modules/ts-toolbelt": { + "version": "6.15.5", + "resolved": "https://registry.npmjs.org/ts-toolbelt/-/ts-toolbelt-6.15.5.tgz", + "integrity": "sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A==", + "dev": true + }, + "node_modules/tslib": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", + "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==" + }, + "node_modules/typescript": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", + "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", "dev": true, - "dependencies": { - "yallist": "^4.0.0" + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" }, "engines": { - "node": ">=10" + "node": ">=14.17" } }, - "node_modules/@vercel/remix-builder/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, "engines": { - "node": ">=10" + "node": ">= 10.0.0" } }, - "node_modules/@vercel/routing-utils": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@vercel/routing-utils/-/routing-utils-2.2.1.tgz", - "integrity": "sha512-kzMZsvToDCDskNRZD71B9UAgstec7ujmlGH8cBEo6F/07VaFeji6GQdgd6Zwnrj+TvzQBggKoPQR64VkVY8Lzw==", + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, "dependencies": { - "path-to-regexp": "6.1.0" - }, - "optionalDependencies": { - "ajv": "^6.0.0" + "punycode": "^2.1.0" } }, - "node_modules/@vercel/routing-utils/node_modules/path-to-regexp": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.1.0.tgz", - "integrity": "sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==", + "node_modules/use-sync-external-store": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", + "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "dev": true }, - "node_modules/@vercel/ruby": { - "version": "1.3.76", - "resolved": "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.76.tgz", - "integrity": "sha512-J8I0B7wAn8piGoPhBroBfJWgMEJTMEL/2o8MCoCyWdaE7MRtpXhI10pj8IvcUvAECoGJ+SM1Pm+SvBqtbtZ5FQ==", + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", "dev": true }, - "node_modules/@vercel/static-build": { - "version": "1.3.37", - "resolved": "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.3.37.tgz", - "integrity": "sha512-AkmWV8sqXUqkVj4F7vt7LZ9cRfO57U7he23l3xvykD/xV2ufsuLxwgIS9idM5AeqVh7juJNuTJq+ObIht6OgLw==", + "node_modules/vercel": { + "version": "31.2.2", + "resolved": "https://registry.npmjs.org/vercel/-/vercel-31.2.2.tgz", + "integrity": "sha512-g9j7h/1vunFJ33lJddMV7tgZycu6vRDXIEE+9uDYO6i+G7Is9s917tpjguQmUAT9nzmX7cwAmbx34QxGAXBpWw==", "dev": true, "dependencies": { - "@vercel/gatsby-plugin-vercel-analytics": "1.0.10", - "@vercel/gatsby-plugin-vercel-builder": "1.3.10" + "@vercel/build-utils": "6.8.2", + "@vercel/go": "2.5.1", + "@vercel/hydrogen": "0.0.64", + "@vercel/next": "3.9.3", + "@vercel/node": "2.15.8", + "@vercel/python": "3.1.60", + "@vercel/redwood": "1.1.15", + "@vercel/remix-builder": "1.9.1", + "@vercel/ruby": "1.3.76", + "@vercel/static-build": "1.3.44" + }, + "bin": { + "vc": "dist/index.js", + "vercel": "dist/index.js" + }, + "engines": { + "node": ">= 14" } }, - "node_modules/@vercel/static-config": { - "version": "2.0.17", - "resolved": "https://registry.npmjs.org/@vercel/static-config/-/static-config-2.0.17.tgz", - "integrity": "sha512-2f50OTVrN07x7pH+XNW0e7cj7T+Ufg+19+a2N3/XZBjQmV+FaMlmSLiaQ4tBxp2H8lWWHzENua7ZSSQPtRZ3/A==", - "dev": true, - "dependencies": { - "ajv": "8.6.3", - "json-schema-to-ts": "1.6.4", - "ts-morph": "12.0.0" - } - }, - "node_modules/@vercel/static-config/node_modules/ajv": { - "version": "8.6.3", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.6.3.tgz", - "integrity": "sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/@vercel/static-config/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "node_modules/@vue/compiler-core": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.4.tgz", - "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==", - "peer": true, - "dependencies": { - "@babel/parser": "^7.21.3", - "@vue/shared": "3.3.4", - "estree-walker": "^2.0.2", - "source-map-js": "^1.0.2" - } - }, - "node_modules/@vue/compiler-dom": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz", - "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==", - "peer": true, - "dependencies": { - "@vue/compiler-core": "3.3.4", - "@vue/shared": "3.3.4" - } - }, - "node_modules/@vue/compiler-sfc": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz", - "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==", - "peer": true, - "dependencies": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.4", - "@vue/compiler-dom": "3.3.4", - "@vue/compiler-ssr": "3.3.4", - "@vue/reactivity-transform": "3.3.4", - "@vue/shared": "3.3.4", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.0", - "postcss": "^8.1.10", - "source-map-js": "^1.0.2" - } - }, - "node_modules/@vue/compiler-ssr": { + "node_modules/vue": { "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz", - "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.3.4.tgz", + "integrity": "sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==", "peer": true, "dependencies": { "@vue/compiler-dom": "3.3.4", + "@vue/compiler-sfc": "3.3.4", + "@vue/runtime-dom": "3.3.4", + "@vue/server-renderer": "3.3.4", "@vue/shared": "3.3.4" } }, - "node_modules/@vue/reactivity": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.4.tgz", - "integrity": "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==", - "peer": true, - "dependencies": { - "@vue/shared": "3.3.4" - } - }, - "node_modules/@vue/reactivity-transform": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz", - "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==", - "peer": true, - "dependencies": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.4", - "@vue/shared": "3.3.4", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.0" - } - }, - "node_modules/@vue/runtime-core": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.4.tgz", - "integrity": "sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==", - "peer": true, - "dependencies": { - "@vue/reactivity": "3.3.4", - "@vue/shared": "3.3.4" - } - }, - "node_modules/@vue/runtime-dom": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz", - "integrity": "sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==", - "peer": true, - "dependencies": { - "@vue/runtime-core": "3.3.4", - "@vue/shared": "3.3.4", - "csstype": "^3.1.1" - } - }, - "node_modules/@vue/server-renderer": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.4.tgz", - "integrity": "sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==", - "peer": true, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", "dependencies": { - "@vue/compiler-ssr": "3.3.4", - "@vue/shared": "3.3.4" + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" }, - "peerDependencies": { - "vue": "3.3.4" + "engines": { + "node": ">=10.13.0" } }, - "node_modules/@vue/shared": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz", - "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==", - "peer": true - }, - "node_modules/@web3-storage/multipart-parser": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@web3-storage/multipart-parser/-/multipart-parser-1.0.0.tgz", - "integrity": "sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw==", + "node_modules/web-vitals": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-0.2.4.tgz", + "integrity": "sha512-6BjspCO9VriYy12z356nL6JBS0GYeEcA457YyRzD+dD6XYCQ75NKhcOHUMHentOE7OcVCIXXDvOm0jKFfQG2Gg==", "dev": true }, - "node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", "dev": true }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "dev": true, - "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/acorn": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", - "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "dev": true, "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" } }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "node_modules/wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", "dev": true, "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" + "string-width": "^1.0.2 || 2 || 3 || 4" } }, - "node_modules/ahocorasick": { + "node_modules/wrappy": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/ahocorasick/-/ahocorasick-1.0.2.tgz", - "integrity": "sha512-hCOfMzbFx5IDutmWLAt6MZwOUjIfSM9G9FyVxytmE4Rs/5YDPWQrD/+IR1w+FweD9H2oOZEnv36TmkjhNURBVA==", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, - "node_modules/ai": { - "version": "2.1.9", - "resolved": "https://registry.npmjs.org/ai/-/ai-2.1.9.tgz", - "integrity": "sha512-PiDWO/5lFvnbEziJjl+4CE44jg4weknJuW5VZAQQ4PDyFnDjxoCMkSJ95zEatX3qrYZfRP6zXHkmy+/OqwclfA==", - "dependencies": { - "eventsource-parser": "1.0.0", - "nanoid": "^3.3.6", - "sswr": "^1.10.0", - "swr": "2.1.5", - "swrv": "1.0.3" - }, - "engines": { - "node": ">=14.6" - }, - "peerDependencies": { - "react": "^18.2.0", - "svelte": "^3.29.0", - "vue": "^3.3.4" - }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "svelte": { - "optional": true - }, - "vue": { - "optional": true - } - } + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "optional": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true - }, - "node_modules/are-we-there-yet": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", - "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", - "dev": true, - "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", - "dev": true - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "dev": true - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/ast-types": { - "version": "0.13.4", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", - "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", - "dev": true, - "dependencies": { - "tslib": "^2.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/astring": { - "version": "1.8.6", - "resolved": "https://registry.npmjs.org/astring/-/astring-1.8.6.tgz", - "integrity": "sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==", - "dev": true, - "bin": { - "astring": "bin/astring" - } - }, - "node_modules/async-listen": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/async-listen/-/async-listen-3.0.0.tgz", - "integrity": "sha512-V+SsTpDqkrWTimiotsyl33ePSjA5/KrithwupuvJ6ztsqPvGv6ge4OredFhPffVXiLN/QUWvE0XcqJaYgt6fOg==", - "dev": true, - "engines": { - "node": ">= 14" - } - }, - "node_modules/async-sema": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz", - "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==", - "dev": true - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true - }, - "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.3.tgz", - "integrity": "sha512-bM3gHc337Dta490gg+/AseNB9L4YLHxq1nGKZZSHbhXv4aTYU2MD2cjza1Ru4S6975YLTaL1K8uJf6ukJhhmtw==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.4.0", - "semver": "^6.1.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.1.tgz", - "integrity": "sha512-ikFrZITKg1xH6pLND8zT14UPgjKHiGLqex7rGEZCH2EvhsneJaJPemmpQaIZV5AL03II+lXylw3UmddDK8RU5Q==", - "dev": true, - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.0", - "core-js-compat": "^3.30.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.0.tgz", - "integrity": "sha512-hDJtKjMLVa7Z+LwnTCxoDLQj6wdc+B8dun7ayF2fYieI6OzfuvcLMB32ihJZ4UhCBwNYGl5bg/x/P9cMdnkc2g==", - "dev": true, - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/bail": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", - "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "dev": true, - "dependencies": { - "file-uri-to-path": "1.0.0" - } - }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "node_modules/body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", - "dev": true, - "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/body-parser/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/body-parser/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browserify-zlib": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz", - "integrity": "sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==", - "dev": true, - "dependencies": { - "pako": "~0.2.0" - } - }, - "node_modules/browserslist": { - "version": "4.21.9", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", - "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001503", - "electron-to-chromium": "^1.4.431", - "node-releases": "^2.0.12", - "update-browserslist-db": "^1.0.11" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true - }, - "node_modules/busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "dependencies": { - "streamsearch": "^1.1.0" - }, - "engines": { - "node": ">=10.16.0" - } - }, - "node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/cac": { - "version": "6.7.14", - "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", - "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/cacache": { - "version": "15.3.0", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", - "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", - "dev": true, - "dependencies": { - "@npmcli/fs": "^1.0.0", - "@npmcli/move-file": "^1.0.1", - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "glob": "^7.1.4", - "infer-owner": "^1.0.4", - "lru-cache": "^6.0.0", - "minipass": "^3.1.1", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.2", - "mkdirp": "^1.0.3", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^8.0.1", - "tar": "^6.0.2", - "unique-filename": "^1.1.1" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/cacache/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/cacheable-lookup": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", - "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", - "dev": true, - "engines": { - "node": ">=10.6.0" - } - }, - "node_modules/cacheable-request": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", - "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", - "dev": true, - "dependencies": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^4.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^6.0.1", - "responselike": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cacheable-request/node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cacheable-request/node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001509", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001509.tgz", - "integrity": "sha512-2uDDk+TRiTX5hMcUYT/7CSyzMZxjfGu0vAUjS2g0LSD8UoXOv0LtpH4LxGMemsiPq6LCVIUjNwVM0erkOkGCDA==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/character-entities": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", - "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/character-entities-html4": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", - "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/character-entities-legacy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", - "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/character-reference-invalid": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", - "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true - }, - "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, - "dependencies": { - "restore-cursor": "^3.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cli-spinners": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.0.tgz", - "integrity": "sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==", - "dev": true, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/client-only": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", - "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" - }, - "node_modules/clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "dev": true, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/clone-response": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", - "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", - "dev": true, - "dependencies": { - "mimic-response": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/code-block-writer": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-10.1.1.tgz", - "integrity": "sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==", - "dev": true - }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true, - "bin": { - "color-support": "bin.js" - } - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/comma-separated-tokens": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", - "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", - "dev": true - }, - "node_modules/content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "dev": true, - "dependencies": { - "safe-buffer": "5.2.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/convert-hrtime": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-3.0.0.tgz", - "integrity": "sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, - "node_modules/cookie": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", - "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "dev": true - }, - "node_modules/core-js-compat": { - "version": "3.31.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.31.0.tgz", - "integrity": "sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==", - "dev": true, - "dependencies": { - "browserslist": "^4.21.5" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true - }, - "node_modules/create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "dev": true - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", - "dev": true, - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true, - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" - }, - "node_modules/data-uri-to-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz", - "integrity": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/deasync": { - "version": "0.1.28", - "resolved": "https://registry.npmjs.org/deasync/-/deasync-0.1.28.tgz", - "integrity": "sha512-QqLF6inIDwiATrfROIyQtwOQxjZuek13WRYZ7donU5wJPLoP67MnYxA6QtqdvdBy2mMqv5m3UefBVdJjvevOYg==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "dependencies": { - "bindings": "^1.5.0", - "node-addon-api": "^1.7.1" - }, - "engines": { - "node": ">=0.11.0" - } - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decode-named-character-reference": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", - "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", - "dev": true, - "dependencies": { - "character-entities": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "dev": true, - "dependencies": { - "mimic-response": "^3.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/decompress-response/node_modules/mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "node_modules/deep-object-diff": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/deep-object-diff/-/deep-object-diff-1.1.9.tgz", - "integrity": "sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==", - "dev": true - }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", - "dev": true, - "dependencies": { - "clone": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/defer-to-connect": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/degenerator": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-3.0.4.tgz", - "integrity": "sha512-Z66uPeBfHZAHVmue3HPfyKu2Q0rC2cRxbTOsvmU/po5fvvcx27W4mIu9n0PUlQih4oUYvcG1BsbtVv8x7KDOSw==", - "dev": true, - "dependencies": { - "ast-types": "^0.13.2", - "escodegen": "^1.8.1", - "esprima": "^4.0.0", - "vm2": "^3.9.17" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", - "dev": true - }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "dev": true, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/detect-indent": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", - "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/detect-libc": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", - "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/detect-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "dev": true, - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/dotenv": { - "version": "16.3.1", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", - "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/motdotla/dotenv?sponsor=1" - } - }, - "node_modules/duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - } - }, - "node_modules/duplexify/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/duplexify/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/duplexify/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/edge-runtime": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.4.4.tgz", - "integrity": "sha512-uq1YdIxkMDsBYLdSSp/w62PciCL46ic4m1Z/2G6N8RcAPI8p35O8u6hJQT83j28Dnt4U5iyvmwFMYouHMK51uA==", - "dev": true, - "dependencies": { - "@edge-runtime/format": "2.1.0", - "@edge-runtime/vm": "3.0.3", - "async-listen": "3.0.0", - "mri": "1.2.0", - "picocolors": "1.0.0", - "pretty-bytes": "5.6.0", - "pretty-ms": "7.0.1", - "signal-exit": "4.0.2", - "time-span": "4.0.0" - }, - "bin": { - "edge-runtime": "dist/cli/index.js" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true - }, - "node_modules/electron-to-chromium": { - "version": "1.4.445", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.445.tgz", - "integrity": "sha512-++DB+9VK8SBJwC+X1zlMfJ1tMA3F0ipi39GdEp+x3cV2TyBihqAgad8cNMWtLDEkbH39nlDQP7PfGrDr3Dr7HA==", - "dev": true - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "dependencies": { - "once": "^1.4.0" - } - }, - "node_modules/esbuild": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.47.tgz", - "integrity": "sha512-wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA==", - "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "esbuild-android-64": "0.14.47", - "esbuild-android-arm64": "0.14.47", - "esbuild-darwin-64": "0.14.47", - "esbuild-darwin-arm64": "0.14.47", - "esbuild-freebsd-64": "0.14.47", - "esbuild-freebsd-arm64": "0.14.47", - "esbuild-linux-32": "0.14.47", - "esbuild-linux-64": "0.14.47", - "esbuild-linux-arm": "0.14.47", - "esbuild-linux-arm64": "0.14.47", - "esbuild-linux-mips64le": "0.14.47", - "esbuild-linux-ppc64le": "0.14.47", - "esbuild-linux-riscv64": "0.14.47", - "esbuild-linux-s390x": "0.14.47", - "esbuild-netbsd-64": "0.14.47", - "esbuild-openbsd-64": "0.14.47", - "esbuild-sunos-64": "0.14.47", - "esbuild-windows-32": "0.14.47", - "esbuild-windows-64": "0.14.47", - "esbuild-windows-arm64": "0.14.47" - } - }, - "node_modules/esbuild-android-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.47.tgz", - "integrity": "sha512-R13Bd9+tqLVFndncMHssZrPWe6/0Kpv2/dt4aA69soX4PRxlzsVpCvoJeFE8sOEoeVEiBkI0myjlkDodXlHa0g==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-android-arm64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.47.tgz", - "integrity": "sha512-OkwOjj7ts4lBp/TL6hdd8HftIzOy/pdtbrNA4+0oVWgGG64HrdVzAF5gxtJufAPOsEjkyh1oIYvKAUinKKQRSQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-darwin-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.47.tgz", - "integrity": "sha512-R6oaW0y5/u6Eccti/TS6c/2c1xYTb1izwK3gajJwi4vIfNs1s8B1dQzI1UiC9T61YovOQVuePDcfqHLT3mUZJA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-darwin-arm64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.47.tgz", - "integrity": "sha512-seCmearlQyvdvM/noz1L9+qblC5vcBrhUaOoLEDDoLInF/VQ9IkobGiLlyTPYP5dW1YD4LXhtBgOyevoIHGGnw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-freebsd-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.47.tgz", - "integrity": "sha512-ZH8K2Q8/Ux5kXXvQMDsJcxvkIwut69KVrYQhza/ptkW50DC089bCVrJZZ3sKzIoOx+YPTrmsZvqeZERjyYrlvQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-freebsd-arm64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.47.tgz", - "integrity": "sha512-ZJMQAJQsIOhn3XTm7MPQfCzEu5b9STNC+s90zMWe2afy9EwnHV7Ov7ohEMv2lyWlc2pjqLW8QJnz2r0KZmeAEQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-linux-32": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.47.tgz", - "integrity": "sha512-FxZOCKoEDPRYvq300lsWCTv1kcHgiiZfNrPtEhFAiqD7QZaXrad8LxyJ8fXGcWzIFzRiYZVtB3ttvITBvAFhKw==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-linux-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.47.tgz", - "integrity": "sha512-nFNOk9vWVfvWYF9YNYksZptgQAdstnDCMtR6m42l5Wfugbzu11VpMCY9XrD4yFxvPo9zmzcoUL/88y0lfJZJJw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-linux-arm": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.47.tgz", - "integrity": "sha512-ZGE1Bqg/gPRXrBpgpvH81tQHpiaGxa8c9Rx/XOylkIl2ypLuOcawXEAo8ls+5DFCcRGt/o3sV+PzpAFZobOsmA==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-linux-arm64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.47.tgz", - "integrity": "sha512-ywfme6HVrhWcevzmsufjd4iT3PxTfCX9HOdxA7Hd+/ZM23Y9nXeb+vG6AyA6jgq/JovkcqRHcL9XwRNpWG6XRw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-linux-mips64le": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.47.tgz", - "integrity": "sha512-mg3D8YndZ1LvUiEdDYR3OsmeyAew4MA/dvaEJxvyygahWmpv1SlEEnhEZlhPokjsUMfRagzsEF/d/2XF+kTQGg==", - "cpu": [ - "mips64el" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-linux-ppc64le": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.47.tgz", - "integrity": "sha512-WER+f3+szmnZiWoK6AsrTKGoJoErG2LlauSmk73LEZFQ/iWC+KhhDsOkn1xBUpzXWsxN9THmQFltLoaFEH8F8w==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-linux-riscv64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.47.tgz", - "integrity": "sha512-1fI6bP3A3rvI9BsaaXbMoaOjLE3lVkJtLxsgLHqlBhLlBVY7UqffWBvkrX/9zfPhhVMd9ZRFiaqXnB1T7BsL2g==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-linux-s390x": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.47.tgz", - "integrity": "sha512-eZrWzy0xFAhki1CWRGnhsHVz7IlSKX6yT2tj2Eg8lhAwlRE5E96Hsb0M1mPSE1dHGpt1QVwwVivXIAacF/G6mw==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-netbsd-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.47.tgz", - "integrity": "sha512-Qjdjr+KQQVH5Q2Q1r6HBYswFTToPpss3gqCiSw2Fpq/ua8+eXSQyAMG+UvULPqXceOwpnPo4smyZyHdlkcPppQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-openbsd-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.47.tgz", - "integrity": "sha512-QpgN8ofL7B9z8g5zZqJE+eFvD1LehRlxr25PBkjyyasakm4599iroUpaj96rdqRlO2ShuyqwJdr+oNqWwTUmQw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-plugin-polyfill-node": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/esbuild-plugin-polyfill-node/-/esbuild-plugin-polyfill-node-0.2.0.tgz", - "integrity": "sha512-rpCoK4mag0nehBtFlFMLSuL9bNBLEh8h3wZ/FsrJEDompA/AwOqInx6Xow01+CXAcvZYhkoJ0SIZiS37qkecDA==", - "dev": true, - "dependencies": { - "@jspm/core": "^2.0.1", - "import-meta-resolve": "^2.2.2" - }, - "peerDependencies": { - "esbuild": "*" - } - }, - "node_modules/esbuild-sunos-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.47.tgz", - "integrity": "sha512-uOeSgLUwukLioAJOiGYm3kNl+1wJjgJA8R671GYgcPgCx7QR73zfvYqXFFcIO93/nBdIbt5hd8RItqbbf3HtAQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-windows-32": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.47.tgz", - "integrity": "sha512-H0fWsLTp2WBfKLBgwYT4OTfFly4Im/8B5f3ojDv1Kx//kiubVY0IQunP2Koc/fr/0wI7hj3IiBDbSrmKlrNgLQ==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-windows-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.47.tgz", - "integrity": "sha512-/Pk5jIEH34T68r8PweKRi77W49KwanZ8X6lr3vDAtOlH5EumPE4pBHqkCUdELanvsT14yMXLQ/C/8XPi1pAtkQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-windows-arm64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.47.tgz", - "integrity": "sha512-HFSW2lnp62fl86/qPQlqw6asIwCnEsEoNIL1h2uVMgakddf+vUuMcCbtUY1i8sst7KkgHrVKCJQB33YhhOweCQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "dev": true - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/escodegen": { - "version": "1.14.3", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", - "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", - "dev": true, - "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^4.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=4.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" - } - }, - "node_modules/escodegen/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estree-util-attach-comments": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-2.1.1.tgz", - "integrity": "sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==", - "dev": true, - "dependencies": { - "@types/estree": "^1.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/estree-util-build-jsx": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-2.2.2.tgz", - "integrity": "sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==", - "dev": true, - "dependencies": { - "@types/estree-jsx": "^1.0.0", - "estree-util-is-identifier-name": "^2.0.0", - "estree-walker": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/estree-util-build-jsx/node_modules/@types/estree-jsx": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", - "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", - "dev": true, - "dependencies": { - "@types/estree": "*" - } - }, - "node_modules/estree-util-build-jsx/node_modules/estree-util-is-identifier-name": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", - "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/estree-util-build-jsx/node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "dev": true, - "dependencies": { - "@types/estree": "^1.0.0" - } - }, - "node_modules/estree-util-is-identifier-name": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-1.1.0.tgz", - "integrity": "sha512-OVJZ3fGGt9By77Ix9NhaRbzfbDV/2rx9EP7YIDJTmsZSEc5kYn2vWcNccYyahJL2uAQZK2a5Or2i0wtIKTPoRQ==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/estree-util-value-to-estree": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/estree-util-value-to-estree/-/estree-util-value-to-estree-1.3.0.tgz", - "integrity": "sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==", - "dev": true, - "dependencies": { - "is-plain-obj": "^3.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/estree-util-visit": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-1.2.1.tgz", - "integrity": "sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==", - "dev": true, - "dependencies": { - "@types/estree-jsx": "^1.0.0", - "@types/unist": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/estree-util-visit/node_modules/@types/estree-jsx": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", - "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", - "dev": true, - "dependencies": { - "@types/estree": "*" - } - }, - "node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/eval": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/eval/-/eval-0.1.6.tgz", - "integrity": "sha512-o0XUw+5OGkXw4pJZzQoXUk+H87DHuC+7ZE//oSrRGtatTmr12oTnLfg6QOq9DyTt0c/p4TwzgmkKrBzWTSizyQ==", - "dev": true, - "dependencies": { - "require-like": ">= 0.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/eventsource-parser": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-1.0.0.tgz", - "integrity": "sha512-9jgfSCa3dmEme2ES3mPByGXfgZ87VbP97tng1G2nWwWx6bV2nYxm2AWCrbQjXToSe+yYlqaZNtxffR9IeQr95g==", - "engines": { - "node": ">=14.18" - } - }, - "node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/execa/node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/exit-hook": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-2.2.1.tgz", - "integrity": "sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==", - "dev": true, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/express": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", - "dev": true, - "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/express/node_modules/cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/express/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/express/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/express/node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", - "dev": true - }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, - "node_modules/external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "dev": true, - "dependencies": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "node_modules/fast-glob": { - "version": "3.2.11", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", - "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true, - "optional": true - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dev": true, - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/fault": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fault/-/fault-2.0.1.tgz", - "integrity": "sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==", - "dev": true, - "dependencies": { - "format": "^0.2.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dev": true, - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "dev": true - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "dev": true, - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", - "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/format": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz", - "integrity": "sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==", - "dev": true, - "engines": { - "node": ">=0.4.x" - } - }, - "node_modules/forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "dev": true - }, - "node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/ftp": { - "version": "0.3.10", - "resolved": "https://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz", - "integrity": "sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ==", - "dev": true, - "dependencies": { - "readable-stream": "1.1.x", - "xregexp": "2.0.0" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/ftp/node_modules/isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", - "dev": true - }, - "node_modules/ftp/node_modules/readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "node_modules/ftp/node_modules/string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", - "dev": true - }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "node_modules/gauge": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", - "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", - "dev": true, - "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "object-assign": "^4.1.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/gauge/node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/generic-names": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/generic-names/-/generic-names-4.0.0.tgz", - "integrity": "sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==", - "dev": true, - "dependencies": { - "loader-utils": "^3.2.0" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-port": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", - "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-uri": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-3.0.2.tgz", - "integrity": "sha512-+5s0SJbGoyiJTZZ2JTpFPLMPSch72KEqGOTvQsBqg0RBWvwhWUSYZFAtz3TPW0GXJuLBJPts1E241iHg+VRfhg==", - "dev": true, - "dependencies": { - "@tootallnate/once": "1", - "data-uri-to-buffer": "3", - "debug": "4", - "file-uri-to-path": "2", - "fs-extra": "^8.1.0", - "ftp": "^0.3.10" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/get-uri/node_modules/file-uri-to-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-2.0.0.tgz", - "integrity": "sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/get-uri/node_modules/fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - }, - "engines": { - "node": ">=6 <7 || >=8" - } - }, - "node_modules/get-uri/node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "dev": true, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/get-uri/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/git-hooks-list": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/git-hooks-list/-/git-hooks-list-1.0.3.tgz", - "integrity": "sha512-Y7wLWcrLUXwk2noSka166byGCvhMtDRpgHdzCno1UQv/n/Hegp++a2xBWJL1lJarnKD3SWaljD+0z1ztqxuKyQ==", - "dev": true, - "funding": { - "url": "https://github.com/fisker/git-hooks-list?sponsor=1" - } - }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - }, - "node_modules/glob/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/glob/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/globby": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.0.tgz", - "integrity": "sha512-3LifW9M4joGZasyYPz2A1U74zbC/45fvpXUvO/9KbSa+VV0aGZarWkfdgKyR9sExNP0t0x0ss/UMJpNpcaTspw==", - "dev": true, - "dependencies": { - "@types/glob": "^7.1.1", - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.0.3", - "glob": "^7.1.3", - "ignore": "^5.1.1", - "merge2": "^1.2.3", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/got": { - "version": "11.8.6", - "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", - "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", - "dev": true, - "dependencies": { - "@sindresorhus/is": "^4.0.0", - "@szmarczak/http-timer": "^4.0.5", - "@types/cacheable-request": "^6.0.1", - "@types/responselike": "^1.0.0", - "cacheable-lookup": "^5.0.3", - "cacheable-request": "^7.0.2", - "decompress-response": "^6.0.0", - "http2-wrapper": "^1.0.0-beta.5.2", - "lowercase-keys": "^2.0.0", - "p-cancelable": "^2.0.0", - "responselike": "^2.0.0" - }, - "engines": { - "node": ">=10.19.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/got?sponsor=1" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - }, - "node_modules/gunzip-maybe": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/gunzip-maybe/-/gunzip-maybe-1.4.2.tgz", - "integrity": "sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==", - "dev": true, - "dependencies": { - "browserify-zlib": "^0.1.4", - "is-deflate": "^1.0.0", - "is-gzip": "^1.0.0", - "peek-stream": "^1.1.0", - "pumpify": "^1.3.3", - "through2": "^2.0.3" - }, - "bin": { - "gunzip-maybe": "bin.js" - } - }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", - "dev": true - }, - "node_modules/hast-util-to-estree": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-2.3.3.tgz", - "integrity": "sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==", - "dev": true, - "dependencies": { - "@types/estree": "^1.0.0", - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^2.0.0", - "@types/unist": "^2.0.0", - "comma-separated-tokens": "^2.0.0", - "estree-util-attach-comments": "^2.0.0", - "estree-util-is-identifier-name": "^2.0.0", - "hast-util-whitespace": "^2.0.0", - "mdast-util-mdx-expression": "^1.0.0", - "mdast-util-mdxjs-esm": "^1.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "style-to-object": "^0.4.1", - "unist-util-position": "^4.0.0", - "zwitch": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hast-util-to-estree/node_modules/@types/estree-jsx": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", - "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", - "dev": true, - "dependencies": { - "@types/estree": "*" - } - }, - "node_modules/hast-util-to-estree/node_modules/estree-util-is-identifier-name": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", - "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hast-util-whitespace": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz", - "integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true - }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dev": true, - "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/http-proxy-agent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", - "dev": true, - "dependencies": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/http2-wrapper": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", - "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", - "dev": true, - "dependencies": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.0.0" - }, - "engines": { - "node": ">=10.19.0" - } - }, - "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "dev": true, - "dependencies": { - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/icss-utils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/import-meta-resolve": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-2.2.2.tgz", - "integrity": "sha512-f8KcQ1D80V7RnqVm+/lirO9zkOxjGxhaTC1IPrBGd3MEfNgmNG67tSUO9gTi2F3Blr2Az6g1vocaxzkVnWl9MA==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "dev": true - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/inline-style-parser": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", - "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==", - "dev": true - }, - "node_modules/inquirer": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", - "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", - "dev": true, - "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/ip": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", - "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", - "dev": true - }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/is-alphabetical": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", - "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/is-alphanumerical": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", - "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", - "dev": true, - "dependencies": { - "is-alphabetical": "^2.0.0", - "is-decimal": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-buffer": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", - "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "engines": { - "node": ">=4" - } - }, - "node_modules/is-core-module": { - "version": "2.12.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", - "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", - "dev": true, - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-decimal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", - "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/is-deflate": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-deflate/-/is-deflate-1.0.0.tgz", - "integrity": "sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==", - "dev": true - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-gzip": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz", - "integrity": "sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-hexadecimal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", - "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-plain-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", - "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-reference": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.1.tgz", - "integrity": "sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==", - "dev": true, - "dependencies": { - "@types/estree": "*" - } - }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "node_modules/javascript-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", - "integrity": "sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==", - "dev": true - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsesc": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", - "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true - }, - "node_modules/json-schema-to-ts": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/json-schema-to-ts/-/json-schema-to-ts-1.6.4.tgz", - "integrity": "sha512-pR4yQ9DHz6itqswtHCm26mw45FSNfQ9rEQjosaZErhn5J3J2sIViQiz8rDaezjKAhFGpmsoczYVBgGHzFw/stA==", - "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.6", - "ts-toolbelt": "^6.15.5" - } - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true, - "optional": true - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", - "dev": true - }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/keyv": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", - "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", - "dev": true, - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/kleur": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", - "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", - "dev": true, - "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/loader-utils": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", - "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", - "dev": true, - "engines": { - "node": ">= 12.13.0" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", - "dev": true - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "dev": true - }, - "node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "dev": true, - "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/longest-streak": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", - "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/magic-string": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz", - "integrity": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==", - "peer": true, - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.13" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true - }, - "node_modules/markdown-extensions": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-1.1.1.tgz", - "integrity": "sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mdast-util-definitions": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz", - "integrity": "sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==", - "dev": true, - "dependencies": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "unist-util-visit": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/mdast-util-from-markdown": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz", - "integrity": "sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==", - "dev": true, - "dependencies": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "decode-named-character-reference": "^1.0.0", - "mdast-util-to-string": "^3.1.0", - "micromark": "^3.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-decode-string": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "unist-util-stringify-position": "^3.0.0", - "uvu": "^0.5.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/mdast-util-frontmatter": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mdast-util-frontmatter/-/mdast-util-frontmatter-1.0.1.tgz", - "integrity": "sha512-JjA2OjxRqAa8wEG8hloD0uTU0kdn8kbtOWpPP94NBkfAlbxn4S8gCGf/9DwFtEeGPXrDcNXdiDjVaRdUFqYokw==", - "dev": true, - "dependencies": { - "@types/mdast": "^3.0.0", - "mdast-util-to-markdown": "^1.3.0", - "micromark-extension-frontmatter": "^1.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/mdast-util-mdx": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-1.1.0.tgz", - "integrity": "sha512-leKb9uG7laXdyFlTleYV4ZEaCpsxeU1LlkkR/xp35pgKrfV1Y0fNCuOw9vaRc2a9YDpH22wd145Wt7UY5yzeZw==", - "dev": true, - "dependencies": { - "mdast-util-mdx-expression": "^1.0.0", - "mdast-util-mdx-jsx": "^1.0.0", - "mdast-util-mdxjs-esm": "^1.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/mdast-util-mdx-expression": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.2.tgz", - "integrity": "sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==", - "dev": true, - "dependencies": { - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "mdast-util-from-markdown": "^1.0.0", - "mdast-util-to-markdown": "^1.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/mdast-util-mdx-expression/node_modules/@types/estree-jsx": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", - "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", - "dev": true, - "dependencies": { - "@types/estree": "*" - } - }, - "node_modules/mdast-util-mdx-jsx": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-1.2.0.tgz", - "integrity": "sha512-5+ot/kfxYd3ChgEMwsMUO71oAfYjyRI3pADEK4I7xTmWLGQ8Y7ghm1CG36zUoUvDPxMlIYwQV/9DYHAUWdG4dA==", - "dev": true, - "dependencies": { - "@types/estree-jsx": "^0.0.1", - "@types/mdast": "^3.0.0", - "mdast-util-to-markdown": "^1.0.0", - "parse-entities": "^4.0.0", - "stringify-entities": "^4.0.0", - "unist-util-remove-position": "^4.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/mdast-util-mdxjs-esm": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.1.tgz", - "integrity": "sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==", - "dev": true, - "dependencies": { - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "mdast-util-from-markdown": "^1.0.0", - "mdast-util-to-markdown": "^1.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/mdast-util-mdxjs-esm/node_modules/@types/estree-jsx": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", - "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", - "dev": true, - "dependencies": { - "@types/estree": "*" - } - }, - "node_modules/mdast-util-phrasing": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz", - "integrity": "sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==", - "dev": true, - "dependencies": { - "@types/mdast": "^3.0.0", - "unist-util-is": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/mdast-util-to-hast": { - "version": "11.3.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-11.3.0.tgz", - "integrity": "sha512-4o3Cli3hXPmm1LhB+6rqhfsIUBjnKFlIUZvudaermXB+4/KONdd/W4saWWkC+LBLbPMqhFSSTSRgafHsT5fVJw==", - "dev": true, - "dependencies": { - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "@types/mdurl": "^1.0.0", - "mdast-util-definitions": "^5.0.0", - "mdurl": "^1.0.0", - "unist-builder": "^3.0.0", - "unist-util-generated": "^2.0.0", - "unist-util-position": "^4.0.0", - "unist-util-visit": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/mdast-util-to-markdown": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz", - "integrity": "sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==", - "dev": true, - "dependencies": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "longest-streak": "^3.0.0", - "mdast-util-phrasing": "^3.0.0", - "mdast-util-to-string": "^3.0.0", - "micromark-util-decode-string": "^1.0.0", - "unist-util-visit": "^4.0.0", - "zwitch": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/mdast-util-to-string": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", - "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", - "dev": true, - "dependencies": { - "@types/mdast": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/mdurl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", - "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", - "dev": true - }, - "node_modules/media-query-parser": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/media-query-parser/-/media-query-parser-2.0.2.tgz", - "integrity": "sha512-1N4qp+jE0pL5Xv4uEcwVUhIkwdUO3S/9gML90nqKA7v7FcOS5vUtatfzok9S9U1EJU8dHWlcv95WLnKmmxZI9w==", - "dev": true, - "dependencies": { - "@babel/runtime": "^7.12.5" - } - }, - "node_modules/media-query-parser/node_modules/@babel/runtime": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.5.tgz", - "integrity": "sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==", - "dev": true, - "dependencies": { - "regenerator-runtime": "^0.13.11" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", - "dev": true - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/micromark": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.2.0.tgz", - "integrity": "sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "@types/debug": "^4.0.0", - "debug": "^4.0.0", - "decode-named-character-reference": "^1.0.0", - "micromark-core-commonmark": "^1.0.1", - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-chunked": "^1.0.0", - "micromark-util-combine-extensions": "^1.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-encode": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-resolve-all": "^1.0.0", - "micromark-util-sanitize-uri": "^1.0.0", - "micromark-util-subtokenize": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.1", - "uvu": "^0.5.0" - } - }, - "node_modules/micromark-core-commonmark": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz", - "integrity": "sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "decode-named-character-reference": "^1.0.0", - "micromark-factory-destination": "^1.0.0", - "micromark-factory-label": "^1.0.0", - "micromark-factory-space": "^1.0.0", - "micromark-factory-title": "^1.0.0", - "micromark-factory-whitespace": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-chunked": "^1.0.0", - "micromark-util-classify-character": "^1.0.0", - "micromark-util-html-tag-name": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-resolve-all": "^1.0.0", - "micromark-util-subtokenize": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.1", - "uvu": "^0.5.0" - } - }, - "node_modules/micromark-extension-frontmatter": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/micromark-extension-frontmatter/-/micromark-extension-frontmatter-1.1.1.tgz", - "integrity": "sha512-m2UH9a7n3W8VAH9JO9y01APpPKmNNNs71P0RbknEmYSaZU5Ghogv38BYO94AI5Xw6OYfxZRdHZZ2nYjs/Z+SZQ==", - "dev": true, - "dependencies": { - "fault": "^2.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/micromark-extension-mdx-expression": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.8.tgz", - "integrity": "sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "@types/estree": "^1.0.0", - "micromark-factory-mdx-expression": "^1.0.0", - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-events-to-acorn": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" - } - }, - "node_modules/micromark-extension-mdx-jsx": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.5.tgz", - "integrity": "sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==", - "dev": true, - "dependencies": { - "@types/acorn": "^4.0.0", - "@types/estree": "^1.0.0", - "estree-util-is-identifier-name": "^2.0.0", - "micromark-factory-mdx-expression": "^1.0.0", - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0", - "vfile-message": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/micromark-extension-mdx-jsx/node_modules/estree-util-is-identifier-name": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", - "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/micromark-extension-mdx-md": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.1.tgz", - "integrity": "sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==", - "dev": true, - "dependencies": { - "micromark-util-types": "^1.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/micromark-extension-mdxjs": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.1.tgz", - "integrity": "sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==", - "dev": true, - "dependencies": { - "acorn": "^8.0.0", - "acorn-jsx": "^5.0.0", - "micromark-extension-mdx-expression": "^1.0.0", - "micromark-extension-mdx-jsx": "^1.0.0", - "micromark-extension-mdx-md": "^1.0.0", - "micromark-extension-mdxjs-esm": "^1.0.0", - "micromark-util-combine-extensions": "^1.0.0", - "micromark-util-types": "^1.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/micromark-extension-mdxjs-esm": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.5.tgz", - "integrity": "sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==", - "dev": true, - "dependencies": { - "@types/estree": "^1.0.0", - "micromark-core-commonmark": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-events-to-acorn": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "unist-util-position-from-estree": "^1.1.0", - "uvu": "^0.5.0", - "vfile-message": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/micromark-factory-destination": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz", - "integrity": "sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-factory-label": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz", - "integrity": "sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" - } - }, - "node_modules/micromark-factory-mdx-expression": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.9.tgz", - "integrity": "sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "@types/estree": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-events-to-acorn": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "unist-util-position-from-estree": "^1.0.0", - "uvu": "^0.5.0", - "vfile-message": "^3.0.0" - } - }, - "node_modules/micromark-factory-space": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz", - "integrity": "sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-factory-title": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz", - "integrity": "sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-factory-whitespace": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz", - "integrity": "sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-util-character": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.2.0.tgz", - "integrity": "sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-util-chunked": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz", - "integrity": "sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-symbol": "^1.0.0" - } - }, - "node_modules/micromark-util-classify-character": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz", - "integrity": "sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-util-combine-extensions": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz", - "integrity": "sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-chunked": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-util-decode-numeric-character-reference": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz", - "integrity": "sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-symbol": "^1.0.0" - } - }, - "node_modules/micromark-util-decode-string": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz", - "integrity": "sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "decode-named-character-reference": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-symbol": "^1.0.0" - } - }, - "node_modules/micromark-util-encode": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz", - "integrity": "sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ] - }, - "node_modules/micromark-util-events-to-acorn": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.3.tgz", - "integrity": "sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "@types/acorn": "^4.0.0", - "@types/estree": "^1.0.0", - "@types/unist": "^2.0.0", - "estree-util-visit": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0", - "vfile-message": "^3.0.0" - } - }, - "node_modules/micromark-util-html-tag-name": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz", - "integrity": "sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ] - }, - "node_modules/micromark-util-normalize-identifier": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz", - "integrity": "sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-symbol": "^1.0.0" - } - }, - "node_modules/micromark-util-resolve-all": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz", - "integrity": "sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-util-sanitize-uri": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz", - "integrity": "sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-encode": "^1.0.0", - "micromark-util-symbol": "^1.0.0" - } - }, - "node_modules/micromark-util-subtokenize": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz", - "integrity": "sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "dependencies": { - "micromark-util-chunked": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" - } - }, - "node_modules/micromark-util-symbol": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz", - "integrity": "sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ] - }, - "node_modules/micromark-util-types": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz", - "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==", - "dev": true, - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ] - }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dev": true, - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/minimatch": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", - "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/mkdirp-classic": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", - "dev": true - }, - "node_modules/mlly": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.4.0.tgz", - "integrity": "sha512-ua8PAThnTwpprIaU47EPeZ/bPUVp2QYBbWMphUQpVdBI3Lgqzm5KZQ45Agm3YJedHXaIHl6pBGabaLSUPPSptg==", - "dev": true, - "dependencies": { - "acorn": "^8.9.0", - "pathe": "^1.1.1", - "pkg-types": "^1.0.3", - "ufo": "^1.1.2" - } - }, - "node_modules/mri": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", - "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", - "dev": true - }, - "node_modules/nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/netmask": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", - "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", - "dev": true, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/next": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/next/-/next-13.4.6.tgz", - "integrity": "sha512-sjVqjxU+U2aXZnYt4Ud6CTLNNwWjdSfMgemGpIQJcN3Z7Jni9xRWbR0ie5fQzCg87aLqQVhKA2ud2gPoqJ9lGw==", - "dependencies": { - "@next/env": "13.4.6", - "@swc/helpers": "0.5.1", - "busboy": "1.6.0", - "caniuse-lite": "^1.0.30001406", - "postcss": "8.4.14", - "styled-jsx": "5.1.1", - "watchpack": "2.4.0", - "zod": "3.21.4" - }, - "bin": { - "next": "dist/bin/next" - }, - "engines": { - "node": ">=16.8.0" - }, - "optionalDependencies": { - "@next/swc-darwin-arm64": "13.4.6", - "@next/swc-darwin-x64": "13.4.6", - "@next/swc-linux-arm64-gnu": "13.4.6", - "@next/swc-linux-arm64-musl": "13.4.6", - "@next/swc-linux-x64-gnu": "13.4.6", - "@next/swc-linux-x64-musl": "13.4.6", - "@next/swc-win32-arm64-msvc": "13.4.6", - "@next/swc-win32-ia32-msvc": "13.4.6", - "@next/swc-win32-x64-msvc": "13.4.6" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.1.0", - "fibers": ">= 3.1.0", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "sass": "^1.3.0" - }, - "peerDependenciesMeta": { - "@opentelemetry/api": { - "optional": true - }, - "fibers": { - "optional": true - }, - "sass": { - "optional": true - } - } - }, - "node_modules/node-addon-api": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz", - "integrity": "sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==", - "dev": true, - "optional": true - }, - "node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "dev": true, - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/node-gyp-build": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", - "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", - "dev": true, - "bin": { - "node-gyp-build": "bin.js", - "node-gyp-build-optional": "optional.js", - "node-gyp-build-test": "build-test.js" - } - }, - "node_modules/node-releases": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", - "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", - "dev": true - }, - "node_modules/nopt": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", - "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", - "dev": true, - "dependencies": { - "abbrev": "1" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npmlog": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", - "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", - "dev": true, - "dependencies": { - "are-we-there-yet": "^2.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^3.0.0", - "set-blocking": "^2.0.0" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dev": true, - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "dev": true, - "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", - "dev": true, - "dependencies": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/outdent": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/outdent/-/outdent-0.8.0.tgz", - "integrity": "sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A==", - "dev": true - }, - "node_modules/p-cancelable": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", - "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pac-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-5.0.0.tgz", - "integrity": "sha512-CcFG3ZtnxO8McDigozwE3AqAw15zDvGH+OjXO4kzf7IkEKkQ4gxQ+3sdF50WmhQ4P/bVusXcqNE2S3XrNURwzQ==", - "dev": true, - "dependencies": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4", - "get-uri": "3", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "5", - "pac-resolver": "^5.0.0", - "raw-body": "^2.2.0", - "socks-proxy-agent": "5" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/pac-resolver": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-5.0.1.tgz", - "integrity": "sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q==", - "dev": true, - "dependencies": { - "degenerator": "^3.0.2", - "ip": "^1.1.5", - "netmask": "^2.0.2" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/pako": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", - "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==", - "dev": true - }, - "node_modules/parse-entities": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.1.tgz", - "integrity": "sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0", - "character-entities": "^2.0.0", - "character-entities-legacy": "^3.0.0", - "character-reference-invalid": "^2.0.0", - "decode-named-character-reference": "^1.0.0", - "is-alphanumerical": "^2.0.0", - "is-decimal": "^2.0.0", - "is-hexadecimal": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/parse-ms": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz", - "integrity": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/path-browserify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", - "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", - "dev": true - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "node_modules/path-to-regexp": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz", - "integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==", - "dev": true - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/pathe": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.1.tgz", - "integrity": "sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==", - "dev": true - }, - "node_modules/peek-stream": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/peek-stream/-/peek-stream-1.1.3.tgz", - "integrity": "sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "duplexify": "^3.5.0", - "through2": "^2.0.3" - } - }, - "node_modules/periscopic": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", - "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", - "dev": true, - "dependencies": { - "@types/estree": "^1.0.0", - "estree-walker": "^3.0.0", - "is-reference": "^3.0.0" - } - }, - "node_modules/periscopic/node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "dev": true, - "dependencies": { - "@types/estree": "^1.0.0" - } - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pkg-types": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.0.3.tgz", - "integrity": "sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==", - "dev": true, - "dependencies": { - "jsonc-parser": "^3.2.0", - "mlly": "^1.2.0", - "pathe": "^1.1.0" - } - }, - "node_modules/postcss": { - "version": "8.4.14", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", - "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - } - ], - "dependencies": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-discard-duplicates": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", - "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-load-config": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", - "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", - "dev": true, - "dependencies": { - "lilconfig": "^2.0.5", - "yaml": "^2.1.1" - }, - "engines": { - "node": ">= 14" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": ">=8.0.9", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "postcss": { - "optional": true - }, - "ts-node": { - "optional": true - } - } - }, - "node_modules/postcss-modules": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules/-/postcss-modules-6.0.0.tgz", - "integrity": "sha512-7DGfnlyi/ju82BRzTIjWS5C4Tafmzl3R79YP/PASiocj+aa6yYphHhhKUOEoXQToId5rgyFgJ88+ccOUydjBXQ==", - "dev": true, - "dependencies": { - "generic-names": "^4.0.0", - "icss-utils": "^5.1.0", - "lodash.camelcase": "^4.3.0", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", - "postcss-modules-scope": "^3.0.0", - "postcss-modules-values": "^4.0.0", - "string-hash": "^1.1.1" - }, - "peerDependencies": { - "postcss": "^8.0.0" - } - }, - "node_modules/postcss-modules-extract-imports": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", - "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-modules-local-by-default": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", - "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", - "dev": true, - "dependencies": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-modules-scope": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", - "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", - "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.4" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-modules-values": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", - "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", - "dev": true, - "dependencies": { - "icss-utils": "^5.0.0" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-selector-parser": { - "version": "6.0.13", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", - "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", - "dev": true, - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true - }, - "node_modules/prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/prettier": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", - "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", - "dev": true, - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - }, - "node_modules/pretty-bytes": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", - "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", - "dev": true, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pretty-ms": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-7.0.1.tgz", - "integrity": "sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==", - "dev": true, - "dependencies": { - "parse-ms": "^2.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "node_modules/promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", - "dev": true - }, - "node_modules/property-information": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.2.0.tgz", - "integrity": "sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "dev": true, - "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-5.0.0.tgz", - "integrity": "sha512-gkH7BkvLVkSfX9Dk27W6TyNOWWZWRilRfk1XxGNWOYJ2TuedAv1yFpCaU9QSBmBe716XOTNpYNOzhysyw8xn7g==", - "dev": true, - "dependencies": { - "agent-base": "^6.0.0", - "debug": "4", - "http-proxy-agent": "^4.0.0", - "https-proxy-agent": "^5.0.0", - "lru-cache": "^5.1.1", - "pac-proxy-agent": "^5.0.0", - "proxy-from-env": "^1.0.0", - "socks-proxy-agent": "^5.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/proxy-agent/node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/proxy-agent/node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - }, - "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", - "dev": true - }, - "node_modules/pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "dev": true, - "dependencies": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" - } - }, - "node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "dev": true, - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "dev": true, - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - }, - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/react-refresh": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", - "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/recast": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz", - "integrity": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==", - "dev": true, - "dependencies": { - "ast-types": "0.15.2", - "esprima": "~4.0.0", - "source-map": "~0.6.1", - "tslib": "^2.0.1" - }, - "engines": { - "node": ">= 4" - } - }, - "node_modules/recast/node_modules/ast-types": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz", - "integrity": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==", - "dev": true, - "dependencies": { - "tslib": "^2.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/recast/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", - "dev": true - }, - "node_modules/regenerate-unicode-properties": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", - "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", - "dev": true, - "dependencies": { - "regenerate": "^1.4.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", - "dev": true - }, - "node_modules/regenerator-transform": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", - "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", - "dev": true, - "dependencies": { - "@babel/runtime": "^7.8.4" - } - }, - "node_modules/regexpu-core": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", - "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", - "dev": true, - "dependencies": { - "@babel/regjsgen": "^0.8.0", - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", - "dev": true, - "dependencies": { - "jsesc": "~0.5.0" - }, - "bin": { - "regjsparser": "bin/parser" - } - }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" - } - }, - "node_modules/remark-frontmatter": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-4.0.1.tgz", - "integrity": "sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA==", - "dev": true, - "dependencies": { - "@types/mdast": "^3.0.0", - "mdast-util-frontmatter": "^1.0.0", - "micromark-extension-frontmatter": "^1.0.0", - "unified": "^10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/remark-mdx-frontmatter": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/remark-mdx-frontmatter/-/remark-mdx-frontmatter-1.1.1.tgz", - "integrity": "sha512-7teX9DW4tI2WZkXS4DBxneYSY7NHiXl4AKdWDO9LXVweULlCT8OPWsOjLEnMIXViN1j+QcY8mfbq3k0EK6x3uA==", - "dev": true, - "dependencies": { - "estree-util-is-identifier-name": "^1.0.0", - "estree-util-value-to-estree": "^1.0.0", - "js-yaml": "^4.0.0", - "toml": "^3.0.0" - }, - "engines": { - "node": ">=12.2.0" - } - }, - "node_modules/remark-parse": { - "version": "10.0.2", - "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.2.tgz", - "integrity": "sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==", - "dev": true, - "dependencies": { - "@types/mdast": "^3.0.0", - "mdast-util-from-markdown": "^1.0.0", - "unified": "^10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/remark-rehype": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-9.1.0.tgz", - "integrity": "sha512-oLa6YmgAYg19zb0ZrBACh40hpBLteYROaPLhBXzLgjqyHQrN+gVP9N/FJvfzuNNuzCutktkroXEZBrxAxKhh7Q==", - "dev": true, - "dependencies": { - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "mdast-util-to-hast": "^11.0.0", - "unified": "^10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-like": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/require-like/-/require-like-0.1.2.tgz", - "integrity": "sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", - "dev": true, - "dependencies": { - "is-core-module": "^2.11.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-alpn": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", - "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", - "dev": true - }, - "node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/responselike": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", - "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", - "dev": true, - "dependencies": { - "lowercase-keys": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "dev": true, - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/restore-cursor/node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rollup": { - "version": "3.25.3", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.25.3.tgz", - "integrity": "sha512-ZT279hx8gszBj9uy5FfhoG4bZx8c+0A1sbqtr7Q3KNWIizpTdDEPZbV2xcbvHsnFp4MavCQYZyzApJ+virB8Yw==", - "dev": true, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=14.18.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", - "dev": true, - "dependencies": { - "tslib": "^2.1.0" - } - }, - "node_modules/sade": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", - "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", - "dev": true, - "dependencies": { - "mri": "^1.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true - }, - "node_modules/scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "dependencies": { - "loose-envify": "^1.1.0" - } - }, - "node_modules/semver": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.1.1.tgz", - "integrity": "sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ==", - "dev": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "dev": true, - "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/send/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "dev": true, - "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true - }, - "node_modules/set-cookie-parser": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.6.0.tgz", - "integrity": "sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==", - "dev": true - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/signal-exit": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", - "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true, - "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", - "dev": true, - "dependencies": { - "ip": "^2.0.0", - "smart-buffer": "^4.2.0" - }, - "engines": { - "node": ">= 10.13.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/socks-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-5.0.1.tgz", - "integrity": "sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==", - "dev": true, - "dependencies": { - "agent-base": "^6.0.2", - "debug": "4", - "socks": "^2.3.3" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/socks/node_modules/ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", - "dev": true - }, - "node_modules/sort-object-keys": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/sort-object-keys/-/sort-object-keys-1.1.3.tgz", - "integrity": "sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==", - "dev": true - }, - "node_modules/sort-package-json": { - "version": "1.57.0", - "resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-1.57.0.tgz", - "integrity": "sha512-FYsjYn2dHTRb41wqnv+uEqCUvBpK3jZcTp9rbz2qDTmel7Pmdtf+i2rLaaPMRZeSVM60V3Se31GyWFpmKs4Q5Q==", - "dev": true, - "dependencies": { - "detect-indent": "^6.0.0", - "detect-newline": "3.1.0", - "git-hooks-list": "1.0.3", - "globby": "10.0.0", - "is-plain-obj": "2.1.0", - "sort-object-keys": "^1.1.3" - }, - "bin": { - "sort-package-json": "cli.js" - } - }, - "node_modules/sort-package-json/node_modules/is-plain-obj": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", - "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/source-map-support/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/space-separated-tokens": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", - "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/ssri": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", - "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", - "dev": true, - "dependencies": { - "minipass": "^3.1.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/sswr": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/sswr/-/sswr-1.10.0.tgz", - "integrity": "sha512-nLWAJSQy3h8t7rrbTXanRyVHuQPj4PwKIVGe4IMlxJFdhyaxnN/JGACnvQKGDeWiTGYIZIx/jRuUsPEF0867Pg==", - "dependencies": { - "swrev": "^3.0.0" - }, - "peerDependencies": { - "svelte": "^3.29.0" - } - }, - "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/stream-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", - "dev": true - }, - "node_modules/streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string-hash": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", - "integrity": "sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==", - "dev": true - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/stringify-entities": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.3.tgz", - "integrity": "sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==", - "dev": true, - "dependencies": { - "character-entities-html4": "^2.0.0", - "character-entities-legacy": "^3.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/style-to-object": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.1.tgz", - "integrity": "sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw==", - "dev": true, - "dependencies": { - "inline-style-parser": "0.1.1" - } - }, - "node_modules/styled-jsx": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", - "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", - "dependencies": { - "client-only": "0.0.1" - }, - "engines": { - "node": ">= 12.0.0" - }, - "peerDependencies": { - "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "babel-plugin-macros": { - "optional": true - } - } - }, - "node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/svelte": { - "version": "3.59.2", - "resolved": "https://registry.npmjs.org/svelte/-/svelte-3.59.2.tgz", - "integrity": "sha512-vzSyuGr3eEoAtT/A6bmajosJZIUWySzY2CzB3w2pgPvnkUjGqlDnsNnA0PMO+mMAhuyMul6C2uuZzY6ELSkzyA==", - "peer": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/swr": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/swr/-/swr-2.1.5.tgz", - "integrity": "sha512-/OhfZMcEpuz77KavXST5q6XE9nrOBOVcBLWjMT+oAE/kQHyE3PASrevXCtQDZ8aamntOfFkbVJp7Il9tNBQWrw==", - "dependencies": { - "use-sync-external-store": "^1.2.0" - }, - "peerDependencies": { - "react": "^16.11.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/swrev": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/swrev/-/swrev-3.0.0.tgz", - "integrity": "sha512-QJuZiptdOmbDY45pECBRVEgnoBlOKjeT2MWVz04wKHpWX15hM3P7EjcIbHDg5yLoPCMQ7to3349MEE+l9QF5HA==" - }, - "node_modules/swrv": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/swrv/-/swrv-1.0.3.tgz", - "integrity": "sha512-sl+eLEE+aPPjhP1E8gQ75q3RPRyw5Gd/kROnrTFo3+LkCeLskv7F+uAl5W97wgJkzitobL6FLsRPVm0DgIgN8A==", - "peerDependencies": { - "vue": ">=3.2.26 < 4" - } - }, - "node_modules/tar": { - "version": "6.1.15", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz", - "integrity": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==", - "dev": true, - "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/tar-fs": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", - "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", - "dev": true, - "dependencies": { - "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^2.1.4" - } - }, - "node_modules/tar-fs/node_modules/chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "dev": true - }, - "node_modules/tar-fs/node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "dev": true, - "dependencies": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tar/node_modules/minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "dev": true - }, - "node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/through2/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/through2/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/through2/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/time-span": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/time-span/-/time-span-4.0.0.tgz", - "integrity": "sha512-MyqZCTGLDZ77u4k+jqg4UlrzPTPZ49NDlaekU6uuFaJLzPIN1woaRXCbGeqOfxwc3Y37ZROGAJ614Rdv7Olt+g==", - "dev": true, - "dependencies": { - "convert-hrtime": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dev": true, - "dependencies": { - "os-tmpdir": "~1.0.2" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true, - "engines": { - "node": ">=0.6" - } - }, - "node_modules/toml": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/toml/-/toml-3.0.0.tgz", - "integrity": "sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==", - "dev": true - }, - "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true - }, - "node_modules/trough": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz", - "integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/ts-morph": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/ts-morph/-/ts-morph-12.0.0.tgz", - "integrity": "sha512-VHC8XgU2fFW7yO1f/b3mxKDje1vmyzFXHWzOYmKEkCEwcLjDtbdLgBQviqj4ZwP4MJkQtRo6Ha2I29lq/B+VxA==", - "dev": true, - "dependencies": { - "@ts-morph/common": "~0.11.0", - "code-block-writer": "^10.1.1" - } - }, - "node_modules/ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", - "dev": true, - "dependencies": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "bin": { - "ts-node": "dist/bin.js", - "ts-node-cwd": "dist/bin-cwd.js", - "ts-node-esm": "dist/bin-esm.js", - "ts-node-script": "dist/bin-script.js", - "ts-node-transpile-only": "dist/bin-transpile.js", - "ts-script": "dist/bin-script-deprecated.js" - }, - "peerDependencies": { - "@swc/core": ">=1.2.50", - "@swc/wasm": ">=1.2.50", - "@types/node": "*", - "typescript": ">=2.7" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "@swc/wasm": { - "optional": true - } - } - }, - "node_modules/ts-node/node_modules/arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "dev": true - }, - "node_modules/ts-toolbelt": { - "version": "6.15.5", - "resolved": "https://registry.npmjs.org/ts-toolbelt/-/ts-toolbelt-6.15.5.tgz", - "integrity": "sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A==", - "dev": true - }, - "node_modules/tsconfig-paths": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", - "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", - "dev": true, - "dependencies": { - "json5": "^2.2.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tslib": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", - "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==" - }, - "node_modules/type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", - "dev": true, - "dependencies": { - "prelude-ls": "~1.1.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dev": true, - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/typescript": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", - "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", - "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/ufo": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.1.2.tgz", - "integrity": "sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ==", - "dev": true - }, - "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", - "dev": true, - "dependencies": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/unified": { - "version": "10.1.2", - "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", - "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0", - "bail": "^2.0.0", - "extend": "^3.0.0", - "is-buffer": "^2.0.0", - "is-plain-obj": "^4.0.0", - "trough": "^2.0.0", - "vfile": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unified/node_modules/is-plain-obj": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", - "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", - "dev": true, - "dependencies": { - "unique-slug": "^2.0.0" - } - }, - "node_modules/unique-slug": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", - "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4" - } - }, - "node_modules/unist-builder": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/unist-builder/-/unist-builder-3.0.1.tgz", - "integrity": "sha512-gnpOw7DIpCA0vpr6NqdPvTWnlPTApCTRzr+38E6hCWx3rz/cjo83SsKIlS1Z+L5ttScQ2AwutNnb8+tAvpb6qQ==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-generated": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.1.tgz", - "integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-is": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", - "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-position": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz", - "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-position-from-estree": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.2.tgz", - "integrity": "sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-remove-position": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-4.0.2.tgz", - "integrity": "sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-visit": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-stringify-position": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", - "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-visit": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.1.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-visit-parents": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", - "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/use-sync-external-store": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", - "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "dev": true, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/uvu": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz", - "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", - "dev": true, - "dependencies": { - "dequal": "^2.0.0", - "diff": "^5.0.0", - "kleur": "^4.0.3", - "sade": "^1.7.3" - }, - "bin": { - "uvu": "bin.js" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/uvu/node_modules/diff": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz", - "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==", - "dev": true, - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/v8-compile-cache-lib": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", - "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", - "dev": true - }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/vercel": { - "version": "30.2.3", - "resolved": "https://registry.npmjs.org/vercel/-/vercel-30.2.3.tgz", - "integrity": "sha512-Eil4CR1a/pZkTl3gewzN8rDTisRmuixHAgymWutrRlc1qBYGPMo9ZPTu/9cR3k2PT7yjeRMYYLm0ax9l43lDhQ==", - "dev": true, - "hasInstallScript": true, - "dependencies": { - "@vercel/build-utils": "6.7.5", - "@vercel/go": "2.5.1", - "@vercel/hydrogen": "0.0.64", - "@vercel/next": "3.8.6", - "@vercel/node": "2.15.2", - "@vercel/python": "3.1.60", - "@vercel/redwood": "1.1.15", - "@vercel/remix-builder": "1.8.14", - "@vercel/ruby": "1.3.76", - "@vercel/static-build": "1.3.37" - }, - "bin": { - "vc": "dist/index.js", - "vercel": "dist/index.js" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/vfile": { - "version": "5.3.7", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", - "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/vfile-message": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", - "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", - "dev": true, - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/vite": { - "version": "4.3.9", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.3.9.tgz", - "integrity": "sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==", - "dev": true, - "dependencies": { - "esbuild": "^0.17.5", - "postcss": "^8.4.23", - "rollup": "^3.21.0" - }, - "bin": { - "vite": "bin/vite.js" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - }, - "peerDependencies": { - "@types/node": ">= 14", - "less": "*", - "sass": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "sass": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } - } - }, - "node_modules/vite-node": { - "version": "0.28.5", - "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-0.28.5.tgz", - "integrity": "sha512-LmXb9saMGlrMZbXTvOveJKwMTBTNUH66c8rJnQ0ZPNX+myPEol64+szRzXtV5ORb0Hb/91yq+/D3oERoyAt6LA==", - "dev": true, - "dependencies": { - "cac": "^6.7.14", - "debug": "^4.3.4", - "mlly": "^1.1.0", - "pathe": "^1.1.0", - "picocolors": "^1.0.0", - "source-map": "^0.6.1", - "source-map-support": "^0.5.21", - "vite": "^3.0.0 || ^4.0.0" - }, - "bin": { - "vite-node": "vite-node.mjs" - }, - "engines": { - "node": ">=v14.16.0" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" - } - }, - "node_modules/vite-node/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/vite/node_modules/@esbuild/android-arm": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.19.tgz", - "integrity": "sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/android-arm64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz", - "integrity": "sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/android-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.19.tgz", - "integrity": "sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/darwin-arm64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz", - "integrity": "sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/darwin-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz", - "integrity": "sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz", - "integrity": "sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/freebsd-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz", - "integrity": "sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-arm": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz", - "integrity": "sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-arm64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz", - "integrity": "sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-ia32": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz", - "integrity": "sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-loong64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz", - "integrity": "sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==", - "cpu": [ - "loong64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-mips64el": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz", - "integrity": "sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==", - "cpu": [ - "mips64el" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-ppc64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz", - "integrity": "sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-riscv64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz", - "integrity": "sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-s390x": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz", - "integrity": "sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz", - "integrity": "sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/netbsd-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz", - "integrity": "sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/openbsd-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz", - "integrity": "sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/sunos-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz", - "integrity": "sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-arm64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz", - "integrity": "sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-ia32": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz", - "integrity": "sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz", - "integrity": "sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/esbuild": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.19.tgz", - "integrity": "sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==", - "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.17.19", - "@esbuild/android-arm64": "0.17.19", - "@esbuild/android-x64": "0.17.19", - "@esbuild/darwin-arm64": "0.17.19", - "@esbuild/darwin-x64": "0.17.19", - "@esbuild/freebsd-arm64": "0.17.19", - "@esbuild/freebsd-x64": "0.17.19", - "@esbuild/linux-arm": "0.17.19", - "@esbuild/linux-arm64": "0.17.19", - "@esbuild/linux-ia32": "0.17.19", - "@esbuild/linux-loong64": "0.17.19", - "@esbuild/linux-mips64el": "0.17.19", - "@esbuild/linux-ppc64": "0.17.19", - "@esbuild/linux-riscv64": "0.17.19", - "@esbuild/linux-s390x": "0.17.19", - "@esbuild/linux-x64": "0.17.19", - "@esbuild/netbsd-x64": "0.17.19", - "@esbuild/openbsd-x64": "0.17.19", - "@esbuild/sunos-x64": "0.17.19", - "@esbuild/win32-arm64": "0.17.19", - "@esbuild/win32-ia32": "0.17.19", - "@esbuild/win32-x64": "0.17.19" - } - }, - "node_modules/vite/node_modules/postcss": { - "version": "8.4.24", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", - "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/vm2": { - "version": "3.9.19", - "resolved": "https://registry.npmjs.org/vm2/-/vm2-3.9.19.tgz", - "integrity": "sha512-J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg==", - "dev": true, - "dependencies": { - "acorn": "^8.7.0", - "acorn-walk": "^8.2.0" - }, - "bin": { - "vm2": "bin/vm2" - }, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/vue": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/vue/-/vue-3.3.4.tgz", - "integrity": "sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==", - "peer": true, - "dependencies": { - "@vue/compiler-dom": "3.3.4", - "@vue/compiler-sfc": "3.3.4", - "@vue/runtime-dom": "3.3.4", - "@vue/server-renderer": "3.3.4", - "@vue/shared": "3.3.4" - } - }, - "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/wcwidth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", - "dev": true, - "dependencies": { - "defaults": "^1.0.3" - } - }, - "node_modules/web-vitals": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-0.2.4.tgz", - "integrity": "sha512-6BjspCO9VriYy12z356nL6JBS0GYeEcA457YyRzD+dD6XYCQ75NKhcOHUMHentOE7OcVCIXXDvOm0jKFfQG2Gg==", - "dev": true - }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", - "dev": true - }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dev": true, - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - "dev": true, - "dependencies": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "node_modules/word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "node_modules/ws": { - "version": "7.5.9", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", - "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", - "dev": true, - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/xdm": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/xdm/-/xdm-2.1.0.tgz", - "integrity": "sha512-3LxxbxKcRogYY7cQSMy1tUuU1zKNK9YPqMT7/S0r7Cz2QpyF8O9yFySGD7caOZt+LWUOQioOIX+6ZzCoBCpcAA==", - "dev": true, - "dependencies": { - "@rollup/pluginutils": "^4.0.0", - "@types/estree-jsx": "^0.0.1", - "astring": "^1.6.0", - "estree-util-build-jsx": "^2.0.0", - "estree-util-is-identifier-name": "^2.0.0", - "estree-walker": "^3.0.0", - "got": "^11.0.0", - "hast-util-to-estree": "^2.0.0", - "loader-utils": "^2.0.0", - "markdown-extensions": "^1.0.0", - "mdast-util-mdx": "^1.0.0", - "micromark-extension-mdxjs": "^1.0.0", - "periscopic": "^3.0.0", - "remark-parse": "^10.0.0", - "remark-rehype": "^9.0.0", - "source-map": "^0.7.0", - "unified": "^10.0.0", - "unist-util-position-from-estree": "^1.0.0", - "unist-util-stringify-position": "^3.0.0", - "unist-util-visit": "^4.0.0", - "vfile": "^5.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - }, - "optionalDependencies": { - "deasync": "^0.1.0" - } - }, - "node_modules/xdm/node_modules/estree-util-is-identifier-name": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", - "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/xdm/node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "dev": true, - "dependencies": { - "@types/estree": "^1.0.0" - } - }, - "node_modules/xdm/node_modules/loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dev": true, - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - }, - "engines": { - "node": ">=8.9.0" - } - }, - "node_modules/xregexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz", - "integrity": "sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true, - "engines": { - "node": ">=0.4" - } - }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/yaml": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", - "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", - "dev": true, - "engines": { - "node": ">= 14" - } - }, - "node_modules/yn": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/zod": { - "version": "3.21.4", - "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", - "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", - "funding": { - "url": "https://github.com/sponsors/colinhacks" - } - }, - "node_modules/zwitch": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", - "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - } - }, - "dependencies": { - "@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", - "dev": true, - "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@babel/code-frame": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", - "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", - "dev": true, - "requires": { - "@babel/highlight": "^7.22.5" - } - }, - "@babel/compat-data": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", - "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", - "dev": true - }, - "@babel/core": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.5.tgz", - "integrity": "sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==", - "dev": true, - "requires": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helpers": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", - "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - }, - "dependencies": { - "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true - } - } - }, - "@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz", - "integrity": "sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-compilation-targets": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", - "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.22.5", - "@babel/helper-validator-option": "^7.22.5", - "browserslist": "^4.21.3", - "lru-cache": "^5.1.1", - "semver": "^6.3.0" - }, - "dependencies": { - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "requires": { - "yallist": "^3.0.2" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - }, - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - } - } - }, - "@babel/helper-create-class-features-plugin": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.5.tgz", - "integrity": "sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/helper-create-regexp-features-plugin": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.5.tgz", - "integrity": "sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "regexpu-core": "^5.3.1", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/helper-define-polyfill-provider": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.0.tgz", - "integrity": "sha512-RnanLx5ETe6aybRi1cO/edaRH+bNYWaryCEmjDDYyNr4wnSzyOp8T0dWipmqVHKEY3AbVKUom50AKSlj1zmKbg==", - "dev": true, - "requires": { - "@babel/helper-compilation-targets": "^7.17.7", - "@babel/helper-plugin-utils": "^7.16.7", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/helper-environment-visitor": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", - "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", - "dev": true - }, - "@babel/helper-function-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", - "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", - "dev": true, - "requires": { - "@babel/template": "^7.22.5", - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-member-expression-to-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz", - "integrity": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-module-imports": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", - "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-module-transforms": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", - "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", - "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-module-imports": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", - "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", - "dev": true - }, - "@babel/helper-remap-async-to-generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz", - "integrity": "sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-wrap-function": "^7.22.5", - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-replace-supers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz", - "integrity": "sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==", - "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-string-parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", - "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", - "dev": true - }, - "@babel/helper-validator-identifier": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", - "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", - "dev": true - }, - "@babel/helper-validator-option": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", - "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", - "dev": true - }, - "@babel/helper-wrap-function": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz", - "integrity": "sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==", - "dev": true, - "requires": { - "@babel/helper-function-name": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - } - }, - "@babel/helpers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", - "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", - "dev": true, - "requires": { - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - } - }, - "@babel/highlight": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", - "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.22.5", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "@babel/parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", - "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==" - }, - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz", - "integrity": "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz", - "integrity": "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.22.5" - } - }, - "@babel/plugin-proposal-private-property-in-object": { - "version": "7.21.0-placeholder-for-preset-env.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", - "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", - "dev": true, - "requires": {} - }, - "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", - "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - } - }, - "@babel/plugin-syntax-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-syntax-import-assertions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz", - "integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-syntax-import-attributes": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz", - "integrity": "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-jsx": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", - "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", - "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-syntax-unicode-sets-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", - "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-arrow-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz", - "integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-async-generator-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.5.tgz", - "integrity": "sha512-gGOEvFzm3fWoyD5uZq7vVTD57pPJ3PczPUD/xCFGjzBpUosnklmXyKnGQbbbGs1NPNPskFex0j93yKbHt0cHyg==", - "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.5", - "@babel/plugin-syntax-async-generators": "^7.8.4" - } - }, - "@babel/plugin-transform-async-to-generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz", - "integrity": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==", - "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.5" - } - }, - "@babel/plugin-transform-block-scoped-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz", - "integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-block-scoping": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz", - "integrity": "sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-class-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz", - "integrity": "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-class-static-block": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz", - "integrity": "sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - } - }, - "@babel/plugin-transform-classes": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.5.tgz", - "integrity": "sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "globals": "^11.1.0" - } - }, - "@babel/plugin-transform-computed-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz", - "integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/template": "^7.22.5" - } - }, - "@babel/plugin-transform-destructuring": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz", - "integrity": "sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-dotall-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz", - "integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-duplicate-keys": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz", - "integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-dynamic-import": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz", - "integrity": "sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - } - }, - "@babel/plugin-transform-exponentiation-operator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz", - "integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==", - "dev": true, - "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-export-namespace-from": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz", - "integrity": "sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - } - }, - "@babel/plugin-transform-for-of": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz", - "integrity": "sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-function-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz", - "integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==", - "dev": true, - "requires": { - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-json-strings": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz", - "integrity": "sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-json-strings": "^7.8.3" - } - }, - "@babel/plugin-transform-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz", - "integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-logical-assignment-operators": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz", - "integrity": "sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - } - }, - "@babel/plugin-transform-member-expression-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz", - "integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-modules-amd": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz", - "integrity": "sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==", - "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-modules-commonjs": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz", - "integrity": "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==", - "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5" - } - }, - "@babel/plugin-transform-modules-systemjs": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz", - "integrity": "sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==", - "dev": true, - "requires": { - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5" - } - }, - "@babel/plugin-transform-modules-umd": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz", - "integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==", - "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", - "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-new-target": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz", - "integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz", - "integrity": "sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - } - }, - "@babel/plugin-transform-numeric-separator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz", - "integrity": "sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - } - }, - "@babel/plugin-transform-object-rest-spread": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz", - "integrity": "sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.22.5" - } - }, - "@babel/plugin-transform-object-super": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz", - "integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5" - } - }, - "@babel/plugin-transform-optional-catch-binding": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz", - "integrity": "sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - } - }, - "@babel/plugin-transform-optional-chaining": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.5.tgz", - "integrity": "sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - } - }, - "@babel/plugin-transform-parameters": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz", - "integrity": "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-private-methods": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz", - "integrity": "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-private-property-in-object": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz", - "integrity": "sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - } - }, - "@babel/plugin-transform-property-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz", - "integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-regenerator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz", - "integrity": "sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "regenerator-transform": "^0.15.1" - } - }, - "@babel/plugin-transform-reserved-words": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz", - "integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-shorthand-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz", - "integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-spread": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz", - "integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" - } - }, - "@babel/plugin-transform-sticky-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz", - "integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-template-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz", - "integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-typeof-symbol": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz", - "integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.5.tgz", - "integrity": "sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-typescript": "^7.22.5" - } - }, - "@babel/plugin-transform-unicode-escapes": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz", - "integrity": "sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-unicode-property-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz", - "integrity": "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-unicode-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz", - "integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-unicode-sets-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz", - "integrity": "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/preset-env": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.5.tgz", - "integrity": "sha512-fj06hw89dpiZzGZtxn+QybifF07nNiZjZ7sazs2aVDcysAZVGjW7+7iFYxg6GLNM47R/thYfLdrXc+2f11Vi9A==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.5", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.5", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.5", - "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.22.5", - "@babel/plugin-syntax-import-attributes": "^7.22.5", - "@babel/plugin-syntax-import-meta": "^7.10.4", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.22.5", - "@babel/plugin-transform-async-generator-functions": "^7.22.5", - "@babel/plugin-transform-async-to-generator": "^7.22.5", - "@babel/plugin-transform-block-scoped-functions": "^7.22.5", - "@babel/plugin-transform-block-scoping": "^7.22.5", - "@babel/plugin-transform-class-properties": "^7.22.5", - "@babel/plugin-transform-class-static-block": "^7.22.5", - "@babel/plugin-transform-classes": "^7.22.5", - "@babel/plugin-transform-computed-properties": "^7.22.5", - "@babel/plugin-transform-destructuring": "^7.22.5", - "@babel/plugin-transform-dotall-regex": "^7.22.5", - "@babel/plugin-transform-duplicate-keys": "^7.22.5", - "@babel/plugin-transform-dynamic-import": "^7.22.5", - "@babel/plugin-transform-exponentiation-operator": "^7.22.5", - "@babel/plugin-transform-export-namespace-from": "^7.22.5", - "@babel/plugin-transform-for-of": "^7.22.5", - "@babel/plugin-transform-function-name": "^7.22.5", - "@babel/plugin-transform-json-strings": "^7.22.5", - "@babel/plugin-transform-literals": "^7.22.5", - "@babel/plugin-transform-logical-assignment-operators": "^7.22.5", - "@babel/plugin-transform-member-expression-literals": "^7.22.5", - "@babel/plugin-transform-modules-amd": "^7.22.5", - "@babel/plugin-transform-modules-commonjs": "^7.22.5", - "@babel/plugin-transform-modules-systemjs": "^7.22.5", - "@babel/plugin-transform-modules-umd": "^7.22.5", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.22.5", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.5", - "@babel/plugin-transform-numeric-separator": "^7.22.5", - "@babel/plugin-transform-object-rest-spread": "^7.22.5", - "@babel/plugin-transform-object-super": "^7.22.5", - "@babel/plugin-transform-optional-catch-binding": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.22.5", - "@babel/plugin-transform-parameters": "^7.22.5", - "@babel/plugin-transform-private-methods": "^7.22.5", - "@babel/plugin-transform-private-property-in-object": "^7.22.5", - "@babel/plugin-transform-property-literals": "^7.22.5", - "@babel/plugin-transform-regenerator": "^7.22.5", - "@babel/plugin-transform-reserved-words": "^7.22.5", - "@babel/plugin-transform-shorthand-properties": "^7.22.5", - "@babel/plugin-transform-spread": "^7.22.5", - "@babel/plugin-transform-sticky-regex": "^7.22.5", - "@babel/plugin-transform-template-literals": "^7.22.5", - "@babel/plugin-transform-typeof-symbol": "^7.22.5", - "@babel/plugin-transform-unicode-escapes": "^7.22.5", - "@babel/plugin-transform-unicode-property-regex": "^7.22.5", - "@babel/plugin-transform-unicode-regex": "^7.22.5", - "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.22.5", - "babel-plugin-polyfill-corejs2": "^0.4.3", - "babel-plugin-polyfill-corejs3": "^0.8.1", - "babel-plugin-polyfill-regenerator": "^0.5.0", - "core-js-compat": "^3.30.2", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/preset-modules": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", - "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - } - }, - "@babel/preset-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz", - "integrity": "sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.5", - "@babel/plugin-syntax-jsx": "^7.22.5", - "@babel/plugin-transform-modules-commonjs": "^7.22.5", - "@babel/plugin-transform-typescript": "^7.22.5" - } - }, - "@babel/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", - "dev": true - }, - "@babel/runtime": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz", - "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - } - }, - "@babel/traverse": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", - "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", - "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", - "dev": true, - "requires": { - "@babel/helper-string-parser": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "to-fast-properties": "^2.0.0" - } - }, - "@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "dependencies": { - "@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - } - } - }, - "@edge-runtime/format": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@edge-runtime/format/-/format-2.1.0.tgz", - "integrity": "sha512-gc2qbYEIIJRczBApBPznVI1c5vZgzrZQOsFZnAxxFiYah9qldHiu1YEitzSvXI8X8ZgvAguuIiyIbpWz17nlXA==", - "dev": true - }, - "@edge-runtime/node-utils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@edge-runtime/node-utils/-/node-utils-2.0.3.tgz", - "integrity": "sha512-JUSbi5xu/A8+D2t9B9wfirCI1J8n8q0660FfmqZgA+n3RqxD3y7SnamL1sKRE5/AbHsKs9zcqCbK2YDklbc9Bg==", - "dev": true - }, - "@edge-runtime/primitives": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.3.tgz", - "integrity": "sha512-YnfMWMRQABAH8IsnFMJWMW+SyB4ZeYBPnR7V0aqdnew7Pq60cbH5DyFjS/FhiLwvHQk9wBREmXD7PP0HooEQ1A==", - "dev": true - }, - "@edge-runtime/vm": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.3.tgz", - "integrity": "sha512-SPfI1JeIRNs/4EEE2Oc0X6gG3RqjD1TnKu2lwmwFXq0435xgZGKhc3UiKkYAdoMn2dNFD73nlabMKHBRoMRpxg==", - "dev": true, - "requires": { - "@edge-runtime/primitives": "3.0.3" - } - }, - "@emotion/hash": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", - "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==", - "dev": true - }, - "@esbuild/android-arm": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.6.tgz", - "integrity": "sha512-bSC9YVUjADDy1gae8RrioINU6e1lCkg3VGVwm0QQ2E1CWcC4gnMce9+B6RpxuSsrsXsk1yojn7sp1fnG8erE2g==", - "dev": true, - "optional": true - }, - "@esbuild/android-arm64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.6.tgz", - "integrity": "sha512-YnYSCceN/dUzUr5kdtUzB+wZprCafuD89Hs0Aqv9QSdwhYQybhXTaSTcrl6X/aWThn1a/j0eEpUBGOE7269REg==", - "dev": true, - "optional": true - }, - "@esbuild/android-x64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.6.tgz", - "integrity": "sha512-MVcYcgSO7pfu/x34uX9u2QIZHmXAB7dEiLQC5bBl5Ryqtpj9lT2sg3gNDEsrPEmimSJW2FXIaxqSQ501YLDsZQ==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-arm64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.6.tgz", - "integrity": "sha512-bsDRvlbKMQMt6Wl08nHtFz++yoZHsyTOxnjfB2Q95gato+Yi4WnRl13oC2/PJJA9yLCoRv9gqT/EYX0/zDsyMA==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-x64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.6.tgz", - "integrity": "sha512-xh2A5oPrYRfMFz74QXIQTQo8uA+hYzGWJFoeTE8EvoZGHb+idyV4ATaukaUvnnxJiauhs/fPx3vYhU4wiGfosg==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-arm64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.6.tgz", - "integrity": "sha512-EnUwjRc1inT4ccZh4pB3v1cIhohE2S4YXlt1OvI7sw/+pD+dIE4smwekZlEPIwY6PhU6oDWwITrQQm5S2/iZgg==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-x64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.6.tgz", - "integrity": "sha512-Uh3HLWGzH6FwpviUcLMKPCbZUAFzv67Wj5MTwK6jn89b576SR2IbEp+tqUHTr8DIl0iDmBAf51MVaP7pw6PY5Q==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.6.tgz", - "integrity": "sha512-7YdGiurNt7lqO0Bf/U9/arrPWPqdPqcV6JCZda4LZgEn+PTQ5SMEI4MGR52Bfn3+d6bNEGcWFzlIxiQdS48YUw==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.6.tgz", - "integrity": "sha512-bUR58IFOMJX523aDVozswnlp5yry7+0cRLCXDsxnUeQYJik1DukMY+apBsLOZJblpH+K7ox7YrKrHmJoWqVR9w==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ia32": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.6.tgz", - "integrity": "sha512-ujp8uoQCM9FRcbDfkqECoARsLnLfCUhKARTP56TFPog8ie9JG83D5GVKjQ6yVrEVdMie1djH86fm98eY3quQkQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-loong64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.6.tgz", - "integrity": "sha512-y2NX1+X/Nt+izj9bLoiaYB9YXT/LoaQFYvCkVD77G/4F+/yuVXYCWz4SE9yr5CBMbOxOfBcy/xFL4LlOeNlzYQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-mips64el": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.6.tgz", - "integrity": "sha512-09AXKB1HDOzXD+j3FdXCiL/MWmZP0Ex9eR8DLMBVcHorrWJxWmY8Nms2Nm41iRM64WVx7bA/JVHMv081iP2kUA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ppc64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.6.tgz", - "integrity": "sha512-AmLhMzkM8JuqTIOhxnX4ubh0XWJIznEynRnZAVdA2mMKE6FAfwT2TWKTwdqMG+qEaeyDPtfNoZRpJbD4ZBv0Tg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-riscv64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.6.tgz", - "integrity": "sha512-Y4Ri62PfavhLQhFbqucysHOmRamlTVK10zPWlqjNbj2XMea+BOs4w6ASKwQwAiqf9ZqcY9Ab7NOU4wIgpxwoSQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-s390x": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.6.tgz", - "integrity": "sha512-SPUiz4fDbnNEm3JSdUW8pBJ/vkop3M1YwZAVwvdwlFLoJwKEZ9L98l3tzeyMzq27CyepDQ3Qgoba44StgbiN5Q==", - "dev": true, - "optional": true - }, - "@esbuild/linux-x64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.6.tgz", - "integrity": "sha512-a3yHLmOodHrzuNgdpB7peFGPx1iJ2x6m+uDvhP2CKdr2CwOaqEFMeSqYAHU7hG+RjCq8r2NFujcd/YsEsFgTGw==", - "dev": true, - "optional": true - }, - "@esbuild/netbsd-x64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.6.tgz", - "integrity": "sha512-EanJqcU/4uZIBreTrnbnre2DXgXSa+Gjap7ifRfllpmyAU7YMvaXmljdArptTHmjrkkKm9BK6GH5D5Yo+p6y5A==", - "dev": true, - "optional": true - }, - "@esbuild/openbsd-x64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.6.tgz", - "integrity": "sha512-xaxeSunhQRsTNGFanoOkkLtnmMn5QbA0qBhNet/XLVsc+OVkpIWPHcr3zTW2gxVU5YOHFbIHR9ODuaUdNza2Vw==", - "dev": true, - "optional": true - }, - "@esbuild/sunos-x64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.6.tgz", - "integrity": "sha512-gnMnMPg5pfMkZvhHee21KbKdc6W3GR8/JuE0Da1kjwpK6oiFU3nqfHuVPgUX2rsOx9N2SadSQTIYV1CIjYG+xw==", - "dev": true, - "optional": true - }, - "@esbuild/win32-arm64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.6.tgz", - "integrity": "sha512-G95n7vP1UnGJPsVdKXllAJPtqjMvFYbN20e8RK8LVLhlTiSOH1sd7+Gt7rm70xiG+I5tM58nYgwWrLs6I1jHqg==", - "dev": true, - "optional": true - }, - "@esbuild/win32-ia32": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.6.tgz", - "integrity": "sha512-96yEFzLhq5bv9jJo5JhTs1gI+1cKQ83cUpyxHuGqXVwQtY5Eq54ZEsKs8veKtiKwlrNimtckHEkj4mRh4pPjsg==", - "dev": true, - "optional": true - }, - "@esbuild/win32-x64": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.6.tgz", - "integrity": "sha512-n6d8MOyUrNp6G4VSpRcgjs5xj4A91svJSaiwLIDWVWEsZtpN5FA9NlBbZHDmAJc2e8e6SF4tkBD3HAvPF+7igA==", - "dev": true, - "optional": true - }, - "@gar/promisify": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", - "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", - "dev": true - }, - "@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", - "dev": true, - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", - "dev": true - }, - "@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "dev": true - }, - "@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - }, - "@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - }, - "dependencies": { - "@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true - } - } - }, - "@jspm/core": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@jspm/core/-/core-2.0.1.tgz", - "integrity": "sha512-Lg3PnLp0QXpxwLIAuuJboLeRaIhrgJjeuh797QADg3xz8wGLugQOS5DpsE8A6i6Adgzf+bacllkKZG3J0tGfDw==", - "dev": true - }, - "@mapbox/node-pre-gyp": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz", - "integrity": "sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==", - "dev": true, - "requires": { - "detect-libc": "^2.0.0", - "https-proxy-agent": "^5.0.0", - "make-dir": "^3.1.0", - "node-fetch": "^2.6.7", - "nopt": "^5.0.0", - "npmlog": "^5.0.1", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.11" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } - } - }, - "@next/env": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.6.tgz", - "integrity": "sha512-nqUxEtvDqFhmV1/awSg0K2XHNwkftNaiUqCYO9e6+MYmqNObpKVl7OgMkGaQ2SZnFx5YqF0t60ZJTlyJIDAijg==" - }, - "@next/swc-darwin-arm64": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.6.tgz", - "integrity": "sha512-ahi6VP98o4HV19rkOXPSUu+ovfHfUxbJQ7VVJ7gL2FnZRr7onEFC1oGQ6NQHpm8CxpIzSSBW79kumlFMOmZVjg==", - "optional": true - }, - "@next/swc-darwin-x64": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.6.tgz", - "integrity": "sha512-13cXxKFsPJIJKzUqrU5XB1mc0xbUgYsRcdH6/rB8c4NMEbWGdtD4QoK9ShN31TZdePpD4k416Ur7p+deMIxnnA==", - "optional": true - }, - "@next/swc-linux-arm64-gnu": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.6.tgz", - "integrity": "sha512-Ti+NMHEjTNktCVxNjeWbYgmZvA2AqMMI2AMlzkXsU7W4pXCMhrryAmAIoo+7YdJbsx01JQWYVxGe62G6DoCLaA==", - "optional": true - }, - "@next/swc-linux-arm64-musl": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.6.tgz", - "integrity": "sha512-OHoC6gO7XfjstgwR+z6UHKlvhqJfyMtNaJidjx3sEcfaDwS7R2lqR5AABi8PuilGgi0BO0O0sCXqLlpp3a0emQ==", - "optional": true - }, - "@next/swc-linux-x64-gnu": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.6.tgz", - "integrity": "sha512-zHZxPGkUlpfNJCboUrFqwlwEX5vI9LSN70b8XEb0DYzzlrZyCyOi7hwDp/+3Urm9AB7YCAJkgR5Sp1XBVjHdfQ==", - "optional": true - }, - "@next/swc-linux-x64-musl": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.6.tgz", - "integrity": "sha512-K/Y8lYGTwTpv5ME8PSJxwxLolaDRdVy+lOd9yMRMiQE0BLUhtxtCWC9ypV42uh9WpLjoaD0joOsB9Q6mbrSGJg==", - "optional": true - }, - "@next/swc-win32-arm64-msvc": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.6.tgz", - "integrity": "sha512-U6LtxEUrjBL2tpW+Kr1nHCSJWNeIed7U7l5o7FiKGGwGgIlFi4UHDiLI6TQ2lxi20fAU33CsruV3U0GuzMlXIw==", - "optional": true - }, - "@next/swc-win32-ia32-msvc": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.6.tgz", - "integrity": "sha512-eEBeAqpCfhdPSlCZCayjCiyIllVqy4tcqvm1xmg3BgJG0G5ITiMM4Cw2WVeRSgWDJqQGRyyb+q8Y2ltzhXOWsQ==", - "optional": true - }, - "@next/swc-win32-x64-msvc": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.6.tgz", - "integrity": "sha512-OrZs94AuO3ZS5tnqlyPRNgfWvboXaDQCi5aXGve3o3C+Sj0ctMUV9+Do+0zMvvLRumR8E0PTWKvtz9n5vzIsWw==", - "optional": true - }, - "@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - } - }, - "@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true - }, - "@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - } - }, - "@npmcli/fs": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", - "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", - "dev": true, - "requires": { - "@gar/promisify": "^1.0.1", - "semver": "^7.3.5" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } - } - }, - "@npmcli/move-file": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", - "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", - "dev": true, - "requires": { - "mkdirp": "^1.0.4", - "rimraf": "^3.0.2" - } - }, - "@npmcli/package-json": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-2.0.0.tgz", - "integrity": "sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA==", - "dev": true, - "requires": { - "json-parse-even-better-errors": "^2.3.1" - } - }, - "@remix-run/dev": { - "version": "npm:@vercel/remix-run-dev@1.17.0", - "resolved": "https://registry.npmjs.org/@vercel/remix-run-dev/-/remix-run-dev-1.17.0.tgz", - "integrity": "sha512-S71dx9sxHi/9Ery9za+ryQYNq5rEA/OeWFaKalHsgA7jYhiJC2U2iP9lV4m251oLXp3K6J8gwY0zF1CWmA7ANA==", - "dev": true, - "requires": { - "@babel/core": "^7.21.8", - "@babel/generator": "^7.21.5", - "@babel/parser": "^7.21.8", - "@babel/plugin-syntax-jsx": "^7.21.4", - "@babel/plugin-syntax-typescript": "^7.21.4", - "@babel/preset-env": "^7.21.5", - "@babel/preset-typescript": "^7.21.5", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5", - "@npmcli/package-json": "^2.0.0", - "@remix-run/server-runtime": "1.17.0", - "@vanilla-extract/integration": "^6.2.0", - "arg": "^5.0.1", - "cacache": "^15.0.5", - "chalk": "^4.1.2", - "chokidar": "^3.5.1", - "dotenv": "^16.0.0", - "esbuild": "0.17.6", - "esbuild-plugin-polyfill-node": "^0.2.0", - "execa": "5.1.1", - "exit-hook": "2.2.1", - "express": "^4.17.1", - "fast-glob": "3.2.11", - "fs-extra": "^10.0.0", - "get-port": "^5.1.1", - "gunzip-maybe": "^1.4.2", - "inquirer": "^8.2.1", - "jsesc": "3.0.2", - "json5": "^2.2.2", - "lodash": "^4.17.21", - "lodash.debounce": "^4.0.8", - "lru-cache": "^7.14.1", - "minimatch": "^9.0.0", - "node-fetch": "^2.6.9", - "ora": "^5.4.1", - "picomatch": "^2.3.1", - "postcss": "^8.4.19", - "postcss-discard-duplicates": "^5.1.0", - "postcss-load-config": "^4.0.1", - "postcss-modules": "^6.0.0", - "prettier": "^2.7.1", - "pretty-ms": "^7.0.1", - "proxy-agent": "^5.0.0", - "react-refresh": "^0.14.0", - "recast": "^0.21.5", - "remark-frontmatter": "4.0.1", - "remark-mdx-frontmatter": "^1.0.1", - "semver": "^7.3.7", - "sort-package-json": "^1.55.0", - "tar-fs": "^2.1.1", - "tsconfig-paths": "^4.0.0", - "ws": "^7.4.5", - "xdm": "^2.0.0" - }, - "dependencies": { - "esbuild": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.6.tgz", - "integrity": "sha512-TKFRp9TxrJDdRWfSsSERKEovm6v30iHnrjlcGhLBOtReE28Yp1VSBRfO3GTaOFMoxsNerx4TjrhzSuma9ha83Q==", - "dev": true, - "requires": { - "@esbuild/android-arm": "0.17.6", - "@esbuild/android-arm64": "0.17.6", - "@esbuild/android-x64": "0.17.6", - "@esbuild/darwin-arm64": "0.17.6", - "@esbuild/darwin-x64": "0.17.6", - "@esbuild/freebsd-arm64": "0.17.6", - "@esbuild/freebsd-x64": "0.17.6", - "@esbuild/linux-arm": "0.17.6", - "@esbuild/linux-arm64": "0.17.6", - "@esbuild/linux-ia32": "0.17.6", - "@esbuild/linux-loong64": "0.17.6", - "@esbuild/linux-mips64el": "0.17.6", - "@esbuild/linux-ppc64": "0.17.6", - "@esbuild/linux-riscv64": "0.17.6", - "@esbuild/linux-s390x": "0.17.6", - "@esbuild/linux-x64": "0.17.6", - "@esbuild/netbsd-x64": "0.17.6", - "@esbuild/openbsd-x64": "0.17.6", - "@esbuild/sunos-x64": "0.17.6", - "@esbuild/win32-arm64": "0.17.6", - "@esbuild/win32-ia32": "0.17.6", - "@esbuild/win32-x64": "0.17.6" - } - }, - "postcss": { - "version": "8.4.24", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", - "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", - "dev": true, - "requires": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - } - }, - "semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - } - } - }, - "@remix-run/router": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.6.3.tgz", - "integrity": "sha512-EXJysQ7J3veRECd0kZFQwYYd5sJMcq2O/m60zu1W2l3oVQ9xtub8jTOtYRE0+M2iomyG/W3Ps7+vp2kna0C27Q==", - "dev": true - }, - "@remix-run/server-runtime": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/@remix-run/server-runtime/-/server-runtime-1.17.0.tgz", - "integrity": "sha512-xcUXaOibfIFZlvuyuWouz/t3fYhHCqRoKeGxQFGd1BvQBCmPaiau7B1Ao4aJFKyY7eU/L35KCaGzZBTdIF+d5w==", - "dev": true, - "requires": { - "@remix-run/router": "1.6.3", - "@web3-storage/multipart-parser": "^1.0.0", - "cookie": "^0.4.1", - "set-cookie-parser": "^2.4.8", - "source-map": "^0.7.3" - } - }, - "@rollup/pluginutils": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", - "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", - "dev": true, - "requires": { - "estree-walker": "^2.0.1", - "picomatch": "^2.2.2" - } - }, - "@sinclair/typebox": { - "version": "0.25.24", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", - "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", - "dev": true - }, - "@sindresorhus/is": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", - "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", - "dev": true - }, - "@swc/helpers": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", - "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", - "requires": { - "tslib": "^2.4.0" - } - }, - "@szmarczak/http-timer": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", - "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", - "dev": true, - "requires": { - "defer-to-connect": "^2.0.0" - } - }, - "@tootallnate/once": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", - "dev": true - }, - "@ts-morph/common": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/@ts-morph/common/-/common-0.11.1.tgz", - "integrity": "sha512-7hWZS0NRpEsNV8vWJzg7FEz6V8MaLNeJOmwmghqUXTpzk16V1LLZhdo+4QvE/+zv4cVci0OviuJFnqhEfoV3+g==", - "dev": true, - "requires": { - "fast-glob": "^3.2.7", - "minimatch": "^3.0.4", - "mkdirp": "^1.0.4", - "path-browserify": "^1.0.1" - }, - "dependencies": { - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - } - } - }, - "@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", - "dev": true - }, - "@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "dev": true - }, - "@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "dev": true - }, - "@tsconfig/node16": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", - "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", - "dev": true - }, - "@types/acorn": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz", - "integrity": "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==", - "dev": true, - "requires": { - "@types/estree": "*" - } - }, - "@types/cacheable-request": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", - "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", - "dev": true, - "requires": { - "@types/http-cache-semantics": "*", - "@types/keyv": "^3.1.4", - "@types/node": "*", - "@types/responselike": "^1.0.0" - } - }, - "@types/debug": { - "version": "4.1.8", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.8.tgz", - "integrity": "sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ==", - "dev": true, - "requires": { - "@types/ms": "*" - } - }, - "@types/estree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", - "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", - "dev": true - }, - "@types/estree-jsx": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-0.0.1.tgz", - "integrity": "sha512-gcLAYiMfQklDCPjQegGn0TBAn9it05ISEsEhlKQUddIk7o2XDokOcTN7HBO8tznM0D9dGezvHEfRZBfZf6me0A==", - "dev": true, - "requires": { - "@types/estree": "*" - } - }, - "@types/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", - "dev": true, - "requires": { - "@types/minimatch": "*", - "@types/node": "*" - } - }, - "@types/hast": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.4.tgz", - "integrity": "sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==", - "dev": true, - "requires": { - "@types/unist": "*" - } - }, - "@types/http-cache-semantics": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", - "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==", - "dev": true - }, - "@types/json-schema": { - "version": "7.0.12", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", - "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", - "dev": true - }, - "@types/keyv": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", - "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/mdast": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.11.tgz", - "integrity": "sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==", - "dev": true, - "requires": { - "@types/unist": "*" - } - }, - "@types/mdurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.2.tgz", - "integrity": "sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==", - "dev": true - }, - "@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", - "dev": true - }, - "@types/ms": { - "version": "0.7.31", - "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz", - "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==", - "dev": true - }, - "@types/node": { - "version": "20.3.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.3.tgz", - "integrity": "sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==", - "dev": true - }, - "@types/node-fetch": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", - "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", - "dev": true, - "requires": { - "@types/node": "*", - "form-data": "^3.0.0" - } - }, - "@types/prop-types": { - "version": "15.7.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", - "dev": true - }, - "@types/react": { - "version": "18.2.13", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.13.tgz", - "integrity": "sha512-vJ+zElvi/Zn9cVXB5slX2xL8PZodPCwPRDpittQdw43JR2AJ5k3vKdgJJyneV/cYgIbLQUwXa9JVDvUZXGba+Q==", - "dev": true, - "requires": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "@types/react-dom": { - "version": "18.2.6", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.6.tgz", - "integrity": "sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==", - "dev": true, - "requires": { - "@types/react": "*" - } - }, - "@types/responselike": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", - "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/scheduler": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", - "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==", - "dev": true - }, - "@types/unist": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", - "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==", - "dev": true - }, - "@vanilla-extract/babel-plugin-debug-ids": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@vanilla-extract/babel-plugin-debug-ids/-/babel-plugin-debug-ids-1.0.3.tgz", - "integrity": "sha512-vm4jYu1xhSa6ofQ9AhIpR3DkAp4c+eoR1Rpm8/TQI4DmWbmGbOjYRcqV0aWsfaIlNhN4kFuxFMKBNN9oG6iRzA==", - "dev": true, - "requires": { - "@babel/core": "^7.20.7" - } - }, - "@vanilla-extract/css": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/@vanilla-extract/css/-/css-1.12.0.tgz", - "integrity": "sha512-TEttZfnqTRtwgVYiBWQSGGUiVaYWReHp59DsavITEvh4TpJNifZFGhBznHx4wQFEsyio6xA513jps4tmqR6zmw==", - "dev": true, - "requires": { - "@emotion/hash": "^0.9.0", - "@vanilla-extract/private": "^1.0.3", - "ahocorasick": "1.0.2", - "chalk": "^4.1.1", - "css-what": "^6.1.0", - "cssesc": "^3.0.0", - "csstype": "^3.0.7", - "deep-object-diff": "^1.1.9", - "deepmerge": "^4.2.2", - "media-query-parser": "^2.0.2", - "outdent": "^0.8.0" - } - }, - "@vanilla-extract/integration": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/@vanilla-extract/integration/-/integration-6.2.1.tgz", - "integrity": "sha512-+xYJz07G7TFAMZGrOqArOsURG+xcYvqctujEkANjw2McCBvGEK505RxQqOuNiA9Mi9hgGdNp2JedSa94f3eoLg==", - "dev": true, - "requires": { - "@babel/core": "^7.20.7", - "@babel/plugin-syntax-typescript": "^7.20.0", - "@vanilla-extract/babel-plugin-debug-ids": "^1.0.2", - "@vanilla-extract/css": "^1.10.0", - "esbuild": "0.17.6", - "eval": "0.1.6", - "find-up": "^5.0.0", - "javascript-stringify": "^2.0.1", - "lodash": "^4.17.21", - "mlly": "^1.1.0", - "outdent": "^0.8.0", - "vite": "^4.1.4", - "vite-node": "^0.28.5" - }, - "dependencies": { - "esbuild": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.6.tgz", - "integrity": "sha512-TKFRp9TxrJDdRWfSsSERKEovm6v30iHnrjlcGhLBOtReE28Yp1VSBRfO3GTaOFMoxsNerx4TjrhzSuma9ha83Q==", - "dev": true, - "requires": { - "@esbuild/android-arm": "0.17.6", - "@esbuild/android-arm64": "0.17.6", - "@esbuild/android-x64": "0.17.6", - "@esbuild/darwin-arm64": "0.17.6", - "@esbuild/darwin-x64": "0.17.6", - "@esbuild/freebsd-arm64": "0.17.6", - "@esbuild/freebsd-x64": "0.17.6", - "@esbuild/linux-arm": "0.17.6", - "@esbuild/linux-arm64": "0.17.6", - "@esbuild/linux-ia32": "0.17.6", - "@esbuild/linux-loong64": "0.17.6", - "@esbuild/linux-mips64el": "0.17.6", - "@esbuild/linux-ppc64": "0.17.6", - "@esbuild/linux-riscv64": "0.17.6", - "@esbuild/linux-s390x": "0.17.6", - "@esbuild/linux-x64": "0.17.6", - "@esbuild/netbsd-x64": "0.17.6", - "@esbuild/openbsd-x64": "0.17.6", - "@esbuild/sunos-x64": "0.17.6", - "@esbuild/win32-arm64": "0.17.6", - "@esbuild/win32-ia32": "0.17.6", - "@esbuild/win32-x64": "0.17.6" - } - } - } - }, - "@vanilla-extract/private": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@vanilla-extract/private/-/private-1.0.3.tgz", - "integrity": "sha512-17kVyLq3ePTKOkveHxXuIJZtGYs+cSoev7BlP+Lf4916qfDhk/HBjvlYDe8egrea7LNPHKwSZJK/bzZC+Q6AwQ==", - "dev": true - }, - "@vercel/build-utils": { - "version": "6.7.5", - "resolved": "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-6.7.5.tgz", - "integrity": "sha512-nzglYEz9BvZH0lptfTtTVDDD3Dyn31gnBGChOUT7J1jkzlMT1IReuysgJPisaWk4v92Ax5SpZL35I0lOQdfKwQ==", - "dev": true - }, - "@vercel/error-utils": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@vercel/error-utils/-/error-utils-1.0.10.tgz", - "integrity": "sha512-nsKy2sy+pjUWyKI1V/XXKspVzHMYgSalmj5+EsKWFXZbnNZicqxNtMR94J8Hs7SB4TQxh0s4KhczJtL59AVGMg==", - "dev": true - }, - "@vercel/gatsby-plugin-vercel-analytics": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-analytics/-/gatsby-plugin-vercel-analytics-1.0.10.tgz", - "integrity": "sha512-v329WHdtIce+y7oAmaWRvEx59Xfo0FxlQqK4BJG0u6VWYoKWPaflohDAiehIZf/YHCRVb59ZxnzmMOcm/LR8YQ==", - "dev": true, - "requires": { - "@babel/runtime": "7.12.1", - "web-vitals": "0.2.4" - } - }, - "@vercel/gatsby-plugin-vercel-builder": { - "version": "1.3.10", - "resolved": "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.10.tgz", - "integrity": "sha512-LtmjAUrH+1G4ryyjCCqITvPivEFb6qby7rVGRplb+rtI5RrT/igqz95FrAC70+xpSVsqz4nu3j15NkEIR3woog==", - "dev": true, - "requires": { - "@sinclair/typebox": "0.25.24", - "@vercel/build-utils": "6.7.5", - "@vercel/node": "2.15.2", - "@vercel/routing-utils": "2.2.1", - "esbuild": "0.14.47", - "etag": "1.8.1", - "fs-extra": "11.1.0" - }, - "dependencies": { - "fs-extra": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", - "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - } - } - }, - "@vercel/go": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@vercel/go/-/go-2.5.1.tgz", - "integrity": "sha512-yZGzzGmVXt2Rsy1cR0EDbst0fMhdELQY8c3jXy6/FTWJFG1e/40JYksu+WiRCxRBp8e7zfcxMrv0dN8JWRmbPQ==", - "dev": true - }, - "@vercel/hydrogen": { - "version": "0.0.64", - "resolved": "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-0.0.64.tgz", - "integrity": "sha512-1rzFB664G6Yzp7j4ezW9hvVjqnaU2BhyUdhchbsxtRuxkMpGgPBZKhjzRQHFvlmkz37XLC658T5Nb1P91b4sBw==", - "dev": true - }, - "@vercel/next": { - "version": "3.8.6", - "resolved": "https://registry.npmjs.org/@vercel/next/-/next-3.8.6.tgz", - "integrity": "sha512-q+BxVLAfKFjTcak+z3U0SvYpgsnF8spu3Wz0GdRSVHiZpd1TtmIIp5r5RT5WVJLt4NNgmD4KxLNbvXhwjxOFKA==", - "dev": true - }, - "@vercel/nft": { - "version": "0.22.5", - "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.22.5.tgz", - "integrity": "sha512-mug57Wd1BL7GMj9gXMgMeKUjdqO0e4u+0QLPYMFE1rwdJ+55oPy6lp3nIBCS8gOvigT62UI4QKUL2sGqcoW4Hw==", - "dev": true, - "requires": { - "@mapbox/node-pre-gyp": "^1.0.5", - "@rollup/pluginutils": "^4.0.0", - "acorn": "^8.6.0", - "async-sema": "^3.1.1", - "bindings": "^1.4.0", - "estree-walker": "2.0.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.2", - "node-gyp-build": "^4.2.2", - "resolve-from": "^5.0.0" - } - }, - "@vercel/node": { - "version": "2.15.2", - "resolved": "https://registry.npmjs.org/@vercel/node/-/node-2.15.2.tgz", - "integrity": "sha512-1Dn4hdQY/ErHXOB0+h3I0zIlqAb6/2LRBi+8Od+MYG8ooGKkTsK+j9IPWVBWn6ycBsM0eeNTIhqgYSGTYbMjMw==", - "dev": true, - "requires": { - "@edge-runtime/node-utils": "2.0.3", - "@edge-runtime/primitives": "2.1.2", - "@edge-runtime/vm": "3.0.1", - "@types/node": "14.18.33", - "@types/node-fetch": "2.6.3", - "@vercel/build-utils": "6.7.5", - "@vercel/error-utils": "1.0.10", - "@vercel/static-config": "2.0.17", - "async-listen": "3.0.0", - "edge-runtime": "2.4.3", - "esbuild": "0.14.47", - "exit-hook": "2.2.1", - "node-fetch": "2.6.9", - "path-to-regexp": "6.2.1", - "ts-morph": "12.0.0", - "ts-node": "10.9.1", - "typescript": "4.9.5" - }, - "dependencies": { - "@edge-runtime/primitives": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-2.1.2.tgz", - "integrity": "sha512-SR04SMDybALlhIYIi0hiuEUwIl0b7Sn+RKwQkX6hydg4+AKMzBNDFhj2nqHDD1+xkHArV9EhmJIb6iGjShwSzg==", - "dev": true - }, - "@edge-runtime/vm": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.1.tgz", - "integrity": "sha512-69twXLIcqVx0iNlc1vFqnXgka2CZi2c/QBAmMzXBk0M6mPG+ICCBh2dd+cv1K+HW2pfLuSW+EskkFXWGeCf1Vw==", - "dev": true, - "requires": { - "@edge-runtime/primitives": "3.0.1" - }, - "dependencies": { - "@edge-runtime/primitives": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.1.tgz", - "integrity": "sha512-l5NNDcPkKW4N6qRmB8zzpCF6uRW1S808V/zm72z7b/aWwZUYbmEPPkzyhGAW0aQxLU1pGdZ8u2gNjamdaU6RXw==", - "dev": true - } - } - }, - "@types/node": { - "version": "14.18.33", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.33.tgz", - "integrity": "sha512-qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg==", - "dev": true - }, - "edge-runtime": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.4.3.tgz", - "integrity": "sha512-Amv/P+OJhxopvoVXFr7UXAKheBpdLeCcdR5Vw4GSdNFDWVny9sioQbczjEKPLER5WsMXl17P+llS011Xftducw==", - "dev": true, - "requires": { - "@edge-runtime/format": "2.1.0", - "@edge-runtime/vm": "3.0.3", - "async-listen": "3.0.0", - "mri": "1.2.0", - "picocolors": "1.0.0", - "pretty-bytes": "5.6.0", - "pretty-ms": "7.0.1", - "signal-exit": "4.0.2", - "time-span": "4.0.0" - }, - "dependencies": { - "@edge-runtime/primitives": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.3.tgz", - "integrity": "sha512-YnfMWMRQABAH8IsnFMJWMW+SyB4ZeYBPnR7V0aqdnew7Pq60cbH5DyFjS/FhiLwvHQk9wBREmXD7PP0HooEQ1A==", - "dev": true - }, - "@edge-runtime/vm": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.3.tgz", - "integrity": "sha512-SPfI1JeIRNs/4EEE2Oc0X6gG3RqjD1TnKu2lwmwFXq0435xgZGKhc3UiKkYAdoMn2dNFD73nlabMKHBRoMRpxg==", - "dev": true, - "requires": { - "@edge-runtime/primitives": "3.0.3" - } - } - } - }, - "typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", - "dev": true - } - } - }, - "@vercel/python": { - "version": "3.1.60", - "resolved": "https://registry.npmjs.org/@vercel/python/-/python-3.1.60.tgz", - "integrity": "sha512-1aYinyTfejS8Us+sOum+RQPYcre0vF3XoL7ohL170ZCcHA0l35qV0b1slGAmLt3pqaHKYy3g/nkzUhuR8XXIrQ==", - "dev": true - }, - "@vercel/redwood": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/@vercel/redwood/-/redwood-1.1.15.tgz", - "integrity": "sha512-j0XaXe4ZpGVHG7XQSmZ3kza6s+ZtOBfRhnSxA70yCkrvPNN3tZgF3fevSKXizfL9fzVDd7Tdj++SCGWMdGfsyA==", - "dev": true, - "requires": { - "@vercel/nft": "0.22.5", - "@vercel/routing-utils": "2.2.1", - "semver": "6.1.1" - } - }, - "@vercel/remix-builder": { - "version": "1.8.14", - "resolved": "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-1.8.14.tgz", - "integrity": "sha512-4CnYxCv6rgRxyXGnpGySf+K2rihLgTkMKN9pYJKQJh/VmlBcxqYP9tndDEH8sYtDsdUZuSfuX3ecajGuqb/wPA==", - "dev": true, - "requires": { - "@remix-run/dev": "npm:@vercel/remix-run-dev@1.17.0", - "@vercel/build-utils": "6.7.5", - "@vercel/nft": "0.22.5", - "@vercel/static-config": "2.0.17", - "path-to-regexp": "6.2.1", - "semver": "7.3.8", - "ts-morph": "12.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } - } - }, - "@vercel/routing-utils": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@vercel/routing-utils/-/routing-utils-2.2.1.tgz", - "integrity": "sha512-kzMZsvToDCDskNRZD71B9UAgstec7ujmlGH8cBEo6F/07VaFeji6GQdgd6Zwnrj+TvzQBggKoPQR64VkVY8Lzw==", - "dev": true, - "requires": { - "ajv": "^6.0.0", - "path-to-regexp": "6.1.0" - }, - "dependencies": { - "path-to-regexp": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.1.0.tgz", - "integrity": "sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==", - "dev": true - } - } - }, - "@vercel/ruby": { - "version": "1.3.76", - "resolved": "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.76.tgz", - "integrity": "sha512-J8I0B7wAn8piGoPhBroBfJWgMEJTMEL/2o8MCoCyWdaE7MRtpXhI10pj8IvcUvAECoGJ+SM1Pm+SvBqtbtZ5FQ==", - "dev": true - }, - "@vercel/static-build": { - "version": "1.3.37", - "resolved": "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.3.37.tgz", - "integrity": "sha512-AkmWV8sqXUqkVj4F7vt7LZ9cRfO57U7he23l3xvykD/xV2ufsuLxwgIS9idM5AeqVh7juJNuTJq+ObIht6OgLw==", - "dev": true, - "requires": { - "@vercel/gatsby-plugin-vercel-analytics": "1.0.10", - "@vercel/gatsby-plugin-vercel-builder": "1.3.10" - } - }, - "@vercel/static-config": { - "version": "2.0.17", - "resolved": "https://registry.npmjs.org/@vercel/static-config/-/static-config-2.0.17.tgz", - "integrity": "sha512-2f50OTVrN07x7pH+XNW0e7cj7T+Ufg+19+a2N3/XZBjQmV+FaMlmSLiaQ4tBxp2H8lWWHzENua7ZSSQPtRZ3/A==", - "dev": true, - "requires": { - "ajv": "8.6.3", - "json-schema-to-ts": "1.6.4", - "ts-morph": "12.0.0" - }, - "dependencies": { - "ajv": { - "version": "8.6.3", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.6.3.tgz", - "integrity": "sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - } - } - }, - "@vue/compiler-core": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.4.tgz", - "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==", - "peer": true, - "requires": { - "@babel/parser": "^7.21.3", - "@vue/shared": "3.3.4", - "estree-walker": "^2.0.2", - "source-map-js": "^1.0.2" - } - }, - "@vue/compiler-dom": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz", - "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==", - "peer": true, - "requires": { - "@vue/compiler-core": "3.3.4", - "@vue/shared": "3.3.4" - } - }, - "@vue/compiler-sfc": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz", - "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==", - "peer": true, - "requires": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.4", - "@vue/compiler-dom": "3.3.4", - "@vue/compiler-ssr": "3.3.4", - "@vue/reactivity-transform": "3.3.4", - "@vue/shared": "3.3.4", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.0", - "postcss": "^8.1.10", - "source-map-js": "^1.0.2" - } - }, - "@vue/compiler-ssr": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz", - "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==", - "peer": true, - "requires": { - "@vue/compiler-dom": "3.3.4", - "@vue/shared": "3.3.4" - } - }, - "@vue/reactivity": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.4.tgz", - "integrity": "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==", - "peer": true, - "requires": { - "@vue/shared": "3.3.4" - } - }, - "@vue/reactivity-transform": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz", - "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==", - "peer": true, - "requires": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.4", - "@vue/shared": "3.3.4", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.0" - } - }, - "@vue/runtime-core": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.4.tgz", - "integrity": "sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==", - "peer": true, - "requires": { - "@vue/reactivity": "3.3.4", - "@vue/shared": "3.3.4" - } - }, - "@vue/runtime-dom": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz", - "integrity": "sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==", - "peer": true, - "requires": { - "@vue/runtime-core": "3.3.4", - "@vue/shared": "3.3.4", - "csstype": "^3.1.1" - } - }, - "@vue/server-renderer": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.4.tgz", - "integrity": "sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==", - "peer": true, - "requires": { - "@vue/compiler-ssr": "3.3.4", - "@vue/shared": "3.3.4" - } - }, - "@vue/shared": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz", - "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==", - "peer": true - }, - "@web3-storage/multipart-parser": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@web3-storage/multipart-parser/-/multipart-parser-1.0.0.tgz", - "integrity": "sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw==", - "dev": true - }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "dev": true, - "requires": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - } - }, - "acorn": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", - "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", - "dev": true - }, - "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "requires": {} - }, - "acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", - "dev": true - }, - "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "requires": { - "debug": "4" - } - }, - "aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - } - }, - "ahocorasick": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/ahocorasick/-/ahocorasick-1.0.2.tgz", - "integrity": "sha512-hCOfMzbFx5IDutmWLAt6MZwOUjIfSM9G9FyVxytmE4Rs/5YDPWQrD/+IR1w+FweD9H2oOZEnv36TmkjhNURBVA==", - "dev": true - }, - "ai": { - "version": "2.1.9", - "resolved": "https://registry.npmjs.org/ai/-/ai-2.1.9.tgz", - "integrity": "sha512-PiDWO/5lFvnbEziJjl+4CE44jg4weknJuW5VZAQQ4PDyFnDjxoCMkSJ95zEatX3qrYZfRP6zXHkmy+/OqwclfA==", - "requires": { - "eventsource-parser": "1.0.0", - "nanoid": "^3.3.6", - "sswr": "^1.10.0", - "swr": "2.1.5", - "swrv": "1.0.3" - } - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "optional": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "requires": { - "type-fest": "^0.21.3" - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true - }, - "are-we-there-yet": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", - "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", - "dev": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - } - }, - "arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", - "dev": true - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "dev": true - }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true - }, - "ast-types": { - "version": "0.13.4", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", - "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", - "dev": true, - "requires": { - "tslib": "^2.0.1" - } - }, - "astring": { - "version": "1.8.6", - "resolved": "https://registry.npmjs.org/astring/-/astring-1.8.6.tgz", - "integrity": "sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==", - "dev": true - }, - "async-listen": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/async-listen/-/async-listen-3.0.0.tgz", - "integrity": "sha512-V+SsTpDqkrWTimiotsyl33ePSjA5/KrithwupuvJ6ztsqPvGv6ge4OredFhPffVXiLN/QUWvE0XcqJaYgt6fOg==", - "dev": true - }, - "async-sema": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz", - "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==", - "dev": true - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true - }, - "babel-plugin-polyfill-corejs2": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.3.tgz", - "integrity": "sha512-bM3gHc337Dta490gg+/AseNB9L4YLHxq1nGKZZSHbhXv4aTYU2MD2cjza1Ru4S6975YLTaL1K8uJf6ukJhhmtw==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.4.0", - "semver": "^6.1.1" - } - }, - "babel-plugin-polyfill-corejs3": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.1.tgz", - "integrity": "sha512-ikFrZITKg1xH6pLND8zT14UPgjKHiGLqex7rGEZCH2EvhsneJaJPemmpQaIZV5AL03II+lXylw3UmddDK8RU5Q==", - "dev": true, - "requires": { - "@babel/helper-define-polyfill-provider": "^0.4.0", - "core-js-compat": "^3.30.1" - } - }, - "babel-plugin-polyfill-regenerator": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.0.tgz", - "integrity": "sha512-hDJtKjMLVa7Z+LwnTCxoDLQj6wdc+B8dun7ayF2fYieI6OzfuvcLMB32ihJZ4UhCBwNYGl5bg/x/P9cMdnkc2g==", - "dev": true, - "requires": { - "@babel/helper-define-polyfill-provider": "^0.4.0" - } - }, - "bail": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", - "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", - "dev": true - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true - }, - "bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "dev": true, - "requires": { - "file-uri-to-path": "1.0.0" - } - }, - "bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "requires": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", - "dev": true, - "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "browserify-zlib": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz", - "integrity": "sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==", - "dev": true, - "requires": { - "pako": "~0.2.0" - } - }, - "browserslist": { - "version": "4.21.9", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", - "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001503", - "electron-to-chromium": "^1.4.431", - "node-releases": "^2.0.12", - "update-browserslist-db": "^1.0.11" - } - }, - "buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true - }, - "busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "requires": { - "streamsearch": "^1.1.0" - } - }, - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true - }, - "cac": { - "version": "6.7.14", - "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", - "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", - "dev": true - }, - "cacache": { - "version": "15.3.0", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", - "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", - "dev": true, - "requires": { - "@npmcli/fs": "^1.0.0", - "@npmcli/move-file": "^1.0.1", - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "glob": "^7.1.4", - "infer-owner": "^1.0.4", - "lru-cache": "^6.0.0", - "minipass": "^3.1.1", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.2", - "mkdirp": "^1.0.3", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^8.0.1", - "tar": "^6.0.2", - "unique-filename": "^1.1.1" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "cacheable-lookup": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", - "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", - "dev": true - }, - "cacheable-request": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", - "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", - "dev": true, - "requires": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^4.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^6.0.1", - "responselike": "^2.0.0" - }, - "dependencies": { - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - } - } - }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "caniuse-lite": { - "version": "1.0.30001509", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001509.tgz", - "integrity": "sha512-2uDDk+TRiTX5hMcUYT/7CSyzMZxjfGu0vAUjS2g0LSD8UoXOv0LtpH4LxGMemsiPq6LCVIUjNwVM0erkOkGCDA==" - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "character-entities": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", - "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", - "dev": true - }, - "character-entities-html4": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", - "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", - "dev": true - }, - "character-entities-legacy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", - "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", - "dev": true - }, - "character-reference-invalid": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", - "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", - "dev": true - }, - "chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true - }, - "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - } - }, - "chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true - }, - "clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true - }, - "cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, - "requires": { - "restore-cursor": "^3.1.0" - } - }, - "cli-spinners": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.0.tgz", - "integrity": "sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==", - "dev": true - }, - "cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true - }, - "client-only": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", - "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" - }, - "clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "dev": true - }, - "clone-response": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", - "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", - "dev": true, - "requires": { - "mimic-response": "^1.0.0" - } - }, - "code-block-writer": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-10.1.1.tgz", - "integrity": "sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==", - "dev": true - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "comma-separated-tokens": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", - "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", - "dev": true - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", - "dev": true - }, - "content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "dev": true, - "requires": { - "safe-buffer": "5.2.1" - } - }, - "content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "dev": true - }, - "convert-hrtime": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-3.0.0.tgz", - "integrity": "sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA==", - "dev": true - }, - "convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, - "cookie": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", - "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", - "dev": true - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "dev": true - }, - "core-js-compat": { - "version": "3.31.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.31.0.tgz", - "integrity": "sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==", - "dev": true, - "requires": { - "browserslist": "^4.21.5" - } - }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true - }, - "create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "dev": true - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", - "dev": true - }, - "cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true - }, - "csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" - }, - "data-uri-to-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz", - "integrity": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==", - "dev": true - }, - "deasync": { - "version": "0.1.28", - "resolved": "https://registry.npmjs.org/deasync/-/deasync-0.1.28.tgz", - "integrity": "sha512-QqLF6inIDwiATrfROIyQtwOQxjZuek13WRYZ7donU5wJPLoP67MnYxA6QtqdvdBy2mMqv5m3UefBVdJjvevOYg==", - "dev": true, - "optional": true, - "requires": { - "bindings": "^1.5.0", - "node-addon-api": "^1.7.1" - } - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "decode-named-character-reference": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", - "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", - "dev": true, - "requires": { - "character-entities": "^2.0.0" - } - }, - "decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "dev": true, - "requires": { - "mimic-response": "^3.1.0" - }, - "dependencies": { - "mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "dev": true - } - } - }, - "deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "deep-object-diff": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/deep-object-diff/-/deep-object-diff-1.1.9.tgz", - "integrity": "sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==", - "dev": true - }, - "deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "dev": true - }, - "defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", - "dev": true, - "requires": { - "clone": "^1.0.2" - } - }, - "defer-to-connect": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", - "dev": true - }, - "degenerator": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-3.0.4.tgz", - "integrity": "sha512-Z66uPeBfHZAHVmue3HPfyKu2Q0rC2cRxbTOsvmU/po5fvvcx27W4mIu9n0PUlQih4oUYvcG1BsbtVv8x7KDOSw==", - "dev": true, - "requires": { - "ast-types": "^0.13.2", - "escodegen": "^1.8.1", - "esprima": "^4.0.0", - "vm2": "^3.9.17" - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "dev": true - }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", - "dev": true - }, - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true - }, - "dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "dev": true - }, - "destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "dev": true - }, - "detect-indent": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", - "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", - "dev": true - }, - "detect-libc": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", - "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", - "dev": true - }, - "detect-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", - "dev": true - }, - "diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "dev": true - }, - "dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "requires": { - "path-type": "^4.0.0" - } - }, - "dotenv": { - "version": "16.3.1", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", - "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", - "dev": true - }, - "duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", - "dev": true, - "requires": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "edge-runtime": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.4.4.tgz", - "integrity": "sha512-uq1YdIxkMDsBYLdSSp/w62PciCL46ic4m1Z/2G6N8RcAPI8p35O8u6hJQT83j28Dnt4U5iyvmwFMYouHMK51uA==", - "dev": true, - "requires": { - "@edge-runtime/format": "2.1.0", - "@edge-runtime/vm": "3.0.3", - "async-listen": "3.0.0", - "mri": "1.2.0", - "picocolors": "1.0.0", - "pretty-bytes": "5.6.0", - "pretty-ms": "7.0.1", - "signal-exit": "4.0.2", - "time-span": "4.0.0" - } - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true - }, - "electron-to-chromium": { - "version": "1.4.445", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.445.tgz", - "integrity": "sha512-++DB+9VK8SBJwC+X1zlMfJ1tMA3F0ipi39GdEp+x3cV2TyBihqAgad8cNMWtLDEkbH39nlDQP7PfGrDr3Dr7HA==", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "dev": true - }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "requires": { - "once": "^1.4.0" - } - }, - "esbuild": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.47.tgz", - "integrity": "sha512-wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA==", - "dev": true, - "requires": { - "esbuild-android-64": "0.14.47", - "esbuild-android-arm64": "0.14.47", - "esbuild-darwin-64": "0.14.47", - "esbuild-darwin-arm64": "0.14.47", - "esbuild-freebsd-64": "0.14.47", - "esbuild-freebsd-arm64": "0.14.47", - "esbuild-linux-32": "0.14.47", - "esbuild-linux-64": "0.14.47", - "esbuild-linux-arm": "0.14.47", - "esbuild-linux-arm64": "0.14.47", - "esbuild-linux-mips64le": "0.14.47", - "esbuild-linux-ppc64le": "0.14.47", - "esbuild-linux-riscv64": "0.14.47", - "esbuild-linux-s390x": "0.14.47", - "esbuild-netbsd-64": "0.14.47", - "esbuild-openbsd-64": "0.14.47", - "esbuild-sunos-64": "0.14.47", - "esbuild-windows-32": "0.14.47", - "esbuild-windows-64": "0.14.47", - "esbuild-windows-arm64": "0.14.47" - } - }, - "esbuild-android-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.47.tgz", - "integrity": "sha512-R13Bd9+tqLVFndncMHssZrPWe6/0Kpv2/dt4aA69soX4PRxlzsVpCvoJeFE8sOEoeVEiBkI0myjlkDodXlHa0g==", - "dev": true, - "optional": true - }, - "esbuild-android-arm64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.47.tgz", - "integrity": "sha512-OkwOjj7ts4lBp/TL6hdd8HftIzOy/pdtbrNA4+0oVWgGG64HrdVzAF5gxtJufAPOsEjkyh1oIYvKAUinKKQRSQ==", - "dev": true, - "optional": true - }, - "esbuild-darwin-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.47.tgz", - "integrity": "sha512-R6oaW0y5/u6Eccti/TS6c/2c1xYTb1izwK3gajJwi4vIfNs1s8B1dQzI1UiC9T61YovOQVuePDcfqHLT3mUZJA==", - "dev": true, - "optional": true - }, - "esbuild-darwin-arm64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.47.tgz", - "integrity": "sha512-seCmearlQyvdvM/noz1L9+qblC5vcBrhUaOoLEDDoLInF/VQ9IkobGiLlyTPYP5dW1YD4LXhtBgOyevoIHGGnw==", - "dev": true, - "optional": true - }, - "esbuild-freebsd-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.47.tgz", - "integrity": "sha512-ZH8K2Q8/Ux5kXXvQMDsJcxvkIwut69KVrYQhza/ptkW50DC089bCVrJZZ3sKzIoOx+YPTrmsZvqeZERjyYrlvQ==", - "dev": true, - "optional": true - }, - "esbuild-freebsd-arm64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.47.tgz", - "integrity": "sha512-ZJMQAJQsIOhn3XTm7MPQfCzEu5b9STNC+s90zMWe2afy9EwnHV7Ov7ohEMv2lyWlc2pjqLW8QJnz2r0KZmeAEQ==", - "dev": true, - "optional": true - }, - "esbuild-linux-32": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.47.tgz", - "integrity": "sha512-FxZOCKoEDPRYvq300lsWCTv1kcHgiiZfNrPtEhFAiqD7QZaXrad8LxyJ8fXGcWzIFzRiYZVtB3ttvITBvAFhKw==", - "dev": true, - "optional": true - }, - "esbuild-linux-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.47.tgz", - "integrity": "sha512-nFNOk9vWVfvWYF9YNYksZptgQAdstnDCMtR6m42l5Wfugbzu11VpMCY9XrD4yFxvPo9zmzcoUL/88y0lfJZJJw==", - "dev": true, - "optional": true - }, - "esbuild-linux-arm": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.47.tgz", - "integrity": "sha512-ZGE1Bqg/gPRXrBpgpvH81tQHpiaGxa8c9Rx/XOylkIl2ypLuOcawXEAo8ls+5DFCcRGt/o3sV+PzpAFZobOsmA==", - "dev": true, - "optional": true - }, - "esbuild-linux-arm64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.47.tgz", - "integrity": "sha512-ywfme6HVrhWcevzmsufjd4iT3PxTfCX9HOdxA7Hd+/ZM23Y9nXeb+vG6AyA6jgq/JovkcqRHcL9XwRNpWG6XRw==", - "dev": true, - "optional": true - }, - "esbuild-linux-mips64le": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.47.tgz", - "integrity": "sha512-mg3D8YndZ1LvUiEdDYR3OsmeyAew4MA/dvaEJxvyygahWmpv1SlEEnhEZlhPokjsUMfRagzsEF/d/2XF+kTQGg==", - "dev": true, - "optional": true - }, - "esbuild-linux-ppc64le": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.47.tgz", - "integrity": "sha512-WER+f3+szmnZiWoK6AsrTKGoJoErG2LlauSmk73LEZFQ/iWC+KhhDsOkn1xBUpzXWsxN9THmQFltLoaFEH8F8w==", - "dev": true, - "optional": true - }, - "esbuild-linux-riscv64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.47.tgz", - "integrity": "sha512-1fI6bP3A3rvI9BsaaXbMoaOjLE3lVkJtLxsgLHqlBhLlBVY7UqffWBvkrX/9zfPhhVMd9ZRFiaqXnB1T7BsL2g==", - "dev": true, - "optional": true - }, - "esbuild-linux-s390x": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.47.tgz", - "integrity": "sha512-eZrWzy0xFAhki1CWRGnhsHVz7IlSKX6yT2tj2Eg8lhAwlRE5E96Hsb0M1mPSE1dHGpt1QVwwVivXIAacF/G6mw==", - "dev": true, - "optional": true - }, - "esbuild-netbsd-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.47.tgz", - "integrity": "sha512-Qjdjr+KQQVH5Q2Q1r6HBYswFTToPpss3gqCiSw2Fpq/ua8+eXSQyAMG+UvULPqXceOwpnPo4smyZyHdlkcPppQ==", - "dev": true, - "optional": true - }, - "esbuild-openbsd-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.47.tgz", - "integrity": "sha512-QpgN8ofL7B9z8g5zZqJE+eFvD1LehRlxr25PBkjyyasakm4599iroUpaj96rdqRlO2ShuyqwJdr+oNqWwTUmQw==", - "dev": true, - "optional": true - }, - "esbuild-plugin-polyfill-node": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/esbuild-plugin-polyfill-node/-/esbuild-plugin-polyfill-node-0.2.0.tgz", - "integrity": "sha512-rpCoK4mag0nehBtFlFMLSuL9bNBLEh8h3wZ/FsrJEDompA/AwOqInx6Xow01+CXAcvZYhkoJ0SIZiS37qkecDA==", - "dev": true, - "requires": { - "@jspm/core": "^2.0.1", - "import-meta-resolve": "^2.2.2" - } - }, - "esbuild-sunos-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.47.tgz", - "integrity": "sha512-uOeSgLUwukLioAJOiGYm3kNl+1wJjgJA8R671GYgcPgCx7QR73zfvYqXFFcIO93/nBdIbt5hd8RItqbbf3HtAQ==", - "dev": true, - "optional": true - }, - "esbuild-windows-32": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.47.tgz", - "integrity": "sha512-H0fWsLTp2WBfKLBgwYT4OTfFly4Im/8B5f3ojDv1Kx//kiubVY0IQunP2Koc/fr/0wI7hj3IiBDbSrmKlrNgLQ==", - "dev": true, - "optional": true - }, - "esbuild-windows-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.47.tgz", - "integrity": "sha512-/Pk5jIEH34T68r8PweKRi77W49KwanZ8X6lr3vDAtOlH5EumPE4pBHqkCUdELanvsT14yMXLQ/C/8XPi1pAtkQ==", - "dev": true, - "optional": true - }, - "esbuild-windows-arm64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.47.tgz", - "integrity": "sha512-HFSW2lnp62fl86/qPQlqw6asIwCnEsEoNIL1h2uVMgakddf+vUuMcCbtUY1i8sst7KkgHrVKCJQB33YhhOweCQ==", - "dev": true, - "optional": true - }, - "escalade": { + "node_modules/yn": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "dev": true - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true - }, - "escodegen": { - "version": "1.14.3", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", - "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", - "dev": true, - "requires": { - "esprima": "^4.0.1", - "estraverse": "^4.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1", - "source-map": "~0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "optional": true - } - } - }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true - }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true - }, - "estree-util-attach-comments": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-2.1.1.tgz", - "integrity": "sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==", - "dev": true, - "requires": { - "@types/estree": "^1.0.0" - } - }, - "estree-util-build-jsx": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-2.2.2.tgz", - "integrity": "sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==", - "dev": true, - "requires": { - "@types/estree-jsx": "^1.0.0", - "estree-util-is-identifier-name": "^2.0.0", - "estree-walker": "^3.0.0" - }, - "dependencies": { - "@types/estree-jsx": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", - "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", - "dev": true, - "requires": { - "@types/estree": "*" - } - }, - "estree-util-is-identifier-name": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", - "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", - "dev": true - }, - "estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "dev": true, - "requires": { - "@types/estree": "^1.0.0" - } - } + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true, + "engines": { + "node": ">=6" } }, - "estree-util-is-identifier-name": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-1.1.0.tgz", - "integrity": "sha512-OVJZ3fGGt9By77Ix9NhaRbzfbDV/2rx9EP7YIDJTmsZSEc5kYn2vWcNccYyahJL2uAQZK2a5Or2i0wtIKTPoRQ==", - "dev": true + "node_modules/zod": { + "version": "3.21.4", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", + "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + } + }, + "dependencies": { + "@babel/parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", + "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", + "peer": true }, - "estree-util-value-to-estree": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/estree-util-value-to-estree/-/estree-util-value-to-estree-1.3.0.tgz", - "integrity": "sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==", + "@babel/runtime": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz", + "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==", "dev": true, "requires": { - "is-plain-obj": "^3.0.0" + "regenerator-runtime": "^0.13.4" } }, - "estree-util-visit": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-1.2.1.tgz", - "integrity": "sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==", + "@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", "dev": true, "requires": { - "@types/estree-jsx": "^1.0.0", - "@types/unist": "^2.0.0" + "@jridgewell/trace-mapping": "0.3.9" }, "dependencies": { - "@types/estree-jsx": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", - "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", + "@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", "dev": true, "requires": { - "@types/estree": "*" + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" } } } }, - "estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + "@edge-runtime/format": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@edge-runtime/format/-/format-2.1.0.tgz", + "integrity": "sha512-gc2qbYEIIJRczBApBPznVI1c5vZgzrZQOsFZnAxxFiYah9qldHiu1YEitzSvXI8X8ZgvAguuIiyIbpWz17nlXA==", + "dev": true }, - "esutils": { + "@edge-runtime/node-utils": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "resolved": "https://registry.npmjs.org/@edge-runtime/node-utils/-/node-utils-2.0.3.tgz", + "integrity": "sha512-JUSbi5xu/A8+D2t9B9wfirCI1J8n8q0660FfmqZgA+n3RqxD3y7SnamL1sKRE5/AbHsKs9zcqCbK2YDklbc9Bg==", "dev": true }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "@edge-runtime/primitives": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.3.tgz", + "integrity": "sha512-YnfMWMRQABAH8IsnFMJWMW+SyB4ZeYBPnR7V0aqdnew7Pq60cbH5DyFjS/FhiLwvHQk9wBREmXD7PP0HooEQ1A==", "dev": true }, - "eval": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/eval/-/eval-0.1.6.tgz", - "integrity": "sha512-o0XUw+5OGkXw4pJZzQoXUk+H87DHuC+7ZE//oSrRGtatTmr12oTnLfg6QOq9DyTt0c/p4TwzgmkKrBzWTSizyQ==", - "dev": true, - "requires": { - "require-like": ">= 0.1.1" - } - }, - "eventsource-parser": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-1.0.0.tgz", - "integrity": "sha512-9jgfSCa3dmEme2ES3mPByGXfgZ87VbP97tng1G2nWwWx6bV2nYxm2AWCrbQjXToSe+yYlqaZNtxffR9IeQr95g==" - }, - "execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "@edge-runtime/vm": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.3.tgz", + "integrity": "sha512-SPfI1JeIRNs/4EEE2Oc0X6gG3RqjD1TnKu2lwmwFXq0435xgZGKhc3UiKkYAdoMn2dNFD73nlabMKHBRoMRpxg==", "dev": true, "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "dependencies": { - "signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - } + "@edge-runtime/primitives": "3.0.3" } }, - "exit-hook": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-2.2.1.tgz", - "integrity": "sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==", + "@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", "dev": true }, - "express": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "@mapbox/node-pre-gyp": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz", + "integrity": "sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==", "dev": true, "requires": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" + "detect-libc": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "make-dir": "^3.1.0", + "node-fetch": "^2.6.7", + "nopt": "^5.0.0", + "npmlog": "^5.0.1", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.11" }, "dependencies": { - "cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", - "dev": true - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "requires": { - "ms": "2.0.0" + "yallist": "^4.0.0" } }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", - "dev": true + "semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } } } }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true + "@next/env": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.6.tgz", + "integrity": "sha512-nqUxEtvDqFhmV1/awSg0K2XHNwkftNaiUqCYO9e6+MYmqNObpKVl7OgMkGaQ2SZnFx5YqF0t60ZJTlyJIDAijg==" }, - "external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "dev": true, - "requires": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - } + "@next/swc-darwin-arm64": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.6.tgz", + "integrity": "sha512-ahi6VP98o4HV19rkOXPSUu+ovfHfUxbJQ7VVJ7gL2FnZRr7onEFC1oGQ6NQHpm8CxpIzSSBW79kumlFMOmZVjg==", + "optional": true }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true + "@next/swc-darwin-x64": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.6.tgz", + "integrity": "sha512-13cXxKFsPJIJKzUqrU5XB1mc0xbUgYsRcdH6/rB8c4NMEbWGdtD4QoK9ShN31TZdePpD4k416Ur7p+deMIxnnA==", + "optional": true }, - "fast-glob": { - "version": "3.2.11", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", - "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - } + "@next/swc-linux-arm64-gnu": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.6.tgz", + "integrity": "sha512-Ti+NMHEjTNktCVxNjeWbYgmZvA2AqMMI2AMlzkXsU7W4pXCMhrryAmAIoo+7YdJbsx01JQWYVxGe62G6DoCLaA==", + "optional": true }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true, + "@next/swc-linux-arm64-musl": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.6.tgz", + "integrity": "sha512-OHoC6gO7XfjstgwR+z6UHKlvhqJfyMtNaJidjx3sEcfaDwS7R2lqR5AABi8PuilGgi0BO0O0sCXqLlpp3a0emQ==", "optional": true }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true + "@next/swc-linux-x64-gnu": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.6.tgz", + "integrity": "sha512-zHZxPGkUlpfNJCboUrFqwlwEX5vI9LSN70b8XEb0DYzzlrZyCyOi7hwDp/+3Urm9AB7YCAJkgR5Sp1XBVjHdfQ==", + "optional": true }, - "fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "@next/swc-linux-x64-musl": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.6.tgz", + "integrity": "sha512-K/Y8lYGTwTpv5ME8PSJxwxLolaDRdVy+lOd9yMRMiQE0BLUhtxtCWC9ypV42uh9WpLjoaD0joOsB9Q6mbrSGJg==", + "optional": true + }, + "@next/swc-win32-arm64-msvc": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.6.tgz", + "integrity": "sha512-U6LtxEUrjBL2tpW+Kr1nHCSJWNeIed7U7l5o7FiKGGwGgIlFi4UHDiLI6TQ2lxi20fAU33CsruV3U0GuzMlXIw==", + "optional": true + }, + "@next/swc-win32-ia32-msvc": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.6.tgz", + "integrity": "sha512-eEBeAqpCfhdPSlCZCayjCiyIllVqy4tcqvm1xmg3BgJG0G5ITiMM4Cw2WVeRSgWDJqQGRyyb+q8Y2ltzhXOWsQ==", + "optional": true + }, + "@next/swc-win32-x64-msvc": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.6.tgz", + "integrity": "sha512-OrZs94AuO3ZS5tnqlyPRNgfWvboXaDQCi5aXGve3o3C+Sj0ctMUV9+Do+0zMvvLRumR8E0PTWKvtz9n5vzIsWw==", + "optional": true + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "requires": { - "reusify": "^1.0.4" + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" } }, - "fault": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fault/-/fault-2.0.1.tgz", - "integrity": "sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==", + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "requires": { - "format": "^0.2.0" + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" } }, - "figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "@rollup/pluginutils": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", + "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", "dev": true, "requires": { - "escape-string-regexp": "^1.0.5" + "estree-walker": "^2.0.1", + "picomatch": "^2.2.2" } }, - "file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "@sinclair/typebox": { + "version": "0.25.24", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", + "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", "dev": true }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, + "@swc/helpers": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", + "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", "requires": { - "to-regex-range": "^5.0.1" + "tslib": "^2.4.0" } }, - "finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "@ts-morph/common": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/@ts-morph/common/-/common-0.11.1.tgz", + "integrity": "sha512-7hWZS0NRpEsNV8vWJzg7FEz6V8MaLNeJOmwmghqUXTpzk16V1LLZhdo+4QvE/+zv4cVci0OviuJFnqhEfoV3+g==", "dev": true, "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" + "fast-glob": "^3.2.7", + "minimatch": "^3.0.4", + "mkdirp": "^1.0.4", + "path-browserify": "^1.0.1" }, "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "requires": { - "ms": "2.0.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } } } }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true + }, + "@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true + }, + "@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true + }, + "@types/json-schema": { + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", + "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", + "dev": true + }, + "@types/node": { + "version": "20.3.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.3.tgz", + "integrity": "sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==", + "dev": true + }, + "@types/node-fetch": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", + "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", "dev": true, "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" + "@types/node": "*", + "form-data": "^3.0.0" } }, - "form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", + "dev": true + }, + "@types/react": { + "version": "18.2.13", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.13.tgz", + "integrity": "sha512-vJ+zElvi/Zn9cVXB5slX2xL8PZodPCwPRDpittQdw43JR2AJ5k3vKdgJJyneV/cYgIbLQUwXa9JVDvUZXGba+Q==", "dev": true, "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" } }, - "format": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz", - "integrity": "sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==", - "dev": true + "@types/react-dom": { + "version": "18.2.6", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.6.tgz", + "integrity": "sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==", + "dev": true, + "requires": { + "@types/react": "*" + } }, - "forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "@types/scheduler": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", + "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==", "dev": true }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "@vercel/build-utils": { + "version": "6.8.2", + "resolved": "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-6.8.2.tgz", + "integrity": "sha512-pyDBREAzaLBM3zoURCCKjnKIqtqPprKcwDdd9eBTGI32qOSpbwswtyqtgj2zH/Ro0LI61jCr6sK87JHILCr1sg==", "dev": true }, - "fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "@vercel/error-utils": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@vercel/error-utils/-/error-utils-1.0.10.tgz", + "integrity": "sha512-nsKy2sy+pjUWyKI1V/XXKspVzHMYgSalmj5+EsKWFXZbnNZicqxNtMR94J8Hs7SB4TQxh0s4KhczJtL59AVGMg==", "dev": true }, - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "@vercel/gatsby-plugin-vercel-analytics": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-analytics/-/gatsby-plugin-vercel-analytics-1.0.10.tgz", + "integrity": "sha512-v329WHdtIce+y7oAmaWRvEx59Xfo0FxlQqK4BJG0u6VWYoKWPaflohDAiehIZf/YHCRVb59ZxnzmMOcm/LR8YQ==", "dev": true, "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "@babel/runtime": "7.12.1", + "web-vitals": "0.2.4" } }, - "fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "@vercel/gatsby-plugin-vercel-builder": { + "version": "1.3.16", + "resolved": "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.16.tgz", + "integrity": "sha512-T59fdopfGUvS7VX6DLQv89foG87/Bn9Oc3afo4A8fhQBA6XPj+0h0VyDmUGErVYJRgqnKRAMuyhKWsr/rhCvsQ==", "dev": true, "requires": { - "minipass": "^3.0.0" + "@sinclair/typebox": "0.25.24", + "@vercel/build-utils": "6.8.2", + "@vercel/node": "2.15.8", + "@vercel/routing-utils": "2.2.1", + "esbuild": "0.14.47", + "etag": "1.8.1", + "fs-extra": "11.1.0" } }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "@vercel/go": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@vercel/go/-/go-2.5.1.tgz", + "integrity": "sha512-yZGzzGmVXt2Rsy1cR0EDbst0fMhdELQY8c3jXy6/FTWJFG1e/40JYksu+WiRCxRBp8e7zfcxMrv0dN8JWRmbPQ==", + "dev": true + }, + "@vercel/hydrogen": { + "version": "0.0.64", + "resolved": "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-0.0.64.tgz", + "integrity": "sha512-1rzFB664G6Yzp7j4ezW9hvVjqnaU2BhyUdhchbsxtRuxkMpGgPBZKhjzRQHFvlmkz37XLC658T5Nb1P91b4sBw==", + "dev": true + }, + "@vercel/next": { + "version": "3.9.3", + "resolved": "https://registry.npmjs.org/@vercel/next/-/next-3.9.3.tgz", + "integrity": "sha512-jHuw1HYzaLt5qzJm+U1ydzKMSM9ptW5vHZ3AkFqkav7qaCDrvV0SKOiNQ8xoJhBLNFuXQY6Z4l8Ag86kUYevGA==", "dev": true }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "@vercel/nft": { + "version": "0.22.5", + "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.22.5.tgz", + "integrity": "sha512-mug57Wd1BL7GMj9gXMgMeKUjdqO0e4u+0QLPYMFE1rwdJ+55oPy6lp3nIBCS8gOvigT62UI4QKUL2sGqcoW4Hw==", "dev": true, - "optional": true + "requires": { + "@mapbox/node-pre-gyp": "^1.0.5", + "@rollup/pluginutils": "^4.0.0", + "acorn": "^8.6.0", + "async-sema": "^3.1.1", + "bindings": "^1.4.0", + "estree-walker": "2.0.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.2", + "node-gyp-build": "^4.2.2", + "resolve-from": "^5.0.0" + } }, - "ftp": { - "version": "0.3.10", - "resolved": "https://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz", - "integrity": "sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ==", + "@vercel/node": { + "version": "2.15.8", + "resolved": "https://registry.npmjs.org/@vercel/node/-/node-2.15.8.tgz", + "integrity": "sha512-G8+rC3mAouBFonsCKeQ9nINv7WL4SeHa6qx+bW/6BQAFc/eLKfQNa04t6ZYKLiXZQSw4COSC3g2afh7ejYVvVg==", "dev": true, "requires": { - "readable-stream": "1.1.x", - "xregexp": "2.0.0" + "@edge-runtime/node-utils": "2.0.3", + "@edge-runtime/primitives": "2.1.2", + "@edge-runtime/vm": "3.0.1", + "@types/node": "14.18.33", + "@types/node-fetch": "2.6.3", + "@vercel/build-utils": "6.8.2", + "@vercel/error-utils": "1.0.10", + "@vercel/static-config": "2.0.17", + "async-listen": "3.0.0", + "content-type": "1.0.5", + "edge-runtime": "2.4.3", + "esbuild": "0.14.47", + "exit-hook": "2.2.1", + "node-fetch": "2.6.9", + "path-to-regexp": "6.2.1", + "ts-morph": "12.0.0", + "ts-node": "10.9.1", + "typescript": "4.9.5" }, "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "@edge-runtime/primitives": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-2.1.2.tgz", + "integrity": "sha512-SR04SMDybALlhIYIi0hiuEUwIl0b7Sn+RKwQkX6hydg4+AKMzBNDFhj2nqHDD1+xkHArV9EhmJIb6iGjShwSzg==", "dev": true }, - "readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", + "@edge-runtime/vm": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.1.tgz", + "integrity": "sha512-69twXLIcqVx0iNlc1vFqnXgka2CZi2c/QBAmMzXBk0M6mPG+ICCBh2dd+cv1K+HW2pfLuSW+EskkFXWGeCf1Vw==", "dev": true, "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" + "@edge-runtime/primitives": "3.0.1" + }, + "dependencies": { + "@edge-runtime/primitives": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.1.tgz", + "integrity": "sha512-l5NNDcPkKW4N6qRmB8zzpCF6uRW1S808V/zm72z7b/aWwZUYbmEPPkzyhGAW0aQxLU1pGdZ8u2gNjamdaU6RXw==", + "dev": true + } } }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", + "@types/node": { + "version": "14.18.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.33.tgz", + "integrity": "sha512-qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg==", "dev": true - } - } - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "gauge": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", - "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", - "dev": true, - "requires": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "object-assign": "^4.1.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" - }, - "dependencies": { - "signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + }, + "edge-runtime": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.4.3.tgz", + "integrity": "sha512-Amv/P+OJhxopvoVXFr7UXAKheBpdLeCcdR5Vw4GSdNFDWVny9sioQbczjEKPLER5WsMXl17P+llS011Xftducw==", + "dev": true, + "requires": { + "@edge-runtime/format": "2.1.0", + "@edge-runtime/vm": "3.0.3", + "async-listen": "3.0.0", + "mri": "1.2.0", + "picocolors": "1.0.0", + "pretty-bytes": "5.6.0", + "pretty-ms": "7.0.1", + "signal-exit": "4.0.2", + "time-span": "4.0.0" + }, + "dependencies": { + "@edge-runtime/primitives": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.3.tgz", + "integrity": "sha512-YnfMWMRQABAH8IsnFMJWMW+SyB4ZeYBPnR7V0aqdnew7Pq60cbH5DyFjS/FhiLwvHQk9wBREmXD7PP0HooEQ1A==", + "dev": true + }, + "@edge-runtime/vm": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.3.tgz", + "integrity": "sha512-SPfI1JeIRNs/4EEE2Oc0X6gG3RqjD1TnKu2lwmwFXq0435xgZGKhc3UiKkYAdoMn2dNFD73nlabMKHBRoMRpxg==", + "dev": true, + "requires": { + "@edge-runtime/primitives": "3.0.3" + } + } + } + }, + "typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", "dev": true } } }, - "generic-names": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/generic-names/-/generic-names-4.0.0.tgz", - "integrity": "sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==", - "dev": true, - "requires": { - "loader-utils": "^3.2.0" - } - }, - "gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "@vercel/python": { + "version": "3.1.60", + "resolved": "https://registry.npmjs.org/@vercel/python/-/python-3.1.60.tgz", + "integrity": "sha512-1aYinyTfejS8Us+sOum+RQPYcre0vF3XoL7ohL170ZCcHA0l35qV0b1slGAmLt3pqaHKYy3g/nkzUhuR8XXIrQ==", "dev": true }, - "get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "@vercel/redwood": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/@vercel/redwood/-/redwood-1.1.15.tgz", + "integrity": "sha512-j0XaXe4ZpGVHG7XQSmZ3kza6s+ZtOBfRhnSxA70yCkrvPNN3tZgF3fevSKXizfL9fzVDd7Tdj++SCGWMdGfsyA==", "dev": true, "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" + "@vercel/nft": "0.22.5", + "@vercel/routing-utils": "2.2.1", + "semver": "6.1.1" } }, - "get-port": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", - "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==", - "dev": true - }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true - }, - "get-uri": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-3.0.2.tgz", - "integrity": "sha512-+5s0SJbGoyiJTZZ2JTpFPLMPSch72KEqGOTvQsBqg0RBWvwhWUSYZFAtz3TPW0GXJuLBJPts1E241iHg+VRfhg==", + "@vercel/remix-builder": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-1.9.1.tgz", + "integrity": "sha512-yOxGKn3uhp3eYxIE4AZVjssv9L+7sZcnS04d+6qPNvuN0WAuN7pi/Jx0ebo4IMgFQmvK6Ws+xwq9UDCs37jcow==", "dev": true, "requires": { - "@tootallnate/once": "1", - "data-uri-to-buffer": "3", - "debug": "4", - "file-uri-to-path": "2", - "fs-extra": "^8.1.0", - "ftp": "^0.3.10" + "@vercel/build-utils": "6.8.2", + "@vercel/nft": "0.22.5", + "@vercel/static-config": "2.0.17", + "path-to-regexp": "6.2.1", + "semver": "7.3.8", + "ts-morph": "12.0.0" }, "dependencies": { - "file-uri-to-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-2.0.0.tgz", - "integrity": "sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==", - "dev": true - }, - "fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "yallist": "^4.0.0" } }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "requires": { - "graceful-fs": "^4.1.6" + "lru-cache": "^6.0.0" } - }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true } } }, - "git-hooks-list": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/git-hooks-list/-/git-hooks-list-1.0.3.tgz", - "integrity": "sha512-Y7wLWcrLUXwk2noSka166byGCvhMtDRpgHdzCno1UQv/n/Hegp++a2xBWJL1lJarnKD3SWaljD+0z1ztqxuKyQ==", - "dev": true - }, - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "@vercel/routing-utils": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@vercel/routing-utils/-/routing-utils-2.2.1.tgz", + "integrity": "sha512-kzMZsvToDCDskNRZD71B9UAgstec7ujmlGH8cBEo6F/07VaFeji6GQdgd6Zwnrj+TvzQBggKoPQR64VkVY8Lzw==", "dev": true, "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "ajv": "^6.0.0", + "path-to-regexp": "6.1.0" }, "dependencies": { - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } + "path-to-regexp": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.1.0.tgz", + "integrity": "sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==", + "dev": true } } }, - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "requires": { - "is-glob": "^4.0.1" - } - }, - "glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - }, - "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "@vercel/ruby": { + "version": "1.3.76", + "resolved": "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.76.tgz", + "integrity": "sha512-J8I0B7wAn8piGoPhBroBfJWgMEJTMEL/2o8MCoCyWdaE7MRtpXhI10pj8IvcUvAECoGJ+SM1Pm+SvBqtbtZ5FQ==", "dev": true }, - "globby": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.0.tgz", - "integrity": "sha512-3LifW9M4joGZasyYPz2A1U74zbC/45fvpXUvO/9KbSa+VV0aGZarWkfdgKyR9sExNP0t0x0ss/UMJpNpcaTspw==", - "dev": true, - "requires": { - "@types/glob": "^7.1.1", - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.0.3", - "glob": "^7.1.3", - "ignore": "^5.1.1", - "merge2": "^1.2.3", - "slash": "^3.0.0" - } - }, - "got": { - "version": "11.8.6", - "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", - "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", - "dev": true, - "requires": { - "@sindresorhus/is": "^4.0.0", - "@szmarczak/http-timer": "^4.0.5", - "@types/cacheable-request": "^6.0.1", - "@types/responselike": "^1.0.0", - "cacheable-lookup": "^5.0.3", - "cacheable-request": "^7.0.2", - "decompress-response": "^6.0.0", - "http2-wrapper": "^1.0.0-beta.5.2", - "lowercase-keys": "^2.0.0", - "p-cancelable": "^2.0.0", - "responselike": "^2.0.0" - } - }, - "graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - }, - "gunzip-maybe": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/gunzip-maybe/-/gunzip-maybe-1.4.2.tgz", - "integrity": "sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==", - "dev": true, - "requires": { - "browserify-zlib": "^0.1.4", - "is-deflate": "^1.0.0", - "is-gzip": "^1.0.0", - "peek-stream": "^1.1.0", - "pumpify": "^1.3.3", - "through2": "^2.0.3" - } - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "@vercel/static-build": { + "version": "1.3.44", + "resolved": "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.3.44.tgz", + "integrity": "sha512-yn2/92/kvEvfKAVBLxzSm0XePaZVoYQ4hvO5NCGzZXa5iqS+hQ3kYCz1w2EyEpsGdCBQaR+SCYKqv5kmXvxIHw==", "dev": true, "requires": { - "function-bind": "^1.1.1" + "@vercel/gatsby-plugin-vercel-analytics": "1.0.10", + "@vercel/gatsby-plugin-vercel-builder": "1.3.16" } }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "dev": true - }, - "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", - "dev": true - }, - "hast-util-to-estree": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-2.3.3.tgz", - "integrity": "sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==", + "@vercel/static-config": { + "version": "2.0.17", + "resolved": "https://registry.npmjs.org/@vercel/static-config/-/static-config-2.0.17.tgz", + "integrity": "sha512-2f50OTVrN07x7pH+XNW0e7cj7T+Ufg+19+a2N3/XZBjQmV+FaMlmSLiaQ4tBxp2H8lWWHzENua7ZSSQPtRZ3/A==", "dev": true, "requires": { - "@types/estree": "^1.0.0", - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^2.0.0", - "@types/unist": "^2.0.0", - "comma-separated-tokens": "^2.0.0", - "estree-util-attach-comments": "^2.0.0", - "estree-util-is-identifier-name": "^2.0.0", - "hast-util-whitespace": "^2.0.0", - "mdast-util-mdx-expression": "^1.0.0", - "mdast-util-mdxjs-esm": "^1.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "style-to-object": "^0.4.1", - "unist-util-position": "^4.0.0", - "zwitch": "^2.0.0" + "ajv": "8.6.3", + "json-schema-to-ts": "1.6.4", + "ts-morph": "12.0.0" }, "dependencies": { - "@types/estree-jsx": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", - "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", + "ajv": { + "version": "8.6.3", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.6.3.tgz", + "integrity": "sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw==", "dev": true, "requires": { - "@types/estree": "*" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" } }, - "estree-util-is-identifier-name": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", - "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true } } }, - "hast-util-whitespace": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz", - "integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==", - "dev": true + "@vue/compiler-core": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.4.tgz", + "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==", + "peer": true, + "requires": { + "@babel/parser": "^7.21.3", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "source-map-js": "^1.0.2" + } }, - "http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true + "@vue/compiler-dom": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz", + "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==", + "peer": true, + "requires": { + "@vue/compiler-core": "3.3.4", + "@vue/shared": "3.3.4" + } }, - "http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dev": true, + "@vue/compiler-sfc": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz", + "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==", + "peer": true, "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "@babel/parser": "^7.20.15", + "@vue/compiler-core": "3.3.4", + "@vue/compiler-dom": "3.3.4", + "@vue/compiler-ssr": "3.3.4", + "@vue/reactivity-transform": "3.3.4", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.0", + "postcss": "^8.1.10", + "source-map-js": "^1.0.2" } }, - "http-proxy-agent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", - "dev": true, + "@vue/compiler-ssr": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz", + "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==", + "peer": true, "requires": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" + "@vue/compiler-dom": "3.3.4", + "@vue/shared": "3.3.4" } }, - "http2-wrapper": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", - "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", - "dev": true, + "@vue/reactivity": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.4.tgz", + "integrity": "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==", + "peer": true, "requires": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.0.0" + "@vue/shared": "3.3.4" } }, - "https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "dev": true, + "@vue/reactivity-transform": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz", + "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==", + "peer": true, "requires": { - "agent-base": "6", - "debug": "4" + "@babel/parser": "^7.20.15", + "@vue/compiler-core": "3.3.4", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.0" } }, - "human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true + "@vue/runtime-core": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.4.tgz", + "integrity": "sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==", + "peer": true, + "requires": { + "@vue/reactivity": "3.3.4", + "@vue/shared": "3.3.4" + } }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, + "@vue/runtime-dom": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz", + "integrity": "sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==", + "peer": true, "requires": { - "safer-buffer": ">= 2.1.2 < 3" + "@vue/runtime-core": "3.3.4", + "@vue/shared": "3.3.4", + "csstype": "^3.1.1" } }, - "icss-utils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", - "dev": true, - "requires": {} - }, - "ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true - }, - "ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true - }, - "import-meta-resolve": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-2.2.2.tgz", - "integrity": "sha512-f8KcQ1D80V7RnqVm+/lirO9zkOxjGxhaTC1IPrBGd3MEfNgmNG67tSUO9gTi2F3Blr2Az6g1vocaxzkVnWl9MA==", - "dev": true - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true - }, - "indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true - }, - "infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, + "@vue/server-renderer": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.4.tgz", + "integrity": "sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==", + "peer": true, "requires": { - "once": "^1.3.0", - "wrappy": "1" + "@vue/compiler-ssr": "3.3.4", + "@vue/shared": "3.3.4" } }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "inline-style-parser": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", - "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==", - "dev": true + "@vue/shared": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz", + "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==", + "peer": true }, - "inquirer": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", - "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", - "dev": true, - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - } - }, - "ip": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", - "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", "dev": true }, - "ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "acorn": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", + "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", "dev": true }, - "is-alphabetical": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", - "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", + "acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", "dev": true }, - "is-alphanumerical": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", - "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", + "agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dev": true, "requires": { - "is-alphabetical": "^2.0.0", - "is-decimal": "^2.0.0" + "debug": "4" } }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, + "ai": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/ai/-/ai-2.1.9.tgz", + "integrity": "sha512-PiDWO/5lFvnbEziJjl+4CE44jg4weknJuW5VZAQQ4PDyFnDjxoCMkSJ95zEatX3qrYZfRP6zXHkmy+/OqwclfA==", "requires": { - "binary-extensions": "^2.0.0" + "eventsource-parser": "1.0.0", + "nanoid": "^3.3.6", + "sswr": "^1.10.0", + "swr": "2.1.5", + "swrv": "1.0.3" } }, - "is-buffer": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", - "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", - "dev": true - }, - "is-core-module": { - "version": "2.12.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", - "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, + "optional": true, "requires": { - "has": "^1.0.3" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" } }, - "is-decimal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", - "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", - "dev": true - }, - "is-deflate": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-deflate/-/is-deflate-1.0.0.tgz", - "integrity": "sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==", - "dev": true - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", "dev": true }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "are-we-there-yet": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", + "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", "dev": true, "requires": { - "is-extglob": "^2.1.1" + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" } }, - "is-gzip": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz", - "integrity": "sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==", - "dev": true - }, - "is-hexadecimal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", - "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", + "async-listen": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/async-listen/-/async-listen-3.0.0.tgz", + "integrity": "sha512-V+SsTpDqkrWTimiotsyl33ePSjA5/KrithwupuvJ6ztsqPvGv6ge4OredFhPffVXiLN/QUWvE0XcqJaYgt6fOg==", "dev": true }, - "is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "async-sema": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz", + "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==", "dev": true }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", "dev": true }, - "is-plain-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", - "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, - "is-reference": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.1.tgz", - "integrity": "sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==", + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", "dev": true, "requires": { - "@types/estree": "*" + "file-uri-to-path": "1.0.0" } }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true - }, - "is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "javascript-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", - "integrity": "sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==", - "dev": true - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, "requires": { - "argparse": "^2.0.1" + "fill-range": "^7.0.1" } }, - "jsesc": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", - "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", - "dev": true + "busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "requires": { + "streamsearch": "^1.1.0" + } }, - "json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true + "caniuse-lite": { + "version": "1.0.30001509", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001509.tgz", + "integrity": "sha512-2uDDk+TRiTX5hMcUYT/7CSyzMZxjfGu0vAUjS2g0LSD8UoXOv0LtpH4LxGMemsiPq6LCVIUjNwVM0erkOkGCDA==" }, - "json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", "dev": true }, - "json-schema-to-ts": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/json-schema-to-ts/-/json-schema-to-ts-1.6.4.tgz", - "integrity": "sha512-pR4yQ9DHz6itqswtHCm26mw45FSNfQ9rEQjosaZErhn5J3J2sIViQiz8rDaezjKAhFGpmsoczYVBgGHzFw/stA==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.6", - "ts-toolbelt": "^6.15.5" - } - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true, - "optional": true + "client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "code-block-writer": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-10.1.1.tgz", + "integrity": "sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==", "dev": true }, - "jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", "dev": true }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dev": true, "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" + "delayed-stream": "~1.0.0" } }, - "keyv": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", - "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", - "dev": true, - "requires": { - "json-buffer": "3.0.1" - } + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true }, - "kleur": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", - "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", "dev": true }, - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", - "dev": true, - "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - } + "content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true }, - "lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "convert-hrtime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-3.0.0.tgz", + "integrity": "sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA==", "dev": true }, - "loader-utils": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", - "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", + "create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", "dev": true }, - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "requires": { - "p-locate": "^5.0.0" + "ms": "2.1.2" } }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true + }, + "delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", "dev": true }, - "lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "detect-libc": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", + "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", "dev": true }, - "lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", "dev": true }, - "log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "edge-runtime": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.4.4.tgz", + "integrity": "sha512-uq1YdIxkMDsBYLdSSp/w62PciCL46ic4m1Z/2G6N8RcAPI8p35O8u6hJQT83j28Dnt4U5iyvmwFMYouHMK51uA==", "dev": true, "requires": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" + "@edge-runtime/format": "2.1.0", + "@edge-runtime/vm": "3.0.3", + "async-listen": "3.0.0", + "mri": "1.2.0", + "picocolors": "1.0.0", + "pretty-bytes": "5.6.0", + "pretty-ms": "7.0.1", + "signal-exit": "4.0.2", + "time-span": "4.0.0" } }, - "longest-streak": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", - "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, - "loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "esbuild": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.47.tgz", + "integrity": "sha512-wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA==", + "dev": true, "requires": { - "js-tokens": "^3.0.0 || ^4.0.0" + "esbuild-android-64": "0.14.47", + "esbuild-android-arm64": "0.14.47", + "esbuild-darwin-64": "0.14.47", + "esbuild-darwin-arm64": "0.14.47", + "esbuild-freebsd-64": "0.14.47", + "esbuild-freebsd-arm64": "0.14.47", + "esbuild-linux-32": "0.14.47", + "esbuild-linux-64": "0.14.47", + "esbuild-linux-arm": "0.14.47", + "esbuild-linux-arm64": "0.14.47", + "esbuild-linux-mips64le": "0.14.47", + "esbuild-linux-ppc64le": "0.14.47", + "esbuild-linux-riscv64": "0.14.47", + "esbuild-linux-s390x": "0.14.47", + "esbuild-netbsd-64": "0.14.47", + "esbuild-openbsd-64": "0.14.47", + "esbuild-sunos-64": "0.14.47", + "esbuild-windows-32": "0.14.47", + "esbuild-windows-64": "0.14.47", + "esbuild-windows-arm64": "0.14.47" } }, - "lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", - "dev": true + "esbuild-android-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.47.tgz", + "integrity": "sha512-R13Bd9+tqLVFndncMHssZrPWe6/0Kpv2/dt4aA69soX4PRxlzsVpCvoJeFE8sOEoeVEiBkI0myjlkDodXlHa0g==", + "dev": true, + "optional": true }, - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true + "esbuild-android-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.47.tgz", + "integrity": "sha512-OkwOjj7ts4lBp/TL6hdd8HftIzOy/pdtbrNA4+0oVWgGG64HrdVzAF5gxtJufAPOsEjkyh1oIYvKAUinKKQRSQ==", + "dev": true, + "optional": true }, - "magic-string": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz", - "integrity": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==", - "peer": true, - "requires": { - "@jridgewell/sourcemap-codec": "^1.4.13" - } + "esbuild-darwin-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.47.tgz", + "integrity": "sha512-R6oaW0y5/u6Eccti/TS6c/2c1xYTb1izwK3gajJwi4vIfNs1s8B1dQzI1UiC9T61YovOQVuePDcfqHLT3mUZJA==", + "dev": true, + "optional": true }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "esbuild-darwin-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.47.tgz", + "integrity": "sha512-seCmearlQyvdvM/noz1L9+qblC5vcBrhUaOoLEDDoLInF/VQ9IkobGiLlyTPYP5dW1YD4LXhtBgOyevoIHGGnw==", "dev": true, - "requires": { - "semver": "^6.0.0" - } + "optional": true }, - "make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true + "esbuild-freebsd-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.47.tgz", + "integrity": "sha512-ZH8K2Q8/Ux5kXXvQMDsJcxvkIwut69KVrYQhza/ptkW50DC089bCVrJZZ3sKzIoOx+YPTrmsZvqeZERjyYrlvQ==", + "dev": true, + "optional": true }, - "markdown-extensions": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-1.1.1.tgz", - "integrity": "sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==", - "dev": true + "esbuild-freebsd-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.47.tgz", + "integrity": "sha512-ZJMQAJQsIOhn3XTm7MPQfCzEu5b9STNC+s90zMWe2afy9EwnHV7Ov7ohEMv2lyWlc2pjqLW8QJnz2r0KZmeAEQ==", + "dev": true, + "optional": true }, - "mdast-util-definitions": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz", - "integrity": "sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==", + "esbuild-linux-32": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.47.tgz", + "integrity": "sha512-FxZOCKoEDPRYvq300lsWCTv1kcHgiiZfNrPtEhFAiqD7QZaXrad8LxyJ8fXGcWzIFzRiYZVtB3ttvITBvAFhKw==", "dev": true, - "requires": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "unist-util-visit": "^4.0.0" - } + "optional": true }, - "mdast-util-from-markdown": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz", - "integrity": "sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==", + "esbuild-linux-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.47.tgz", + "integrity": "sha512-nFNOk9vWVfvWYF9YNYksZptgQAdstnDCMtR6m42l5Wfugbzu11VpMCY9XrD4yFxvPo9zmzcoUL/88y0lfJZJJw==", "dev": true, - "requires": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "decode-named-character-reference": "^1.0.0", - "mdast-util-to-string": "^3.1.0", - "micromark": "^3.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-decode-string": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "unist-util-stringify-position": "^3.0.0", - "uvu": "^0.5.0" - } - }, - "mdast-util-frontmatter": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mdast-util-frontmatter/-/mdast-util-frontmatter-1.0.1.tgz", - "integrity": "sha512-JjA2OjxRqAa8wEG8hloD0uTU0kdn8kbtOWpPP94NBkfAlbxn4S8gCGf/9DwFtEeGPXrDcNXdiDjVaRdUFqYokw==", + "optional": true + }, + "esbuild-linux-arm": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.47.tgz", + "integrity": "sha512-ZGE1Bqg/gPRXrBpgpvH81tQHpiaGxa8c9Rx/XOylkIl2ypLuOcawXEAo8ls+5DFCcRGt/o3sV+PzpAFZobOsmA==", "dev": true, - "requires": { - "@types/mdast": "^3.0.0", - "mdast-util-to-markdown": "^1.3.0", - "micromark-extension-frontmatter": "^1.0.0" - } + "optional": true }, - "mdast-util-mdx": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-1.1.0.tgz", - "integrity": "sha512-leKb9uG7laXdyFlTleYV4ZEaCpsxeU1LlkkR/xp35pgKrfV1Y0fNCuOw9vaRc2a9YDpH22wd145Wt7UY5yzeZw==", + "esbuild-linux-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.47.tgz", + "integrity": "sha512-ywfme6HVrhWcevzmsufjd4iT3PxTfCX9HOdxA7Hd+/ZM23Y9nXeb+vG6AyA6jgq/JovkcqRHcL9XwRNpWG6XRw==", "dev": true, - "requires": { - "mdast-util-mdx-expression": "^1.0.0", - "mdast-util-mdx-jsx": "^1.0.0", - "mdast-util-mdxjs-esm": "^1.0.0" - } + "optional": true + }, + "esbuild-linux-mips64le": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.47.tgz", + "integrity": "sha512-mg3D8YndZ1LvUiEdDYR3OsmeyAew4MA/dvaEJxvyygahWmpv1SlEEnhEZlhPokjsUMfRagzsEF/d/2XF+kTQGg==", + "dev": true, + "optional": true }, - "mdast-util-mdx-expression": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.2.tgz", - "integrity": "sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==", + "esbuild-linux-ppc64le": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.47.tgz", + "integrity": "sha512-WER+f3+szmnZiWoK6AsrTKGoJoErG2LlauSmk73LEZFQ/iWC+KhhDsOkn1xBUpzXWsxN9THmQFltLoaFEH8F8w==", "dev": true, - "requires": { - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "mdast-util-from-markdown": "^1.0.0", - "mdast-util-to-markdown": "^1.0.0" - }, - "dependencies": { - "@types/estree-jsx": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", - "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", - "dev": true, - "requires": { - "@types/estree": "*" - } - } - } + "optional": true }, - "mdast-util-mdx-jsx": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-1.2.0.tgz", - "integrity": "sha512-5+ot/kfxYd3ChgEMwsMUO71oAfYjyRI3pADEK4I7xTmWLGQ8Y7ghm1CG36zUoUvDPxMlIYwQV/9DYHAUWdG4dA==", + "esbuild-linux-riscv64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.47.tgz", + "integrity": "sha512-1fI6bP3A3rvI9BsaaXbMoaOjLE3lVkJtLxsgLHqlBhLlBVY7UqffWBvkrX/9zfPhhVMd9ZRFiaqXnB1T7BsL2g==", "dev": true, - "requires": { - "@types/estree-jsx": "^0.0.1", - "@types/mdast": "^3.0.0", - "mdast-util-to-markdown": "^1.0.0", - "parse-entities": "^4.0.0", - "stringify-entities": "^4.0.0", - "unist-util-remove-position": "^4.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" - } - }, - "mdast-util-mdxjs-esm": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.1.tgz", - "integrity": "sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==", + "optional": true + }, + "esbuild-linux-s390x": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.47.tgz", + "integrity": "sha512-eZrWzy0xFAhki1CWRGnhsHVz7IlSKX6yT2tj2Eg8lhAwlRE5E96Hsb0M1mPSE1dHGpt1QVwwVivXIAacF/G6mw==", "dev": true, - "requires": { - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "mdast-util-from-markdown": "^1.0.0", - "mdast-util-to-markdown": "^1.0.0" - }, - "dependencies": { - "@types/estree-jsx": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", - "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", - "dev": true, - "requires": { - "@types/estree": "*" - } - } - } + "optional": true }, - "mdast-util-phrasing": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz", - "integrity": "sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==", + "esbuild-netbsd-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.47.tgz", + "integrity": "sha512-Qjdjr+KQQVH5Q2Q1r6HBYswFTToPpss3gqCiSw2Fpq/ua8+eXSQyAMG+UvULPqXceOwpnPo4smyZyHdlkcPppQ==", "dev": true, - "requires": { - "@types/mdast": "^3.0.0", - "unist-util-is": "^5.0.0" - } + "optional": true }, - "mdast-util-to-hast": { - "version": "11.3.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-11.3.0.tgz", - "integrity": "sha512-4o3Cli3hXPmm1LhB+6rqhfsIUBjnKFlIUZvudaermXB+4/KONdd/W4saWWkC+LBLbPMqhFSSTSRgafHsT5fVJw==", + "esbuild-openbsd-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.47.tgz", + "integrity": "sha512-QpgN8ofL7B9z8g5zZqJE+eFvD1LehRlxr25PBkjyyasakm4599iroUpaj96rdqRlO2ShuyqwJdr+oNqWwTUmQw==", "dev": true, - "requires": { - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "@types/mdurl": "^1.0.0", - "mdast-util-definitions": "^5.0.0", - "mdurl": "^1.0.0", - "unist-builder": "^3.0.0", - "unist-util-generated": "^2.0.0", - "unist-util-position": "^4.0.0", - "unist-util-visit": "^4.0.0" - } - }, - "mdast-util-to-markdown": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz", - "integrity": "sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==", + "optional": true + }, + "esbuild-sunos-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.47.tgz", + "integrity": "sha512-uOeSgLUwukLioAJOiGYm3kNl+1wJjgJA8R671GYgcPgCx7QR73zfvYqXFFcIO93/nBdIbt5hd8RItqbbf3HtAQ==", "dev": true, - "requires": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "longest-streak": "^3.0.0", - "mdast-util-phrasing": "^3.0.0", - "mdast-util-to-string": "^3.0.0", - "micromark-util-decode-string": "^1.0.0", - "unist-util-visit": "^4.0.0", - "zwitch": "^2.0.0" - } - }, - "mdast-util-to-string": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", - "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", + "optional": true + }, + "esbuild-windows-32": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.47.tgz", + "integrity": "sha512-H0fWsLTp2WBfKLBgwYT4OTfFly4Im/8B5f3ojDv1Kx//kiubVY0IQunP2Koc/fr/0wI7hj3IiBDbSrmKlrNgLQ==", "dev": true, - "requires": { - "@types/mdast": "^3.0.0" - } + "optional": true }, - "mdurl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", - "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", - "dev": true + "esbuild-windows-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.47.tgz", + "integrity": "sha512-/Pk5jIEH34T68r8PweKRi77W49KwanZ8X6lr3vDAtOlH5EumPE4pBHqkCUdELanvsT14yMXLQ/C/8XPi1pAtkQ==", + "dev": true, + "optional": true }, - "media-query-parser": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/media-query-parser/-/media-query-parser-2.0.2.tgz", - "integrity": "sha512-1N4qp+jE0pL5Xv4uEcwVUhIkwdUO3S/9gML90nqKA7v7FcOS5vUtatfzok9S9U1EJU8dHWlcv95WLnKmmxZI9w==", + "esbuild-windows-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.47.tgz", + "integrity": "sha512-HFSW2lnp62fl86/qPQlqw6asIwCnEsEoNIL1h2uVMgakddf+vUuMcCbtUY1i8sst7KkgHrVKCJQB33YhhOweCQ==", "dev": true, - "requires": { - "@babel/runtime": "^7.12.5" - }, - "dependencies": { - "@babel/runtime": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.5.tgz", - "integrity": "sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.11" - } - } - } + "optional": true }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "dev": true + "estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" }, - "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", "dev": true }, - "merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true + "eventsource-parser": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-1.0.0.tgz", + "integrity": "sha512-9jgfSCa3dmEme2ES3mPByGXfgZ87VbP97tng1G2nWwWx6bV2nYxm2AWCrbQjXToSe+yYlqaZNtxffR9IeQr95g==" }, - "merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "exit-hook": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-2.2.1.tgz", + "integrity": "sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==", "dev": true }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, - "micromark": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.2.0.tgz", - "integrity": "sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==", - "dev": true, - "requires": { - "@types/debug": "^4.0.0", - "debug": "^4.0.0", - "decode-named-character-reference": "^1.0.0", - "micromark-core-commonmark": "^1.0.1", - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-chunked": "^1.0.0", - "micromark-util-combine-extensions": "^1.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-encode": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-resolve-all": "^1.0.0", - "micromark-util-sanitize-uri": "^1.0.0", - "micromark-util-subtokenize": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.1", - "uvu": "^0.5.0" - } - }, - "micromark-core-commonmark": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz", - "integrity": "sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==", - "dev": true, - "requires": { - "decode-named-character-reference": "^1.0.0", - "micromark-factory-destination": "^1.0.0", - "micromark-factory-label": "^1.0.0", - "micromark-factory-space": "^1.0.0", - "micromark-factory-title": "^1.0.0", - "micromark-factory-whitespace": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-chunked": "^1.0.0", - "micromark-util-classify-character": "^1.0.0", - "micromark-util-html-tag-name": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-resolve-all": "^1.0.0", - "micromark-util-subtokenize": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.1", - "uvu": "^0.5.0" - } - }, - "micromark-extension-frontmatter": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/micromark-extension-frontmatter/-/micromark-extension-frontmatter-1.1.1.tgz", - "integrity": "sha512-m2UH9a7n3W8VAH9JO9y01APpPKmNNNs71P0RbknEmYSaZU5Ghogv38BYO94AI5Xw6OYfxZRdHZZ2nYjs/Z+SZQ==", + "fast-glob": { + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", "dev": true, "requires": { - "fault": "^2.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" } }, - "micromark-extension-mdx-expression": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.8.tgz", - "integrity": "sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==", + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true, - "requires": { - "@types/estree": "^1.0.0", - "micromark-factory-mdx-expression": "^1.0.0", - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-events-to-acorn": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" - } + "optional": true }, - "micromark-extension-mdx-jsx": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.5.tgz", - "integrity": "sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==", + "fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", "dev": true, "requires": { - "@types/acorn": "^4.0.0", - "@types/estree": "^1.0.0", - "estree-util-is-identifier-name": "^2.0.0", - "micromark-factory-mdx-expression": "^1.0.0", - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0", - "vfile-message": "^3.0.0" - }, - "dependencies": { - "estree-util-is-identifier-name": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", - "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", - "dev": true - } + "reusify": "^1.0.4" } }, - "micromark-extension-mdx-md": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.1.tgz", - "integrity": "sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==", - "dev": true, - "requires": { - "micromark-util-types": "^1.0.0" - } + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true }, - "micromark-extension-mdxjs": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.1.tgz", - "integrity": "sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==", + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, "requires": { - "acorn": "^8.0.0", - "acorn-jsx": "^5.0.0", - "micromark-extension-mdx-expression": "^1.0.0", - "micromark-extension-mdx-jsx": "^1.0.0", - "micromark-extension-mdx-md": "^1.0.0", - "micromark-extension-mdxjs-esm": "^1.0.0", - "micromark-util-combine-extensions": "^1.0.0", - "micromark-util-types": "^1.0.0" + "to-regex-range": "^5.0.1" } }, - "micromark-extension-mdxjs-esm": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.5.tgz", - "integrity": "sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==", - "dev": true, - "requires": { - "@types/estree": "^1.0.0", - "micromark-core-commonmark": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-events-to-acorn": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "unist-util-position-from-estree": "^1.1.0", - "uvu": "^0.5.0", - "vfile-message": "^3.0.0" - } - }, - "micromark-factory-destination": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz", - "integrity": "sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==", + "form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", "dev": true, "requires": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" } }, - "micromark-factory-label": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz", - "integrity": "sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==", + "fs-extra": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", + "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", "dev": true, "requires": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" } }, - "micromark-factory-mdx-expression": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.9.tgz", - "integrity": "sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==", + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", "dev": true, "requires": { - "@types/estree": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-events-to-acorn": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "unist-util-position-from-estree": "^1.0.0", - "uvu": "^0.5.0", - "vfile-message": "^3.0.0" + "minipass": "^3.0.0" } }, - "micromark-factory-space": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz", - "integrity": "sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==", - "dev": true, - "requires": { - "micromark-util-character": "^1.0.0", - "micromark-util-types": "^1.0.0" - } + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true }, - "micromark-factory-title": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz", - "integrity": "sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==", + "gauge": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", "dev": true, "requires": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" + }, + "dependencies": { + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + } } }, - "micromark-factory-whitespace": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz", - "integrity": "sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==", + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "requires": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } } }, - "micromark-util-character": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.2.0.tgz", - "integrity": "sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==", + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "requires": { - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "is-glob": "^4.0.1" } }, - "micromark-util-chunked": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz", - "integrity": "sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==", - "dev": true, - "requires": { - "micromark-util-symbol": "^1.0.0" - } + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" }, - "micromark-util-classify-character": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz", - "integrity": "sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==", - "dev": true, - "requires": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" }, - "micromark-util-combine-extensions": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz", - "integrity": "sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==", + "has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", + "dev": true + }, + "https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dev": true, "requires": { - "micromark-util-chunked": "^1.0.0", - "micromark-util-types": "^1.0.0" + "agent-base": "6", + "debug": "4" } }, - "micromark-util-decode-numeric-character-reference": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz", - "integrity": "sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==", + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dev": true, "requires": { - "micromark-util-symbol": "^1.0.0" + "once": "^1.3.0", + "wrappy": "1" } }, - "micromark-util-decode-string": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz", - "integrity": "sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==", + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "requires": { - "decode-named-character-reference": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-symbol": "^1.0.0" + "is-extglob": "^2.1.1" } }, - "micromark-util-encode": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz", - "integrity": "sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==", + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true }, - "micromark-util-events-to-acorn": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.3.tgz", - "integrity": "sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==", + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "json-schema-to-ts": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/json-schema-to-ts/-/json-schema-to-ts-1.6.4.tgz", + "integrity": "sha512-pR4yQ9DHz6itqswtHCm26mw45FSNfQ9rEQjosaZErhn5J3J2sIViQiz8rDaezjKAhFGpmsoczYVBgGHzFw/stA==", "dev": true, "requires": { - "@types/acorn": "^4.0.0", - "@types/estree": "^1.0.0", - "@types/unist": "^2.0.0", - "estree-util-visit": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0", - "vfile-message": "^3.0.0" + "@types/json-schema": "^7.0.6", + "ts-toolbelt": "^6.15.5" } }, - "micromark-util-html-tag-name": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz", - "integrity": "sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==", - "dev": true + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "optional": true }, - "micromark-util-normalize-identifier": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz", - "integrity": "sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==", + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, "requires": { - "micromark-util-symbol": "^1.0.0" + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" } }, - "micromark-util-resolve-all": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz", - "integrity": "sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==", - "dev": true, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "requires": { - "micromark-util-types": "^1.0.0" + "js-tokens": "^3.0.0 || ^4.0.0" } }, - "micromark-util-sanitize-uri": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz", - "integrity": "sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==", - "dev": true, + "magic-string": { + "version": "0.30.0", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz", + "integrity": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==", + "peer": true, "requires": { - "micromark-util-character": "^1.0.0", - "micromark-util-encode": "^1.0.0", - "micromark-util-symbol": "^1.0.0" + "@jridgewell/sourcemap-codec": "^1.4.13" } }, - "micromark-util-subtokenize": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz", - "integrity": "sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==", + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, "requires": { - "micromark-util-chunked": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" + "semver": "^6.0.0" } }, - "micromark-util-symbol": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz", - "integrity": "sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==", + "make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", "dev": true }, - "micromark-util-types": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz", - "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==", + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true }, "micromatch": { @@ -17392,12 +4413,6 @@ "picomatch": "^2.3.1" } }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true - }, "mime-db": { "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", @@ -17413,33 +4428,6 @@ "mime-db": "1.52.0" } }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, - "mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "dev": true - }, - "minimatch": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", - "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - }, - "minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "dev": true - }, "minipass": { "version": "3.3.6", "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", @@ -17449,33 +4437,6 @@ "yallist": "^4.0.0" } }, - "minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, "minizlib": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", @@ -17492,24 +4453,6 @@ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "dev": true }, - "mkdirp-classic": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", - "dev": true - }, - "mlly": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.4.0.tgz", - "integrity": "sha512-ua8PAThnTwpprIaU47EPeZ/bPUVp2QYBbWMphUQpVdBI3Lgqzm5KZQ45Agm3YJedHXaIHl6pBGabaLSUPPSptg==", - "dev": true, - "requires": { - "acorn": "^8.9.0", - "pathe": "^1.1.1", - "pkg-types": "^1.0.3", - "ufo": "^1.1.2" - } - }, "mri": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", @@ -17522,29 +4465,11 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, - "mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", - "dev": true - }, "nanoid": { "version": "3.3.6", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" }, - "negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "dev": true - }, - "netmask": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", - "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", - "dev": true - }, "next": { "version": "13.4.6", "resolved": "https://registry.npmjs.org/next/-/next-13.4.6.tgz", @@ -17569,13 +4494,6 @@ "zod": "3.21.4" } }, - "node-addon-api": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz", - "integrity": "sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==", - "dev": true, - "optional": true - }, "node-fetch": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", @@ -17591,12 +4509,6 @@ "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", "dev": true }, - "node-releases": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", - "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", - "dev": true - }, "nopt": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", @@ -17606,27 +4518,6 @@ "abbrev": "1" } }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, - "normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", - "dev": true - }, - "npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "requires": { - "path-key": "^3.0.0" - } - }, "npmlog": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", @@ -17645,21 +4536,6 @@ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "dev": true }, - "object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", - "dev": true - }, - "on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dev": true, - "requires": { - "ee-first": "1.1.1" - } - }, "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", @@ -17669,234 +4545,30 @@ "wrappy": "1" } }, - "onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "requires": { - "mimic-fn": "^2.1.0" - } - }, - "optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "dev": true, - "requires": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - } - }, - "ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", - "dev": true, - "requires": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - } - }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "dev": true - }, - "outdent": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/outdent/-/outdent-0.8.0.tgz", - "integrity": "sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A==", - "dev": true - }, - "p-cancelable": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", - "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", - "dev": true - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "requires": { - "p-limit": "^3.0.2" - } - }, - "p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "requires": { - "aggregate-error": "^3.0.0" - } - }, - "pac-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-5.0.0.tgz", - "integrity": "sha512-CcFG3ZtnxO8McDigozwE3AqAw15zDvGH+OjXO4kzf7IkEKkQ4gxQ+3sdF50WmhQ4P/bVusXcqNE2S3XrNURwzQ==", - "dev": true, - "requires": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4", - "get-uri": "3", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "5", - "pac-resolver": "^5.0.0", - "raw-body": "^2.2.0", - "socks-proxy-agent": "5" - } - }, - "pac-resolver": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-5.0.1.tgz", - "integrity": "sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q==", - "dev": true, - "requires": { - "degenerator": "^3.0.2", - "ip": "^1.1.5", - "netmask": "^2.0.2" - } - }, - "pako": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", - "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==", - "dev": true - }, - "parse-entities": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.1.tgz", - "integrity": "sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "character-entities": "^2.0.0", - "character-entities-legacy": "^3.0.0", - "character-reference-invalid": "^2.0.0", - "decode-named-character-reference": "^1.0.0", - "is-alphanumerical": "^2.0.0", - "is-decimal": "^2.0.0", - "is-hexadecimal": "^2.0.0" - } - }, "parse-ms": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz", "integrity": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==", "dev": true }, - "parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true - }, "path-browserify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", "dev": true }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true - }, - "path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, "path-to-regexp": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz", "integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==", "dev": true }, - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true - }, - "pathe": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.1.tgz", - "integrity": "sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==", - "dev": true - }, - "peek-stream": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/peek-stream/-/peek-stream-1.1.3.tgz", - "integrity": "sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "duplexify": "^3.5.0", - "through2": "^2.0.3" - } - }, - "periscopic": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", - "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", - "dev": true, - "requires": { - "@types/estree": "^1.0.0", - "estree-walker": "^3.0.0", - "is-reference": "^3.0.0" - }, - "dependencies": { - "estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "dev": true, - "requires": { - "@types/estree": "^1.0.0" - } - } - } - }, "picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", @@ -17908,124 +4580,16 @@ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true }, - "pkg-types": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.0.3.tgz", - "integrity": "sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==", - "dev": true, - "requires": { - "jsonc-parser": "^3.2.0", - "mlly": "^1.2.0", - "pathe": "^1.1.0" - } - }, "postcss": { "version": "8.4.14", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", "requires": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - } - }, - "postcss-discard-duplicates": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", - "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", - "dev": true, - "requires": {} - }, - "postcss-load-config": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", - "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", - "dev": true, - "requires": { - "lilconfig": "^2.0.5", - "yaml": "^2.1.1" - } - }, - "postcss-modules": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules/-/postcss-modules-6.0.0.tgz", - "integrity": "sha512-7DGfnlyi/ju82BRzTIjWS5C4Tafmzl3R79YP/PASiocj+aa6yYphHhhKUOEoXQToId5rgyFgJ88+ccOUydjBXQ==", - "dev": true, - "requires": { - "generic-names": "^4.0.0", - "icss-utils": "^5.1.0", - "lodash.camelcase": "^4.3.0", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", - "postcss-modules-scope": "^3.0.0", - "postcss-modules-values": "^4.0.0", - "string-hash": "^1.1.1" - } - }, - "postcss-modules-extract-imports": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", - "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", - "dev": true, - "requires": {} - }, - "postcss-modules-local-by-default": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", - "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", - "dev": true, - "requires": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" - } - }, - "postcss-modules-scope": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", - "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", - "dev": true, - "requires": { - "postcss-selector-parser": "^6.0.4" - } - }, - "postcss-modules-values": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", - "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", - "dev": true, - "requires": { - "icss-utils": "^5.0.0" - } - }, - "postcss-selector-parser": { - "version": "6.0.13", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", - "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", - "dev": true, - "requires": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" } }, - "postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true - }, - "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", - "dev": true - }, - "prettier": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", - "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", - "dev": true - }, "pretty-bytes": { "version": "5.6.0", "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", @@ -18041,139 +4605,18 @@ "parse-ms": "^2.1.0" } }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", - "dev": true - }, - "property-information": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.2.0.tgz", - "integrity": "sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==", - "dev": true - }, - "proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "dev": true, - "requires": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - } - }, - "proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-5.0.0.tgz", - "integrity": "sha512-gkH7BkvLVkSfX9Dk27W6TyNOWWZWRilRfk1XxGNWOYJ2TuedAv1yFpCaU9QSBmBe716XOTNpYNOzhysyw8xn7g==", - "dev": true, - "requires": { - "agent-base": "^6.0.0", - "debug": "4", - "http-proxy-agent": "^4.0.0", - "https-proxy-agent": "^5.0.0", - "lru-cache": "^5.1.1", - "pac-proxy-agent": "^5.0.0", - "proxy-from-env": "^1.0.0", - "socks-proxy-agent": "^5.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "requires": { - "yallist": "^3.0.2" - } - }, - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - } - } - }, - "proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", - "dev": true - }, - "pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "dev": true, - "requires": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" - } - }, "punycode": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", "dev": true }, - "qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } - }, "queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true }, - "quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", - "dev": true - }, - "range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "dev": true - }, - "raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "dev": true, - "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - } - }, "react": { "version": "18.2.0", "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", @@ -18191,12 +4634,6 @@ "scheduler": "^0.23.0" } }, - "react-refresh": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", - "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", - "dev": true - }, "readable-stream": { "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", @@ -18208,214 +4645,24 @@ "util-deprecate": "^1.0.1" } }, - "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "requires": { - "picomatch": "^2.2.1" - } - }, - "recast": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz", - "integrity": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==", - "dev": true, - "requires": { - "ast-types": "0.15.2", - "esprima": "~4.0.0", - "source-map": "~0.6.1", - "tslib": "^2.0.1" - }, - "dependencies": { - "ast-types": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz", - "integrity": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==", - "dev": true, - "requires": { - "tslib": "^2.0.1" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", - "dev": true - }, - "regenerate-unicode-properties": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", - "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", - "dev": true, - "requires": { - "regenerate": "^1.4.2" - } - }, "regenerator-runtime": { "version": "0.13.11", "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", "dev": true }, - "regenerator-transform": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", - "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", - "dev": true, - "requires": { - "@babel/runtime": "^7.8.4" - } - }, - "regexpu-core": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", - "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", - "dev": true, - "requires": { - "@babel/regjsgen": "^0.8.0", - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" - } - }, - "regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", - "dev": true, - "requires": { - "jsesc": "~0.5.0" - }, - "dependencies": { - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "dev": true - } - } - }, - "remark-frontmatter": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-4.0.1.tgz", - "integrity": "sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA==", - "dev": true, - "requires": { - "@types/mdast": "^3.0.0", - "mdast-util-frontmatter": "^1.0.0", - "micromark-extension-frontmatter": "^1.0.0", - "unified": "^10.0.0" - } - }, - "remark-mdx-frontmatter": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/remark-mdx-frontmatter/-/remark-mdx-frontmatter-1.1.1.tgz", - "integrity": "sha512-7teX9DW4tI2WZkXS4DBxneYSY7NHiXl4AKdWDO9LXVweULlCT8OPWsOjLEnMIXViN1j+QcY8mfbq3k0EK6x3uA==", - "dev": true, - "requires": { - "estree-util-is-identifier-name": "^1.0.0", - "estree-util-value-to-estree": "^1.0.0", - "js-yaml": "^4.0.0", - "toml": "^3.0.0" - } - }, - "remark-parse": { - "version": "10.0.2", - "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.2.tgz", - "integrity": "sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==", - "dev": true, - "requires": { - "@types/mdast": "^3.0.0", - "mdast-util-from-markdown": "^1.0.0", - "unified": "^10.0.0" - } - }, - "remark-rehype": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-9.1.0.tgz", - "integrity": "sha512-oLa6YmgAYg19zb0ZrBACh40hpBLteYROaPLhBXzLgjqyHQrN+gVP9N/FJvfzuNNuzCutktkroXEZBrxAxKhh7Q==", - "dev": true, - "requires": { - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "mdast-util-to-hast": "^11.0.0", - "unified": "^10.0.0" - } - }, "require-from-string": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true }, - "require-like": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/require-like/-/require-like-0.1.2.tgz", - "integrity": "sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==", - "dev": true - }, - "resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", - "dev": true, - "requires": { - "is-core-module": "^2.11.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "resolve-alpn": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", - "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", - "dev": true - }, "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true }, - "responselike": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", - "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", - "dev": true, - "requires": { - "lowercase-keys": "^2.0.0" - } - }, - "restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "dev": true, - "requires": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, - "dependencies": { - "signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - } - } - }, "reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", @@ -18431,255 +4678,45 @@ "glob": "^7.1.3" } }, - "rollup": { - "version": "3.25.3", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.25.3.tgz", - "integrity": "sha512-ZT279hx8gszBj9uy5FfhoG4bZx8c+0A1sbqtr7Q3KNWIizpTdDEPZbV2xcbvHsnFp4MavCQYZyzApJ+virB8Yw==", - "dev": true, - "requires": { - "fsevents": "~2.3.2" - } - }, - "run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true - }, "run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "requires": { - "queue-microtask": "^1.2.2" - } - }, - "rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", - "dev": true, - "requires": { - "tslib": "^2.1.0" - } - }, - "sade": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", - "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", - "dev": true, - "requires": { - "mri": "^1.1.0" - } - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true - }, - "scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "requires": { - "loose-envify": "^1.1.0" - } - }, - "semver": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.1.1.tgz", - "integrity": "sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ==", - "dev": true - }, - "send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "dev": true, - "requires": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - }, - "dependencies": { - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - } - } - }, - "serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "dev": true, - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - } - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true - }, - "set-cookie-parser": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.6.0.tgz", - "integrity": "sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==", - "dev": true - }, - "setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, - "side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - } - }, - "signal-exit": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", - "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", - "dev": true - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true - }, - "smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true - }, - "socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", - "dev": true, - "requires": { - "ip": "^2.0.0", - "smart-buffer": "^4.2.0" - }, - "dependencies": { - "ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", - "dev": true - } - } - }, - "socks-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-5.0.1.tgz", - "integrity": "sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, "requires": { - "agent-base": "^6.0.2", - "debug": "4", - "socks": "^2.3.3" + "queue-microtask": "^1.2.2" } }, - "sort-object-keys": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/sort-object-keys/-/sort-object-keys-1.1.3.tgz", - "integrity": "sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==", + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "dev": true }, - "sort-package-json": { - "version": "1.57.0", - "resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-1.57.0.tgz", - "integrity": "sha512-FYsjYn2dHTRb41wqnv+uEqCUvBpK3jZcTp9rbz2qDTmel7Pmdtf+i2rLaaPMRZeSVM60V3Se31GyWFpmKs4Q5Q==", - "dev": true, + "scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", "requires": { - "detect-indent": "^6.0.0", - "detect-newline": "3.1.0", - "git-hooks-list": "1.0.3", - "globby": "10.0.0", - "is-plain-obj": "2.1.0", - "sort-object-keys": "^1.1.3" - }, - "dependencies": { - "is-plain-obj": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", - "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", - "dev": true - } + "loose-envify": "^1.1.0" } }, - "source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "semver": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.1.1.tgz", + "integrity": "sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ==", + "dev": true + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "signal-exit": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", + "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", "dev": true }, "source-map-js": { @@ -18687,39 +4724,6 @@ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" }, - "source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "space-separated-tokens": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", - "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", - "dev": true - }, - "ssri": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", - "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", - "dev": true, - "requires": { - "minipass": "^3.1.1" - } - }, "sswr": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/sswr/-/sswr-1.10.0.tgz", @@ -18728,18 +4732,6 @@ "swrev": "^3.0.0" } }, - "statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "dev": true - }, - "stream-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", - "dev": true - }, "streamsearch": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", @@ -18754,12 +4746,6 @@ "safe-buffer": "~5.2.0" } }, - "string-hash": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", - "integrity": "sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==", - "dev": true - }, "string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", @@ -18771,16 +4757,6 @@ "strip-ansi": "^6.0.1" } }, - "stringify-entities": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.3.tgz", - "integrity": "sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==", - "dev": true, - "requires": { - "character-entities-html4": "^2.0.0", - "character-entities-legacy": "^3.0.0" - } - }, "strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", @@ -18790,27 +4766,6 @@ "ansi-regex": "^5.0.1" } }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true - }, - "strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true - }, - "style-to-object": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.1.tgz", - "integrity": "sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw==", - "dev": true, - "requires": { - "inline-style-parser": "0.1.1" - } - }, "styled-jsx": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", @@ -18819,21 +4774,6 @@ "client-only": "0.0.1" } }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true - }, "svelte": { "version": "3.59.2", "resolved": "https://registry.npmjs.org/svelte/-/svelte-3.59.2.tgz", @@ -18878,405 +4818,88 @@ "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", "dev": true - } - } - }, - "tar-fs": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", - "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", - "dev": true, - "requires": { - "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^2.1.4" - }, - "dependencies": { - "chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "dev": true - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - } - } - }, - "tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "dev": true, - "requires": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - } - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "dev": true - }, - "through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "time-span": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/time-span/-/time-span-4.0.0.tgz", - "integrity": "sha512-MyqZCTGLDZ77u4k+jqg4UlrzPTPZ49NDlaekU6uuFaJLzPIN1woaRXCbGeqOfxwc3Y37ZROGAJ614Rdv7Olt+g==", - "dev": true, - "requires": { - "convert-hrtime": "^3.0.0" - } - }, - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dev": true, - "requires": { - "os-tmpdir": "~1.0.2" - } - }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "requires": { - "is-number": "^7.0.0" - } - }, - "toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true - }, - "toml": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/toml/-/toml-3.0.0.tgz", - "integrity": "sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==", - "dev": true - }, - "tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true - }, - "trough": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz", - "integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==", - "dev": true - }, - "ts-morph": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/ts-morph/-/ts-morph-12.0.0.tgz", - "integrity": "sha512-VHC8XgU2fFW7yO1f/b3mxKDje1vmyzFXHWzOYmKEkCEwcLjDtbdLgBQviqj4ZwP4MJkQtRo6Ha2I29lq/B+VxA==", - "dev": true, - "requires": { - "@ts-morph/common": "~0.11.0", - "code-block-writer": "^10.1.1" - } - }, - "ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", - "dev": true, - "requires": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "dependencies": { - "arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "dev": true - } - } - }, - "ts-toolbelt": { - "version": "6.15.5", - "resolved": "https://registry.npmjs.org/ts-toolbelt/-/ts-toolbelt-6.15.5.tgz", - "integrity": "sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A==", - "dev": true - }, - "tsconfig-paths": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", - "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", - "dev": true, - "requires": { - "json5": "^2.2.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "tslib": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", - "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==" - }, - "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", - "dev": true, - "requires": { - "prelude-ls": "~1.1.2" - } - }, - "type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true - }, - "type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dev": true, - "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - } - }, - "typescript": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", - "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", - "dev": true - }, - "ufo": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.1.2.tgz", - "integrity": "sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ==", - "dev": true - }, - "unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", - "dev": true - }, - "unicode-match-property-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", - "dev": true, - "requires": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" - } - }, - "unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", - "dev": true - }, - "unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", - "dev": true - }, - "unified": { - "version": "10.1.2", - "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", - "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "bail": "^2.0.0", - "extend": "^3.0.0", - "is-buffer": "^2.0.0", - "is-plain-obj": "^4.0.0", - "trough": "^2.0.0", - "vfile": "^5.0.0" - }, - "dependencies": { - "is-plain-obj": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", - "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", - "dev": true - } - } - }, - "unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", - "dev": true, - "requires": { - "unique-slug": "^2.0.0" + } } }, - "unique-slug": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", - "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "time-span": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/time-span/-/time-span-4.0.0.tgz", + "integrity": "sha512-MyqZCTGLDZ77u4k+jqg4UlrzPTPZ49NDlaekU6uuFaJLzPIN1woaRXCbGeqOfxwc3Y37ZROGAJ614Rdv7Olt+g==", "dev": true, "requires": { - "imurmurhash": "^0.1.4" + "convert-hrtime": "^3.0.0" } }, - "unist-builder": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/unist-builder/-/unist-builder-3.0.1.tgz", - "integrity": "sha512-gnpOw7DIpCA0vpr6NqdPvTWnlPTApCTRzr+38E6hCWx3rz/cjo83SsKIlS1Z+L5ttScQ2AwutNnb8+tAvpb6qQ==", + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, "requires": { - "@types/unist": "^2.0.0" + "is-number": "^7.0.0" } }, - "unist-util-generated": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.1.tgz", - "integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==", + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", "dev": true }, - "unist-util-is": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", - "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0" - } - }, - "unist-util-position": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz", - "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0" - } - }, - "unist-util-position-from-estree": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.2.tgz", - "integrity": "sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==", + "ts-morph": { + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/ts-morph/-/ts-morph-12.0.0.tgz", + "integrity": "sha512-VHC8XgU2fFW7yO1f/b3mxKDje1vmyzFXHWzOYmKEkCEwcLjDtbdLgBQviqj4ZwP4MJkQtRo6Ha2I29lq/B+VxA==", "dev": true, "requires": { - "@types/unist": "^2.0.0" + "@ts-morph/common": "~0.11.0", + "code-block-writer": "^10.1.1" } }, - "unist-util-remove-position": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-4.0.2.tgz", - "integrity": "sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==", + "ts-node": { + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", + "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", "dev": true, "requires": { - "@types/unist": "^2.0.0", - "unist-util-visit": "^4.0.0" + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "dependencies": { + "arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + } } }, - "unist-util-stringify-position": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", - "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0" - } + "ts-toolbelt": { + "version": "6.15.5", + "resolved": "https://registry.npmjs.org/ts-toolbelt/-/ts-toolbelt-6.15.5.tgz", + "integrity": "sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A==", + "dev": true }, - "unist-util-visit": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.1.1" - } + "tslib": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", + "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==" }, - "unist-util-visit-parents": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", - "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0" - } + "typescript": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", + "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", + "dev": true }, "universalify": { "version": "2.0.0", @@ -19284,22 +4907,6 @@ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", "dev": true }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "dev": true - }, - "update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", - "dev": true, - "requires": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - } - }, "uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", @@ -19321,325 +4928,28 @@ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "dev": true }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "dev": true - }, - "uvu": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz", - "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", - "dev": true, - "requires": { - "dequal": "^2.0.0", - "diff": "^5.0.0", - "kleur": "^4.0.3", - "sade": "^1.7.3" - }, - "dependencies": { - "diff": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz", - "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==", - "dev": true - } - } - }, "v8-compile-cache-lib": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", "dev": true }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "dev": true - }, "vercel": { - "version": "30.2.3", - "resolved": "https://registry.npmjs.org/vercel/-/vercel-30.2.3.tgz", - "integrity": "sha512-Eil4CR1a/pZkTl3gewzN8rDTisRmuixHAgymWutrRlc1qBYGPMo9ZPTu/9cR3k2PT7yjeRMYYLm0ax9l43lDhQ==", + "version": "31.2.2", + "resolved": "https://registry.npmjs.org/vercel/-/vercel-31.2.2.tgz", + "integrity": "sha512-g9j7h/1vunFJ33lJddMV7tgZycu6vRDXIEE+9uDYO6i+G7Is9s917tpjguQmUAT9nzmX7cwAmbx34QxGAXBpWw==", "dev": true, "requires": { - "@vercel/build-utils": "6.7.5", + "@vercel/build-utils": "6.8.2", "@vercel/go": "2.5.1", "@vercel/hydrogen": "0.0.64", - "@vercel/next": "3.8.6", - "@vercel/node": "2.15.2", + "@vercel/next": "3.9.3", + "@vercel/node": "2.15.8", "@vercel/python": "3.1.60", "@vercel/redwood": "1.1.15", - "@vercel/remix-builder": "1.8.14", + "@vercel/remix-builder": "1.9.1", "@vercel/ruby": "1.3.76", - "@vercel/static-build": "1.3.37" - } - }, - "vfile": { - "version": "5.3.7", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", - "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" - } - }, - "vfile-message": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", - "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^3.0.0" - } - }, - "vite": { - "version": "4.3.9", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.3.9.tgz", - "integrity": "sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==", - "dev": true, - "requires": { - "esbuild": "^0.17.5", - "fsevents": "~2.3.2", - "postcss": "^8.4.23", - "rollup": "^3.21.0" - }, - "dependencies": { - "@esbuild/android-arm": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.19.tgz", - "integrity": "sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==", - "dev": true, - "optional": true - }, - "@esbuild/android-arm64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz", - "integrity": "sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==", - "dev": true, - "optional": true - }, - "@esbuild/android-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.19.tgz", - "integrity": "sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-arm64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz", - "integrity": "sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz", - "integrity": "sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-arm64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz", - "integrity": "sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz", - "integrity": "sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz", - "integrity": "sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz", - "integrity": "sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ia32": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz", - "integrity": "sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-loong64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz", - "integrity": "sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-mips64el": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz", - "integrity": "sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ppc64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz", - "integrity": "sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-riscv64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz", - "integrity": "sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-s390x": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz", - "integrity": "sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==", - "dev": true, - "optional": true - }, - "@esbuild/linux-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz", - "integrity": "sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==", - "dev": true, - "optional": true - }, - "@esbuild/netbsd-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz", - "integrity": "sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==", - "dev": true, - "optional": true - }, - "@esbuild/openbsd-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz", - "integrity": "sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==", - "dev": true, - "optional": true - }, - "@esbuild/sunos-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz", - "integrity": "sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==", - "dev": true, - "optional": true - }, - "@esbuild/win32-arm64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz", - "integrity": "sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==", - "dev": true, - "optional": true - }, - "@esbuild/win32-ia32": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz", - "integrity": "sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==", - "dev": true, - "optional": true - }, - "@esbuild/win32-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz", - "integrity": "sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==", - "dev": true, - "optional": true - }, - "esbuild": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.19.tgz", - "integrity": "sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==", - "dev": true, - "requires": { - "@esbuild/android-arm": "0.17.19", - "@esbuild/android-arm64": "0.17.19", - "@esbuild/android-x64": "0.17.19", - "@esbuild/darwin-arm64": "0.17.19", - "@esbuild/darwin-x64": "0.17.19", - "@esbuild/freebsd-arm64": "0.17.19", - "@esbuild/freebsd-x64": "0.17.19", - "@esbuild/linux-arm": "0.17.19", - "@esbuild/linux-arm64": "0.17.19", - "@esbuild/linux-ia32": "0.17.19", - "@esbuild/linux-loong64": "0.17.19", - "@esbuild/linux-mips64el": "0.17.19", - "@esbuild/linux-ppc64": "0.17.19", - "@esbuild/linux-riscv64": "0.17.19", - "@esbuild/linux-s390x": "0.17.19", - "@esbuild/linux-x64": "0.17.19", - "@esbuild/netbsd-x64": "0.17.19", - "@esbuild/openbsd-x64": "0.17.19", - "@esbuild/sunos-x64": "0.17.19", - "@esbuild/win32-arm64": "0.17.19", - "@esbuild/win32-ia32": "0.17.19", - "@esbuild/win32-x64": "0.17.19" - } - }, - "postcss": { - "version": "8.4.24", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", - "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", - "dev": true, - "requires": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - } - } - } - }, - "vite-node": { - "version": "0.28.5", - "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-0.28.5.tgz", - "integrity": "sha512-LmXb9saMGlrMZbXTvOveJKwMTBTNUH66c8rJnQ0ZPNX+myPEol64+szRzXtV5ORb0Hb/91yq+/D3oERoyAt6LA==", - "dev": true, - "requires": { - "cac": "^6.7.14", - "debug": "^4.3.4", - "mlly": "^1.1.0", - "pathe": "^1.1.0", - "picocolors": "^1.0.0", - "source-map": "^0.6.1", - "source-map-support": "^0.5.21", - "vite": "^3.0.0 || ^4.0.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "vm2": { - "version": "3.9.19", - "resolved": "https://registry.npmjs.org/vm2/-/vm2-3.9.19.tgz", - "integrity": "sha512-J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg==", - "dev": true, - "requires": { - "acorn": "^8.7.0", - "acorn-walk": "^8.2.0" + "@vercel/static-build": "1.3.44" } }, "vue": { @@ -19664,15 +4974,6 @@ "graceful-fs": "^4.1.2" } }, - "wcwidth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", - "dev": true, - "requires": { - "defaults": "^1.0.3" - } - }, "web-vitals": { "version": "0.2.4", "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-0.2.4.tgz", @@ -19695,15 +4996,6 @@ "webidl-conversions": "^3.0.0" } }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - }, "wide-align": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", @@ -19713,140 +5005,28 @@ "string-width": "^1.0.2 || 2 || 3 || 4" } }, - "word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", - "dev": true - }, - "wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, - "ws": { - "version": "7.5.9", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", - "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", - "dev": true, - "requires": {} - }, - "xdm": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/xdm/-/xdm-2.1.0.tgz", - "integrity": "sha512-3LxxbxKcRogYY7cQSMy1tUuU1zKNK9YPqMT7/S0r7Cz2QpyF8O9yFySGD7caOZt+LWUOQioOIX+6ZzCoBCpcAA==", - "dev": true, - "requires": { - "@rollup/pluginutils": "^4.0.0", - "@types/estree-jsx": "^0.0.1", - "astring": "^1.6.0", - "deasync": "^0.1.0", - "estree-util-build-jsx": "^2.0.0", - "estree-util-is-identifier-name": "^2.0.0", - "estree-walker": "^3.0.0", - "got": "^11.0.0", - "hast-util-to-estree": "^2.0.0", - "loader-utils": "^2.0.0", - "markdown-extensions": "^1.0.0", - "mdast-util-mdx": "^1.0.0", - "micromark-extension-mdxjs": "^1.0.0", - "periscopic": "^3.0.0", - "remark-parse": "^10.0.0", - "remark-rehype": "^9.0.0", - "source-map": "^0.7.0", - "unified": "^10.0.0", - "unist-util-position-from-estree": "^1.0.0", - "unist-util-stringify-position": "^3.0.0", - "unist-util-visit": "^4.0.0", - "vfile": "^5.0.0" - }, - "dependencies": { - "estree-util-is-identifier-name": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", - "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", - "dev": true - }, - "estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "dev": true, - "requires": { - "@types/estree": "^1.0.0" - } - }, - "loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - } - } - }, - "xregexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz", - "integrity": "sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA==", - "dev": true - }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true - }, "yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "yaml": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", - "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", - "dev": true - }, "yn": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", "dev": true }, - "yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true - }, "zod": { "version": "3.21.4", "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==" - }, - "zwitch": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", - "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", - "dev": true } } } diff --git a/ecosystem-tests/vercel-edge/package.json b/ecosystem-tests/vercel-edge/package.json index b44940e0e..8af07af6a 100644 --- a/ecosystem-tests/vercel-edge/package.json +++ b/ecosystem-tests/vercel-edge/package.json @@ -21,7 +21,7 @@ "@types/react": "18.2.13", "@types/react-dom": "18.2.6", "edge-runtime": "^2.4.3", - "typescript": "5.1.3", - "vercel": "^30.2.3" + "typescript": "5.1.6", + "vercel": "^31.0.0" } } diff --git a/ecosystem-tests/vercel-edge/src/pages/api/vercel-ai-streaming.ts b/ecosystem-tests/vercel-edge/src/pages/api/vercel-ai-streaming.ts index d698f8a4b..69c726532 100644 --- a/ecosystem-tests/vercel-edge/src/pages/api/vercel-ai-streaming.ts +++ b/ecosystem-tests/vercel-edge/src/pages/api/vercel-ai-streaming.ts @@ -17,13 +17,15 @@ export default async (request: NextRequest) => { const { messages } = await request.json(); // Ask OpenAI for a streaming chat completion given the prompt - const streamResponse = await openai.chat.completions.create({ - model: 'gpt-3.5-turbo', - stream: true, - messages, - }); + const streamResponse = await openai.chat.completions + .create({ + model: 'gpt-3.5-turbo', + stream: true, + messages, + }) + .asResponse(); - const stream = OpenAIStream(streamResponse.response); + const stream = OpenAIStream(streamResponse); // Respond with the stream return new StreamingTextResponse(stream); diff --git a/examples/function-call-stream.ts b/examples/function-call-stream.ts new file mode 100755 index 000000000..6126a7ff2 --- /dev/null +++ b/examples/function-call-stream.ts @@ -0,0 +1,185 @@ +#!/usr/bin/env -S npm run tsn -T + +import util from 'util'; +import OpenAI from 'openai'; +import { + ChatCompletionMessage, + ChatCompletionChunk, + CreateChatCompletionRequestMessage, +} from 'openai/resources/chat'; + +// gets API Key from environment variable OPENAI_API_KEY +const openai = new OpenAI(); + +const functions: OpenAI.Chat.CompletionCreateParams.Function[] = [ + { + name: 'list', + description: 'list queries books by genre, and returns a list of names of books', + parameters: { + type: 'object', + properties: { + genre: { type: 'string', enum: ['mystery', 'nonfiction', 'memoir', 'romance', 'historical'] }, + }, + }, + }, + { + name: 'search', + description: 'search queries books by their name and returns a list of book names and their ids', + parameters: { + type: 'object', + properties: { + name: { type: 'string' }, + }, + }, + }, + { + name: 'get', + description: + "get returns a book's detailed information based on the id of the book. Note that this does not accept names, and only IDs, which you can get by using search.", + parameters: { + type: 'object', + properties: { + id: { type: 'string' }, + }, + }, + }, +]; + +async function callFunction(function_call: ChatCompletionMessage.FunctionCall): Promise { + const args = JSON.parse(function_call.arguments!); + switch (function_call.name) { + case 'list': + return await list(args['genre']); + + case 'search': + return await search(args['name']); + + case 'get': + return await get(args['id']); + + default: + throw new Error('No function found'); + } +} + +async function main() { + const messages: CreateChatCompletionRequestMessage[] = [ + { + role: 'system', + content: + 'Please use our book database, which you can access using functions to answer the following questions.', + }, + { + role: 'user', + content: + 'I really enjoyed reading To Kill a Mockingbird, could you recommend me a book that is similar and tell me why?', + }, + ]; + console.log(messages[0]); + console.log(messages[1]); + console.log(); + + while (true) { + const stream = await openai.chat.completions.create({ + model: 'gpt-3.5-turbo', + messages, + functions: functions, + stream: true, + }); + + // Since the stream returns chunks, we need to build up the ChatCompletionMessage object. + // We implement this logic in messageReducer, which coalesces deltas into the message. + // `lineRewriter()` allows us to rewrite the last output with new text, which is one + // way of forwarding the streamed output to a visual interface. + let writeLine = lineRewriter(); + let message = {} as ChatCompletionMessage; + for await (const chunk of stream) { + message = messageReducer(message, chunk); + writeLine(message); + } + console.log(); + messages.push(message); + + // If there is no function call, we're done and can exit this loop + if (!message.function_call) { + return; + } + + // If there is a function call, we generate a new message with the role 'function'. + const result = await callFunction(message.function_call); + const newMessage = { + role: 'function' as const, + name: message.function_call.name!, + content: JSON.stringify(result), + }; + messages.push(newMessage); + + console.log(newMessage); + console.log(); + } +} + +function messageReducer(previous: ChatCompletionMessage, item: ChatCompletionChunk): ChatCompletionMessage { + const reduce = (acc: any, delta: any) => { + acc = { ...acc }; + for (const [key, value] of Object.entries(delta)) { + if (acc[key] === undefined || acc[key] === null) { + acc[key] = value; + } else if (typeof acc[key] === 'string' && typeof value === 'string') { + (acc[key] as string) += value; + } else if (typeof acc[key] === 'object' && !Array.isArray(acc[key])) { + acc[key] = reduce(acc[key], value); + } + } + return acc; + }; + + return reduce(previous, item.choices[0]!.delta) as ChatCompletionMessage; +} + +function lineRewriter() { + let lastMessageLength = 0; + return function write(value: any) { + process.stdout.cursorTo(0); + process.stdout.moveCursor(0, -Math.floor((lastMessageLength - 1) / process.stdout.columns)); + lastMessageLength = util.formatWithOptions({ colors: false, breakLength: Infinity }, value).length; + process.stdout.write(util.formatWithOptions({ colors: true, breakLength: Infinity }, value)); + }; +} + +const db = [ + { + id: 'a1', + name: 'To Kill a Mockingbird', + genre: 'historical', + description: `Compassionate, dramatic, and deeply moving, "To Kill A Mockingbird" takes readers to the roots of human behavior - to innocence and experience, kindness and cruelty, love and hatred, humor and pathos. Now with over 18 million copies in print and translated into forty languages, this regional story by a young Alabama woman claims universal appeal. Harper Lee always considered her book to be a simple love story. Today it is regarded as a masterpiece of American literature.`, + }, + { + id: 'a2', + name: 'All the Light We Cannot See', + genre: 'historical', + description: `In a mining town in Germany, Werner Pfennig, an orphan, grows up with his younger sister, enchanted by a crude radio they find that brings them news and stories from places they have never seen or imagined. Werner becomes an expert at building and fixing these crucial new instruments and is enlisted to use his talent to track down the resistance. Deftly interweaving the lives of Marie-Laure and Werner, Doerr illuminates the ways, against all odds, people try to be good to one another.`, + }, + { + id: 'a3', + name: 'Where the Crawdads Sing', + genre: 'historical', + description: `For years, rumors of the “Marsh Girl” haunted Barkley Cove, a quiet fishing village. Kya Clark is barefoot and wild; unfit for polite society. So in late 1969, when the popular Chase Andrews is found dead, locals immediately suspect her. + +But Kya is not what they say. A born naturalist with just one day of school, she takes life's lessons from the land, learning the real ways of the world from the dishonest signals of fireflies. But while she has the skills to live in solitude forever, the time comes when she yearns to be touched and loved. Drawn to two young men from town, who are each intrigued by her wild beauty, Kya opens herself to a new and startling world—until the unthinkable happens.`, + }, +]; + +async function list(genre: string) { + return db.filter((item) => item.genre === genre).map((item) => ({ name: item.name, id: item.id })); +} + +async function search(name: string) { + return db.filter((item) => item.name.includes(name)).map((item) => ({ name: item.name, id: item.id })); +} + +async function get(id: string) { + return db.find((item) => item.id === id)!; +} + +main(); diff --git a/examples/function-call.ts b/examples/function-call.ts new file mode 100755 index 000000000..158437e68 --- /dev/null +++ b/examples/function-call.ts @@ -0,0 +1,142 @@ +#!/usr/bin/env -S npm run tsn -T + +import OpenAI from 'openai'; +import { ChatCompletionMessage, CreateChatCompletionRequestMessage } from 'openai/resources/chat'; + +// gets API Key from environment variable OPENAI_API_KEY +const openai = new OpenAI(); + +const functions: OpenAI.Chat.CompletionCreateParams.Function[] = [ + { + name: 'list', + description: 'list queries books by genre, and returns a list of names of books', + parameters: { + type: 'object', + properties: { + genre: { type: 'string', enum: ['mystery', 'nonfiction', 'memoir', 'romance', 'historical'] }, + }, + }, + }, + { + name: 'search', + description: 'search queries books by their name and returns a list of book names and their ids', + parameters: { + type: 'object', + properties: { + name: { type: 'string' }, + }, + }, + }, + { + name: 'get', + description: + "get returns a book's detailed information based on the id of the book. Note that this does not accept names, and only IDs, which you can get by using search.", + parameters: { + type: 'object', + properties: { + id: { type: 'string' }, + }, + }, + }, +]; + +async function callFunction(function_call: ChatCompletionMessage.FunctionCall): Promise { + const args = JSON.parse(function_call.arguments!); + switch (function_call.name) { + case 'list': + return await list(args['genre']); + + case 'search': + return await search(args['name']); + + case 'get': + return await get(args['id']); + + default: + throw new Error('No function found'); + } +} + +async function main() { + const messages: CreateChatCompletionRequestMessage[] = [ + { + role: 'system', + content: + 'Please use our book database, which you can access using functions to answer the following questions.', + }, + { + role: 'user', + content: + 'I really enjoyed reading To Kill a Mockingbird, could you recommend me a book that is similar and tell me why?', + }, + ]; + console.log(messages[0]); + console.log(messages[1]); + console.log(); + + while (true) { + const completion = await openai.chat.completions.create({ + model: 'gpt-3.5-turbo', + messages, + functions: functions, + }); + + const message = completion.choices[0]!.message; + messages.push(message); + console.log(message); + + // If there is no function call, we're done and can exit this loop + if (!message.function_call) { + return; + } + + // If there is a function call, we generate a new message with the role 'function'. + const result = await callFunction(message.function_call); + const newMessage = { + role: 'function' as const, + name: message.function_call.name!, + content: JSON.stringify(result), + }; + messages.push(newMessage); + + console.log(newMessage); + console.log(); + } +} + +const db = [ + { + id: 'a1', + name: 'To Kill a Mockingbird', + genre: 'historical', + description: `Compassionate, dramatic, and deeply moving, "To Kill A Mockingbird" takes readers to the roots of human behavior - to innocence and experience, kindness and cruelty, love and hatred, humor and pathos. Now with over 18 million copies in print and translated into forty languages, this regional story by a young Alabama woman claims universal appeal. Harper Lee always considered her book to be a simple love story. Today it is regarded as a masterpiece of American literature.`, + }, + { + id: 'a2', + name: 'All the Light We Cannot See', + genre: 'historical', + description: `In a mining town in Germany, Werner Pfennig, an orphan, grows up with his younger sister, enchanted by a crude radio they find that brings them news and stories from places they have never seen or imagined. Werner becomes an expert at building and fixing these crucial new instruments and is enlisted to use his talent to track down the resistance. Deftly interweaving the lives of Marie-Laure and Werner, Doerr illuminates the ways, against all odds, people try to be good to one another.`, + }, + { + id: 'a3', + name: 'Where the Crawdads Sing', + genre: 'historical', + description: `For years, rumors of the “Marsh Girl” haunted Barkley Cove, a quiet fishing village. Kya Clark is barefoot and wild; unfit for polite society. So in late 1969, when the popular Chase Andrews is found dead, locals immediately suspect her. + +But Kya is not what they say. A born naturalist with just one day of school, she takes life's lessons from the land, learning the real ways of the world from the dishonest signals of fireflies. But while she has the skills to live in solitude forever, the time comes when she yearns to be touched and loved. Drawn to two young men from town, who are each intrigued by her wild beauty, Kya opens herself to a new and startling world—until the unthinkable happens.`, + }, +]; + +async function list(genre: string) { + return db.filter((item) => item.genre === genre).map((item) => ({ name: item.name, id: item.id })); +} + +async function search(name: string) { + return db.filter((item) => item.name.includes(name)).map((item) => ({ name: item.name, id: item.id })); +} + +async function get(id: string) { + return db.find((item) => item.id === id)!; +} + +main(); diff --git a/examples/raw-response.ts b/examples/raw-response.ts new file mode 100644 index 000000000..e114f75d4 --- /dev/null +++ b/examples/raw-response.ts @@ -0,0 +1,34 @@ +#!/usr/bin/env yarn tsn -T + +import OpenAI from 'openai'; + +// gets API Key from environment variable OPENAI_API_KEY +const client = new OpenAI(); + +async function main() { + // getting just raw Response: + { + const response = await client.completions + .create({ + prompt: 'Say this is a test', + model: 'text-davinci-003', + }) + .asResponse(); + console.log(`response headers: `, Object.fromEntries(response.headers.entries())); + console.log(`response json: `, await response.json()); + } + + // getting the usual return value plus raw Response: + { + const { data: completion, response } = await client.completions + .create({ + prompt: 'Say this is a test', + model: 'text-davinci-003', + }) + .withResponse(); + console.log(`response headers: `, Object.fromEntries(response.headers.entries())); + console.log(`completion: `, completion); + } +} + +main().catch(console.error); diff --git a/jest.config.js b/jest.config.js index b614f3666..29efff74a 100644 --- a/jest.config.js +++ b/jest.config.js @@ -7,5 +7,5 @@ module.exports = { '^openai/_shims/(.*)$': '/src/_shims/$1.node', '^openai/(.*)$': '/src/$1', }, - modulePathIgnorePatterns: ['/ecosystem-tests/', '/dist/'], + modulePathIgnorePatterns: ['/ecosystem-tests/', '/dist/', '/deno_tests/'], }; diff --git a/package.json b/package.json index 92f9f4d51..4620149c9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.0.0-beta.8", + "version": "4.0.0-beta.9", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", @@ -85,17 +85,18 @@ "@types/jest": "^29.4.0", "@typescript-eslint/eslint-plugin": "^5.33.0", "@typescript-eslint/parser": "^5.33.0", - "openai": "link:.", "eslint": "^8.22.0", "eslint-plugin-unused-imports": "^2.0.0", "jest": "^29.4.0", + "openai": "link:.", "prettier": "rattrayalex/prettier#postfix-ternaries", "ts-jest": "^29.1.0", "ts-morph": "^19.0.0", "ts-node": "^10.5.0", "tsc-alias": "^1.8.6", "tsc-multi": "^1.1.0", - "tsconfig-paths": "^3.12.0", + "tsconfig-paths": "^4.0.0", "typescript": "^4.8.2" - } + }, + "bin": "./bin/cli" } diff --git a/src/_shims/fetch.d.ts b/src/_shims/fetch.d.ts index 7635e5a11..79dcf074c 100644 --- a/src/_shims/fetch.d.ts +++ b/src/_shims/fetch.d.ts @@ -26,6 +26,8 @@ type _Response = unknown extends Response ? never : Response; // @ts-ignore type _ResponseInit = unknown extends ResponseInit ? never : ResponseInit; // @ts-ignore +type _ResponseType = unknown extends ResponseType ? never : ResponseType; +// @ts-ignore type _BodyInit = unknown extends BodyInit ? never : BodyInit; // @ts-ignore type _Headers = unknown extends Headers ? never : Headers; @@ -49,4 +51,9 @@ declare const _Headers: { export const isPolyfilled = false; export { _fetch as fetch, _Request as Request, _Response as Response, _Headers as Headers }; -export type { _RequestInit as RequestInit, _RequestInfo as RequestInfo, _BodyInit as BodyInit }; +export type { + _RequestInit as RequestInit, + _RequestInfo as RequestInfo, + _ResponseType as ResponseType, + _BodyInit as BodyInit, +}; diff --git a/src/_shims/fetch.node.d.ts b/src/_shims/fetch.node.d.ts index a220f8ad6..4a1bf5051 100644 --- a/src/_shims/fetch.node.d.ts +++ b/src/_shims/fetch.node.d.ts @@ -26,6 +26,11 @@ type _RequestInit = unknown extends RequestInit ? nf.RequestInit : RequestInit; type _Response = unknown extends Response ? nf.Response : Response; // @ts-ignore type _ResponseInit = unknown extends ResponseInit ? nf.ResponseInit : ResponseInit; +type _ResponseType = + // @ts-ignore + unknown extends ResponseType ? 'basic' | 'cors' | 'default' | 'error' | 'opaque' | 'opaqueredirect' + : // @ts-ignore + ResponseType; // @ts-ignore type _BodyInit = unknown extends BodyInit ? nf.BodyInit : BodyInit; // @ts-ignore @@ -50,4 +55,9 @@ declare const _Headers: { export const isPolyfilled = false; export { _fetch as fetch, _Request as Request, _Response as Response, _Headers as Headers }; -export type { _RequestInit as RequestInit, _RequestInfo as RequestInfo, _BodyInit as BodyInit }; +export type { + _RequestInit as RequestInit, + _RequestInfo as RequestInfo, + _ResponseType as ResponseType, + _BodyInit as BodyInit, +}; diff --git a/src/core.ts b/src/core.ts index 95ba19c0c..4e0e56c3c 100644 --- a/src/core.ts +++ b/src/core.ts @@ -10,6 +10,7 @@ import { type RequestInit, type Response, } from 'openai/_shims/fetch'; +export { type Response }; import { isMultipartBody } from './uploads'; export { maybeMultipartFormRequestOptions, @@ -22,6 +23,106 @@ const MAX_RETRIES = 2; export type Fetch = (url: RequestInfo, init?: RequestInit) => Promise; +type PromiseOrValue = T | Promise; + +type APIResponseProps = { + response: Response; + options: FinalRequestOptions; + controller: AbortController; +}; + +async function defaultParseResponse(props: APIResponseProps): Promise { + const { response } = props; + if (props.options.stream) { + // Note: there is an invariant here that isn't represented in the type system + // that if you set `stream: true` the response type must also be `Stream` + return new Stream(response, props.controller) as any; + } + + const contentType = response.headers.get('content-type'); + if (contentType?.includes('application/json')) { + const json = await response.json(); + + debug('response', response.status, response.url, response.headers, json); + + return json as T; + } + + // TODO handle blob, arraybuffer, other content types, etc. + const text = await response.text(); + debug('response', response.status, response.url, response.headers, text); + return text as T; +} + +/** + * A subclass of `Promise` providing additional helper methods + * for interacting with the SDK. + */ +export class APIPromise extends Promise { + private parsedPromise: Promise | undefined; + + constructor( + private responsePromise: Promise, + private parseResponse: (props: APIResponseProps) => PromiseOrValue = defaultParseResponse, + ) { + super((resolve) => { + // this is maybe a bit weird but this has to be a no-op to not implicitly + // parse the response body; instead .then, .catch, .finally are overridden + // to parse the response + resolve(null as any); + }); + } + + _thenUnwrap(transform: (data: T) => U): APIPromise { + return new APIPromise(this.responsePromise, async (props) => transform(await this.parseResponse(props))); + } + + /** + * Gets the raw `Response` instance instead of parsing the response + * data. + * + * If you want to parse the response body but still get the `Response` + * instance, you can use {@link withResponse()}. + */ + asResponse(): Promise { + return this.responsePromise.then((p) => p.response); + } + /** + * Gets the parsed response data and the raw `Response` instance. + * + * If you just want to get the raw `Response` instance without parsing it, + * you can use {@link asResponse()}. + */ + async withResponse(): Promise<{ data: T; response: Response }> { + const [data, response] = await Promise.all([this.parse(), this.asResponse()]); + return { data, response }; + } + + private parse(): Promise { + if (!this.parsedPromise) { + this.parsedPromise = this.responsePromise.then(this.parseResponse); + } + return this.parsedPromise; + } + + override then( + onfulfilled?: ((value: T) => TResult1 | PromiseLike) | undefined | null, + onrejected?: ((reason: any) => TResult2 | PromiseLike) | undefined | null, + ): Promise { + return this.parse().then(onfulfilled, onrejected); + } + + override catch( + onrejected?: ((reason: any) => TResult | PromiseLike) | undefined | null, + ): Promise { + return this.parse().catch(onrejected); + } + + override finally(onfinally?: (() => void) | undefined | null): Promise { + return this.parse().finally(onfinally); + } +} + export abstract class APIClient { baseURL: string; maxRetries: number; @@ -85,27 +186,39 @@ export abstract class APIClient { return `stainless-node-retry-${uuid4()}`; } - get(path: string, opts?: RequestOptions): Promise { - return this.request({ method: 'get', path, ...opts }); + get(path: string, opts?: PromiseOrValue>): APIPromise { + return this.methodRequest('get', path, opts); } - post(path: string, opts?: RequestOptions): Promise { - return this.request({ method: 'post', path, ...opts }); + + post(path: string, opts?: PromiseOrValue>): APIPromise { + return this.methodRequest('post', path, opts); } - patch(path: string, opts?: RequestOptions): Promise { - return this.request({ method: 'patch', path, ...opts }); + + patch(path: string, opts?: PromiseOrValue>): APIPromise { + return this.methodRequest('patch', path, opts); } - put(path: string, opts?: RequestOptions): Promise { - return this.request({ method: 'put', path, ...opts }); + + put(path: string, opts?: PromiseOrValue>): APIPromise { + return this.methodRequest('put', path, opts); } - delete(path: string, opts?: RequestOptions): Promise { - return this.request({ method: 'delete', path, ...opts }); + + delete(path: string, opts?: PromiseOrValue>): APIPromise { + return this.methodRequest('delete', path, opts); + } + + private methodRequest( + method: HTTPMethod, + path: string, + opts?: PromiseOrValue>, + ): APIPromise { + return this.request(Promise.resolve(opts).then((opts) => ({ method, path, ...opts }))); } getAPIList = AbstractPage>( path: string, Page: new (...args: any[]) => PageClass, opts?: RequestOptions, - ): PagePromise { + ): PagePromise { return this.requestAPIList(Page, { method: 'get', path, ...opts }); } @@ -199,14 +312,27 @@ export abstract class APIClient { return APIError.generate(status, error, message, headers); } - async request( - options: FinalRequestOptions, - retriesRemaining = options.maxRetries ?? this.maxRetries, - ): Promise> { + request( + options: PromiseOrValue>, + remainingRetries: number | null = null, + ): APIPromise { + return new APIPromise(this.makeRequest(options, remainingRetries)); + } + + private async makeRequest( + optionsInput: PromiseOrValue, + retriesRemaining: number | null, + ): Promise<{ response: Response; options: FinalRequestOptions; controller: AbortController }> { + const options = await optionsInput; + if (retriesRemaining == null) { + retriesRemaining = options.maxRetries ?? this.maxRetries; + } + const { req, url, timeout } = this.buildRequest(options); + await this.prepareRequest(req, { url }); - this.debug('request', url, options, req.headers); + debug('request', url, options, req.headers); if (options.signal?.aborted) { throw new APIUserAbortError(); @@ -239,48 +365,21 @@ export abstract class APIClient { const errJSON = safeJSON(errText); const errMessage = errJSON ? undefined : errText; - this.debug('response', response.status, url, responseHeaders, errMessage); + debug('response', response.status, url, responseHeaders, errMessage); const err = this.makeStatusError(response.status, errJSON, errMessage, responseHeaders); throw err; } - if (options.stream) { - // Note: there is an invariant here that isn't represented in the type system - // that if you set `stream: true` the response type must also be `Stream` - return new Stream(response, controller) as any; - } - - const contentType = response.headers.get('content-type'); - if (contentType?.includes('application/json')) { - const json = await response.json(); - - if (typeof json === 'object' && json != null) { - /** @deprecated – we expect to change this interface in the near future. */ - Object.defineProperty(json, 'responseHeaders', { - enumerable: false, - writable: false, - value: responseHeaders, - }); - } - - this.debug('response', response.status, url, responseHeaders, json); - - return json as APIResponse; - } - - // TODO handle blob, arraybuffer, other content types, etc. - const text = response.text(); - this.debug('response', response.status, url, responseHeaders, text); - return text as Promise; + return { response, options, controller }; } requestAPIList = AbstractPage>( Page: new (...args: ConstructorParameters) => PageClass, options: FinalRequestOptions, - ): PagePromise { - const requestPromise = this.request(options) as Promise>; - return new PagePromise(this, requestPromise, options, Page); + ): PagePromise { + const request = this.makeRequest(options, null); + return new PagePromise(this, request, Page); } buildURL(path: string, query: Req | undefined): string { @@ -408,12 +507,6 @@ export abstract class APIClient { private getUserAgent(): string { return `${this.constructor.name}/JS ${VERSION}`; } - - private debug(action: string, ...args: any[]) { - if (typeof process !== 'undefined' && process.env['DEBUG'] === 'true') { - console.log(`${this.constructor.name}:DEBUG:${action}`, ...args); - } - } } export class APIResource { @@ -443,9 +536,14 @@ export abstract class AbstractPage implements AsyncIterable { #client: APIClient; protected options: FinalRequestOptions; - constructor(client: APIClient, response: APIResponse, options: FinalRequestOptions) { + protected response: Response; + protected body: unknown; + + constructor(client: APIClient, response: Response, body: unknown, options: FinalRequestOptions) { this.#client = client; this.options = options; + this.response = response; + this.body = body; } /** @@ -502,35 +600,33 @@ export abstract class AbstractPage implements AsyncIterable { } } +/** + * This subclass of Promise will resolve to an instantiated Page once the request completes. + * + * It also implements AsyncIterable to allow auto-paginating iteration on an unawaited list call, eg: + * + * for await (const item of client.items.list()) { + * console.log(item) + * } + */ export class PagePromise< PageClass extends AbstractPage, Item = ReturnType[number], > - extends Promise + extends APIPromise implements AsyncIterable { - /** - * This subclass of Promise will resolve to an instantiated Page once the request completes. - */ constructor( client: APIClient, - requestPromise: Promise>, - options: FinalRequestOptions, + request: Promise, Page: new (...args: ConstructorParameters) => PageClass, ) { - super((resolve, reject) => - requestPromise.then((response) => resolve(new Page(client, response, options))).catch(reject), + super( + request, + async (props) => new Page(client, props.response, await defaultParseResponse(props), props.options), ); } - /** - * Enable subclassing Promise. - * Ref: https://stackoverflow.com/a/60328122 - */ - static get [Symbol.species]() { - return Promise; - } - /** * Allow auto-paginating iteration on an unawaited list call, eg: * @@ -617,11 +713,6 @@ export type FinalRequestOptions | Reada path: string; }; -export type APIResponse = T & { - /** @deprecated - we plan to add a different way to access raw response information shortly. */ - responseHeaders: Headers; -}; - declare const Deno: any; declare const EdgeRuntime: any; type Arch = 'x32' | 'x64' | 'arm' | 'arm64' | `other:${string}` | 'unknown'; @@ -884,6 +975,12 @@ export function hasOwn(obj: Object, key: string): boolean { return Object.prototype.hasOwnProperty.call(obj, key); } +export function debug(action: string, ...args: any[]) { + if (typeof process !== 'undefined' && process.env['DEBUG'] === 'true') { + console.log(`OpenAI:DEBUG:${action}`, ...args); + } +} + /** * https://stackoverflow.com/a/2117523 */ diff --git a/src/index.ts b/src/index.ts index 56a361db9..0c2d1ffeb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -103,7 +103,7 @@ export class OpenAI extends Core.APIClient { if (!options.dangerouslyAllowBrowser && Core.isRunningInBrowser()) { throw new Error( - "It looks like you're running in a browser-like environment.\n\nThis is disabled by default, as it risks exposing your secret API credentials to attackers. \nIf you understand the risks and have appropriate mitigations in place,\nyou can set the `dangerouslyAllowBrowser` option to `true`, e.g.,\n\nnew OpenAI({ apiKey, dangerouslyAllowBrowser: true });\n\nhttps://help.openai.com/en/articles/5112595-best-practices-for-api-key-safety\n", + "It looks like you're running in a browser-like environment.\n\nThis is disabled by default, as it risks exposing your secret API credentials to attackers.\nIf you understand the risks and have appropriate mitigations in place,\nyou can set the `dangerouslyAllowBrowser` option to `true`, e.g.,\n\nnew OpenAI({ apiKey, dangerouslyAllowBrowser: true });\n\nhttps://help.openai.com/en/articles/5112595-best-practices-for-api-key-safety\n", ); } diff --git a/src/pagination.ts b/src/pagination.ts index 653c15498..cc6c804ca 100644 --- a/src/pagination.ts +++ b/src/pagination.ts @@ -1,6 +1,6 @@ // File generated from our OpenAPI spec by Stainless. -import { AbstractPage, APIResponse, APIClient, FinalRequestOptions } from './core'; +import { AbstractPage, Response, APIClient, FinalRequestOptions } from './core'; export interface PageResponse { data: Array; @@ -16,11 +16,11 @@ export class Page extends AbstractPage implements PageResponse data: Array; - constructor(client: APIClient, response: APIResponse>, options: FinalRequestOptions) { - super(client, response, options); + constructor(client: APIClient, response: Response, body: PageResponse, options: FinalRequestOptions) { + super(client, response, body, options); - this.object = response.object; - this.data = response.data; + this.object = body.object; + this.data = body.data; } getPaginatedItems(): Item[] { diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index e35ee5f5d..8ec06ede7 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -9,11 +9,8 @@ export class Transcriptions extends APIResource { /** * Transcribes audio into the input language. */ - async create( - body: TranscriptionCreateParams, - options?: Core.RequestOptions, - ): Promise> { - return this.post('/audio/transcriptions', await multipartFormRequestOptions({ body, ...options })); + create(body: TranscriptionCreateParams, options?: Core.RequestOptions): Core.APIPromise { + return this.post('/audio/transcriptions', multipartFormRequestOptions({ body, ...options })); } } diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index 942b8478d..f6754f6c2 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -9,11 +9,8 @@ export class Translations extends APIResource { /** * Translates audio into English. */ - async create( - body: TranslationCreateParams, - options?: Core.RequestOptions, - ): Promise> { - return this.post('/audio/translations', await multipartFormRequestOptions({ body, ...options })); + create(body: TranslationCreateParams, options?: Core.RequestOptions): Core.APIPromise { + return this.post('/audio/translations', multipartFormRequestOptions({ body, ...options })); } } diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index b2ed0239e..9a256b596 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -12,6 +12,7 @@ export namespace Chat { export import Completions = API.Completions; export import ChatCompletion = API.ChatCompletion; export import ChatCompletionChunk = API.ChatCompletionChunk; + export import ChatCompletionMessage = API.ChatCompletionMessage; export import CreateChatCompletionRequestMessage = API.CreateChatCompletionRequestMessage; export import CompletionCreateParams = API.CompletionCreateParams; export import CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 98f739159..6cb494f67 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -1,6 +1,7 @@ // File generated from our OpenAPI spec by Stainless. import * as Core from 'openai/core'; +import { APIPromise } from 'openai/core'; import { APIResource } from 'openai/resource'; import * as API from './index'; import { Stream } from 'openai/streaming'; @@ -9,23 +10,18 @@ export class Completions extends APIResource { /** * Creates a model response for the given chat conversation. */ - create( - body: CompletionCreateParamsNonStreaming, - options?: Core.RequestOptions, - ): Promise>; + create(body: CompletionCreateParamsNonStreaming, options?: Core.RequestOptions): APIPromise; create( body: CompletionCreateParamsStreaming, options?: Core.RequestOptions, - ): Promise>>; - create( - body: CompletionCreateParams, - options?: Core.RequestOptions, - ): Promise>>; + ): APIPromise>; create( body: CompletionCreateParams, options?: Core.RequestOptions, - ): Promise>> { - return this.post('/chat/completions', { body, ...options, stream: body.stream ?? false }); + ): APIPromise | APIPromise> { + return this.post('/chat/completions', { body, ...options, stream: body.stream ?? false }) as + | APIPromise + | APIPromise>; } } @@ -49,48 +45,7 @@ export namespace ChatCompletion { index: number; - message: Choice.Message; - } - - export namespace Choice { - export interface Message { - /** - * The role of the author of this message. - */ - role: 'system' | 'user' | 'assistant' | 'function'; - - /** - * The contents of the message. - */ - content?: string | null; - - /** - * The name and arguments of a function that should be called, as generated by the - * model. - */ - function_call?: Message.FunctionCall; - } - - export namespace Message { - /** - * The name and arguments of a function that should be called, as generated by the - * model. - */ - export interface FunctionCall { - /** - * The arguments to call the function with, as generated by the model in JSON - * format. Note that the model does not always generate valid JSON, and may - * hallucinate parameters not defined by your function schema. Validate the - * arguments in your code before calling your function. - */ - arguments?: string; - - /** - * The name of the function to call. - */ - name?: string; - } - } + message: ChatCompletionMessage; } export interface Usage { @@ -165,6 +120,45 @@ export namespace ChatCompletionChunk { } } +export interface ChatCompletionMessage { + /** + * The contents of the message. + */ + content: string | null; + + /** + * The role of the author of this message. + */ + role: 'system' | 'user' | 'assistant' | 'function'; + + /** + * The name and arguments of a function that should be called, as generated by the + * model. + */ + function_call?: ChatCompletionMessage.FunctionCall; +} + +export namespace ChatCompletionMessage { + /** + * The name and arguments of a function that should be called, as generated by the + * model. + */ + export interface FunctionCall { + /** + * The arguments to call the function with, as generated by the model in JSON + * format. Note that the model does not always generate valid JSON, and may + * hallucinate parameters not defined by your function schema. Validate the + * arguments in your code before calling your function. + */ + arguments: string; + + /** + * The name of the function to call. + */ + name: string; + } +} + export interface CreateChatCompletionRequestMessage { /** * The contents of the message. `content` is required for all messages, and may be @@ -404,6 +398,7 @@ export interface CompletionCreateParamsStreaming extends CompletionCreateParams export namespace Completions { export import ChatCompletion = API.ChatCompletion; export import ChatCompletionChunk = API.ChatCompletionChunk; + export import ChatCompletionMessage = API.ChatCompletionMessage; export import CreateChatCompletionRequestMessage = API.CreateChatCompletionRequestMessage; export import CompletionCreateParams = API.CompletionCreateParams; export import CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; diff --git a/src/resources/chat/index.ts b/src/resources/chat/index.ts index 726a6704b..f9232bffe 100644 --- a/src/resources/chat/index.ts +++ b/src/resources/chat/index.ts @@ -4,6 +4,7 @@ export { Chat } from './chat'; export { ChatCompletion, ChatCompletionChunk, + ChatCompletionMessage, CreateChatCompletionRequestMessage, CompletionCreateParams, CompletionCreateParamsNonStreaming, diff --git a/src/resources/completions.ts b/src/resources/completions.ts index dce847802..34e695418 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -1,6 +1,7 @@ // File generated from our OpenAPI spec by Stainless. import * as Core from 'openai/core'; +import { APIPromise } from 'openai/core'; import { APIResource } from 'openai/resource'; import * as API from './index'; import { Stream } from 'openai/streaming'; @@ -9,23 +10,18 @@ export class Completions extends APIResource { /** * Creates a completion for the provided prompt and parameters. */ - create( - body: CompletionCreateParamsNonStreaming, - options?: Core.RequestOptions, - ): Promise>; + create(body: CompletionCreateParamsNonStreaming, options?: Core.RequestOptions): APIPromise; create( body: CompletionCreateParamsStreaming, options?: Core.RequestOptions, - ): Promise>>; - create( - body: CompletionCreateParams, - options?: Core.RequestOptions, - ): Promise>>; + ): APIPromise>; create( body: CompletionCreateParams, options?: Core.RequestOptions, - ): Promise>> { - return this.post('/completions', { body, ...options, stream: body.stream ?? false }); + ): APIPromise | APIPromise> { + return this.post('/completions', { body, ...options, stream: body.stream ?? false }) as + | APIPromise + | APIPromise>; } } diff --git a/src/resources/edits.ts b/src/resources/edits.ts index 4972fccff..447d1a50f 100644 --- a/src/resources/edits.ts +++ b/src/resources/edits.ts @@ -12,7 +12,7 @@ export class Edits extends APIResource { * * https://openai.com/blog/gpt-4-api-general-availability#deprecation-of-the-edits-api */ - create(body: EditCreateParams, options?: Core.RequestOptions): Promise> { + create(body: EditCreateParams, options?: Core.RequestOptions): Core.APIPromise { return this.post('/edits', { body, ...options }); } } diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index e6f09876c..92d7ee82e 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -8,7 +8,7 @@ export class Embeddings extends APIResource { /** * Creates an embedding vector representing the input text. */ - create(body: EmbeddingCreateParams, options?: Core.RequestOptions): Promise> { + create(body: EmbeddingCreateParams, options?: Core.RequestOptions): Core.APIPromise { return this.post('/embeddings', { body, ...options }); } } diff --git a/src/resources/files.ts b/src/resources/files.ts index 676c1ac8c..832f75a44 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -13,35 +13,35 @@ export class Files extends APIResource { * organization can be up to 1 GB. Please contact us if you need to increase the * storage limit. */ - async create(body: FileCreateParams, options?: Core.RequestOptions): Promise> { - return this.post('/files', await multipartFormRequestOptions({ body, ...options })); + create(body: FileCreateParams, options?: Core.RequestOptions): Core.APIPromise { + return this.post('/files', multipartFormRequestOptions({ body, ...options })); } /** * Returns information about a specific file. */ - retrieve(fileId: string, options?: Core.RequestOptions): Promise> { + retrieve(fileId: string, options?: Core.RequestOptions): Core.APIPromise { return this.get(`/files/${fileId}`, options); } /** * Returns a list of files that belong to the user's organization. */ - list(options?: Core.RequestOptions): Core.PagePromise { + list(options?: Core.RequestOptions): Core.PagePromise { return this.getAPIList('/files', FileObjectsPage, options); } /** * Delete a file. */ - del(fileId: string, options?: Core.RequestOptions): Promise> { + del(fileId: string, options?: Core.RequestOptions): Core.APIPromise { return this.delete(`/files/${fileId}`, options); } /** * Returns the contents of the specified file */ - retrieveFileContent(fileId: string, options?: Core.RequestOptions): Promise> { + retrieveFileContent(fileId: string, options?: Core.RequestOptions): Core.APIPromise { return this.get(`/files/${fileId}/content`, { ...options, headers: { Accept: 'application/json', ...options?.headers }, diff --git a/src/resources/fine-tunes.ts b/src/resources/fine-tunes.ts index 536274d56..5695cfbed 100644 --- a/src/resources/fine-tunes.ts +++ b/src/resources/fine-tunes.ts @@ -1,6 +1,7 @@ // File generated from our OpenAPI spec by Stainless. import * as Core from 'openai/core'; +import { APIPromise } from 'openai/core'; import { APIResource } from 'openai/resource'; import * as Files from 'openai/resources/files'; import * as API from './index'; @@ -16,7 +17,7 @@ export class FineTunes extends APIResource { * * [Learn more about Fine-tuning](/docs/guides/fine-tuning) */ - create(body: FineTuneCreateParams, options?: Core.RequestOptions): Promise> { + create(body: FineTuneCreateParams, options?: Core.RequestOptions): Core.APIPromise { return this.post('/fine-tunes', { body, ...options }); } @@ -25,21 +26,21 @@ export class FineTunes extends APIResource { * * [Learn more about Fine-tuning](/docs/guides/fine-tuning) */ - retrieve(fineTuneId: string, options?: Core.RequestOptions): Promise> { + retrieve(fineTuneId: string, options?: Core.RequestOptions): Core.APIPromise { return this.get(`/fine-tunes/${fineTuneId}`, options); } /** * List your organization's fine-tuning jobs */ - list(options?: Core.RequestOptions): Core.PagePromise { + list(options?: Core.RequestOptions): Core.PagePromise { return this.getAPIList('/fine-tunes', FineTunesPage, options); } /** * Immediately cancel a fine-tune job. */ - cancel(fineTuneId: string, options?: Core.RequestOptions): Promise> { + cancel(fineTuneId: string, options?: Core.RequestOptions): Core.APIPromise { return this.post(`/fine-tunes/${fineTuneId}/cancel`, options); } @@ -50,28 +51,23 @@ export class FineTunes extends APIResource { fineTuneId: string, query?: FineTuneListEventsParamsNonStreaming, options?: Core.RequestOptions, - ): Promise>; + ): APIPromise; listEvents( fineTuneId: string, query: FineTuneListEventsParamsStreaming, options?: Core.RequestOptions, - ): Promise>>; - listEvents( - fineTuneId: string, - query?: FineTuneListEventsParams, - options?: Core.RequestOptions, - ): Promise>>; + ): APIPromise>; listEvents( fineTuneId: string, query?: FineTuneListEventsParams | undefined, options?: Core.RequestOptions, - ): Promise>> { + ): APIPromise | APIPromise> { return this.get(`/fine-tunes/${fineTuneId}/events`, { query, timeout: 86400000, ...options, stream: query?.stream ?? false, - }); + }) as APIPromise | APIPromise>; } } diff --git a/src/resources/images.ts b/src/resources/images.ts index 915a32ff4..24ecd9860 100644 --- a/src/resources/images.ts +++ b/src/resources/images.ts @@ -9,30 +9,24 @@ export class Images extends APIResource { /** * Creates a variation of a given image. */ - async createVariation( + createVariation( body: ImageCreateVariationParams, options?: Core.RequestOptions, - ): Promise> { - return this.post('/images/variations', await multipartFormRequestOptions({ body, ...options })); + ): Core.APIPromise { + return this.post('/images/variations', multipartFormRequestOptions({ body, ...options })); } /** * Creates an edited or extended image given an original image and a prompt. */ - async edit( - body: ImageEditParams, - options?: Core.RequestOptions, - ): Promise> { - return this.post('/images/edits', await multipartFormRequestOptions({ body, ...options })); + edit(body: ImageEditParams, options?: Core.RequestOptions): Core.APIPromise { + return this.post('/images/edits', multipartFormRequestOptions({ body, ...options })); } /** * Creates an image given a prompt. */ - generate( - body: ImageGenerateParams, - options?: Core.RequestOptions, - ): Promise> { + generate(body: ImageGenerateParams, options?: Core.RequestOptions): Core.APIPromise { return this.post('/images/generations', { body, ...options }); } } diff --git a/src/resources/models.ts b/src/resources/models.ts index 1be9c4c7e..49ac808ea 100644 --- a/src/resources/models.ts +++ b/src/resources/models.ts @@ -10,7 +10,7 @@ export class Models extends APIResource { * Retrieves a model instance, providing basic information about the model such as * the owner and permissioning. */ - retrieve(model: string, options?: Core.RequestOptions): Promise> { + retrieve(model: string, options?: Core.RequestOptions): Core.APIPromise { return this.get(`/models/${model}`, options); } @@ -18,14 +18,14 @@ export class Models extends APIResource { * Lists the currently available models, and provides basic information about each * one such as the owner and availability. */ - list(options?: Core.RequestOptions): Core.PagePromise { + list(options?: Core.RequestOptions): Core.PagePromise { return this.getAPIList('/models', ModelsPage, options); } /** * Delete a fine-tuned model. You must have the Owner role in your organization. */ - del(model: string, options?: Core.RequestOptions): Promise> { + del(model: string, options?: Core.RequestOptions): Core.APIPromise { return this.delete(`/models/${model}`, options); } } diff --git a/src/resources/moderations.ts b/src/resources/moderations.ts index b578500b1..53aa81d12 100644 --- a/src/resources/moderations.ts +++ b/src/resources/moderations.ts @@ -11,7 +11,7 @@ export class Moderations extends APIResource { create( body: ModerationCreateParams, options?: Core.RequestOptions, - ): Promise> { + ): Core.APIPromise { return this.post('/moderations', { body, ...options }); } } diff --git a/src/streaming.ts b/src/streaming.ts index 3455e74f3..a113df682 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -1,8 +1,6 @@ import type { Response } from 'openai/_shims/fetch'; import { ReadableStream } from 'openai/_shims/ReadableStream'; -import { APIResponse, Headers, createResponseHeaders } from './core'; - type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined; type ServerSentEvent = { @@ -11,20 +9,11 @@ type ServerSentEvent = { raw: string[]; }; -export class Stream implements AsyncIterable, APIResponse> { - /** @deprecated - please use the async iterator instead. We plan to add additional helper methods shortly. */ - response: Response; - /** @deprecated - we plan to add a different way to access raw response information shortly. */ - responseHeaders: Headers; - controller: AbortController; - +export class Stream implements AsyncIterable { private decoder: SSEDecoder; - constructor(response: Response, controller: AbortController) { - this.response = response; - this.controller = controller; + constructor(private response: Response, private controller: AbortController) { this.decoder = new SSEDecoder(); - this.responseHeaders = createResponseHeaders(response.headers); } private async *iterMessages(): AsyncGenerator { diff --git a/src/version.ts b/src/version.ts index ea4ccfb81..ddf5a8402 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.0.0-beta.8'; +export const VERSION = '4.0.0-beta.9'; diff --git a/tests/api-resources/audio/transcriptions.test.ts b/tests/api-resources/audio/transcriptions.test.ts index 49069d9c6..79ee351e6 100644 --- a/tests/api-resources/audio/transcriptions.test.ts +++ b/tests/api-resources/audio/transcriptions.test.ts @@ -1,16 +1,24 @@ // File generated from our OpenAPI spec by Stainless. import OpenAI, { toFile } from 'openai'; +import { Response } from 'node-fetch'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource transcriptions', () => { // Prism doesn't support multipart/form-data test.skip('create: only required params', async () => { - const response = await openai.audio.transcriptions.create({ + const responsePromise = openai.audio.transcriptions.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), model: 'whisper-1', }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); // Prism doesn't support multipart/form-data diff --git a/tests/api-resources/audio/translations.test.ts b/tests/api-resources/audio/translations.test.ts index 908bc596e..4f6389d2e 100644 --- a/tests/api-resources/audio/translations.test.ts +++ b/tests/api-resources/audio/translations.test.ts @@ -1,16 +1,24 @@ // File generated from our OpenAPI spec by Stainless. import OpenAI, { toFile } from 'openai'; +import { Response } from 'node-fetch'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource translations', () => { // Prism doesn't support multipart/form-data test.skip('create: only required params', async () => { - const response = await openai.audio.translations.create({ + const responsePromise = openai.audio.translations.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), model: 'whisper-1', }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); // Prism doesn't support multipart/form-data diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index bdf82568e..1c8a02fd9 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -1,15 +1,23 @@ // File generated from our OpenAPI spec by Stainless. import OpenAI from 'openai'; +import { Response } from 'node-fetch'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource completions', () => { test('create: only required params', async () => { - const response = await openai.chat.completions.create({ + const responsePromise = openai.chat.completions.create({ messages: [{ role: 'system', content: 'string' }], model: 'gpt-3.5-turbo', }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); test('create: required and optional params', async () => { diff --git a/tests/api-resources/completions.test.ts b/tests/api-resources/completions.test.ts index 0067223fb..4f4e4cdc3 100644 --- a/tests/api-resources/completions.test.ts +++ b/tests/api-resources/completions.test.ts @@ -1,12 +1,20 @@ // File generated from our OpenAPI spec by Stainless. import OpenAI from 'openai'; +import { Response } from 'node-fetch'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource completions', () => { test('create: only required params', async () => { - const response = await openai.completions.create({ model: 'string', prompt: 'This is a test.' }); + const responsePromise = openai.completions.create({ model: 'string', prompt: 'This is a test.' }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); test('create: required and optional params', async () => { diff --git a/tests/api-resources/edits.test.ts b/tests/api-resources/edits.test.ts index c39e53fac..7b23c1ca5 100644 --- a/tests/api-resources/edits.test.ts +++ b/tests/api-resources/edits.test.ts @@ -1,15 +1,23 @@ // File generated from our OpenAPI spec by Stainless. import OpenAI from 'openai'; +import { Response } from 'node-fetch'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource edits', () => { test('create: only required params', async () => { - const response = await openai.edits.create({ + const responsePromise = openai.edits.create({ instruction: 'Fix the spelling mistakes.', model: 'text-davinci-edit-001', }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); test('create: required and optional params', async () => { diff --git a/tests/api-resources/embeddings.test.ts b/tests/api-resources/embeddings.test.ts index 6fc8b88dc..cb8b8f9e0 100644 --- a/tests/api-resources/embeddings.test.ts +++ b/tests/api-resources/embeddings.test.ts @@ -1,15 +1,23 @@ // File generated from our OpenAPI spec by Stainless. import OpenAI from 'openai'; +import { Response } from 'node-fetch'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource embeddings', () => { test('create: only required params', async () => { - const response = await openai.embeddings.create({ + const responsePromise = openai.embeddings.create({ input: 'The quick brown fox jumped over the lazy dog', model: 'text-embedding-ada-002', }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); test('create: required and optional params', async () => { diff --git a/tests/api-resources/files.test.ts b/tests/api-resources/files.test.ts index dca76e138..a735727b5 100644 --- a/tests/api-resources/files.test.ts +++ b/tests/api-resources/files.test.ts @@ -1,16 +1,24 @@ // File generated from our OpenAPI spec by Stainless. import OpenAI, { toFile } from 'openai'; +import { Response } from 'node-fetch'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource files', () => { // Prism tests are broken test.skip('create: only required params', async () => { - const response = await openai.files.create({ + const responsePromise = openai.files.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), purpose: 'string', }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); // Prism tests are broken @@ -22,7 +30,14 @@ describe('resource files', () => { }); test('retrieve', async () => { - const response = await openai.files.retrieve('string'); + const responsePromise = openai.files.retrieve('string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); test('retrieve: request options instead of params are passed correctly', async () => { @@ -33,7 +48,14 @@ describe('resource files', () => { }); test('list', async () => { - const response = await openai.files.list(); + const responsePromise = openai.files.list(); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); test('list: request options instead of params are passed correctly', async () => { @@ -44,7 +66,14 @@ describe('resource files', () => { }); test('del', async () => { - const response = await openai.files.del('string'); + const responsePromise = openai.files.del('string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); test('del: request options instead of params are passed correctly', async () => { @@ -56,7 +85,14 @@ describe('resource files', () => { // Prism tests are broken test.skip('retrieveFileContent', async () => { - const response = await openai.files.retrieveFileContent('string'); + const responsePromise = openai.files.retrieveFileContent('string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); // Prism tests are broken diff --git a/tests/api-resources/fine-tunes.test.ts b/tests/api-resources/fine-tunes.test.ts index 1010c798f..78d9b87bd 100644 --- a/tests/api-resources/fine-tunes.test.ts +++ b/tests/api-resources/fine-tunes.test.ts @@ -1,12 +1,20 @@ // File generated from our OpenAPI spec by Stainless. import OpenAI from 'openai'; +import { Response } from 'node-fetch'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource fineTunes', () => { test('create: only required params', async () => { - const response = await openai.fineTunes.create({ training_file: 'file-ajSREls59WBbvgSzJSVWxMCB' }); + const responsePromise = openai.fineTunes.create({ training_file: 'file-ajSREls59WBbvgSzJSVWxMCB' }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); test('create: required and optional params', async () => { @@ -27,7 +35,14 @@ describe('resource fineTunes', () => { }); test('retrieve', async () => { - const response = await openai.fineTunes.retrieve('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); + const responsePromise = openai.fineTunes.retrieve('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); test('retrieve: request options instead of params are passed correctly', async () => { @@ -38,7 +53,14 @@ describe('resource fineTunes', () => { }); test('list', async () => { - const response = await openai.fineTunes.list(); + const responsePromise = openai.fineTunes.list(); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); test('list: request options instead of params are passed correctly', async () => { @@ -49,7 +71,14 @@ describe('resource fineTunes', () => { }); test('cancel', async () => { - const response = await openai.fineTunes.cancel('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); + const responsePromise = openai.fineTunes.cancel('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); test('cancel: request options instead of params are passed correctly', async () => { @@ -61,7 +90,14 @@ describe('resource fineTunes', () => { // Prism chokes on this test.skip('listEvents', async () => { - const response = await openai.fineTunes.listEvents('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); + const responsePromise = openai.fineTunes.listEvents('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); // Prism chokes on this diff --git a/tests/api-resources/images.test.ts b/tests/api-resources/images.test.ts index d0af10a60..c10b19aef 100644 --- a/tests/api-resources/images.test.ts +++ b/tests/api-resources/images.test.ts @@ -1,15 +1,23 @@ // File generated from our OpenAPI spec by Stainless. import OpenAI, { toFile } from 'openai'; +import { Response } from 'node-fetch'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource images', () => { // Prism doesn't support multipart/form-data test.skip('createVariation: only required params', async () => { - const response = await openai.images.createVariation({ + const responsePromise = openai.images.createVariation({ image: await toFile(Buffer.from('# my file contents'), 'README.md'), }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); // Prism doesn't support multipart/form-data @@ -25,10 +33,17 @@ describe('resource images', () => { // Prism doesn't support multipart/form-data test.skip('edit: only required params', async () => { - const response = await openai.images.edit({ + const responsePromise = openai.images.edit({ image: await toFile(Buffer.from('# my file contents'), 'README.md'), prompt: 'A cute baby sea otter wearing a beret', }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); // Prism doesn't support multipart/form-data @@ -46,7 +61,14 @@ describe('resource images', () => { // Prism doesn't support multipart/form-data test.skip('generate: only required params', async () => { - const response = await openai.images.generate({ prompt: 'A cute baby sea otter' }); + const responsePromise = openai.images.generate({ prompt: 'A cute baby sea otter' }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); // Prism doesn't support multipart/form-data diff --git a/tests/api-resources/models.test.ts b/tests/api-resources/models.test.ts index a89d2543c..b468b1a06 100644 --- a/tests/api-resources/models.test.ts +++ b/tests/api-resources/models.test.ts @@ -1,12 +1,20 @@ // File generated from our OpenAPI spec by Stainless. import OpenAI from 'openai'; +import { Response } from 'node-fetch'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource models', () => { test('retrieve', async () => { - const response = await openai.models.retrieve('text-davinci-001'); + const responsePromise = openai.models.retrieve('text-davinci-001'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); test('retrieve: request options instead of params are passed correctly', async () => { @@ -17,7 +25,14 @@ describe('resource models', () => { }); test('list', async () => { - const response = await openai.models.list(); + const responsePromise = openai.models.list(); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); test('list: request options instead of params are passed correctly', async () => { @@ -28,7 +43,14 @@ describe('resource models', () => { }); test('del', async () => { - const response = await openai.models.del('curie:ft-acmeco-2021-03-03-21-44-20'); + const responsePromise = openai.models.del('curie:ft-acmeco-2021-03-03-21-44-20'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); test('del: request options instead of params are passed correctly', async () => { diff --git a/tests/api-resources/moderations.test.ts b/tests/api-resources/moderations.test.ts index ca7ab18c1..910e8e5a2 100644 --- a/tests/api-resources/moderations.test.ts +++ b/tests/api-resources/moderations.test.ts @@ -1,12 +1,20 @@ // File generated from our OpenAPI spec by Stainless. import OpenAI from 'openai'; +import { Response } from 'node-fetch'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource moderations', () => { test('create: only required params', async () => { - const response = await openai.moderations.create({ input: 'I want to kill them.' }); + const responsePromise = openai.moderations.create({ input: 'I want to kill them.' }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); }); test('create: required and optional params', async () => { diff --git a/yarn.lock b/yarn.lock index 9c92e7bac..6d0613949 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,6 +2,11 @@ # yarn lockfile v1 +"@aashutoshrathi/word-wrap@^1.2.3": + version "1.2.6" + resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" + integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== + "@ampproject/remapping@^2.1.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" @@ -343,21 +348,38 @@ dependencies: "@cspotcode/source-map-consumer" "0.8.0" -"@eslint/eslintrc@^1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.0.tgz#29f92c30bb3e771e4a2048c95fa6855392dfac4f" - integrity sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw== +"@eslint-community/eslint-utils@^4.2.0": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" + integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== + dependencies: + eslint-visitor-keys "^3.3.0" + +"@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.6.1": + version "4.6.2" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.6.2.tgz#1816b5f6948029c5eaacb0703b850ee0cb37d8f8" + integrity sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw== + +"@eslint/eslintrc@^2.1.1": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.1.tgz#18d635e24ad35f7276e8a49d135c7d3ca6a46f93" + integrity sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA== dependencies: ajv "^6.12.4" debug "^4.3.2" - espree "^9.3.2" - globals "^13.15.0" + espree "^9.6.0" + globals "^13.19.0" ignore "^5.2.0" import-fresh "^3.2.1" js-yaml "^4.1.0" minimatch "^3.1.2" strip-json-comments "^3.1.1" +"@eslint/js@^8.46.0": + version "8.46.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.46.0.tgz#3f7802972e8b6fe3f88ed1aabc74ec596c456db6" + integrity sha512-a8TLtmPi8xzPkCbp/OGFUo5yhRkHM2Ko9kOWP4znJr0WAhWyThaw3PnwX4vOTWOAMsV2uRt32PPDcEz63esSaA== + "@glimmer/env@0.1.7": version "0.1.7" resolved "https://registry.yarnpkg.com/@glimmer/env/-/env-0.1.7.tgz#fd2d2b55a9029c6b37a6c935e8c8871ae70dfa07" @@ -394,19 +416,19 @@ resolved "https://registry.yarnpkg.com/@handlebars/parser/-/parser-2.0.0.tgz#5e8b7298f31ff8f7b260e6b7363c7e9ceed7d9c5" integrity sha512-EP9uEDZv/L5Qh9IWuMUGJRfwhXJ4h1dqKTT4/3+tY0eu7sPis7xh23j61SYUnNF4vqCQvvUXpDo9Bh/+q1zASA== -"@humanwhocodes/config-array@^0.10.4": - version "0.10.4" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.10.4.tgz#01e7366e57d2ad104feea63e72248f22015c520c" - integrity sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw== +"@humanwhocodes/config-array@^0.11.10": + version "0.11.10" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2" + integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ== dependencies: "@humanwhocodes/object-schema" "^1.2.1" debug "^4.1.1" - minimatch "^3.0.4" + minimatch "^3.0.5" -"@humanwhocodes/gitignore-to-minimatch@^1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz#316b0a63b91c10e53f242efb4ace5c3b34e8728d" - integrity sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA== +"@humanwhocodes/module-importer@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" + integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== "@humanwhocodes/object-schema@^1.2.1": version "1.2.1" @@ -688,7 +710,7 @@ resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== -"@nodelib/fs.walk@^1.2.3": +"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": version "1.2.8" resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== @@ -818,14 +840,9 @@ pretty-format "^29.0.0" "@types/json-schema@^7.0.9": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" - integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== - -"@types/json5@^0.0.29": - version "0.0.29" - resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" - integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== + version "7.0.12" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb" + integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA== "@types/node-fetch@^2.6.4": version "2.6.4" @@ -855,6 +872,11 @@ resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.6.0.tgz#efcbd41937f9ae7434c714ab698604822d890759" integrity sha512-G/AdOadiZhnJp0jXCaBQU449W2h716OW/EoXeYkCytxKL06X1WCXB4DZpp8TpZ8eyIJVS1cw4lrlkkSYU21cDw== +"@types/semver@^7.3.12": + version "7.5.0" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.0.tgz#591c1ce3a702c45ee15f47a42ade72c2fd78978a" + integrity sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw== + "@types/stack-utils@^2.0.0": version "2.0.1" resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" @@ -878,69 +900,58 @@ "@types/yargs-parser" "*" "@typescript-eslint/eslint-plugin@^5.33.0": - version "5.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.33.0.tgz#059798888720ec52ffa96c5f868e31a8f70fa3ec" - integrity sha512-jHvZNSW2WZ31OPJ3enhLrEKvAZNyAFWZ6rx9tUwaessTc4sx9KmgMNhVcqVAl1ETnT5rU5fpXTLmY9YvC1DCNg== - dependencies: - "@typescript-eslint/scope-manager" "5.33.0" - "@typescript-eslint/type-utils" "5.33.0" - "@typescript-eslint/utils" "5.33.0" + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz#aeef0328d172b9e37d9bab6dbc13b87ed88977db" + integrity sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag== + dependencies: + "@eslint-community/regexpp" "^4.4.0" + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/type-utils" "5.62.0" + "@typescript-eslint/utils" "5.62.0" debug "^4.3.4" - functional-red-black-tree "^1.0.1" + graphemer "^1.4.0" ignore "^5.2.0" - regexpp "^3.2.0" + natural-compare-lite "^1.4.0" semver "^7.3.7" tsutils "^3.21.0" "@typescript-eslint/parser@^5.33.0": - version "5.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.33.0.tgz#26ec3235b74f0667414613727cb98f9b69dc5383" - integrity sha512-cgM5cJrWmrDV2KpvlcSkelTBASAs1mgqq+IUGKJvFxWrapHpaRy5EXPQz9YaKF3nZ8KY18ILTiVpUtbIac86/w== + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.62.0.tgz#1b63d082d849a2fcae8a569248fbe2ee1b8a56c7" + integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA== dependencies: - "@typescript-eslint/scope-manager" "5.33.0" - "@typescript-eslint/types" "5.33.0" - "@typescript-eslint/typescript-estree" "5.33.0" + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/typescript-estree" "5.62.0" debug "^4.3.4" -"@typescript-eslint/scope-manager@5.33.0": - version "5.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.33.0.tgz#509d7fa540a2c58f66bdcfcf278a3fa79002e18d" - integrity sha512-/Jta8yMNpXYpRDl8EwF/M8It2A9sFJTubDo0ATZefGXmOqlaBffEw0ZbkbQ7TNDK6q55NPHFshGBPAZvZkE8Pw== +"@typescript-eslint/scope-manager@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz#d9457ccc6a0b8d6b37d0eb252a23022478c5460c" + integrity sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w== dependencies: - "@typescript-eslint/types" "5.33.0" - "@typescript-eslint/visitor-keys" "5.33.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" -"@typescript-eslint/type-utils@5.33.0": - version "5.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.33.0.tgz#92ad1fba973c078d23767ce2d8d5a601baaa9338" - integrity sha512-2zB8uEn7hEH2pBeyk3NpzX1p3lF9dKrEbnXq1F7YkpZ6hlyqb2yZujqgRGqXgRBTHWIUG3NGx/WeZk224UKlIA== +"@typescript-eslint/type-utils@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz#286f0389c41681376cdad96b309cedd17d70346a" + integrity sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew== dependencies: - "@typescript-eslint/utils" "5.33.0" + "@typescript-eslint/typescript-estree" "5.62.0" + "@typescript-eslint/utils" "5.62.0" debug "^4.3.4" tsutils "^3.21.0" -"@typescript-eslint/types@5.33.0": - version "5.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.33.0.tgz#d41c584831805554b063791338b0220b613a275b" - integrity sha512-nIMt96JngB4MYFYXpZ/3ZNU4GWPNdBbcB5w2rDOCpXOVUkhtNlG2mmm8uXhubhidRZdwMaMBap7Uk8SZMU/ppw== - "@typescript-eslint/types@5.45.0": version "5.45.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.45.0.tgz#794760b9037ee4154c09549ef5a96599621109c5" integrity sha512-QQij+u/vgskA66azc9dCmx+rev79PzX8uDHpsqSjEFtfF2gBUTRCpvYMh2gw2ghkJabNkPlSUCimsyBEQZd1DA== -"@typescript-eslint/typescript-estree@5.33.0": - version "5.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.33.0.tgz#02d9c9ade6f4897c09e3508c27de53ad6bfa54cf" - integrity sha512-tqq3MRLlggkJKJUrzM6wltk8NckKyyorCSGMq4eVkyL5sDYzJJcMgZATqmF8fLdsWrW7OjjIZ1m9v81vKcaqwQ== - dependencies: - "@typescript-eslint/types" "5.33.0" - "@typescript-eslint/visitor-keys" "5.33.0" - debug "^4.3.4" - globby "^11.1.0" - is-glob "^4.0.3" - semver "^7.3.7" - tsutils "^3.21.0" +"@typescript-eslint/types@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f" + integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ== "@typescript-eslint/typescript-estree@5.45.0": version "5.45.0" @@ -955,25 +966,32 @@ semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/utils@5.33.0": - version "5.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.33.0.tgz#46797461ce3146e21c095d79518cc0f8ec574038" - integrity sha512-JxOAnXt9oZjXLIiXb5ZIcZXiwVHCkqZgof0O8KPgz7C7y0HS42gi75PdPlqh1Tf109M0fyUw45Ao6JLo7S5AHw== +"@typescript-eslint/typescript-estree@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b" + integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA== dependencies: - "@types/json-schema" "^7.0.9" - "@typescript-eslint/scope-manager" "5.33.0" - "@typescript-eslint/types" "5.33.0" - "@typescript-eslint/typescript-estree" "5.33.0" - eslint-scope "^5.1.1" - eslint-utils "^3.0.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" + semver "^7.3.7" + tsutils "^3.21.0" -"@typescript-eslint/visitor-keys@5.33.0": - version "5.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.33.0.tgz#fbcbb074e460c11046e067bc3384b5d66b555484" - integrity sha512-/XsqCzD4t+Y9p5wd9HZiptuGKBlaZO5showwqODii5C0nZawxWLF+Q6k5wYHBrQv96h6GYKyqqMHCSTqta8Kiw== +"@typescript-eslint/utils@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.62.0.tgz#141e809c71636e4a75daa39faed2fb5f4b10df86" + integrity sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ== dependencies: - "@typescript-eslint/types" "5.33.0" - eslint-visitor-keys "^3.3.0" + "@eslint-community/eslint-utils" "^4.2.0" + "@types/json-schema" "^7.0.9" + "@types/semver" "^7.3.12" + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/typescript-estree" "5.62.0" + eslint-scope "^5.1.1" + semver "^7.3.7" "@typescript-eslint/visitor-keys@5.45.0": version "5.45.0" @@ -983,9 +1001,16 @@ "@typescript-eslint/types" "5.45.0" eslint-visitor-keys "^3.3.0" +"@typescript-eslint/visitor-keys@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e" + integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw== + dependencies: + "@typescript-eslint/types" "5.62.0" + eslint-visitor-keys "^3.3.0" + "openai@link:.": version "0.0.0" - uid "" abort-controller@^3.0.0: version "3.0.0" @@ -1019,6 +1044,11 @@ acorn@^8.8.0: resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8" integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== +acorn@^8.9.0: + version "8.10.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5" + integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== + agentkeepalive@^4.2.1: version "4.2.1" resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.2.1.tgz#a7975cbb9f83b367f06c90cc51ff28fe7d499717" @@ -1036,7 +1066,7 @@ aggregate-error@^3.0.0: clean-stack "^2.0.0" indent-string "^4.0.0" -ajv@^6.10.0, ajv@^6.12.4: +ajv@^6.12.4: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== @@ -1474,7 +1504,7 @@ commondir@^1.0.1: concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== convert-source-map@^1.6.0, convert-source-map@^1.7.0: version "1.8.0" @@ -1703,75 +1733,61 @@ eslint-scope@^5.1.1: esrecurse "^4.3.0" estraverse "^4.1.1" -eslint-scope@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" - integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== +eslint-scope@^7.2.2: + version "7.2.2" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" + integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== dependencies: esrecurse "^4.3.0" estraverse "^5.2.0" -eslint-utils@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" - integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== - dependencies: - eslint-visitor-keys "^2.0.0" - -eslint-visitor-keys@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" - integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== - -eslint-visitor-keys@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" - integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== +eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.2: + version "3.4.2" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.2.tgz#8c2095440eca8c933bedcadf16fefa44dbe9ba5f" + integrity sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw== eslint@^8.22.0: - version "8.22.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.22.0.tgz#78fcb044196dfa7eef30a9d65944f6f980402c48" - integrity sha512-ci4t0sz6vSRKdmkOGmprBo6fmI4PrphDFMy5JEq/fNS0gQkJM3rLmrqcp8ipMcdobH3KtUP40KniAE9W19S4wA== - dependencies: - "@eslint/eslintrc" "^1.3.0" - "@humanwhocodes/config-array" "^0.10.4" - "@humanwhocodes/gitignore-to-minimatch" "^1.0.2" - ajv "^6.10.0" + version "8.46.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.46.0.tgz#a06a0ff6974e53e643acc42d1dcf2e7f797b3552" + integrity sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg== + dependencies: + "@eslint-community/eslint-utils" "^4.2.0" + "@eslint-community/regexpp" "^4.6.1" + "@eslint/eslintrc" "^2.1.1" + "@eslint/js" "^8.46.0" + "@humanwhocodes/config-array" "^0.11.10" + "@humanwhocodes/module-importer" "^1.0.1" + "@nodelib/fs.walk" "^1.2.8" + ajv "^6.12.4" chalk "^4.0.0" cross-spawn "^7.0.2" debug "^4.3.2" doctrine "^3.0.0" escape-string-regexp "^4.0.0" - eslint-scope "^7.1.1" - eslint-utils "^3.0.0" - eslint-visitor-keys "^3.3.0" - espree "^9.3.3" - esquery "^1.4.0" + eslint-scope "^7.2.2" + eslint-visitor-keys "^3.4.2" + espree "^9.6.1" + esquery "^1.4.2" esutils "^2.0.2" fast-deep-equal "^3.1.3" file-entry-cache "^6.0.1" find-up "^5.0.0" - functional-red-black-tree "^1.0.1" - glob-parent "^6.0.1" - globals "^13.15.0" - globby "^11.1.0" - grapheme-splitter "^1.0.4" + glob-parent "^6.0.2" + globals "^13.19.0" + graphemer "^1.4.0" ignore "^5.2.0" - import-fresh "^3.0.0" imurmurhash "^0.1.4" is-glob "^4.0.0" + is-path-inside "^3.0.3" js-yaml "^4.1.0" json-stable-stringify-without-jsonify "^1.0.1" levn "^0.4.1" lodash.merge "^4.6.2" minimatch "^3.1.2" natural-compare "^1.4.0" - optionator "^0.9.1" - regexpp "^3.2.0" + optionator "^0.9.3" strip-ansi "^6.0.1" - strip-json-comments "^3.1.0" text-table "^0.2.0" - v8-compile-cache "^2.0.3" espree@9.4.1: version "9.4.1" @@ -1782,24 +1798,24 @@ espree@9.4.1: acorn-jsx "^5.3.2" eslint-visitor-keys "^3.3.0" -espree@^9.3.2, espree@^9.3.3: - version "9.3.3" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.3.tgz#2dd37c4162bb05f433ad3c1a52ddf8a49dc08e9d" - integrity sha512-ORs1Rt/uQTqUKjDdGCyrtYxbazf5umATSf/K4qxjmZHORR6HJk+2s/2Pqe+Kk49HHINC/xNIrGfgh8sZcll0ng== +espree@^9.6.0, espree@^9.6.1: + version "9.6.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" + integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== dependencies: - acorn "^8.8.0" + acorn "^8.9.0" acorn-jsx "^5.3.2" - eslint-visitor-keys "^3.3.0" + eslint-visitor-keys "^3.4.1" esprima@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== -esquery@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" - integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== +esquery@^1.4.2: + version "1.5.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" + integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== dependencies: estraverse "^5.1.0" @@ -1883,9 +1899,9 @@ fast-glob@3.2.12, fast-glob@^3.2.12: micromatch "^4.0.4" fast-glob@^3.2.9: - version "3.2.11" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9" - integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew== + version "3.3.1" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.1.tgz#784b4e897340f3dbbef17413b3f11acf03c874c4" + integrity sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg== dependencies: "@nodelib/fs.stat" "^2.0.2" "@nodelib/fs.walk" "^1.2.3" @@ -1904,9 +1920,9 @@ fast-levenshtein@^2.0.6: integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== fastq@^1.6.0: - version "1.13.0" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" - integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== + version "1.15.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" + integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== dependencies: reusify "^1.0.4" @@ -1970,9 +1986,9 @@ flat-cache@^3.0.4: rimraf "^3.0.2" flatted@^3.1.0: - version "3.2.6" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.6.tgz#022e9218c637f9f3fc9c35ab9c9193f05add60b2" - integrity sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ== + version "3.2.7" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" + integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== flatten@^1.0.2: version "1.0.3" @@ -2009,7 +2025,7 @@ formdata-node@^4.3.2: fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== fsevents@^2.3.2, fsevents@~2.3.2: version "2.3.2" @@ -2021,11 +2037,6 @@ function-bind@^1.1.1: resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== -functional-red-black-tree@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" - integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== - gensync@^1.0.0-beta.2: version "1.0.0-beta.2" resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" @@ -2058,14 +2069,26 @@ glob-parent@^5.1.2, glob-parent@~5.1.2: dependencies: is-glob "^4.0.1" -glob-parent@^6.0.1: +glob-parent@^6.0.2: version "6.0.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== dependencies: is-glob "^4.0.3" -glob@^7.1.3, glob@^7.1.4: +glob@^7.1.3: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.1.4: version "7.2.0" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== @@ -2082,10 +2105,10 @@ globals@^11.1.0: resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== -globals@^13.15.0: - version "13.17.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4" - integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw== +globals@^13.19.0: + version "13.20.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" + integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== dependencies: type-fest "^0.20.2" @@ -2106,10 +2129,10 @@ graceful-fs@^4.2.9: resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== -grapheme-splitter@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" - integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== +graphemer@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== graphql@15.6.1: version "15.6.1" @@ -2170,12 +2193,17 @@ humanize-ms@^1.2.1: dependencies: ms "^2.0.0" -ignore@5.2.0, ignore@^5.2.0: +ignore@5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== -import-fresh@^3.0.0, import-fresh@^3.2.1: +ignore@^5.2.0: + version "5.2.4" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" + integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== + +import-fresh@^3.2.1: version "3.3.0" resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== @@ -2194,7 +2222,7 @@ import-local@^3.0.2: imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== indent-string@^4.0.0: version "4.0.0" @@ -2209,7 +2237,7 @@ indexes-of@^1.0.1: inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== dependencies: once "^1.3.0" wrappy "1" @@ -2310,6 +2338,11 @@ is-number@^7.0.0: resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== +is-path-inside@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== + is-plain-obj@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" @@ -2333,7 +2366,7 @@ is-word-character@^1.0.0: isexe@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: version "3.2.0" @@ -2790,14 +2823,7 @@ json5@2.2.1, json5@^2.2.1: resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== -json5@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" - integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== - dependencies: - minimist "^1.2.0" - -json5@^2.2.3: +json5@^2.2.2, json5@^2.2.3: version "2.2.3" resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== @@ -2977,7 +3003,7 @@ mimic-fn@^4.0.0: resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== -minimatch@^3.0.4, minimatch@^3.1.2: +minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== @@ -2991,7 +3017,7 @@ minimatch@^7.4.3: dependencies: brace-expansion "^2.0.1" -minimist@1.2.6, minimist@^1.2.0, minimist@^1.2.6: +minimist@1.2.6, minimist@^1.2.6: version "1.2.6" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== @@ -3021,10 +3047,15 @@ n-readlines@1.0.1: resolved "https://registry.yarnpkg.com/n-readlines/-/n-readlines-1.0.1.tgz#bbb7364d38bc31a170a199f986fcacfa76b95f6e" integrity sha512-z4SyAIVgMy7CkgsoNw7YVz40v0g4+WWvvqy8+ZdHrCtgevcEO758WQyrYcw3XPxcLxF+//RszTz/rO48nzD0wQ== +natural-compare-lite@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4" + integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g== + natural-compare@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== node-domexception@1.0.0: version "1.0.0" @@ -3063,7 +3094,7 @@ npm-run-path@^4.0.1: once@^1.3.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== dependencies: wrappy "1" @@ -3074,17 +3105,17 @@ onetime@^5.1.2: dependencies: mimic-fn "^2.1.0" -optionator@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" - integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== +optionator@^0.9.3: + version "0.9.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" + integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== dependencies: + "@aashutoshrathi/word-wrap" "^1.2.3" deep-is "^0.1.3" fast-levenshtein "^2.0.6" levn "^0.4.1" prelude-ls "^1.2.1" type-check "^0.4.0" - word-wrap "^1.2.3" outdent@0.8.0: version "0.8.0" @@ -3189,7 +3220,7 @@ path-exists@^4.0.0: path-is-absolute@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== path-key@^3.0.0, path-key@^3.1.0: version "3.1.1" @@ -3395,9 +3426,9 @@ pseudomap@^1.0.2: integrity sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ== punycode@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + version "2.3.0" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" + integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== pure-rand@^6.0.0: version "6.0.2" @@ -3442,11 +3473,6 @@ regexp-util@1.2.2, regexp-util@^1.2.0, regexp-util@^1.2.1: dependencies: tslib "^1.9.0" -regexpp@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" - integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== - remark-footnotes@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/remark-footnotes/-/remark-footnotes-2.0.0.tgz#9001c4c2ffebba55695d2dd80ffb8b82f7e6303f" @@ -3568,7 +3594,7 @@ semver-compare@^1.0.0: resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" integrity sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow== -semver@7.3.7, semver@7.x, semver@^7.3.5, semver@^7.3.7: +semver@7.3.7, semver@7.x, semver@^7.3.5: version "7.3.7" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== @@ -3585,6 +3611,13 @@ semver@^6.0.0, semver@^6.3.0: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== +semver@^7.3.7: + version "7.5.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" + integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== + dependencies: + lru-cache "^6.0.0" + shebang-command@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" @@ -3721,7 +3754,7 @@ strip-final-newline@^2.0.0: resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== -strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: +strip-json-comments@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== @@ -3877,13 +3910,12 @@ tsc-multi@^1.1.0: tslib "^2.5.0" yargs "^17.7.1" -tsconfig-paths@^3.12.0: - version "3.14.1" - resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" - integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== +tsconfig-paths@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz#ef78e19039133446d244beac0fd6a1632e2d107c" + integrity sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg== dependencies: - "@types/json5" "^0.0.29" - json5 "^1.0.1" + json5 "^2.2.2" minimist "^1.2.6" strip-bom "^3.0.0" @@ -3931,11 +3963,16 @@ type-fest@^0.21.3: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== -typescript@4.9.3, typescript@^4.8.2: +typescript@4.9.3: version "4.9.3" resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.3.tgz#3aea307c1746b8c384435d8ac36b8a2e580d85db" integrity sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA== +typescript@^4.8.2: + version "4.9.5" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" + integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== + unherit@^1.0.4: version "1.1.3" resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.3.tgz#6c9b503f2b41b262330c80e91c8614abdaa69c22" @@ -4028,11 +4065,6 @@ v8-compile-cache-lib@^3.0.0: resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.0.tgz#0582bcb1c74f3a2ee46487ceecf372e46bce53e8" integrity sha512-mpSYqfsFvASnSn5qMiwrr4VKfumbPyONLCOPmsR3A6pTY/r0+tSaVbgPWSAIuzbk3lCTa+FForeTiO+wBQGkjA== -v8-compile-cache@^2.0.3: - version "2.3.0" - resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" - integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== - v8-to-istanbul@^9.0.1: version "9.1.0" resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz#1b83ed4e397f58c85c266a570fc2558b5feb9265" @@ -4113,11 +4145,6 @@ which@^2.0.1: dependencies: isexe "^2.0.0" -word-wrap@^1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" @@ -4130,7 +4157,7 @@ wrap-ansi@^7.0.0: wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== write-file-atomic@^4.0.2: version "4.0.2" From 05ff44f935e6409702b2a9ab6537607e2f76d8f7 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Sat, 12 Aug 2023 11:53:39 -0700 Subject: [PATCH 025/725] v4.0.0-beta.10 --- README.md | 2 +- package.json | 2 +- src/streaming.ts | 33 --------------------------------- src/version.ts | 2 +- 4 files changed, 3 insertions(+), 36 deletions(-) diff --git a/README.md b/README.md index 3f939d5c2..8bd3c7abd 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ async function main() { stream: true, }); for await (const part of stream) { - process.stdout.write(part.choices[0]?.text || ''); + process.stdout.write(part.choices[0]?.delta?.content || ''); } } diff --git a/package.json b/package.json index 4620149c9..acaf40d4c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.0.0-beta.9", + "version": "4.0.0-beta.10", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/streaming.ts b/src/streaming.ts index a113df682..c654f3b64 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -1,5 +1,4 @@ import type { Response } from 'openai/_shims/fetch'; -import { ReadableStream } from 'openai/_shims/ReadableStream'; type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined; @@ -68,38 +67,6 @@ export class Stream implements AsyncIterable { if (!done) this.controller.abort(); } } - - toReadableStream(): ReadableStream { - const self = this; - let iter: AsyncIterator; - const encoder = new TextEncoder(); - - return new ReadableStream({ - async start() { - iter = self[Symbol.asyncIterator](); - }, - async pull(ctrl) { - try { - const { value, done } = await iter.next(); - if (done) return ctrl.close(); - - const str = - typeof value === 'string' ? value : ( - // Add a newline after JSON to make it easier to parse newline-separated JSON on the frontend. - JSON.stringify(value) + '\n' - ); - const bytes = encoder.encode(str); - - ctrl.enqueue(bytes); - } catch (err) { - ctrl.error(err); - } - }, - async cancel() { - await iter.return?.(); - }, - }); - } } class SSEDecoder { diff --git a/src/version.ts b/src/version.ts index ddf5a8402..77db4e1fb 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.0.0-beta.9'; +export const VERSION = '4.0.0-beta.10'; From 68ac889b3402fbcb60be74a31a2147500ca57eb0 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Sun, 13 Aug 2023 08:54:08 -0700 Subject: [PATCH 026/725] v4.0.0-beta.11 --- api.md | 4 +- package.json | 2 +- src/index.ts | 2 + src/resources/audio/transcriptions.ts | 2 +- src/resources/audio/translations.ts | 4 +- src/resources/chat/completions.ts | 84 ++++++++++++++++++++++++--- src/resources/completions.ts | 60 +++++++++++++++---- src/resources/edits.ts | 34 ++++++++--- src/resources/embeddings.ts | 64 +++++++++++++++----- src/resources/files.ts | 29 +++++++++ src/resources/fine-tunes.ts | 73 +++++++++++++++++++++++ src/resources/images.ts | 10 ++++ src/resources/index.ts | 3 +- src/resources/models.ts | 15 +++++ src/resources/moderations.ts | 71 ++++++++++++++++++++++ src/version.ts | 2 +- 16 files changed, 410 insertions(+), 49 deletions(-) diff --git a/api.md b/api.md index 00bddf98f..0468aaeec 100644 --- a/api.md +++ b/api.md @@ -4,6 +4,7 @@ Types: - Completion - CompletionChoice +- CompletionUsage Methods: @@ -38,11 +39,12 @@ Methods: Types: +- CreateEmbeddingResponse - Embedding Methods: -- client.embeddings.create({ ...params }) -> Embedding +- client.embeddings.create({ ...params }) -> CreateEmbeddingResponse # Files diff --git a/package.json b/package.json index acaf40d4c..77485d7b0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.0.0-beta.10", + "version": "4.0.0-beta.11", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/index.ts b/src/index.ts index 0c2d1ffeb..4ddb3dc30 100644 --- a/src/index.ts +++ b/src/index.ts @@ -192,6 +192,7 @@ export namespace OpenAI { export import Completions = API.Completions; export import Completion = API.Completion; export import CompletionChoice = API.CompletionChoice; + export import CompletionUsage = API.CompletionUsage; export import CompletionCreateParams = API.CompletionCreateParams; export import CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; export import CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; @@ -203,6 +204,7 @@ export namespace OpenAI { export import EditCreateParams = API.EditCreateParams; export import Embeddings = API.Embeddings; + export import CreateEmbeddingResponse = API.CreateEmbeddingResponse; export import Embedding = API.Embedding; export import EmbeddingCreateParams = API.EmbeddingCreateParams; diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index 8ec06ede7..18b8e784b 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -21,7 +21,7 @@ export interface Transcription { export interface TranscriptionCreateParams { /** * The audio file object (not file name) to transcribe, in one of these formats: - * mp3, mp4, mpeg, mpga, m4a, wav, or webm. + * flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. */ file: Uploadable; diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index f6754f6c2..922fec294 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -20,8 +20,8 @@ export interface Translation { export interface TranslationCreateParams { /** - * The audio file object (not file name) translate, in one of these formats: mp3, - * mp4, mpeg, mpga, m4a, wav, or webm. + * The audio file object (not file name) translate, in one of these formats: flac, + * mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. */ file: Uploadable; diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 6cb494f67..a2f603f54 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -3,6 +3,7 @@ import * as Core from 'openai/core'; import { APIPromise } from 'openai/core'; import { APIResource } from 'openai/resource'; +import * as Completions_ from 'openai/resources/completions'; import * as API from './index'; import { Stream } from 'openai/streaming'; @@ -25,60 +26,122 @@ export class Completions extends APIResource { } } +/** + * Represents a chat completion response returned by model, based on the provided + * input. + */ export interface ChatCompletion { + /** + * A unique identifier for the chat completion. + */ id: string; + /** + * A list of chat completion choices. Can be more than one if `n` is greater + * than 1. + */ choices: Array; + /** + * A unix timestamp of when the chat completion was created. + */ created: number; + /** + * The model used for the chat completion. + */ model: string; + /** + * The object type, which is always `chat.completion`. + */ object: string; - usage?: ChatCompletion.Usage; + /** + * Usage statistics for the completion request. + */ + usage?: Completions_.CompletionUsage; } export namespace ChatCompletion { export interface Choice { + /** + * The reason the model stopped generating tokens. This will be `stop` if the model + * hit a natural stop point or a provided stop sequence, `length` if the maximum + * number of tokens specified in the request was reached, or `function_call` if the + * model called a function. + */ finish_reason: 'stop' | 'length' | 'function_call'; + /** + * The index of the choice in the list of choices. + */ index: number; + /** + * A chat completion message generated by the model. + */ message: ChatCompletionMessage; } - - export interface Usage { - completion_tokens: number; - - prompt_tokens: number; - - total_tokens: number; - } } +/** + * Represents a streamed chunk of a chat completion response returned by model, + * based on the provided input. + */ export interface ChatCompletionChunk { + /** + * A unique identifier for the chat completion chunk. + */ id: string; + /** + * A list of chat completion choices. Can be more than one if `n` is greater + * than 1. + */ choices: Array; + /** + * A unix timestamp of when the chat completion chunk was created. + */ created: number; + /** + * The model to generate the completion. + */ model: string; + /** + * The object type, which is always `chat.completion.chunk`. + */ object: string; } export namespace ChatCompletionChunk { export interface Choice { + /** + * A chat completion delta generated by streamed model responses. + */ delta: Choice.Delta; + /** + * The reason the model stopped generating tokens. This will be `stop` if the model + * hit a natural stop point or a provided stop sequence, `length` if the maximum + * number of tokens specified in the request was reached, or `function_call` if the + * model called a function. + */ finish_reason: 'stop' | 'length' | 'function_call' | null; + /** + * The index of the choice in the list of choices. + */ index: number; } export namespace Choice { + /** + * A chat completion delta generated by streamed model responses. + */ export interface Delta { /** * The contents of the chunk message. @@ -120,6 +183,9 @@ export namespace ChatCompletionChunk { } } +/** + * A chat completion message generated by the model. + */ export interface ChatCompletionMessage { /** * The contents of the message. diff --git a/src/resources/completions.ts b/src/resources/completions.ts index 34e695418..8c21b6898 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -25,31 +25,48 @@ export class Completions extends APIResource { } } +/** + * Represents a completion response from the API. Note: both the streamed and + * non-streamed response objects share the same shape (unlike the chat endpoint). + */ export interface Completion { + /** + * A unique identifier for the completion. + */ id: string; + /** + * The list of completion choices the model generated for the input prompt. + */ choices: Array; + /** + * The Unix timestamp of when the completion was created. + */ created: number; + /** + * The model used for completion. + */ model: string; + /** + * The object type, which is always "text_completion" + */ object: string; - usage?: Completion.Usage; -} - -export namespace Completion { - export interface Usage { - completion_tokens: number; - - prompt_tokens: number; - - total_tokens: number; - } + /** + * Usage statistics for the completion request. + */ + usage?: CompletionUsage; } export interface CompletionChoice { + /** + * The reason the model stopped generating tokens. This will be `stop` if the model + * hit a natural stop point or a provided stop sequence, or `length` if the maximum + * number of tokens specified in the request was reached. + */ finish_reason: 'stop' | 'length'; index: number; @@ -71,6 +88,26 @@ export namespace CompletionChoice { } } +/** + * Usage statistics for the completion request. + */ +export interface CompletionUsage { + /** + * Number of tokens in the generated completion. + */ + completion_tokens: number; + + /** + * Number of tokens in the prompt. + */ + prompt_tokens: number; + + /** + * Total number of tokens used in the request (prompt + completion). + */ + total_tokens: number; +} + export interface CompletionCreateParams { /** * ID of the model to use. You can use the @@ -258,6 +295,7 @@ export interface CompletionCreateParamsStreaming extends CompletionCreateParams export namespace Completions { export import Completion = API.Completion; export import CompletionChoice = API.CompletionChoice; + export import CompletionUsage = API.CompletionUsage; export import CompletionCreateParams = API.CompletionCreateParams; export import CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; export import CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; diff --git a/src/resources/edits.ts b/src/resources/edits.ts index 447d1a50f..55623ac91 100644 --- a/src/resources/edits.ts +++ b/src/resources/edits.ts @@ -2,6 +2,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; +import * as Completions from 'openai/resources/completions'; import * as API from './index'; export class Edits extends APIResource { @@ -18,31 +19,46 @@ export class Edits extends APIResource { } export interface Edit { + /** + * A list of edit choices. Can be more than one if `n` is greater than 1. + */ choices: Array; + /** + * A unix timestamp of when the edit was created. + */ created: number; + /** + * The object type, which is always `edit`. + */ object: string; - usage: Edit.Usage; + /** + * Usage statistics for the completion request. + */ + usage: Completions.CompletionUsage; } export namespace Edit { export interface Choice { + /** + * The reason the model stopped generating tokens. This will be `stop` if the model + * hit a natural stop point or a provided stop sequence, or `length` if the maximum + * number of tokens specified in the request was reached. + */ finish_reason: 'stop' | 'length'; + /** + * The index of the choice in the list of choices. + */ index: number; + /** + * The edited result. + */ text: string; } - - export interface Usage { - completion_tokens: number; - - prompt_tokens: number; - - total_tokens: number; - } } export interface EditCreateParams { diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index 92d7ee82e..8709deb9f 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -8,37 +8,74 @@ export class Embeddings extends APIResource { /** * Creates an embedding vector representing the input text. */ - create(body: EmbeddingCreateParams, options?: Core.RequestOptions): Core.APIPromise { + create( + body: EmbeddingCreateParams, + options?: Core.RequestOptions, + ): Core.APIPromise { return this.post('/embeddings', { body, ...options }); } } -export interface Embedding { - data: Array; +export interface CreateEmbeddingResponse { + /** + * The list of embeddings generated by the model. + */ + data: Array; + /** + * The name of the model used to generate the embedding. + */ model: string; + /** + * The object type, which is always "embedding". + */ object: string; - usage: Embedding.Usage; + /** + * The usage information for the request. + */ + usage: CreateEmbeddingResponse.Usage; } -export namespace Embedding { - export interface Data { - embedding: Array; - - index: number; - - object: string; - } - +export namespace CreateEmbeddingResponse { + /** + * The usage information for the request. + */ export interface Usage { + /** + * The number of tokens used by the prompt. + */ prompt_tokens: number; + /** + * The total number of tokens used by the request. + */ total_tokens: number; } } +/** + * Represents an embedding vector returned by embedding endpoint. + */ +export interface Embedding { + /** + * The embedding vector, which is a list of floats. The length of vector depends on + * the model as listed in the [embedding guide](/docs/guides/embeddings). + */ + embedding: Array; + + /** + * The index of the embedding in the list of embeddings. + */ + index: number; + + /** + * The object type, which is always "embedding". + */ + object: string; +} + export interface EmbeddingCreateParams { /** * Input text to embed, encoded as a string or array of tokens. To embed multiple @@ -66,6 +103,7 @@ export interface EmbeddingCreateParams { } export namespace Embeddings { + export import CreateEmbeddingResponse = API.CreateEmbeddingResponse; export import Embedding = API.Embedding; export import EmbeddingCreateParams = API.EmbeddingCreateParams; } diff --git a/src/resources/files.ts b/src/resources/files.ts index 832f75a44..9ad111ee7 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -66,21 +66,50 @@ export interface FileDeleted { object: string; } +/** + * The `File` object represents a document that has been uploaded to OpenAI. + */ export interface FileObject { + /** + * The file identifier, which can be referenced in the API endpoints. + */ id: string; + /** + * The size of the file in bytes. + */ bytes: number; + /** + * The unix timestamp for when the file was created. + */ created_at: number; + /** + * The name of the file. + */ filename: string; + /** + * The object type, which is always "file". + */ object: string; + /** + * The intended purpose of the file. Currently, only "fine-tune" is supported. + */ purpose: string; + /** + * The current status of the file, which can be either `uploaded`, `processed`, + * `pending`, `error`, `deleting` or `deleted`. + */ status?: string; + /** + * Additional details about the status of the file. If the file is in the `error` + * state, this will include a message describing the error. + */ status_details?: string | null; } diff --git a/src/resources/fine-tunes.ts b/src/resources/fine-tunes.ts index 5695cfbed..fd42894d9 100644 --- a/src/resources/fine-tunes.ts +++ b/src/resources/fine-tunes.ts @@ -78,48 +78,121 @@ export class FineTunesPage extends Page {} // alias so we can export it in the namespace type _FineTunesPage = FineTunesPage; +/** + * The `FineTune` object represents a fine-tuning job that has been created through + * the API. + */ export interface FineTune { + /** + * The object identifier, which can be referenced in the API endpoints. + */ id: string; + /** + * The unix timestamp for when the fine-tuning job was created. + */ created_at: number; + /** + * The name of the fine-tuned model that is being created. + */ fine_tuned_model: string | null; + /** + * The hyperparameters used for the fine-tuning job. See the + * [Fine-tuning Guide](/docs/guides/fine-tuning/hyperparameters) for more details. + */ hyperparams: FineTune.Hyperparams; + /** + * The base model that is being fine-tuned. + */ model: string; + /** + * The object type, which is always "fine-tune". + */ object: string; + /** + * The organization that owns the fine-tuning job. + */ organization_id: string; + /** + * The compiled results files for the fine-tuning job. + */ result_files: Array; + /** + * The current status of the fine-tuning job, which can be either `created`, + * `pending`, `running`, `succeeded`, `failed`, or `cancelled`. + */ status: string; + /** + * The list of files used for training. + */ training_files: Array; + /** + * The unix timestamp for when the fine-tuning job was last updated. + */ updated_at: number; + /** + * The list of files used for validation. + */ validation_files: Array; + /** + * The list of events that have been observed in the lifecycle of the FineTune job. + */ events?: Array; } export namespace FineTune { + /** + * The hyperparameters used for the fine-tuning job. See the + * [Fine-tuning Guide](/docs/guides/fine-tuning/hyperparameters) for more details. + */ export interface Hyperparams { + /** + * The batch size to use for training. The batch size is the number of training + * examples used to train a single forward and backward pass. + */ batch_size: number; + /** + * The learning rate multiplier to use for training. + */ learning_rate_multiplier: number; + /** + * The number of epochs to train the model for. An epoch refers to one full cycle + * through the training dataset. + */ n_epochs: number; + /** + * The weight to use for loss on the prompt tokens. + */ prompt_loss_weight: number; + /** + * The number of classes to use for computing classification metrics. + */ classification_n_classes?: number; + /** + * The positive class to use for computing classification metrics. + */ classification_positive_class?: string; + /** + * The classification metrics to compute using the validation dataset at the end of + * every epoch. + */ compute_classification_metrics?: boolean; } } diff --git a/src/resources/images.ts b/src/resources/images.ts index 24ecd9860..81eb78674 100644 --- a/src/resources/images.ts +++ b/src/resources/images.ts @@ -31,9 +31,19 @@ export class Images extends APIResource { } } +/** + * Represents the url or the content of an image generated by the OpenAI API. + */ export interface Image { + /** + * The base64-encoded JSON of the generated image, if `response_format` is + * `b64_json`. + */ b64_json?: string; + /** + * The URL of the generated image, if `response_format` is `url` (default). + */ url?: string; } diff --git a/src/resources/index.ts b/src/resources/index.ts index 96e16abc3..e2759712e 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -5,13 +5,14 @@ export { Chat } from './chat/chat'; export { Completion, CompletionChoice, + CompletionUsage, CompletionCreateParams, CompletionCreateParamsNonStreaming, CompletionCreateParamsStreaming, Completions, } from './completions'; +export { CreateEmbeddingResponse, Embedding, EmbeddingCreateParams, Embeddings } from './embeddings'; export { Edit, EditCreateParams, Edits } from './edits'; -export { Embedding, EmbeddingCreateParams, Embeddings } from './embeddings'; export { FileContent, FileDeleted, FileObject, FileCreateParams, FileObjectsPage, Files } from './files'; export { FineTune, diff --git a/src/resources/models.ts b/src/resources/models.ts index 49ac808ea..84f01ccc3 100644 --- a/src/resources/models.ts +++ b/src/resources/models.ts @@ -37,13 +37,28 @@ export class ModelsPage extends Page {} // alias so we can export it in the namespace type _ModelsPage = ModelsPage; +/** + * Describes an OpenAI model offering that can be used with the API. + */ export interface Model { + /** + * The model identifier, which can be referenced in the API endpoints. + */ id: string; + /** + * The date and time when the model was created. + */ created: number; + /** + * The object type, which is always "model". + */ object: string; + /** + * The organization that owns the model. + */ owned_by: string; } diff --git a/src/resources/moderations.ts b/src/resources/moderations.ts index 53aa81d12..d885c71ac 100644 --- a/src/resources/moderations.ts +++ b/src/resources/moderations.ts @@ -17,52 +17,123 @@ export class Moderations extends APIResource { } export interface Moderation { + /** + * A list of the categories, and whether they are flagged or not. + */ categories: Moderation.Categories; + /** + * A list of the categories along with their scores as predicted by model. + */ category_scores: Moderation.CategoryScores; + /** + * Whether the content violates + * [OpenAI's usage policies](/policies/usage-policies). + */ flagged: boolean; } export namespace Moderation { + /** + * A list of the categories, and whether they are flagged or not. + */ export interface Categories { + /** + * Whether the content was flagged as 'hate'. + */ hate: boolean; + /** + * Whether the content was flagged as 'hate/threatening'. + */ 'hate/threatening': boolean; + /** + * Whether the content was flagged as 'self-harm'. + */ 'self-harm': boolean; + /** + * Whether the content was flagged as 'sexual'. + */ sexual: boolean; + /** + * Whether the content was flagged as 'sexual/minors'. + */ 'sexual/minors': boolean; + /** + * Whether the content was flagged as 'violence'. + */ violence: boolean; + /** + * Whether the content was flagged as 'violence/graphic'. + */ 'violence/graphic': boolean; } + /** + * A list of the categories along with their scores as predicted by model. + */ export interface CategoryScores { + /** + * The score for the category 'hate'. + */ hate: number; + /** + * The score for the category 'hate/threatening'. + */ 'hate/threatening': number; + /** + * The score for the category 'self-harm'. + */ 'self-harm': number; + /** + * The score for the category 'sexual'. + */ sexual: number; + /** + * The score for the category 'sexual/minors'. + */ 'sexual/minors': number; + /** + * The score for the category 'violence'. + */ violence: number; + /** + * The score for the category 'violence/graphic'. + */ 'violence/graphic': number; } } +/** + * Represents policy compliance report by OpenAI's content moderation model against + * a given input. + */ export interface ModerationCreateResponse { + /** + * The unique identifier for the moderation request. + */ id: string; + /** + * The model used to generate the moderation results. + */ model: string; + /** + * A list of moderation objects. + */ results: Array; } diff --git a/src/version.ts b/src/version.ts index 77db4e1fb..d81e473b5 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.0.0-beta.10'; +export const VERSION = '4.0.0-beta.11'; From 37de535fb88b203c46af9f0861a68a7e5c1e7d3a Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Mon, 14 Aug 2023 18:00:18 -0700 Subject: [PATCH 027/725] v4.0.0-beta.12 --- README.md | 4 ++-- package.json | 2 +- src/core.ts | 7 +++++-- src/index.ts | 4 ++-- src/version.ts | 2 +- 5 files changed, 11 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 8bd3c7abd..1c139cab7 100644 --- a/README.md +++ b/README.md @@ -187,13 +187,13 @@ await openai.chat.completions.create({ messages: [{ role: 'user', content: 'How ### Timeouts -Requests time out after 60 seconds by default. You can configure this with a `timeout` option: +Requests time out after 10 minutes by default. You can configure this with a `timeout` option: ```ts // Configure the default for all requests: const openai = new OpenAI({ - timeout: 20 * 1000, // 20 seconds (default is 60s) + timeout: 20 * 1000, // 20 seconds (default is 10 minutes) }); // Override per-request: diff --git a/package.json b/package.json index 77485d7b0..b211dd771 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.0.0-beta.11", + "version": "4.0.0-beta.12", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/core.ts b/src/core.ts index 4e0e56c3c..65a2b2b10 100644 --- a/src/core.ts +++ b/src/core.ts @@ -135,7 +135,7 @@ export abstract class APIClient { constructor({ baseURL, maxRetries, - timeout = 60 * 1000, // 60s + timeout = 600000, // 10 minutes httpAgent, fetch: overridenFetch, }: { @@ -254,7 +254,10 @@ export abstract class APIClient { const timeout = options.timeout ?? this.timeout; const httpAgent = options.httpAgent ?? this.httpAgent ?? getDefaultAgent(url); const minAgentTimeout = timeout + 1000; - if ((httpAgent as any)?.options && minAgentTimeout > ((httpAgent as any).options.timeout ?? 0)) { + if ( + typeof (httpAgent as any)?.options?.timeout === 'number' && + minAgentTimeout > ((httpAgent as any).options.timeout ?? 0) + ) { // Allow any given request to bump our agent active socket timeout. // This may seem strange, but leaking active sockets should be rare and not particularly problematic, // and without mutating agent we would need to create more of them. diff --git a/src/index.ts b/src/index.ts index 4ddb3dc30..8c3d62901 100644 --- a/src/index.ts +++ b/src/index.ts @@ -90,7 +90,7 @@ export class OpenAI extends Core.APIClient { }: ClientOptions = {}) { if (apiKey === undefined) { throw new Error( - 'The OPENAI_API_KEY environment variable is missing or empty; either provide it, or instantiate the OpenAI client with an apiKey option, like new OpenAI({ apiKey: undefined }).', + "The OPENAI_API_KEY environment variable is missing or empty; either provide it, or instantiate the OpenAI client with an apiKey option, like new OpenAI({ apiKey: 'my apiKey' }).", ); } @@ -109,7 +109,7 @@ export class OpenAI extends Core.APIClient { super({ baseURL: options.baseURL!, - timeout: options.timeout ?? 600000, + timeout: options.timeout ?? 600000 /* 10 minutes */, httpAgent: options.httpAgent, maxRetries: options.maxRetries, fetch: options.fetch, diff --git a/src/version.ts b/src/version.ts index d81e473b5..3ca539369 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.0.0-beta.11'; +export const VERSION = '4.0.0-beta.12'; From 31ddda89195849b09f80d920abba74a225535248 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Wed, 16 Aug 2023 10:44:01 -0700 Subject: [PATCH 028/725] v4.0.0 --- api.md | 2 +- ecosystem-tests/cli.ts | 21 +- ecosystem-tests/vercel-edge/package-lock.json | 547 ++++++++++++++++-- ecosystem-tests/vercel-edge/package.json | 2 +- package.json | 2 +- src/core.ts | 12 +- src/index.ts | 16 +- src/resources/files.ts | 2 +- src/version.ts | 2 +- tests/api-resources/files.test.ts | 16 +- tests/index.test.ts | 27 +- 11 files changed, 563 insertions(+), 86 deletions(-) diff --git a/api.md b/api.md index 0468aaeec..722e833a3 100644 --- a/api.md +++ b/api.md @@ -60,7 +60,7 @@ Methods: - client.files.retrieve(fileId) -> FileObject - client.files.list() -> FileObjectsPage - client.files.del(fileId) -> FileDeleted -- client.files.retrieveFileContent(fileId) -> string +- client.files.retrieveContent(fileId) -> string # Images diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index fa8c6ef4f..228d08654 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -130,6 +130,11 @@ function parseArgs() { default: 1, description: 'number of parallel jobs to run', }, + retry: { + type: 'number', + default: 0, + description: 'number of times to retry failing jobs', + }, parallel: { type: 'boolean', default: false, @@ -202,6 +207,7 @@ async function main() { while (queue.length) { const project = queue.shift(); if (!project) break; + let stdout, stderr; try { runningProjects.add(project); @@ -212,6 +218,7 @@ async function main() { __filename, project, '--skip-pack', + `--retry=${args.retry}`, ...(args.live ? ['--live'] : []), ...(args.verbose ? ['--verbose'] : []), ...(args.deploy ? ['--deploy'] : []), @@ -245,7 +252,7 @@ async function main() { console.error('\n'); try { - await fn(); + await withRetry(fn, project, state.retry) console.error(`✅ - Successfully ran ${project}`); } catch (err) { if (err && (err as any).shortMessage) { @@ -268,6 +275,18 @@ async function main() { process.exit(0); } +async function withRetry(fn: () => Promise, identifier: string, retryAmount: number): Promise { + do { + try { + return await fn() + } catch (err) { + console.error(`${identifier} failed due to ${err}; retries left ${retryAmount}`) + } + + retryAmount--; + } while (retryAmount > 0) +} + function centerPad(text: string, width = text.length, char = ' '): string { return text.padStart(Math.floor((width + text.length) / 2), char).padEnd(width, char); } diff --git a/ecosystem-tests/vercel-edge/package-lock.json b/ecosystem-tests/vercel-edge/package-lock.json index f647adb16..cbdd742a6 100644 --- a/ecosystem-tests/vercel-edge/package-lock.json +++ b/ecosystem-tests/vercel-edge/package-lock.json @@ -8,7 +8,7 @@ "name": "vercel-edge", "version": "0.1.0", "dependencies": { - "ai": "2.1.9", + "ai": "2.1.34", "next": "13.4.6", "react": "18.2.0", "react-dom": "18.2.0" @@ -22,6 +22,19 @@ "vercel": "^31.0.0" } }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "peer": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/@babel/parser": { "version": "7.22.5", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", @@ -104,11 +117,33 @@ "node": ">=14" } }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "peer": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/@jridgewell/resolve-uri": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", - "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "peer": true, "engines": { "node": ">=6.0.0" } @@ -118,6 +153,16 @@ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "peer": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, "node_modules/@mapbox/node-pre-gyp": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz", @@ -425,6 +470,12 @@ "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", "dev": true }, + "node_modules/@types/estree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", + "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", + "peer": true + }, "node_modules/@types/json-schema": { "version": "7.0.12", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", @@ -922,10 +973,9 @@ "dev": true }, "node_modules/acorn": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", - "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", - "dev": true, + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", "bin": { "acorn": "bin/acorn" }, @@ -955,28 +1005,34 @@ } }, "node_modules/ai": { - "version": "2.1.9", - "resolved": "https://registry.npmjs.org/ai/-/ai-2.1.9.tgz", - "integrity": "sha512-PiDWO/5lFvnbEziJjl+4CE44jg4weknJuW5VZAQQ4PDyFnDjxoCMkSJ95zEatX3qrYZfRP6zXHkmy+/OqwclfA==", + "version": "2.1.34", + "resolved": "https://registry.npmjs.org/ai/-/ai-2.1.34.tgz", + "integrity": "sha512-gZawUnYhZHJ1PiE+x7iDuy2GQg67AKs0uHgdS8Jw3o/3NouGeJ/5ytyqbgHqczgvoquSpykumR+5TyRieF8x/w==", "dependencies": { "eventsource-parser": "1.0.0", - "nanoid": "^3.3.6", - "sswr": "^1.10.0", - "swr": "2.1.5", - "swrv": "1.0.3" + "nanoid": "3.3.6", + "solid-swr-store": "0.10.7", + "sswr": "2.0.0", + "swr": "2.2.0", + "swr-store": "0.10.6", + "swrv": "1.0.4" }, "engines": { "node": ">=14.6" }, "peerDependencies": { "react": "^18.2.0", - "svelte": "^3.29.0", + "solid-js": "^1.7.7", + "svelte": "^3.0.0 || ^4.0.0", "vue": "^3.3.4" }, "peerDependenciesMeta": { "react": { "optional": true }, + "solid-js": { + "optional": true + }, "svelte": { "optional": true }, @@ -1030,6 +1086,15 @@ "node": ">=10" } }, + "node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "peer": true, + "dependencies": { + "dequal": "^2.0.3" + } + }, "node_modules/async-listen": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/async-listen/-/async-listen-3.0.0.tgz", @@ -1051,6 +1116,15 @@ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", "dev": true }, + "node_modules/axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "peer": true, + "dependencies": { + "dequal": "^2.0.3" + } + }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -1128,6 +1202,28 @@ "integrity": "sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==", "dev": true }, + "node_modules/code-red": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/code-red/-/code-red-1.0.4.tgz", + "integrity": "sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==", + "peer": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.15", + "@types/estree": "^1.0.1", + "acorn": "^8.10.0", + "estree-walker": "^3.0.3", + "periscopic": "^3.1.0" + } + }, + "node_modules/code-red/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "peer": true, + "dependencies": { + "@types/estree": "^1.0.0" + } + }, "node_modules/color-support": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", @@ -1185,6 +1281,19 @@ "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", "dev": true }, + "node_modules/css-tree": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "peer": true, + "dependencies": { + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + } + }, "node_modules/csstype": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", @@ -1222,6 +1331,14 @@ "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", "dev": true }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "engines": { + "node": ">=6" + } + }, "node_modules/detect-libc": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", @@ -1924,6 +2041,15 @@ "node": ">=0.12.0" } }, + "node_modules/is-reference": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.1.tgz", + "integrity": "sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==", + "peer": true, + "dependencies": { + "@types/estree": "*" + } + }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -1958,6 +2084,12 @@ "graceful-fs": "^4.1.6" } }, + "node_modules/locate-character": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz", + "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==", + "peer": true + }, "node_modules/loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", @@ -2002,6 +2134,12 @@ "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", "dev": true }, + "node_modules/mdn-data": { + "version": "2.0.30", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", + "peer": true + }, "node_modules/merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", @@ -2270,6 +2408,26 @@ "integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==", "dev": true }, + "node_modules/periscopic": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", + "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", + "peer": true, + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^3.0.0", + "is-reference": "^3.0.0" + } + }, + "node_modules/periscopic/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "peer": true, + "dependencies": { + "@types/estree": "^1.0.0" + } + }, "node_modules/picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", @@ -2512,6 +2670,15 @@ "semver": "bin/semver" } }, + "node_modules/seroval": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/seroval/-/seroval-0.5.1.tgz", + "integrity": "sha512-ZfhQVB59hmIauJG5Ydynupy8KHyr5imGNtdDhbZG68Ufh1Ynkv9KOYOAABf71oVbQxJ8VkWnMHAjEHE7fWkH5g==", + "peer": true, + "engines": { + "node": ">=10" + } + }, "node_modules/set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", @@ -2530,6 +2697,28 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/solid-js": { + "version": "1.7.11", + "resolved": "https://registry.npmjs.org/solid-js/-/solid-js-1.7.11.tgz", + "integrity": "sha512-JkuvsHt8jqy7USsy9xJtT18aF9r2pFO+GB8JQ2XGTvtF49rGTObB46iebD25sE3qVNvIbwglXOXdALnJq9IHtQ==", + "peer": true, + "dependencies": { + "csstype": "^3.1.0", + "seroval": "^0.5.0" + } + }, + "node_modules/solid-swr-store": { + "version": "0.10.7", + "resolved": "https://registry.npmjs.org/solid-swr-store/-/solid-swr-store-0.10.7.tgz", + "integrity": "sha512-A6d68aJmRP471aWqKKPE2tpgOiR5fH4qXQNfKIec+Vap+MGQm3tvXlT8n0I8UgJSlNAsSAUuw2VTviH2h3Vv5g==", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "solid-js": "^1.2", + "swr-store": "^0.10" + } + }, "node_modules/source-map-js": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", @@ -2539,14 +2728,14 @@ } }, "node_modules/sswr": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/sswr/-/sswr-1.10.0.tgz", - "integrity": "sha512-nLWAJSQy3h8t7rrbTXanRyVHuQPj4PwKIVGe4IMlxJFdhyaxnN/JGACnvQKGDeWiTGYIZIx/jRuUsPEF0867Pg==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sswr/-/sswr-2.0.0.tgz", + "integrity": "sha512-mV0kkeBHcjcb0M5NqKtKVg/uTIYNlIIniyDfSGrSfxpEdM9C365jK0z55pl9K0xAkNTJi2OAOVFQpgMPUk+V0w==", "dependencies": { - "swrev": "^3.0.0" + "swrev": "^4.0.0" }, "peerDependencies": { - "svelte": "^3.29.0" + "svelte": "^4.0.0" } }, "node_modules/streamsearch": { @@ -2615,18 +2804,42 @@ } }, "node_modules/svelte": { - "version": "3.59.2", - "resolved": "https://registry.npmjs.org/svelte/-/svelte-3.59.2.tgz", - "integrity": "sha512-vzSyuGr3eEoAtT/A6bmajosJZIUWySzY2CzB3w2pgPvnkUjGqlDnsNnA0PMO+mMAhuyMul6C2uuZzY6ELSkzyA==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/svelte/-/svelte-4.2.0.tgz", + "integrity": "sha512-kVsdPjDbLrv74SmLSUzAsBGquMs4MPgWGkGLpH+PjOYnFOziAvENVzgJmyOCV2gntxE32aNm8/sqNKD6LbIpeQ==", "peer": true, + "dependencies": { + "@ampproject/remapping": "^2.2.1", + "@jridgewell/sourcemap-codec": "^1.4.15", + "@jridgewell/trace-mapping": "^0.3.18", + "acorn": "^8.9.0", + "aria-query": "^5.3.0", + "axobject-query": "^3.2.1", + "code-red": "^1.0.3", + "css-tree": "^2.3.1", + "estree-walker": "^3.0.3", + "is-reference": "^3.0.1", + "locate-character": "^3.0.0", + "magic-string": "^0.30.0", + "periscopic": "^3.1.0" + }, "engines": { - "node": ">= 8" + "node": ">=16" + } + }, + "node_modules/svelte/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "peer": true, + "dependencies": { + "@types/estree": "^1.0.0" } }, "node_modules/swr": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/swr/-/swr-2.1.5.tgz", - "integrity": "sha512-/OhfZMcEpuz77KavXST5q6XE9nrOBOVcBLWjMT+oAE/kQHyE3PASrevXCtQDZ8aamntOfFkbVJp7Il9tNBQWrw==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/swr/-/swr-2.2.0.tgz", + "integrity": "sha512-AjqHOv2lAhkuUdIiBu9xbuettzAzWXmCEcLONNKJRba87WAefz8Ca9d6ds/SzrPc235n1IxWYdhJ2zF3MNUaoQ==", "dependencies": { "use-sync-external-store": "^1.2.0" }, @@ -2634,15 +2847,26 @@ "react": "^16.11.0 || ^17.0.0 || ^18.0.0" } }, + "node_modules/swr-store": { + "version": "0.10.6", + "resolved": "https://registry.npmjs.org/swr-store/-/swr-store-0.10.6.tgz", + "integrity": "sha512-xPjB1hARSiRaNNlUQvWSVrG5SirCjk2TmaUyzzvk69SZQan9hCJqw/5rG9iL7xElHU784GxRPISClq4488/XVw==", + "dependencies": { + "dequal": "^2.0.3" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/swrev": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/swrev/-/swrev-3.0.0.tgz", - "integrity": "sha512-QJuZiptdOmbDY45pECBRVEgnoBlOKjeT2MWVz04wKHpWX15hM3P7EjcIbHDg5yLoPCMQ7to3349MEE+l9QF5HA==" + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/swrev/-/swrev-4.0.0.tgz", + "integrity": "sha512-LqVcOHSB4cPGgitD1riJ1Hh4vdmITOp+BkmfmXRh4hSF/t7EnS4iD+SOTmq7w5pPm/SiPeto4ADbKS6dHUDWFA==" }, "node_modules/swrv": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/swrv/-/swrv-1.0.3.tgz", - "integrity": "sha512-sl+eLEE+aPPjhP1E8gQ75q3RPRyw5Gd/kROnrTFo3+LkCeLskv7F+uAl5W97wgJkzitobL6FLsRPVm0DgIgN8A==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/swrv/-/swrv-1.0.4.tgz", + "integrity": "sha512-zjEkcP8Ywmj+xOJW3lIT65ciY/4AL4e/Or7Gj0MzU3zBJNMdJiT8geVZhINavnlHRMMCcJLHhraLTAiDOTmQ9g==", "peerDependencies": { "vue": ">=3.2.26 < 4" } @@ -2939,6 +3163,16 @@ } }, "dependencies": { + "@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "peer": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, "@babel/parser": { "version": "7.22.5", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", @@ -3002,17 +3236,43 @@ "@edge-runtime/primitives": "3.0.3" } }, + "@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "peer": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, "@jridgewell/resolve-uri": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", - "dev": true + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "peer": true }, "@jridgewell/sourcemap-codec": { "version": "1.4.15", "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" }, + "@jridgewell/trace-mapping": { + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "peer": true, + "requires": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, "@mapbox/node-pre-gyp": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz", @@ -3216,6 +3476,12 @@ "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", "dev": true }, + "@types/estree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", + "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", + "peer": true + }, "@types/json-schema": { "version": "7.0.12", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", @@ -3673,10 +3939,9 @@ "dev": true }, "acorn": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", - "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", - "dev": true + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==" }, "acorn-walk": { "version": "8.2.0", @@ -3694,15 +3959,17 @@ } }, "ai": { - "version": "2.1.9", - "resolved": "https://registry.npmjs.org/ai/-/ai-2.1.9.tgz", - "integrity": "sha512-PiDWO/5lFvnbEziJjl+4CE44jg4weknJuW5VZAQQ4PDyFnDjxoCMkSJ95zEatX3qrYZfRP6zXHkmy+/OqwclfA==", + "version": "2.1.34", + "resolved": "https://registry.npmjs.org/ai/-/ai-2.1.34.tgz", + "integrity": "sha512-gZawUnYhZHJ1PiE+x7iDuy2GQg67AKs0uHgdS8Jw3o/3NouGeJ/5ytyqbgHqczgvoquSpykumR+5TyRieF8x/w==", "requires": { "eventsource-parser": "1.0.0", - "nanoid": "^3.3.6", - "sswr": "^1.10.0", - "swr": "2.1.5", - "swrv": "1.0.3" + "nanoid": "3.3.6", + "solid-swr-store": "0.10.7", + "sswr": "2.0.0", + "swr": "2.2.0", + "swr-store": "0.10.6", + "swrv": "1.0.4" } }, "ajv": { @@ -3740,6 +4007,15 @@ "readable-stream": "^3.6.0" } }, + "aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "peer": true, + "requires": { + "dequal": "^2.0.3" + } + }, "async-listen": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/async-listen/-/async-listen-3.0.0.tgz", @@ -3758,6 +4034,15 @@ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", "dev": true }, + "axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "peer": true, + "requires": { + "dequal": "^2.0.3" + } + }, "balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -3812,6 +4097,30 @@ "integrity": "sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==", "dev": true }, + "code-red": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/code-red/-/code-red-1.0.4.tgz", + "integrity": "sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==", + "peer": true, + "requires": { + "@jridgewell/sourcemap-codec": "^1.4.15", + "@types/estree": "^1.0.1", + "acorn": "^8.10.0", + "estree-walker": "^3.0.3", + "periscopic": "^3.1.0" + }, + "dependencies": { + "estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "peer": true, + "requires": { + "@types/estree": "^1.0.0" + } + } + } + }, "color-support": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", @@ -3857,6 +4166,16 @@ "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", "dev": true }, + "css-tree": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "peer": true, + "requires": { + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" + } + }, "csstype": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", @@ -3883,6 +4202,11 @@ "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", "dev": true }, + "dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" + }, "detect-libc": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", @@ -4333,6 +4657,15 @@ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true }, + "is-reference": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.1.tgz", + "integrity": "sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==", + "peer": true, + "requires": { + "@types/estree": "*" + } + }, "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -4365,6 +4698,12 @@ "universalify": "^2.0.0" } }, + "locate-character": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz", + "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==", + "peer": true + }, "loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", @@ -4397,6 +4736,12 @@ "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", "dev": true }, + "mdn-data": { + "version": "2.0.30", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", + "peer": true + }, "merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", @@ -4569,6 +4914,28 @@ "integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==", "dev": true }, + "periscopic": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", + "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", + "peer": true, + "requires": { + "@types/estree": "^1.0.0", + "estree-walker": "^3.0.0", + "is-reference": "^3.0.0" + }, + "dependencies": { + "estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "peer": true, + "requires": { + "@types/estree": "^1.0.0" + } + } + } + }, "picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", @@ -4707,6 +5074,12 @@ "integrity": "sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ==", "dev": true }, + "seroval": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/seroval/-/seroval-0.5.1.tgz", + "integrity": "sha512-ZfhQVB59hmIauJG5Ydynupy8KHyr5imGNtdDhbZG68Ufh1Ynkv9KOYOAABf71oVbQxJ8VkWnMHAjEHE7fWkH5g==", + "peer": true + }, "set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", @@ -4719,17 +5092,33 @@ "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", "dev": true }, + "solid-js": { + "version": "1.7.11", + "resolved": "https://registry.npmjs.org/solid-js/-/solid-js-1.7.11.tgz", + "integrity": "sha512-JkuvsHt8jqy7USsy9xJtT18aF9r2pFO+GB8JQ2XGTvtF49rGTObB46iebD25sE3qVNvIbwglXOXdALnJq9IHtQ==", + "peer": true, + "requires": { + "csstype": "^3.1.0", + "seroval": "^0.5.0" + } + }, + "solid-swr-store": { + "version": "0.10.7", + "resolved": "https://registry.npmjs.org/solid-swr-store/-/solid-swr-store-0.10.7.tgz", + "integrity": "sha512-A6d68aJmRP471aWqKKPE2tpgOiR5fH4qXQNfKIec+Vap+MGQm3tvXlT8n0I8UgJSlNAsSAUuw2VTviH2h3Vv5g==", + "requires": {} + }, "source-map-js": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" }, "sswr": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/sswr/-/sswr-1.10.0.tgz", - "integrity": "sha512-nLWAJSQy3h8t7rrbTXanRyVHuQPj4PwKIVGe4IMlxJFdhyaxnN/JGACnvQKGDeWiTGYIZIx/jRuUsPEF0867Pg==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sswr/-/sswr-2.0.0.tgz", + "integrity": "sha512-mV0kkeBHcjcb0M5NqKtKVg/uTIYNlIIniyDfSGrSfxpEdM9C365jK0z55pl9K0xAkNTJi2OAOVFQpgMPUk+V0w==", "requires": { - "swrev": "^3.0.0" + "swrev": "^4.0.0" } }, "streamsearch": { @@ -4775,28 +5164,62 @@ } }, "svelte": { - "version": "3.59.2", - "resolved": "https://registry.npmjs.org/svelte/-/svelte-3.59.2.tgz", - "integrity": "sha512-vzSyuGr3eEoAtT/A6bmajosJZIUWySzY2CzB3w2pgPvnkUjGqlDnsNnA0PMO+mMAhuyMul6C2uuZzY6ELSkzyA==", - "peer": true + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/svelte/-/svelte-4.2.0.tgz", + "integrity": "sha512-kVsdPjDbLrv74SmLSUzAsBGquMs4MPgWGkGLpH+PjOYnFOziAvENVzgJmyOCV2gntxE32aNm8/sqNKD6LbIpeQ==", + "peer": true, + "requires": { + "@ampproject/remapping": "^2.2.1", + "@jridgewell/sourcemap-codec": "^1.4.15", + "@jridgewell/trace-mapping": "^0.3.18", + "acorn": "^8.9.0", + "aria-query": "^5.3.0", + "axobject-query": "^3.2.1", + "code-red": "^1.0.3", + "css-tree": "^2.3.1", + "estree-walker": "^3.0.3", + "is-reference": "^3.0.1", + "locate-character": "^3.0.0", + "magic-string": "^0.30.0", + "periscopic": "^3.1.0" + }, + "dependencies": { + "estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "peer": true, + "requires": { + "@types/estree": "^1.0.0" + } + } + } }, "swr": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/swr/-/swr-2.1.5.tgz", - "integrity": "sha512-/OhfZMcEpuz77KavXST5q6XE9nrOBOVcBLWjMT+oAE/kQHyE3PASrevXCtQDZ8aamntOfFkbVJp7Il9tNBQWrw==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/swr/-/swr-2.2.0.tgz", + "integrity": "sha512-AjqHOv2lAhkuUdIiBu9xbuettzAzWXmCEcLONNKJRba87WAefz8Ca9d6ds/SzrPc235n1IxWYdhJ2zF3MNUaoQ==", "requires": { "use-sync-external-store": "^1.2.0" } }, + "swr-store": { + "version": "0.10.6", + "resolved": "https://registry.npmjs.org/swr-store/-/swr-store-0.10.6.tgz", + "integrity": "sha512-xPjB1hARSiRaNNlUQvWSVrG5SirCjk2TmaUyzzvk69SZQan9hCJqw/5rG9iL7xElHU784GxRPISClq4488/XVw==", + "requires": { + "dequal": "^2.0.3" + } + }, "swrev": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/swrev/-/swrev-3.0.0.tgz", - "integrity": "sha512-QJuZiptdOmbDY45pECBRVEgnoBlOKjeT2MWVz04wKHpWX15hM3P7EjcIbHDg5yLoPCMQ7to3349MEE+l9QF5HA==" + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/swrev/-/swrev-4.0.0.tgz", + "integrity": "sha512-LqVcOHSB4cPGgitD1riJ1Hh4vdmITOp+BkmfmXRh4hSF/t7EnS4iD+SOTmq7w5pPm/SiPeto4ADbKS6dHUDWFA==" }, "swrv": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/swrv/-/swrv-1.0.3.tgz", - "integrity": "sha512-sl+eLEE+aPPjhP1E8gQ75q3RPRyw5Gd/kROnrTFo3+LkCeLskv7F+uAl5W97wgJkzitobL6FLsRPVm0DgIgN8A==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/swrv/-/swrv-1.0.4.tgz", + "integrity": "sha512-zjEkcP8Ywmj+xOJW3lIT65ciY/4AL4e/Or7Gj0MzU3zBJNMdJiT8geVZhINavnlHRMMCcJLHhraLTAiDOTmQ9g==", "requires": {} }, "tar": { diff --git a/ecosystem-tests/vercel-edge/package.json b/ecosystem-tests/vercel-edge/package.json index 8af07af6a..8a77812f7 100644 --- a/ecosystem-tests/vercel-edge/package.json +++ b/ecosystem-tests/vercel-edge/package.json @@ -11,7 +11,7 @@ "vercel": "vercel" }, "dependencies": { - "ai": "2.1.9", + "ai": "2.1.34", "next": "13.4.6", "react": "18.2.0", "react-dom": "18.2.0" diff --git a/package.json b/package.json index b211dd771..f667a0d5a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.0.0-beta.12", + "version": "4.0.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/core.ts b/src/core.ts index 65a2b2b10..b381aeb75 100644 --- a/src/core.ts +++ b/src/core.ts @@ -322,10 +322,10 @@ export abstract class APIClient { return new APIPromise(this.makeRequest(options, remainingRetries)); } - private async makeRequest( + private async makeRequest( optionsInput: PromiseOrValue, retriesRemaining: number | null, - ): Promise<{ response: Response; options: FinalRequestOptions; controller: AbortController }> { + ): Promise { const options = await optionsInput; if (retriesRemaining == null) { retriesRemaining = options.maxRetries ?? this.maxRetries; @@ -462,11 +462,11 @@ export abstract class APIClient { return false; } - private async retryRequest( - options: FinalRequestOptions, + private async retryRequest( + options: FinalRequestOptions, retriesRemaining: number, responseHeaders?: Headers | undefined, - ): Promise { + ): Promise { retriesRemaining -= 1; // About the Retry-After header: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Retry-After @@ -479,7 +479,7 @@ export abstract class APIClient { const timeout = this.calculateRetryTimeoutSeconds(retriesRemaining, retryAfter, maxRetries) * 1000; await sleep(timeout); - return this.request(options, retriesRemaining); + return this.makeRequest(options, retriesRemaining); } private calculateRetryTimeoutSeconds( diff --git a/src/index.ts b/src/index.ts index 8c3d62901..21d207ec1 100644 --- a/src/index.ts +++ b/src/index.ts @@ -76,13 +76,27 @@ export interface ClientOptions { organization?: string | null; } -/** Instantiate the API Client. */ +/** API Client for interfacing with the OpenAI API. */ export class OpenAI extends Core.APIClient { apiKey: string; organization?: string | null; private _options: ClientOptions; + /** + * API Client for interfacing with the OpenAI API. + * + * @param {string} [opts.apiKey=process.env['OPENAI_API_KEY']] - The API Key to send to the API. + * @param {string} [opts.baseURL] - Override the default base URL for the API. + * @param {number} [opts.timeout=10 minutes] - The maximum amount of time (in milliseconds) the client will wait for a response before timing out. + * @param {number} [opts.httpAgent] - An HTTP agent used to manage HTTP(s) connections. + * @param {Core.Fetch} [opts.fetch] - Specify a custom `fetch` function implementation. + * @param {number} [opts.maxRetries=2] - The maximum number of times the client will retry a request. + * @param {Core.Headers} opts.defaultHeaders - Default headers to include with every request to the API. + * @param {Core.DefaultQuery} opts.defaultQuery - Default query parameters to include with every request to the API. + * @param {boolean} [opts.dangerouslyAllowBrowser=false] - By default, client-side use of this library is not allowed, as it risks exposing your secret API credentials to attackers. + * @param {string | null} [opts.organization] + */ constructor({ apiKey = Core.readEnv('OPENAI_API_KEY'), organization = Core.readEnv('OPENAI_ORG_ID') ?? null, diff --git a/src/resources/files.ts b/src/resources/files.ts index 9ad111ee7..0c6584f59 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -41,7 +41,7 @@ export class Files extends APIResource { /** * Returns the contents of the specified file */ - retrieveFileContent(fileId: string, options?: Core.RequestOptions): Core.APIPromise { + retrieveContent(fileId: string, options?: Core.RequestOptions): Core.APIPromise { return this.get(`/files/${fileId}/content`, { ...options, headers: { Accept: 'application/json', ...options?.headers }, diff --git a/src/version.ts b/src/version.ts index 3ca539369..afb51c559 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.0.0-beta.12'; +export const VERSION = '4.0.0'; diff --git a/tests/api-resources/files.test.ts b/tests/api-resources/files.test.ts index a735727b5..d75fa5067 100644 --- a/tests/api-resources/files.test.ts +++ b/tests/api-resources/files.test.ts @@ -6,8 +6,7 @@ import { Response } from 'node-fetch'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource files', () => { - // Prism tests are broken - test.skip('create: only required params', async () => { + test('create: only required params', async () => { const responsePromise = openai.files.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), purpose: 'string', @@ -21,8 +20,7 @@ describe('resource files', () => { expect(dataAndResponse.response).toBe(rawResponse); }); - // Prism tests are broken - test.skip('create: required and optional params', async () => { + test('create: required and optional params', async () => { const response = await openai.files.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), purpose: 'string', @@ -83,9 +81,8 @@ describe('resource files', () => { ); }); - // Prism tests are broken - test.skip('retrieveFileContent', async () => { - const responsePromise = openai.files.retrieveFileContent('string'); + test('retrieveContent', async () => { + const responsePromise = openai.files.retrieveContent('string'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -95,11 +92,10 @@ describe('resource files', () => { expect(dataAndResponse.response).toBe(rawResponse); }); - // Prism tests are broken - test.skip('retrieveFileContent: request options instead of params are passed correctly', async () => { + test('retrieveContent: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.files.retrieveFileContent('string', { path: '/_stainless_unknown_path' }), + openai.files.retrieveContent('string', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); }); diff --git a/tests/index.test.ts b/tests/index.test.ts index 36b4064ab..de1befa1e 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -3,7 +3,7 @@ import OpenAI from 'openai'; import { APIUserAbortError } from 'openai'; import { Headers } from 'openai/core'; -import { Response, fetch as defaultFetch } from 'openai/_shims/fetch'; +import { Response, fetch as defaultFetch, type RequestInit, type RequestInfo } from 'openai/_shims/fetch'; describe('instantiate client', () => { const env = process.env; @@ -188,3 +188,28 @@ describe('request building', () => { }); }); }); + +describe('retries', () => { + test('single retry', async () => { + let count = 0; + const testFetch = async (url: RequestInfo, { signal }: RequestInit = {}): Promise => { + if (!count++) + return new Promise((resolve, reject) => + signal?.addEventListener('abort', () => reject(new Error('timed out'))), + ); + return new Response(JSON.stringify({ a: 1 }), { headers: { 'Content-Type': 'application/json' } }); + }; + + const client = new OpenAI({ apiKey: 'my api key', timeout: 2000, fetch: testFetch }); + + expect(await client.request({ path: '/foo', method: 'get' })).toEqual({ a: 1 }); + expect(count).toEqual(2); + expect( + await client + .request({ path: '/foo', method: 'get' }) + .asResponse() + .then((r) => r.text()), + ).toEqual(JSON.stringify({ a: 1 })); + expect(count).toEqual(3); + }, 10000); +}); From 8f2cf4fa95741f15a6f1b0ff41f00dae523aad18 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Fri, 18 Aug 2023 18:45:38 -0700 Subject: [PATCH 029/725] v4.0.1 --- README.md | 2 +- ecosystem-tests/bun/.gitignore | 169 +++++++++++++++++++++++++++++ ecosystem-tests/bun/README.md | 15 +++ ecosystem-tests/bun/bun.lockb | Bin 0 -> 1686 bytes ecosystem-tests/bun/openai.test.ts | 48 ++++++++ ecosystem-tests/bun/package.json | 15 +++ ecosystem-tests/bun/tsconfig.json | 21 ++++ ecosystem-tests/cli.ts | 16 +++ package.json | 3 +- src/_shims/formdata.js | 10 +- src/_shims/formdata.mjs | 11 +- src/resources/chat/completions.ts | 4 + src/resources/completions.ts | 4 + src/resources/fine-tunes.ts | 5 + src/resources/moderations.ts | 67 ++++++++++-- src/version.ts | 2 +- yarn.lock | 26 ++++- 17 files changed, 403 insertions(+), 15 deletions(-) create mode 100644 ecosystem-tests/bun/.gitignore create mode 100644 ecosystem-tests/bun/README.md create mode 100755 ecosystem-tests/bun/bun.lockb create mode 100644 ecosystem-tests/bun/openai.test.ts create mode 100644 ecosystem-tests/bun/package.json create mode 100644 ecosystem-tests/bun/tsconfig.json diff --git a/README.md b/README.md index 1c139cab7..4cdebfe0a 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ main(); ## Streaming Responses -We provide support for streaming responses using Server Side Events (SSE). +We provide support for streaming responses using Server Sent Events (SSE). ```ts import OpenAI from 'openai'; diff --git a/ecosystem-tests/bun/.gitignore b/ecosystem-tests/bun/.gitignore new file mode 100644 index 000000000..f81d56eaa --- /dev/null +++ b/ecosystem-tests/bun/.gitignore @@ -0,0 +1,169 @@ +# Based on https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore + +# Logs + +logs +_.log +npm-debug.log_ +yarn-debug.log* +yarn-error.log* +lerna-debug.log* +.pnpm-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) + +report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json + +# Runtime data + +pids +_.pid +_.seed +\*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover + +lib-cov + +# Coverage directory used by tools like istanbul + +coverage +\*.lcov + +# nyc test coverage + +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) + +.grunt + +# Bower dependency directory (https://bower.io/) + +bower_components + +# node-waf configuration + +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) + +build/Release + +# Dependency directories + +node_modules/ +jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) + +web_modules/ + +# TypeScript cache + +\*.tsbuildinfo + +# Optional npm cache directory + +.npm + +# Optional eslint cache + +.eslintcache + +# Optional stylelint cache + +.stylelintcache + +# Microbundle cache + +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history + +.node_repl_history + +# Output of 'npm pack' + +\*.tgz + +# Yarn Integrity file + +.yarn-integrity + +# dotenv environment variable files + +.env +.env.development.local +.env.test.local +.env.production.local +.env.local + +# parcel-bundler cache (https://parceljs.org/) + +.cache +.parcel-cache + +# Next.js build output + +.next +out + +# Nuxt.js build / generate output + +.nuxt +dist + +# Gatsby files + +.cache/ + +# Comment in the public line in if your project uses Gatsby and not Next.js + +# https://nextjs.org/blog/next-9-1#public-directory-support + +# public + +# vuepress build output + +.vuepress/dist + +# vuepress v2.x temp and cache directory + +.temp +.cache + +# Docusaurus cache and generated files + +.docusaurus + +# Serverless directories + +.serverless/ + +# FuseBox cache + +.fusebox/ + +# DynamoDB Local files + +.dynamodb/ + +# TernJS port file + +.tern-port + +# Stores VSCode versions used for testing VSCode extensions + +.vscode-test + +# yarn v2 + +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.\* diff --git a/ecosystem-tests/bun/README.md b/ecosystem-tests/bun/README.md new file mode 100644 index 000000000..d4885a50c --- /dev/null +++ b/ecosystem-tests/bun/README.md @@ -0,0 +1,15 @@ +# openai-bun-test + +To install dependencies: + +```bash +bun install +``` + +To run: + +```bash +bun run index.ts +``` + +This project was created using `bun init` in bun v0.6.3. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime. diff --git a/ecosystem-tests/bun/bun.lockb b/ecosystem-tests/bun/bun.lockb new file mode 100755 index 0000000000000000000000000000000000000000..034e72a9f571e3d090edc46142b3ba60a3b09b98 GIT binary patch literal 1686 zcmY#Z)GsYA(of3F(@)JSQ%EY!;{sycoc!eMw9K4T-L(9o+{6;yG6OCq1_p+(FyDZ4 z6SK5ZtCB_IKiFPOvf-cIbxq3jlAZtMR2E(yHa4IlAYg`23>;{51C(D5Qvl}kGcYtL z0a?O8S`tWe0_nFQa#t00{a$VDmVV{LMxjI1Z_>|p2)$NfgqrYR%UU)N8^)KMbOFqV zN;8Pn-+gM$$i`6MlAjGz1Cj&z0t8Hf*dJ&QOilnSN|=D@ZviT`0_q3pUn z0FYXkdKe8-j$Qm8|38=`@t8@f6e9z~Tx6qJDkTqXHF+yJG1EauQB9R^xA28X(W{yb z&oA!nuPDE+zy4AAu|k3~`2f23W;F`bhxDVM2m7 zQj{Km#`_g0&1F+ul&qJTS6q^qlcNXAeR?59si}4fMg|JSnN_LzX*vof3W+(H>3R8S zTu8S4`wsyiA#k_@!vX|2pfs0Fsj-nAP%jo!Kz;@3v4E;|AwmzxY>g5&WW)&%%&ek>1GuJZ)>4b#Z;3EN{%rc(< literal 0 HcmV?d00001 diff --git a/ecosystem-tests/bun/openai.test.ts b/ecosystem-tests/bun/openai.test.ts new file mode 100644 index 000000000..243bc19a3 --- /dev/null +++ b/ecosystem-tests/bun/openai.test.ts @@ -0,0 +1,48 @@ +import OpenAI, { toFile } from 'openai'; +import { distance } from 'fastest-levenshtein'; +import { test, expect } from 'bun:test'; + +const client = new OpenAI(); + +function expectSimilar(received: any, comparedTo: string, expectedDistance: number) { + const message = () => + [ + `Received: ${JSON.stringify(received)}`, + `Expected: ${JSON.stringify(comparedTo)}`, + `Expected distance: ${expectedDistance}`, + `Received distance: ${actualDistance}`, + ].join('\n'); + + const actualDistance = distance(received, comparedTo); + expect(actualDistance).toBeLessThan(expectedDistance); +} + +test(`basic request works`, async function () { + const completion = await client.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + }); + expectSimilar(completion.choices[0]?.message?.content, 'This is a test', 10); +}); + +test(`streaming works`, async function () { + const stream = await client.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + stream: true, + }); + const chunks = []; + for await (const part of stream) { + chunks.push(part); + } + expectSimilar(chunks.map((c) => c.choices[0]?.delta.content || '').join(''), 'This is a test', 10); +}); + +test(`toFile rejects`, async function () { + try { + await toFile(new TextEncoder().encode('foo'), 'foo.txt'); + throw new Error(`expected toFile to reject`); + } catch (error) { + expect((error as any).message).toEqual(`file uploads aren't supported in this environment yet`); + } +}); diff --git a/ecosystem-tests/bun/package.json b/ecosystem-tests/bun/package.json new file mode 100644 index 000000000..3cedd94f7 --- /dev/null +++ b/ecosystem-tests/bun/package.json @@ -0,0 +1,15 @@ +{ + "name": "openai-bun-test", + "module": "index.ts", + "type": "module", + "scripts": { + "tsc": "tsc" + }, + "devDependencies": { + "fastest-levenshtein": "^1.0.16", + "bun-types": "latest" + }, + "peerDependencies": { + "typescript": "^5.0.0" + } +} diff --git a/ecosystem-tests/bun/tsconfig.json b/ecosystem-tests/bun/tsconfig.json new file mode 100644 index 000000000..29f8aa003 --- /dev/null +++ b/ecosystem-tests/bun/tsconfig.json @@ -0,0 +1,21 @@ +{ + "compilerOptions": { + "lib": ["ESNext"], + "module": "esnext", + "target": "esnext", + "moduleResolution": "bundler", + "moduleDetection": "force", + "allowImportingTsExtensions": true, + "strict": true, + "downlevelIteration": true, + "skipLibCheck": true, + "jsx": "preserve", + "allowSyntheticDefaultImports": true, + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "noEmit": true, + "types": [ + "bun-types" // add Bun global + ] + } +} diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index 228d08654..195dbf020 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -65,6 +65,22 @@ const projects = { await installPackage(); await run('npm', ['run', 'tsc']); }, + bun: async () => { + if (state.fromNpm) { + await run('bun', ['install', '-D', state.fromNpm]); + return; + } + + const packFile = getPackFile(); + await fs.copyFile(packFile, `./${TAR_NAME}`); + await run('bun', ['install', '-D', `./${TAR_NAME}`]); + + await run('npm', ['run', 'tsc']); + + if (state.live) { + await run('bun', ['test']); + } + }, deno: async () => { await run('deno', ['task', 'install']); await installPackage(); diff --git a/package.json b/package.json index f667a0d5a..f90c395b0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.0.0", + "version": "4.0.1", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", @@ -86,6 +86,7 @@ "@typescript-eslint/eslint-plugin": "^5.33.0", "@typescript-eslint/parser": "^5.33.0", "eslint": "^8.22.0", + "eslint-plugin-prettier": "^4.0.0", "eslint-plugin-unused-imports": "^2.0.0", "jest": "^29.4.0", "openai": "link:.", diff --git a/src/_shims/formdata.js b/src/_shims/formdata.js index a3debe985..8cbe41c4c 100644 --- a/src/_shims/formdata.js +++ b/src/_shims/formdata.js @@ -3,7 +3,15 @@ */ exports.FormData = FormData; -exports.File = File; exports.Blob = Blob; +exports.File = + typeof File !== 'undefined' ? File : ( + // Bun doesn't implement File yet, so just make a shim that throws a helpful error message + class File extends Blob { + constructor() { + throw new Error(`file uploads aren't supported in this environment yet as 'File' is not defined`); + } + } + ); exports.isPolyfilled = false; diff --git a/src/_shims/formdata.mjs b/src/_shims/formdata.mjs index 2871d1309..3ee740bdf 100644 --- a/src/_shims/formdata.mjs +++ b/src/_shims/formdata.mjs @@ -3,9 +3,18 @@ */ const _FormData = FormData; -const _File = File; const _Blob = Blob; +const _File = + typeof File !== 'undefined' ? File : ( + // Bun doesn't implement File yet, so just make a shim that throws a helpful error message + class File extends Blob { + constructor() { + throw new Error(`file uploads aren't supported in this environment yet as 'File' is not defined`); + } + } + ); + export { _FormData as FormData, _File as File, _Blob as Blob }; export const isPolyfilled = false; diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index a2f603f54..14b650211 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -16,6 +16,10 @@ export class Completions extends APIResource { body: CompletionCreateParamsStreaming, options?: Core.RequestOptions, ): APIPromise>; + create( + body: CompletionCreateParams, + options?: Core.RequestOptions, + ): APIPromise | ChatCompletion>; create( body: CompletionCreateParams, options?: Core.RequestOptions, diff --git a/src/resources/completions.ts b/src/resources/completions.ts index 8c21b6898..b55e563d3 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -15,6 +15,10 @@ export class Completions extends APIResource { body: CompletionCreateParamsStreaming, options?: Core.RequestOptions, ): APIPromise>; + create( + body: CompletionCreateParams, + options?: Core.RequestOptions, + ): APIPromise | Completion>; create( body: CompletionCreateParams, options?: Core.RequestOptions, diff --git a/src/resources/fine-tunes.ts b/src/resources/fine-tunes.ts index fd42894d9..b022cb145 100644 --- a/src/resources/fine-tunes.ts +++ b/src/resources/fine-tunes.ts @@ -57,6 +57,11 @@ export class FineTunes extends APIResource { query: FineTuneListEventsParamsStreaming, options?: Core.RequestOptions, ): APIPromise>; + listEvents( + fineTuneId: string, + query?: FineTuneListEventsParams | undefined, + options?: Core.RequestOptions, + ): APIPromise | FineTuneEventsListResponse>; listEvents( fineTuneId: string, query?: FineTuneListEventsParams | undefined, diff --git a/src/resources/moderations.ts b/src/resources/moderations.ts index d885c71ac..516921b84 100644 --- a/src/resources/moderations.ts +++ b/src/resources/moderations.ts @@ -40,37 +40,70 @@ export namespace Moderation { */ export interface Categories { /** - * Whether the content was flagged as 'hate'. + * Content that expresses, incites, or promotes harassing language towards any + * target. + */ + harassment: boolean; + + /** + * Harassment content that also includes violence or serious harm towards any + * target. + */ + 'harassment/threatening': boolean; + + /** + * Content that expresses, incites, or promotes hate based on race, gender, + * ethnicity, religion, nationality, sexual orientation, disability status, or + * caste. Hateful content aimed at non-protected groups (e.g., chess players) is + * harrassment. */ hate: boolean; /** - * Whether the content was flagged as 'hate/threatening'. + * Hateful content that also includes violence or serious harm towards the targeted + * group based on race, gender, ethnicity, religion, nationality, sexual + * orientation, disability status, or caste. */ 'hate/threatening': boolean; /** - * Whether the content was flagged as 'self-harm'. + * Content that promotes, encourages, or depicts acts of self-harm, such as + * suicide, cutting, and eating disorders. */ 'self-harm': boolean; /** - * Whether the content was flagged as 'sexual'. + * Content that encourages performing acts of self-harm, such as suicide, cutting, + * and eating disorders, or that gives instructions or advice on how to commit such + * acts. + */ + 'self-harm/instructions': boolean; + + /** + * Content where the speaker expresses that they are engaging or intend to engage + * in acts of self-harm, such as suicide, cutting, and eating disorders. + */ + 'self-harm/intent': boolean; + + /** + * Content meant to arouse sexual excitement, such as the description of sexual + * activity, or that promotes sexual services (excluding sex education and + * wellness). */ sexual: boolean; /** - * Whether the content was flagged as 'sexual/minors'. + * Sexual content that includes an individual who is under 18 years old. */ 'sexual/minors': boolean; /** - * Whether the content was flagged as 'violence'. + * Content that depicts death, violence, or physical injury. */ violence: boolean; /** - * Whether the content was flagged as 'violence/graphic'. + * Content that depicts death, violence, or physical injury in graphic detail. */ 'violence/graphic': boolean; } @@ -79,6 +112,16 @@ export namespace Moderation { * A list of the categories along with their scores as predicted by model. */ export interface CategoryScores { + /** + * The score for the category 'harassment'. + */ + harassment: number; + + /** + * The score for the category 'harassment/threatening'. + */ + 'harassment/threatening': number; + /** * The score for the category 'hate'. */ @@ -94,6 +137,16 @@ export namespace Moderation { */ 'self-harm': number; + /** + * The score for the category 'self-harm/instructions'. + */ + 'self-harm/instructions': number; + + /** + * The score for the category 'self-harm/intent'. + */ + 'self-harm/intent': number; + /** * The score for the category 'sexual'. */ diff --git a/src/version.ts b/src/version.ts index afb51c559..6bddb949d 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.0.0'; +export const VERSION = '4.0.1'; diff --git a/yarn.lock b/yarn.lock index 6d0613949..dba8c9628 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1009,9 +1009,6 @@ "@typescript-eslint/types" "5.62.0" eslint-visitor-keys "^3.3.0" -"openai@link:.": - version "0.0.0" - abort-controller@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" @@ -1713,6 +1710,13 @@ escape-string-regexp@^4.0.0: resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== +eslint-plugin-prettier@^4.0.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz#651cbb88b1dab98bfd42f017a12fa6b2d993f94b" + integrity sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ== + dependencies: + prettier-linter-helpers "^1.0.0" + eslint-plugin-unused-imports@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/eslint-plugin-unused-imports/-/eslint-plugin-unused-imports-2.0.0.tgz#d8db8c4d0cfa0637a8b51ce3fd7d1b6bc3f08520" @@ -1887,6 +1891,11 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== +fast-diff@^1.1.2: + version "1.3.0" + resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.3.0.tgz#ece407fa550a64d638536cd727e129c61616e0f0" + integrity sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw== + fast-glob@3.2.12, fast-glob@^3.2.12: version "3.2.12" resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" @@ -3105,6 +3114,10 @@ onetime@^5.1.2: dependencies: mimic-fn "^2.1.0" +"openai@link:.": + version "0.0.0" + uid "" + optionator@^0.9.3: version "0.9.3" resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" @@ -3328,6 +3341,13 @@ prelude-ls@^1.2.1: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== +prettier-linter-helpers@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" + integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== + dependencies: + fast-diff "^1.1.2" + prettier@rattrayalex/prettier#postfix-ternaries: version "2.9.0-dev" resolved "https://codeload.github.com/rattrayalex/prettier/tar.gz/ec73d020c586dbc1ca4f6fbd7b612541a9a8002e" From c24a64c54db4a203604db4cd0c064c72647a2cfe Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Sat, 19 Aug 2023 08:08:41 -0700 Subject: [PATCH 030/725] Improved issue templates --- .github/ISSUE_TEMPLATE/bug_report.yml | 10 +++++++++- .github/ISSUE_TEMPLATE/feature_request.yml | 8 ++++++++ .github/pull_request_template.md | 11 +++++++++++ 3 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 .github/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 72fedbf5a..c568a50c5 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,11 +1,19 @@ name: Bug report -description: Create a report to help us improve +description: Report an issue or bug with this library labels: ['bug'] body: - type: markdown attributes: value: | Thanks for taking the time to fill out this bug report! + - type: checkboxes + id: non_api + attributes: + label: Confirm this is a Node library issue and not an underlying OpenAI API issue + description: Issues with the underlying OpenAI API should be reported on our [Developer Community](https://community.openai.com/c/api/7) + options: + - label: This is an issue with the Node library + required: true - type: textarea id: what-happened attributes: diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 1be579964..8959fe9bc 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -6,6 +6,14 @@ body: attributes: value: | Thanks for taking the time to fill out this feature request! + - type: checkboxes + id: non_api + attributes: + label: Confirm this is a feature request for the Node library and not the underlying OpenAI API. + description: Feature requests for the underlying OpenAI API should be reported on our [Developer Community](https://community.openai.com/c/api/7) + options: + - label: This is a feature request for the Node library + required: true - type: textarea id: feature attributes: diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 000000000..a2b4bd420 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,11 @@ + + + + + +- [ ] I understand that this repository is auto-generated and my pull request may not be merged + +## Changes being requested + + +## Additional context & links From 80a748e22f75e0c235bc3ae43d3bac0160e28c79 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Sun, 20 Aug 2023 16:37:07 -0700 Subject: [PATCH 031/725] remove tests --- .github/workflows/test.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index ceaf21b5d..000000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Node.js CI - -on: - push: - branches: [master] - pull_request: - branches: [master] - -jobs: - build: - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [16.x, 18.x] - steps: - - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - cache: 'npm' - - run: npm ci - - run: npm run build From b0c9fdba204ff3f17ec3172e7cc76e41b2c23612 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Sun, 20 Aug 2023 17:51:15 -0700 Subject: [PATCH 032/725] Create CODEOWNERS --- .github/CODEOWNERS | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 000000000..db2021c5c --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @schnerd @athyuttamre @logankilpatrick # Should probably replace with a team alias soon From ddb2815759d027af77ba05bc22c089d8237e008a Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Tue, 22 Aug 2023 14:10:21 -0700 Subject: [PATCH 033/725] v4.1.0 --- .github/pull_request_template.md | 1 - .stats.yml | 2 +- api.md | 17 ++ examples/chat-params-types.ts | 114 ++++++++ examples/types.ts | 31 ++ package.json | 2 +- src/core.ts | 2 +- src/index.ts | 3 + src/resources/chat/completions.ts | 10 +- src/resources/completions.ts | 12 +- src/resources/files.ts | 6 +- src/resources/fine-tunes.ts | 44 +-- src/resources/fine-tuning/fine-tuning.ts | 20 ++ src/resources/fine-tuning/index.ts | 13 + src/resources/fine-tuning/jobs.ts | 291 +++++++++++++++++++ src/resources/index.ts | 1 + src/version.ts | 2 +- tests/api-resources/fine-tunes.test.ts | 6 +- tests/api-resources/fine-tuning/jobs.test.ts | 122 ++++++++ tests/api-resources/models.test.ts | 8 +- 20 files changed, 665 insertions(+), 42 deletions(-) create mode 100755 examples/chat-params-types.ts create mode 100755 examples/types.ts create mode 100644 src/resources/fine-tuning/fine-tuning.ts create mode 100644 src/resources/fine-tuning/index.ts create mode 100644 src/resources/fine-tuning/jobs.ts create mode 100644 tests/api-resources/fine-tuning/jobs.test.ts diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index a2b4bd420..4416b1e54 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -7,5 +7,4 @@ ## Changes being requested - ## Additional context & links diff --git a/.stats.yml b/.stats.yml index c125dfb22..f21eb8fef 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1 +1 @@ -configured_endpoints: 23 +configured_endpoints: 28 diff --git a/api.md b/api.md index 722e833a3..1c443b4f1 100644 --- a/api.md +++ b/api.md @@ -121,6 +121,23 @@ Methods: - client.models.list() -> ModelsPage - client.models.del(model) -> ModelDeleted +# FineTuning + +## Jobs + +Types: + +- FineTuningJob +- FineTuningJobEvent + +Methods: + +- client.fineTuning.jobs.create({ ...params }) -> FineTuningJob +- client.fineTuning.jobs.retrieve(fineTuningJobId) -> FineTuningJob +- client.fineTuning.jobs.list({ ...params }) -> FineTuningJobsPage +- client.fineTuning.jobs.cancel(fineTuningJobId) -> FineTuningJob +- client.fineTuning.jobs.listEvents(fineTuningJobId, { ...params }) -> FineTuningJobEventsPage + # FineTunes Types: diff --git a/examples/chat-params-types.ts b/examples/chat-params-types.ts new file mode 100755 index 000000000..66f27ed31 --- /dev/null +++ b/examples/chat-params-types.ts @@ -0,0 +1,114 @@ +#!/usr/bin/env -S npm run tsn -T + +import OpenAI from 'openai'; +import { Stream } from 'openai/streaming'; + +// gets API Key from environment variable OPENAI_API_KEY +const openai = new OpenAI(); + +async function main() { + // ---------------- Explicit non-streaming params ------------ + + const params: OpenAI.Chat.CompletionCreateParams = { + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test!' }], + }; + const completion = await openai.chat.completions.create(params); + console.log(completion.choices[0]?.message?.content); + + // ---------------- Explicit streaming params ---------------- + + const streamingParams: OpenAI.Chat.CompletionCreateParams = { + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test!' }], + stream: true, + }; + + const stream = await openai.chat.completions.create(streamingParams); + for await (const chunk of stream) { + process.stdout.write(chunk.choices[0]?.delta?.content || ''); + } + process.stdout.write('\n'); + + // ---------------- Explicit (non)streaming types ---------------- + + const params1: OpenAI.Chat.CompletionCreateParamsNonStreaming = { + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test!' }], + }; + + const params2: OpenAI.Chat.CompletionCreateParamsStreaming = { + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test!' }], + stream: true, + }; + + // ---------------- Implicit params type ------------------- + + // Note: the `as const` is required here so that TS can properly infer + // the right params type. + // + // If you didn't include it then you'd also get an error saying that + // `role: string` is not assignable. + const streamingParams2 = { + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test!' }], + stream: true, + } as const; + + // TS knows this is a Stream instance. + const stream2 = await openai.chat.completions.create(streamingParams2); + for await (const chunk of stream2) { + process.stdout.write(chunk.choices[0]?.delta?.content || ''); + } + process.stdout.write('\n'); + + // Without the `as const` for `stream`. + const streamingParams3 = { + model: 'gpt-4', + messages: [{ role: 'user' as const, content: 'Say this is a test!' }], + stream: true, + }; + + // TS doesn't know if this is a `Stream` or a direct response + const response = await openai.chat.completions.create(streamingParams3); + if (response instanceof Stream) { + // here TS knows the response type is a `Stream` + } else { + // here TS knows the response type is a `ChatCompletion` + } + + // ---------------- Dynamic params type ------------------- + + // TS knows this is a `Stream` + const streamParamsFromFn = await createCompletionParams(true); + const streamFromFn = await openai.chat.completions.create(streamParamsFromFn); + console.log(streamFromFn); + + // TS knows this is a `ChatCompletion` + const paramsFromFn = await createCompletionParams(false); + const completionFromFn = await openai.chat.completions.create(paramsFromFn); + console.log(completionFromFn); +} + +// Dynamically construct the params object while retaining whether or +// not the response will be streamed. +export async function createCompletionParams( + stream: true, +): Promise; +export async function createCompletionParams( + stream: false, +): Promise; +export async function createCompletionParams(stream: boolean): Promise { + const params = { + model: 'gpt-3.5-turbo', + messages: [{ role: 'user' as const, content: 'Hello!' }], + stream: stream, + }; + + // + + return params; +} + +main(); diff --git a/examples/types.ts b/examples/types.ts new file mode 100755 index 000000000..482e1f6be --- /dev/null +++ b/examples/types.ts @@ -0,0 +1,31 @@ +#!/usr/bin/env -S npm run tsn -T + +import OpenAI from 'openai'; + +// gets API Key from environment variable OPENAI_API_KEY +const openai = new OpenAI(); + +async function main() { + // Explicit non streaming params type: + const params: OpenAI.Chat.CompletionCreateParams = { + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test!' }], + }; + const completion = await openai.chat.completions.create(params); + console.log(completion.choices[0]?.message?.content); + + // Explicit streaming params type: + const streaming_params: OpenAI.Chat.CompletionCreateParams = { + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test!' }], + stream: true, + }; + + const stream = await openai.chat.completions.create(streaming_params); + for await (const chunk of stream) { + process.stdout.write(chunk.choices[0]?.delta?.content || ''); + } + process.stdout.write('\n'); +} + +main(); diff --git a/package.json b/package.json index f90c395b0..d475ee30d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.0.1", + "version": "4.1.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/core.ts b/src/core.ts index b381aeb75..814370617 100644 --- a/src/core.ts +++ b/src/core.ts @@ -803,7 +803,7 @@ declare const navigator: { userAgent: string } | undefined; // Note: modified from https://github.com/JS-DevTools/host-environment/blob/b1ab79ecde37db5d6e163c050e54fe7d287d7c92/src/isomorphic.browser.ts function getBrowserInfo(): BrowserInfo | null { - if (!navigator || typeof navigator === 'undefined') { + if (typeof navigator === 'undefined' || !navigator) { return null; } diff --git a/src/index.ts b/src/index.ts index 21d207ec1..87553948a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -143,6 +143,7 @@ export class OpenAI extends Core.APIClient { audio: API.Audio = new API.Audio(this); moderations: API.Moderations = new API.Moderations(this); models: API.Models = new API.Models(this); + fineTuning: API.FineTuning = new API.FineTuning(this); fineTunes: API.FineTunes = new API.FineTunes(this); protected override defaultQuery(): Core.DefaultQuery | undefined { @@ -248,6 +249,8 @@ export namespace OpenAI { export import ModelDeleted = API.ModelDeleted; export import ModelsPage = API.ModelsPage; + export import FineTuning = API.FineTuning; + export import FineTunes = API.FineTunes; export import FineTune = API.FineTune; export import FineTuneEvent = API.FineTuneEvent; diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 14b650211..b05ab1eb4 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -17,7 +17,7 @@ export class Completions extends APIResource { options?: Core.RequestOptions, ): APIPromise>; create( - body: CompletionCreateParams, + body: CompletionCreateParamsBase, options?: Core.RequestOptions, ): APIPromise | ChatCompletion>; create( @@ -278,7 +278,9 @@ export namespace CreateChatCompletionRequestMessage { } } -export interface CompletionCreateParams { +export type CompletionCreateParams = CompletionCreateParamsNonStreaming | CompletionCreateParamsStreaming; + +export interface CompletionCreateParamsBase { /** * A list of messages comprising the conversation so far. * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_format_inputs_to_ChatGPT_models.ipynb). @@ -441,7 +443,7 @@ export namespace CompletionCreateParams { export type CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; } -export interface CompletionCreateParamsNonStreaming extends CompletionCreateParams { +export interface CompletionCreateParamsNonStreaming extends CompletionCreateParamsBase { /** * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be * sent as data-only @@ -453,7 +455,7 @@ export interface CompletionCreateParamsNonStreaming extends CompletionCreatePara stream?: false | null; } -export interface CompletionCreateParamsStreaming extends CompletionCreateParams { +export interface CompletionCreateParamsStreaming extends CompletionCreateParamsBase { /** * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be * sent as data-only diff --git a/src/resources/completions.ts b/src/resources/completions.ts index b55e563d3..f971034d8 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -16,7 +16,7 @@ export class Completions extends APIResource { options?: Core.RequestOptions, ): APIPromise>; create( - body: CompletionCreateParams, + body: CompletionCreateParamsBase, options?: Core.RequestOptions, ): APIPromise | Completion>; create( @@ -112,7 +112,9 @@ export interface CompletionUsage { total_tokens: number; } -export interface CompletionCreateParams { +export type CompletionCreateParams = CompletionCreateParamsNonStreaming | CompletionCreateParamsStreaming; + +export interface CompletionCreateParamsBase { /** * ID of the model to use. You can use the * [List models](/docs/api-reference/models/list) API to see all of your available @@ -121,6 +123,8 @@ export interface CompletionCreateParams { */ model: | (string & {}) + | 'babbage-002' + | 'davinci-002' | 'text-davinci-003' | 'text-davinci-002' | 'text-davinci-001' @@ -272,7 +276,7 @@ export namespace CompletionCreateParams { export type CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; } -export interface CompletionCreateParamsNonStreaming extends CompletionCreateParams { +export interface CompletionCreateParamsNonStreaming extends CompletionCreateParamsBase { /** * Whether to stream back partial progress. If set, tokens will be sent as * data-only @@ -284,7 +288,7 @@ export interface CompletionCreateParamsNonStreaming extends CompletionCreatePara stream?: false | null; } -export interface CompletionCreateParamsStreaming extends CompletionCreateParams { +export interface CompletionCreateParamsStreaming extends CompletionCreateParamsBase { /** * Whether to stream back partial progress. If set, tokens will be sent as * data-only diff --git a/src/resources/files.ts b/src/resources/files.ts index 0c6584f59..ae88eaef0 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -118,16 +118,14 @@ export interface FileCreateParams { * Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be * uploaded. * - * If the `purpose` is set to "fine-tune", each line is a JSON record with "prompt" - * and "completion" fields representing your - * [training examples](/docs/guides/fine-tuning/prepare-training-data). + * If the `purpose` is set to "fine-tune", the file will be used for fine-tuning. */ file: Uploadable; /** * The intended purpose of the uploaded documents. * - * Use "fine-tune" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows + * Use "fine-tune" for [fine-tuning](/docs/api-reference/fine-tuning). This allows * us to validate the format of the uploaded file. */ purpose: string; diff --git a/src/resources/fine-tunes.ts b/src/resources/fine-tunes.ts index b022cb145..1d09f7cf3 100644 --- a/src/resources/fine-tunes.ts +++ b/src/resources/fine-tunes.ts @@ -15,7 +15,7 @@ export class FineTunes extends APIResource { * Response includes details of the enqueued job including job status and the name * of the fine-tuned models once complete. * - * [Learn more about Fine-tuning](/docs/guides/fine-tuning) + * [Learn more about fine-tuning](/docs/guides/legacy-fine-tuning) */ create(body: FineTuneCreateParams, options?: Core.RequestOptions): Core.APIPromise { return this.post('/fine-tunes', { body, ...options }); @@ -24,7 +24,7 @@ export class FineTunes extends APIResource { /** * Gets info about the fine-tune job. * - * [Learn more about Fine-tuning](/docs/guides/fine-tuning) + * [Learn more about fine-tuning](/docs/guides/legacy-fine-tuning) */ retrieve(fineTuneId: string, options?: Core.RequestOptions): Core.APIPromise { return this.get(`/fine-tunes/${fineTuneId}`, options); @@ -59,7 +59,7 @@ export class FineTunes extends APIResource { ): APIPromise>; listEvents( fineTuneId: string, - query?: FineTuneListEventsParams | undefined, + query?: FineTuneListEventsParamsBase | undefined, options?: Core.RequestOptions, ): APIPromise | FineTuneEventsListResponse>; listEvents( @@ -84,8 +84,8 @@ export class FineTunesPage extends Page {} type _FineTunesPage = FineTunesPage; /** - * The `FineTune` object represents a fine-tuning job that has been created through - * the API. + * The `FineTune` object represents a legacy fine-tune job that has been created + * through the API. */ export interface FineTune { /** @@ -105,7 +105,8 @@ export interface FineTune { /** * The hyperparameters used for the fine-tuning job. See the - * [Fine-tuning Guide](/docs/guides/fine-tuning/hyperparameters) for more details. + * [fine-tuning guide](/docs/guides/legacy-fine-tuning/hyperparameters) for more + * details. */ hyperparams: FineTune.Hyperparams; @@ -131,7 +132,7 @@ export interface FineTune { /** * The current status of the fine-tuning job, which can be either `created`, - * `pending`, `running`, `succeeded`, `failed`, or `cancelled`. + * `running`, `succeeded`, `failed`, or `cancelled`. */ status: string; @@ -159,7 +160,8 @@ export interface FineTune { export namespace FineTune { /** * The hyperparameters used for the fine-tuning job. See the - * [Fine-tuning Guide](/docs/guides/fine-tuning/hyperparameters) for more details. + * [fine-tuning guide](/docs/guides/legacy-fine-tuning/hyperparameters) for more + * details. */ export interface Hyperparams { /** @@ -228,7 +230,8 @@ export interface FineTuneCreateParams { * JSON object with the keys "prompt" and "completion". Additionally, you must * upload your file with the purpose `fine-tune`. * - * See the [fine-tuning guide](/docs/guides/fine-tuning/creating-training-data) for + * See the + * [fine-tuning guide](/docs/guides/legacy-fine-tuning/creating-training-data) for * more details. */ training_file: string; @@ -273,7 +276,7 @@ export interface FineTuneCreateParams { * If set, we calculate classification-specific metrics such as accuracy and F-1 * score using the validation set at the end of every epoch. These metrics can be * viewed in the - * [results file](/docs/guides/fine-tuning/analyzing-your-fine-tuned-model). + * [results file](/docs/guides/legacy-fine-tuning/analyzing-your-fine-tuned-model). * * In order to compute classification metrics, you must provide a * `validation_file`. Additionally, you must specify `classification_n_classes` for @@ -295,9 +298,9 @@ export interface FineTuneCreateParams { /** * The name of the base model to fine-tune. You can select one of "ada", "babbage", - * "curie", "davinci", or a fine-tuned model created after 2022-04-21. To learn - * more about these models, see the - * [Models](https://platform.openai.com/docs/models) documentation. + * "curie", "davinci", or a fine-tuned model created after 2022-04-21 and before + * 2023-08-22. To learn more about these models, see the [Models](/docs/models) + * documentation. */ model?: (string & {}) | 'ada' | 'babbage' | 'curie' | 'davinci' | null; @@ -332,20 +335,25 @@ export interface FineTuneCreateParams { * * If you provide this file, the data is used to generate validation metrics * periodically during fine-tuning. These metrics can be viewed in the - * [fine-tuning results file](/docs/guides/fine-tuning/analyzing-your-fine-tuned-model). + * [fine-tuning results file](/docs/guides/legacy-fine-tuning/analyzing-your-fine-tuned-model). * Your train and validation data should be mutually exclusive. * * Your dataset must be formatted as a JSONL file, where each validation example is * a JSON object with the keys "prompt" and "completion". Additionally, you must * upload your file with the purpose `fine-tune`. * - * See the [fine-tuning guide](/docs/guides/fine-tuning/creating-training-data) for + * See the + * [fine-tuning guide](/docs/guides/legacy-fine-tuning/creating-training-data) for * more details. */ validation_file?: string | null; } -export interface FineTuneListEventsParams { +export type FineTuneListEventsParams = + | FineTuneListEventsParamsNonStreaming + | FineTuneListEventsParamsStreaming; + +export interface FineTuneListEventsParamsBase { /** * Whether to stream events for the fine-tune job. If set to true, events will be * sent as data-only @@ -363,7 +371,7 @@ export namespace FineTuneListEventsParams { export type FineTuneListEventsParamsStreaming = API.FineTuneListEventsParamsStreaming; } -export interface FineTuneListEventsParamsNonStreaming extends FineTuneListEventsParams { +export interface FineTuneListEventsParamsNonStreaming extends FineTuneListEventsParamsBase { /** * Whether to stream events for the fine-tune job. If set to true, events will be * sent as data-only @@ -376,7 +384,7 @@ export interface FineTuneListEventsParamsNonStreaming extends FineTuneListEvents stream?: false; } -export interface FineTuneListEventsParamsStreaming extends FineTuneListEventsParams { +export interface FineTuneListEventsParamsStreaming extends FineTuneListEventsParamsBase { /** * Whether to stream events for the fine-tune job. If set to true, events will be * sent as data-only diff --git a/src/resources/fine-tuning/fine-tuning.ts b/src/resources/fine-tuning/fine-tuning.ts new file mode 100644 index 000000000..2e4c69f57 --- /dev/null +++ b/src/resources/fine-tuning/fine-tuning.ts @@ -0,0 +1,20 @@ +// File generated from our OpenAPI spec by Stainless. + +import { APIResource } from 'openai/resource'; +import { Jobs } from './jobs'; +import * as API from './index'; + +export class FineTuning extends APIResource { + jobs: Jobs = new Jobs(this.client); +} + +export namespace FineTuning { + export import Jobs = API.Jobs; + export import FineTuningJob = API.FineTuningJob; + export import FineTuningJobEvent = API.FineTuningJobEvent; + export import FineTuningJobsPage = API.FineTuningJobsPage; + export import FineTuningJobEventsPage = API.FineTuningJobEventsPage; + export import JobCreateParams = API.JobCreateParams; + export import JobListParams = API.JobListParams; + export import JobListEventsParams = API.JobListEventsParams; +} diff --git a/src/resources/fine-tuning/index.ts b/src/resources/fine-tuning/index.ts new file mode 100644 index 000000000..c2cac49ac --- /dev/null +++ b/src/resources/fine-tuning/index.ts @@ -0,0 +1,13 @@ +// File generated from our OpenAPI spec by Stainless. + +export { FineTuning } from './fine-tuning'; +export { + FineTuningJob, + FineTuningJobEvent, + JobCreateParams, + JobListParams, + JobListEventsParams, + FineTuningJobsPage, + FineTuningJobEventsPage, + Jobs, +} from './jobs'; diff --git a/src/resources/fine-tuning/jobs.ts b/src/resources/fine-tuning/jobs.ts new file mode 100644 index 000000000..7b05b8682 --- /dev/null +++ b/src/resources/fine-tuning/jobs.ts @@ -0,0 +1,291 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; +import { isRequestOptions } from 'openai/core'; +import * as Files from 'openai/resources/files'; +import * as API from './index'; +import { Page } from 'openai/pagination'; + +export class Jobs extends APIResource { + /** + * Creates a job that fine-tunes a specified model from a given dataset. + * + * Response includes details of the enqueued job including job status and the name + * of the fine-tuned models once complete. + * + * [Learn more about fine-tuning](/docs/guides/fine-tuning) + */ + create(body: JobCreateParams, options?: Core.RequestOptions): Core.APIPromise { + return this.post('/fine_tuning/jobs', { body, ...options }); + } + + /** + * Get info about a fine-tuning job. + * + * [Learn more about fine-tuning](/docs/guides/fine-tuning) + */ + retrieve(fineTuningJobId: string, options?: Core.RequestOptions): Core.APIPromise { + return this.get(`/fine_tuning/jobs/${fineTuningJobId}`, options); + } + + /** + * List your organization's fine-tuning jobs + */ + list( + query?: JobListParams, + options?: Core.RequestOptions, + ): Core.PagePromise; + list(options?: Core.RequestOptions): Core.PagePromise; + list( + query: JobListParams | Core.RequestOptions = {}, + options?: Core.RequestOptions, + ): Core.PagePromise { + if (isRequestOptions(query)) { + return this.list({}, query); + } + return this.getAPIList('/fine_tuning/jobs', FineTuningJobsPage, { query, ...options }); + } + + /** + * Immediately cancel a fine-tune job. + */ + cancel(fineTuningJobId: string, options?: Core.RequestOptions): Core.APIPromise { + return this.post(`/fine_tuning/jobs/${fineTuningJobId}/cancel`, options); + } + + /** + * Get status updates for a fine-tuning job. + */ + listEvents( + fineTuningJobId: string, + query?: JobListEventsParams, + options?: Core.RequestOptions, + ): Core.PagePromise; + listEvents( + fineTuningJobId: string, + options?: Core.RequestOptions, + ): Core.PagePromise; + listEvents( + fineTuningJobId: string, + query: JobListEventsParams | Core.RequestOptions = {}, + options?: Core.RequestOptions, + ): Core.PagePromise { + if (isRequestOptions(query)) { + return this.listEvents(fineTuningJobId, {}, query); + } + return this.getAPIList(`/fine_tuning/jobs/${fineTuningJobId}/events`, FineTuningJobEventsPage, { + query, + ...options, + }); + } +} + +/** + * Note: no pagination actually occurs yet, this is for forwards-compatibility. + */ +export class FineTuningJobsPage extends Page {} +// alias so we can export it in the namespace +type _FineTuningJobsPage = FineTuningJobsPage; + +/** + * Note: no pagination actually occurs yet, this is for forwards-compatibility. + */ +export class FineTuningJobEventsPage extends Page {} +// alias so we can export it in the namespace +type _FineTuningJobEventsPage = FineTuningJobEventsPage; + +/** + * The `fine_tuning.job` object represents a fine-tuning job that has been created + * through the API. + */ +export interface FineTuningJob { + /** + * The object identifier, which can be referenced in the API endpoints. + */ + id: string; + + /** + * The unix timestamp for when the fine-tuning job was created. + */ + created_at: number; + + /** + * The name of the fine-tuned model that is being created. + */ + fine_tuned_model: string | null; + + /** + * The hyperparameters used for the fine-tuning job. See the + * [fine-tuning guide](/docs/guides/fine-tuning) for more details. + */ + hyperparameters: FineTuningJob.Hyperparameters; + + /** + * The base model that is being fine-tuned. + */ + model: string; + + /** + * The object type, which is always "fine_tuning.job". + */ + object: string; + + /** + * The organization that owns the fine-tuning job. + */ + organization_id: string; + + /** + * The compiled results files for the fine-tuning job. + */ + result_files: Array; + + /** + * The current status of the fine-tuning job, which can be either `created`, + * `pending`, `running`, `succeeded`, `failed`, or `cancelled`. + */ + status: string; + + /** + * The total number of billable tokens processed by this fine tuning job. + */ + trained_tokens: number; + + /** + * The file ID used for training. + */ + training_file: string; + + /** + * The file ID used for validation. + */ + validation_file: string; + + /** + * The unix timestamp for when the fine-tuning job was finished. + */ + finished_at?: number; +} + +export namespace FineTuningJob { + /** + * The hyperparameters used for the fine-tuning job. See the + * [fine-tuning guide](/docs/guides/fine-tuning) for more details. + */ + export interface Hyperparameters { + /** + * The number of epochs to train the model for. An epoch refers to one full cycle + * through the training dataset. "Auto" decides the optimal number of epochs based + * on the size of the dataset. If setting the number manually, we support any + * number between 1 and 50 epochs. + */ + n_epochs?: 'auto' | number; + } +} + +export interface FineTuningJobEvent { + created_at: number; + + level: 'info' | 'warn' | 'error'; + + message: string; + + object: string; +} + +export interface JobCreateParams { + /** + * The name of the model to fine-tune. You can select one of the + * [supported models](/docs/guides/fine-tuning/what-models-can-be-fine-tuned). + */ + model: (string & {}) | 'babbage-002' | 'davinci-002' | 'gpt-3.5-turbo'; + + /** + * The ID of an uploaded file that contains training data. + * + * See [upload file](/docs/api-reference/files/upload) for how to upload a file. + * + * Your dataset must be formatted as a JSONL file. Additionally, you must upload + * your file with the purpose `fine-tune`. + * + * See the [fine-tuning guide](/docs/guides/fine-tuning) for more details. + */ + training_file: string; + + /** + * The hyperparameters used for the fine-tuning job. + */ + hyperparameters?: JobCreateParams.Hyperparameters; + + /** + * A string of up to 40 characters that will be added to your fine-tuned model + * name. + * + * For example, a `suffix` of "custom-model-name" would produce a model name like + * `ft:gpt-3.5-turbo:openai:custom-model-name:7p4lURel`. + */ + suffix?: string | null; + + /** + * The ID of an uploaded file that contains validation data. + * + * If you provide this file, the data is used to generate validation metrics + * periodically during fine-tuning. These metrics can be viewed in the fine-tuning + * results file. The same data should not be present in both train and validation + * files. + * + * Your dataset must be formatted as a JSONL file. You must upload your file with + * the purpose `fine-tune`. + * + * See the [fine-tuning guide](/docs/guides/fine-tuning) for more details. + */ + validation_file?: string | null; +} + +export namespace JobCreateParams { + /** + * The hyperparameters used for the fine-tuning job. + */ + export interface Hyperparameters { + /** + * The number of epochs to train the model for. An epoch refers to one full cycle + * through the training dataset. + */ + n_epochs?: 'auto' | number; + } +} + +export interface JobListParams { + /** + * Identifier for the last job from the previous pagination request. + */ + after?: string; + + /** + * Number of fine-tuning jobs to retrieve. + */ + limit?: number; +} + +export interface JobListEventsParams { + /** + * Identifier for the last event from the previous pagination request. + */ + after?: string; + + /** + * Number of events to retrieve. + */ + limit?: number; +} + +export namespace Jobs { + export import FineTuningJob = API.FineTuningJob; + export import FineTuningJobEvent = API.FineTuningJobEvent; + export type FineTuningJobsPage = _FineTuningJobsPage; + export type FineTuningJobEventsPage = _FineTuningJobEventsPage; + export import JobCreateParams = API.JobCreateParams; + export import JobListParams = API.JobListParams; + export import JobListEventsParams = API.JobListEventsParams; +} diff --git a/src/resources/index.ts b/src/resources/index.ts index e2759712e..0d9ab9935 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -25,6 +25,7 @@ export { FineTunesPage, FineTunes, } from './fine-tunes'; +export { FineTuning } from './fine-tuning/fine-tuning'; export { Image, ImagesResponse, diff --git a/src/version.ts b/src/version.ts index 6bddb949d..610604428 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.0.1'; +export const VERSION = '4.1.0'; diff --git a/tests/api-resources/fine-tunes.test.ts b/tests/api-resources/fine-tunes.test.ts index 78d9b87bd..8b4a6df45 100644 --- a/tests/api-resources/fine-tunes.test.ts +++ b/tests/api-resources/fine-tunes.test.ts @@ -7,7 +7,7 @@ const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1: describe('resource fineTunes', () => { test('create: only required params', async () => { - const responsePromise = openai.fineTunes.create({ training_file: 'file-ajSREls59WBbvgSzJSVWxMCB' }); + const responsePromise = openai.fineTunes.create({ training_file: 'file-abc123' }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -19,7 +19,7 @@ describe('resource fineTunes', () => { test('create: required and optional params', async () => { const response = await openai.fineTunes.create({ - training_file: 'file-ajSREls59WBbvgSzJSVWxMCB', + training_file: 'file-abc123', batch_size: 0, classification_betas: [0, 0, 0], classification_n_classes: 0, @@ -30,7 +30,7 @@ describe('resource fineTunes', () => { n_epochs: 0, prompt_loss_weight: 0, suffix: 'x', - validation_file: 'file-XjSREls59WBbvgSzJSVWxMCa', + validation_file: 'file-abc123', }); }); diff --git a/tests/api-resources/fine-tuning/jobs.test.ts b/tests/api-resources/fine-tuning/jobs.test.ts new file mode 100644 index 000000000..fbcc9c388 --- /dev/null +++ b/tests/api-resources/fine-tuning/jobs.test.ts @@ -0,0 +1,122 @@ +// File generated from our OpenAPI spec by Stainless. + +import OpenAI from 'openai'; +import { Response } from 'node-fetch'; + +const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); + +describe('resource jobs', () => { + test('create: only required params', async () => { + const responsePromise = openai.fineTuning.jobs.create({ + model: 'gpt-3.5-turbo', + training_file: 'file-abc123', + }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('create: required and optional params', async () => { + const response = await openai.fineTuning.jobs.create({ + model: 'gpt-3.5-turbo', + training_file: 'file-abc123', + hyperparameters: { n_epochs: 'auto' }, + suffix: 'x', + validation_file: 'file-abc123', + }); + }); + + test('retrieve', async () => { + const responsePromise = openai.fineTuning.jobs.retrieve('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('retrieve: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.fineTuning.jobs.retrieve('ft-AF1WoRqd3aJAHsqc9NY7iL8F', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('list', async () => { + const responsePromise = openai.fineTuning.jobs.list(); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('list: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect(openai.fineTuning.jobs.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( + OpenAI.NotFoundError, + ); + }); + + test('list: request options and params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.fineTuning.jobs.list({ after: 'string', limit: 0 }, { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('cancel', async () => { + const responsePromise = openai.fineTuning.jobs.cancel('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('cancel: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.fineTuning.jobs.cancel('ft-AF1WoRqd3aJAHsqc9NY7iL8F', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('listEvents', async () => { + const responsePromise = openai.fineTuning.jobs.listEvents('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('listEvents: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.fineTuning.jobs.listEvents('ft-AF1WoRqd3aJAHsqc9NY7iL8F', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('listEvents: request options and params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.fineTuning.jobs.listEvents( + 'ft-AF1WoRqd3aJAHsqc9NY7iL8F', + { after: 'string', limit: 0 }, + { path: '/_stainless_unknown_path' }, + ), + ).rejects.toThrow(OpenAI.NotFoundError); + }); +}); diff --git a/tests/api-resources/models.test.ts b/tests/api-resources/models.test.ts index b468b1a06..3d9608376 100644 --- a/tests/api-resources/models.test.ts +++ b/tests/api-resources/models.test.ts @@ -7,7 +7,7 @@ const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1: describe('resource models', () => { test('retrieve', async () => { - const responsePromise = openai.models.retrieve('text-davinci-001'); + const responsePromise = openai.models.retrieve('gpt-3.5-turbo'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -20,7 +20,7 @@ describe('resource models', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.models.retrieve('text-davinci-001', { path: '/_stainless_unknown_path' }), + openai.models.retrieve('gpt-3.5-turbo', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); @@ -43,7 +43,7 @@ describe('resource models', () => { }); test('del', async () => { - const responsePromise = openai.models.del('curie:ft-acmeco-2021-03-03-21-44-20'); + const responsePromise = openai.models.del('ft:gpt-3.5-turbo:acemeco:suffix:abc123'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -56,7 +56,7 @@ describe('resource models', () => { test('del: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.models.del('curie:ft-acmeco-2021-03-03-21-44-20', { path: '/_stainless_unknown_path' }), + openai.models.del('ft:gpt-3.5-turbo:acemeco:suffix:abc123', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); }); From 33da9cfe03ef3ef19ec6e1e372eefa5a88181403 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 23 Aug 2023 02:05:05 +0100 Subject: [PATCH 034/725] ci: setup automatic releases (#236) --- .github/workflows/publish-npm.yml | 28 +++++++++++++ .github/workflows/release-doctor.yml | 20 +++++++++ .github/workflows/release.yml | 39 ++++++++++++++++++ .release-please-manifest.json | 3 ++ bin/check-release-environment | 25 ++++++++++++ bin/publish-npm | 9 ++++ release-please-config.json | 61 ++++++++++++++++++++++++++++ src/resources/fine-tuning/jobs.ts | 2 + src/version.ts | 2 +- 9 files changed, 188 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/publish-npm.yml create mode 100644 .github/workflows/release-doctor.yml create mode 100644 .github/workflows/release.yml create mode 100644 .release-please-manifest.json create mode 100644 bin/check-release-environment create mode 100644 bin/publish-npm create mode 100644 release-please-config.json diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml new file mode 100644 index 000000000..b52ec0a4e --- /dev/null +++ b/.github/workflows/publish-npm.yml @@ -0,0 +1,28 @@ +# workflow for re-running publishing to NPM in case it fails for some reason +# you can run this workflow by navigating to https://www.github.com/openai/openai-node/actions/workflows/publish-npm.yml +name: Publish NPM +on: + workflow_dispatch: + +jobs: + publish: + name: publish + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Set up Node + uses: actions/setup-node@v3 + with: + node-version: '16' + + - name: Install dependencies + run: | + yarn install + + - name: Publish to NPM + run: | + bash ./bin/publish-npm + env: + NPM_TOKEN: ${{ secrets.OPENAI_NPM_TOKEN }} diff --git a/.github/workflows/release-doctor.yml b/.github/workflows/release-doctor.yml new file mode 100644 index 000000000..923d80227 --- /dev/null +++ b/.github/workflows/release-doctor.yml @@ -0,0 +1,20 @@ +name: Release Doctor +on: + pull_request: + workflow_dispatch: + +jobs: + release_doctor: + name: release doctor + runs-on: ubuntu-latest + if: github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next' + + steps: + - uses: actions/checkout@v3 + + - name: Check release environment + run: | + bash ./bin/check-release-environment + env: + STAINLESS_API_KEY: ${{ secrets.STAINLESS_API_KEY }} + NPM_TOKEN: ${{ secrets.OPENAI_NPM_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 000000000..3e22b3323 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,39 @@ +name: Release +on: + push: + branches: + - main + +jobs: + release: + name: release + if: github.ref == 'refs/heads/main' && github.repository == 'openai/openai-node' + runs-on: ubuntu-latest + environment: publish + + steps: + - uses: actions/checkout@v3 + + - uses: stainless-api/trigger-release-please@v1 + id: release + with: + repo: ${{ github.event.repository.full_name }} + stainless-api-key: ${{ secrets.STAINLESS_API_KEY }} + + - name: Set up Node + if: ${{ steps.release.outputs.releases_created }} + uses: actions/setup-node@v3 + with: + node-version: '16' + + - name: Install dependencies + if: ${{ steps.release.outputs.releases_created }} + run: | + yarn install + + - name: Publish to NPM + if: ${{ steps.release.outputs.releases_created }} + run: | + bash ./bin/publish-npm + env: + NPM_TOKEN: ${{ secrets.OPENAI_NPM_TOKEN }} diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 000000000..411256bca --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,3 @@ +{ + ".": "4.1.0" +} diff --git a/bin/check-release-environment b/bin/check-release-environment new file mode 100644 index 000000000..759763247 --- /dev/null +++ b/bin/check-release-environment @@ -0,0 +1,25 @@ +#!/usr/bin/env bash + +errors=() + +if [ -z "${STAINLESS_API_KEY}" ]; then + errors+=("The STAINLESS_API_KEY secret has not been set. Please contact Stainless for an API key & set it in your organisation secrets on GitHub.") +fi + +if [ -z "${NPM_TOKEN}" ]; then + errors+=("The OPENAI_NPM_TOKEN secret has not been set. Please set it in either this repository's secrets or your organisation secrets") +fi + +len=${#errors[@]} + +if [[ len -gt 0 ]]; then + echo -e "Found the following errors in the release environment:\n" + + for error in "${errors[@]}"; do + echo -e "- $error\n" + done + + exit 1 +fi + +echo "The environment is ready to push releases!" diff --git a/bin/publish-npm b/bin/publish-npm new file mode 100644 index 000000000..4d6c9f357 --- /dev/null +++ b/bin/publish-npm @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +set -eux + +npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN + +yarn build +cd dist +yarn publish --access public diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 000000000..04230db37 --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,61 @@ +{ + "packages": { + ".": {} + }, + "$schema": "https://raw.githubusercontent.com/stainless-api/release-please/main/schemas/config.json", + "include-v-in-tag": true, + "include-component-in-tag": false, + "bump-minor-pre-major": true, + "bump-patch-for-minor-pre-major": true, + "pull-request-header": "Automated Release PR", + "changelog-sections": [ + { + "type": "feat", + "section": "Features" + }, + { + "type": "fix", + "section": "Bug Fixes" + }, + { + "type": "perf", + "section": "Performance Improvements" + }, + { + "type": "revert", + "section": "Reverts" + }, + { + "type": "chore", + "section": "Chores" + }, + { + "type": "docs", + "section": "Documentation" + }, + { + "type": "style", + "section": "Styles" + }, + { + "type": "refactor", + "section": "Refactors" + }, + { + "type": "test", + "section": "Tests", + "hidden": true + }, + { + "type": "build", + "section": "Build System" + }, + { + "type": "ci", + "section": "Continuous Integration", + "hidden": true + } + ], + "release-type": "node", + "extra-files": ["src/version.ts"] +} diff --git a/src/resources/fine-tuning/jobs.ts b/src/resources/fine-tuning/jobs.ts index 7b05b8682..4fa64c85d 100644 --- a/src/resources/fine-tuning/jobs.ts +++ b/src/resources/fine-tuning/jobs.ts @@ -185,6 +185,8 @@ export namespace FineTuningJob { } export interface FineTuningJobEvent { + id: string; + created_at: number; level: 'info' | 'warn' | 'error'; diff --git a/src/version.ts b/src/version.ts index 610604428..be6bae1a8 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.1.0'; +export const VERSION = '4.1.0'; // x-release-please-version From 0f7a7313efd4425f744cd118853fe8302ff0fe19 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 23 Aug 2023 12:16:24 +0100 Subject: [PATCH 035/725] ci: fix release-doctor workflow (#238) --- .github/workflows/release-doctor.yml | 7 +++++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-doctor.yml b/.github/workflows/release-doctor.yml index 923d80227..49068d3f1 100644 --- a/.github/workflows/release-doctor.yml +++ b/.github/workflows/release-doctor.yml @@ -1,13 +1,16 @@ name: Release Doctor on: - pull_request: + environment: publish + push: + branches: + - master workflow_dispatch: jobs: release_doctor: name: release doctor runs-on: ubuntu-latest - if: github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next' + if: github.repository == 'openai/openai-node' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next') steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3e22b3323..229ad4975 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,12 +2,12 @@ name: Release on: push: branches: - - main + - master jobs: release: name: release - if: github.ref == 'refs/heads/main' && github.repository == 'openai/openai-node' + if: github.ref == 'refs/heads/master' && github.repository == 'openai/openai-node' runs-on: ubuntu-latest environment: publish From d5a5480dcc26cc6267af93729d0306241309a51d Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 23 Aug 2023 13:09:38 +0100 Subject: [PATCH 036/725] ci: use correct environment for release-doctor (#239) --- .github/workflows/release-doctor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-doctor.yml b/.github/workflows/release-doctor.yml index 49068d3f1..a94615c37 100644 --- a/.github/workflows/release-doctor.yml +++ b/.github/workflows/release-doctor.yml @@ -1,6 +1,5 @@ name: Release Doctor on: - environment: publish push: branches: - master @@ -10,6 +9,7 @@ jobs: release_doctor: name: release doctor runs-on: ubuntu-latest + environment: publish if: github.repository == 'openai/openai-node' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next') steps: From ecf3bcee3c64a80a3cd901aa32d3db78d1364645 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 23 Aug 2023 13:46:18 +0100 Subject: [PATCH 037/725] feat(types): export RequestOptions type (#240) --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index 87553948a..6add24d69 100644 --- a/src/index.ts +++ b/src/index.ts @@ -201,6 +201,8 @@ export namespace OpenAI { export import toFile = Uploads.toFile; export import fileFromPath = Uploads.fileFromPath; + export import RequestOptions = Core.RequestOptions; + export import Page = Pagination.Page; export import PageResponse = Pagination.PageResponse; From cf9f6729b5b232a37841c33db33b2519b54f19b2 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 23 Aug 2023 15:30:35 +0100 Subject: [PATCH 038/725] chore(internal): export HeadersInit type shim (#241) --- src/_shims/fetch.d.ts | 1 + src/_shims/fetch.node.d.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/_shims/fetch.d.ts b/src/_shims/fetch.d.ts index 79dcf074c..772a6d987 100644 --- a/src/_shims/fetch.d.ts +++ b/src/_shims/fetch.d.ts @@ -56,4 +56,5 @@ export type { _RequestInfo as RequestInfo, _ResponseType as ResponseType, _BodyInit as BodyInit, + _HeadersInit as HeadersInit, }; diff --git a/src/_shims/fetch.node.d.ts b/src/_shims/fetch.node.d.ts index 4a1bf5051..006f00da4 100644 --- a/src/_shims/fetch.node.d.ts +++ b/src/_shims/fetch.node.d.ts @@ -60,4 +60,5 @@ export type { _RequestInfo as RequestInfo, _ResponseType as ResponseType, _BodyInit as BodyInit, + _HeadersInit as HeadersInit, }; From a0b99a95c3f544110abf76e2f2b5502330c0cbec Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 23 Aug 2023 15:50:46 +0100 Subject: [PATCH 039/725] chore(master): release 4.2.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 411256bca..34a3350a9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.1.0" + ".": "4.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..3157d7add --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +# Changelog + +## [4.2.0](https://github.com/openai/openai-node/compare/v4.1.0...v4.2.0) (2023-08-23) + + +### Features + +* **types:** export RequestOptions type ([#240](https://github.com/openai/openai-node/issues/240)) ([ecf3bce](https://github.com/openai/openai-node/commit/ecf3bcee3c64a80a3cd901aa32d3db78d1364645)) + + +### Chores + +* **internal:** export HeadersInit type shim ([#241](https://github.com/openai/openai-node/issues/241)) ([cf9f672](https://github.com/openai/openai-node/commit/cf9f6729b5b232a37841c33db33b2519b54f19b2)) diff --git a/package.json b/package.json index d475ee30d..e6db218f3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.1.0", + "version": "4.2.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index be6bae1a8..f9ec1c740 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.1.0'; // x-release-please-version +export const VERSION = '4.2.0'; // x-release-please-version From b151f32ddfc7e574864faa1e1061948513ecb98f Mon Sep 17 00:00:00 2001 From: simonpfish Date: Tue, 22 Aug 2023 17:22:04 -0700 Subject: [PATCH 040/725] create fine-tuning example --- examples/fine-tuning-data.jsonl | 10 +++++ examples/fine-tuning.ts | 71 +++++++++++++++++++++++++++++++ src/resources/fine-tuning/jobs.ts | 2 + 3 files changed, 83 insertions(+) create mode 100644 examples/fine-tuning-data.jsonl create mode 100644 examples/fine-tuning.ts diff --git a/examples/fine-tuning-data.jsonl b/examples/fine-tuning-data.jsonl new file mode 100644 index 000000000..7c00beea8 --- /dev/null +++ b/examples/fine-tuning-data.jsonl @@ -0,0 +1,10 @@ +{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ""}, {"role": "assistant", "content": ""}]} +{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ""}, {"role": "assistant", "content": ""}]} +{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ""}, {"role": "assistant", "content": ""}]} +{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ""}, {"role": "assistant", "content": ""}]} +{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ""}, {"role": "assistant", "content": ""}]} +{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ""}, {"role": "assistant", "content": ""}]} +{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ""}, {"role": "assistant", "content": ""}]} +{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ""}, {"role": "assistant", "content": ""}]} +{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ""}, {"role": "assistant", "content": ""}]} +{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ""}, {"role": "assistant", "content": ""}]} diff --git a/examples/fine-tuning.ts b/examples/fine-tuning.ts new file mode 100644 index 000000000..6530ff4c2 --- /dev/null +++ b/examples/fine-tuning.ts @@ -0,0 +1,71 @@ +#!/usr/bin/env -S npm run tsn -T + +/** + * Fine-tuning allows you to train models on your own data. + * + * See these guides for more information: + * - https://help.openai.com/en/articles/5528730-fine-tuning-a-classifier-to-improve-truthfulness + * - https://platform.openai.com/docs/guides/fine-tuning + */ + +import fs from 'fs'; +import OpenAI from 'openai'; + +// Gets the API Key from the environment variable `OPENAI_API_KEY` +const client = new OpenAI(); + +async function main() { + console.log(`Uploading file`); + + let file = await client.files.create({ + file: fs.createReadStream('./examples/fine-tune-data.jsonl'), + purpose: 'fine-tune', + }); + console.log(`Uploaded file with ID: ${file.id}`); + console.log('-----'); + + // Wait for the file to be processed + console.log(`Waiting for file to be processed`); + while (true) { + file = await client.files.retrieve(file.id); + console.log(`File status: ${file.status}`); + + if (file.status === 'processed') { + break; + } else { + await new Promise((resolve) => setTimeout(resolve, 1000)); + } + } + + console.log('-----'); + + console.log(`Starting fine-tuning`); + let fineTune = await client.fineTuning.jobs.create({ model: 'gpt-3.5-turbo', training_file: file.id }); + console.log(`Fine-tuning ID: ${fineTune.id}`); + console.log('-----'); + + console.log(`Track fine-tuning progress:`); + let after: string | undefined; + while (fineTune.status !== 'succeeded') { + fineTune = await client.fineTuning.jobs.retrieve(fineTune.id); + console.log(`${fineTune.status}`); + + const options = after ? { limit: 50, after } : { limit: 50 }; + const events = await client.fineTuning.jobs.listEvents(fineTune.id, options); + for (const event of events.data.reverse()) { + console.log(`- ${event.created_at}: ${event.message}`); + } + + if (events.data.length > 0) { + after = events.data[events.data.length - 1]?.id; + console.log(after); + } + + await new Promise((resolve) => setTimeout(resolve, 5000)); + } +} + +main().catch((err) => { + console.error(err); + process.exit(1); +}); diff --git a/src/resources/fine-tuning/jobs.ts b/src/resources/fine-tuning/jobs.ts index 4fa64c85d..1527feba0 100644 --- a/src/resources/fine-tuning/jobs.ts +++ b/src/resources/fine-tuning/jobs.ts @@ -194,6 +194,8 @@ export interface FineTuningJobEvent { message: string; object: string; + + id: string; } export interface JobCreateParams { From 6fea1a54a6921a1b3ca32e2acf773992aabdc98d Mon Sep 17 00:00:00 2001 From: simonpfish Date: Wed, 23 Aug 2023 17:16:15 -0700 Subject: [PATCH 041/725] update data and event listening logic --- examples/fine-tuning-data.jsonl | 20 ++++++++++---------- examples/fine-tuning.ts | 27 ++++++++++++++------------- 2 files changed, 24 insertions(+), 23 deletions(-) mode change 100644 => 100755 examples/fine-tuning.ts diff --git a/examples/fine-tuning-data.jsonl b/examples/fine-tuning-data.jsonl index 7c00beea8..4eace9252 100644 --- a/examples/fine-tuning-data.jsonl +++ b/examples/fine-tuning-data.jsonl @@ -1,10 +1,10 @@ -{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ""}, {"role": "assistant", "content": ""}]} -{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ""}, {"role": "assistant", "content": ""}]} -{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ""}, {"role": "assistant", "content": ""}]} -{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ""}, {"role": "assistant", "content": ""}]} -{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ""}, {"role": "assistant", "content": ""}]} -{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ""}, {"role": "assistant", "content": ""}]} -{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ""}, {"role": "assistant", "content": ""}]} -{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ""}, {"role": "assistant", "content": ""}]} -{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ""}, {"role": "assistant", "content": ""}]} -{"messages": [{"role": "system", "content": ""}, {"role": "user", "content": ""}, {"role": "assistant", "content": ""}]} +{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the capital of France?"}, {"role": "assistant", "content": "Paris, as if everyone doesn't know that already."}]} +{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "Who wrote 'Romeo and Juliet'?"}, {"role": "assistant", "content": "Oh, just some guy named William Shakespeare. Ever heard of him?"}]} +{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "How far is the Moon from Earth?"}, {"role": "assistant", "content": "Around 384,400 kilometers. Give or take a few, like that really matters."}]} +{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the tallest mountain in the world?"}, {"role": "assistant", "content": "Everest, of course. Because no other mountain even comes close!"}]} +{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "Who was the first President of the United States?"}, {"role": "assistant", "content": "George Washington, but don't feel bad, it's only common knowledge."}]} +{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the boiling point of water?"}, {"role": "assistant", "content": "100°C at sea level. Shocking, isn't it?"}]} +{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the largest ocean on Earth?"}, {"role": "assistant", "content": "The Pacific Ocean. Surprised? Me neither."}]} +{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the smallest planet in our solar system?"}, {"role": "assistant", "content": "Mercury. It's not like it's a big deal or anything."}]} +{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "Who discovered penicillin?"}, {"role": "assistant", "content": "Alexander Fleming. But don't worry, it's not like he's famous for it or anything."}]} +{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "When was the internet invented?"}, {"role": "assistant", "content": "In the 1960s, but hey, who's counting?"}]} diff --git a/examples/fine-tuning.ts b/examples/fine-tuning.ts old mode 100644 new mode 100755 index 6530ff4c2..efde1d8a8 --- a/examples/fine-tuning.ts +++ b/examples/fine-tuning.ts @@ -10,6 +10,7 @@ import fs from 'fs'; import OpenAI from 'openai'; +import { FineTuningJobEvent } from 'openai/resources/fine-tuning'; // Gets the API Key from the environment variable `OPENAI_API_KEY` const client = new OpenAI(); @@ -18,13 +19,13 @@ async function main() { console.log(`Uploading file`); let file = await client.files.create({ - file: fs.createReadStream('./examples/fine-tune-data.jsonl'), + file: fs.createReadStream('./examples/fine-tuning-data.jsonl'), purpose: 'fine-tune', }); console.log(`Uploaded file with ID: ${file.id}`); + console.log('-----'); - // Wait for the file to be processed console.log(`Waiting for file to be processed`); while (true) { file = await client.files.retrieve(file.id); @@ -42,23 +43,23 @@ async function main() { console.log(`Starting fine-tuning`); let fineTune = await client.fineTuning.jobs.create({ model: 'gpt-3.5-turbo', training_file: file.id }); console.log(`Fine-tuning ID: ${fineTune.id}`); + console.log('-----'); console.log(`Track fine-tuning progress:`); - let after: string | undefined; - while (fineTune.status !== 'succeeded') { + + const events: Record = {}; + + while (fineTune.status == 'running' || fineTune.status == 'created') { fineTune = await client.fineTuning.jobs.retrieve(fineTune.id); console.log(`${fineTune.status}`); - const options = after ? { limit: 50, after } : { limit: 50 }; - const events = await client.fineTuning.jobs.listEvents(fineTune.id, options); - for (const event of events.data.reverse()) { - console.log(`- ${event.created_at}: ${event.message}`); - } - - if (events.data.length > 0) { - after = events.data[events.data.length - 1]?.id; - console.log(after); + const { data } = await client.fineTuning.jobs.listEvents(fineTune.id, { limit: 100 }); + for (const event of data.reverse()) { + if (event.id in events) continue; + events[event.id] = event; + const timestamp = new Date(event.created_at * 1000); + console.log(`- ${timestamp.toLocaleTimeString()}: ${event.message}`); } await new Promise((resolve) => setTimeout(resolve, 5000)); From 4cbe5ee890c64da35b041b6394d56608302ae75b Mon Sep 17 00:00:00 2001 From: simonpfish Date: Wed, 23 Aug 2023 17:21:28 -0700 Subject: [PATCH 042/725] remove id --- src/resources/fine-tuning/jobs.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/resources/fine-tuning/jobs.ts b/src/resources/fine-tuning/jobs.ts index 1527feba0..4fa64c85d 100644 --- a/src/resources/fine-tuning/jobs.ts +++ b/src/resources/fine-tuning/jobs.ts @@ -194,8 +194,6 @@ export interface FineTuningJobEvent { message: string; object: string; - - id: string; } export interface JobCreateParams { From 72b9ebaed50f218f93b393a92e9a9a40d91b15f3 Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Thu, 24 Aug 2023 11:20:05 -0700 Subject: [PATCH 043/725] Update examples/fine-tuning.ts --- examples/fine-tuning.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/fine-tuning.ts b/examples/fine-tuning.ts index efde1d8a8..14d4d9c4a 100755 --- a/examples/fine-tuning.ts +++ b/examples/fine-tuning.ts @@ -3,8 +3,7 @@ /** * Fine-tuning allows you to train models on your own data. * - * See these guides for more information: - * - https://help.openai.com/en/articles/5528730-fine-tuning-a-classifier-to-improve-truthfulness + * See this guides for more information: * - https://platform.openai.com/docs/guides/fine-tuning */ From 619b38d5c5300412fd4b55b310bb8b0c472ec41a Mon Sep 17 00:00:00 2001 From: David Schnurr Date: Thu, 24 Aug 2023 11:20:19 -0700 Subject: [PATCH 044/725] Update examples/fine-tuning.ts --- examples/fine-tuning.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/fine-tuning.ts b/examples/fine-tuning.ts index 14d4d9c4a..379eb8fc4 100755 --- a/examples/fine-tuning.ts +++ b/examples/fine-tuning.ts @@ -3,7 +3,7 @@ /** * Fine-tuning allows you to train models on your own data. * - * See this guides for more information: + * See this guide for more information: * - https://platform.openai.com/docs/guides/fine-tuning */ From d8d7c0592bfad89669cd2f174e6207370cd7d3fb Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 23 Aug 2023 18:04:21 -0500 Subject: [PATCH 045/725] feat(cli): rewrite in JS for better compatibility (#244) --- bin/cli | 70 ++++++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 49 insertions(+), 21 deletions(-) diff --git a/bin/cli b/bin/cli index c2d110f19..00275ace4 100755 --- a/bin/cli +++ b/bin/cli @@ -1,21 +1,49 @@ -#!/usr/bin/env bash -set -eou pipefail - -if [ $# -eq 0 ]; then - echo "Usage: $0 " - echo - echo "Subcommands:" - echo " migrate Run migrations to update from openai v3 to v4" - echo - exit 1 -fi - -if [ "$1" = "migrate" ]; then - echo "This automatic code migration is provided by grit.io" - echo "Visit https://app.grit.io/studio?preset=openai_v4 for more details." - shift - npx -y @getgrit/launcher apply openai_v4 "$@" -else - echo "Unknown subcommand $1; Expected 'migrate'" >&2 - exit 1 -fi +#!/usr/bin/env node + +const { spawnSync } = require('child_process'); + +const commands = { + migrate: { + description: 'Run migrations to update from openai v3 to v4', + fn: () => { + console.log('This automatic code migration is provided by grit.io'); + console.log('Visit https://app.grit.io/studio?preset=openai_v4 for more details.') + + const result = spawnSync( + 'npx', + ['-y', '@getgrit/launcher', 'apply', 'openai_v4', ...process.argv.slice(3)], + { stdio: 'inherit' }, + ); + if (result.status !== 0) { + process.exit(result.status); + } + } + } +} + +function exitWithHelp() { + console.log("Usage: $0 "); + console.log(); + console.log('Subcommands:'); + + for (const [name, info] of Object.entries(commands)) { + console.log(` ${name} ${info.description}`); + } + + console.log(); + process.exit(1); +} + +if (process.argv.length < 3) { + exitWithHelp(); +} + +const commandName = process.argv[2]; + +const command = commands[commandName]; +if (!command) { + console.log(`Unknown subcommand ${commandName}.`); + exitWithHelp(); +} + +command.fn(); From 81e5de7ba94c992cafa3d08e2697c8122382497a Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 25 Aug 2023 10:05:27 -0400 Subject: [PATCH 046/725] fix(stream): declare Stream.controller as public (#252) --- src/streaming.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/streaming.ts b/src/streaming.ts index c654f3b64..230234546 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -9,9 +9,14 @@ type ServerSentEvent = { }; export class Stream implements AsyncIterable { + controller: AbortController; + + private response: Response; private decoder: SSEDecoder; - constructor(private response: Response, private controller: AbortController) { + constructor(response: Response, controller: AbortController) { + this.response = response; + this.controller = controller; this.decoder = new SSEDecoder(); } From 294727ad3543d91ef59df285ce1616c442d369db Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 25 Aug 2023 12:30:56 -0400 Subject: [PATCH 047/725] docs(readme): mention Azure support (#253) --- README.md | 9 +++++++++ examples/azure.ts | 5 ++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4cdebfe0a..05c3f4964 100644 --- a/README.md +++ b/README.md @@ -164,6 +164,15 @@ Error codes are as followed: | >=500 | `InternalServerError` | | N/A | `APIConnectionError` | +### Azure OpenAI + +An example of using this library with Azure OpenAI can be found [here](https://github.com/openai/openai-node/blob/master/examples/azure.ts). + +Please note there are subtle differences in API shape & behavior between the Azure OpenAI API and the OpenAI API, +so using this library with Azure OpenAI may result in incorrect types, which can lead to bugs. + +See [`@azure/openai`](https://www.npmjs.com/package/@azure/openai) for an Azure-specific SDK provided by Microsoft. + ### Retries Certain errors will be automatically retried 2 times by default, with a short exponential backoff. diff --git a/examples/azure.ts b/examples/azure.ts index 058143885..a903cfd6e 100755 --- a/examples/azure.ts +++ b/examples/azure.ts @@ -10,6 +10,9 @@ const resource = ''; // Navigate to the Azure OpenAI Studio to deploy a model. const model = ''; +// https://learn.microsoft.com/en-us/azure/ai-services/openai/reference#rest-api-versioning +const apiVersion = '2023-06-01-preview'; + const apiKey = process.env['AZURE_OPENAI_API_KEY']; if (!apiKey) { throw new Error('The AZURE_OPENAI_API_KEY environment variable is missing or empty.'); @@ -19,7 +22,7 @@ if (!apiKey) { const openai = new OpenAI({ apiKey, baseURL: `https://${resource}.openai.azure.com/openai/deployments/${model}`, - defaultQuery: { 'api-version': '2023-06-01-preview' }, + defaultQuery: { 'api-version': apiVersion }, defaultHeaders: { 'api-key': apiKey }, }); From 5f89c5e6b9088cc2e86405a32b60cae91c078ce1 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 25 Aug 2023 12:46:45 -0400 Subject: [PATCH 048/725] feat(client): add auto-pagination to fine tuning list endpoints (#254) --- README.md | 31 ++++++++++++++++ src/index.ts | 4 +++ src/pagination.ts | 60 ++++++++++++++++++++++++++++++- src/resources/fine-tuning/jobs.ts | 36 +++---------------- 4 files changed, 99 insertions(+), 32 deletions(-) diff --git a/README.md b/README.md index 05c3f4964..e280c2354 100644 --- a/README.md +++ b/README.md @@ -215,6 +215,37 @@ On timeout, an `APIConnectionTimeoutError` is thrown. Note that requests which time out will be [retried twice by default](#retries). +## Auto-pagination + +List methods in the OpenAI API are paginated. +You can use `for await … of` syntax to iterate through items across all pages: + +```ts +async function fetchAllFineTuningJobs(params) { + const allFineTuningJobs = []; + // Automatically fetches more pages as needed. + for await (const job of openai.fineTuning.jobs.list({ limit: 20 })) { + allFineTuningJobs.push(job); + } + return allFineTuningJobs; +} +``` + +Alternatively, you can make request a single page at a time: + +```ts +let page = await openai.fineTuning.jobs.list({ limit: 20 }); +for (const job of page.data) { + console.log(job); +} + +// Convenience methods are provided for manually paginating: +while (page.hasNextPage()) { + page = page.getNextPage(); + // ... +} +``` + ## Advanced Usage ### Accessing raw Response data (e.g., headers) diff --git a/src/index.ts b/src/index.ts index 6add24d69..4e83483ae 100644 --- a/src/index.ts +++ b/src/index.ts @@ -206,6 +206,10 @@ export namespace OpenAI { export import Page = Pagination.Page; export import PageResponse = Pagination.PageResponse; + export import CursorPage = Pagination.CursorPage; + export import CursorPageParams = Pagination.CursorPageParams; + export import CursorPageResponse = Pagination.CursorPageResponse; + export import Completions = API.Completions; export import Completion = API.Completion; export import CompletionChoice = API.CompletionChoice; diff --git a/src/pagination.ts b/src/pagination.ts index cc6c804ca..a9ffb1f47 100644 --- a/src/pagination.ts +++ b/src/pagination.ts @@ -1,6 +1,6 @@ // File generated from our OpenAPI spec by Stainless. -import { AbstractPage, Response, APIClient, FinalRequestOptions } from './core'; +import { AbstractPage, Response, APIClient, FinalRequestOptions, PageInfo } from './core'; export interface PageResponse { data: Array; @@ -40,3 +40,61 @@ export class Page extends AbstractPage implements PageResponse return null; } } + +export interface CursorPageResponse { + data: Array; +} + +export interface CursorPageParams { + /** + * Identifier for the last job from the previous pagination request. + */ + after?: string; + + /** + * Number of fine-tuning jobs to retrieve. + */ + limit?: number; +} + +export class CursorPage + extends AbstractPage + implements CursorPageResponse +{ + data: Array; + + constructor( + client: APIClient, + response: Response, + body: CursorPageResponse, + options: FinalRequestOptions, + ) { + super(client, response, body, options); + + this.data = body.data; + } + + getPaginatedItems(): Item[] { + return this.data; + } + + // @deprecated Please use `nextPageInfo()` instead + nextPageParams(): Partial | null { + const info = this.nextPageInfo(); + if (!info) return null; + if ('params' in info) return info.params; + const params = Object.fromEntries(info.url.searchParams); + if (!Object.keys(params).length) return null; + return params; + } + + nextPageInfo(): PageInfo | null { + if (!this.data?.length) { + return null; + } + + const next = this.data[this.data.length - 1]?.id; + if (!next) return null; + return { params: { after: next } }; + } +} diff --git a/src/resources/fine-tuning/jobs.ts b/src/resources/fine-tuning/jobs.ts index 4fa64c85d..684da758f 100644 --- a/src/resources/fine-tuning/jobs.ts +++ b/src/resources/fine-tuning/jobs.ts @@ -5,7 +5,7 @@ import { APIResource } from 'openai/resource'; import { isRequestOptions } from 'openai/core'; import * as Files from 'openai/resources/files'; import * as API from './index'; -import { Page } from 'openai/pagination'; +import { CursorPage, CursorPageParams } from 'openai/pagination'; export class Jobs extends APIResource { /** @@ -81,17 +81,11 @@ export class Jobs extends APIResource { } } -/** - * Note: no pagination actually occurs yet, this is for forwards-compatibility. - */ -export class FineTuningJobsPage extends Page {} +export class FineTuningJobsPage extends CursorPage {} // alias so we can export it in the namespace type _FineTuningJobsPage = FineTuningJobsPage; -/** - * Note: no pagination actually occurs yet, this is for forwards-compatibility. - */ -export class FineTuningJobEventsPage extends Page {} +export class FineTuningJobEventsPage extends CursorPage {} // alias so we can export it in the namespace type _FineTuningJobEventsPage = FineTuningJobEventsPage; @@ -258,29 +252,9 @@ export namespace JobCreateParams { } } -export interface JobListParams { - /** - * Identifier for the last job from the previous pagination request. - */ - after?: string; - - /** - * Number of fine-tuning jobs to retrieve. - */ - limit?: number; -} - -export interface JobListEventsParams { - /** - * Identifier for the last event from the previous pagination request. - */ - after?: string; +export interface JobListParams extends CursorPageParams {} - /** - * Number of events to retrieve. - */ - limit?: number; -} +export interface JobListEventsParams extends CursorPageParams {} export namespace Jobs { export import FineTuningJob = API.FineTuningJob; From 6d8cff00164c0f65ed40b941486f2e0d752feb1e Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 25 Aug 2023 21:14:51 +0100 Subject: [PATCH 049/725] chore(internal): add helper method (#255) --- src/core.ts | 24 ++++++++++++++++++------ src/index.ts | 6 +++--- 2 files changed, 21 insertions(+), 9 deletions(-) diff --git a/src/core.ts b/src/core.ts index 814370617..db7cb7269 100644 --- a/src/core.ts +++ b/src/core.ts @@ -9,6 +9,7 @@ import { type RequestInfo, type RequestInit, type Response, + type HeadersInit, } from 'openai/_shims/fetch'; export { type Response }; import { isMultipartBody } from './uploads'; @@ -153,7 +154,7 @@ export abstract class APIClient { this.fetch = overridenFetch ?? fetch; } - protected authHeaders(): Headers { + protected authHeaders(opts: FinalRequestOptions): Headers { return {}; } @@ -165,13 +166,13 @@ export abstract class APIClient { * Authorization: 'Bearer 123', * } */ - protected defaultHeaders(): Headers { + protected defaultHeaders(opts: FinalRequestOptions): Headers { return { Accept: 'application/json', 'Content-Type': 'application/json', 'User-Agent': this.getUserAgent(), ...getPlatformHeaders(), - ...this.authHeaders(), + ...this.authHeaders(opts), }; } @@ -272,7 +273,7 @@ export abstract class APIClient { const reqHeaders: Record = { ...(contentLength && { 'Content-Length': contentLength }), - ...this.defaultHeaders(), + ...this.defaultHeaders(options), ...headers, }; // let builtin fetch set the Content-Type for multipart bodies @@ -304,7 +305,18 @@ export abstract class APIClient { * This is useful for cases where you want to add certain headers based off of * the request properties, e.g. `method` or `url`. */ - protected async prepareRequest(request: RequestInit, { url }: { url: string }): Promise {} + protected async prepareRequest( + request: RequestInit, + { url, options }: { url: string; options: FinalRequestOptions }, + ): Promise {} + + protected parseHeaders(headers: HeadersInit | null | undefined): Record { + return ( + !headers ? {} + : Symbol.iterator in headers ? Object.fromEntries(Array.from(headers).map((header) => [...header])) + : { ...headers } + ); + } protected makeStatusError( status: number | undefined, @@ -333,7 +345,7 @@ export abstract class APIClient { const { req, url, timeout } = this.buildRequest(options); - await this.prepareRequest(req, { url }); + await this.prepareRequest(req, { url, options }); debug('request', url, options, req.headers); diff --git a/src/index.ts b/src/index.ts index 4e83483ae..e8013a515 100644 --- a/src/index.ts +++ b/src/index.ts @@ -150,15 +150,15 @@ export class OpenAI extends Core.APIClient { return this._options.defaultQuery; } - protected override defaultHeaders(): Core.Headers { + protected override defaultHeaders(opts: Core.FinalRequestOptions): Core.Headers { return { - ...super.defaultHeaders(), + ...super.defaultHeaders(opts), 'OpenAI-Organization': this.organization, ...this._options.defaultHeaders, }; } - protected override authHeaders(): Core.Headers { + protected override authHeaders(opts: Core.FinalRequestOptions): Core.Headers { return { Authorization: `Bearer ${this.apiKey}` }; } From 08c62980d8fb09017b7accdd1587344e13aac05a Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sun, 27 Aug 2023 04:25:38 +0100 Subject: [PATCH 050/725] chore(master): release 4.3.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 23 +++++++++++++++++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 26 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 34a3350a9..83f9eb804 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.2.0" + ".": "4.3.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3157d7add..ca554b933 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## [4.3.0](https://github.com/openai/openai-node/compare/v4.2.0...v4.3.0) (2023-08-27) + + +### Features + +* **client:** add auto-pagination to fine tuning list endpoints ([#254](https://github.com/openai/openai-node/issues/254)) ([5f89c5e](https://github.com/openai/openai-node/commit/5f89c5e6b9088cc2e86405a32b60cae91c078ce1)) +* **cli:** rewrite in JS for better compatibility ([#244](https://github.com/openai/openai-node/issues/244)) ([d8d7c05](https://github.com/openai/openai-node/commit/d8d7c0592bfad89669cd2f174e6207370cd7d3fb)) + + +### Bug Fixes + +* **stream:** declare Stream.controller as public ([#252](https://github.com/openai/openai-node/issues/252)) ([81e5de7](https://github.com/openai/openai-node/commit/81e5de7ba94c992cafa3d08e2697c8122382497a)) + + +### Documentation + +* **readme:** mention Azure support ([#253](https://github.com/openai/openai-node/issues/253)) ([294727a](https://github.com/openai/openai-node/commit/294727ad3543d91ef59df285ce1616c442d369db)) + + +### Chores + +* **internal:** add helper method ([#255](https://github.com/openai/openai-node/issues/255)) ([6d8cff0](https://github.com/openai/openai-node/commit/6d8cff00164c0f65ed40b941486f2e0d752feb1e)) + ## [4.2.0](https://github.com/openai/openai-node/compare/v4.1.0...v4.2.0) (2023-08-23) diff --git a/package.json b/package.json index e6db218f3..01a09a1e4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.2.0", + "version": "4.3.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index f9ec1c740..e743242b8 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.2.0'; // x-release-please-version +export const VERSION = '4.3.0'; // x-release-please-version From 290908ce24dc6c31df18b2eb7808d5b495387454 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 28 Aug 2023 15:16:56 +0100 Subject: [PATCH 051/725] chore(ci): setup workflows to create releases and release PRs (#259) --- .../{release.yml => create-releases.yml} | 2 +- .github/workflows/open-release-prs.yml | 21 +++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) rename .github/workflows/{release.yml => create-releases.yml} (97%) create mode 100644 .github/workflows/open-release-prs.yml diff --git a/.github/workflows/release.yml b/.github/workflows/create-releases.yml similarity index 97% rename from .github/workflows/release.yml rename to .github/workflows/create-releases.yml index 229ad4975..7c09d64bb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/create-releases.yml @@ -1,4 +1,4 @@ -name: Release +name: Create releases on: push: branches: diff --git a/.github/workflows/open-release-prs.yml b/.github/workflows/open-release-prs.yml new file mode 100644 index 000000000..ca04b9e2d --- /dev/null +++ b/.github/workflows/open-release-prs.yml @@ -0,0 +1,21 @@ +name: Open release PRs +on: + push: + branches: + - next + +jobs: + release: + name: release + if: github.ref == 'refs/heads/next' && github.repository == 'openai/openai-node' + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - uses: stainless-api/trigger-release-please@v1 + id: release + with: + repo: ${{ github.event.repository.full_name }} + stainless-api-key: ${{ secrets.STAINLESS_API_KEY }} + branch-with-changes: next From 245a9847d1ba5bbe5262bc06b2f7bb7385cd3a9a Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 28 Aug 2023 16:51:13 +0100 Subject: [PATCH 052/725] fix(types): improve getNextPage() return type (#262) --- src/core.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.ts b/src/core.ts index db7cb7269..23063bb1b 100644 --- a/src/core.ts +++ b/src/core.ts @@ -575,7 +575,7 @@ export abstract class AbstractPage implements AsyncIterable { return this.nextPageInfo() != null; } - async getNextPage(): Promise> { + async getNextPage(): Promise { const nextInfo = this.nextPageInfo(); if (!nextInfo) { throw new Error( From 36898cc8519bf6c8d4580212413a23c568452fe8 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 29 Aug 2023 05:09:38 +0100 Subject: [PATCH 053/725] chore(next => master): release 4.3.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 83f9eb804..2276f3d26 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.3.0" + ".": "4.3.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ca554b933..cb610f0d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.3.1 (2023-08-29) + +Full Changelog: [v4.3.0...v4.3.1](https://github.com/openai/openai-node/compare/v4.3.0...v4.3.1) + +### Bug Fixes + +* **types:** improve getNextPage() return type ([#262](https://github.com/openai/openai-node/issues/262)) ([245a984](https://github.com/openai/openai-node/commit/245a9847d1ba5bbe5262bc06b2f7bb7385cd3a9a)) + + +### Chores + +* **ci:** setup workflows to create releases and release PRs ([#259](https://github.com/openai/openai-node/issues/259)) ([290908c](https://github.com/openai/openai-node/commit/290908ce24dc6c31df18b2eb7808d5b495387454)) + ## [4.3.0](https://github.com/openai/openai-node/compare/v4.2.0...v4.3.0) (2023-08-27) diff --git a/package.json b/package.json index 01a09a1e4..b4847bed5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.3.0", + "version": "4.3.1", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index e743242b8..42e880c67 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.3.0'; // x-release-please-version +export const VERSION = '4.3.1'; // x-release-please-version From 19c99fb268d6d6c7fc7aaa66475c35f45d12b4bd Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 29 Aug 2023 23:18:41 +0100 Subject: [PATCH 054/725] feat(types): fix ambiguous auto-import for chat completions params (#266) This renames the following types and deprecates the old names: - `CompletionCreateParams` -> `ChatCompletionCreateParams` - `CompletionCreateParamsStreaming` -> `ChatCompletionCreateParamsStreaming` - `CompletionCreateParamsNonStreaming` -> `ChatCompletionCreateParamsNonStreaming` - `CreateChatCompletionRequestMessage` -> `ChatCompletionCreateParamsMessage` --- README.md | 2 +- api.md | 1 + examples/chat-params-types.ts | 22 ++++++----- examples/function-call-stream.ts | 6 +-- examples/function-call.ts | 6 +-- src/resources/chat/chat.ts | 4 ++ src/resources/chat/completions.ts | 63 ++++++++++++++++++++++--------- src/resources/chat/index.ts | 4 ++ 8 files changed, 74 insertions(+), 34 deletions(-) diff --git a/README.md b/README.md index e280c2354..e97b7078c 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ const openai = new OpenAI({ }); async function main() { - const params: OpenAI.Chat.CompletionCreateParams = { + const params: OpenAI.Chat.ChatCompletionCreateParams = { messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-3.5-turbo', }; diff --git a/api.md b/api.md index 1c443b4f1..14b70dffe 100644 --- a/api.md +++ b/api.md @@ -19,6 +19,7 @@ Types: - ChatCompletion - ChatCompletionChunk - ChatCompletionMessage +- ChatCompletionMessageParam - CreateChatCompletionRequestMessage Methods: diff --git a/examples/chat-params-types.ts b/examples/chat-params-types.ts index 66f27ed31..86c28fc8b 100755 --- a/examples/chat-params-types.ts +++ b/examples/chat-params-types.ts @@ -9,7 +9,7 @@ const openai = new OpenAI(); async function main() { // ---------------- Explicit non-streaming params ------------ - const params: OpenAI.Chat.CompletionCreateParams = { + const params: OpenAI.Chat.ChatCompletionCreateParams = { model: 'gpt-4', messages: [{ role: 'user', content: 'Say this is a test!' }], }; @@ -18,7 +18,7 @@ async function main() { // ---------------- Explicit streaming params ---------------- - const streamingParams: OpenAI.Chat.CompletionCreateParams = { + const streamingParams: OpenAI.Chat.ChatCompletionCreateParams = { model: 'gpt-4', messages: [{ role: 'user', content: 'Say this is a test!' }], stream: true, @@ -32,12 +32,12 @@ async function main() { // ---------------- Explicit (non)streaming types ---------------- - const params1: OpenAI.Chat.CompletionCreateParamsNonStreaming = { + const params1: OpenAI.Chat.ChatCompletionCreateParamsNonStreaming = { model: 'gpt-4', messages: [{ role: 'user', content: 'Say this is a test!' }], }; - const params2: OpenAI.Chat.CompletionCreateParamsStreaming = { + const params2: OpenAI.Chat.ChatCompletionCreateParamsStreaming = { model: 'gpt-4', messages: [{ role: 'user', content: 'Say this is a test!' }], stream: true, @@ -52,9 +52,9 @@ async function main() { // `role: string` is not assignable. const streamingParams2 = { model: 'gpt-4', - messages: [{ role: 'user', content: 'Say this is a test!' }], - stream: true, - } as const; + messages: [{ role: 'user' as const, content: 'Say this is a test!' }], + stream: true as const, + }; // TS knows this is a Stream instance. const stream2 = await openai.chat.completions.create(streamingParams2); @@ -95,11 +95,13 @@ async function main() { // not the response will be streamed. export async function createCompletionParams( stream: true, -): Promise; +): Promise; export async function createCompletionParams( stream: false, -): Promise; -export async function createCompletionParams(stream: boolean): Promise { +): Promise; +export async function createCompletionParams( + stream: boolean, +): Promise { const params = { model: 'gpt-3.5-turbo', messages: [{ role: 'user' as const, content: 'Hello!' }], diff --git a/examples/function-call-stream.ts b/examples/function-call-stream.ts index 6126a7ff2..be4688aa7 100755 --- a/examples/function-call-stream.ts +++ b/examples/function-call-stream.ts @@ -5,13 +5,13 @@ import OpenAI from 'openai'; import { ChatCompletionMessage, ChatCompletionChunk, - CreateChatCompletionRequestMessage, + ChatCompletionMessageParam, } from 'openai/resources/chat'; // gets API Key from environment variable OPENAI_API_KEY const openai = new OpenAI(); -const functions: OpenAI.Chat.CompletionCreateParams.Function[] = [ +const functions: OpenAI.Chat.ChatCompletionCreateParams.Function[] = [ { name: 'list', description: 'list queries books by genre, and returns a list of names of books', @@ -63,7 +63,7 @@ async function callFunction(function_call: ChatCompletionMessage.FunctionCall): } async function main() { - const messages: CreateChatCompletionRequestMessage[] = [ + const messages: ChatCompletionMessageParam[] = [ { role: 'system', content: diff --git a/examples/function-call.ts b/examples/function-call.ts index 158437e68..ce12431b0 100755 --- a/examples/function-call.ts +++ b/examples/function-call.ts @@ -1,12 +1,12 @@ #!/usr/bin/env -S npm run tsn -T import OpenAI from 'openai'; -import { ChatCompletionMessage, CreateChatCompletionRequestMessage } from 'openai/resources/chat'; +import { ChatCompletionMessage, ChatCompletionMessageParam } from 'openai/resources/chat'; // gets API Key from environment variable OPENAI_API_KEY const openai = new OpenAI(); -const functions: OpenAI.Chat.CompletionCreateParams.Function[] = [ +const functions: OpenAI.Chat.ChatCompletionCreateParams.Function[] = [ { name: 'list', description: 'list queries books by genre, and returns a list of names of books', @@ -58,7 +58,7 @@ async function callFunction(function_call: ChatCompletionMessage.FunctionCall): } async function main() { - const messages: CreateChatCompletionRequestMessage[] = [ + const messages: ChatCompletionMessageParam[] = [ { role: 'system', content: diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 9a256b596..5d10f2f4d 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -13,8 +13,12 @@ export namespace Chat { export import ChatCompletion = API.ChatCompletion; export import ChatCompletionChunk = API.ChatCompletionChunk; export import ChatCompletionMessage = API.ChatCompletionMessage; + export import ChatCompletionMessageParam = API.ChatCompletionMessageParam; export import CreateChatCompletionRequestMessage = API.CreateChatCompletionRequestMessage; + export import ChatCompletionCreateParams = API.ChatCompletionCreateParams; export import CompletionCreateParams = API.CompletionCreateParams; + export import ChatCompletionCreateParamsNonStreaming = API.ChatCompletionCreateParamsNonStreaming; export import CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; + export import ChatCompletionCreateParamsStreaming = API.ChatCompletionCreateParamsStreaming; export import CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; } diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index b05ab1eb4..ddfe1344b 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -11,17 +11,20 @@ export class Completions extends APIResource { /** * Creates a model response for the given chat conversation. */ - create(body: CompletionCreateParamsNonStreaming, options?: Core.RequestOptions): APIPromise; create( - body: CompletionCreateParamsStreaming, + body: ChatCompletionCreateParamsNonStreaming, + options?: Core.RequestOptions, + ): APIPromise; + create( + body: ChatCompletionCreateParamsStreaming, options?: Core.RequestOptions, ): APIPromise>; create( - body: CompletionCreateParamsBase, + body: ChatCompletionCreateParamsBase, options?: Core.RequestOptions, ): APIPromise | ChatCompletion>; create( - body: CompletionCreateParams, + body: ChatCompletionCreateParams, options?: Core.RequestOptions, ): APIPromise | APIPromise> { return this.post('/chat/completions', { body, ...options, stream: body.stream ?? false }) as @@ -229,7 +232,7 @@ export namespace ChatCompletionMessage { } } -export interface CreateChatCompletionRequestMessage { +export interface ChatCompletionMessageParam { /** * The contents of the message. `content` is required for all messages, and may be * null for assistant messages with function calls. @@ -246,7 +249,7 @@ export interface CreateChatCompletionRequestMessage { * The name and arguments of a function that should be called, as generated by the * model. */ - function_call?: CreateChatCompletionRequestMessage.FunctionCall; + function_call?: ChatCompletionMessageParam.FunctionCall; /** * The name of the author of this message. `name` is required if role is @@ -257,7 +260,7 @@ export interface CreateChatCompletionRequestMessage { name?: string; } -export namespace CreateChatCompletionRequestMessage { +export namespace ChatCompletionMessageParam { /** * The name and arguments of a function that should be called, as generated by the * model. @@ -278,14 +281,21 @@ export namespace CreateChatCompletionRequestMessage { } } -export type CompletionCreateParams = CompletionCreateParamsNonStreaming | CompletionCreateParamsStreaming; +/** + * @deprecated ChatCompletionMessageParam should be used instead + */ +export type CreateChatCompletionRequestMessage = ChatCompletionMessageParam; -export interface CompletionCreateParamsBase { +export type ChatCompletionCreateParams = + | ChatCompletionCreateParamsNonStreaming + | ChatCompletionCreateParamsStreaming; + +export interface ChatCompletionCreateParamsBase { /** * A list of messages comprising the conversation so far. * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_format_inputs_to_ChatGPT_models.ipynb). */ - messages: Array; + messages: Array; /** * ID of the model to use. See the @@ -323,12 +333,12 @@ export interface CompletionCreateParamsBase { * the default when no functions are present. "auto" is the default if functions * are present. */ - function_call?: 'none' | 'auto' | CompletionCreateParams.FunctionCallOption; + function_call?: 'none' | 'auto' | ChatCompletionCreateParams.FunctionCallOption; /** * A list of functions the model may generate JSON inputs for. */ - functions?: Array; + functions?: Array; /** * Modify the likelihood of specified tokens appearing in the completion. @@ -406,7 +416,7 @@ export interface CompletionCreateParamsBase { user?: string; } -export namespace CompletionCreateParams { +export namespace ChatCompletionCreateParams { export interface FunctionCallOption { /** * The name of the function to call. @@ -439,11 +449,16 @@ export namespace CompletionCreateParams { description?: string; } - export type CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; - export type CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; + export type ChatCompletionCreateParamsNonStreaming = API.ChatCompletionCreateParamsNonStreaming; + export type ChatCompletionCreateParamsStreaming = API.ChatCompletionCreateParamsStreaming; } -export interface CompletionCreateParamsNonStreaming extends CompletionCreateParamsBase { +/** + * @deprecated Use ChatCompletionCreateParams instead + */ +export type CompletionCreateParams = ChatCompletionCreateParams; + +export interface ChatCompletionCreateParamsNonStreaming extends ChatCompletionCreateParamsBase { /** * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be * sent as data-only @@ -455,7 +470,12 @@ export interface CompletionCreateParamsNonStreaming extends CompletionCreatePara stream?: false | null; } -export interface CompletionCreateParamsStreaming extends CompletionCreateParamsBase { +/** + * @deprecated Use ChatCompletionCreateParamsNonStreaming instead + */ +export type CompletionCreateParamsNonStreaming = ChatCompletionCreateParamsNonStreaming; + +export interface ChatCompletionCreateParamsStreaming extends ChatCompletionCreateParamsBase { /** * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be * sent as data-only @@ -467,12 +487,21 @@ export interface CompletionCreateParamsStreaming extends CompletionCreateParamsB stream: true; } +/** + * @deprecated Use ChatCompletionCreateParamsStreaming instead + */ +export type CompletionCreateParamsStreaming = ChatCompletionCreateParamsStreaming; + export namespace Completions { export import ChatCompletion = API.ChatCompletion; export import ChatCompletionChunk = API.ChatCompletionChunk; export import ChatCompletionMessage = API.ChatCompletionMessage; + export import ChatCompletionMessageParam = API.ChatCompletionMessageParam; export import CreateChatCompletionRequestMessage = API.CreateChatCompletionRequestMessage; + export import ChatCompletionCreateParams = API.ChatCompletionCreateParams; export import CompletionCreateParams = API.CompletionCreateParams; + export import ChatCompletionCreateParamsNonStreaming = API.ChatCompletionCreateParamsNonStreaming; export import CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; + export import ChatCompletionCreateParamsStreaming = API.ChatCompletionCreateParamsStreaming; export import CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; } diff --git a/src/resources/chat/index.ts b/src/resources/chat/index.ts index f9232bffe..ea9d1d1b9 100644 --- a/src/resources/chat/index.ts +++ b/src/resources/chat/index.ts @@ -5,9 +5,13 @@ export { ChatCompletion, ChatCompletionChunk, ChatCompletionMessage, + ChatCompletionMessageParam, CreateChatCompletionRequestMessage, + ChatCompletionCreateParams, CompletionCreateParams, + ChatCompletionCreateParamsNonStreaming, CompletionCreateParamsNonStreaming, + ChatCompletionCreateParamsStreaming, CompletionCreateParamsStreaming, Completions, } from './completions'; From 1a71a39421828fdde7b8605094363a5047d2fdc9 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 30 Aug 2023 13:07:12 -0400 Subject: [PATCH 055/725] feat: re-export chat completion types at the top level (#268) --- src/index.ts | 8 ++++++++ src/resources/index.ts | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index e8013a515..4965cd4f7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -220,6 +220,14 @@ export namespace OpenAI { export import Chat = API.Chat; + export import ChatCompletion = API.ChatCompletion; + export import ChatCompletionChunk = API.ChatCompletionChunk; + export import ChatCompletionMessage = API.ChatCompletionMessage; + export import ChatCompletionMessageParam = API.ChatCompletionMessageParam; + export import ChatCompletionCreateParams = API.ChatCompletionCreateParams; + export import ChatCompletionCreateParamsNonStreaming = API.ChatCompletionCreateParamsNonStreaming; + export import ChatCompletionCreateParamsStreaming = API.ChatCompletionCreateParamsStreaming; + export import Edits = API.Edits; export import Edit = API.Edit; export import EditCreateParams = API.EditCreateParams; diff --git a/src/resources/index.ts b/src/resources/index.ts index 0d9ab9935..ced5114fa 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -1,7 +1,7 @@ // File generated from our OpenAPI spec by Stainless. +export * from './chat'; export { Audio } from './audio/audio'; -export { Chat } from './chat/chat'; export { Completion, CompletionChoice, From 16f239c6b4e8526371b01c511d2e0ebba4c5c8c6 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 30 Aug 2023 20:20:45 -0400 Subject: [PATCH 056/725] feat(package): add Bun export map (#269) --- ecosystem-tests/bun/openai.test.ts | 100 +++++++++++++++++++++++++++-- ecosystem-tests/bun/package.json | 6 +- ecosystem-tests/cli.ts | 12 ++-- package.json | 5 ++ 4 files changed, 106 insertions(+), 17 deletions(-) diff --git a/ecosystem-tests/bun/openai.test.ts b/ecosystem-tests/bun/openai.test.ts index 243bc19a3..399b40c84 100644 --- a/ecosystem-tests/bun/openai.test.ts +++ b/ecosystem-tests/bun/openai.test.ts @@ -1,9 +1,26 @@ import OpenAI, { toFile } from 'openai'; +import fs from 'fs'; import { distance } from 'fastest-levenshtein'; import { test, expect } from 'bun:test'; +const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; +const filename = 'sample-1.mp3'; + +const correctAnswer = + 'It was anxious to find him no one that expectation of a man who were giving his father enjoyment. But he was avoided in sight in the minister to which indeed,'; +const model = 'whisper-1'; + const client = new OpenAI(); +async function typeTests() { + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: null, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); +} + function expectSimilar(received: any, comparedTo: string, expectedDistance: number) { const message = () => [ @@ -38,11 +55,80 @@ test(`streaming works`, async function () { expectSimilar(chunks.map((c) => c.choices[0]?.delta.content || '').join(''), 'This is a test', 10); }); -test(`toFile rejects`, async function () { - try { - await toFile(new TextEncoder().encode('foo'), 'foo.txt'); - throw new Error(`expected toFile to reject`); - } catch (error) { - expect((error as any).message).toEqual(`file uploads aren't supported in this environment yet`); - } +// @ts-ignore avoid DOM lib for testing purposes +if (typeof File !== 'undefined') { + test.todo('handles builtinFile', async function () { + const file = await fetch(url) + .then((x) => x.arrayBuffer()) + // @ts-ignore avoid DOM lib for testing purposes + .then((x) => new File([x], filename)); + + const result = await client.audio.transcriptions.create({ file, model }); + expectSimilar(result.text, correctAnswer, 12); + }); +} + +test.todo('handles Response', async function () { + const file = await fetch(url); + + const result = await client.audio.transcriptions.create({ file, model }); + expectSimilar(result.text, correctAnswer, 12); +}); + +test.todo('handles fs.ReadStream', async function () { + const result = await client.audio.transcriptions.create({ + file: fs.createReadStream('sample1.mp3'), + model, + }); + expectSimilar(result.text, correctAnswer, 12); +}); + +const fineTune = `{"prompt": "", "completion": ""}`; + +// @ts-ignore avoid DOM lib for testing purposes +if (typeof Blob !== 'undefined') { + test.todo('toFile handles builtin Blob', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new Blob([new TextEncoder().encode(fineTune)]), + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); +} +test.todo('toFile handles Uint8Array', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new TextEncoder().encode(fineTune), + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); +}); +test.todo('toFile handles ArrayBuffer', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new TextEncoder().encode(fineTune).buffer, + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); +}); +test.todo('toFile handles DataView', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new DataView(new TextEncoder().encode(fineTune).buffer), + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); }); diff --git a/ecosystem-tests/bun/package.json b/ecosystem-tests/bun/package.json index 3cedd94f7..1465be93a 100644 --- a/ecosystem-tests/bun/package.json +++ b/ecosystem-tests/bun/package.json @@ -7,9 +7,7 @@ }, "devDependencies": { "fastest-levenshtein": "^1.0.16", - "bun-types": "latest" - }, - "peerDependencies": { - "typescript": "^5.0.0" + "bun-types": "latest", + "typescript": "^5.1.0" } } diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index 195dbf020..d6ffcb872 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -268,7 +268,7 @@ async function main() { console.error('\n'); try { - await withRetry(fn, project, state.retry) + await withRetry(fn, project, state.retry); console.error(`✅ - Successfully ran ${project}`); } catch (err) { if (err && (err as any).shortMessage) { @@ -294,13 +294,13 @@ async function main() { async function withRetry(fn: () => Promise, identifier: string, retryAmount: number): Promise { do { try { - return await fn() + return await fn(); } catch (err) { - console.error(`${identifier} failed due to ${err}; retries left ${retryAmount}`) + retryAmount--; + if (retryAmount === 0) throw err; + console.error(`${identifier} failed due to ${err}; retries left ${retryAmount}`); } - - retryAmount--; - } while (retryAmount > 0) + } while (retryAmount > 0); } function centerPad(text: string, width = text.length, char = ' '): string { diff --git a/package.json b/package.json index b4847bed5..8a1440f63 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,11 @@ "require": "./dist/_shims/*.js", "default": "./dist/_shims/*.mjs" }, + "bun": { + "types": "./dist/_shims/*.d.ts", + "require": "./dist/_shims/*.js", + "default": "./dist/_shims/*.mjs" + }, "browser": { "types": "./dist/_shims/*.d.ts", "require": "./dist/_shims/*.js", From 7e7242110a522d5b6df1af9d4645d190abcd2cbb Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 31 Aug 2023 06:01:49 -0400 Subject: [PATCH 057/725] ci: remove GitHub workflow open-release-prs.yml (#272) --- .github/workflows/open-release-prs.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/workflows/open-release-prs.yml diff --git a/.github/workflows/open-release-prs.yml b/.github/workflows/open-release-prs.yml deleted file mode 100644 index ca04b9e2d..000000000 --- a/.github/workflows/open-release-prs.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Open release PRs -on: - push: - branches: - - next - -jobs: - release: - name: release - if: github.ref == 'refs/heads/next' && github.repository == 'openai/openai-node' - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - uses: stainless-api/trigger-release-please@v1 - id: release - with: - repo: ${{ github.event.repository.full_name }} - stainless-api-key: ${{ secrets.STAINLESS_API_KEY }} - branch-with-changes: next From 6534e3620d7e2983e98b42cf95fa966deab1ab1d Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 31 Aug 2023 18:24:16 -0400 Subject: [PATCH 058/725] fix: revert import change which triggered circular import bug in webpack (#274) --- src/index.ts | 8 -------- src/resources/index.ts | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/src/index.ts b/src/index.ts index 4965cd4f7..e8013a515 100644 --- a/src/index.ts +++ b/src/index.ts @@ -220,14 +220,6 @@ export namespace OpenAI { export import Chat = API.Chat; - export import ChatCompletion = API.ChatCompletion; - export import ChatCompletionChunk = API.ChatCompletionChunk; - export import ChatCompletionMessage = API.ChatCompletionMessage; - export import ChatCompletionMessageParam = API.ChatCompletionMessageParam; - export import ChatCompletionCreateParams = API.ChatCompletionCreateParams; - export import ChatCompletionCreateParamsNonStreaming = API.ChatCompletionCreateParamsNonStreaming; - export import ChatCompletionCreateParamsStreaming = API.ChatCompletionCreateParamsStreaming; - export import Edits = API.Edits; export import Edit = API.Edit; export import EditCreateParams = API.EditCreateParams; diff --git a/src/resources/index.ts b/src/resources/index.ts index ced5114fa..0d9ab9935 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -1,7 +1,7 @@ // File generated from our OpenAPI spec by Stainless. -export * from './chat'; export { Audio } from './audio/audio'; +export { Chat } from './chat/chat'; export { Completion, CompletionChoice, From 47d3e18a3ee987d04b958dad1a51821ad5472d54 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 1 Sep 2023 10:33:53 -0400 Subject: [PATCH 059/725] feat(tests): unskip multipart form data tests (#275) --- .../api-resources/audio/transcriptions.test.ts | 6 ++---- tests/api-resources/audio/translations.test.ts | 6 ++---- tests/api-resources/images.test.ts | 18 ++++++------------ 3 files changed, 10 insertions(+), 20 deletions(-) diff --git a/tests/api-resources/audio/transcriptions.test.ts b/tests/api-resources/audio/transcriptions.test.ts index 79ee351e6..f9b2aade4 100644 --- a/tests/api-resources/audio/transcriptions.test.ts +++ b/tests/api-resources/audio/transcriptions.test.ts @@ -6,8 +6,7 @@ import { Response } from 'node-fetch'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource transcriptions', () => { - // Prism doesn't support multipart/form-data - test.skip('create: only required params', async () => { + test('create: only required params', async () => { const responsePromise = openai.audio.transcriptions.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), model: 'whisper-1', @@ -21,8 +20,7 @@ describe('resource transcriptions', () => { expect(dataAndResponse.response).toBe(rawResponse); }); - // Prism doesn't support multipart/form-data - test.skip('create: required and optional params', async () => { + test('create: required and optional params', async () => { const response = await openai.audio.transcriptions.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), model: 'whisper-1', diff --git a/tests/api-resources/audio/translations.test.ts b/tests/api-resources/audio/translations.test.ts index 4f6389d2e..92cffa51b 100644 --- a/tests/api-resources/audio/translations.test.ts +++ b/tests/api-resources/audio/translations.test.ts @@ -6,8 +6,7 @@ import { Response } from 'node-fetch'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource translations', () => { - // Prism doesn't support multipart/form-data - test.skip('create: only required params', async () => { + test('create: only required params', async () => { const responsePromise = openai.audio.translations.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), model: 'whisper-1', @@ -21,8 +20,7 @@ describe('resource translations', () => { expect(dataAndResponse.response).toBe(rawResponse); }); - // Prism doesn't support multipart/form-data - test.skip('create: required and optional params', async () => { + test('create: required and optional params', async () => { const response = await openai.audio.translations.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), model: 'whisper-1', diff --git a/tests/api-resources/images.test.ts b/tests/api-resources/images.test.ts index c10b19aef..f9dabcb3e 100644 --- a/tests/api-resources/images.test.ts +++ b/tests/api-resources/images.test.ts @@ -6,8 +6,7 @@ import { Response } from 'node-fetch'; const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); describe('resource images', () => { - // Prism doesn't support multipart/form-data - test.skip('createVariation: only required params', async () => { + test('createVariation: only required params', async () => { const responsePromise = openai.images.createVariation({ image: await toFile(Buffer.from('# my file contents'), 'README.md'), }); @@ -20,8 +19,7 @@ describe('resource images', () => { expect(dataAndResponse.response).toBe(rawResponse); }); - // Prism doesn't support multipart/form-data - test.skip('createVariation: required and optional params', async () => { + test('createVariation: required and optional params', async () => { const response = await openai.images.createVariation({ image: await toFile(Buffer.from('# my file contents'), 'README.md'), n: 1, @@ -31,8 +29,7 @@ describe('resource images', () => { }); }); - // Prism doesn't support multipart/form-data - test.skip('edit: only required params', async () => { + test('edit: only required params', async () => { const responsePromise = openai.images.edit({ image: await toFile(Buffer.from('# my file contents'), 'README.md'), prompt: 'A cute baby sea otter wearing a beret', @@ -46,8 +43,7 @@ describe('resource images', () => { expect(dataAndResponse.response).toBe(rawResponse); }); - // Prism doesn't support multipart/form-data - test.skip('edit: required and optional params', async () => { + test('edit: required and optional params', async () => { const response = await openai.images.edit({ image: await toFile(Buffer.from('# my file contents'), 'README.md'), prompt: 'A cute baby sea otter wearing a beret', @@ -59,8 +55,7 @@ describe('resource images', () => { }); }); - // Prism doesn't support multipart/form-data - test.skip('generate: only required params', async () => { + test('generate: only required params', async () => { const responsePromise = openai.images.generate({ prompt: 'A cute baby sea otter' }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); @@ -71,8 +66,7 @@ describe('resource images', () => { expect(dataAndResponse.response).toBe(rawResponse); }); - // Prism doesn't support multipart/form-data - test.skip('generate: required and optional params', async () => { + test('generate: required and optional params', async () => { const response = await openai.images.generate({ prompt: 'A cute baby sea otter', n: 1, From fca6fd9745432052a9b6bcbfec26173baae5ac1a Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 1 Sep 2023 10:34:09 -0400 Subject: [PATCH 060/725] chore(next => master): release 4.4.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 16 ++++++++++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2276f3d26..fb1f343c6 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.3.1" + ".": "4.4.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index cb610f0d9..f0c19da3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## 4.4.0 (2023-09-01) + +Full Changelog: [v4.3.1...v4.4.0](https://github.com/openai/openai-node/compare/v4.3.1...v4.4.0) + +### Features + +* **package:** add Bun export map ([#269](https://github.com/openai/openai-node/issues/269)) ([16f239c](https://github.com/openai/openai-node/commit/16f239c6b4e8526371b01c511d2e0ebba4c5c8c6)) +* re-export chat completion types at the top level ([#268](https://github.com/openai/openai-node/issues/268)) ([1a71a39](https://github.com/openai/openai-node/commit/1a71a39421828fdde7b8605094363a5047d2fdc9)) +* **tests:** unskip multipart form data tests ([#275](https://github.com/openai/openai-node/issues/275)) ([47d3e18](https://github.com/openai/openai-node/commit/47d3e18a3ee987d04b958dad1a51821ad5472d54)) +* **types:** fix ambiguous auto-import for chat completions params ([#266](https://github.com/openai/openai-node/issues/266)) ([19c99fb](https://github.com/openai/openai-node/commit/19c99fb268d6d6c7fc7aaa66475c35f45d12b4bd)) + + +### Bug Fixes + +* revert import change which triggered circular import bug in webpack ([#274](https://github.com/openai/openai-node/issues/274)) ([6534e36](https://github.com/openai/openai-node/commit/6534e3620d7e2983e98b42cf95fa966deab1ab1d)) + ## 4.3.1 (2023-08-29) Full Changelog: [v4.3.0...v4.3.1](https://github.com/openai/openai-node/compare/v4.3.0...v4.3.1) diff --git a/package.json b/package.json index 8a1440f63..8e6f07882 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.3.1", + "version": "4.4.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 42e880c67..8ab25148f 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.3.1'; // x-release-please-version +export const VERSION = '4.4.0'; // x-release-please-version From 1035aa9691120b3199ff8d563608dec86edd4106 Mon Sep 17 00:00:00 2001 From: Logan Kilpatrick Date: Tue, 5 Sep 2023 18:20:20 -0500 Subject: [PATCH 061/725] Update README.md to add supported functions --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index e97b7078c..710880dab 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,10 @@ async function main() { main(); ``` +## Supported functions + +For a full list of available functions in this SDK, please refer to the [auto-generated API.md file](https://github.com/openai/openai-node/blob/master/api.md). + ## Streaming Responses We provide support for streaming responses using Server Sent Events (SSE). From 9d7876da97d8c306cc0c569aa2c2e618461d884e Mon Sep 17 00:00:00 2001 From: Logan Kilpatrick Date: Tue, 5 Sep 2023 18:43:28 -0500 Subject: [PATCH 062/725] Update README.md --- README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 710880dab..7865f7b21 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,7 @@ yarn add openai ## Usage -> [!IMPORTANT] -> Previous versions of this SDK used a `Configuration` class. See the [v3 to v4 migration guide](https://github.com/openai/openai-node/discussions/217). +The full API of this library can be found in [API.md file](https://github.com/openai/openai-node/blob/master/api.md). The code below shows how to get started using the chat completions API. ```js import OpenAI from 'openai'; @@ -40,9 +39,8 @@ async function main() { main(); ``` -## Supported functions - -For a full list of available functions in this SDK, please refer to the [auto-generated API.md file](https://github.com/openai/openai-node/blob/master/api.md). +> [!IMPORTANT] +> Previous versions of this SDK used a `Configuration` class. See the [v3 to v4 migration guide](https://github.com/openai/openai-node/discussions/217). ## Streaming Responses From 2deae0ec10938daf7daabb43ec7d103259458cdb Mon Sep 17 00:00:00 2001 From: Logan Kilpatrick Date: Tue, 5 Sep 2023 19:39:17 -0500 Subject: [PATCH 063/725] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7865f7b21..713461962 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ yarn add openai ## Usage -The full API of this library can be found in [API.md file](https://github.com/openai/openai-node/blob/master/api.md). The code below shows how to get started using the chat completions API. +The full API of this library can be found in [API.md file](https://github.com/openai/openai-node/blob/master/api.md). The code below shows how to get started using the Chat completions API. ```js import OpenAI from 'openai'; From 14315978e22a179719905844de1659a377324cc3 Mon Sep 17 00:00:00 2001 From: Logan Kilpatrick Date: Tue, 5 Sep 2023 19:46:35 -0500 Subject: [PATCH 064/725] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 713461962..7865f7b21 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ yarn add openai ## Usage -The full API of this library can be found in [API.md file](https://github.com/openai/openai-node/blob/master/api.md). The code below shows how to get started using the Chat completions API. +The full API of this library can be found in [API.md file](https://github.com/openai/openai-node/blob/master/api.md). The code below shows how to get started using the chat completions API. ```js import OpenAI from 'openai'; From 16fe929688d35c2ebe52c8cf1c1570bafda5f97e Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 1 Sep 2023 14:16:33 -0400 Subject: [PATCH 065/725] fix(client): use explicit file extensions in _shims imports (#276) --- build | 1 + jest.config.js | 2 +- package.json | 36 ++++++++++++++----- scripts/replace-self-referencing-imports.js | 11 ++++-- scripts/resolve-full-paths.js | 16 +++++++++ ...eStream.node.ts => ReadableStream-node.ts} | 0 src/_shims/{agent.node.ts => agent-node.ts} | 0 src/_shims/agent.ts | 2 +- src/_shims/{fetch.deno.ts => fetch-deno.ts} | 0 .../{fetch.node.d.ts => fetch-node.d.ts} | 0 src/_shims/{fetch.node.js => fetch-node.js} | 0 src/_shims/{fetch.node.mjs => fetch-node.mjs} | 0 ...eFromPath.node.ts => fileFromPath-node.ts} | 2 +- src/_shims/fileFromPath.ts | 4 +-- .../{formdata.deno.ts => form-data-deno.ts} | 0 ...formdata.node.d.ts => form-data-node.d.ts} | 0 .../{formdata.node.js => form-data-node.js} | 0 .../{formdata.node.mjs => form-data-node.mjs} | 0 src/_shims/{formdata.d.ts => form-data.d.ts} | 0 src/_shims/{formdata.js => form-data.js} | 0 src/_shims/{formdata.mjs => form-data.mjs} | 0 ....ts => getMultipartRequestOptions-node.ts} | 2 +- src/_shims/getMultipartRequestOptions.ts | 2 +- ...readable.node.ts => node-readable-node.ts} | 0 src/uploads.ts | 2 +- tests/form.test.ts | 2 +- tests/uploads.test.ts | 2 +- tsconfig.build.json | 9 +++-- tsconfig.json | 2 +- 29 files changed, 70 insertions(+), 25 deletions(-) create mode 100644 scripts/resolve-full-paths.js rename src/_shims/{ReadableStream.node.ts => ReadableStream-node.ts} (100%) rename src/_shims/{agent.node.ts => agent-node.ts} (100%) rename src/_shims/{fetch.deno.ts => fetch-deno.ts} (100%) rename src/_shims/{fetch.node.d.ts => fetch-node.d.ts} (100%) rename src/_shims/{fetch.node.js => fetch-node.js} (100%) rename src/_shims/{fetch.node.mjs => fetch-node.mjs} (100%) rename src/_shims/{fileFromPath.node.ts => fileFromPath-node.ts} (93%) rename src/_shims/{formdata.deno.ts => form-data-deno.ts} (100%) rename src/_shims/{formdata.node.d.ts => form-data-node.d.ts} (100%) rename src/_shims/{formdata.node.js => form-data-node.js} (100%) rename src/_shims/{formdata.node.mjs => form-data-node.mjs} (100%) rename src/_shims/{formdata.d.ts => form-data.d.ts} (100%) rename src/_shims/{formdata.js => form-data.js} (100%) rename src/_shims/{formdata.mjs => form-data.mjs} (100%) rename src/_shims/{getMultipartRequestOptions.node.ts => getMultipartRequestOptions-node.ts} (94%) rename src/_shims/{node-readable.node.ts => node-readable-node.ts} (100%) diff --git a/build b/build index 85312ce8e..d3aa4f5ae 100755 --- a/build +++ b/build @@ -12,6 +12,7 @@ rm -rf dist; mkdir dist # Copy src to dist/src and build from dist/src into dist, so that # the source map for index.js.map will refer to ./src/index.ts etc cp -rp src README.md dist +rm dist/src/_shims/*-deno.* for file in LICENSE CHANGELOG.md; do if [ -e "${file}" ]; then cp "${file}" dist; fi done diff --git a/jest.config.js b/jest.config.js index 29efff74a..2f22a3d51 100644 --- a/jest.config.js +++ b/jest.config.js @@ -4,7 +4,7 @@ module.exports = { testEnvironment: 'node', moduleNameMapper: { '^openai$': '/src/index.ts', - '^openai/_shims/(.*)$': '/src/_shims/$1.node', + '^openai/_shims/(.*)$': '/src/_shims/$1-node', '^openai/(.*)$': '/src/$1', }, modulePathIgnorePatterns: ['/ecosystem-tests/', '/dist/', '/deno_tests/'], diff --git a/package.json b/package.json index 8e6f07882..d493b0550 100644 --- a/package.json +++ b/package.json @@ -10,10 +10,9 @@ "license": "Apache-2.0", "private": false, "exports": { - "./_shims/*": { + "./_shims/*.mjs": { "deno": { "types": "./dist/_shims/*.d.ts", - "require": "./dist/_shims/*.js", "default": "./dist/_shims/*.mjs" }, "bun": { @@ -23,28 +22,47 @@ }, "browser": { "types": "./dist/_shims/*.d.ts", - "require": "./dist/_shims/*.js", "default": "./dist/_shims/*.mjs" }, "worker": { "types": "./dist/_shims/*.d.ts", - "require": "./dist/_shims/*.js", "default": "./dist/_shims/*.mjs" }, "workerd": { "types": "./dist/_shims/*.d.ts", - "require": "./dist/_shims/*.js", "default": "./dist/_shims/*.mjs" }, "node": { - "types": "./dist/_shims/*.node.d.ts", - "require": "./dist/_shims/*.node.js", - "default": "./dist/_shims/*.node.mjs" + "types": "./dist/_shims/*-node.d.ts", + "default": "./dist/_shims/*-node.mjs" }, "types": "./dist/_shims/*.d.ts", - "require": "./dist/_shims/*.js", "default": "./dist/_shims/*.mjs" }, + "./_shims/*.js": { + "deno": { + "types": "./dist/_shims/*.d.ts", + "default": "./dist/_shims/*.js" + }, + "browser": { + "types": "./dist/_shims/*.d.ts", + "default": "./dist/_shims/*.js" + }, + "worker": { + "types": "./dist/_shims/*.d.ts", + "default": "./dist/_shims/*.js" + }, + "workerd": { + "types": "./dist/_shims/*.d.ts", + "default": "./dist/_shims/*.js" + }, + "node": { + "types": "./dist/_shims/*-node.d.ts", + "default": "./dist/_shims/*-node.js" + }, + "types": "./dist/_shims/*.d.ts", + "default": "./dist/_shims/*.js" + }, ".": { "require": { "types": "./dist/index.d.ts", diff --git a/scripts/replace-self-referencing-imports.js b/scripts/replace-self-referencing-imports.js index de3246dd3..7d49d7c74 100644 --- a/scripts/replace-self-referencing-imports.js +++ b/scripts/replace-self-referencing-imports.js @@ -2,14 +2,21 @@ Object.defineProperty(exports, '__esModule', { value: true }); const path = require('path'); -const distSrcDir = path.resolve(__dirname, '..', 'dist', 'src'); +const distDir = path.resolve(__dirname, '..', 'dist'); +const distSrcDir = path.join(distDir, 'src'); function replaceSelfReferencingImports({ orig, file, config }) { // replace self-referencing imports in source files to reduce errors users will // see if they go to definition - if (!file.startsWith(distSrcDir)) return orig; + if (!file.startsWith(distDir)) return orig; + return orig.replace(/['"]([^"'\r\n]+)['"]/, (match, importPath) => { if (!importPath.startsWith('openai/')) return match; + if (!file.startsWith(distSrcDir)) { + const ext = file.endsWith('.d.ts') ? '' : path.extname(file); + const { dir, base } = path.parse(importPath); + return JSON.stringify(`${dir}/${base}${ext}`); + } let relativePath = path.relative( path.dirname(file), path.join(distSrcDir, importPath.substring('openai/'.length)), diff --git a/scripts/resolve-full-paths.js b/scripts/resolve-full-paths.js new file mode 100644 index 000000000..f8f979ad7 --- /dev/null +++ b/scripts/resolve-full-paths.js @@ -0,0 +1,16 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); + +const path = require('path'); + +// tsc-alias --resolveFullPaths is buggy, it replaces 'formdata-node' +// with 'formdata-node.js' because we have a file with that name +function resolveFullPaths({ orig, file, config }) { + return orig.replace(/['"]([^"'\r\n]+)['"]/, (match, importPath) => { + if (!importPath.startsWith('.')) return match; + const { dir, name } = path.parse(importPath); + const ext = /\.mjs$/.test(file) ? '.mjs' : '.js'; + return JSON.stringify(`${dir}/${name}${ext}`); + }); +} +exports.default = resolveFullPaths; diff --git a/src/_shims/ReadableStream.node.ts b/src/_shims/ReadableStream-node.ts similarity index 100% rename from src/_shims/ReadableStream.node.ts rename to src/_shims/ReadableStream-node.ts diff --git a/src/_shims/agent.node.ts b/src/_shims/agent-node.ts similarity index 100% rename from src/_shims/agent.node.ts rename to src/_shims/agent-node.ts diff --git a/src/_shims/agent.ts b/src/_shims/agent.ts index c39d1cfb0..24e5bf7ca 100644 --- a/src/_shims/agent.ts +++ b/src/_shims/agent.ts @@ -2,7 +2,7 @@ * Disclaimer: modules in _shims aren't intended to be imported by SDK users. * * This is a stub for non-node environments. - * In node environments, it gets replaced agent.node.ts by the package export map + * In node environments, it gets replaced agent-node.ts by the package export map */ export type Agent = any; diff --git a/src/_shims/fetch.deno.ts b/src/_shims/fetch-deno.ts similarity index 100% rename from src/_shims/fetch.deno.ts rename to src/_shims/fetch-deno.ts diff --git a/src/_shims/fetch.node.d.ts b/src/_shims/fetch-node.d.ts similarity index 100% rename from src/_shims/fetch.node.d.ts rename to src/_shims/fetch-node.d.ts diff --git a/src/_shims/fetch.node.js b/src/_shims/fetch-node.js similarity index 100% rename from src/_shims/fetch.node.js rename to src/_shims/fetch-node.js diff --git a/src/_shims/fetch.node.mjs b/src/_shims/fetch-node.mjs similarity index 100% rename from src/_shims/fetch.node.mjs rename to src/_shims/fetch-node.mjs diff --git a/src/_shims/fileFromPath.node.ts b/src/_shims/fileFromPath-node.ts similarity index 93% rename from src/_shims/fileFromPath.node.ts rename to src/_shims/fileFromPath-node.ts index 676d2e2df..065fd7ecb 100644 --- a/src/_shims/fileFromPath.node.ts +++ b/src/_shims/fileFromPath-node.ts @@ -3,7 +3,7 @@ */ import { fileFromPath as _fileFromPath } from 'formdata-node/file-from-path'; -import type { File, FilePropertyBag } from './formdata.node'; +import type { File, FilePropertyBag } from './form-data-node'; export type FileFromPathOptions = Omit; diff --git a/src/_shims/fileFromPath.ts b/src/_shims/fileFromPath.ts index 7926b4a56..4e7c4c001 100644 --- a/src/_shims/fileFromPath.ts +++ b/src/_shims/fileFromPath.ts @@ -1,11 +1,11 @@ /** * Disclaimer: modules in _shims aren't intended to be imported by SDK users. * - * This is a stub that gets replaced by fileFromPath.node.js for node environments + * This is a stub that gets replaced by fileFromPath-node.js for node environments * in the package export map */ -import type { FilePropertyBag, File } from './formdata'; +import type { FilePropertyBag, File } from './form-data'; export type FileFromPathOptions = Omit; diff --git a/src/_shims/formdata.deno.ts b/src/_shims/form-data-deno.ts similarity index 100% rename from src/_shims/formdata.deno.ts rename to src/_shims/form-data-deno.ts diff --git a/src/_shims/formdata.node.d.ts b/src/_shims/form-data-node.d.ts similarity index 100% rename from src/_shims/formdata.node.d.ts rename to src/_shims/form-data-node.d.ts diff --git a/src/_shims/formdata.node.js b/src/_shims/form-data-node.js similarity index 100% rename from src/_shims/formdata.node.js rename to src/_shims/form-data-node.js diff --git a/src/_shims/formdata.node.mjs b/src/_shims/form-data-node.mjs similarity index 100% rename from src/_shims/formdata.node.mjs rename to src/_shims/form-data-node.mjs diff --git a/src/_shims/formdata.d.ts b/src/_shims/form-data.d.ts similarity index 100% rename from src/_shims/formdata.d.ts rename to src/_shims/form-data.d.ts diff --git a/src/_shims/formdata.js b/src/_shims/form-data.js similarity index 100% rename from src/_shims/formdata.js rename to src/_shims/form-data.js diff --git a/src/_shims/formdata.mjs b/src/_shims/form-data.mjs similarity index 100% rename from src/_shims/formdata.mjs rename to src/_shims/form-data.mjs diff --git a/src/_shims/getMultipartRequestOptions.node.ts b/src/_shims/getMultipartRequestOptions-node.ts similarity index 94% rename from src/_shims/getMultipartRequestOptions.node.ts rename to src/_shims/getMultipartRequestOptions-node.ts index 3d6907492..ac13a0756 100644 --- a/src/_shims/getMultipartRequestOptions.node.ts +++ b/src/_shims/getMultipartRequestOptions-node.ts @@ -2,7 +2,7 @@ * Disclaimer: modules in _shims aren't intended to be imported by SDK users. */ -import { FormData } from './formdata.node'; +import { FormData } from './form-data-node'; import type { RequestOptions } from '../core'; import { Readable } from 'node:stream'; import { FormDataEncoder } from 'form-data-encoder'; diff --git a/src/_shims/getMultipartRequestOptions.ts b/src/_shims/getMultipartRequestOptions.ts index b9abe6437..f74227d0b 100644 --- a/src/_shims/getMultipartRequestOptions.ts +++ b/src/_shims/getMultipartRequestOptions.ts @@ -2,7 +2,7 @@ * Disclaimer: modules in _shims aren't intended to be imported by SDK users. */ -import { FormData } from './formdata'; +import { FormData } from './form-data'; import type { RequestOptions } from '../core'; import { MultipartBody } from '../uploads'; diff --git a/src/_shims/node-readable.node.ts b/src/_shims/node-readable-node.ts similarity index 100% rename from src/_shims/node-readable.node.ts rename to src/_shims/node-readable-node.ts diff --git a/src/uploads.ts b/src/uploads.ts index 642bc66a5..e02ecb8a1 100644 --- a/src/uploads.ts +++ b/src/uploads.ts @@ -1,7 +1,7 @@ import { type RequestOptions } from './core'; import { type Readable } from 'openai/_shims/node-readable'; import { type BodyInit } from 'openai/_shims/fetch'; -import { FormData, File, type Blob, type FilePropertyBag } from 'openai/_shims/formdata'; +import { FormData, File, type Blob, type FilePropertyBag } from 'openai/_shims/form-data'; import { getMultipartRequestOptions } from 'openai/_shims/getMultipartRequestOptions'; import { fileFromPath } from 'openai/_shims/fileFromPath'; import { type FsReadStream, isFsReadStream } from 'openai/_shims/node-readable'; diff --git a/tests/form.test.ts b/tests/form.test.ts index 1b51d0795..88dfaac77 100644 --- a/tests/form.test.ts +++ b/tests/form.test.ts @@ -1,5 +1,5 @@ import { multipartFormRequestOptions, createForm } from 'openai/core'; -import { Blob } from 'openai/_shims/formdata'; +import { Blob } from 'openai/_shims/form-data'; import { toFile } from 'openai'; describe('form data validation', () => { diff --git a/tests/uploads.test.ts b/tests/uploads.test.ts index 1079379ed..76fa6573c 100644 --- a/tests/uploads.test.ts +++ b/tests/uploads.test.ts @@ -1,6 +1,6 @@ import fs from 'fs'; import { toFile, type ResponseLike } from 'openai/uploads'; -import { File } from 'openai/_shims/formdata'; +import { File } from 'openai/_shims/form-data'; class MyClass { name: string = 'foo'; diff --git a/tsconfig.build.json b/tsconfig.build.json index 890200d2b..320dc5c1d 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -5,7 +5,7 @@ "compilerOptions": { "rootDir": "./dist/src", "paths": { - "openai/_shims/*": ["dist/src/_shims/*.node"], + "openai/_shims/*": ["dist/src/_shims/*-node"], "openai": ["dist/src/index.ts"], "openai/*": ["dist/src/*"], "digest-fetch": ["./typings/digest-fetch"] @@ -18,14 +18,17 @@ "sourceMap": true }, "tsc-alias": { - "resolveFullPaths": true, "fileExtensions": { "inputGlob": "{mjs,cjs,js,jsx,mts,cts,ts,tsx}" }, "replacers": { - "replace-absolute-imports": { + "replace-self-referencing-imports": { "enabled": true, "file": "./scripts/replace-self-referencing-imports.js" + }, + "resolve-full-paths": { + "enabled": true, + "file": "./scripts/resolve-full-paths.js" } } } diff --git a/tsconfig.json b/tsconfig.json index 89f263f29..1edbcb2e2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,7 +9,7 @@ "esModuleInterop": true, "baseUrl": "./", "paths": { - "openai/_shims/*": ["src/_shims/*.node"], + "openai/_shims/*": ["src/_shims/*-node"], "openai": ["src/index.ts"], "openai/*": ["src/*"], "digest-fetch": ["./typings/digest-fetch"] From 8dc59bcf924cc991747ca475c714d915e04c6012 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sun, 3 Sep 2023 13:16:03 -0400 Subject: [PATCH 066/725] fix(client): fix TS errors that appear when users Go to Source in VSCode (#281) fix #249 --- README.md | 2 + build | 10 +- ecosystem-tests/bun/bun.lockb | Bin 1686 -> 2070 bytes ecosystem-tests/bun/package.json | 2 +- ecosystem-tests/cli.ts | 7 +- .../cloudflare-worker/package-lock.json | 1236 +++--- .../cloudflare-worker/package.json | 2 +- .../node-ts-cjs-dom/package-lock.json | 1103 +++-- ecosystem-tests/node-ts-cjs-dom/package.json | 4 +- .../node-ts-cjs-ts4.5/jest.config.cjs | 9 + .../node-ts-cjs-ts4.5/package-lock.json | 3917 +++++++++++++++++ .../node-ts-cjs-ts4.5/package.json | 24 + ecosystem-tests/node-ts-cjs-ts4.5/sample1.mp3 | Bin 0 -> 121671 bytes .../node-ts-cjs-ts4.5/tests/test.ts | 173 + .../node-ts-cjs-ts4.5/tsconfig.json | 54 + ecosystem-tests/node-ts-cjs/package-lock.json | 1105 +++-- ecosystem-tests/node-ts-cjs/package.json | 4 +- ecosystem-tests/node-ts-cjs/tsconfig.json | 4 +- .../node-ts-cjs/tsconfig.nodenext.json | 4 +- .../node-ts-esm-dom/package-lock.json | 1113 +++-- ecosystem-tests/node-ts-esm-dom/package.json | 2 +- ecosystem-tests/node-ts-esm/package-lock.json | 1113 +++-- ecosystem-tests/node-ts-esm/package.json | 2 +- .../ts-browser-webpack/package-lock.json | 607 +-- .../ts-browser-webpack/package.json | 2 +- ecosystem-tests/vercel-edge/package-lock.json | 2719 +----------- ecosystem-tests/vercel-edge/package.json | 2 +- scripts/remove-triple-slash-references.js | 11 + scripts/replace-shim-guards.js | 14 + src/_shims/fetch-deno.ts | 4 + src/_shims/form-data-deno.ts | 3 + src/core.ts | 7 +- tsconfig.dist-src.json | 11 + 33 files changed, 8003 insertions(+), 5267 deletions(-) create mode 100644 ecosystem-tests/node-ts-cjs-ts4.5/jest.config.cjs create mode 100644 ecosystem-tests/node-ts-cjs-ts4.5/package-lock.json create mode 100644 ecosystem-tests/node-ts-cjs-ts4.5/package.json create mode 100644 ecosystem-tests/node-ts-cjs-ts4.5/sample1.mp3 create mode 100644 ecosystem-tests/node-ts-cjs-ts4.5/tests/test.ts create mode 100644 ecosystem-tests/node-ts-cjs-ts4.5/tsconfig.json create mode 100644 scripts/remove-triple-slash-references.js create mode 100644 scripts/replace-shim-guards.js create mode 100644 tsconfig.dist-src.json diff --git a/README.md b/README.md index 7865f7b21..bd5a544b5 100644 --- a/README.md +++ b/README.md @@ -309,6 +309,8 @@ We are keen for your feedback; please open an [issue](https://www.github.com/ope ## Requirements +TypeScript >= 4.5 is supported. + The following runtimes are supported: - Node.js 16 LTS or later ([non-EOL](https://endoflife.date/nodejs)) versions. diff --git a/build b/build index d3aa4f5ae..785c3c755 100755 --- a/build +++ b/build @@ -38,14 +38,14 @@ node scripts/fix-index-exports.cjs # index.d.mts the default import will work (even though both files have # the same export default statement) cp dist/index.d.ts dist/index.d.mts - -SED=(sed -i) -if [[ "$OSTYPE" == "darwin"* ]]; then SED=(sed -i ''); fi +cp tsconfig.dist-src.json dist/src/tsconfig.json # strip out lib="dom" and types="node" references; these are needed at build time, # but would pollute the user's TS environment -REFERENCE_SUBS='s/^ *\/\/\/ *iyfH!`Yo!enbF{-bY!VkEsw?ZloHRoUHq?X zM5mj1uAC-&_UxJoXEfT4`yZ~J?8_uEnU~4Co*8656tILnXk09}%l_}JPpp2mpAJQ| z?Am)Pe09(EirKAqBj23Rb6>8hrerCzevSlR?Y5QdalW2?HR_C~LuSspb(8a{_8q7> zqColx_j?vl$OJ^iu*0GOL>~eYNFgT2fJG1?1`HkJ$s)|jlMgT&a_xYcbB1MdBeR{< zzyA;bvJ~WtA5du)*2(vnmBc{8Ad8rQ*Z>;bHV`S0YLGBUx&SJ*k9D#ii=H?rF~B07 zgDEGmB(=DNfk9&OS{6waSmJ>t5)MXFJp(-xpdlQ<7zY6lHlWKyCO=`(@hT}!1`8ed zEwZ#|$^?<5%shRN82`P+Ht%E$ca;%T&#lrLqV+G&8 z3aF8F?31NfO(#dP%J`L37Niy@7iAWdKn#NzkWo@nP;8~IUzD1jSzJ<7sh3xfn^mlr oUzDzo(4eo2#L)#id-4HR`NZ@{^USz4)8$)fQeY%eC+@XzkLCS`ib&i`^M3oj2F8v__HPYjo@ zFK32uAS6EnLxU2KDGa0~fix$Oej6fpRbkif)z)t5S59mcI#m58{cMNOYb8dg#s^#0 zvVqtzzT~6}U_MluL9G7nQ)@;xh60!TY?vC5921CO0bxX1E*AlKb&ILeIsItyLjuDOa|XO*V8~2pt%&}a)t$s zEMQl1iTwx!x-QO8&j6bk&{+nPA226#9e@Vl73RrxEOzoBV;TPahX4>8?oA+@gJm)w ztCA4Ne2}mO$oD|t0v476F+uu3QXnN2Q0ZeVligVL#JPZ>GGDbpN4qsONq{lVRL=nD zG6u=Xg{+c{N|U=;CAkDxK}Ikz2(V5*!Ro-}0OkH;ogBnws#a22kXoEvlvz-cRGOy? v=A|VTm!uY#=;oxBrREi9l%!_nP2R~SJz0P~o!wl|Sg$0#YH}m{RFDq=WYCcb diff --git a/ecosystem-tests/bun/package.json b/ecosystem-tests/bun/package.json index 1465be93a..4e416a931 100644 --- a/ecosystem-tests/bun/package.json +++ b/ecosystem-tests/bun/package.json @@ -8,6 +8,6 @@ "devDependencies": { "fastest-levenshtein": "^1.0.16", "bun-types": "latest", - "typescript": "^5.1.0" + "typescript": "5.0.4" } } diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index d6ffcb872..619cdc002 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -48,6 +48,10 @@ const projects = { await run('npm', ['test']); } }, + 'node-ts-cjs-ts4.5': async () => { + await installPackage(); + await run('npm', ['run', 'tsc']); + }, 'node-ts-cjs-dom': async () => { await installPackage(); await run('npm', ['run', 'tsc']); @@ -296,8 +300,7 @@ async function withRetry(fn: () => Promise, identifier: string, retryAmoun try { return await fn(); } catch (err) { - retryAmount--; - if (retryAmount === 0) throw err; + if (--retryAmount <= 0) throw err; console.error(`${identifier} failed due to ${err}; retries left ${retryAmount}`); } } while (retryAmount > 0); diff --git a/ecosystem-tests/cloudflare-worker/package-lock.json b/ecosystem-tests/cloudflare-worker/package-lock.json index 19aa462b6..a69eb8a68 100644 --- a/ecosystem-tests/cloudflare-worker/package-lock.json +++ b/ecosystem-tests/cloudflare-worker/package-lock.json @@ -16,7 +16,7 @@ "jest": "^29.5.0", "start-server-and-test": "^2.0.0", "ts-jest": "^29.1.0", - "typescript": "^5.1.6", + "typescript": "5.0.4", "wrangler": "^3.0.0" } }, @@ -34,47 +34,119 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", - "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", "dev": true, "dependencies": { - "@babel/highlight": "^7.22.5" + "@babel/highlight": "^7.22.13", + "chalk": "^2.4.2" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@babel/code-frame/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/code-frame/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/code-frame/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/@babel/compat-data": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", - "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz", + "integrity": "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.5.tgz", - "integrity": "sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.11.tgz", + "integrity": "sha512-lh7RJrtPdhibbxndr6/xx0w8+CVlY5FJZiaSz908Fpy+G0xkBFTvwLcKJFF4PJxVfGhVWNebikpWGnOoC71juQ==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helpers": "^7.22.5", - "@babel/parser": "^7.22.5", + "@babel/code-frame": "^7.22.10", + "@babel/generator": "^7.22.10", + "@babel/helper-compilation-targets": "^7.22.10", + "@babel/helper-module-transforms": "^7.22.9", + "@babel/helpers": "^7.22.11", + "@babel/parser": "^7.22.11", "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5", + "@babel/traverse": "^7.22.11", + "@babel/types": "^7.22.11", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" + "json5": "^2.2.3", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -91,12 +163,12 @@ "dev": true }, "node_modules/@babel/generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", - "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz", + "integrity": "sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5", + "@babel/types": "^7.22.10", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" @@ -106,22 +178,19 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", - "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz", + "integrity": "sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.22.5", + "@babel/compat-data": "^7.22.9", "@babel/helper-validator-option": "^7.22.5", - "browserslist": "^4.21.3", + "browserslist": "^4.21.9", "lru-cache": "^5.1.1", - "semver": "^6.3.0" + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-environment-visitor": { @@ -171,22 +240,22 @@ } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", - "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz", + "integrity": "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-module-imports": "^7.22.5", "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.5" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-plugin-utils": { @@ -211,9 +280,9 @@ } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "dev": true, "dependencies": { "@babel/types": "^7.22.5" @@ -250,27 +319,27 @@ } }, "node_modules/@babel/helpers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", - "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.11.tgz", + "integrity": "sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==", "dev": true, "dependencies": { "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.22.11", + "@babel/types": "^7.22.11" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", - "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz", + "integrity": "sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==", "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", - "chalk": "^2.0.0", + "chalk": "^2.4.2", "js-tokens": "^4.0.0" }, "engines": { @@ -349,9 +418,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", - "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", + "version": "7.22.14", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.14.tgz", + "integrity": "sha512-1KucTHgOvaw/LzCVrEOAyXkr9rQlp0A1HiHRYnSUE9dmb8PvPW7o5sscg+5169r54n3vGlbx6GevTE/Iw/P3AQ==", "dev": true, "bin": { "parser": "bin/babel-parser.js" @@ -552,19 +621,19 @@ } }, "node_modules/@babel/traverse": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", - "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.11.tgz", + "integrity": "sha512-mzAenteTfomcB7mfPtyi+4oe5BZ6MXxWcn4CX+h4IRJ+OOGXBrWU6jDQavkQI9Vuc5P+donFabBfFCcmWka9lQ==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.5", + "@babel/code-frame": "^7.22.10", + "@babel/generator": "^7.22.10", "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-function-name": "^7.22.5", "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.22.11", + "@babel/types": "^7.22.11", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -573,9 +642,9 @@ } }, "node_modules/@babel/types": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", - "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.11.tgz", + "integrity": "sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg==", "dev": true, "dependencies": { "@babel/helper-string-parser": "^7.22.5", @@ -602,9 +671,9 @@ } }, "node_modules/@cloudflare/workerd-darwin-64": { - "version": "1.20230518.0", - "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20230518.0.tgz", - "integrity": "sha512-reApIf2/do6GjLlajU6LbRYh8gm/XcaRtzGbF8jo5IzyDSsdStmfNuvq7qssZXG92219Yp1kuTgR9+D1GGZGbg==", + "version": "1.20230814.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20230814.1.tgz", + "integrity": "sha512-aQUO7q7qXl+SVtOiMMlVKLNOSeL6GX43RKeflwzsD74dGgyHPiSfw5KCvXhkVbyN7u+yYF6HyFdaIvHLfn5jyA==", "cpu": [ "x64" ], @@ -618,9 +687,9 @@ } }, "node_modules/@cloudflare/workerd-darwin-arm64": { - "version": "1.20230518.0", - "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20230518.0.tgz", - "integrity": "sha512-1l+xdbmPddqb2YIHd1YJ3YG/Fl1nhayzcxfL30xfNS89zJn9Xn3JomM0XMD4mk0d5GruBP3q8BQZ1Uo4rRLF3A==", + "version": "1.20230814.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20230814.1.tgz", + "integrity": "sha512-U2mcgi+AiuI/4EY5Wk/GmygiNoCNw/V2mcHmxESqe4r6XbJYOzBdEsjnqJ05rqd0JlEM8m64jRtE6/qBnQHygg==", "cpu": [ "arm64" ], @@ -634,9 +703,9 @@ } }, "node_modules/@cloudflare/workerd-linux-64": { - "version": "1.20230518.0", - "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20230518.0.tgz", - "integrity": "sha512-/pfR+YBpMOPr2cAlwjtInil0hRZjD8KX9LqK9JkfkEiaBH8CYhnJQcOdNHZI+3OjcY09JnQtEVC5xC4nbW7Bvw==", + "version": "1.20230814.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20230814.1.tgz", + "integrity": "sha512-Q4kITXLTCuG2i2Z01fbb5AjVRRIf3+lS4ZVsFbTbIwtcOOG4Ozcw7ee7tKsFES7hFqR4Eg9gMG4/aS0mmi+L2g==", "cpu": [ "x64" ], @@ -650,9 +719,9 @@ } }, "node_modules/@cloudflare/workerd-linux-arm64": { - "version": "1.20230518.0", - "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20230518.0.tgz", - "integrity": "sha512-q3HQvn3J4uEkE0cfDAGG8zqzSZrD47cavB/Tzv4mNutqwg6B4wL3ifjtGeB55tnP2K2KL0GVmX4tObcvpUF4BA==", + "version": "1.20230814.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20230814.1.tgz", + "integrity": "sha512-BX5SaksXw+pkREVw3Rw2eSNXplqZw+14CcwW/5x/4oq/C6yn5qCvKxJfM7pukJGMI4wkJPOYops7B3g27FB/HA==", "cpu": [ "arm64" ], @@ -666,9 +735,9 @@ } }, "node_modules/@cloudflare/workerd-windows-64": { - "version": "1.20230518.0", - "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20230518.0.tgz", - "integrity": "sha512-vNEHKS5gKKduNOBYtQjcBopAmFT1iScuPWMZa2nJboSjOB9I/5oiVsUpSyk5Y2ARyrohXNz0y8D7p87YzTASWw==", + "version": "1.20230814.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20230814.1.tgz", + "integrity": "sha512-GWHqfyhsG/1wm2W8afkYX3q3fWXUWWD8NGtHfAs6ZVTHdW3mmYyMhKR0lc6ptBwz5i5aXRlP2S+CxxxwwDbKpw==", "cpu": [ "x64" ], @@ -682,9 +751,9 @@ } }, "node_modules/@cloudflare/workers-types": { - "version": "4.20230518.0", - "resolved": "https://registry.npmjs.org/@cloudflare/workers-types/-/workers-types-4.20230518.0.tgz", - "integrity": "sha512-A0w1V+5SUawGaaPRlhFhSC/SCDT9oQG8TMoWOKFLA4qbqagELqEAFD4KySBIkeVOvCBLT1DZSYBMCxbXddl0kw==", + "version": "4.20230821.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workers-types/-/workers-types-4.20230821.0.tgz", + "integrity": "sha512-lVQSyr5E4CEkQw7WIdsrMTj+kHjsm28mJ0B5AhNFByKR+16KTFsU/RW/nGLKHHW2jxT5lvYI+HjNQMzC9QR8Ng==", "dev": true }, "node_modules/@esbuild-plugins/node-globals-polyfill": { @@ -1114,16 +1183,16 @@ } }, "node_modules/@jest/console": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", - "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.6.4.tgz", + "integrity": "sha512-wNK6gC0Ha9QeEPSkeJedQuTQqxZYnDPuDcDhVuVatRvMkL4D0VTvFVZj+Yuh6caG2aOfzkUZ36KtCmLNtR02hw==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", "slash": "^3.0.0" }, "engines": { @@ -1131,37 +1200,37 @@ } }, "node_modules/@jest/core": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", - "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.6.4.tgz", + "integrity": "sha512-U/vq5ccNTSVgYH7mHnodHmCffGWHJnz/E1BEWlLuK5pM4FZmGfBn/nrJGLjUsSmyx3otCeqc1T31F4y08AMDLg==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/reporters": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.6.4", + "@jest/reporters": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "ci-info": "^3.2.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.5.0", - "jest-config": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-resolve-dependencies": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "jest-watcher": "^29.5.0", + "jest-changed-files": "^29.6.3", + "jest-config": "^29.6.4", + "jest-haste-map": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-resolve-dependencies": "^29.6.4", + "jest-runner": "^29.6.4", + "jest-runtime": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", + "jest-watcher": "^29.6.4", "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", + "pretty-format": "^29.6.3", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, @@ -1178,89 +1247,89 @@ } }, "node_modules/@jest/environment": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", - "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.6.4.tgz", + "integrity": "sha512-sQ0SULEjA1XUTHmkBRl7A1dyITM9yb1yb3ZNKPX3KlTd6IG7mWUe3e2yfExtC2Zz1Q+mMckOLHmL/qLiuQJrBQ==", "dev": true, "dependencies": { - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/fake-timers": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.5.0" + "jest-mock": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.6.4.tgz", + "integrity": "sha512-Warhsa7d23+3X5bLbrbYvaehcgX5TLYhI03JKoedTiI8uJU4IhqYBWF7OSSgUyz4IgLpUYPkK0AehA5/fRclAA==", "dev": true, "dependencies": { - "expect": "^29.5.0", - "jest-snapshot": "^29.5.0" + "expect": "^29.6.4", + "jest-snapshot": "^29.6.4" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", - "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.6.4.tgz", + "integrity": "sha512-FEhkJhqtvBwgSpiTrocquJCdXPsyvNKcl/n7A3u7X4pVoF4bswm11c9d4AV+kfq2Gpv/mM8x7E7DsRvH+djkrg==", "dev": true, "dependencies": { - "jest-get-type": "^29.4.3" + "jest-get-type": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/fake-timers": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", - "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.6.4.tgz", + "integrity": "sha512-6UkCwzoBK60edXIIWb0/KWkuj7R7Qq91vVInOe3De6DSpaEiqjKcJw4F7XUet24Wupahj9J6PlR09JqJ5ySDHw==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@sinonjs/fake-timers": "^10.0.2", "@types/node": "*", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" + "jest-message-util": "^29.6.3", + "jest-mock": "^29.6.3", + "jest-util": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/globals": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", - "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.6.4.tgz", + "integrity": "sha512-wVIn5bdtjlChhXAzVXavcY/3PEjf4VqM174BM3eGL5kMxLiZD5CLnbmkEyA1Dwh9q8XjP6E8RwjBsY/iCWrWsA==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/types": "^29.5.0", - "jest-mock": "^29.5.0" + "@jest/environment": "^29.6.4", + "@jest/expect": "^29.6.4", + "@jest/types": "^29.6.3", + "jest-mock": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/reporters": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", - "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.6.4.tgz", + "integrity": "sha512-sxUjWxm7QdchdrD3NfWKrL8FBsortZeibSJv4XLjESOOjSUOkjQcb0ZHJwfhEGIvBvTluTzfG2yZWZhkrXJu8g==", "dev": true, "dependencies": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", + "@jest/console": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", "@types/node": "*", "chalk": "^4.0.0", "collect-v8-coverage": "^1.0.0", @@ -1268,13 +1337,13 @@ "glob": "^7.1.3", "graceful-fs": "^4.2.9", "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-instrument": "^6.0.0", "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", + "jest-worker": "^29.6.4", "slash": "^3.0.0", "string-length": "^4.0.1", "strip-ansi": "^6.0.0", @@ -1293,24 +1362,24 @@ } }, "node_modules/@jest/schemas": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", - "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dev": true, "dependencies": { - "@sinclair/typebox": "^0.25.16" + "@sinclair/typebox": "^0.27.8" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/source-map": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", - "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", "dev": true, "dependencies": { - "@jridgewell/trace-mapping": "^0.3.15", + "@jridgewell/trace-mapping": "^0.3.18", "callsites": "^3.0.0", "graceful-fs": "^4.2.9" }, @@ -1319,13 +1388,13 @@ } }, "node_modules/@jest/test-result": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", - "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.6.4.tgz", + "integrity": "sha512-uQ1C0AUEN90/dsyEirgMLlouROgSY+Wc/JanVVk0OiUKa5UFh7sJpMEM3aoUBAz2BRNvUJ8j3d294WFuRxSyOQ==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.6.4", + "@jest/types": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" }, @@ -1334,14 +1403,14 @@ } }, "node_modules/@jest/test-sequencer": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", - "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.6.4.tgz", + "integrity": "sha512-E84M6LbpcRq3fT4ckfKs9ryVanwkaIB0Ws9bw3/yP4seRLg/VaCZ/LgW0MCq5wwk4/iP/qnilD41aj2fsw2RMg==", "dev": true, "dependencies": { - "@jest/test-result": "^29.5.0", + "@jest/test-result": "^29.6.4", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", + "jest-haste-map": "^29.6.4", "slash": "^3.0.0" }, "engines": { @@ -1349,22 +1418,22 @@ } }, "node_modules/@jest/transform": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", - "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.6.4.tgz", + "integrity": "sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", "convert-source-map": "^2.0.0", "fast-json-stable-stringify": "^2.1.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", + "jest-haste-map": "^29.6.4", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.6.3", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", @@ -1375,12 +1444,12 @@ } }, "node_modules/@jest/types": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", - "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dev": true, "dependencies": { - "@jest/schemas": "^29.4.3", + "@jest/schemas": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", @@ -1406,9 +1475,9 @@ } }, "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", "dev": true, "engines": { "node": ">=6.0.0" @@ -1430,21 +1499,15 @@ "dev": true }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", "dev": true, "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true - }, "node_modules/@sideway/address": { "version": "4.1.4", "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz", @@ -1467,9 +1530,9 @@ "dev": true }, "node_modules/@sinclair/typebox": { - "version": "0.25.24", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", - "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", "dev": true }, "node_modules/@sinonjs/commons": { @@ -1565,15 +1628,9 @@ } }, "node_modules/@types/node": { - "version": "20.3.2", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.2.tgz", - "integrity": "sha512-vOBLVQeCQfIcF/2Y7eKFTqrMnizK5lRNQ7ykML/5RuwVXVWxYkgwS7xbt4B6fKCUPgbSL5FSsjHQpaGQP/dQmw==", - "dev": true - }, - "node_modules/@types/prettier": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", - "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", + "version": "20.5.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.7.tgz", + "integrity": "sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==", "dev": true }, "node_modules/@types/stack-utils": { @@ -1598,9 +1655,9 @@ "dev": true }, "node_modules/acorn": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", - "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -1711,15 +1768,15 @@ } }, "node_modules/babel-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", - "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.6.4.tgz", + "integrity": "sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==", "dev": true, "dependencies": { - "@jest/transform": "^29.5.0", + "@jest/transform": "^29.6.4", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.5.0", + "babel-preset-jest": "^29.6.3", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "slash": "^3.0.0" @@ -1747,10 +1804,26 @@ "node": ">=8" } }, + "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/babel-plugin-jest-hoist": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", - "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", "dev": true, "dependencies": { "@babel/template": "^7.3.3", @@ -1786,12 +1859,12 @@ } }, "node_modules/babel-preset-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", - "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", "dev": true, "dependencies": { - "babel-plugin-jest-hoist": "^29.5.0", + "babel-plugin-jest-hoist": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0" }, "engines": { @@ -1828,9 +1901,9 @@ ] }, "node_modules/better-sqlite3": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-8.4.0.tgz", - "integrity": "sha512-NmsNW1CQvqMszu/CFAJ3pLct6NEFlNfuGM6vw72KHkjOD1UDnL96XNN1BMQc1hiHo8vE2GbOWQYIpZ+YM5wrZw==", + "version": "8.5.2", + "resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-8.5.2.tgz", + "integrity": "sha512-w/EZ/jwuZF+/47mAVC2+rhR2X/gwkZ+fd1pbX7Y90D5NRaRzDQcxrHY10t6ijGiYIonCVsBSF5v1cay07bP5sg==", "dev": true, "hasInstallScript": true, "dependencies": { @@ -1902,9 +1975,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.9", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", - "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "version": "4.21.10", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", + "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", "dev": true, "funding": [ { @@ -1921,9 +1994,9 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001503", - "electron-to-chromium": "^1.4.431", - "node-releases": "^2.0.12", + "caniuse-lite": "^1.0.30001517", + "electron-to-chromium": "^1.4.477", + "node-releases": "^2.0.13", "update-browserslist-db": "^1.0.11" }, "bin": { @@ -2015,9 +2088,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001508", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001508.tgz", - "integrity": "sha512-sdQZOJdmt3GJs1UMNpCCCyeuS2IEGLXnHyAo9yIO5JJDjbjoVRij4M1qep6P6gFpptD1PqIYgzM+gwJbOi92mw==", + "version": "1.0.30001524", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001524.tgz", + "integrity": "sha512-Jj917pJtYg9HSJBF95HVX3Cdr89JUyLT4IZ8SvM5aDRni95swKgYi3TgYLH5hnGfPE/U1dg6IfZ50UsIlLkwSA==", "dev": true, "funding": [ { @@ -2157,9 +2230,9 @@ } }, "node_modules/collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", "dev": true }, "node_modules/color-convert": { @@ -2268,10 +2341,18 @@ } }, "node_modules/dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", - "dev": true + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "dev": true, + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } }, "node_modules/deep-extend": { "version": "0.6.0", @@ -2301,9 +2382,9 @@ } }, "node_modules/detect-libc": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", - "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.2.tgz", + "integrity": "sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==", "dev": true, "engines": { "node": ">=8" @@ -2319,9 +2400,9 @@ } }, "node_modules/diff-sequences": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", - "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2334,9 +2415,9 @@ "dev": true }, "node_modules/electron-to-chromium": { - "version": "1.4.442", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.442.tgz", - "integrity": "sha512-RkrZF//Ya+0aJq2NM3OdisNh5ZodZq1rdXOS96G8DdDgpDKqKE81yTbbQ3F/4CKm1JBPsGu1Lp/akkna2xO06Q==", + "version": "1.4.506", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.506.tgz", + "integrity": "sha512-xxGct4GPAKSRlrLBtJxJFYy74W11zX6PO9GyHgl/U+2s3Dp0ZEwAklDfNHXOWcvH7zWMpsmgbR0ggEuaYAVvHA==", "dev": true }, "node_modules/emittery": { @@ -2518,16 +2599,16 @@ } }, "node_modules/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.6.4.tgz", + "integrity": "sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==", "dev": true, "dependencies": { - "@jest/expect-utils": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0" + "@jest/expect-utils": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2674,9 +2755,9 @@ "dev": true }, "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, "hasInstallScript": true, "optional": true, @@ -2938,9 +3019,9 @@ } }, "node_modules/is-core-module": { - "version": "2.12.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", - "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", "dev": true, "dependencies": { "has": "^1.0.3" @@ -3025,33 +3106,66 @@ } }, "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.0.tgz", + "integrity": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==", "dev": true, "dependencies": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" + "semver": "^7.5.4" }, "engines": { - "node": ">=8" + "node": ">=10" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "dev": true, "dependencies": { "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", + "make-dir": "^4.0.0", "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" } }, "node_modules/istanbul-lib-source-maps": { @@ -3069,9 +3183,9 @@ } }, "node_modules/istanbul-reports": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", - "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", "dev": true, "dependencies": { "html-escaper": "^2.0.0", @@ -3082,15 +3196,15 @@ } }, "node_modules/jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", - "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.6.4.tgz", + "integrity": "sha512-tEFhVQFF/bzoYV1YuGyzLPZ6vlPrdfvDmmAxudA1dLEuiztqg2Rkx20vkKY32xiDROcD2KXlgZ7Cu8RPeEHRKw==", "dev": true, "dependencies": { - "@jest/core": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/core": "^29.6.4", + "@jest/types": "^29.6.3", "import-local": "^3.0.2", - "jest-cli": "^29.5.0" + "jest-cli": "^29.6.4" }, "bin": { "jest": "bin/jest.js" @@ -3108,12 +3222,13 @@ } }, "node_modules/jest-changed-files": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", - "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.6.3.tgz", + "integrity": "sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==", "dev": true, "dependencies": { "execa": "^5.0.0", + "jest-util": "^29.6.3", "p-limit": "^3.1.0" }, "engines": { @@ -3121,28 +3236,28 @@ } }, "node_modules/jest-circus": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", - "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.6.4.tgz", + "integrity": "sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/environment": "^29.6.4", + "@jest/expect": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", - "dedent": "^0.7.0", + "dedent": "^1.0.0", "is-generator-fn": "^2.0.0", - "jest-each": "^29.5.0", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", + "jest-each": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-runtime": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", "p-limit": "^3.1.0", - "pretty-format": "^29.5.0", + "pretty-format": "^29.6.3", "pure-rand": "^6.0.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" @@ -3152,21 +3267,21 @@ } }, "node_modules/jest-cli": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", - "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.6.4.tgz", + "integrity": "sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==", "dev": true, "dependencies": { - "@jest/core": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/core": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", "chalk": "^4.0.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", "import-local": "^3.0.2", - "jest-config": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", + "jest-config": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", "prompts": "^2.0.1", "yargs": "^17.3.1" }, @@ -3186,31 +3301,31 @@ } }, "node_modules/jest-config": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", - "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.6.4.tgz", + "integrity": "sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.5.0", - "@jest/types": "^29.5.0", - "babel-jest": "^29.5.0", + "@jest/test-sequencer": "^29.6.4", + "@jest/types": "^29.6.3", + "babel-jest": "^29.6.4", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-circus": "^29.5.0", - "jest-environment-node": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", + "jest-circus": "^29.6.4", + "jest-environment-node": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-runner": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", "micromatch": "^4.0.4", "parse-json": "^5.2.0", - "pretty-format": "^29.5.0", + "pretty-format": "^29.6.3", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, @@ -3231,24 +3346,24 @@ } }, "node_modules/jest-diff": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", - "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.4.tgz", + "integrity": "sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "diff-sequences": "^29.4.3", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-docblock": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", - "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.6.3.tgz", + "integrity": "sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==", "dev": true, "dependencies": { "detect-newline": "^3.0.0" @@ -3258,62 +3373,62 @@ } }, "node_modules/jest-each": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", - "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.6.3.tgz", + "integrity": "sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", - "jest-util": "^29.5.0", - "pretty-format": "^29.5.0" + "jest-get-type": "^29.6.3", + "jest-util": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-environment-node": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", - "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.4.tgz", + "integrity": "sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/environment": "^29.6.4", + "@jest/fake-timers": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" + "jest-mock": "^29.6.3", + "jest-util": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-get-type": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", - "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-haste-map": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", - "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.4.tgz", + "integrity": "sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/graceful-fs": "^4.1.3", "@types/node": "*", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.6.3", + "jest-worker": "^29.6.4", "micromatch": "^4.0.4", "walker": "^1.0.8" }, @@ -3325,46 +3440,46 @@ } }, "node_modules/jest-leak-detector": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", - "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.6.3.tgz", + "integrity": "sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==", "dev": true, "dependencies": { - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", - "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.6.4.tgz", + "integrity": "sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "jest-diff": "^29.6.4", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-message-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", - "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.6.3.tgz", + "integrity": "sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==", "dev": true, "dependencies": { "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", + "pretty-format": "^29.6.3", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, @@ -3373,14 +3488,14 @@ } }, "node_modules/jest-mock": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", - "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.6.3.tgz", + "integrity": "sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-util": "^29.5.0" + "jest-util": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -3404,26 +3519,26 @@ } }, "node_modules/jest-regex-util": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", - "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-resolve": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", - "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.4.tgz", + "integrity": "sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==", "dev": true, "dependencies": { "chalk": "^4.0.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", + "jest-haste-map": "^29.6.4", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", "resolve": "^1.20.0", "resolve.exports": "^2.0.0", "slash": "^3.0.0" @@ -3433,43 +3548,43 @@ } }, "node_modules/jest-resolve-dependencies": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", - "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.4.tgz", + "integrity": "sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==", "dev": true, "dependencies": { - "jest-regex-util": "^29.4.3", - "jest-snapshot": "^29.5.0" + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.6.4" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-runner": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", - "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.6.4.tgz", + "integrity": "sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/environment": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.6.4", + "@jest/environment": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.13.1", "graceful-fs": "^4.2.9", - "jest-docblock": "^29.4.3", - "jest-environment-node": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-leak-detector": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-resolve": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-util": "^29.5.0", - "jest-watcher": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-docblock": "^29.6.3", + "jest-environment-node": "^29.6.4", + "jest-haste-map": "^29.6.4", + "jest-leak-detector": "^29.6.3", + "jest-message-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-runtime": "^29.6.4", + "jest-util": "^29.6.3", + "jest-watcher": "^29.6.4", + "jest-worker": "^29.6.4", "p-limit": "^3.1.0", "source-map-support": "0.5.13" }, @@ -3478,31 +3593,31 @@ } }, "node_modules/jest-runtime": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", - "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", - "dev": true, - "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/globals": "^29.5.0", - "@jest/source-map": "^29.4.3", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.6.4.tgz", + "integrity": "sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.6.4", + "@jest/fake-timers": "^29.6.4", + "@jest/globals": "^29.6.4", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "cjs-module-lexer": "^1.0.0", "collect-v8-coverage": "^1.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", + "jest-haste-map": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-mock": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", "slash": "^3.0.0", "strip-bom": "^4.0.0" }, @@ -3511,34 +3626,31 @@ } }, "node_modules/jest-snapshot": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", - "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.6.4.tgz", + "integrity": "sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", "@babel/generator": "^7.7.2", "@babel/plugin-syntax-jsx": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/babel__traverse": "^7.0.6", - "@types/prettier": "^2.1.5", + "@jest/expect-utils": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^29.5.0", + "expect": "^29.6.4", "graceful-fs": "^4.2.9", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", + "jest-diff": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", "natural-compare": "^1.4.0", - "pretty-format": "^29.5.0", - "semver": "^7.3.5" + "pretty-format": "^29.6.3", + "semver": "^7.5.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -3557,9 +3669,9 @@ } }, "node_modules/jest-snapshot/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -3578,12 +3690,12 @@ "dev": true }, "node_modules/jest-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", - "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.3.tgz", + "integrity": "sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", @@ -3595,17 +3707,17 @@ } }, "node_modules/jest-validate": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", - "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.3.tgz", + "integrity": "sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "camelcase": "^6.2.0", "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", + "jest-get-type": "^29.6.3", "leven": "^3.1.0", - "pretty-format": "^29.5.0" + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -3624,18 +3736,18 @@ } }, "node_modules/jest-watcher": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", - "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.6.4.tgz", + "integrity": "sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==", "dev": true, "dependencies": { - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.13.1", - "jest-util": "^29.5.0", + "jest-util": "^29.6.3", "string-length": "^4.0.1" }, "engines": { @@ -3643,13 +3755,13 @@ } }, "node_modules/jest-worker": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", - "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", + "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", "dev": true, "dependencies": { "@types/node": "*", - "jest-util": "^29.5.0", + "jest-util": "^29.6.3", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, @@ -3673,9 +3785,9 @@ } }, "node_modules/joi": { - "version": "17.9.2", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.2.tgz", - "integrity": "sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==", + "version": "17.10.0", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.10.0.tgz", + "integrity": "sha512-hrazgRSlhzacZ69LdcKfhi3Vu13z2yFfoAzmEov3yFIJlatTdVGUW6vle1zjH8qkzdCn/qGw8rapjqsObbYXAg==", "dev": true, "dependencies": { "@hapi/hoek": "^9.0.0", @@ -3810,20 +3922,53 @@ } }, "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", "dev": true, "dependencies": { - "semver": "^6.0.0" + "semver": "^7.5.3" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/make-dir/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", @@ -3919,9 +4064,9 @@ } }, "node_modules/miniflare": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-3.0.2.tgz", - "integrity": "sha512-tSwmK+JPwHsV2KR7/dSZFGtTF/2M30OShjPDY7e5lAxyGE8SkHqXn/ckjg2TVltc9B8rXCSffMnCfYW1pH7R4A==", + "version": "3.20230814.1", + "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-3.20230814.1.tgz", + "integrity": "sha512-LMgqd1Ut0+fnlvQepVbbBYQczQnyuuap8bgUwOyPETka0S9NR9NxMQSNaBgVZ0uOaG7xMJ/OVTRlz+TGB86PWA==", "dev": true, "dependencies": { "acorn": "^8.8.0", @@ -3932,10 +4077,11 @@ "glob-to-regexp": "^0.4.1", "http-cache-semantics": "^4.1.0", "kleur": "^4.1.5", + "set-cookie-parser": "^2.6.0", "source-map-support": "0.5.21", "stoppable": "^1.1.0", "undici": "^5.13.0", - "workerd": "^1.20230512.0", + "workerd": "1.20230814.1", "ws": "^8.11.0", "youch": "^3.2.2", "zod": "^3.20.6" @@ -4036,9 +4182,9 @@ "dev": true }, "node_modules/node-abi": { - "version": "3.45.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.45.0.tgz", - "integrity": "sha512-iwXuFrMAcFVi/ZoZiqq8BzAdsLw9kxDfTC0HMyjXfSL/6CSDAGD5UmR7azrAgWV1zKYq7dUUMj4owusBWKLsiQ==", + "version": "3.47.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.47.0.tgz", + "integrity": "sha512-2s6B2CWZM//kPgwnuI0KrYwNjfdByE25zvAaEpq9IH4zcNsarH8Ihu/UuX6XMPEogDAxkuUFeZn60pXNHAqn3A==", "dev": true, "dependencies": { "semver": "^7.3.5" @@ -4060,9 +4206,9 @@ } }, "node_modules/node-abi/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -4099,9 +4245,9 @@ } }, "node_modules/node-fetch": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.1.tgz", - "integrity": "sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", "dependencies": { "data-uri-to-buffer": "^4.0.0", "fetch-blob": "^3.1.4", @@ -4131,9 +4277,9 @@ "dev": true }, "node_modules/node-releases": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", - "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", "dev": true }, "node_modules/normalize-path": { @@ -4364,12 +4510,12 @@ } }, "node_modules/pretty-format": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", - "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.3.tgz", + "integrity": "sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==", "dev": true, "dependencies": { - "@jest/schemas": "^29.4.3", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", "react-is": "^18.0.0" }, @@ -4515,12 +4661,12 @@ } }, "node_modules/resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", + "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", "dev": true, "dependencies": { - "is-core-module": "^2.11.0", + "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, @@ -4633,14 +4779,20 @@ } }, "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" } }, + "node_modules/set-cookie-parser": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.6.0.tgz", + "integrity": "sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==", + "dev": true + }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", @@ -5024,9 +5176,9 @@ } }, "node_modules/ts-jest": { - "version": "29.1.0", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz", - "integrity": "sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==", + "version": "29.1.1", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", + "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", "dev": true, "dependencies": { "bs-logger": "0.x", @@ -5035,7 +5187,7 @@ "json5": "^2.2.3", "lodash.memoize": "4.x", "make-error": "1.x", - "semver": "7.x", + "semver": "^7.5.3", "yargs-parser": "^21.0.1" }, "bin": { @@ -5079,9 +5231,9 @@ } }, "node_modules/ts-jest/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -5100,9 +5252,9 @@ "dev": true }, "node_modules/tslib": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", - "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", "dev": true }, "node_modules/tunnel-agent": { @@ -5139,22 +5291,22 @@ } }, "node_modules/typescript": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", - "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz", + "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==", "dev": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" }, "engines": { - "node": ">=14.17" + "node": ">=12.20" } }, "node_modules/undici": { - "version": "5.22.1", - "resolved": "https://registry.npmjs.org/undici/-/undici-5.22.1.tgz", - "integrity": "sha512-Ji2IJhFXZY0x/0tVBXeQwgPlLWw13GVzpsWPQ3rV50IFMMof2I55PZZxtm4P6iNq+L5znYN9nSTAq0ZyE6lSJw==", + "version": "5.23.0", + "resolved": "https://registry.npmjs.org/undici/-/undici-5.23.0.tgz", + "integrity": "sha512-1D7w+fvRsqlQ9GscLBwcAJinqcZGHUKjbOmXdlE/v8BvEGXjeWAax+341q44EuTcHXXnfyKNbKRq4Lg7OzhMmg==", "dev": true, "dependencies": { "busboy": "^1.6.0" @@ -5271,9 +5423,9 @@ } }, "node_modules/workerd": { - "version": "1.20230518.0", - "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20230518.0.tgz", - "integrity": "sha512-VNmK0zoNZXrwEEx77O/oQDVUzzyDjf5kKKK8bty+FmKCd5EQJCpqi8NlRKWLGMyyYrKm86MFz0kAsreTEs7HHA==", + "version": "1.20230814.1", + "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20230814.1.tgz", + "integrity": "sha512-zJeSEteXuAD+bpYJT8WvzTAHvIAkKPVxOV+Jy6zCLKz5e08N3OUbAF+wrvGWc8b2aB1sj+IYsdXfkv4puH+qXQ==", "dev": true, "hasInstallScript": true, "bin": { @@ -5283,17 +5435,17 @@ "node": ">=16" }, "optionalDependencies": { - "@cloudflare/workerd-darwin-64": "1.20230518.0", - "@cloudflare/workerd-darwin-arm64": "1.20230518.0", - "@cloudflare/workerd-linux-64": "1.20230518.0", - "@cloudflare/workerd-linux-arm64": "1.20230518.0", - "@cloudflare/workerd-windows-64": "1.20230518.0" + "@cloudflare/workerd-darwin-64": "1.20230814.1", + "@cloudflare/workerd-darwin-arm64": "1.20230814.1", + "@cloudflare/workerd-linux-64": "1.20230814.1", + "@cloudflare/workerd-linux-arm64": "1.20230814.1", + "@cloudflare/workerd-windows-64": "1.20230814.1" } }, "node_modules/wrangler": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-3.1.1.tgz", - "integrity": "sha512-iG6QGOt+qgSm7UroJ8IJ+JdXEcDcW7yp9ilP0V7alCGhKm8shqa/M1iyMOpukZSCSZo8Vmn5nH2C9OY1PR3dQQ==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-3.6.0.tgz", + "integrity": "sha512-GWs4+gIUK+086svW/TgFhhxxrl/hdW2L7WASbdc10dJT7yFmCXse0SnHiqWUxbFu3ScP2t3a3LszJ08wwolWHg==", "dev": true, "dependencies": { "@cloudflare/kv-asset-handler": "^0.2.0", @@ -5302,7 +5454,7 @@ "blake3-wasm": "^2.1.5", "chokidar": "^3.5.3", "esbuild": "0.16.3", - "miniflare": "^3.0.1", + "miniflare": "3.20230814.1", "nanoid": "^3.3.3", "path-to-regexp": "^6.2.0", "selfsigned": "^2.0.1", @@ -5458,9 +5610,9 @@ } }, "node_modules/zod": { - "version": "3.21.4", - "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", - "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", + "version": "3.22.2", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.22.2.tgz", + "integrity": "sha512-wvWkphh5WQsJbVk1tbx1l1Ly4yg+XecD+Mq280uBGt9wa5BKSWf4Mhp6GmrkPixhMxmabYY7RbzlwVP32pbGCg==", "dev": true, "funding": { "url": "https://github.com/sponsors/colinhacks" diff --git a/ecosystem-tests/cloudflare-worker/package.json b/ecosystem-tests/cloudflare-worker/package.json index 02286c4a2..d85b4b36d 100644 --- a/ecosystem-tests/cloudflare-worker/package.json +++ b/ecosystem-tests/cloudflare-worker/package.json @@ -16,7 +16,7 @@ "jest": "^29.5.0", "start-server-and-test": "^2.0.0", "ts-jest": "^29.1.0", - "typescript": "^5.0.4", + "typescript": "5.0.4", "wrangler": "^3.0.0" }, "dependencies": { diff --git a/ecosystem-tests/node-ts-cjs-dom/package-lock.json b/ecosystem-tests/node-ts-cjs-dom/package-lock.json index 348df089b..e53aa7a4f 100644 --- a/ecosystem-tests/node-ts-cjs-dom/package-lock.json +++ b/ecosystem-tests/node-ts-cjs-dom/package-lock.json @@ -1,11 +1,11 @@ { - "name": "nod-ts-cjs", + "name": "node-ts-cjs-dom", "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "nod-ts-cjs", + "name": "node-ts-cjs-dom", "version": "0.0.1", "dependencies": { "formdata-node": "^4.4.1", @@ -18,7 +18,7 @@ "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", "ts-jest": "^29.1.0", - "typescript": "^4.9.3" + "typescript": "4.7.4" } }, "node_modules/@ampproject/remapping": { @@ -35,47 +35,119 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", - "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", "dev": true, "dependencies": { - "@babel/highlight": "^7.22.5" + "@babel/highlight": "^7.22.13", + "chalk": "^2.4.2" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@babel/code-frame/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/code-frame/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/code-frame/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/@babel/compat-data": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", - "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz", + "integrity": "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.5.tgz", - "integrity": "sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.11.tgz", + "integrity": "sha512-lh7RJrtPdhibbxndr6/xx0w8+CVlY5FJZiaSz908Fpy+G0xkBFTvwLcKJFF4PJxVfGhVWNebikpWGnOoC71juQ==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helpers": "^7.22.5", - "@babel/parser": "^7.22.5", + "@babel/code-frame": "^7.22.10", + "@babel/generator": "^7.22.10", + "@babel/helper-compilation-targets": "^7.22.10", + "@babel/helper-module-transforms": "^7.22.9", + "@babel/helpers": "^7.22.11", + "@babel/parser": "^7.22.11", "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5", + "@babel/traverse": "^7.22.11", + "@babel/types": "^7.22.11", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" + "json5": "^2.2.3", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -92,12 +164,12 @@ "dev": true }, "node_modules/@babel/generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", - "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz", + "integrity": "sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5", + "@babel/types": "^7.22.10", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" @@ -107,22 +179,19 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", - "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz", + "integrity": "sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.22.5", + "@babel/compat-data": "^7.22.9", "@babel/helper-validator-option": "^7.22.5", - "browserslist": "^4.21.3", + "browserslist": "^4.21.9", "lru-cache": "^5.1.1", - "semver": "^6.3.0" + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-environment-visitor": { @@ -172,22 +241,22 @@ } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", - "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz", + "integrity": "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-module-imports": "^7.22.5", "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.5" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-plugin-utils": { @@ -212,9 +281,9 @@ } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "dev": true, "dependencies": { "@babel/types": "^7.22.5" @@ -251,27 +320,27 @@ } }, "node_modules/@babel/helpers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", - "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.11.tgz", + "integrity": "sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==", "dev": true, "dependencies": { "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.22.11", + "@babel/types": "^7.22.11" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", - "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz", + "integrity": "sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==", "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", - "chalk": "^2.0.0", + "chalk": "^2.4.2", "js-tokens": "^4.0.0" }, "engines": { @@ -350,9 +419,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", - "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", + "version": "7.22.14", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.14.tgz", + "integrity": "sha512-1KucTHgOvaw/LzCVrEOAyXkr9rQlp0A1HiHRYnSUE9dmb8PvPW7o5sscg+5169r54n3vGlbx6GevTE/Iw/P3AQ==", "dev": true, "bin": { "parser": "bin/babel-parser.js" @@ -553,19 +622,19 @@ } }, "node_modules/@babel/traverse": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", - "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.11.tgz", + "integrity": "sha512-mzAenteTfomcB7mfPtyi+4oe5BZ6MXxWcn4CX+h4IRJ+OOGXBrWU6jDQavkQI9Vuc5P+donFabBfFCcmWka9lQ==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.5", + "@babel/code-frame": "^7.22.10", + "@babel/generator": "^7.22.10", "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-function-name": "^7.22.5", "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.22.11", + "@babel/types": "^7.22.11", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -574,9 +643,9 @@ } }, "node_modules/@babel/types": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", - "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.11.tgz", + "integrity": "sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg==", "dev": true, "dependencies": { "@babel/helper-string-parser": "^7.22.5", @@ -619,16 +688,16 @@ } }, "node_modules/@jest/console": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", - "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.6.4.tgz", + "integrity": "sha512-wNK6gC0Ha9QeEPSkeJedQuTQqxZYnDPuDcDhVuVatRvMkL4D0VTvFVZj+Yuh6caG2aOfzkUZ36KtCmLNtR02hw==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", "slash": "^3.0.0" }, "engines": { @@ -636,37 +705,37 @@ } }, "node_modules/@jest/core": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", - "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.6.4.tgz", + "integrity": "sha512-U/vq5ccNTSVgYH7mHnodHmCffGWHJnz/E1BEWlLuK5pM4FZmGfBn/nrJGLjUsSmyx3otCeqc1T31F4y08AMDLg==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/reporters": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.6.4", + "@jest/reporters": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "ci-info": "^3.2.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.5.0", - "jest-config": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-resolve-dependencies": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "jest-watcher": "^29.5.0", + "jest-changed-files": "^29.6.3", + "jest-config": "^29.6.4", + "jest-haste-map": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-resolve-dependencies": "^29.6.4", + "jest-runner": "^29.6.4", + "jest-runtime": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", + "jest-watcher": "^29.6.4", "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", + "pretty-format": "^29.6.3", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, @@ -683,89 +752,89 @@ } }, "node_modules/@jest/environment": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", - "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.6.4.tgz", + "integrity": "sha512-sQ0SULEjA1XUTHmkBRl7A1dyITM9yb1yb3ZNKPX3KlTd6IG7mWUe3e2yfExtC2Zz1Q+mMckOLHmL/qLiuQJrBQ==", "dev": true, "dependencies": { - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/fake-timers": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.5.0" + "jest-mock": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.6.4.tgz", + "integrity": "sha512-Warhsa7d23+3X5bLbrbYvaehcgX5TLYhI03JKoedTiI8uJU4IhqYBWF7OSSgUyz4IgLpUYPkK0AehA5/fRclAA==", "dev": true, "dependencies": { - "expect": "^29.5.0", - "jest-snapshot": "^29.5.0" + "expect": "^29.6.4", + "jest-snapshot": "^29.6.4" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", - "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.6.4.tgz", + "integrity": "sha512-FEhkJhqtvBwgSpiTrocquJCdXPsyvNKcl/n7A3u7X4pVoF4bswm11c9d4AV+kfq2Gpv/mM8x7E7DsRvH+djkrg==", "dev": true, "dependencies": { - "jest-get-type": "^29.4.3" + "jest-get-type": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/fake-timers": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", - "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.6.4.tgz", + "integrity": "sha512-6UkCwzoBK60edXIIWb0/KWkuj7R7Qq91vVInOe3De6DSpaEiqjKcJw4F7XUet24Wupahj9J6PlR09JqJ5ySDHw==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@sinonjs/fake-timers": "^10.0.2", "@types/node": "*", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" + "jest-message-util": "^29.6.3", + "jest-mock": "^29.6.3", + "jest-util": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/globals": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", - "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.6.4.tgz", + "integrity": "sha512-wVIn5bdtjlChhXAzVXavcY/3PEjf4VqM174BM3eGL5kMxLiZD5CLnbmkEyA1Dwh9q8XjP6E8RwjBsY/iCWrWsA==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/types": "^29.5.0", - "jest-mock": "^29.5.0" + "@jest/environment": "^29.6.4", + "@jest/expect": "^29.6.4", + "@jest/types": "^29.6.3", + "jest-mock": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/reporters": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", - "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.6.4.tgz", + "integrity": "sha512-sxUjWxm7QdchdrD3NfWKrL8FBsortZeibSJv4XLjESOOjSUOkjQcb0ZHJwfhEGIvBvTluTzfG2yZWZhkrXJu8g==", "dev": true, "dependencies": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", + "@jest/console": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", "@types/node": "*", "chalk": "^4.0.0", "collect-v8-coverage": "^1.0.0", @@ -773,13 +842,13 @@ "glob": "^7.1.3", "graceful-fs": "^4.2.9", "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-instrument": "^6.0.0", "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", + "jest-worker": "^29.6.4", "slash": "^3.0.0", "string-length": "^4.0.1", "strip-ansi": "^6.0.0", @@ -798,24 +867,24 @@ } }, "node_modules/@jest/schemas": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", - "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dev": true, "dependencies": { - "@sinclair/typebox": "^0.25.16" + "@sinclair/typebox": "^0.27.8" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/source-map": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", - "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", "dev": true, "dependencies": { - "@jridgewell/trace-mapping": "^0.3.15", + "@jridgewell/trace-mapping": "^0.3.18", "callsites": "^3.0.0", "graceful-fs": "^4.2.9" }, @@ -824,13 +893,13 @@ } }, "node_modules/@jest/test-result": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", - "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.6.4.tgz", + "integrity": "sha512-uQ1C0AUEN90/dsyEirgMLlouROgSY+Wc/JanVVk0OiUKa5UFh7sJpMEM3aoUBAz2BRNvUJ8j3d294WFuRxSyOQ==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.6.4", + "@jest/types": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" }, @@ -839,14 +908,14 @@ } }, "node_modules/@jest/test-sequencer": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", - "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.6.4.tgz", + "integrity": "sha512-E84M6LbpcRq3fT4ckfKs9ryVanwkaIB0Ws9bw3/yP4seRLg/VaCZ/LgW0MCq5wwk4/iP/qnilD41aj2fsw2RMg==", "dev": true, "dependencies": { - "@jest/test-result": "^29.5.0", + "@jest/test-result": "^29.6.4", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", + "jest-haste-map": "^29.6.4", "slash": "^3.0.0" }, "engines": { @@ -854,22 +923,22 @@ } }, "node_modules/@jest/transform": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", - "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.6.4.tgz", + "integrity": "sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", "convert-source-map": "^2.0.0", "fast-json-stable-stringify": "^2.1.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", + "jest-haste-map": "^29.6.4", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.6.3", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", @@ -880,12 +949,12 @@ } }, "node_modules/@jest/types": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", - "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dev": true, "dependencies": { - "@jest/schemas": "^29.4.3", + "@jest/schemas": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", @@ -911,9 +980,9 @@ } }, "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", "dev": true, "engines": { "node": ">=6.0.0" @@ -935,25 +1004,19 @@ "dev": true }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", "dev": true, "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true - }, "node_modules/@sinclair/typebox": { - "version": "0.25.24", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", - "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", "dev": true }, "node_modules/@sinonjs/commons": { @@ -1064,12 +1127,6 @@ "form-data": "^3.0.0" } }, - "node_modules/@types/prettier": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", - "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", - "dev": true - }, "node_modules/@types/stack-utils": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", @@ -1159,15 +1216,15 @@ "dev": true }, "node_modules/babel-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", - "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.6.4.tgz", + "integrity": "sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==", "dev": true, "dependencies": { - "@jest/transform": "^29.5.0", + "@jest/transform": "^29.6.4", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.5.0", + "babel-preset-jest": "^29.6.3", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "slash": "^3.0.0" @@ -1195,10 +1252,26 @@ "node": ">=8" } }, + "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/babel-plugin-jest-hoist": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", - "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", "dev": true, "dependencies": { "@babel/template": "^7.3.3", @@ -1234,12 +1307,12 @@ } }, "node_modules/babel-preset-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", - "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", "dev": true, "dependencies": { - "babel-plugin-jest-hoist": "^29.5.0", + "babel-plugin-jest-hoist": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0" }, "engines": { @@ -1278,9 +1351,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.9", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", - "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "version": "4.21.10", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", + "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", "dev": true, "funding": [ { @@ -1297,9 +1370,9 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001503", - "electron-to-chromium": "^1.4.431", - "node-releases": "^2.0.12", + "caniuse-lite": "^1.0.30001517", + "electron-to-chromium": "^1.4.477", + "node-releases": "^2.0.13", "update-browserslist-db": "^1.0.11" }, "bin": { @@ -1355,9 +1428,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001508", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001508.tgz", - "integrity": "sha512-sdQZOJdmt3GJs1UMNpCCCyeuS2IEGLXnHyAo9yIO5JJDjbjoVRij4M1qep6P6gFpptD1PqIYgzM+gwJbOi92mw==", + "version": "1.0.30001524", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001524.tgz", + "integrity": "sha512-Jj917pJtYg9HSJBF95HVX3Cdr89JUyLT4IZ8SvM5aDRni95swKgYi3TgYLH5hnGfPE/U1dg6IfZ50UsIlLkwSA==", "dev": true, "funding": [ { @@ -1445,9 +1518,9 @@ } }, "node_modules/collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", "dev": true }, "node_modules/color-convert": { @@ -1524,10 +1597,18 @@ } }, "node_modules/dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", - "dev": true + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "dev": true, + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } }, "node_modules/deepmerge": { "version": "4.3.1", @@ -1557,18 +1638,18 @@ } }, "node_modules/diff-sequences": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", - "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/electron-to-chromium": { - "version": "1.4.442", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.442.tgz", - "integrity": "sha512-RkrZF//Ya+0aJq2NM3OdisNh5ZodZq1rdXOS96G8DdDgpDKqKE81yTbbQ3F/4CKm1JBPsGu1Lp/akkna2xO06Q==", + "version": "1.4.506", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.506.tgz", + "integrity": "sha512-xxGct4GPAKSRlrLBtJxJFYy74W11zX6PO9GyHgl/U+2s3Dp0ZEwAklDfNHXOWcvH7zWMpsmgbR0ggEuaYAVvHA==", "dev": true }, "node_modules/emittery": { @@ -1662,16 +1743,16 @@ } }, "node_modules/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.6.4.tgz", + "integrity": "sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==", "dev": true, "dependencies": { - "@jest/expect-utils": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0" + "@jest/expect-utils": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -1759,9 +1840,9 @@ "dev": true }, "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, "hasInstallScript": true, "optional": true, @@ -1939,9 +2020,9 @@ "dev": true }, "node_modules/is-core-module": { - "version": "2.12.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", - "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", "dev": true, "dependencies": { "has": "^1.0.3" @@ -2005,33 +2086,66 @@ } }, "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.0.tgz", + "integrity": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==", "dev": true, "dependencies": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" + "semver": "^7.5.4" }, "engines": { - "node": ">=8" + "node": ">=10" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "dev": true, "dependencies": { "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", + "make-dir": "^4.0.0", "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" } }, "node_modules/istanbul-lib-source-maps": { @@ -2049,9 +2163,9 @@ } }, "node_modules/istanbul-reports": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", - "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", "dev": true, "dependencies": { "html-escaper": "^2.0.0", @@ -2062,15 +2176,15 @@ } }, "node_modules/jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", - "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.6.4.tgz", + "integrity": "sha512-tEFhVQFF/bzoYV1YuGyzLPZ6vlPrdfvDmmAxudA1dLEuiztqg2Rkx20vkKY32xiDROcD2KXlgZ7Cu8RPeEHRKw==", "dev": true, "dependencies": { - "@jest/core": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/core": "^29.6.4", + "@jest/types": "^29.6.3", "import-local": "^3.0.2", - "jest-cli": "^29.5.0" + "jest-cli": "^29.6.4" }, "bin": { "jest": "bin/jest.js" @@ -2088,12 +2202,13 @@ } }, "node_modules/jest-changed-files": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", - "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.6.3.tgz", + "integrity": "sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==", "dev": true, "dependencies": { "execa": "^5.0.0", + "jest-util": "^29.6.3", "p-limit": "^3.1.0" }, "engines": { @@ -2101,28 +2216,28 @@ } }, "node_modules/jest-circus": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", - "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.6.4.tgz", + "integrity": "sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/environment": "^29.6.4", + "@jest/expect": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", - "dedent": "^0.7.0", + "dedent": "^1.0.0", "is-generator-fn": "^2.0.0", - "jest-each": "^29.5.0", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", + "jest-each": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-runtime": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", "p-limit": "^3.1.0", - "pretty-format": "^29.5.0", + "pretty-format": "^29.6.3", "pure-rand": "^6.0.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" @@ -2132,21 +2247,21 @@ } }, "node_modules/jest-cli": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", - "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.6.4.tgz", + "integrity": "sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==", "dev": true, "dependencies": { - "@jest/core": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/core": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", "chalk": "^4.0.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", "import-local": "^3.0.2", - "jest-config": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", + "jest-config": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", "prompts": "^2.0.1", "yargs": "^17.3.1" }, @@ -2166,31 +2281,31 @@ } }, "node_modules/jest-config": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", - "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.6.4.tgz", + "integrity": "sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.5.0", - "@jest/types": "^29.5.0", - "babel-jest": "^29.5.0", + "@jest/test-sequencer": "^29.6.4", + "@jest/types": "^29.6.3", + "babel-jest": "^29.6.4", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-circus": "^29.5.0", - "jest-environment-node": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", + "jest-circus": "^29.6.4", + "jest-environment-node": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-runner": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", "micromatch": "^4.0.4", "parse-json": "^5.2.0", - "pretty-format": "^29.5.0", + "pretty-format": "^29.6.3", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, @@ -2211,24 +2326,24 @@ } }, "node_modules/jest-diff": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", - "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.4.tgz", + "integrity": "sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "diff-sequences": "^29.4.3", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-docblock": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", - "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.6.3.tgz", + "integrity": "sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==", "dev": true, "dependencies": { "detect-newline": "^3.0.0" @@ -2238,62 +2353,62 @@ } }, "node_modules/jest-each": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", - "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.6.3.tgz", + "integrity": "sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", - "jest-util": "^29.5.0", - "pretty-format": "^29.5.0" + "jest-get-type": "^29.6.3", + "jest-util": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-environment-node": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", - "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.4.tgz", + "integrity": "sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/environment": "^29.6.4", + "@jest/fake-timers": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" + "jest-mock": "^29.6.3", + "jest-util": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-get-type": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", - "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-haste-map": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", - "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.4.tgz", + "integrity": "sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/graceful-fs": "^4.1.3", "@types/node": "*", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.6.3", + "jest-worker": "^29.6.4", "micromatch": "^4.0.4", "walker": "^1.0.8" }, @@ -2305,46 +2420,46 @@ } }, "node_modules/jest-leak-detector": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", - "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.6.3.tgz", + "integrity": "sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==", "dev": true, "dependencies": { - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", - "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.6.4.tgz", + "integrity": "sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "jest-diff": "^29.6.4", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-message-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", - "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.6.3.tgz", + "integrity": "sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==", "dev": true, "dependencies": { "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", + "pretty-format": "^29.6.3", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, @@ -2353,14 +2468,14 @@ } }, "node_modules/jest-mock": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", - "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.6.3.tgz", + "integrity": "sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-util": "^29.5.0" + "jest-util": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2384,26 +2499,26 @@ } }, "node_modules/jest-regex-util": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", - "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-resolve": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", - "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.4.tgz", + "integrity": "sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==", "dev": true, "dependencies": { "chalk": "^4.0.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", + "jest-haste-map": "^29.6.4", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", "resolve": "^1.20.0", "resolve.exports": "^2.0.0", "slash": "^3.0.0" @@ -2413,43 +2528,43 @@ } }, "node_modules/jest-resolve-dependencies": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", - "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.4.tgz", + "integrity": "sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==", "dev": true, "dependencies": { - "jest-regex-util": "^29.4.3", - "jest-snapshot": "^29.5.0" + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.6.4" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-runner": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", - "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.6.4.tgz", + "integrity": "sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/environment": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.6.4", + "@jest/environment": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.13.1", "graceful-fs": "^4.2.9", - "jest-docblock": "^29.4.3", - "jest-environment-node": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-leak-detector": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-resolve": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-util": "^29.5.0", - "jest-watcher": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-docblock": "^29.6.3", + "jest-environment-node": "^29.6.4", + "jest-haste-map": "^29.6.4", + "jest-leak-detector": "^29.6.3", + "jest-message-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-runtime": "^29.6.4", + "jest-util": "^29.6.3", + "jest-watcher": "^29.6.4", + "jest-worker": "^29.6.4", "p-limit": "^3.1.0", "source-map-support": "0.5.13" }, @@ -2458,31 +2573,31 @@ } }, "node_modules/jest-runtime": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", - "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", - "dev": true, - "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/globals": "^29.5.0", - "@jest/source-map": "^29.4.3", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.6.4.tgz", + "integrity": "sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.6.4", + "@jest/fake-timers": "^29.6.4", + "@jest/globals": "^29.6.4", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "cjs-module-lexer": "^1.0.0", "collect-v8-coverage": "^1.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", + "jest-haste-map": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-mock": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", "slash": "^3.0.0", "strip-bom": "^4.0.0" }, @@ -2491,34 +2606,31 @@ } }, "node_modules/jest-snapshot": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", - "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.6.4.tgz", + "integrity": "sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", "@babel/generator": "^7.7.2", "@babel/plugin-syntax-jsx": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/babel__traverse": "^7.0.6", - "@types/prettier": "^2.1.5", + "@jest/expect-utils": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^29.5.0", + "expect": "^29.6.4", "graceful-fs": "^4.2.9", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", + "jest-diff": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", "natural-compare": "^1.4.0", - "pretty-format": "^29.5.0", - "semver": "^7.3.5" + "pretty-format": "^29.6.3", + "semver": "^7.5.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2537,9 +2649,9 @@ } }, "node_modules/jest-snapshot/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -2558,12 +2670,12 @@ "dev": true }, "node_modules/jest-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", - "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.3.tgz", + "integrity": "sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", @@ -2575,17 +2687,17 @@ } }, "node_modules/jest-validate": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", - "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.3.tgz", + "integrity": "sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "camelcase": "^6.2.0", "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", + "jest-get-type": "^29.6.3", "leven": "^3.1.0", - "pretty-format": "^29.5.0" + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2604,18 +2716,18 @@ } }, "node_modules/jest-watcher": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", - "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.6.4.tgz", + "integrity": "sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==", "dev": true, "dependencies": { - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.13.1", - "jest-util": "^29.5.0", + "jest-util": "^29.6.3", "string-length": "^4.0.1" }, "engines": { @@ -2623,13 +2735,13 @@ } }, "node_modules/jest-worker": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", - "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", + "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", "dev": true, "dependencies": { "@types/node": "*", - "jest-util": "^29.5.0", + "jest-util": "^29.6.3", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, @@ -2752,20 +2864,53 @@ } }, "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", "dev": true, "dependencies": { - "semver": "^6.0.0" + "semver": "^7.5.3" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/make-dir/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", @@ -2881,9 +3026,9 @@ } }, "node_modules/node-fetch": { - "version": "2.6.11", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", - "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "dependencies": { "whatwg-url": "^5.0.0" }, @@ -2906,9 +3051,9 @@ "dev": true }, "node_modules/node-releases": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", - "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", "dev": true }, "node_modules/normalize-path": { @@ -3098,12 +3243,12 @@ } }, "node_modules/pretty-format": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", - "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.3.tgz", + "integrity": "sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==", "dev": true, "dependencies": { - "@jest/schemas": "^29.4.3", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", "react-is": "^18.0.0" }, @@ -3168,12 +3313,12 @@ } }, "node_modules/resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", + "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", "dev": true, "dependencies": { - "is-core-module": "^2.11.0", + "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, @@ -3215,9 +3360,9 @@ } }, "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" @@ -3442,9 +3587,9 @@ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" }, "node_modules/ts-jest": { - "version": "29.1.0", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz", - "integrity": "sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==", + "version": "29.1.1", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", + "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", "dev": true, "dependencies": { "bs-logger": "0.x", @@ -3453,7 +3598,7 @@ "json5": "^2.2.3", "lodash.memoize": "4.x", "make-error": "1.x", - "semver": "7.x", + "semver": "^7.5.3", "yargs-parser": "^21.0.1" }, "bin": { @@ -3497,9 +3642,9 @@ } }, "node_modules/ts-jest/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -3560,9 +3705,9 @@ } }, "node_modules/typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "version": "4.7.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", + "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", "dev": true, "bin": { "tsc": "bin/tsc", diff --git a/ecosystem-tests/node-ts-cjs-dom/package.json b/ecosystem-tests/node-ts-cjs-dom/package.json index 125ab29ba..57f239c60 100644 --- a/ecosystem-tests/node-ts-cjs-dom/package.json +++ b/ecosystem-tests/node-ts-cjs-dom/package.json @@ -1,5 +1,5 @@ { - "name": "nod-ts-cjs", + "name": "node-ts-cjs-dom", "version": "0.0.1", "main": "index.js", "private": true, @@ -18,6 +18,6 @@ "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", "ts-jest": "^29.1.0", - "typescript": "^4.9.3" + "typescript": "4.7.4" } } diff --git a/ecosystem-tests/node-ts-cjs-ts4.5/jest.config.cjs b/ecosystem-tests/node-ts-cjs-ts4.5/jest.config.cjs new file mode 100644 index 000000000..b08ea4311 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs-ts4.5/jest.config.cjs @@ -0,0 +1,9 @@ +/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ +module.exports = { + preset: 'ts-jest', + testEnvironment: 'node', + testMatch: ['/tests/*.ts'], + watchPathIgnorePatterns: ['/node_modules/'], + verbose: false, + testTimeout: 60000, +}; diff --git a/ecosystem-tests/node-ts-cjs-ts4.5/package-lock.json b/ecosystem-tests/node-ts-cjs-ts4.5/package-lock.json new file mode 100644 index 000000000..55e77bfd9 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs-ts4.5/package-lock.json @@ -0,0 +1,3917 @@ +{ + "name": "node-ts-cjs", + "version": "0.0.1", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "node-ts-cjs", + "version": "0.0.1", + "dependencies": { + "formdata-node": "^4.4.1", + "node-fetch": "^2.6.1", + "tsconfig-paths": "^4.0.0" + }, + "devDependencies": { + "@types/node": "^20.4.2", + "@types/node-fetch": "^2.6.1", + "@types/ws": "^8.5.4", + "fastest-levenshtein": "^1.0.16", + "jest": "^29.5.0", + "ts-jest": "^29.1.0", + "typescript": "4.5.4" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.22.13", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/code-frame/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/code-frame/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/code-frame/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz", + "integrity": "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.11.tgz", + "integrity": "sha512-lh7RJrtPdhibbxndr6/xx0w8+CVlY5FJZiaSz908Fpy+G0xkBFTvwLcKJFF4PJxVfGhVWNebikpWGnOoC71juQ==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.10", + "@babel/generator": "^7.22.10", + "@babel/helper-compilation-targets": "^7.22.10", + "@babel/helper-module-transforms": "^7.22.9", + "@babel/helpers": "^7.22.11", + "@babel/parser": "^7.22.11", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.11", + "@babel/types": "^7.22.11", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/@babel/generator": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz", + "integrity": "sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.10", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz", + "integrity": "sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.9", + "@babel/helper-validator-option": "^7.22.5", + "browserslist": "^4.21.9", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", + "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", + "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", + "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz", + "integrity": "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", + "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", + "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.11.tgz", + "integrity": "sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.11", + "@babel/types": "^7.22.11" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz", + "integrity": "sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.22.14", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.14.tgz", + "integrity": "sha512-1KucTHgOvaw/LzCVrEOAyXkr9rQlp0A1HiHRYnSUE9dmb8PvPW7o5sscg+5169r54n3vGlbx6GevTE/Iw/P3AQ==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", + "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.11.tgz", + "integrity": "sha512-mzAenteTfomcB7mfPtyi+4oe5BZ6MXxWcn4CX+h4IRJ+OOGXBrWU6jDQavkQI9Vuc5P+donFabBfFCcmWka9lQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.10", + "@babel/generator": "^7.22.10", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.22.11", + "@babel/types": "^7.22.11", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.11.tgz", + "integrity": "sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.6.4.tgz", + "integrity": "sha512-wNK6gC0Ha9QeEPSkeJedQuTQqxZYnDPuDcDhVuVatRvMkL4D0VTvFVZj+Yuh6caG2aOfzkUZ36KtCmLNtR02hw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.6.4.tgz", + "integrity": "sha512-U/vq5ccNTSVgYH7mHnodHmCffGWHJnz/E1BEWlLuK5pM4FZmGfBn/nrJGLjUsSmyx3otCeqc1T31F4y08AMDLg==", + "dev": true, + "dependencies": { + "@jest/console": "^29.6.4", + "@jest/reporters": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.6.3", + "jest-config": "^29.6.4", + "jest-haste-map": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-resolve-dependencies": "^29.6.4", + "jest-runner": "^29.6.4", + "jest-runtime": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", + "jest-watcher": "^29.6.4", + "micromatch": "^4.0.4", + "pretty-format": "^29.6.3", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/environment": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.6.4.tgz", + "integrity": "sha512-sQ0SULEjA1XUTHmkBRl7A1dyITM9yb1yb3ZNKPX3KlTd6IG7mWUe3e2yfExtC2Zz1Q+mMckOLHmL/qLiuQJrBQ==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^29.6.4", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.6.4.tgz", + "integrity": "sha512-Warhsa7d23+3X5bLbrbYvaehcgX5TLYhI03JKoedTiI8uJU4IhqYBWF7OSSgUyz4IgLpUYPkK0AehA5/fRclAA==", + "dev": true, + "dependencies": { + "expect": "^29.6.4", + "jest-snapshot": "^29.6.4" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.6.4.tgz", + "integrity": "sha512-FEhkJhqtvBwgSpiTrocquJCdXPsyvNKcl/n7A3u7X4pVoF4bswm11c9d4AV+kfq2Gpv/mM8x7E7DsRvH+djkrg==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.6.4.tgz", + "integrity": "sha512-6UkCwzoBK60edXIIWb0/KWkuj7R7Qq91vVInOe3De6DSpaEiqjKcJw4F7XUet24Wupahj9J6PlR09JqJ5ySDHw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.6.3", + "jest-mock": "^29.6.3", + "jest-util": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.6.4.tgz", + "integrity": "sha512-wVIn5bdtjlChhXAzVXavcY/3PEjf4VqM174BM3eGL5kMxLiZD5CLnbmkEyA1Dwh9q8XjP6E8RwjBsY/iCWrWsA==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.6.4", + "@jest/expect": "^29.6.4", + "@jest/types": "^29.6.3", + "jest-mock": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.6.4.tgz", + "integrity": "sha512-sxUjWxm7QdchdrD3NfWKrL8FBsortZeibSJv4XLjESOOjSUOkjQcb0ZHJwfhEGIvBvTluTzfG2yZWZhkrXJu8g==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^6.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", + "jest-worker": "^29.6.4", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.18", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.6.4.tgz", + "integrity": "sha512-uQ1C0AUEN90/dsyEirgMLlouROgSY+Wc/JanVVk0OiUKa5UFh7sJpMEM3aoUBAz2BRNvUJ8j3d294WFuRxSyOQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.6.4", + "@jest/types": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.6.4.tgz", + "integrity": "sha512-E84M6LbpcRq3fT4ckfKs9ryVanwkaIB0Ws9bw3/yP4seRLg/VaCZ/LgW0MCq5wwk4/iP/qnilD41aj2fsw2RMg==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.6.4", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.6.4", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.6.4.tgz", + "integrity": "sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.6.4", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.6.3", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "dev": true + }, + "node_modules/@sinonjs/commons": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", + "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", + "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/node": { + "version": "20.5.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.7.tgz", + "integrity": "sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==", + "dev": true + }, + "node_modules/@types/node-fetch": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", + "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "form-data": "^3.0.0" + } + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/@types/ws": { + "version": "8.5.5", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", + "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/yargs": { + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/babel-jest": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.6.4.tgz", + "integrity": "sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==", + "dev": true, + "dependencies": { + "@jest/transform": "^29.6.4", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.21.10", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", + "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001517", + "electron-to-chromium": "^1.4.477", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.11" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001524", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001524.tgz", + "integrity": "sha512-Jj917pJtYg9HSJBF95HVX3Cdr89JUyLT4IZ8SvM5aDRni95swKgYi3TgYLH5hnGfPE/U1dg6IfZ50UsIlLkwSA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "dev": true + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "dev": true + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/dedent": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "dev": true, + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.506", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.506.tgz", + "integrity": "sha512-xxGct4GPAKSRlrLBtJxJFYy74W11zX6PO9GyHgl/U+2s3Dp0ZEwAklDfNHXOWcvH7zWMpsmgbR0ggEuaYAVvHA==", + "dev": true + }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.6.4.tgz", + "integrity": "sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==", + "dev": true, + "dependencies": { + "@jest/expect-utils": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true, + "engines": { + "node": ">= 4.9.1" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/formdata-node": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-4.4.1.tgz", + "integrity": "sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==", + "dependencies": { + "node-domexception": "1.0.0", + "web-streams-polyfill": "4.0.0-beta.3" + }, + "engines": { + "node": ">= 12.20" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-core-module": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.0.tgz", + "integrity": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.6.4.tgz", + "integrity": "sha512-tEFhVQFF/bzoYV1YuGyzLPZ6vlPrdfvDmmAxudA1dLEuiztqg2Rkx20vkKY32xiDROcD2KXlgZ7Cu8RPeEHRKw==", + "dev": true, + "dependencies": { + "@jest/core": "^29.6.4", + "@jest/types": "^29.6.3", + "import-local": "^3.0.2", + "jest-cli": "^29.6.4" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.6.3.tgz", + "integrity": "sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==", + "dev": true, + "dependencies": { + "execa": "^5.0.0", + "jest-util": "^29.6.3", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.6.4.tgz", + "integrity": "sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.6.4", + "@jest/expect": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^1.0.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-runtime": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", + "p-limit": "^3.1.0", + "pretty-format": "^29.6.3", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.6.4.tgz", + "integrity": "sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==", + "dev": true, + "dependencies": { + "@jest/core": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", + "prompts": "^2.0.1", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-config": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.6.4.tgz", + "integrity": "sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.6.4", + "@jest/types": "^29.6.3", + "babel-jest": "^29.6.4", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.6.4", + "jest-environment-node": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-runner": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.6.3", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-diff": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.4.tgz", + "integrity": "sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-docblock": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.6.3.tgz", + "integrity": "sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.6.3.tgz", + "integrity": "sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "jest-util": "^29.6.3", + "pretty-format": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.4.tgz", + "integrity": "sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.6.4", + "@jest/fake-timers": "^29.6.4", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.6.3", + "jest-util": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.4.tgz", + "integrity": "sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.6.3", + "jest-worker": "^29.6.4", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.6.3.tgz", + "integrity": "sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.6.4.tgz", + "integrity": "sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.6.4", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.6.3.tgz", + "integrity": "sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.6.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-mock": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.6.3.tgz", + "integrity": "sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.4.tgz", + "integrity": "sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.6.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.4.tgz", + "integrity": "sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==", + "dev": true, + "dependencies": { + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.6.4" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.6.4.tgz", + "integrity": "sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==", + "dev": true, + "dependencies": { + "@jest/console": "^29.6.4", + "@jest/environment": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.6.3", + "jest-environment-node": "^29.6.4", + "jest-haste-map": "^29.6.4", + "jest-leak-detector": "^29.6.3", + "jest-message-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-runtime": "^29.6.4", + "jest-util": "^29.6.3", + "jest-watcher": "^29.6.4", + "jest-worker": "^29.6.4", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.6.4.tgz", + "integrity": "sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.6.4", + "@jest/fake-timers": "^29.6.4", + "@jest/globals": "^29.6.4", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-mock": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.6.4.tgz", + "integrity": "sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.6.4", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", + "natural-compare": "^1.4.0", + "pretty-format": "^29.6.3", + "semver": "^7.5.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/jest-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.3.tgz", + "integrity": "sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.3.tgz", + "integrity": "sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watcher": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.6.4.tgz", + "integrity": "sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.6.3", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", + "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", + "dev": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.6.3", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "engines": { + "node": ">=10.5.0" + } + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pretty-format": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.3.tgz", + "integrity": "sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pure-rand": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", + "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ] + }, + "node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", + "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "node_modules/ts-jest": { + "version": "29.1.1", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", + "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", + "dev": true, + "dependencies": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "^7.5.3", + "yargs-parser": "^21.0.1" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.0.0-beta.0 <8", + "@jest/types": "^29.0.0", + "babel-jest": "^29.0.0", + "jest": "^29.0.0", + "typescript": ">=4.3 <6" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@jest/types": { + "optional": true + }, + "babel-jest": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/ts-jest/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/tsconfig-paths": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", + "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", + "dependencies": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.4.tgz", + "integrity": "sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/v8-to-istanbul": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", + "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/web-streams-polyfill": { + "version": "4.0.0-beta.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz", + "integrity": "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==", + "engines": { + "node": ">= 14" + } + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/ecosystem-tests/node-ts-cjs-ts4.5/package.json b/ecosystem-tests/node-ts-cjs-ts4.5/package.json new file mode 100644 index 000000000..e79a1ba62 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs-ts4.5/package.json @@ -0,0 +1,24 @@ +{ + "name": "node-ts-cjs", + "version": "0.0.1", + "main": "index.js", + "private": true, + "scripts": { + "tsc": "tsc", + "test": "jest" + }, + "dependencies": { + "formdata-node": "^4.4.1", + "node-fetch": "^2.6.1", + "tsconfig-paths": "^4.0.0" + }, + "devDependencies": { + "@types/node": "^20.4.2", + "@types/node-fetch": "^2.6.1", + "@types/ws": "^8.5.4", + "fastest-levenshtein": "^1.0.16", + "jest": "^29.5.0", + "ts-jest": "^29.1.0", + "typescript": "4.5.4" + } +} diff --git a/ecosystem-tests/node-ts-cjs-ts4.5/sample1.mp3 b/ecosystem-tests/node-ts-cjs-ts4.5/sample1.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1e787cd7cf33203d99fa50b39b232b318d287541 GIT binary patch literal 121671 zcmd4ZS5#A57dZMPgdQM-5JC?DLWfYLN(;SL0|JK75jZpv5H)l{?;WIfkS-`Hy@PZC zQRzhx1<_;o%DMOdjr(+;?|RtTYwV1XHRkxOy|U)qi2+U)47hCk)>c+Je_xpZ019L0 z5O;Y+Nog5LX)N}?tN-`m&!@8f|8))g-2eI8`TKrgGywRD13*DZL(c$ZVP)gs=0yt# ziHJ)|%PAh9&^7Z4m0dgmS~IyNCOB`q^2udw7nc~wn) zQ%hS%ch8e&{X-*TlQS$q9DX5d7|JVmCc3ZRpc)qkmQ$H zC~rAc`zlhA6wLrcQAq=0f#RH!Bjiw0c|t>0RAt7! zqN7Q8ay1>n=Fu<>=F4jVXsc>xYZEmWz{oJAC*4!k!lipPFaBvg6M3CJG;xBAAx^%^ z8({sF;AGc(ZO>KjpMHYX71-1us);>;j*-4hTKQAwNL26RQPHQgn&P*O!)o1qX(4YwQ{msm>fwAFk>BmtY86dCNon+%IoBEJnVfYzWcU||P7_(vEcN;#BsHWE3muLGnHXMnLGYkt#mV?tR zRxS3~5X0~7PwqfV4Y5;Z zxgxMip$hfn&pW%6QDVE4abBtBivkMCE$ubOi13kGcPS~1)-?=Iu`sF{%lpRGvfi`w zo??Zry?EAXLWHX4#&e1^UQ8N@+uHk=(|oL_)9wn$G-bm9MDoCIVwQ`ox7=1~7W&K90C}ibjud4zqD-&| zw8E5pBhEocl~3K?-Rfb({5u^v^5-tRH4|Q6M5e!L2ju)^KF*>M`a>5<=h<43m|p0( zdvij8EB1kPIXZ8l|e^NTm{dB;vn89(Na zx8N3^Y(&bC)@5<7W0&NzRNx3f!qfuZY`R_0pc*va-Dz7|;^j1;WGN8qjS^zcM7M=l zE3gLugA6)xre!+@(*>tm`kAuM22EG7YVT;~ zKC<#%9CZeaicxKj)DVfI4=~R**KKkQteK!G6Cgs;m6ZFjzHRqZF0iMHqy%g8bv3d7pPi@ z81LP>BsZv1{5Nu=mT;{@1Ec|37uT#thX#I)ORpQS=%g{o5!Z74L6wn?=J(XEi=v4(hNTz+DC1zzRXN;KKw*&nO1f=qYx)Z=1B6l?Wt~!mEsj2 z{^t4T8c!{5cbz}6Y*jJCSEym4YT90M{~wuD{n^E;xwUIo?esai6gRdpFZjd!3o@(s zq(mip)e(HJURZk{`Ikl9n{MzGoHZtU*4bC*kcZEFY{XdIjuO7Bm2n$_y-g-C3wc47 zC70wbjA9V*@f9cJKdTHcN9=DYRI0sJA!6K~65*_L&uGgW5%A+~L~Km>w?C|m)?8B^ zO=D7Q5*Zwp^YiY<=%)o7p2HTAmSGD8lX2lSMOtx1wUo>tT_;(vhbIQcXGyJ@X%boN zoXU#drXHB3YrmHypBUV5_C;H#f5m`F#;fy(%w7H4Ji-<48id>z5GK*qL41dw%3gcR zF(p4aczlIv%pGL!$TDY`^SN?Nl#3R^D$ADE}T} z!7M88)FW{smS9*%`*}*F`&qAxVXu^s{j#60Afwr?AUFGjoNFV?m&AB!`L5jWUa0m5 zE|=ua4Syows1+v~Vj{jEdpFV{Mi#X(cTs4EpNn#pNe#CAaWfnkCP=GA5Y9@Q+4If` z{`$O&`=-})4)gVSp;zAWZI&51jK#2zq|i48#@0PJG}Xq6qJyl4b#fH52<=pf%ux@zR6SV8L&)+6SFJ*5WH^&Ln7PqhQvRH6!lD&crOa)Gj zHu(kM8a(~W&n(iGaO=!!*23&7i}A8ru%+197K1E9Od443G{#RX`)J2Tu{_kx?vmVr zF&BcBwBjU}!L?Er(&Fq9a<|BkdPRbqt1B#IrF=_@&$h+(g6PQXs%2{>YYg7~oY-@% ztHwG3ehg!falA(L!(npquKv9)zQf}|Q!Xa@i+8S6ahfH8;`teNu}F|=hBhv;(27+g z(+>{9K4iA;@5x)a_;^E1-`P*9eoQD}HQ9|Ktm5LcYyq8ij&iDj9PfdLMrb-$>`uXW zbHAs7WYyJH>+$r?T_b%AA1hQh<~;}5P4lADj4LmllUMO@2DSZlH+yNLe?uFmo;^AI z@?|>v$6rz5R_L$UZ6eT`kUIAe&l}2I!?7a++|0WP;%xLsqeI{MfLnF7WqsZz+DRzR z+*vbT>ExrK3yRn3;@u);sRf^i^928^61Bb+^_rn%XJ=+n%-GH%h5P}eh=z>|dP#0a zhYNxH`(4gqF}1i}Q(nmn`+dM{K9`-#RJ<2Ir(Pnc%^jVpX1p*optu|$9?}KE+63j%4-nI#9 zf+>^%MK^-$H0gcT*8G8b}}m1R$h(WSW{w*OnfhD#w=W=#fS7S^4;a; zxeZH*PmE1I(h#+#s))&Eqx@9-uZ|#ng}h9(3!+;y2bhdsL6Vg-bi?#b=Blj{mT3 zeKbFDEy6a-tx~*m?Vb`OH()davzN-EnHwSWqNAjl8OWSSm5@cHAXZ}yrxND$V4vB4 zPR1}W*LbJZuuznN2(y}Bhb^)Pqw(-LlP(7n%$DZ6qtCwJUyK!8LJHb%8EfG=XV^{QO)L0b3+fq7ex_Xl8j-~K?OaJtIK#^&^RCsJv|yJ3=Wr?aSBSMK6TDX zRcjH%K$$Q1@~kFea$2lnsy?LN6SfEoPo2lz6I>Q%F+{_|IqFxkMEQDto|@~bEV+N& zDY=S&F`0=|JqRj|bzXUv?wTx->@~9F(xw;E1fa86$7zicv{WaeI(P;d ztt+m?gkF@%ZiYgnWM#;GztsK1kb74AY`oK@l(;X(9)-;EGEF8(D^Uo^ITLK{z@EOE zBfmmb$F2u{V=5Y?BzzEk#TK$1q-Bosw6-Y40(d+O3!*gxx6!)777@l|%lSf)r- z5f*BsEE9uf{#zJ?a^pSGxX*vkj0Q224PMNQ9HY|mUgt=nZO$sZQ(tgNuF1>lyG7rA zcULMWzd6u)ZN}L1>x)B^VZahqJhRDXhir`zYvbjJ4Gj|uWItej0v{t-Q+Sm)t{V*A z6FB^s5f4Hwc;_SOP2nIIjiELK9B$q}K!W<(WVb2Ib3d+ci;tRMQ>mJ@aO}~s4=?CF z)Hl}Ein@UNIz#C{vQoq7zx>R{fNM{!EI52}8I9w^&$Q$~+eUZx_ zWR*X8P@N-g{m|swt8B--9vJeeSe~ZH&41s1!?lff=ozR;Wt%Q;5p#3?`S2T5QdK)H zkg&9v?A7PhS0^ma<5nN1yB*SoVPbR_r$UFg;i$06v=nd#-OuUix?Gp!WKE~u#8|(H zS5ss}x@5ig$D^JQQ1Ue?`gjJQq++WaxcQg{MP;rb4Zg24K&U}l9@2nFu1|qX`u!TP z51?oey{IOg#prP4*rP&1ZFe23^e~iA24pFk8|`VU=Rx^+L?y~A?hKG;$-KHV1 zd?s~N0;wPq4eNJCIeQ5>U^n#>zlbm0#|zf=6M~a&J)pYIB){_OV-y~?6@qj?_SqN9 zq}xnIohug^6qtFMdO;=1t9 zILZrZ2uZ3Vkjh%kIb>wJQ9oQ|(NqvPh>j{cE1vN~u_V@mumis&$FKM4JQT2R!L1dL zFsiGjhxC_w5GdHlBViF8d2Bb=)dPJ#jc_#GZ346=KI2YNHh2TA%q^anV5Q>V!-leM zZ-A)^L7ZbWV^jc_Vj%V#>G$sIR@OqxSO$6|+c4Jv${i{~$7qdW$tJW?4CHUK@-l83 z6PLtXJoKt~Ioy8S6TDe}WJ^Prsxe&BeZ=(i1?$MhsvG2;x4>t$lkQTMV(gz*JNmBP zJHx*wx1=tv(0I-3+pbW)-^K8RJK&4CS*UT;;_x(9ree~`s&o$jGm$H$hd#TNRXITc zk{O&fvihA|7m+`;hE$bRZmGe8*?pg6e=#uMPw{Y!jeAYQw+*Y)QWQ-Gh8z;o%VHP_ z0K1q-p#u%}VnY`qZ9HkatP+-#EGj6oH7(6S_$YJA4njg`94^UW4Py|YxP9ctH6r4@ z0gsLGCl8t|vny;)@H5p+Bn-ayWLo;ligIkNim<2nUU<7}rNOOX4)p02%<_@-$waF> z<@or5gyIsnd&M9|M7ySWYAG~PV1;1&>)$A6M&dAuExLc#RJ%RD1b;uBGTu2;+od;R zy1QxP=xjGm3^q@8>(RT_=ZZ$~W0&pS+zv9|=$5Oy2rfMFa2*^V^w$|Dqzk}?1Gr9D zY}fz5CidNKp93^L#Yjth0u4wnw!7ZqolRzhh;E3z6c;x?7rZ(5@|k<-hf;An-=`w# zHZ2xmzq>Qy5QvPVc|=I9Ax7GtfTTh2C>J%*q;{H@ zQx)R8nNCAB2-eW-7Z&D%LY#a^baaeh1J{qP_1BmA;a;v-QU9T=&OQ1wi zCf8~)KGhvh+$5PdL15rvG;LFDZ#MsGdU1**9!w*1IakGXrxC&1r}=&KLsA2Vyu!&8 ze8m?;+`JQ@9Ka`6lsaGif?fQb8!awLKY3pVysP#+35g$A5&d#a3}RcHJDS4 zyy-@)7W0=7W78e$ei3|dX2NXu(pD}|@gYVvcwJCW zvd4;OddmCH|!J1ussyH|2^!x~>4%pA`(kbqBvltnE+=4b#2HO>`%R1_=P4iXkopq|t} zawk`>(P2)8;wZ@OSEHqNFP^r^5Zl0D84lJV7c5;S}I`tA%=Z{g2BJ)Ve)f^ z9L+h7g7cI~&ejAzO?Dp3D;2ug)7R;(X9BF#W$aXneSiCPe);S;6j3t!i=3;cXP-GE zyZLkKk(2F@`s;vud?84FZ8PNuO!8T>Fc2nem9H`ton?){*Wor zsawADDJIJAUw7A$ZnWhqD(1yNoJ3p)9g4<$hr zu2~|!mE?fpAk10R_AJgscT}0YU5}-J8#&i!vKBClvb`i{qnC9`*4oeDB5D{I{Z7@S z1PtZ{15U)1)5Jut&JOwd*2=G9l%T;Dj$mMamVtU+4<4J4;NXu8gz!~ZWmCWyM9SSh ze9~|<%E_D*OnXAS|MI4Lva)Z^IAOYe^S)gW<@#RuraOLdb^2F#>wCq`uoN%U{ZC%5r9G79;@*Zn-xf=S;fFpCGm)jK~Z1uiwf#Js$b^@6IJT7d2NzF?ey&Vc*AP`*SmI znDds%AmCb$~g$s4Xs?~Fz>KRH?QjO1ao0Hs)>@# z7|W?H$x*L|4lSbTgQRCkw5?IHtO9jW!bQ2u)56X%vH5bU3}5RkTOh0~Hk@|vs--dr zGLPyjvBpilb{TticzX|z;3liC{y!u9=C1h^oaobTv%4_%=&ymn!o4nqDv4EfcZ^L$y&A&r4TCr_e1Y@y%xjJLh=5?jI z)srH{CC0TKGPcXx5<+`3tL_s`<{jCHe+nN;zWU)KKYmQ!3_+q@EBwC=ePn&Bn5v|_ znx1w#(4kXNp2sN4V7B+!{_Js}U{V_}xS54NC&3{@yGz-TmFOxUM2j|PZL~489B!XA zy;dqY4-r|d>SZ7*Ezw1bDtAR1zwum-TqiTQsprfz|Ce2wz1l}tKw9MGe!6CN=Vo*^ z#?zvBxh(>Ld7?)894FAcpcX0MB}Ffv`~~i5;#X;L454oIWQf}SXOLJmkzg=Nv6ml= zmgBw&87|{-dF0$q=dM7}NMlVe#Z6H#uTR{p{J!*{HoYHU#TB*U0Qml_<*=1(Ciivv zX)&Bao+9sNz-{K7ovTd1xHy2K(MAJMYDRjWlln^9_v~1DY8q0>1{V=})A3JH-?3Ch zWQyO7?m!tp|3ffbO5BnBY+=)1SA@~8nm-_7tJiV;lX3IQwtJ;YEKve13tsU)y=3gE zNjJuJmkqcS=h9VRrQ?47u2)-f$1LE(a@^j`;PCJl^SL;d?VWa7EH6mUT@D;mmc85t zZVz;=+Z(EF$Px2t7HG9Le{UY|_AbVKIM1Li)kw1cZzlL}4&4~Xm;l%>;08wA)=Ktr ze}8nM2ae6M3)}6lnL^%CqvP^j|K694Dko`m=#JXOi zY=*h#QF*2@K)E%&~z{NJcBS?a`>rSnLi#j_ds7naC!zMA6gkNd=oWR6Iu?X zRinU%8UI~8Zc+Ogk3ZXgxOLp%HPNlJ&^o#9_Bfvz6a_)F&1URUvu#~RY&1fo__#F{Z7AwuYxCcoK|MEGA z!jtJ-z=q@k7fa!(j~#JQIl6Ju7(K5ZPcb+X)8Iv3Bt8SLaz9KVjLCrg($|psmx{?} zZ-w#?Y^A$eJNbNmIJw@Y{rTCYByO?aC!YV`4=2BFnxqL&Z?C*!c-;KBPfz&6!K<;i zP<|qVi|A!htDk;#aSDA5of%J4tmoO+BF#p*037HO5))s-Z|mqnZrv^KIX~h8!NFUt z>%iTTBy2jL^ITPNcjeEo`I`Bzz;s*k`7s7cRavrP!qB#xBj2mOu1c@^{)!oXKF)!d z9#?}J`DnvBi2#>tt0JT2p_F(~WKCGYSrdU~5bZ!@iDJXXXb?}#sfq_*Y6U8!MkD=8 zL(bx#egGI7a_LZv%W^MM3q*>C!XV@^9T|i5Np7ZE;2ZyN6GfpcHVW9+h|UOYaRxmj z15s<rz!rFINw?-#2m3@JWqryLSg19(!J;8?lBe(Oz%>R0`%aefwiz&OraC)rpbH5Gq)DN$fJMb=Mzf0qCkulY8EL3^KB$VS4&{g2wg}2Orrf%vzbqCr zMhJNx2y$()D(v5QWLK*xxzjrC{HS0yVZu?5F^cJSwJ(+a#P-d1x@8QL)VFw7B=jgB zdFAiYvgO=JGRAjZ!u#9mDQG!e$%2zli!RCiG2x=h(AdvX)9NtZM$d={Vmc9mSJ6TR zvV~f@*Dd&?URdN_D?~VL6oh95JrKM>yJ0mxVpz3vM=>J&IcfQS^;4Vw??wV(0fp9^ z1I#_ndLs~~z16o-BoGNu4VsTDRo=Lq~6gq!{ZG9sS^JeJmtgHnVm?o)k^S|i*uI^m=FQGYm^#oBU@P>iw zZ(LvedFve(yjpvO##Fpqv@-v~bM?#e{jD%FgPTe*t+^A|+pIrv*7`ArzOf`x+_%k~ zkXqEhasntQ%8Iaq*+KT2bXZqJG^9)v%L51?0Ssj+G~BSNbXG``oG?gQLn$f-tmy_8 zrp*s)@tWtHJ?)-mb%TJW70oCpIefIP#4zTUX(}qxid)?Y4DFW#;E^bXAHJ@0Ll|%j z1dWM5EAW2U-wGL~?BFkeFtVX3vE8VgQ7Za;8hw|Knq`B-8lBvPeogk6SgJH%F78!+ z&B!=1wUCjvc-2D?$~{Ri#C`@QlQ-g;0(<$+%4ngQ)f|SSXx`X!`(>K>B}pti#4tld z)CJ}WN?8hhKC{u@0AWSiDXdI+Ghkm}$28`W2l>9_XfpMnto|cs*U3oO{8#2F(gvL> zO%n*ZRf6EhOg;ZEzW+PK@&5eN@Wbf+#$YGxhx#eS0bu;W!P@Vrm(5?33zuYmFQ|81 zEcF=HR@(ZwW&aLw%lt9taE*pe!i;e>f7u||yYunA!j<0ChYJ@7X)iE}k$?bHk^ts_ zNP-x)jirM_{*P=8l@;hC7uFIuR|e7^1W;M?lUfK%l%91jS=M?e0e}(4hG5?~y*DA20@?Dj=%ExyWb;oc}3QQ!`x!DxuCPtj{I zn5I^Rn+Wz6f^j6Hi)>>M6qdxJ7Q=rr_%|(AF+8kJzwZzJGX45uI>#>GlKGX3`iHhZ zD>GAmL3bl6K>7k)ao4V7hhvQR-Uj^|diKT4|FM+Br}S+9r|PCOl!qhq%l%-4=S++|JQu*xt;}i*xE9a|s$F)G~l-juyY&3C|n^}U+Cen5-W9@;b2hOJGW_rDfI<)GAKb2K699z)4i+*t!6bZ1`Uw*zOT zp@1q^UNBHlAoZn*Q1-aE)%i>)$()u2ojjE!T{izSo4%=bT#K&A^cs2pnFX5DDIG{M z@UD=;YrNK45Kq@%YfDJjtj?$cgP}I%EH;L zfa}9^nmY92n;NikkOr)9_Ew$7ioFU)Ylw3zZMX+}RfAvqoFg}BIugn_ytxGISh^C= znRT8+aH%X)Waz8kbMx*`;r7qZpI*Jqy7}LqJb9{8{CGs(;n?lpd&}Y6H>y`)1wPD>UYY#lyUT%s z;^iCR-2d(=Uo*0F-O|_f=pC{}r z2TvdL#r!b2e93&ndd(VBNmHrFBB*WR??SjFch_DV5wSVTJI$_9$pE`4;GOA#g3|`Z zV~h{sds;)gRI%0R7Df>)uqnRB_d%(mmVequsA(#py6K|$cBQ;7#u+}<?NNeRU&ls3<^`9Jn>#ZA<*-uoRa` zDFawlo7M1Bs@GN484+(adLeUun*+w@wKR3UnP7Hutj$Ozo4R*S0m6N;VhMSX5+9mvF&9b~lZz*lAS9z8&7+jLm#5FON67I3&yv})RDwtSeBHs6|CW-tG z2L!MTT4B!`Wieiwbegilc#$A_%l%*4tP7n|2X6OURrjAx9#r%g~g@^Jh(sm6+~1@*nA`SAm~Hc z!B@w#tIPU)y%kOzXwdtv>vn=@aMq9?R(b$!5LgSz}#d+8Oof z6}i)^=kG-S_}ST3dq?~ZI=XVR@3rsZ>X_u)swaUbdrij^d*`(Lalh2&H@Mw*qMssW zt;BIH4|p97zM7R#r_M= zAga+3`zsLWdqIru3;1h~@=b)S4m!$(2HDyDn3p20SS zEa)h57{ccx&r@Rb&DatvHsYIFOow96Vb#j`D&^EVYYV%EG1dx&po0W#wwqEjq{;4~N^*Gn#kkT~+&Og+u#nLf=-wO8IiO5%sb6-h$q>t*i=m>8jPl}f@GnDg0nI68G$@vy z7w4Extx|A1r`*lQDlkz>P?<-k86M}b&1-57i1&nWAj^(sADSwE2$$Q+V7L404$d^R!Tr&z^G%jX|;6>A_Zf#gP*nJw4> z-gUe7Jr((&&YZG$yS>XdEDPC{^ORHksXHO8QPMf2Ij(7@zN=>B$pf9J>?g-$we4}h1- zSt5muaR3eHd=Qm7ARhuq(IE-XrDRFk7COZlzn60F8Cwx$nPaS+xhn((b#q*7(gc13 z08OxDKx1)iYH@&uKN^Q0(5WNnzk4Gb_#*_LT_4wdQTOJBO$J$^8V73%ZPy-7WX5a? zYKK;vCdG}sqUd5zpQ!xj9nQ(=ks`W5pNKe znIb><@9VkBZW4JxGVw2=N8PiYXuR$^7 zN9+>)IY_xQ2XqoObY6+%F}xV9oT}KCNF0RO#J$_9oV;zup=*UJ-Wc+sWd$m-|$VV75+!-R>-FrOmv?HT6|- z!4-z~Fxn3n$g8LE`9KxLHIRuEhUJNqpLvW_*h&r)gInNCyvgeAi1vXSuQI=Y20R_$ z?&8bAuk}_ksh0$_^{R@qURHN$9c9RJbG|7WW2uc@OYv2H!c62z){}hk2ywSVR$k*~ zDaF@}o#)q{U+e9+=G&oOE0D4d_r)d$SS}M?P!MT;N$$+x@4~A8Y7MW!%O}=yD+|a>j2rIwmihRTtn8m6 zF3!hB*T53WeFI9rcGUGxZcUaq=pPyAH2o0z>ffdo=RjHJ;mQFUAc$_&w}%u2B?isPH)u~O3tFEV=hf|j~rO@xJDflDM5FQTB$AP+2;P%$ogk7Wjro8Iv*{5 zB?13H^u463X*I>%ls#w7WX_I_tEX%_4-zuE-9Wj*VfbVJNHbk6CB2 zV_rhj-b>~ar39e(Zlg%>o_?dSg6=6=FREf4^^??m+e05BQh_AdW#13&0Cr; zTzkcc*M*z%Mtle;)zXe=UB7;SdM3*% z=G~k9%4oS|1{KiQcm6fiLEG!-#sP!a)XO`y;>jO}3|=~PUCoH^8gxdPit}4CFjEZo z6mEGG=1iR8sx8*mIKMvT9$Su7_M>Z6VN`uuAX1!BF_BLp4@0X7RlpD`A7}94->%0l zc-6@yCVv~YpPILQO3#|0`=H>_R<2sp#7?e$DJIBL1l0H8)l=qR)L4b-=jnb^K#qo= z5ZMS2@G+frY3Zh|3GEx^k+Mi1(j~c7O*up+%ANgC-am$pE+v%|>Dgb(!N-)%OLh(q z9GB4)Du~w7^#7^IZOcj@YuP^$HrP(q0>*GflhPHE|IK50(G*CR)~t5B{bb%|Ew`~% zO?^hPVxQ<0B=_sObt9Y1qtxWImUj#FC)~CyqE+pIJ;Nh68}CeNB)p3;6-%v5PnILO zw)qJOly-P7&d9A4gxprkZpDWf0QDRZMck79a4IaH_1&hXYnzgwg+^zeBp-WMOY3QN z84ZkF*;Dfi1seAJtyo(Z3e#800!JMyvx`a&A8nT(u+RCXb53Lu*%RE#!&yT6jO_R= zMp()Uk0y&p1|=6w^{Vcrh|4P9##@ADuNh}P#;fw zQ?gpIc6%8_)XaEICOPCO8$oJbT;ApW7)Kxi2=2Udi-y+Iz3caCc=xT#CLzDnga_Uk z^NnV4cwSGi_|3f35h*J8iYPSb6JWp&bI_|cudtlCbY%meG5`6Qb*SpVrb*f2!Cv2@ zI(3-|YZBz$h%4mzwfAI*_S~0y=enKWpQTIw`te2nj;elv`Vy|Kvm~n>U)Rugti9y@ zZFO;PdQs~Y{br9K{T7XBxhqMVazOY#xy&0p7sCfN_*z8HZ6nO?RvL|jJe~Bc5_L3nvR|+bp%Hqra;)-69Ck*kl3G$(wg(c zn=17QaNHQUl0<^9R+!IgPg zEqxh{O`3uS1^IYX8y(jhjKcLReC{gk@+MqW!37jnVO6x}~Gv;6h*21&zU zlMcIq-~0&JAX?3h)Epsy$^P*+6_cEJ~0yI+fO*t3^kYf}uu!~tbH5e_7 zC>qk$jKsy2(KC|@p)188(4IoSBy zRvk+HH4md}gvpb3=t(;Lx|)sBcjL0%?Wt!0jFiN+G`jST6Pr;@adgBZlP8o>bGTL} z*}lZ4-cwtFt^B0g=?Xw>eNvdH?TTMazVwe;E1QkYy1>`YbJxGt=W(R=q$uCwC@-|_ zd_TcFqRn=E)m7)S7Uj|$eKW1Ip=2l9_X}M0ISD-LL09uGxBk~1`@n&05I|9;3_wLm z#hH=yF)R`69J@7;SRR=uz?^M-^t3`clB5(BS=ZX&rYYw|W+e2>uz?Zzn+?uiS*6kX zkpz?{b)?<5z-e0WOa6__IDq+uR*bI!El`W(E`k#f?&p!qNa62r5L|-6U8hU5pqIJwuC!RKA4MEN5T(Rs^gv_qb>mrLhBy8t_iELx zh(V!wTg&$Hs_qci^r<__TV}>jl+1M=cycs(RYR)5divI^9F~?|)`Dq?Hj3VYrE*?w z=% z<2ZVQYKPW!c$?J_8v1cA;bPbV4u(TxHv!lgdE^YVtbbFW-<)fpB7OQSeX!MH3=RU8 z%}1kL(j=Vd)mk)@I(tM^#bv)_0JaMPS;!hlfPOWr5%D~dsAMU-AiE+6@Xr$dq_`w* zd44$QaIJjDy|ej}oUg{s6(7*4iB6A*%gU1c>bac-EV0a? zyzAG({g9Eh+h(1hlWFBenN?-)@K|eV+Hrg~p+P`O+dI3Ky%2__r}LA})tr6>(G@*? zS8(H-8DG%-yC(M!Rv)}vy!j0FExoZX#@RrbJ&&VHL_)Om*V}^b)O(y;>9s|-6q@7_ zmXOXoQ)U-SAJsciFGzfXV5tQ^J0~{2K~Zil2y)+$$H)Ts4*YF(JHoU{JEL~Gt7g23Rk*Ig9D0$j%ZX;1DqlUnnoJfP9Ds~#Q;x}^rLj2dRbN$igG^*T zn+aY(xvcO8>}5Guxdi&-*Lx^@AeZTm6dxZ`z1*|;Ta<GnG55jE1i@=rV!7gB>SYM>GV-or9F8 zpx9}b{0zi~NP_+tL9#~kYgn;_*r7J_*RR`$v2^`Kr8IUb>bABi@&g3igHc2OEo#2R z!G}m!;c6|GO45N?lCMq0u>1>)e|W|h{8-Z|Q$lh#hzJ=4@5M^SDGJxN>#WWVcY5_w zfDV(*g_DB$$tNwTxjXVXrmm>;&j#I=CG{4m*~rSmJvR9b2 zx6=Eo@IILlq;Gf!MMb`eO0+>pIs2ADaF$2v|)V-&%El z6~dMC19vf(clsW!4THRZB<;`X4&a}qD8}6L*O$sM#YKZZl%?B@X;ax4!CmtMAp*U# zE_F)}rbW@=^l83D$;+LIy zgZaJ=u%*eQg`P;3`DeP)SFPZ6XZ}HW-M)2IqV_zkkh}DXu2aLxYmBpEpIcNWLH!NI zGp!E20Rf=_pr*@+bo+J=kFhXm6y(N+wc{~P4LUx2WQW9)zXeh=Er+USp znCw}xyX!-Rz9jch-4)>jxU;Y^PYG+a6V&w;Cex>q3h|EGuGXaD1&EB{C`K`6v#H9O zwM+>P zg|z(%iG-TepPyn96vP08RfH-f4Ir>CA41pHk1G9i91KstTl5BOFS`2p;KBqjg7KQ+B|Qk~51U&vG(ZC!PJB>&V`0V#r2u!k6IRSf!* z@dE|OvLGZ{DEY3M@m86!ICruI1>^=3#8QI+O=+yh08yb#7Nkz{Bdl%{P;eKthI6G5 zzudfwGN%-3bE-kh&y#-`RHZ=`I_{eR$WE8e_xH+RW)Ilvrpp&@RrDFtoCYUPP-&GV zH0dJ<+x&wXn=4w2xp;FRzb*5>Hn-f(ZIWLM6GWZrk$2>@asH-{7;1)2vy8*G#*TWQ zUe47YF1u8O?bEk5Eq(5HcOv#0GXYVrZ*TpJzimo)N8l`^uJud-b==ZPTqxiv9jtOPh}! zIW9LE&Kk=Q9&SI%nOfjal~YlM{+w^;z@=k1<9oo4D0Fob<^W|l7?2>;20$cy zY`;UA!sw2$exyZ4P2$$zI-pEoa7Q~p*0@xT8yFiyWzWuGeYKf9P6N(jnI`_-wwAOS z)_g4!w@#d)ilTF!*T7f%$)qc0GqA7PR?iU}AUH$oJC5$c<^3GmD?(fRXsDqkL{gyc z=)dJb=Sc$zw0}d_I6bJYw7tQZn_hg1hB(Md8-^bq{G1WR3HDk=^>=Ue;;AG3$@Y!Q^Q)YL*1+5BOFGkG3n+j{jF7BL^7{MpD*iO0r~1k5~OOSmLl5 zG+%Q5K4kjW`aQLJ<~<3yyNX0`{(Ym7!lmI4*eJ|`q#Q*f=wo?FGD zC`$M%9zXkOg3NQP49>wbVjikwJ&nVSl2)<;?|_C!-rr2aqOjAT;>T5=d<35Y0v-g6jza$Z7Y5zib=(k2@w|Lt(f#Y}Yjp~BH}z@t$}ik4B#J22 zqET1;fyn)0v)=62SDp;mi8yYyqC$0xpm&T~ka4ng5H6*qWP^k0y8nx>|BPy?YrlBm z6bJzVh8|*ogc^FN0wRXcAwcM%n$V<)bOA*ZdhaD5XsFVq3)av((iPi{G!e02*V}U7 z{=egS&!@9LWMqu&FZO_w{#W_R5gl;}+M8zdt8z>SbwZv?Z<^JqHU@IdmwK`g zXLpnF-%|g#b{3JxTsRWDlIDe6*<=>eOLo#^0}t1g8$t1Q)IEyO{eAt zkCT4Gk6o&^ABwYM8z%WZsfNBwZmmO<9ts)?fsvGRFcR4k>_iUG%rOq)c@!)bAX3W^*cI5<)v^`~eRrtY%>CypoWD5F=0cvfVkWeRbUZGowiJhe5Xk{oKx16t-LlIN!LU znmNrV4*j6=_ofqwN0NrdiQw`%)O=M>Q#$n6>eQq|)RHaLJRzqHCve#YxGia1z8$Xr zA1EeU03=od03_8BHqMHy2+h>88_|3dxM(I6G*uBa?OA+YJj<0RY8x|5j{l4d@`Gp#vbHd?)@Zm`Hy7%YS#WNPYjIgS;JV*ck zUaZz5!XC!&Bm}E|aokA~9mwmj3%rd|JXQW_V$rC=+_8>~?2Wv8yT`ocI%f$i{zh(- z#lY#X%foj}F8^Fv`Hk*3S!oEulYwLS4wfcAQ8+1J&LAlJO7eOmuz?#u^R~BbFh~hi z0s`haaUkF(6kv!;0W#NNlpVl2?*$E7>a)l+y^5!tF-cHdz)+Tj|NFa*g3)VbQ;*{= z`xR*Si3lojnJHbKzP-}Pj1oW|Yn+>^PNqBD&j~{p8tR?@jw{IE$<~{i1_6hve>%!F z7aRN;Zh*xV3y=GdWW+G$2PVkbhp5fPzLnE24mMx8&~IDt>_c3`@5xsk#BTM;rKv~@_QOh%bK<%v>_j3H@rpw;Dz?AZym2j;D z3mA=R3I$K(ss8;N`|MHSsS?o~ub^|+md6kvv@dg5HVmLd1+b+GW9)rq4E?b+Xq22W z{t2F&opOy557<$w(ZEk-7^5O|5@C|xd0OgL2Lb&}8}6UjgiNt&{;0yg$%r|t7d-6Z zPYAq5ogADi-of`W%5r$tUPi!h_=bx2mFH^oe_Ky@&0bs zR_}huogD?)H@MwC+^%JUamQhoEyN(SC0V*CL z_sJi{Pl7(`;uW&iSb8?Bza)K&282-oBO+leJ~yclR`0GAAk{k)B4)j?-}MsMh>7OL z6|g^3F_KOYKaSMN5uk*FURLOqU zyi5~{`m5ARA>!KI(9bnrZ+=qPqeDR?rD4F&Gp!3%jHHaRqbg;xVWasdLQnY7I}`ptK-^dZ^%M zj--*4gaeGNEr1sGShTnTxnYQX4iI$ zr>^hF))%4ns-S0Hy`lO)S6%%c+0C@+y6u(OR(J--xHf-QGdv#{%_)`H{G3L&$istbpZkKaFb^|5CNTbiG{>C;{v=B&OI0rrr0QW`!JRwNlEm9-<} zA`BE)WAS^|qmBS!FgziUiLrLjO;mUOy?kX|=eN1`uLqn_F%#Ys?!pXacFs@@;Dgkj?Y9y{30{22Y-wQr zW~fy^7~|tntOanXB}+B?vWwaR4QCz?)Jz^4)I`we&2pvmH8BNEcxk=C@{(~h7xK#FqSW&!`z1mJ`GZOe zZiD-A$^Amy9pxFEhzhz?!PSq%8&bzh92^$zeEhMy`TF2aXRwOY^l>I*?nFfH@x&wK z8cs*<(Eu;_e?uINHtezlda02?sX#-Z=(ma}x~^)gRQ!8+-Kjr+|9-8KFa7mqx^KC= z9$`z)8~T+9q;pVZWbkrS@!Jp@?SYSW@qEJtje5vrbjd+IwLN# z8{Yuy15&4ov0NbOEX(_51c;=Ds4mEtS@9DG=wQ367Is3oLzoLx73pWQQPSRcC)G3N zYTPq|H*cRgkHErfk9Nn4Vo<>#ewInf6m+B)Ur5*$qgC7lWI!Myf-p>~VMwugzTin^ zN3!|i0<`Q5u^L&7;OO>l=hBDbfx)rgN4;*fJ#N7Sc03~}r-y`9 zWB}&B`#Z=G3N$t$uGb8G+yZ3}P(?_o{Nl&Otz2}q(kj1V$KDgN-G@_^-_zSi$St0J zvv|~;e(pRj)zy5EbN+$C^Wt`aQVS1f;a!dVYi3h_+Ab($2U)%fEYm8^XwK5xlP^PV z|8Grjq-X_XS;}|w2}80q;dAR}v)vFx6`t%sz>H=1pc6d>LrHysciw0u9B(*uBIoEG|F@} z^y_(@h(&kDc;xakio0Lp?Y2|Uj5~&d%m{((rEGY?I+8Efu0}&H+Dm%J`0NV{Yo&r{ zy86y<{6{vo^!sipeCyiahf_;3ukP?+du9{L+|+YQg@QYcmg3x1`<+hd;+)5qi@(_6 zs{-Bcy;@6LefzNd@R+cPUoH3h=jvyk)+x<@-rt{9C@8nG)jmS*quB^oi10h|-NnFY zpv4UF)}+K2uS?^9x3qGi$$BfZ!e}oy$IoUhYp;?s4@P?XJ1;l){&O7zps)cOz)Tnq zxQKlrRPzm`o2?^}9b8S*K8hrl z|1lPlW)e%0jCUq6nrAVlAOEgpVUu>p+1Zik^j|HeKv6@B z8y}<^+7X&w?p)EnOCmloVZ|ngO?M5AQ@>T~&#Oj$SF>1)t6BemY#?_ac~#8wo$RG~ zvm_6G4jeS>$#vQ#}GF3w9fqE*t}F_=l85K$j9 zLPBU%8VSx|17i|jdsSGpEu>)83u$&q03SqGHzo%m%@C(`;2{i121&;t{~A+@sYHdr z(CZw5uziFelf`+~rr$$uish?w_H$qDp03PW5Lb{mtysj!xiNFbpHS4`IbqN-gPRX; zBZy)6xh$TtSl>HTjm2lz_55_#?NuGI$ZcS^XBOBLR#ci}p3*41;Cz9(L`#{4+zqB*oud?Dz6gOl+V`a z7@bBlW_bW-B!Kuw_>(g@S{SPbIK@o#u?*i~qhcX!O8^`c#W{$MZ$f(}4|?2`;pwDx zAS~plrjVM441ZcWnzZcU2r)CCsQz)=H2c%pgh8y|n~c*CY`W`71?ye$ZMHV);JGD! zp_uR|D4FqRpYiFhE8;#oU3x8HD2m_P77}Hk#|upqlLYUJB>SJZBASu#_wUirD=&|e zx^^n*bV~jcc~!-CeUNVhn#8zt3%TEC%Z}xCm-!1J-+Y<;zcUX%E4CAU-oJhPq*l<3 zn#!SmMZMT;EO4RHH0Y>syC#Cdl$fvNXL+?o1}5{U{m`zkP6x;hcOawqUNyo*jB7^{ z?B(A&b8!86og&kmQZ|+LMnM!H0GdDa{j+sL3JrAG-9I5dSmGMMwa^dGHEMJO2owsA z6NE!!*ul_|I*BR3E}5Okj?W(KNAXxV8hh_JAABV_L0oGQ#i00O_MAFE!J7zFkiy9E ztI7L0;&`^{eO{F$Iy)kkvP8qAcZCD+@P>e#*D<-K9x(AAB08|#j2zkYFGWy{xgs@H z9Hb^Z+f+fK8ID3BX^2OumBHEi(x#dy-+n3c$zPf2H~nq(D50TOFUD0`U%7tqy=yu4 zfV0>-ms=`JK=H@J71Q?nJ%JPX&W$fEr$!#0D);{@apLCTn)ScK`n=_~SdF~sTA7nU ziM83md|%yvW7W1&msFOiZX!m-_izKuN%Ht}1)mT1Rn8k7>jPJtI_j0MyRcG%;Tp`UnZ z73yGFDWahqu7qn7z`Ur&amM@FFlhbTm_q*kUW zDfwmQ>x?g1mEi^1*`UKf8OnAQj0hM?$_^Pwp&L{CwSU>bU-7SunVl`1#U2hYbwyN|HV#X#q)82+YI3 zHa~*B1I)RorDJfgbfuMAz0W_L)FQEnqyV3LJw~zC0yG`;5hLua2 z^h8$-Suu)LHQbs#ql)4`H%*TRp+Zc48Jhjr^nzly4BCh4&MQA?N2!eaRsFg0|GRI0 z|L$FWd#b`cBJ*?1@$aFY#mZ(kkX@{D~`C0JSP#)Q~JR_Gm!#>~4nrqPmxEgz6?YA#^rkDN67iQ z!gvD!@2&@?iLPRD*apKK3E)!tOR$(1XjOf zUXP%VYCKl1;W~aMqQ3US%nx@Ds4><8_j^*LCsI zeY=TkQ>QknV(zvLJqSwMS8Xq@jkgHfT5nH&?bn&dMQ|5W)=?Rd}r9O>o#xb)fP z^as{5oMZ7F(i=JhU{<#Yr;DZrfMMR?+Y$V1gWY1R&Jvs@gqX17T-W)}rle%#ez>)` zQ~I25ix1I^-rh^t#97)n4C6TKaGIt%(0nz8nI4DR>2sjC5g^fRm|#M9CfKLy8ZKe- z(Y=mi3@bPZuoU32ti-^bQ}puiOhYi9HJ?#N<1V!bl50wY;DFngmpOGx>H{BG1=_Zn zX{Gdxsg&@jM_1{n-bZKK9>=a2MH+dB5BOcv|CCWv9m#EN?>NC6NoEV*lHdjE_~WbC zHYGPu%R|Ic!{em4ci$h??p^7x+okoIxwlSQ&Xo4LCOVv(+SzGnJ~i29OMFuW=~{Ic z581qDubglvs7*`3!EXNq-HA<2Zb6GRn3R^BsaH327Tv*l;;{}28raGNg=^`s6xeZS zN^G)kF~xu3Po8X3hDF`bXbsJdl2MXA`dVcn1q|Ue2REydb)=7wvotmqj;h(QcBIS~ zl$6LY?ImfSko+_KRyGYiT@_?FkH{3~IU~LtDj=Q1oBtx05+(bVpDmQcuO!;59*Bn8 z-ZHSH@cUSPz-yR8*zzAV_ggHJp8inqC-8B9DL!5Imr{DpE8zB>rYPIe%XL{QXNK}B zTI{dH{yIC5@Yp}zZ#2zkezuw1v)bY>4(*b4EP3_6(f#+g)1FtqWlv9``a@*CmUL!8 z5WAxR%T5?n8&NnSCaAPAWDoUjG3O_qA5tb3T~gkjbmoIj;*T*@u)zr(}O&b)!v-$|#)LGDpa^6!KE>h0ce zW_ktfTm9|fwXO=Xejyv_Gt2#&wjvT%v>Q@-Xu%!r4iNVd|| zGCQPn3&SRjqHe2OeAapu2E zz1Qk4g{I)B?tq}PNqTK`ZSs#eoz2`VY@gz>%b_$NEL|Uo4KNG7!8+3yp zAR>%*W<{NN8G`^~>hDgQfka)Q)I3L|At$cpHZEzH6?)2vZ@wBHSX_KHe;yi+ClVb6 zuRyazNXDEHyvm*3mhE?yyoDdXdps#`8lNZy9uF~?0UigkTAj|(4GEAX&L>6yv^wji z)tp=N$xch%6y+k$JPr8Ar_(=BpF51 z7GNt|#?(LmvGIQ&6=QoN$BtgCj}485L+akmJR9K@9MTbzsBuE&yx9o#7jIP#%`#}P zm7Yx#cA8MnRCY^W^_;8Ed+>L|`nNDH`FWN-ju$8C_|b*ccu9~ACU6x*I6J7D!eVbl z3nQ79J;@j!9`4)>4{VGG6oA#_3z%HrR>S}i`K@K|3Abp*J7*Axx+u6CFN86l>lDpB1rp=k*|9vUGXkfjjtd5kEDM2b)VH8XWw{|ZZ*F!yEbm2dIo-3g4nJ74cCedtV=T1ZEY zDh4>&wl#GZlfNl7qgpdHdu=FH@?x>yPw{{xKT6uKog0;*-33mrZ!GHB&6p`a{Plkx z;F%Xy8b!H2M4gfU=5jHFyF9!j-quc$t!5IcKOk6i#qEz7B{O;n{;vTCjU0NwVJ{uCuVYmPyIDZ>zm$f1fwu z@ir#V%#@92G}{R_-a!DLe5E*;AmF&j!ou;asZ3? zGaODrBe`gr&JF@1k|?7_8u0p-bX!j_dY$>QBkhYNkyWC6fxiyN)iX8%nOSiGFm+xF zoM-B*-?fd@bd+pv2sHWXf8DeJlOFg_xxIyoyk!+9cYLEe19$ujGL%WJX31DdFNkQ- zT)m%g(^UBq7Nn5{A)TLZG!ZS@Z+nWxMQpwg43Am~J9K6@sfstH#oU;cZV4Hw74>v3 zx`Mic^K0y0;fcVLskh~E;h(;L{YNBMRD@^AZgIzoUJm`GAYq!s9nr-uSl?+#**Wt&=rt+&#Q zIA}veVMKK<)SMwg%M4&=2@V1H&1m<0Qw1tMQjFjqBryz_?qTG9B!-(8m3f-2dIPQ- zRnu7plD9Gdu~i)gS2IWeT-Y-5no9xOIzi5vC*jN%I$zHsM#+M=aTnmHRQRzekk5i? zkc}Q140QP^AWlKLTXQyY##d-uCp(;pV3A4r zh*?zW*dFGkT%O#G_mwYCuQusFF?yht^z@ePx%dBGkhioi5~GkBZeCmKTh~YZnBP{2 z80v(mmn++cV>-8W)8Ex-7X0^=v+6lou|B@*mX$pnaYXPzb`H?c z)R2bxkxpMLs~$)k#3X@Vmcs^XQUE%cxbFd6#p#WNq(z3o(XU1qX=9l1$E#Y|sY;Uw7gyv_^Z;Tq|R z=k;N>jhn-lTGJQ!bPh;!(cOMeh7uCa@yeu08+}yAT~gru8CwV!ydCycUG%y@Z+L7> zs%qneTgZ~jb$_~#!D7eUm#BvV=}GiRC%;)}R##YrqEKtba6vQ304!NO78|yb{+rb@ zA((z3h`4xKh%Fm^VXTD)ui=DbgY|Qf22&#rK){Daq<^CzT$F+3NFOxvnE<0l@#|X% z1*H9hJn-xLXN=U7C^Ys$1{+18NE|XXg7M*RaOgGSqT{>NbdKxLWU0j+ns5p!iA`;U zGPqr&%#Js5aQZOQEJBFI!u=#MNrUOLfYqk z!wwV+fy0iFtEHfX1GwIc{{jK|fe3bp<{dQz$(&yb2`U){)Db`sAT#RVf+4yjzZjNm z3P6H-p%qV!l7Z6xTpa8ZHBdt{(J(9Xm&O(I=^Tpn2_-dg$;FE1K1qY^%X2ly8)ekP zENl(h;NKf+HJ2==#rE5)r{KkS zn}^-$51MC0ZC}#sx2VLMK0)$U)St=uiQoO?=C^*pzw9x0b@Fr_ru-D*v=4ZF>__j! zRn=iOw~N(mjcTGJ%9J?!0v@&=8a}g!3c;nj|8l|AvHYDhR296dV>;Q-)XU2lZVbbN zD8m!3nO5aM!X=ekyU-C$)4Y6YVzwxSh6TF9j`Q{#r+FJQQ8&tF%b-cHApA!vIS%NOKwa0}Y113+KKGV-Jbtw-Z?hAmr?e)JL60l= z87|mvdqcsD%G);Fk9(!x&e)z0BF$#oUVUWx#;nmKVQ^1W8O(h`LeN83aBXRCBsqf3 zaERlCFf0Jz%7idZoHLx2W(jZzg)eKY0l=BCgJ~PzRLw;WT~0wZG(ato)tBveT|8;jRe)b5{?n{;=kajGW54V}xo_&aZCaDuYiy(3PV2`Kw1!PbZ6bxoywGN0 zI^}qPM#awyD(93Xy@Ik@EovQ`e?0j6YWQh=m2=cfr|8a8Sa;40dq-Dg57#s~X{zs3 zPa9O3JxJ@8(#^1s!6M|@*y4i}Uexd3E&u_?Mfn!w!gmK- zc89BxqUJw}0UGq@uYQw>7%fUe1y?d%W?4m{_&%A0la=zeKqg)b_;d=uZ7I7dp%R!3 znN_qkQprw}`%XCR#vm3E_7QD2`K zghQ47chUdT!2RDBJ_g{bjgeH^jJk%2$7gp~;ahZ2m3Hfs9Q85>C59h+pY=|1t5VYi zD-=hAwG2%xUB15KM5xZXZdAk#)~|BQlsj%Dl}AeZui4Z}PhvtGwXW~Q7-Py|j+nQK zb!ycS%=E<@k)Dz~8kK#$@Jk|QH(b9zp}Dj(9L{c(oP&8NLEW%-5rJKH>?!yHokxnb zQXFxyv5^@Ahcaw7i?Xg4?WT~}NQNmit&o&gO?ccUp#BS!E`9=57}Mi9j?BQ;m0!^L zN9LQ29K3&y$YZgHF?8l@HMfvaQ!|u1p&O~(u{MBq)9^Y%?$u$SA?@qZlK!mHqGV$7 ziT*^fl6kYfXCLac2INoRml=_h@3K@K7mBZ%Qcn_x0-l(PJiDZT&)SdnrYh+Nh|VhZ zvf)1)$D09-S@fbxHqML4Jpsz2ujOA#Evi?q27V2+47stTux)*&;)GvRzf$#ettKhP zyyQDgw*4D>KMbRb@4p~Z?i(vStm0u_y0eLra`xQv0> z7_m?vU(v?pG-D#<*kmdQ5LcX)8YQl}xB}rOI$LY#5*aE=AT_MV;1Cd?B|DO6y}p-s zjsrhxPBkp#Bn#?5CI66Acf1M!JJM3|0AN3ej`W`4M(i_H@OO|00|XvmF^{{dvUf?% zvWy!%e^*c_Ur;EAJw??U`zLotvs(Zw6g6`uvs0(EIl;*jGW5 z=UYsQ9X{tyGa|B^lXA*_JlT0vbx~vT{VU#mwd;fb*j#x7{^s)cgGt%ydttbiKtXgi zPmatDE#`78f>LNvy|$w)R}M#7!f+q*hkWxlF)3rF_NK>yC~EjY0p1&v58b6M{75!5 z0vJ;0iNg)#j3WNP$r5%BoO&%08kV?@-r$!Sp1#zOLaLo+8O<~;2dmfOEoQUfbYl{7N`dbM`)5H6;e5HtgK8FyJKM`P8X_<*)W7*1k?``#gfBQA=W%2U>+5+ zbbO&(0fD6A_9&(*<%Y~fiMYnvuYa|2m-G(C79|qbV?8S5rAt{$xL?h`+CzQDQ26wY zSh`l0yT=TyT`dfsza+inb*vtlci0O!Q=4&w+*j+1Uk^7l3xD_Ks1IAKYkzH^r*gI5 zE}*6x;B3My%=dQ^Tm^aqa<>J~4mz&)T-S0acxxibm=0Jvw_jtKP`b?u z6wYEam7RuUgWzHXCCg}*rBF^$lTQHXsE`;u&4`yc!oc|q*5)2Ba3?6IKCw$`#v|T# z9@7LZ6YCavaYlH_!D(O$JZcEUElO~$;vxwS@^eV3)uksQMvPe5k8#@|C(wpf{F#n0 zc6OryM=tl9My)K^@*n>&!TR>Jv?dZj5#C}Qdw+d*MjNZ zE5sR03{?}n*{HNIn+aA)(yT1yBS-%5`=h7aTg#>POMn-JzyJRIg|5(q!sP|B@S)f< z>b`#bp4vMLkvmQK_Zt@5I3!_GK7^$WLiDo~7N z^H|$}DdC2bVF2T&r1ZQQ&Fqm8q@@-Z#9=|~@E9ALwQilVAx@B|KrqM3rOX+G5F{I5 zg0fl_hL!9-q1F7NnMfUkPE`{r1sD)*#0SQpi(*JSaRKa@JYLK6g&yA#|xd9zun3JDsZvUWi!KUmh3M`U%8LwYv zrXdDCIp9ADK(T1Fj3&B+Plt~-F*%b8cx(aJ;@qgA5o-Jft(^%BMczac4-m-1`EsGm zyGt&^+C%If>v%K;`YtAYqkalhoD7_r0sbW?->~p{NjiD=2(p4iM79U%1B&{Jj2{lMyV^qv<=f(_amG( zmvh=vcw6AJ{j`R_rKv}4b|u}oKIK4;h-N|Nv0e0w%AlOHM!yTb^6=E!?X@K6Zo#kIR~pCf+tM(vvik2?mx9JqHefPXo?&rY(>5?o#O)o~BQ{TQV#MMNp>q2A)3mhmw8BFD^?yQ=PnJes^$(GIt|@{{G2os>e96LTcXh~{&gGl3BS?v?3kGW2=$o)jk)XRq6)R#l{qgz@pDc!y@@*B*NOeJ4<76L2z ztr-az2aM00s9N zVJ+1v*%4G&YR%-0!+Z$l$TzQjVI}D~4OD6@6OcIP;6BuVrPaEQfFQWa zOfU=r9~6s0OF=k@W?o(ypL3-YEwog9gPR z>-`xs&V3mdyNw%DgDh6CIe(P`pUB=rUEmH|MLA8vx**U;BF|>O2* zI%Vqn!OGZ}3ux#^O?JgYgu|3H6kL!OKs2Qb)fH;G?xvZNwa(`qtW{T*ekOOq=_BNJ zJUV3t2(%Z47V{iE%BraAkhqHB&yL&T!Rl$!~9D* zA6WXBR5&&G#^%EZH)`;MGvtl{=RRu2-R*u=0L7#(D59gs$hZI=&Pk}70SL-hQsf!- zROlpe6RH;o%7=lp%NKd$P0LNM2a%xaVT>^!EO$spvTO{!wC;&}Pb>Q!4&aw7S&bg4 zv~NuWitSXzNT;sIR`iXLB@ljUZ3z}G!#}g4pW}Ym(Lk|3{xh{6zi+_Nq7Vac!r=9x z);K5JOZCokrq`&my_)h3!&CS;{#bIHz?;<{^i>C9ggiXCVo>u$bIQnBb0lB6y}=89Wtiot@#RP1OHGy200&CKEUB&f`8VS1iH3HOKck zX56mXA&raq2^BItNwyiEziZ4q~g!BQ#!@Am}&_F*eLX>XufxInLP zA1)vZR6^A(IuWQZs{xZwmaZoP+&)Ywo4j}AQ8U46={5F>&T&Qbed*(tI-WNI@vQ z#m@O!N?awp%R9N7(vmq5Tt7KPcH>KT^PTe$yC)e%RBGBLZ6N{-X~#B!G1LrWrFGOM zth8Wo`2v6E5O}M=IF!c`IAd126gPS4`bkYIu1XK9!HAQ&F2=i6j@Jdw+8)m;_)~Yn z!>jNS_y^b7sIUiAzw|64C#^_ASXPAX>0oDrQoX+StzWsLum|L>>41kV9I?+^&Tt*v z?F!XeKeHFVv63L+1gJD*Fay8Q3*BYf9NP?^#CWbfDQI$P?P^o$4esskRv#IeJ^Qfr z#~1$u#Z^IVC9&rzJfyCT7u=6J!$xXyVq_vRjN6?QYXdElJ6KcY<)2m*wDS&wcI(^XwVuyU-p!qA{rIYH zwP$9#`qo;DmF>BkPCd8wEde+g!J1ah5lGBJne-4~Mi59zl7}vKfJs0Q;6;4&MW~m0a#N!8_6r_A621CgmW}En?nWiImP7 z{EPFmLw`D>e|yx$>skdNE`2x#i{6EbN#q-<8I={X!Mz1czev)-NDJe1D0pX-mraQK zHJGn*@2GHvI#K+d&cpn7pWcM1KTcIShkXAyuJ(*MT$T>e&ZgzxCd4c|=6ud`>Bmwd z!@ZPyk(qBT;-(bu3yw8f@Y0i?ey~^H!_fwp-~L|m$y~Ul8EN{|p&rv|50p9-Nh6pd z3}-mv2_4m>gD@Xv+@~X+DVFn+D>+3(w<5|@DWaE16}KBJV#+J}B94dnA|GI{Udj{2 zaU+7b5V7p3S;r;AOZdv;UbZ8U3bBaCqjZ3jf9hONjjSLUWTLj%?Pab;(@>RC8#9W% ztUU-;vr|(y!UXGPY_>OQN_C&1>Uap;i&KYF!e8f!m%+Br?Re-?}cL02!bY%Ge^wjAW3t4~Mwew`S=?zf;HYS`0Oso+HoDsmi zIU1|ayf*h-Y42XF*(8OWSQ=&N2`ByneJIHoX!jWTEuMhl*gIvKa&`Y~MR*ha+Kdga zyl~2J!2+t#Lt%Ukib(FbhRIb}{f6y~4tCo2FwAm$qt}B~b-%!Q?hKD&>6XQOmj3cP zP7du+w`!=pcE2&%#UlAkm93sSb;4Vtt>@g6ockKt!Z8=x$%O(^Dahpy>c4FsD(UP^ z4XkXP_`du#veeS>0Lbng@C1VQHD#lxf)g9yH2UsBN;OCy{lVpEO~&d>p5T7_)@+(Qeqn&?f+RMxBFA5N7U#dn_+7gH^$OxI0Y4 z!{K8rJhYX3n?fp2XN}2nh#DLFFTt3Hb;$tORV);Vi}R^y81eP zgcE>fQwyMk1=3PUlQj0s5GcExC=HNu&8Sfm^oN`M=@3aEw(_Cm{d_|snpj`T7d*(3 zsdIrQ17=v!otP0k5v}*L^iqzUk;zsuwSnny867w`>XSYam2#x#OSv=9>ZuUYeix2}2y+If&sF6t#*v#1;ERtf&tk&N{Q_IqZb1U(>!B5|+w(C&lkna4-G9%VwOG8R?t5MBFo-Jvs7TE=|gyIYmbn z!tXbk+Jz8OQ*)M5ImM0@z?3ujigQ7|^cxUo{_{d-1$RLAWKb}$&8v(+X7dqp>iAE6 zM_&Esj5epCvid4~;Z==#y4~nZ<@_6rYnxC)nQ@Ld%4z~vt zbvQLlPNu;-bl~K$Kr|j!H)@Q)4x=|_c!oWN{ha0}g`bVq{gV0Ir~Q#N&t@ZVLs*`# z*vh+8+?Wa%{B#e{g%%NocJM%or2S>HGUMcbDvxMS)boQsc%~E@n=IJqs@{5VRI-qAYby5#DT?f>_=kW*xhTuE}@3)Rm z_~NZ8@{Cc-8(r@bAi9(!8%!)uy=9z9FB#~ag3uQ0`sxqzWR0eZoI zSJQv|DlZrCYt~&tZOlU_84MTicN#QVio!WsuQCO8e8eGKQrY$RY4aZ%TzU#$fOA%d zXL_gqSj|t%C=pZguu^yB)2JiPR+<=x-B(x29n zlFAqgzmNb|1=)Bm)7(U9#6EStF+;%o#uCBLzrqRLMBXQjiHKVEDUDV>NKdgg(3!Eg zVj^u@=h$=gxmu$8K(2vbEDF=G%V0C-!R6P;QpXpiRSqNznJUm}Q5cBPH0@Vru)1Av z*8kHFTm8Q*Tm^KtVqw5H;rEpgBinP|Ah(^nR__UV%nPj%if>Gv!UgDKBSU~wJ`-P* z&Wy?DP@aM@3tv7bTq}R%FQuGDy%7)xK=N>0&=D*s*2 z#E~gDpVBNB z@boG_!$}^KG*a(MAd)jfbTwzP+v*6uU;Rqeqzbj1qZ1`3B?`>$)lIV)OH&$7zK?^|e?AFBPnR-TQ4y6NsR|Z1uPzvE*)Uh1 zHl5LzpqgG`W0Rw5kmy!<92SoVv6Xu>!T~PP_5bToI5`O;ma@KkLFMBbz2UV+dKDX$C(aUgOAj848QR^a1>l+rZmi`tNxa&+@sdr~ zGOA-;^?mUUFhP05-1!)}i@&g(N7YAKWYa^6{q8jto8jU;iE^j1;c9Pw=7S3F^)|h= zSH2Q{6BQi5^nT$%)=;KF>B0^@B)~z=#z#62u7Nq0zT*y4|9X(9loof<_w*p{Z~ovw zNFxoC_ucl2OUEs-PyLUx-lx~*tb8E+TXOktU-+%^Y^%H@(PKEJOylH$zf-rT!dSVA(Q)V^*WSo?JXlDcj z1WW<~^Ra+ILrLMDN%O>|kXkWG<5|vZXBQv$(A=l}TbSDWA3I;dW!llkgNRYU;4hC& z!ET^01H}nY92n4l9X6PpuKJ`eWlUTehU`H~GWt?u&V8ixoHDGO$M~|BCxP-{Bwckn z#8Niueys_Asy;u;NsV*YgDe=I(!)zdErmRS4Z)%FCFxQpo+}C7f}Q13#*;|6CcTa`OEDmqPEA+x>-Y%xV(HL!>G?P4nrM|HqbEc3u!J;^-gN~q~ z#7sC7OJR0v`*Hzr+f&075dH|3pDEX{Y{8y3zh%c zE%25IH=Qk7u~6UI=H-2tM8E$!^)b4mQM+z&ndysEzU7>})A0YWc3xpkZc&&{LJ~p< zkOT;!X+rOWrZkljdO*5#L+?lv!FEEG-b+A4x^$@uh|+tJE?uMx>QO0*b;6l>X69lp zXJ6%d=iTdHd+qgo%ce!~>DN0=<(phhAh{Pmnty4(HJDg4{pIA-DJsEo-+<-h^62q> znw71a4~3u)b9RhTKId*g@7WiY3K1%^CKqz;1oaUk5(w%>Mf{{UY9_8i$Hm%rWEbF@{ney8h zpjG@Caz5Ac(Z0=V{)CCWug1a3f+msa)-G@jt9o!u%Gk&D*lcTK3z%`vjxn(BdXOS& z(Zs;UK+8j3D%rSy-)-x+iavsBY*ak8P`piY5N-_4nPo$tM1W=(^Q}vJtSlQF?Aez( zeJ_RtX6e=xj<=L0;N5hgw=Cn)=5ry{*<9r{+e>y6rkt1`#2+={l20Z5j9Tb2-&DTM z$5;Naa;@u>jNWr;GylhtD(Za2#J$RKB&3Ad%ppsJRdA>1iOtH3w7o3e!T8(Wbu%`( zai)rPv;KbLiNq_SaRC*)?1=bdYhKH4g7p5FRqIUyzj zDv5d>kKn!<@Qy&G*zC#HYo@=F*=)wcMC88*naRqNsTrRv*^rpB)afo6Vs8L%3&7X1 z!;~xV3_0b?hZA>8*O+*@U#wz7-ac!@b5%6*0C$YVXGm zh{Cd2@`zkWG9UJVM2mMmsKL4HG!f6CP1wQISnt)PpcHQSdD}l$66gJ!rL}(1PwEfx zz33C}K@e}wtK?G6#^-g?2GX(iPjc2uODio4>~;Sb2%g@%Kj9ixJh$f*WGTw#x^m?; zEe~1#p}8_y3_YJ)ig7ksQxryB{ znv*-si)1hSOVTR`<<({S*=khZgB(To%3GFlH16G7Oy>8v%t}YavQ_1kh`UW699Ay; zR-ExE)V($@_E+T2A;ZRQK#B28U!~2F1K%t4fnG@kHYPHY9IzJ?+Sm0H4tIAh0j3eU zBs2aiXnLt0PRA1040+*o0bIQ(2*j6{_ z9%;ef!U{a*y6{I_-AhtIyeWC38B?e0?dmXFr>VVC6h|E!yPfyUk}!Ig$1~ATg0=;} zn+DF^<%lV=fW3R`RC_b*rtRx7m-jkcu}7t2uT|0>s}Q{dTMDK<0}Zdy4~}29@QO6Y zY!g--`4RlFp#i5BKz`G#th<#Yb{Ix={;8^S(KhVg(j<=vipQP30H@h&yJ_<>>QJFW z`KJcwEI<5|CgtAawc23UcYo|UlqysH1xcTrw~5ho=4XQ_fFjH~;B4?@E`S7}h9R6C zl*Ii|RP&G*VPR#n!Oo^>;M)V#bq^`HNHgm4!0$S;tW<5c~rF^8ym#KdNffVpmjIv|N5p{AmXTMyx^3+j;H>mt1KcUTuQ$o%L%M z1X8#7cp{6IzeMx6`%S9~9fu0$=Nu8>7T_EU8}@n+m@2};6bWOKFNeX1Wz8D&MA!N5 z>3d^09p^y{uJwn!q4{9~E1y_jtGqgFIZ_a}c>L&1Y= zDHOEH^qQFw@%Ew7%YUv)ckKUd`nO+oAhhR1#nU9mBOqaLvdB&P zYkCCG3yESBfMRUS1=D3_f=hwuqu63~yTT*2)SP5W0}EvyCo-{c8dIZwsZrnwvS5ER zV9q0yCFODWgBZ#=@-|sJh)(vxS2=Dch0X56-s@^|QF7<4H|Fz5g^%cO_ z0oIxdMf*bK1Wcj5kq=O84A>2kEi76w&Cx14O=ehWQ_g^}!kjs;q#0*-IRe1r3bvne zqNMYmmcHu{LGrz=_>wpjw5bDNl2wzU2p(p$|8nBN*;(-uS=HRtXZeg;e5~J} zjPllp&)1yG*q39eiu`&~d!hY9`NmP8#j>=|#NpAz;@xM;^#)U!rV1B^x_CHSk`Ff@ zR&A@MiFBZD>)dP`l+d$>0biC=lgzY5D~gf*?P6kjUTRQ>yEW{SAERPs=O)U+9FM71 zzYnfl&j}p6O6+;N8s_ZIz|6>K5ZNtqq$!>fz0OHkeY+r4YF|;!I3=j-3LqPCZ8^9M zdd3!WFnYXeu*7b6(C;G*%Jq~&rN*BCeH0nFQh%GumhCFI&X5baT>UCf z!|l9l%A5U@;2-MpLv@y-xh{^z!Gg=6;6n!^d+al-DUqOll>B{t3y8@EiIYSuUXmXS z(8khRU({d#8d)Xe24SPt>x-bG6KP7u?>3e~r8cmm%}X-a-!uK+l1%H{9Bb24f3~W` zG1}DJS!$3z_U@f?UOVkuOS`Ch`Nd1ePZ-c3dq>QpOTgA*HOIg}=#n67u8=T$$z79G z)UZnSNrr>v5@XVAOP+5wleKJ*&tB!f+FQ)Mppex!OZOo+u6g6#65*~%eC!QVd@t37 zrPiHBOY?M<%i>qL-I8KMnJu`HM3ie@eO5~PmUX(&^dWy*wT$w`^e3|G>lRX}Zw7lt za~}ciipV9Xl{@?556oG<{IcPJ-5k|?8h`F zZG|NhK4ErJ=#*2QNt%41pBvxFaPV20^v3nUB2|p}Ri6267*_r7X!n15oDSl<;0wz7 zhXWU)fLMQ1wTtrSBd6AT0I?eC8jdV>K7%%(nVwR z61WUkDj?|5Nr6=qKR`U6ri6~QkbwzIA^?%P8G!;cfmdN)pDN>pq{8Lt)fPpPDW|yv zNkcz#J$7GoK*ai)Qyz9e#?7;Q$rl1~`DF-^|5SO%{rlGEj}~Ve0*hh@N|5J+lfug< zc1Z|P6v+=i{?GdfGjoIok4CXcT=Y~NIWC+M@SspMd24Sd)(J}_`|}~#`|$W^N5^n- zLwHYkM1*y0R|VEn00sggjp587#?PnE&HoM0cL%&k_P~kHf|?YkTm<;EZ*!n87mn74 zqtu@#+BX|+@APw-CDOrF;Fv&s)APmAxnU9_n_JF7owPpss=Pn_(AKkHj7%dcyy zZYJ5@;tXHNZD;*Z9HC^((-N{CA%wH`yVUt@_26yb!x_3B1|}p0Pbp-j;=>!#kS@8E z;f|4o^i+n}fU1ByEIgq&)-m=7a9=Q{2VilNii$psz{(;iUKUse;Fm~679naZh{W2> z)(r!h6=K0|;G%p`{F>C)2Z4jF637I`y5xbd&s+voWF+rqw`5!r1e~5i$K+7c3_@i} zG_yYGEfTlZ$Fyt|nQXr&on(SwP;jiH2@a*^G(JQqoJ`Y{mXSZy#^Kc;NI~TbMHrFc zQbFsJ^XK3J&V;Qkzw<@UZ-o5`9(#)`QgWzKur!DUSJVjzxbijH=H#LiGBM45h0SWh zr-2+sFLNZe2u&`AKK5s-eZt!v+X$)f9Q(^>$o)0S$Cv|XE(caob@GXiRa|{!n|Dgv z%XFs>hRfsDZ3mwjW?#|rHOwM@+`m6=DeX5nDZ9AcUSAtX?zBw1uAtiM!V57Lsqo6{DkAwu^1A?(TYUi|*W6BvQy?BOr z=L9*82F9Sls6{5X81vS>h~MR3ihW$@UO}xXInELS6^VN@a!=_E@_q`lQN;IfR-#I= zJe}FC1Y<=BLUi10nWTRgKp(Qg&n&6wHIcu-Vk#@s|>EEYniE{A$UhtyQZZTUlF)-TAXqu*20!lH`A zRq~t+_Mc%C1)N6S`KPW2YQ5XOXoZvrjNOsqgR&72hm#5fN6=?ZbgW34M|Fmn;Qjnb zkBw$&?Fu|lH?FH*M2#;kq9 zSk)uE7X?lNi6#t?;FD}SKAnqt)`u^nnxPlV=afX+}}8+6iH;=qi0+AHnbcF798LX0y)=KNX=`e+>t{qTqB72G*#OFT%-L zl9z(t|B$jdu>5s8()F$J-Sj(H1x0lP-8H?!H$Byoqy#(2*!p3=r* z>2KM?R9+`X@)qxnU;EW3H}DT?=>o58p4-Licd{qKqj}GeOO{$;ZYUTnG1TN#CrFK0`wb2W>H4>e!?!ciK<= z0ZXk2Z6PHBFh{e8((C9uiy-rmjUyZ+f|$Znvj_Sd5&CeI5!e{V@WDIM_xm*mh30gI~V6`tBjKW-9~lDINk#i81F&0$s6{Ap)F{r>dUPgWXf zjEtiFGUYFvEiY-T7?&1XCmw1Jzfdj;-LlBtxZol-($^Kw566EtMW;Ed##xUs^Zhidc|`woJGj;8OiD6xTSO&?!)qc`*NLWSOc6IoQF1b95+&>#)YA zdBBRs8uLVpdAhYq_}KzM-5f`3Tp~!UL}i|c9cxww-Wkw~#1Rf=8$m?NlouiIzTfv# zLYNw_JbCarFV@5+StW~~dHej@NdJ2+LA%Co-PJJ}lM!5TYGE>TT}~%gD`&e}e|T`> z_wl`^oRdJp^oE_s0%%6l(4ctEqV9Kk$(_G6F0@lEcB!-X2v;1%rM7~-3E@bBRPn=E}3FH^?MLYSrY^*qL5!NLMDof z0sK%l>Ab*_#OwNP!puk*xj4 zEc!Bo{C0%sD@zVZC3`lpYjrch*4}0A*ExZblbBBPVS{N-&^%hCsKz?|%0B$4kLTKN zYu@innJqi@hq5O<-!4=lCZ&`7VD$kJy{$`n9 z4=c1sy%6A;*ln^2OeHyp$zEL`BY4geyn=_-&A`A!BU_QnU{DvBm06HU86+WgLrm9n zT)!y$x}`&IQB?a7gJKeebE;z0ln8_XU(!V~u1K{7q7r+RAHE-5P6bE zba|5LSW!Zn{!Pr`bg7~A`Xd`m0Q{*NBYse5VdM)7{d;|`UZKQb%$qDf^5VBAYWySqQV#w!2n_x z4886+AG_^k<5FD!kuVLDo;rY0gOQ4ypk|L07V!-&^v%662+Fibos`y}(7kH;a=@)nZ&~%n(ZtfH z*2`-Z!>c3J)=SRRW2d2?c^^()pWSZyFUmD*-=%eZomh2vjo+^w8Fo9W;pMsHzFxET z=#u>V-28_$we`<)%WhEv#Pqhw2Hhw=wFti~ueUB=$Ft1}!l34m1gb==u=Ce|;Z3x% zrqlZ`Hz7r1)S(}f@%ck|^cdC-$e~Q07jbo%d1^Pl;Gx##frtbmC;RV0qK~?2Kx0JS zzSY#LQ8-zCa1cArNE{k4M*2o$aE~uf*O|OGHsn+E9Q550mJ&h?~)`Ww>E( zdw)4lCa5yb?`~fwD$NZs=xLoLa}N>l!K1EXkeVMIY|?+%&ds9F(ei zp7L&`+++zb1g->!t5fQ)Q`;2VVnbD^A`zbPCfG+%=7xCxi&$=OS_Czj2>`>g0C9Ze zNqXG6oF@?nQ!wa6pS!ycH)j{QBQ%}NW%~WzJBbRVi<7~0f}r_leR$!6V8e~$R`$G^ zyx~pK@bSIXoN{cSnU*w0!&R872uXei1v8`Q=+$MQ7-N3ga8xR7aQD~Ycd>I)HmA9{ z+3&wlrKRhy`Tr3v4|H=sXKQmJAS{>u;?ko1BJW3^5bx!;ymrg~G~9o=d;7ih69;$M zCOJ73Z_`S1ZEZ;w!FQHY=<1UMhvTy-x2^@o7_-rkOO(&O<1bbDJK1QNXeJv5k3O;0 zu$cEuPgfC@IA4%6F&5X8`D6#$UpDyhAF1+DxrYWmHGn;^={Z0zIQ6bR zaeIKldYgqs(Tl($G8$rTDC0D?ZK225{2Av6a0bXz_0iMY%-e?%k409B-rm}q7YmrFE~`=?W3^3!+hG2?_jRTd7wjBpSbO+$(vII8~#S-w>AP znk2r%-uch=H>W2L=o2l5bMw!T`+l|WY~!dM6GN{ABevsl2v+U;Do;rX%;$#ubK}}P zf1s?(wmR*+rul| zpNtH-UoQj6FutQF6Tv3?*@YgEZT{;elq3gZLa{pJua_8Wnv-V)Xy?RT-Wg`2>Vi1X7pxT$~Wo1 zXJ%F30`_g*?9deR2A$mg1q&G>uE?#HMs3HFPjA&&rYoT&>+j%RRy=j4z)U}H6(=((6gto464J5;RN^v z5d>HSgm$4Bbr7{O$#5TyU`48;m5FGkDszvoAvJdg!TDBb5I_VF$BZ{ccqvrlQIM`K zP931|i3DtC0Y8HQ*&qP*7FiVXDi|+=Q^)fLuUKZk%7x6vih~IwOLOsz>B1Z50(e>z zNSUeu1O6*-+gM5I!!~_xR?V9(f+gXoB6Ua4o|CMCtN+U(WNhMb$NjXKXu(ZwlfPMx zDwaMsE!WMhY;64Bp|@Qk4!6b9(b=YfP5p=-$FYJdkK?(kb-Y>jhF2s?0)A+kwU5jl zwb*vjdf6#b>|(pbs7-DUyq1LQ^%*X_h8*?om>N{%Uo09B0e4SlAR%SD1fa@AY9cH$ zk&I`^$*8bF3+twJhP%FAj;pyI^Oads;JJH(iO18P#bOG!DkMCf6DgR7QN>{_00n}F zez$CIR;?`8C{KH=oUAT}mNET`E>o;wZw}1z%G5A9SNzI8NooC_gJK|{E#w1(x=`lb z?Ms(}25I&{_4%GnMiynL1D`K!#uWybIU&&oTov9b+he5-Z@LA!CQopuLze#65pa*TZ+&F`S-Z@>sGR#MdLn2as!#A?gRy zt6C91!Ra88hQ>0hopxf1JP$qN;1ulQm!`6;h#^Och>7tf+yeXtCn^T{Jxv8>MA$}% zA)}B6Of((1JTo*;blNFB&m3>uOEXy4X-vPn&`Nh?>{U*4TEw&|%frv%$2k znbD5!e`_&gsbZ=8@~iVPL40Xa(~4gLeHRBxCKn!wF53onQpekaFV2j5hy7*DJnyQD z_)^V9uwh;gwNaKggZZ!1S6|`hf$`?Cr z795N)4zJ%F$k~K}P_kfdg3CyKUm*)nX3tRh&=NNoX~DMy(997X3KIOlMDy&?yp)$I z`tVuh^zQ^1xTPWsj z)TSP6NB8>6!xr5=L>>Kq-PuOl9$Js=R)`iJmyE6wm5201MCD@(u@56b-Ip+W;z8&C z=RW+gpXbi#b3vNqikds78S-VQhLZPQj6I6U`N-JY>W35d+|7G5{a+=W$tx7+ucU%6 zud$B7$_c9Tcahz?5}+ekfz?RaEDt+yQDQyz-gk-hXnwH_>j1Qnt^mDoTND?1 zCW=skOw*hV1_ZdTo~q8krzoU z@0E4@u}a1w-2-C*gf0k@4nyQI0Rbcz);4|U4;i7b5MaQ$2R48t4IVC$iAtB(66reX zO8NI|ZNmIa6YH*~=Y-GNsJoU8(!Jw;ms|pzjp}Y`&b)Wy?Ej}BH-6c+JrgufqABBO zOL*JQQo+reDWaMN~^aGF``HiI5@;oOUksbH31V{TM}6jPJlt2B^gi)Qxv!Wu0O_z6$}iA#I)&Jw((@u|5W*x z2%5DyG>vWj`r!EVjy35SPvo}IZvn=N=4+{vObz=MdOnW++z#aDWd8W{K6HQg#Ha^UzM< zmL@QHESByZFNO`~+z%izG7`4KffU=MDONz#7SrX%nEnV(tV|((N6nxjGMu8;rKVv} z713WO)p!mLAmO{1JQa*_UkSk~gdWQF1`uspf)h{_5olu2kN6@YdS_|m)G~AGNlv4s zg+RbN*%L@++iL2o#3e6_E36S^U*Eejg(3QG+fy>fOa$8SLBfnu`f>Qp3d|MxRcPvj zs7-yc$bVZ`t{jx_8>f9`gU6mNPyYSiI<yGEXw3-f0!9^iJ|4)8S)WW5Dui-HX>?I2MqCgc1T&JYH&IVi zx7$nvqQN7Fyv!Y}O~)ytl`iom3hQOTdE6&yq?w_bIYI~Eme!n)iII?1Eh+BC67*`; zFx$%Z$1A<&f|q!owa$|vATLI(@@P=bkrCH8V`TW}-j(s!a z&Q`T2p~deZX>7uF&7o!Jza*H{hoRNbsVfVvv)R3ZJCZ!DAxmgt|A~|B&DzJcR)tj` z+H1Do#6J;|7c1yVE6KTv;Z^@oV>ENMRK@78`SD(Ik4yFFC1I`va0~AZyG`0EHwXd>#iW)9JsA`HV{p>K!7G?M zRgaS7)Q=ZXoFb^;m@Rf4T_?zdC6IwFmln|5#GJa`YZ92-Vwt_`T6Xmfr8wxZ!$j-M z^0>|1AJ3}hg`XR0ce4QTl+t`3a%VD{7iY@)L)-uO@tIlh!{aMEZnQ>-pr_&-k9IFr zue4`XtOa+%H@^SZNb*&GX6Njx|Gjv2s_oR@*g{Sy+H0SWJ4bu4Sj0G#U~}q2zKQ&C zBY`7xGDAY5!smOu%a6u?B+bdU%btnMp5M`8KdYl#KzRUFU|kf*x?J5Cs|&zWtdLj} zCYi=o-2~ts3_^R~nk55v6M+##1Q!x5jsm4)Bv2HO^B_uiMR|A^ygaT>d6o)!0^})* zjl1W*Ijz+%UcmvNrVQE5zz{%U)>Fd;ne!WO-UL;bx%wfBddx!d=ZAqs8ubPXUf$!+ zpN@r@2+Ll;g>x-$?MtG!twIwr5>5fH4R%W&R=?f-FZ=uW5>b`jo7Rd@5yis|nfvh- z8|d@A1sU<~>k9>^u#Q9RoQ|!xjFBB3SFlPn&Mx=xn6>PleAM7*nT^4p6tzM4W6N7|$*b}sMwq_S_f#fmB}>V}w-b??g> z$!=`h+?s_|X;cF!L*0{@Bvu`senq-OP=szb*`6t@m(rb&Br&Na_QFKRn7WR1QHj8C zpKieUG0tv@ZZKkuPK~V_z`#HuNCC*}&IA-N{S6ip5m6?waVTDl=IwiHc{<=$=2xm> z3AH>qP0LL+r$aGH@LY)Dmx)vBlF>WrQy+3PoXqZ@_qz4OhRGM`9mhYrRfuNNWy2hqvm7;ndBf{V1h8qXY>aw1gsRkzyi}K?V`ZJ z05ljd1HpL^0%$hObhym!RIqM%DS-A66)Hi;Kmh>Ag|HZa*8^#R1oBv7Fjz&QqOr}X zPQNX{X#@-b>M_G&2TaQA%enzVlDPcB&Ffoy4rc$NlT{~_2crA(N-=}8b}uX2w?u~u z6RS84iZVw(2oMz9L@3#fuPi}8Ek1HC8aw<*hd1+DxJ7~5&`N9qf40H(_Lk3yL!uJn zHZ3{~xl&pPS&@&kif?IpJn6fDB+JQ|;X5%ss7!BrMVJ0ZkOeQ8Yf9k}ATL0qBAe z&YxpWzn37fvjB!snGtm1?zL8vN(eh4p5cePyfGT~9G*P|F%@q{*-W35J{OH|OOTi| z1*%o#vv2KGRi|(3EQ$-p@OY24HFUz?ldqSPyXQ272%uUJ1<@gLWGnb5ZCo!6z1iGR zuYQe#En=~+?E+QrOX7;&XjK|du6Y|_^#H8o(SQ35cu8zpI3|=LK?t^X6b+OgVHNY- zNWYM2&5e?GxYhahw=N|kQ`p+lB5$~#iRNwOW_Ux$f)84dS{bN))iCP}xdW|P3>kbd zQ+h`%*S!0r*a35-!`N@{|3TC~KCV$D2)yu6fOw$onR=;zNjK)f)(B4bF|^7+L7HZ| zPfxw~#3Y+jo@zuHrr@q%^JCi*7i_5PKmu6|D+!s3_#A@u1x`_5tXK>{lv1cn<)frK zl<$GTV{kR32Q!3XM*xih)F2?p0R3eW+W7&7=%kgMrZ_H$%9@qHffKVLugF2xL4~mz zQNRo}5%Nb#R|V+tuhdIdOEh!Zlf^ICqXpG|A|lM$Yl}>fL*-uSy2zPgT#lEW@PU(g z!h~2$am~g>Oyl;5n;VvRlj0fNZ+5BEGdq8%q+7BiY5M9&ePn&+n@xCGgzZ*YR9wVP z+?F25;9P00S*pIrux;}KE#aLQ^5u${*0x%G$RX&;$)J;EbcWntqmHv_N~XWSp|QUS zA=8E>4V0o$*7I_B6IK(oMh;Fp)41Gh;tQKdc^h%mlE7MZ+&ftp8G%xf(hJQlM*^SC zv+^!71DZho280kMejZOdn*TH%Y7$OxNAaVe?u3142GBS_CQX^u+W5Jgkl-PzP*H|U zV3QZ9KrjZS;qWq6n)P?&)SI|8Wi#rx%%B%!xA{|*5fnx|SC32!TW))JyAaQzNyg*c z_0wEAp8BwsY|bIaOkpagNk%FbFl04ZNaT?M&`bA{KV6r?=%UHUYNl3k&T-~n}K^RXI(j$&Yaf_o*9u4yvMB-C##LwR*OHU{32o?jO zlC4^(ct8XUJs=2>0cr?10Ur2xAk*3?|gpF5BMVbO@ij1zvGr|3r z0ZXhOyB$S?`NE`1AEx`|%J#4huveZ`IouFq6TAIb?yvsG3$uaH+)hof8F$S~3)EW{ zyPH|rx(zo82j|S&4pd9tf2_MzpjvC$yo83B(5mZ9@eI_UW9p0O({K+htS2_Efe(#M z2B=eDc39ZMqI@hLl^qZe9?C&YhT{_9Bsz*B4wrZlDET9r3X5%s=Ky1KZ5xhvxcsfi z0gpuT2zLYs4bE~HIg|q0fv+S%9jJ}Qsxp6TPDAoQ4=!9x+kJ40Ct<*`b#-5O?e1Sw)Pf%c2_BxsSoI`?Iu%Zn7BHbk6c{=9Te z-6-ZCcZG=kBogiAT$6GR0@oDkFD870Z35IJ2_mQx?%qX$5eSdVk~vS8p^^HH;0-(k zk(B}Q>M?3a0L4fwKzNvyR&wqhZY&B-eU}R7ssD`Yeh)6p5mV;p6&HW5BXYxD>4 z{MGU)@7{DqCAWLy!Iv1(`@Mtk5eBz_hejIfWzq7nD?F=HaRViODbjE2zM9%;1f|Rn zI!6(KZlsa*AV0{|^B%3Mf`_k@#eo|69ZkeITbj1P>>k)r=nYfP00!wImJ3{`=c!kmUGW^->}=}kU- zb|jx|8ToRCruwwUTt~18%u0EnE;8{gYeN3#dza-AMi+Ckwh+)Oc$#?{sso3U++?ujKWQq@}Un=t1Piz$RO|JAwBsj8?{p2azGW zvtbTqmaCrUZxm?6w)*-8JW_tmlvQx^8^k8auwpiWvoGBA$#pJ|_=jVuufN5WYd>pl zET5?lv3SBi?Sr$+!_`;6Rd-FdT)2~1^Fm_3^<#^F@_RKqx{*R2G7PMpL6@CP>lPr9 z>%84u3%7WfwE^q$P97TCY-D+IB0wAK26qf`go=>ildeoQZ%%T(-kwO6;A!!h*trqZG^|z z(A2!fL(W2QJ_&7`kYw^Z{_e6_LLj?M_!)9J7A_bP=w$6xb(h9vI7-V@%{W}}rFrK8 zBXj$Hw;V!do?Fz$X{*YaJJyRtWtlNAfU8+>)LT=iv}qy`d9azrdp%xJPOFL}<@c^j z)X6IaoRCF~KiFrM<|7WNmhA6e)%MC`-TlOFZXf<8;ojeryn|iSo#oCi(yi2Im84I} zr~}SlSSkHq8vb_O_kXvK?LQfcSs3nFE0m_)fHsJ2IWa-_tB`XQU(7!sS03`eaw(k+ z{qd-mJMr(eNYItC^UvOQvOOrHh!=KsF+@D(ssK<*V+s0Aibr5xKtiEAe8~|>U}6}% zH9j`aJ$3;=qQ@or-tM8t7kYrM)5Y|Cvyb6m5dGB~r-61X8ij{L8DqpBwPu6OuS(ih zkpu2K7UHrro*-f|6gF_6Jyph!t!VHpBk?s@!I&3+%9S@#t6&XD^1{cZO@np{$Q$m@ z#9{8*@{7pquD?j;l-GrlHx@U%tkWB_U%P%Y4LhF1jR&+^6pcz-_sV zhacQ834SS^Zk1)%#`eNMM@i4fyHCbGR)>yXR#f8ZW!V>cX6?TYIM4N`-Nei{pWUc) z^TJlIYc98h-hX|(csoIv#mTm8rgdeWL;uY`<~)y_M_wmDj>{8zoi<89?|iyu=k)s} zF5Sv)deg*F#`!z>U+V|^o7R#Ob%F6hOI5bX5$@;N%ie3yJVfJ~*7tuC6j@{lJp>#W z4ud`x6Vi&Q4)&LqBi0~f$Ho@a-BKEpx%_GMV+jRiXJga@d?2R2`W%xlksryZ%fO@R znU&4Jz=qJCRuf0;O(FveCtaKc7#zpWkn_@(pe4aHbL#r3DqTHB4p|ulMFSuAb;7oI z6bdv8d!l~lZM+=zSKJG|O_nSPrLafRSFBXnndvh60eg)|s+bjtIs6E$6fjI&trwtjghAucHFxBj){qr%cZO{4647er7 z4i7*Ab{G(Y+Ajw#13q+hD~|24qKDRve9>?hW3*%Jq^oF!o5^HoY~`Cx(iZ(P1+Q`XId0!Wf%gOG)8?=`1YzswMp z&jof;FI8it@E|jwu_6N2D+Yc}$Uz1%OwtpK_?pBBD+F`EMujNWfsz)9W1;yR1Sir1 z7;ZLz4l2gy){#KNV=v!@?1jp<%A0ol<}WJ#8q^LrwV4@@x>Y`UAH1BQBN}3FGZIo> z8JN;F%VREU`u&CE1qSc>@$asykFpGEUA=0hWm~*omaQqeCttf+aNVm;{_Qofxw3g* zQfG5hPPuE7W!?M>w|T`siZ&A`XUJ8k{X8K89lC(3pKjIJ|9t-U(eH1!|G1z2%Y2{v zZ|C>xqjxHAF|E{Q{l1>NV>Q|tX8NnTZF<~vKCe@gb1k^d-92pfwW!5C%Yu>BgS)v6 z$*c=rbJd|<^T*#BcD?S`{JHmhtNa0>$S`QT*+a(1^sqVlKB4QPa|HBM!H&2I*7!#7 z(`|xv2g}k66t4dwM1UG_)&yy~sX_uF5HbV*tO=n@jbVkRF+rd+@(3pomkc0^#X%|! zCldw34#PR9Fe@vjXqgMqlFY1VdV(6*PpVicI|*NQK+l1Uz~O=w%uw{gYKkQDh3UzR z*&c(j(nMVbl8{T&$M9|pw|oF{;~0R7OoCK*DSk=f&kqI0GXkPWiEMoUa?Xj0{Ft=q zl{<+;`C~beYj56t?@j??skHI%#eI{mV;CM_!2%!wkVdbVKtLj5lgd2!=D>9ss$K&Q z9B^AD-Pun>cR}`xQC#H*f6|^*ZIMj-erU%Oz>#;KN-AvqohIf}1KxT+^=_TOlpZrH znYP3fT?AYD?=3Mt;J1VYF%g9pl!=${U0)PfbQ{*SLL{I9>L~v=bVCh-a^3@gfTC}1 zn0XtLawT6i^SUNM;0o$C`Ar1CCth`&eIuy%>DLCuvC4>U!$3iiob_KCY-=y)WZ5C6 zTC;w><6J^IY72}wt!%zL#xKtb(yHhHNJ9;VC{4u=wwOT=OC^G$@{Chm zvrmWVg-IZ3tl| zEcioB_B4q=vp$?O`L5rD_)l`~YDEHh7Ud5C5yTmo{HyzqT%B*uqWHo2&g9Lx#4)vb zt9jV2Rwz40UjHAHyf|__INyEk~#u_6wX*zMNti~_A>!em@cq6N01IXcg!d2$&e*2VC@6>;_8}DZ+ z=U=$FijB0lmJe9VT1#1IQ;KTh{Kltwb(p&R<@Tdm(tu+@&$2*Sepl@@{r$%ko`1I$ z45lg}Icq={6s)5>ZSejUO8M)U`@0cI^WxHyx!C)wcfFT$x|wIQRw)NVb-m?lyDB5c)vkUfna6vp9MZ$P z;_f^j1wIb{z($8@$!GgHjz&IN3mY1{eTV0r-06hrHs}v~afqnkVUw}1f+TfCL-yEY zfKO(){V>SF^IvVL{cZi1z4}Z7EgJ-EsUer|)WSNp9?U14pZ3aQ%JZKwWj}>KlOy70 z_z3ew2Q1)%6Cet-_vC#f1>b!Z@UTzZKc42@w;*`D_eiI z7{Bz`WJdUn6xU&`=s(HZwT=de)kSBanCp3#EzHA}TMeS%^A@*Aa(}Hj?iuh1Qk=(m zD?ScC5cvG-=q3J-l&@n4{hmqOt|&TE=e2rQ%ck*neT1Ig;Fn{D!{;{MPiJm?c>L7) zLiW8!yf&9n*JXt{LchPGXY{&GvXtx#UQe{WjDEz^yIk9LTg)xt znv_FWU}f*WFI-N-AC(*p`8D1gt6pZjE&(*_>nf^gN{e%P_kf&A5S5ucmR(7g6)+<3 zFcLg4GJOTI&G9th5+#c6qU5;k8FI23Gk<8$HrSUeL1K=EOpAsb$LtAx$$G3NO6vWZ z0BXed~=q1zyuQVH}&5hE?lv|2Xe?{GzXd z_p{r|w#+5A*DOV2KM!f39;2+R?%6B`&5k?W_Eb51>1F+I_A|lJnnT&qnitm1GS_ea z9Jlwanprz|;eE-=z;fmNkK@AUpGYrSM&;XIdd%1Up2_z9uxt5R{{zik%eV<(a#s>e zz0Xm~DMEByS97vb&i5db)ez(gH^)|SR7y#gSZ{MWAL+ztq4LV>K1r49>rs}a^8#$r5D2Df2K8N;w9F|D^e>kP@kV}l;b7d&COJiM?zpdcWtgZ3>X~U z6DjP7Hz{Qi7}Dhaq!%Zhx**iV9P#j4y;aY5>qOt223746A8|9s1U^mi43Rl`uJ=JX zdg<%sqjq3?u2MF846jjcBGm;MmSQ6GS~?E^eVJ$^jAIeGEdx~N>pIbwMX*6IlM+A| zxYz78{*I02g@;~Sv?-;QX(!&V52b=v%JaKRjY{wa<^d528}ndXRDz^NCp%rGH_Uk3 zSTa6O3?c;qPBs^UuFI_J8=fIYx$^K+sM;n|1tVZ~+*BS5?C`6*^TA(S`#0%a6TSPw zY5FXGBtY~7p5&8b%TKmTqtNF$Jj@?_W<0Vd$AZE=rv1%7Z(G`2Ey-I6uYLAxIu2n@*tF2wM z)xC#@&-Xc=M^Rf?8%F>u`$$puwz;6&C6Zlj`Z^jAwt`zZol3e+Ac!6$yt{W!lSivhp)6-To3&7a9v+_-303U-US{PurSZy$sc{f znHrjI;5Jk5Y&H5$;*PGG#P6h1m4+FMd~br!nFM46wJ4Lf^|;9P#NPk%;<(ntJLDOu zV$*rCs)Brn7u9~`+&UaH!WkP4YD~jZgmNEo?1IGl%-!d5`>f7>@qJ`PMo z@ovtnWY%8Zqg9`hv_U(`+r@vkd)`C870NwTi}XdaMgg5f~HSty8J z7X%d;y)c~@F(D1a_YsLy8yVbq-399D!+XPC&7_m8=-wZYegI$~L_s%PLJHtSieUrT z1|$F{@_OU2kG4$$FR>DT41i1!ifGVFSVYN08`q9>m|a6l>p^KU&e%Z51MN|%anA^I zwa8lV-)N!R<>N`><_x`KOIZq!s5O%_*PHcN>qXXYDn9=EnwkS`81HW!-q`t|sY<+a zN5+oybmY-5lnv{9=LT4fzKCAYIweMyzki zUh@BL6y_Iy>BMl8DEI!d|Gn>bFNlsmG&jGouDJx$F0s=9RK_yp(~polpel0d!@e!_ zFsi-7EpAIti!1Eyey7yxKqX~cf2!X}YtHb5L@8}duPNLKS>yXT1Wj6$8j_l01ad+J zn0_#3xXP4EDjZFL_eHT!_^{MXzg5=IkkI6a!4neb{Gc@ejvj%Hf%WF%0iOYWXM_MP zLNZ=J$DDf7px&g0%TKw5I4@-%$*iI5;q~$AS6B9FzuFQPXL{4y_s2vU{}|jq3yn)d zjJGHFotCmHziQ_4^sT5j<>~tCL;IzQj|CqgMjxffh6sD}=$mKC#uQE+v9s*SyV7k# zB!{?n`w3vO`nuFp>42E10Uk0y@mN7RJ1aO6;DPiDOhYu%&&bJieJqT3pL%|`w{Hvn zDlAcUu!Dc1=lGA?CiZ7ZmvAZ@(V1oyUTfb%zwsw4$P*KUS>}!w?w27LV*@)B1*ahC zbH=JIU$cF;c!xJ2xmh2U%^&vsV4My5yx@Ex==q@DzewrND}D#Jon(VjERel`UMBbr zV{?FR3B&Rg%He!n(ZJPS^az0R$hY{gT@XhZ!Sa&S1<0FnyZ}lO9ZRFRpmLQtnNiOP zJdz$Ia*9IniZ7(o*up7mr7I7i=X`mDIWh%KPUA4h1WEQCFL%xEm~ z09z5PiEo_;_tQGliXzxHz%N=);SUpLZKh_%o5zk@onLAg3A(BGl6{*i{FS%kV_%xg zS==q{2>lP@1?ds^qVzLaBOC+SP?z%Z<`SnNh%)KCipm9Ku?*kcX}inW$4FmHYC|=W zg3U{J+Ost3*{$-aay&eYMaSd*0>jS|U)c*>X!lgX)Kf=~_Ub<>4s&QJ#Qs=v9%?02 z+ccPwThg^^G3uH7;M(_FiF3j?0;*;=GRht5o*aKYn>@dBl_lYHe7E#^z+nxOU^NgA z;LO#I3siE~7-^1q@*GQ{)BOwwqE6EMQng(GxmXnvM8Tr!F+-%Dqzokt>G-`uNB)As z@>+R0} zpfDu654lAvWo~gyf>Hic|AGU}Rm7>R8_sb7&lOAt5N*rjHL#9qMvRfzsd{Vy49~(B z|Im-}gW=v+(ue}sSPP5uIZ(ln3QB}Uua(e96g63@eKtw3&zhI@4sWyo?k7-a>V;yl!tx_JKIIBoufj^o@12~im7?YoEtHEv0e+D%0Ze9=_wxl>wTjqH;3R6)M-7k)X>3p@8XufAu`7A}= zA_@94J9XHAF8y@fFE&R};)d+#;%pMiAB$zwl9)u%61N7?xX&M5I}5PxoH?l;$A z@00XcPyPFAUDH#%Bv7J!B87WpMNnGEF!s?uy#S{pdJ_VU7cPoFwXuKo*g;ZV#lJ|!RyB;HhF&6;7aW?lO~tW7 z$&~h@XW_jPn;@8a6+fMYTPNuCH(Y`f`C^f%dRya=_8( zb+iW0^{X9hw^@io^Y?k1L!ITUgPTy*Gzrf}lFK#;KxpkI;m3u*Xa`~RVGfC>JAi{5 zgL?pqw!l5mMDEGrg$(iZ2t_6r=1&)BCK8+na2A8x@SM@ceL*nil}UzAKrC4B98mG~ zljBA13O0WR<5?flw3<3KlZJEn1O0vT`i85UqHssZ{kwRmhXB27QFjIkWVvP#cf0uM zI+#GzYKHXNFA$reqG4Rg1vv}55}V$+beQ3El|eSyv$*T3@l-E9cQq1(DH?Uq#EO(X z(M@w6e@ik%P54>9wRHMa79tP!!T>;adQC#Wf#cp!atUDehc#)W`3(r;J>e?95X>r= zhPVTp?FMTb+Kt;&zX^?C4VR6w8dhjK=>Yr&e(Kx+(N~gfVliT$1v_+N&jN4c!G?M| z9KZK>IRmp;AowupK}>DKos+@JuX3;)Qjy`h3xj2hh*~olQM+fZbwa&qqF$}1lT9v3 zz_so2I77btI0H?T|KadVqF>@JIrS^g9Dx|Djp`7=fxhS(w*G?uHcVFBWs9O3DAp`G zQt$Al33zyJh;<{rd+W0<*m4VD&-7{Nm!H&J-pVH<2%V9@a5+NG%AyS84jA~f5@9FLXOihuIApW=(IMlw zgqHhXWg8=?VTzJt*E}n~K_|n!YDu}M#D?fv1rsHO4<3dckT?~%sQ{-+VBJVGB|aje*_oBGonMm1%g@xtZHyK2WhB< zH92)0#C#s~o9SpQ9oY3UXm;&kJv6z_y2S}{{dS#@;h&C>u%PBH8Re7cE1nOgR%WgK zCg>G~ij;r4$6FA8zj5M(;BDU~d*o6pvi#}^ihD|tjQLAv>7bc25YDK_g9Bw6PEO|W z<(4DcVitLVBX?c3EGxqh_SjL43X`beBjm{XUodn)|9NUzYAu1~Z7bF-t;YUoN#?Z1 z@%Xv(6PASPf-!>vkzI4)?QnHSgz`3@2vcZw)GI9@;P|jc0FdH_H zQXP+FsO059*j2iO;4Kmlg+}7%-pHr6At!Q@sAg*9Tl4)ZlXo;zhodx^*99tLOod)H zh`#}6OZMjZiBvViDsH$x)WL;~yyB)MO(`0$?TKm#auG}jnPoJv1 zJCtjWh4xT)LTY{lFYZL2d^Z#v&#LWg4uU>apg>5Z+xP&iQ{K?3WBG6GepD$kNs`!M zt>$~sXZmLHZ=LXEPeZZ0e(H!jP~?f2ts~^r&Z-}7)=8}TTTa5_!hYCU^bGg z-iY$9zk~~DUz(Lj@tLl+i?w7=K`FQS`DRXsStlEa>iqJHj&UW@b6AEf$$e=qq1B&& z)6)~~2G$C$=VUM*$6apsysob&hoksL&!r29MU!E3Q^&T3O+BFNSMm+pd1=*Wg0Z)J zZ%d7v-6hU<&Dqs}MgKi}-<_Iu`w|8*5f8Uj*#=T#bGRq_7`!Dy2>FtrNbhsdeun(^e-YernK;$@B=DVe~FOor38j;=Lsr z4AQ0b7JF{LxSRI;VSC4W>sR$kpZ3-N1OdZg6AXdAhRAgY66u@U06>C`ofu8Yd==(E zU^t#Kot#0hu~9_PQ$w@z-6~n3EJw(Z4X79&?QILv1Q(FB7Y@^A0BKOVtmirbsfcDF z6Y3UTKSPC6iZ_J&lcRzK6|o{PCk>Uu4hl}*iKIszvkX?!F;MZ=MWB@$R*dcs7Ay>S zJLq<9Hh!s5VOh9^q* zeXmfscBHUo9Pe@7gs}pVfn?!4D^+RrRN;AAj)|TuHg?&2boizJ zdG1!po%4}GfSBj4-RNS#VbJc*c>mUbLh34w=H6Lx4XB>n1+kpfEz8Rv1gFKrCGK;HJ&OF=d z82|9e=)$=(rpdwKUoTi+Fx8T|>iSh;&Fnt+F^w{v=~P=uwE%Gq@YJ}-3{}VL>Sj}v zvZ8*Jp_xi=R^CwT{TF#R5C6+~Z`pUB=hpA%DUB38QalSORZDXZuQ0*IYo$?QZreJ} z?kbw?Iw&i|m>z!kw`A4=Rj8L2Kx4}bEBqIt?+h^@$!X)38S-yFA7h47{!J;PF;IJ+Xc%Yo+LBeR17ZSzU zE5Qz0gj#~#7|jDBl99b`_<&py&_ti`_QOuDEu+^qy>JtV4yUTBvLKJ{dmz)e?}dAZ z7{KFX_!FuXXJVClG+%7->N?*zvI(D;w3CtVTfbRdQqkOXeCeSfAh#I{_CxDu+wF+C zOKQB1^a$^L)+Qtqa{4aIi2o&y(rK$in@n2uH;pESYhQSe$vpCt`9gTxZfacSp^nfgexg@f z9X)G_s7i&G4nXp9DaFFCp;amg96SJWMYvX`|9~wKWBB{bC%&I^Qm!q?=Y5fs>74j@ z+rm4+UfO(E2n=XnqbCu1&4JZ~4V0^pR-su`S_d3aI$aiTSdz5m{PCDUofH?vqquXO zrBv&5_*UnOH=axNVquM+6~EP=J+YTH{h(v-6W?yg-`TRc`Fk!;PJZ@iIsNDP*S7K| zCFm3HuD!N5Zgoe(#pg#qYNTY_;m{irbQ7CHZa6+2&S$XxQHj z_WpF(rByin!e=qEwqcG6LV_e|Q-{O0CY=_xFXu|o0g90om*8Ru4!6@>0LE(nD!q?B z@wjOgEP!?A&CS=0jQtGOG^6SF<0YYczIdPr+!&r#C>=#dB0VC{ljuXNCfdwRK&CqY z03Sh?1Q0?r#ye|dPLJ5^2a=xivBaN*t7WUXafj^|>Wj;?Rw=~~czsms)4THg*QSe4 zPrS=p#Xs7cS4v2%%UP0=0ts1?b%uw)V5X#_Wnpr?c2X+<>k_jtqV5;zl0HTyA2O-icjP3Cl@*8PBJ zUrg3b8Y^dWpmEiyv^n!2RM?#R-H$(0_Ti~EI_)l8eoPhOytvbAAxd$&b2v63v)GAk zWHpmQ5(Wr5py8h*AdsQ7v!pn#v`9G7aQaRhSlI(f7JjYHfqS0``30F0aY0yW(+4X_ z1P*s6qo$9=5;3?!nK^4HJG3llvi{v1(S69{~f1IA}|XLuW0X+0s`{^djq@F!Sq|B%Hc@ z_dXi0&3!5~wa1!yjh*?UAlAdVn5EkmrKJ1CKCmRsgXhM!0eUM?4N@{U^##C2tkl23 z3K>0r&PJD4ArGf=yKV@bhpXnC3SG8?I8@YLzfh9+r`mEUPxl#_ztRhqPn#?@9cOhl z-~E9R^!E^+srsBJlVRxnZ0*&-e)HddL7)5o?YmNyVUFPdzGw~qrV#mb&nj#H`wJ^*HmYv45F*XFNoa~jC*f?~qNNmZ)CjB#6Gdl{1jq}u2y*iyaR{I)mXPp`~5kM^QWDYdAeOv5M_vsZV z)fd>P7uP?bui`u?O!p6fM4!1fh+jd&iOS#I(-Y#`TDf7-peWR8u$*O~ zW@9%@d8zSz=DlUJmwkCfbrZy=h=m34&<62y+pjhaoCFB}*LVJ8_b}6~7G;@XR2A`mY z5Fbm8xh@d2YL4H(_hTeYqW7cXC}j1A>z|?CoxU}Rv0nhYHBu&+q<==?87E0y`x2a8 zY~lnU@9>RN;3Puz+M&xQGbHFx!FeoG;Faev7t*P(ln7^sM{>k6*AY8I;E{<&Qr~LU zSNT6}ICfyMMvOK|GlDO)py><3Uo)QN`e`qq;lv~=ZU^HH&O7iD;X=s5F#lQ3Gj$Z% zsDOPl;|f`?w}brlDIfb&0S6`nA0PMhIwsoBFNv3XH=NMUu2k(?xHndul z2_c$a^y|_Yp46YgukFuWKg&AbaqcTQ`^Cyvr0AD#X}JWKBsP{whT1@a1>3+g&KCnV zx|Z{#PMCtyS=1>CFfAgSueS~vPDzUjCq!uH#rCd+GZ7R3!={;`RbqqiFGSmY%cU8M z2+no%sp#60Br(=$Mgk?7;VmT3@iTVhOl7~KyE<$L#4`NurauJ$!x|joex9xyou()zHy61DCHPYtL-&HbLYiP9X zaHunUA@}pj?I5PBBy)S#nf#NeB6|DbFQwlXH*Bv*I9ywsd%bR}9;_`2b?Kd=RD;|1 zl+7yDnCq-5c5az(nsm~xzgNh-{qj`Be87ocuBCNj^9C z;Owc71M*A%meaSS{@Psl*Fq1F4*Tuc`3@)NAw0)%k%R)20;k{#fyWf!elT_xLiC6k ze|HjuqJafQ@I|dgd|(u(W>%+$kNCK0BG z65)%-`Gz#e;k5?GvE0n6DaE-<6LfT;Tevy1Z|j9oi}p3!usk+aHMuwt-%LzyFL&Iu z5?X#|JUu@~J1vtd{b_Ns3J4`4LIKm{gZcRAv^L6s=mW(}!H-xofT#)=_feH=uoXFS z#^vFFSU{C-_}&+^%)t%bg(;Q73UFGnlETcZTqX|QB4h#lD+>yubo~Pl%V0>i*ES5Eip2Hqy-Qk>z(xM{RSX~P0 zL|mF6BK(Gm6sNpYHV{Jp+Z)VwPc>Z;o#0adLZ4;`4ZjPvce@sU@h0I$2lENhvj2=~ zW_C{)aiH>;mQ!QDR+H@c-JZ7jB1sn;xv80VgS#tJsZ}|Tm4kTf(tGen$OWmq#W1Zm zW)`rHZE^X{PfSEix7zv3Dv?A}$er*qj>U^5i9A*+4iBc*lB{LJU$jVdH*{n@`jUqE ze)avOgFQiVgg}&1=Xf3Ujk1?LJNu@ScFnbnQKzQb&fB{}qZvLr3(-9{<8Q292OwyD>+C=yn_N8iF_eu_kwkTzz8vl>BJx`c3h4 zMXl43mCn(Vf|2a-7Wl%7-*Z*)bLgDbK3V+6rGxa^gRTVa7f;gls**O2kb9`MiE+^W zM(g&_ynH^2xd>&8XgG$X=;=H=4!6EIA9+Pmo~@w`<=r*x^XOaq-18fA zCuAD0aX(sHpS*f7GxfUl5>uH!$qo%i$o(?HVYE@- z?sPxnPH98C;#{d1m1JK}e#tV&vB5gy3RC{OjrnOxmo#k|?V3qX&h1TTJ}mmZ?YTsR z%mFl+2r3jz6_-lVUgbJPND^d)OPf*+`KkR<+OegqIvc0~T_*$xYYk*&TKYTbbGplK zeq~g{zc#QLaX2FFQkL8IG><efpBXN5FX zZjl>ezn`l7e1JK5O6K;8X8lUFhiLkry7MK;10VOo_@_?W&t_)wZDo1kx`@NupDUWY z-tkGHrlhg27WxvHo2>d$g1JOot|2XVo_wc&oZ8o;e$6CLF$n-9SLh~JcOpPygnsNr zlK~0GG}kD-=mEU@h{PiiV>|?@WO;&w0NY-hKJCN}U^zyi_-P<$o%B`un$r+3?cv)G zq>||iI&-WrxeqG4A(1iRh5)Vn!wn^-l9nCl`aCyvI25lbOdRZo^Wl`-DJmX(QFs?y ze%}ghzmyQx)TxXlOL{mv#H_MwyqJcgjeeqA0ap7T!68JJPl+s zj}%K(JnxnE+C|2{vZ?>0d@c~-O7xI3`x#AmBNShCn5k)174PBDZ4oY*#(G_8%S=uo z&?+JR5A`4Vvi;m z1({}IG;`vw9^)kxw~;OQCu9Ke%JB`Ka*LHl{1;JIs!QtzEXT?a8?tunc53J}owYm> zUx6H5I^;#|m!^D=@83klZ&td}R?JU2>Bz)*RJc{_DkKaQ?^5UP+sw%re&smu0lG=< z3lcOL_@W*3L-G7e*n+bdBzR&%M;Ytg+bi;#WQdz8o~k+>57C5YF$BPw@;dQq@0w!n z%Qrr@Tubt3#}dGACcvr%MS$hMcC$Lrew8G&bwatE2a`qjIu>?>oby@fUoN0+>Wc%@ zSl_YNPF!#UOE6s}S*0sx0T@?p<;TRfoH!?0lNaQ~v8MFgMY)&fuf)=?QG;9%`i)t? zn3&Aa?mno*a2)c&a7NHQPfjCU$ZU_KI~M{oYJGSadO=a#SPxgLQ9W;ANL`RBN_hAj6o;1{Q&5(}O zl*&S*EBr?#La+lQ0FZOk||HS))i7V#RR)$kIX>-8fFM05Mt17$Hf1 za1Ma?x}xrNi44}snpkSCgKZv{Yf4@x+ec)Epc^<%pUlt=&-NZ>)!H1?X@a_`$;P<%d z`kbDzQMOql>RR45nRvvY;Jv5EdpYL82?zn7?7@=o>LPS}5)r~emodlYs1|MLI}e66-( zu^ZQ1xrMU-+mL)x&3XlB zYecc{RK8j8Hzip5N8RQ1l*;_>?X8?fi2{rWFPlLMN+ChOVa2x+G85f(*mgXa7G9swM0=inK;S-1dfPA#-3gi zH@&K?lUU6}BT0TvirYUTT7m#yj@%lEn{aVNk`*F5Gz-QJ5+i}JV*{MvXygO{K6+~+uSlMz zUj(DMiVQ+^EhT;u)LVshd^Aj$MRDmM1@HY}HWo~Vr-#-R`08-7F zQ$%XEzE+<1k0@{b`4v=2wODEDVCvz_&8ai0xTu-pJ|`9tIov zIQ*&qqT+k^|Ae+p9#qfYbCzD5ELj#nxLmf0T zcBQ1eY9c=XtsoyTDO))-{1ddV_3!X#)oEy3EG))l5_BFf#FBZIN%NCfS?x7-6Wtr1 z{yURXH4u+5BQ*gaExV&{(>!!MC0@ZMcqmnNMi@(EGbmjDsu4X=E{*|4!w=m2aV)zq*^Q`d8E>PHX;p9mw&{ z{`b9^prnawR$8GzHc$*U(T(D@Ey_xWfJPTX{LXtaOXwt&Fd&JGEy++2K7dN-eFhBo zr+Gi7;6h~e=G&cmqeA#`&mHB{cb&#;`!0iCQ+qAbG;I+ULIi+zagv!9oI26K;w%5g zm>FpS|D>Z3r5(pFq)Ux2IYSiD2E>i#p>qtAKtz``m+9HT!}vu7*EDT3sUIgLiL6re zjMD6nV1fpn;UPeRSML34TGj>1dX{`KTJjTEx@dTB(>Z=!hX>GFgGZ&e+~l7g?bd^ThaqW)UVX#kd+tXO{KHuz zD}{V6IaYFhuH!>+mkEC27_W}O=@MAL1CcxPuN(d~yq&q>;%jts+puuVu*eOEi(LY|50(kN>CeOiPo!5>k*H>ZRf&JeAtdHVCC z`yY-I-g%)oq4Uzh>LJUo?>_%;!47X$zNcx`AT_;?_Uad-D3m4qoB5BL=f=gw9D89UWMEN@Nigj%IVYORBFH%-)6ttQ}&y9vkk(uQ&rZ?>C7H2LyeMZ(}f z3Z5T?XQq%0g)-8@-;?%Pd03}xNu5L%N&iw(IfozfJs`X>N?i14i$maKgv}EX zKxE^H6%X1vh>tmKESIKZ!@_O;aT-=Pmc%+C&v75^=*N7itWBb^;}c92yS@dvBnK$K zlE=juzaRlChm)%(?4|YXc2!qNzfw=L)i-}vEBOA)j5Vxd;H?aMH!TCqI+aPpMW2*3 zJ@@K7-+zP^=lofNl;(>*#rvzjbn~sA1RWvw*`NSJg&nTk<=UhyVK1N)TsRCRAGo4X z#Y-*%m4DkP)LV6UYWIm=v6-Bj?1OZLGHf(J1>HIPI+_2H` zP9ZD?{_$3SDW676Dwr#YwIAG%L%_LvLwX(H6L4+sA$0^?I9$7T0?wIC+hno84rQj; z=sz7`YQ)FN z&SgZGijNy)hwC%P!P&WJI9jEkR=p|G+acO-2PbTaXI621QV|XB=cDj*+a|djPhgog zcWr%i{l1avLv>y8x$={1@HD;s2` z6#lUP57hmq=ROFkh(L$9&ABeZHNF}53*OSnX4b=K)9|uwpT()sV&bMmxT%vfN=V{FwnKj3%-@O7n zMYrLzoLa23)(M`MX2AoE@?fbDHhXjjX=_Qr!S4lgqzcSicY<}~u8n}OG!%UCFfeyc zi)6UJxB8LmRwIb zC5;-N8dVCN{#fg-|Cj5w{+-ZkdUC(L@}nMRZB_2)_Wwm>d{GYm^T7Vn#tk{w<1acG zmwCfqMqcv0cRu@ltt=(kR%Zjr8ly4XyIKTb!NRqUD+^=QkwUgnlp?I4oeK~c2i*Hg z!2+yFKUgoISXd)6CC)>qV8}wlVL-Le8}Uvj*}7g5U&1*Y;n?rvNUvGmMkgEVfE3TfTPq zR~l|5N54ogV$`H}$=pUG{#d_F7dAdCc;~T-adm>B5;)5(UCw~Ng!r-S!m$k2?VJC% z%x(4k9C>&w^9Z>~4KT(VuuuK7B#uglVs5E5>t#0oL=~yB+w=!>h}l4HhZBlL$>vMp zQcZ1;gj2$bk1Q{#bUImk&!>0&oB{yjR;94&5QA*BkvvUy{W$(4q9%A&I}t7lv~&SZ zu!Y-%mPl$549*G==|yuzhKqF6B6@KU&arcV@f7*{X&*-d0RyG_`Hw8E zNt5{s5AWNWT^+BVzNN2FZVM4o7bNcT^PCiMVH;!pI?YAi*i7c<5z-cO%n;uW&j!ql z#v7FgOG4`=fxISKJZ^y7&J$r=Q(fnUW!8Z%tPVwtOp1h_#WesKu*2)fV zre+#i_Xn3VMQTpk+1YjRkDLl>{r#fkWf}YQ0B9cylEfmIKYb>YVSwp5eNK+Sk-nX? z6ZTPm27X|5L6p7_ZYqqaNC%yZkR-9n(%39p?*^L>qq-hag`SE|-4FjZm|7!efHL>H z-4+v=FA>!ood(wvGx9P!drUzFF6+0z9XK|_&{EVpV_R+W&2|-hWAKBgt&i zas2oV7i*GjQUO`4K!^~d>DSJY$C1=q<`pwmYl4alSJ_Sa<7ZtRukmB#(W!sKL7hI2 zz2E6+4KXgCoeO9y_J3{{xVjtNdT`mXgYde5y}tU3%#-NRuDm9{D5{I3a9?1ZCQ{%| zo7VYa|BarSXRkO>Yf)ZL>uc+!jN6azZb%*-tOrJKF(l*jA%Me{5vv)pUw6wzx7uks zFMnE1mV5qq<+AZti*#50?XmvCOFn@&e!OnT-B6X4EMMjX(E)5=6Q>9<5(?JHwt`i0 z$F88@UVUuDUWVAj&V9%kh%-_E%`IM?5g!FPEvBnYR(2k=RZmcfc(Y~$w}HT;u&E=7 zOEaRRXYP;SA=F_V;E_*jU+gbD@xUsCXIUpR)kc6$N97-TE)^(%3+aZpcTi0ev#+|AhB z6P$Ho__6L$!&tNsfhia&{d6gW^GEBR@!4vv;p!#_ZG)SkmWciVDh>@7bfV}_ zjc1-ZfesH(%k`T|YJ{s30K8~Y8V~ykdD;i}C23T6E>=E&q9se3vca-W{ZB5|^1Te+Yu(PJdY8q8~PjL=d)VWD|J#?(3nM+E^4BG+W{2Ms`F8Ia-&7Cz zAhpLY7~QONKE(e9-^PQm?b&zDs>ucWO)c)n7_Rp6a9-imjkq&k~^Apud91ru$nbbtxqzFl(Evh2k}vf zFsivPz+gzvDTmqw-p_YS$XEHR);Rt^raWP0kg<#u54-iBl~jFIPS zTAP8oXJD+rm$U&NT=3?Qx>=$xrm=oNv@)DD3UI`J!MuDlF?v-nYN$!%D{|H_3RR39 zOa~h!fC-D4{R$KbK2L;*ca+`X@lZ0@aN2911{mPnH7J{@_G`@@ZHu9mtDG4SPtUe1 zbG4FD&;05&F*y5k!g|zWcW8PRoqUSla5rAoR_4xQpVNBdPygE0?jLl%z}%D7ex_j% z==lH63#URIiMM#1F6YM>~8#{P=ds;84npPBwA_k7k0UDl{| zN$}ebezs99uKK1QDOJH0F?&y^R;sc)KWz<(Uwo(D^Ll4ETaGH*7|NCTe6VVOM}m?0 z_#-A=9=5I-OP8s%@xvG16_Als`AFaLu<771Gm&?n;<9rU`1A}&R)}=A%cqX(QR)bYJU1t#< z%BK>2NAGHaQb0z4cBOG^An=!O$?`Pos9ykK(l}QBI?>*ZoQDWk5{cyy3DFP3Ooq!G z&XPB`Mci{fLhisc5Q7HH3#y-<)cS~~7ec>uIo!xT1?x246V+&rsVyyuU7xj{X*%=e z)yZ2USF|TXB#%i1tOZo*5**WZj(sGw-|9vb+v-EmYR z2nPe0rtjVxq}rBG=((EFI#zr9**Y(L-!jI+&i1@>Eu84|(I9OY0p_g?FucNs<{k^- zi30gGnO0hUCk1>v_61=9DqJce%c={QkYwn`iU{aV=0I7VgCWh#Spio z_WQiT;Z8sT(z_w_s-$IBDGST%Od+*I7zi(fh0Ho)rL3C2n88C3_Z=Z3Vp`c#hn zOu^{VC7JV!S$e6BApqTWYJn95$Z64YH2UN)bKBbQF1J*3b(KzkI{;zlx+Nc+ z8;BU#{x3uGCl!Yx9t!yXOrHsIs3^5CaL*ez(~bM}Rg+mWYoz!5j?Il^`)S-jO6IfK zs)-AlC|8H+>CH>J@l^Kr9WO(zU@+!P9t&7OO@5tZzy_vaB^CEU%vBB1aZl4Vmy9)# z^XPqPpP8#APc$l;N2?x$+?H~9qgn3 zxk=$H_-gNC%6Q{8s4E1`{h?88!_T}g#em~}@fmUUJ`Ol}-yuHq(~aDrl>?n8oVYp@ zDHOYrRNyc9~4B-PtoUdO+3*#Q<%NlsFA*}Q?0?**78el+0ipiWYKwK_c~9z zaL-I-Q{$P!0o2R03N=yX-xkjb-r@#1YZaG}`DDwPyAfU@L(=f6SMF2kmkaO(l_TS4X;%P z$_V>={z#0iG|IULIef{G`>e8xV)z@=`-sd$M*MJXmXKoESaUpHF%8e5kyfdCL2R$- z6x`oOym=CG)lTp08#X<@$n~U>K_mBK7ybKDC1I7wY-tjkG7Yans(3WceC0H9tr2?X zLX?$HS{@y-ov*>7LCy#}zqS2OoZncQ?wZxa9|IeLW@kx;%34U&TfH4VPo$6VBsEAa z=5mOd%on_{*pphX5Ear?GmRGh_Vk6_y(dCx3%LPgGVWN^Rs;%qzj#DLVA#0{@u$RI z!Ons#$77_`u`T=|Zm>iUhP&RG~!CTXW`ZE+GFkQWdADy3^FVnz&t8)LU*gJL#4zM&tyl z%ms`v-n@8ZUpH6V<~p)yYnZ0NBkzrOi?e<*CUGWW9;^rEF-$$>^1*h4jFuMgA~)BsEqnf{!;lJTCWH`ZUjMNHl!NP0`XZ5MM0XXr*`~tA5b0+M*p2dw%Qu zQj_a4SBKlWwrKQ46Z`bOysPIcLa^Oo(p+aO2~(-QJB?K|>5LtjGtkGWRbN6g8D=hY z<$o3`K^YU?R2W&ns#4H{u?+mB|hFjtwG(sH{AKmN-pU7a<`t* zQmb$Ko9zE`l>s9(PwU3BmNuXu4sg`{xLH2%uxV6`W7MR zeR%%&-EqfwZ@f=0pMGDn$6RZ#z1Es@T7A_r7Bf31mlPRgo3h#tabuNAdeG1PiJX+x z6%Ww{!uUE|)R#?EqRY!*kNtHWeoX~;-BY(xtm3}Dx5eTwS3_PP>1}wKA$VzF1yWJRspC*Hunko#t=#iyP)x)vyH`7gJBZ|k;f zD@GhiT~4qYc&=nLGdpKRbhY3*8*NpX7|O{Qv=IAb?Kb+jc${cp-(((AAl%zlH?RI% zy;lwPB-hy_&=sR-S8J0o^RBfiK-{|_Z2ZpW$)ck^Rvz(HyKemR0Ga*Z(!s#DVK!&$ z=KysB33-eh)&%C-sa+3lVTdOrHoBlbn*MX2d`G&dpnm(Z7dUtk&LprD)5E__?dTDY zXeuDT$|-!DYV&e12{tMk4j7tS<; zTz7}yVXbIw4bKwwGJgKtq7c1RW>YqC|GaWl$?E?q5<(&$W_M<--tOXE9hkv$cGEL| zK@p*>5Byg_%5ks-oRy~ax-TooNW6~VqC+n5xCi*_^HPi+tY`~ z1C((DsiZC_ODsDuK$pbOrx2;;7hQ1dRO>{1FqeJf74Q361+GCU`ll~&JV%NWpUdlB zBo_}46-7zqRY(BA%p(e)*qL!G+yu%OH8__H1OMGHtV8_B>N-R1TLm+{9~t!Wp)8DX z_rj$_0rUJF;_x^U=r!9pCj@}uoB0BA4RuqYJgwMWZnWmKa<|;HkpY<}&YbP3?ppXM z@wXz+6z|l?{Gctj`yTb!xI_t(BDp=g})e?fOQ=l>7c9}2Lv)MgZGsCoJ%SJrbv zH0RiJY0}9c!@Xd-Da9`GMFLOcw|o$bV`ZHq>UhsQFC;r6i|=t#fo&YZnD)O|4?rsT z>6>+Lk?P`bJk2rj=*)twS=}i|=mNJKcwIvg5!M~7qR#dm#@9RUCKHv~zSfg{b@zjL zQ-M>{R$z;-w#E8=M+qm72E<2P>NHeWpzN!hY<#uLG?$$;{pvvOaOx%8FqoGP`>-X4 zNK<~YfS0c>Rl!l!41|2G7{c26Z;mW3mSP{-$|w7u1JikkgMbGs<$bKs*aoA>*)^}w zE?(z@)Q+{>r12J!W~FPa2HlPP6Yf(>?}SAo+q`@vfzERn`HE_@vmru3C>*0RxlPB+WcoRJ==m(_TIfz7)zp(DGN7`bP)5$-u}+#0ud zJHB%P`^2}4P3U4Th2^J7=_$%;=%ZMiG=)%trVUd&Q=%O~7KtU|?80KQT*Bf-nM`_7 zF&ht}+x8ZnQjBig6=~5!QeRJ*W(q?~g+=~C?hnC}4|RBUv6^#xMXlX97ju}nvNAUK zn7OCIhZpG-adnke#WvplgFkW6aDmkWuvxB_0q=&kjvw@n7S2cD9){yR5=Un7&kZ<)L>bcjX*U`$UC> zK~zbqh`iy^PrXyi%TsbLze0$(g^9dyjj@r+fcQ1A6a^ynW(p7FAgpvs;l*LK=3bT)GS* z4Y-I(H_IGiLmSpsXeEjLPHv9Vv07ZVtPqZ2KqjUNgZah`NZ}DC#gm5$co|l65(Qbs z5Dv%`-658O_^MjAMF>H(34jJ-FAEVS%X7~m=q0e>?z^%2v$=7>e)aWY~+-S)Wk=4 z)dau}feHW_<7rTnY7p2Edl@I>m!KBd{yBPA>Lf7L4I$$7;o^8C)URz1GwIuxnmv!^ z5|2a0^CWYA__nMwkzMXxm`pdBCQ>sfOyJ`Xg!phv75AgO3e^@WJJf{oAoQ%OgSyeWX zl4n2`KpYeydbV|BtV!?_wsJLP$q>`;&J6TG(fF`W=8127*;wyyCVg2clo{4EgI}Da zb8R3gDUn;|+ncgYlQ{vUNX|mR6&v?z-q&QcC-WA!%Nt>v@qpqf14Tw-7Pw5g7G)@q zPVFXWh`(G$=CSUC9q;t9!x)L@tPs6wCbK0V<)7!nkE|G3)N^>EKVj(7c%3@YO}wC< zo7z!<>OqF7_x`IPF#F%6aFm$Gha6kE6!X(p1pLG(l?b`%rR&)qY1NSDU&!a>he^Dr zP!|w2J=dt~aB!<9<+!_DZRGRCRv(u-evZQz`9+fP-cP2#MEXw}SEmY{yFz&5`zo}U zXQYV|-Jw28`(>f7bisEibg4_Q0lA%dVQyXd(PbE4dGX*?{nEz^!5&&fzeWUF>$zj_46d}fhI7%=KuA{m`dW4%EhB6w=!b|N zWBk&~jLPxF}u`@F*AU+I{(>7Y0HF$^Uy`3j=LSa!Gq*eH{xC( zt%88}Eg`iq-!WO@`tZf^FXS4G)A^*`XVwy>JJLg3Sv>E1+rfmiKl&b;ikAsPwMRlf zRWLE;Rwlr=v?EuwV@m85C0RT_zB%4j)_2?dHaS~w?iQs$%Ush`)D$n)Pu#h-vZ{7z zP?{_4u2zzpO1G)Sdtyi8dEvvsXe|^RR;!f$dyC~A>z)DTUx~bXQmQD8`MK(WJGRE7 zQeYW0Qk@C_1EiRrCZoNQ5-W3iDJJesoGMDzK~76AC$D^VpnVE_v=*Ckg~OV-`jB|G;^pMzLF%L~# zz8Svs3jHX(!8*jdp~?v~0c>8B7{N*AF{zB+-YIe89N!7;vrnF3vNw8c;el(Puy+^d zs0e-StSL=h(F;#574~gz|C{An^=$rDB;3{3zPrI;{d(5zfeUoVjqiSi;yO*L#M((B zCmVOA-HHgUw5OK(PNht&{sPppEJdk(j7uCH%Y%^h>ZTdI_?(hjej?pmTZv!uw<(6r zn_XM*1LkSOa)Ks($Cm$(d*uJE zJIgW6Hy}ChD!fka>z*6$qR-xiLB|7s!D_jC+dVaBWc{-qy2J^eyIoWYOv2mwO+$hQ zxl_i-qO;iLUu*9y&)0Vz;p++(%s%P=c-o`K{mkf4x8xz5< z^Q>Bf^?EaIY#FIl#2bQ#QwmnrRiP%#0Dxd46OqU92g%~F<)Vl~+R%e^EpWt8Vp3)5 zJ0O-TJyEtn;e0(bm{vcJi`N&mJLiL8v@q`!cv8U+sk_{ubCz)Y_VA6#)XKy z2H(+6bSpI&cdAoc;b0v7%%+_mBxT(N63o!&`CvDf7sWLaRDf}-y{p4(r1l|I_vzv# zvPM3q+0M71M)ps|d?ESiBM<8xaCZ)tF52oV6_> z2V>ZghMM&hU0kSdOy{q8bz)a%9(;aYs-8b|eu8>t_^H%|lh6z|~t z816}6)7?V^zs>=Z)wUELC;Df{Zxmi@# zWkRaNv_kHx#ZCt>X2aB(+_nS6X2Swxko$@V@w5QWuo#EuphzUVs8@876RexmMj@Yw z~Ny70Y=ZDPO;C z8pZ;ih8M7H4b8F=4eUb5dQPS{?$cy>ar{Zi<#vA|x1xK*Ck0qq+`v$(XOA;-FfZH+ zF+2NbT7e7YFWW9wUj8k8hf>zM`qSSW;EWp5QmV+1yp_1i^Lj#k(SS{KLr- zTlf*)Qc-eE+}L5J(Fu;=#_Cz=DzhSn0!r{F{#?%N%EMsw9X@9I4MJw(#|9uiqG86L zCy?u#zYWV#few$9r@#UeS1ffM&g$r|`t+LXmpP2PTQ+X>W-U?GrBlnWdOmmg6Cy;| zRkZBz{&;lheso*2aDnZZzSMqxl1l@j%<@b~{*3xy{eTZT^h)?a@@V+QQOM7Wih$mB zG5(?rTc#tr!EVZ*%mEvf`^7A(P@kVX+FpdaZW2#tskHUh`6T!1U&uGhBh7iGSD(#W zzGh;imouk|f8aHI!$#7{Yb*7rQE(d4%CN*&E3xC+ zb3cc(IyTK+SYpzjtHp@(fWC4t>7MWBXyFPUEjH#Y!G!XEMW#Ql=p@bZ08xDI!JakL zj@=$XCM8|-at$LZ*qE>AyvfNTYMy&x4#&MW#SC6o5X`FAk5_TnI%TeIuUy-{c5E7N z?8lW>qzp>nPBItv`}S$CyOc0KTk*Cgsd4tU!9qG~$t73clJC*Fo;>!j%a`Uj=7oQx zm}pJVP1oB{oisV;XLGC6eLq$<*3EHbO$AAtSNu1eUe%A`Ljq=2ALO!Aw7h8$>sGy{2xm7$I)up`imBOd*;B20lTyo%5eZ(6($~}b#Ii1xS`D-T> z{b5Z`z4B4rWD|tTj5OP`?_0rq8lvg+M+pqU5JG=8F^5qiv6hfMcP}4+LOjUPZ z9Yj=v%v`f!o1(whSyb&)YXd&Vc7H?tPGGmK2D<8YuXBHANQ z+u=m;n*Vt^aYn^@9wlVqNxJ&Sc*xPFXxS*pcfNiz2nH=AOx>4Hz^&RnaIx5?!Ey`z zw+=Q`B(oNp)gV%lbR{md{_T0A-A|TMspPi( z=n4BJ|DRJOCsY^H7e-SQ4f{pcldGcX&{FoQ8ATR4W=kfPn>tfnA4f>x8dq$rE><)- zs;w-IbiZ8QNSD``@$g?AUeQ;!-EJS!X6ImKOmUCDkk6CyR=2?sli-!8`|Z(aJE_%P z$Dlm#qF~+_kmm+)r(r&??R-LL`FV$rqMDF2JwT}?Cz}_ySjEBSP)UQ-u-g08(srjB zPaO>%VScLDNEse}Dp`<0wGhG=M7YZFzDoQXtA_+69}KhteXybVh`NV(LA4mKx8Py( zUPzhn(cgB(>*68^`lc!SzuQv7h9xQ9q(;Tbu6P<=+!$zW{PZ97i=HrTWC1lLE9Yre z#@u5k5WS0-7oJ|LRE3Uv&a0GL0|LFCEHwjbwp$w~9sHcLddCtd)KptiN&H-Q{?b8- zfrd`Gw#K}J5gj=#<}yTAFtS?G;KLFI)Xr)|>q34|0C9IPKl7|S%(oF)SW20i_LQLJ z4C)OPq;yYj(Qb2zYsB&C8--5YvQb19GLBloI`VzYQCW>oQgUF76SUi%`fB_FU5RZb z0lp3{;gWAA*&NJW_rY_f3}3sV6!@4bqe$YuH-&{Rl@GfSUe>VA{3Tb{@lT-Isu3USmSGCvv3`ENsW9|z`>Yo1x-Y4yC*vi(M*UB(dX{?q)8 zXII#WRoG2$JXKmqaHeRYH%s7|y9UegVgE&~nBYXu!)1l#TKbVW-%jnoQ5f1luYv&K zCP0lt(q+boZMbv6QlUI>?Z$How+aqrU_46n6LK=LH7|mG_JKRJT++QO- zU%y;s&Y6DKBwx`Q*CT32bQ24$GOg7pPw)QWOT2IXrf&2*3Mb$AHY85E2SmO>P1V{|yO5t{4D$A5 zs;vV|n0tmXiQ9|r+t2bCPrN!Tal4TdyIXW{$4R_kEPJ72q++NT`XlsRYK06&=~^BA zcTOu+DslCsE7I9+9Cx)%Ot4Ir@X-tX7jma&iF`2p3UosU^l4{kf49Cgnr;F0AyN!3 zMV8i-?5AwrvtnrvOdh>N3n4uCC58;n1ZvUTHLLX_zx7K>!0_|(x)fuCh_LyDUGYO- zR+z^*vEfGFCSB005faBbSPp=mu<0Au?UiK_vuU{LJo4>cG=sYhxZ7$Vn9i}l^ZOYQ zsgPk1=N&;y&%RgDQHu7g_a{|I^;fcZQ~jmYL9(Aqhh1!owo!)t#YZX|mk-~}+}iN2 z|IvZFQ}hw@Sp-=Oq3H5Xiy^{^tM@KA=e*H%j+=ZhCd7G{k6P*^FHoYE9)b^YClx3f zkGXFXSe;?>DVyanvRtTOMckT-n|3F+WF~!!s;bc3{L`_*EJBQKiFe`($pW zKQ}aChIVA2{p{EjtSn>7XV1!?RNf+}sJ$AR%)w>GxpRbsgt1!tpV2z?+=8!$W zW6eUdgPird9=7~r(HRj`TjUl>I`5F1iaVvRo3>oi$vx(-tFN`r-{YjNj5R{Xrd#av zw7G~yIRsaOI~u&r3mqXwYV)tfDp@wFBU>?WS*!FbN#kr1gz1FsK5%BUzaAw_1D znM3Kqo3NWo>I+CpOcE<`J!Ne4FXWDmclo4wX4bTnf2Ds>_U6HsZn5OJEd;lIdi|R2 zrIqo)^RPO$rCKO9tiD(4NZh?SML~obs`F5C#>S?kdYp+xP$;{sL=at(46al|1L!9L z^s1&AA%ai?3Y?Tj6XoYql~UwnZQ&U*3e8QRp@@=lm|K=zCm|#Qs(Ff|CmJe!rLwaA zF}DLrM*eBxwtiQ4+lMm-o@E6q(77}-a4l@ z-DJ7hU@T|Ls$0ss>Q5J*y>>okm82#&Xe8@)_h|Cue8|x~b1B$4o9t*k&T3(s(1$?U zSV}`4+oaR(l!+8C5a~NilcwGsY&f^AM4Iw7VE;=M7DeU}%Y? zdPxfvmeyE55rzxR&Me(<*f<1;X@b~_|xB>xDj2OrRkAU z5!)?iQoE_wx8Ev%Z(YH!rcLUM#acP`44cR&Wiqq65wg$g7&crt-JAD@xALNT!}!W= zo#}N;Q>-*=nZeqWSJYAy+r(%8B&tSoqeT_^tOcWslv1Sk;4*=8DD6msAs7}YTDRv2 z1VVusf#~3POROTINHCMNm_BZvFd`dQlp{8dAVw_unb=kNZ>-+9R2~>GJ`=&WeNid? zeK}yTo(;eJK0bX{9v%nCaWcGE&Q5nYQQ{mz8921eH_+F+hB4WX>0X}EbDhFIoB{ZF z_1#(+V(8KW-{k_3O_*|4TQ3%*Bu#n@eLG)vp6wYAL)L3ttG}F}mlgB9f zr6oQ_q%5oMFlFahpkeU>(}9uFDbz?8RWQ|3Trh`wJ0+c6R7N4Nvs&N=rSG9q+_os? zv}intHDknjr|(?ak*YV65^VVwa(^tw_@IDS&<8I1rJ7u+2_OBE5;4#bz4Oe=1tUa3 zlsE%20dp`GuXZ;ibphhJcdBc(JndNbn<@Hqcc!KD>d+Gz zsxos7K9i9XK$bCNc}vt<%#QEe1uN21-jzc=@)==|rm5DgMjD}@;Qb9>mI?cJS9~x% z-uCP&<6+H)$M}NOr9xvH)Ht}P?d{A)W2&+^^JFLQ#CK?7bF~?x%J4`sJNM><5;gRG zodDmpyC$Emyiu{y@=@nSDVMsG2u-K#OVfFnxlHR*`|_(hS*0FTuq$xvSWVnE{=pjd zz2#hDuhpIA+PG-iyP|nrdDDuUKK3GgY634ZaU-vSM|E!BUO#uiNVa%AKW3XusJ5N{ z^h(xXN=oCZ-<4$Zr~B7y+8x1vA$Mdxdlswv!ZB|Hy(3fzi5K$OQH%@qHGV2QDa7wD z5RTWGQ`OeyzJk6LUQt?1>^OAag1*x)ok~UQ9(*lsdt(Wc&fV~tkZ;R3J9vh^dD55p z&dR}|#@3d8xQ*3ND!4caY@;Ml0r97IYv-V^Qx1G=AylGiGr!A`Fs_&$rmp0m)k~r| zQuOu(d7$NJF;Jn4FC#CYNQ*JI7S2-)Kmg+b~WGizCq)% z(JmAU0}2q(V3pSZ3*dPiT()rIViz1Md4fOtajXw%32b)43jh zW>hAZYdw85BfV!Q?V(!pL7SR(O!4TrvFwp4cG~;11A1LXGx+6i9ZnzjYZrd2$mUOM zo_n8D;%I>=z6GCIOf`=6FXRP?iUNQD(Ahu7LU|eWl8P#Vndw08%p1H7j86zKN0kqO zqqy+I1HN^CfBErZ7KsB41jc?)GQMNE+&Bw8W1{!JQw|} zj1+n`awu*I0G#!7Wk1gd0t1-QLy&SkAQuCjH{;n#e2Lq_+iAD$iez#v2e>GY(S=XD zI5|@yL8KUf@jz2k68=K&wkL`&`c~;Cfbm>pDVU<9say}%&(A(rB2`b0O(_T>JQ%a4@FMXE3{yuxQz^=;YDtDhibp86S#^6hb zSdyumE!)P2O$}0c2v%H~#Dv@FW8Qo8T4_b&p8weL!B5Q_XM_aJfx(~&HH%w+{=9A! zNRPY3!Y<(M?u?#o96>#}!Xz#m&2kxoM zce_n>8&7&(w^*znVsA`1V@~L>MMdmteW-P(fgwX`*HKD)NR3TzJtaTqDw4 z?>)4%y_X~&)tG0(MsD6DI~eek=wkCUa6n+KI6aPuvRTnQvV)&f#6}W;z%6oTBM*q6 z$qVLT)+a{*75+j_)$}JH8Ss7q=DLLijM3(c#JoQ^Z_YZhB(bzo*H#g$kh}`RgegAW zfr{b;Ad`^v>$yNr$awu+lxXx2mUThQkLF%OH{}<{8_?V~G?cE@7Nz|mrkwsOny9a< z%Ec0JMcg?Z454^FpJPs)N^l++8%oEN!$hD7HS$l&NwV3WPK;*@8xYUi-X8v}^50Cv z)y&PrJM(Uxn;(A#In(J9(+uA=6TBG5xyg9dE5FSKNd`Q>mIR4$$s4?!`7O=e(h5*9 zd@B2YAL^fvuUt&3Q}kFo=u_C}+|9+`7*g#m4}3%2J~Re5*$&0St4qf!(2iZfH}bR^ z-QK8UFt3}(>i=J^tvDHIphR1QeBVj^?!NEXT=@6&2 zYQ%r)a>{xqe39~B93Es#ywb60^O1VXswlcFJz5fGet%+8C4U|sH2yHIe3kRQf}a#x)*L9td6H?Xrx)`r z?}pH)pEc*Ro(SqioI1S{lgwOI_Oo=FidsDQR^K8vZQ#lE1HXkX9GW~F32R*}_+57T zc2BxYGv@8nC(zJ8$|w}&-JwR19r?3YYG7$mv7WDIguAVG_Qu1~vD4bgXG(+0pZsI` z)-OG+KsX$FwswVu*JwC3+&mer4Ofk zm@v8CoAU+=I&p~T06LEEKO+~k&dm9!mr5MKctCn#Qgl)0Gu7D!pEnSbQTT}N5`Ljk zgA)Lq={6Y(z5VEX*lM)l)L!s+2}DBuca#r&3}om{ z9p`rZS;65I)g|*b!6xCV86(kJiL0DHqoL{kxE0{Zs!QT_`#%tbA(3i8sD7LQ!pWPj>*wp~L}IdYx760GmSL_}&=iZ3%ZM9DL9xgg{qN;$_@V z4VOOWt|Fa`<$_o(8?5?Ef(&1czDK{x(SMA!!d2nw z3rcV`r+qfHptM|Ky|heyvtQHccZ(NYHTjqOk{-WLxmECIPEdN}{N?7-Il!v`)*)_? zXs)zR(2MKDgNc;U4vFz3R!ep|)4eTA=Ea|QAZtsgy^H`b1LzcZNwh5pa=<%8(r4X8Gf1yIr2UaJ!49 zlc1=-kgL@2IL@x!Hx*jAnE^Pl^D_l{<*UecS~ zZ*95RQ@a*Q!)q;8{kiQb^cjdlhuO?|p`-UXGk9Ue@jdJRdl3Eq#?1sfehn+%?KjMg z+Q?i*uwOWn3nz|nCz7gkA>@(D%_mlm4mIEm^q|_q=UH_6BgFW7j8=XBtj<3;RUIH*gpMvQGB@=kYW)0;Kz*ZCri5 znSqqwuba<9wfHUtw;epHWuk-LpAVyNPe|H^4B0U0fQuk%?5ujym95ZC8;~Re%Rl}O zsU--@rpB-B5~X-EKx8KVl11SBLvu_ zwY6QlswqX$ze1tNIeFR#r`EA$_tm1R|O-KmJ9`)TB|-Bb^NQdWV|!9u8761^^}jU?kkW!YhcLJL>& zKB?Cm7O@XgHw{h2ukEsrmtAN1lPu(W8;8F;7nP)4OxF$!;QyX8fZ>j&h zR7Oa9fME1Ga-N@N7O3k>m%dpkYgzwPa7HrTDUpLSRjF$zqkAIpDMGGm@F+|1ZhG}YRN$P~ z<;kC~gXwCQI3!0rjksWZu2we=D9!vc<2`OX2NJTfT9$tIipGx9$FPB0TtCL%HC-u8 zo-LQ8E;Y)u=ryCxwFZWH6xdPeqLc_ zN&`LVCeOc}(<~wZ;;}HXF%Au|D;_`jBH3EZ?eDF^-Oc63qG%~2cSqG&xeFNRd*P$HnPr5dg({-TuWoiyln_T z;=EV4=bUR<$jN5%M&}a2mQnyn;^788hZ%Ru6FxbxJxe->#QJ;52*;;qjiU zL^%(yVtul_X%BkRPM16k&!B^}@jdpgLzQ5Wd1Nq6x9#cI8(JNsF&hv;%$ae}}ZGmU#=W^L6? z5nzy$;W()(g( zluE&PXx@TpCFYAzgH8W4J*!ZB`niIZF-QXEchcY|Ne-r^k{@Yy%U>M6^HXQ+<${|7Vk^w076Sz@?-v&rCI>VMho|0z-koMIdJ zx1tazw)8sCKNk2a5!|(`dBTNzoL)FY1zQy(!G<0 zZ@~mMP_~J(rrwYE;=}6i7_esr7n+u+szbc=3`@Fq#R+5yDy)lg8yOQ^I4dvj34Ojn0dt}bV>)Cwz=Ens> z#rO*44aHpG{iO|KaTh=P2W1DB_599tAu}F@7jH^&@X&#!x##8y=ahlzWO|^kV{If+ z|4GP@_mg2V*KY1@@e6=sD4xWUr=l1r6KIeyBmJeJ zzrx|vWTJ-?6(;I5zyZ( znp)OP#-C-PLVr!Md3jqtbgejSmi*8E_m3Hh@65a4k^}1TCo$tc8m%_k-GftX?q2?S zVoh@{es{PklG?`|4UU?U8&;f4E4wac4){j_D{)?Vzse60z)9c)Jpkd}rG!PHi@Eh> zL*Al?=>;dhvx2GsBuO-?pMZ{}X zE|w&i%ji^r+taA!ak(VmPzCd8w*h@d@*FYlKK6uJkj>!R`cjDU8sY}6p74ULqhVAI zi}I^hm4~$)#iLc6ZMx|6U z!&xQi#`-1x>rqk2PvQcuR;auVGtX>7{{Mb={m)7?ppAU5IWAw%`kNlZz9^%+7mizO zC=(C#29&ds2q1Cns*)~T%v~>8QG(tYgyu&h0gbf`x?JvH5ecaZR+2d|K$_nOkUq?e zAgGN4D3$~e0FMWlrdJqG!xzGM?u9K#(Oke290dmO*V3~2o>uh9EkiQ?kM7P^Sv~*g zfjSj?baBqQk8h3{1Oc@H%p95Dv?LPoUxcKtKzPW(qJ@DvS4r&ySy3VRfgJ7xw-8mg;{2QvNKrOLGrB^FPq?j4 z`{XZ!{9V~F>6s8hU^{H6tfa*~~g zi-g)rNZk!!Fu96n`wO}BQt{?=+Rv2mcP4Z2ViPWFa__(EqXS2nZmAL2Dq!dubGW$& zuLtw!-jZU11D4F&3j)T&qZVSBS6^5d?508(Qz*I|TGQ{i!EF>Ki*Ecws8E4EVR5rQ z6mmGQ_?>_ICwNDx!FhH`VA}biY?+gYD&y3

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC { + toBeSimilarTo(comparedTo: string, expectedDistance: number): R; + } + } +} +expect.extend({ + toBeSimilarTo(received, comparedTo: string, expectedDistance: number) { + const message = () => + [ + `Received: ${JSON.stringify(received)}`, + `Expected: ${JSON.stringify(comparedTo)}`, + `Expected distance: ${expectedDistance}`, + `Received distance: ${actualDistance}`, + ].join('\n'); + + const actualDistance = distance(received, comparedTo); + if (actualDistance < expectedDistance) { + return { + message, + pass: true, + }; + } + + return { + message, + pass: false, + }; + }, +}); + +it(`streaming works`, async function () { + const stream = await client.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + stream: true, + }); + const chunks = []; + for await (const part of stream) { + chunks.push(part); + } + expect(chunks.map((c) => c.choices[0]?.delta.content || '').join('')).toBeSimilarTo('This is a test', 10); +}); + +it('handles formdata-node File', async function () { + const file = await fetch(url) + .then((x) => x.arrayBuffer()) + .then((x) => new FormDataFile([x], filename)); + + const params: TranscriptionCreateParams = { file, model }; + + const result = await client.audio.transcriptions.create(params); + expect(result.text).toBeSimilarTo(correctAnswer, 12); +}); + +// @ts-ignore avoid DOM lib for testing purposes +if (typeof File !== 'undefined') { + it('handles builtinFile', async function () { + const file = await fetch(url) + .then((x) => x.arrayBuffer()) + // @ts-ignore avoid DOM lib for testing purposes + .then((x) => new File([x], filename)); + + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toBeSimilarTo(correctAnswer, 12); + }); +} + +it('handles Response', async function () { + const file = await fetch(url); + + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toBeSimilarTo(correctAnswer, 12); +}); + +it('handles fs.ReadStream', async function () { + const result = await client.audio.transcriptions.create({ + file: fs.createReadStream('sample1.mp3'), + model, + }); + expect(result.text).toBeSimilarTo(correctAnswer, 12); +}); + +const fineTune = `{"prompt": "", "completion": ""}`; + +describe('toFile', () => { + it('handles form-data Blob', async function () { + const result = await client.files.create({ + file: await toFile( + new FormDataBlob([ + // @ts-ignore avoid DOM lib for testing purposes + new TextEncoder().encode(fineTune), + ]), + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + // @ts-ignore avoid DOM lib for testing purposes + if (typeof Blob !== 'undefined') { + it('handles builtin Blob', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new Blob([new TextEncoder().encode(fineTune)]), + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + } + it('handles Uint8Array', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new TextEncoder().encode(fineTune), + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles ArrayBuffer', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new TextEncoder().encode(fineTune).buffer, + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles DataView', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new DataView(new TextEncoder().encode(fineTune).buffer), + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); +}); diff --git a/ecosystem-tests/node-ts-cjs-ts4.5/tsconfig.json b/ecosystem-tests/node-ts-cjs-ts4.5/tsconfig.json new file mode 100644 index 000000000..9fcbc2e6c --- /dev/null +++ b/ecosystem-tests/node-ts-cjs-ts4.5/tsconfig.json @@ -0,0 +1,54 @@ +{ + "exclude": ["node_modules"], + + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ + /* Projects */ + "incremental": true, + + /* Language and Environment */ + "target": "ES2015", + "lib": ["ES2015"], + "jsx": "react", + + /* Modules */ + "module": "commonjs", + "rootDir": "./", + "moduleResolution": "node", + "baseUrl": "./", + "paths": { + "~/*": ["*"] + }, + "resolveJsonModule": true, + "composite": true, + + /* Emit */ + "outDir": "node_modules", + "noEmit": true, + + /* Interop Constraints */ + "isolatedModules": true, + "allowSyntheticDefaultImports": true, + /* "esModuleInterop": true, */ + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "checkJs": true, + + /* Experimental Features */ + "experimentalDecorators": true, + + /* Type Checking */ + "strict": true, + "noImplicitAny": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "strictBindCallApply": true, + "strictPropertyInitialization": true, + "noImplicitThis": true, + "alwaysStrict": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + "noPropertyAccessFromIndexSignature": true, + "skipLibCheck": false + } +} diff --git a/ecosystem-tests/node-ts-cjs/package-lock.json b/ecosystem-tests/node-ts-cjs/package-lock.json index e0976e0ec..37c945a2b 100644 --- a/ecosystem-tests/node-ts-cjs/package-lock.json +++ b/ecosystem-tests/node-ts-cjs/package-lock.json @@ -19,7 +19,7 @@ "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", "ts-jest": "^29.1.0", - "typescript": "^4.9.3" + "typescript": "4.7.4" } }, "node_modules/@ampproject/remapping": { @@ -36,47 +36,119 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", - "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", "dev": true, "dependencies": { - "@babel/highlight": "^7.22.5" + "@babel/highlight": "^7.22.13", + "chalk": "^2.4.2" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@babel/code-frame/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/code-frame/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/code-frame/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/@babel/compat-data": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", - "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz", + "integrity": "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.5.tgz", - "integrity": "sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.11.tgz", + "integrity": "sha512-lh7RJrtPdhibbxndr6/xx0w8+CVlY5FJZiaSz908Fpy+G0xkBFTvwLcKJFF4PJxVfGhVWNebikpWGnOoC71juQ==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helpers": "^7.22.5", - "@babel/parser": "^7.22.5", + "@babel/code-frame": "^7.22.10", + "@babel/generator": "^7.22.10", + "@babel/helper-compilation-targets": "^7.22.10", + "@babel/helper-module-transforms": "^7.22.9", + "@babel/helpers": "^7.22.11", + "@babel/parser": "^7.22.11", "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5", + "@babel/traverse": "^7.22.11", + "@babel/types": "^7.22.11", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" + "json5": "^2.2.3", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -93,12 +165,12 @@ "dev": true }, "node_modules/@babel/generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", - "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz", + "integrity": "sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5", + "@babel/types": "^7.22.10", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" @@ -108,22 +180,19 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", - "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz", + "integrity": "sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.22.5", + "@babel/compat-data": "^7.22.9", "@babel/helper-validator-option": "^7.22.5", - "browserslist": "^4.21.3", + "browserslist": "^4.21.9", "lru-cache": "^5.1.1", - "semver": "^6.3.0" + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-environment-visitor": { @@ -173,22 +242,22 @@ } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", - "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz", + "integrity": "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-module-imports": "^7.22.5", "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.5" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-plugin-utils": { @@ -213,9 +282,9 @@ } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "dev": true, "dependencies": { "@babel/types": "^7.22.5" @@ -252,27 +321,27 @@ } }, "node_modules/@babel/helpers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", - "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.11.tgz", + "integrity": "sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==", "dev": true, "dependencies": { "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.22.11", + "@babel/types": "^7.22.11" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", - "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz", + "integrity": "sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==", "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", - "chalk": "^2.0.0", + "chalk": "^2.4.2", "js-tokens": "^4.0.0" }, "engines": { @@ -351,9 +420,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", - "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", + "version": "7.22.14", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.14.tgz", + "integrity": "sha512-1KucTHgOvaw/LzCVrEOAyXkr9rQlp0A1HiHRYnSUE9dmb8PvPW7o5sscg+5169r54n3vGlbx6GevTE/Iw/P3AQ==", "dev": true, "bin": { "parser": "bin/babel-parser.js" @@ -554,19 +623,19 @@ } }, "node_modules/@babel/traverse": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", - "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.11.tgz", + "integrity": "sha512-mzAenteTfomcB7mfPtyi+4oe5BZ6MXxWcn4CX+h4IRJ+OOGXBrWU6jDQavkQI9Vuc5P+donFabBfFCcmWka9lQ==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.5", + "@babel/code-frame": "^7.22.10", + "@babel/generator": "^7.22.10", "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-function-name": "^7.22.5", "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.22.11", + "@babel/types": "^7.22.11", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -575,9 +644,9 @@ } }, "node_modules/@babel/types": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", - "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.11.tgz", + "integrity": "sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg==", "dev": true, "dependencies": { "@babel/helper-string-parser": "^7.22.5", @@ -620,16 +689,16 @@ } }, "node_modules/@jest/console": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", - "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.6.4.tgz", + "integrity": "sha512-wNK6gC0Ha9QeEPSkeJedQuTQqxZYnDPuDcDhVuVatRvMkL4D0VTvFVZj+Yuh6caG2aOfzkUZ36KtCmLNtR02hw==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", "slash": "^3.0.0" }, "engines": { @@ -637,37 +706,37 @@ } }, "node_modules/@jest/core": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", - "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.6.4.tgz", + "integrity": "sha512-U/vq5ccNTSVgYH7mHnodHmCffGWHJnz/E1BEWlLuK5pM4FZmGfBn/nrJGLjUsSmyx3otCeqc1T31F4y08AMDLg==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/reporters": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.6.4", + "@jest/reporters": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "ci-info": "^3.2.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.5.0", - "jest-config": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-resolve-dependencies": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "jest-watcher": "^29.5.0", + "jest-changed-files": "^29.6.3", + "jest-config": "^29.6.4", + "jest-haste-map": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-resolve-dependencies": "^29.6.4", + "jest-runner": "^29.6.4", + "jest-runtime": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", + "jest-watcher": "^29.6.4", "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", + "pretty-format": "^29.6.3", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, @@ -684,89 +753,89 @@ } }, "node_modules/@jest/environment": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", - "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.6.4.tgz", + "integrity": "sha512-sQ0SULEjA1XUTHmkBRl7A1dyITM9yb1yb3ZNKPX3KlTd6IG7mWUe3e2yfExtC2Zz1Q+mMckOLHmL/qLiuQJrBQ==", "dev": true, "dependencies": { - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/fake-timers": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.5.0" + "jest-mock": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.6.4.tgz", + "integrity": "sha512-Warhsa7d23+3X5bLbrbYvaehcgX5TLYhI03JKoedTiI8uJU4IhqYBWF7OSSgUyz4IgLpUYPkK0AehA5/fRclAA==", "dev": true, "dependencies": { - "expect": "^29.5.0", - "jest-snapshot": "^29.5.0" + "expect": "^29.6.4", + "jest-snapshot": "^29.6.4" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", - "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.6.4.tgz", + "integrity": "sha512-FEhkJhqtvBwgSpiTrocquJCdXPsyvNKcl/n7A3u7X4pVoF4bswm11c9d4AV+kfq2Gpv/mM8x7E7DsRvH+djkrg==", "dev": true, "dependencies": { - "jest-get-type": "^29.4.3" + "jest-get-type": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/fake-timers": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", - "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.6.4.tgz", + "integrity": "sha512-6UkCwzoBK60edXIIWb0/KWkuj7R7Qq91vVInOe3De6DSpaEiqjKcJw4F7XUet24Wupahj9J6PlR09JqJ5ySDHw==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@sinonjs/fake-timers": "^10.0.2", "@types/node": "*", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" + "jest-message-util": "^29.6.3", + "jest-mock": "^29.6.3", + "jest-util": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/globals": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", - "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.6.4.tgz", + "integrity": "sha512-wVIn5bdtjlChhXAzVXavcY/3PEjf4VqM174BM3eGL5kMxLiZD5CLnbmkEyA1Dwh9q8XjP6E8RwjBsY/iCWrWsA==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/types": "^29.5.0", - "jest-mock": "^29.5.0" + "@jest/environment": "^29.6.4", + "@jest/expect": "^29.6.4", + "@jest/types": "^29.6.3", + "jest-mock": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/reporters": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", - "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.6.4.tgz", + "integrity": "sha512-sxUjWxm7QdchdrD3NfWKrL8FBsortZeibSJv4XLjESOOjSUOkjQcb0ZHJwfhEGIvBvTluTzfG2yZWZhkrXJu8g==", "dev": true, "dependencies": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", + "@jest/console": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", "@types/node": "*", "chalk": "^4.0.0", "collect-v8-coverage": "^1.0.0", @@ -774,13 +843,13 @@ "glob": "^7.1.3", "graceful-fs": "^4.2.9", "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-instrument": "^6.0.0", "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", + "jest-worker": "^29.6.4", "slash": "^3.0.0", "string-length": "^4.0.1", "strip-ansi": "^6.0.0", @@ -799,24 +868,24 @@ } }, "node_modules/@jest/schemas": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", - "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dev": true, "dependencies": { - "@sinclair/typebox": "^0.25.16" + "@sinclair/typebox": "^0.27.8" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/source-map": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", - "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", "dev": true, "dependencies": { - "@jridgewell/trace-mapping": "^0.3.15", + "@jridgewell/trace-mapping": "^0.3.18", "callsites": "^3.0.0", "graceful-fs": "^4.2.9" }, @@ -825,13 +894,13 @@ } }, "node_modules/@jest/test-result": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", - "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.6.4.tgz", + "integrity": "sha512-uQ1C0AUEN90/dsyEirgMLlouROgSY+Wc/JanVVk0OiUKa5UFh7sJpMEM3aoUBAz2BRNvUJ8j3d294WFuRxSyOQ==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.6.4", + "@jest/types": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" }, @@ -840,14 +909,14 @@ } }, "node_modules/@jest/test-sequencer": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", - "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.6.4.tgz", + "integrity": "sha512-E84M6LbpcRq3fT4ckfKs9ryVanwkaIB0Ws9bw3/yP4seRLg/VaCZ/LgW0MCq5wwk4/iP/qnilD41aj2fsw2RMg==", "dev": true, "dependencies": { - "@jest/test-result": "^29.5.0", + "@jest/test-result": "^29.6.4", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", + "jest-haste-map": "^29.6.4", "slash": "^3.0.0" }, "engines": { @@ -855,22 +924,22 @@ } }, "node_modules/@jest/transform": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", - "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.6.4.tgz", + "integrity": "sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", "convert-source-map": "^2.0.0", "fast-json-stable-stringify": "^2.1.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", + "jest-haste-map": "^29.6.4", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.6.3", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", @@ -881,12 +950,12 @@ } }, "node_modules/@jest/types": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", - "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dev": true, "dependencies": { - "@jest/schemas": "^29.4.3", + "@jest/schemas": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", @@ -912,9 +981,9 @@ } }, "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", "dev": true, "engines": { "node": ">=6.0.0" @@ -936,25 +1005,19 @@ "dev": true }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", "dev": true, "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true - }, "node_modules/@sinclair/typebox": { - "version": "0.25.24", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", - "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", "dev": true }, "node_modules/@sinonjs/commons": { @@ -1050,9 +1113,9 @@ } }, "node_modules/@types/node": { - "version": "20.4.2", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.4.2.tgz", - "integrity": "sha512-Dd0BYtWgnWJKwO1jkmTrzofjK2QXXcai0dmtzvIBhcA+RsG5h8R3xlyta0kGOZRNfL9GuRtb1knmPEhQrePCEw==", + "version": "20.5.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.7.tgz", + "integrity": "sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==", "dev": true }, "node_modules/@types/node-fetch": { @@ -1065,12 +1128,6 @@ "form-data": "^3.0.0" } }, - "node_modules/@types/prettier": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", - "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", - "dev": true - }, "node_modules/@types/stack-utils": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", @@ -1169,15 +1226,15 @@ "dev": true }, "node_modules/babel-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", - "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.6.4.tgz", + "integrity": "sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==", "dev": true, "dependencies": { - "@jest/transform": "^29.5.0", + "@jest/transform": "^29.6.4", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.5.0", + "babel-preset-jest": "^29.6.3", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "slash": "^3.0.0" @@ -1205,10 +1262,26 @@ "node": ">=8" } }, + "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/babel-plugin-jest-hoist": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", - "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", "dev": true, "dependencies": { "@babel/template": "^7.3.3", @@ -1244,12 +1317,12 @@ } }, "node_modules/babel-preset-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", - "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", "dev": true, "dependencies": { - "babel-plugin-jest-hoist": "^29.5.0", + "babel-plugin-jest-hoist": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0" }, "engines": { @@ -1288,9 +1361,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.9", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", - "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "version": "4.21.10", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", + "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", "dev": true, "funding": [ { @@ -1307,9 +1380,9 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001503", - "electron-to-chromium": "^1.4.431", - "node-releases": "^2.0.12", + "caniuse-lite": "^1.0.30001517", + "electron-to-chromium": "^1.4.477", + "node-releases": "^2.0.13", "update-browserslist-db": "^1.0.11" }, "bin": { @@ -1365,9 +1438,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001508", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001508.tgz", - "integrity": "sha512-sdQZOJdmt3GJs1UMNpCCCyeuS2IEGLXnHyAo9yIO5JJDjbjoVRij4M1qep6P6gFpptD1PqIYgzM+gwJbOi92mw==", + "version": "1.0.30001524", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001524.tgz", + "integrity": "sha512-Jj917pJtYg9HSJBF95HVX3Cdr89JUyLT4IZ8SvM5aDRni95swKgYi3TgYLH5hnGfPE/U1dg6IfZ50UsIlLkwSA==", "dev": true, "funding": [ { @@ -1455,9 +1528,9 @@ } }, "node_modules/collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", "dev": true }, "node_modules/color-convert": { @@ -1534,10 +1607,18 @@ } }, "node_modules/dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", - "dev": true + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "dev": true, + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } }, "node_modules/deepmerge": { "version": "4.3.1", @@ -1567,18 +1648,18 @@ } }, "node_modules/diff-sequences": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", - "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/electron-to-chromium": { - "version": "1.4.442", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.442.tgz", - "integrity": "sha512-RkrZF//Ya+0aJq2NM3OdisNh5ZodZq1rdXOS96G8DdDgpDKqKE81yTbbQ3F/4CKm1JBPsGu1Lp/akkna2xO06Q==", + "version": "1.4.506", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.506.tgz", + "integrity": "sha512-xxGct4GPAKSRlrLBtJxJFYy74W11zX6PO9GyHgl/U+2s3Dp0ZEwAklDfNHXOWcvH7zWMpsmgbR0ggEuaYAVvHA==", "dev": true }, "node_modules/emittery": { @@ -1672,16 +1753,16 @@ } }, "node_modules/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.6.4.tgz", + "integrity": "sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==", "dev": true, "dependencies": { - "@jest/expect-utils": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0" + "@jest/expect-utils": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -1769,9 +1850,9 @@ "dev": true }, "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, "hasInstallScript": true, "optional": true, @@ -1949,9 +2030,9 @@ "dev": true }, "node_modules/is-core-module": { - "version": "2.12.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", - "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", "dev": true, "dependencies": { "has": "^1.0.3" @@ -2015,33 +2096,66 @@ } }, "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.0.tgz", + "integrity": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==", "dev": true, "dependencies": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" + "semver": "^7.5.4" }, "engines": { - "node": ">=8" + "node": ">=10" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "dev": true, "dependencies": { "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", + "make-dir": "^4.0.0", "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" } }, "node_modules/istanbul-lib-source-maps": { @@ -2059,9 +2173,9 @@ } }, "node_modules/istanbul-reports": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", - "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", "dev": true, "dependencies": { "html-escaper": "^2.0.0", @@ -2072,15 +2186,15 @@ } }, "node_modules/jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", - "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.6.4.tgz", + "integrity": "sha512-tEFhVQFF/bzoYV1YuGyzLPZ6vlPrdfvDmmAxudA1dLEuiztqg2Rkx20vkKY32xiDROcD2KXlgZ7Cu8RPeEHRKw==", "dev": true, "dependencies": { - "@jest/core": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/core": "^29.6.4", + "@jest/types": "^29.6.3", "import-local": "^3.0.2", - "jest-cli": "^29.5.0" + "jest-cli": "^29.6.4" }, "bin": { "jest": "bin/jest.js" @@ -2098,12 +2212,13 @@ } }, "node_modules/jest-changed-files": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", - "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.6.3.tgz", + "integrity": "sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==", "dev": true, "dependencies": { "execa": "^5.0.0", + "jest-util": "^29.6.3", "p-limit": "^3.1.0" }, "engines": { @@ -2111,28 +2226,28 @@ } }, "node_modules/jest-circus": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", - "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.6.4.tgz", + "integrity": "sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/environment": "^29.6.4", + "@jest/expect": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", - "dedent": "^0.7.0", + "dedent": "^1.0.0", "is-generator-fn": "^2.0.0", - "jest-each": "^29.5.0", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", + "jest-each": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-runtime": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", "p-limit": "^3.1.0", - "pretty-format": "^29.5.0", + "pretty-format": "^29.6.3", "pure-rand": "^6.0.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" @@ -2142,21 +2257,21 @@ } }, "node_modules/jest-cli": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", - "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.6.4.tgz", + "integrity": "sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==", "dev": true, "dependencies": { - "@jest/core": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/core": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", "chalk": "^4.0.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", "import-local": "^3.0.2", - "jest-config": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", + "jest-config": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", "prompts": "^2.0.1", "yargs": "^17.3.1" }, @@ -2176,31 +2291,31 @@ } }, "node_modules/jest-config": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", - "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.6.4.tgz", + "integrity": "sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.5.0", - "@jest/types": "^29.5.0", - "babel-jest": "^29.5.0", + "@jest/test-sequencer": "^29.6.4", + "@jest/types": "^29.6.3", + "babel-jest": "^29.6.4", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-circus": "^29.5.0", - "jest-environment-node": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", + "jest-circus": "^29.6.4", + "jest-environment-node": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-runner": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", "micromatch": "^4.0.4", "parse-json": "^5.2.0", - "pretty-format": "^29.5.0", + "pretty-format": "^29.6.3", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, @@ -2221,24 +2336,24 @@ } }, "node_modules/jest-diff": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", - "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.4.tgz", + "integrity": "sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "diff-sequences": "^29.4.3", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-docblock": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", - "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.6.3.tgz", + "integrity": "sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==", "dev": true, "dependencies": { "detect-newline": "^3.0.0" @@ -2248,62 +2363,62 @@ } }, "node_modules/jest-each": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", - "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.6.3.tgz", + "integrity": "sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", - "jest-util": "^29.5.0", - "pretty-format": "^29.5.0" + "jest-get-type": "^29.6.3", + "jest-util": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-environment-node": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", - "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.4.tgz", + "integrity": "sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/environment": "^29.6.4", + "@jest/fake-timers": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" + "jest-mock": "^29.6.3", + "jest-util": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-get-type": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", - "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-haste-map": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", - "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.4.tgz", + "integrity": "sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/graceful-fs": "^4.1.3", "@types/node": "*", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.6.3", + "jest-worker": "^29.6.4", "micromatch": "^4.0.4", "walker": "^1.0.8" }, @@ -2315,46 +2430,46 @@ } }, "node_modules/jest-leak-detector": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", - "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.6.3.tgz", + "integrity": "sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==", "dev": true, "dependencies": { - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", - "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.6.4.tgz", + "integrity": "sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "jest-diff": "^29.6.4", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-message-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", - "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.6.3.tgz", + "integrity": "sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==", "dev": true, "dependencies": { "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", + "pretty-format": "^29.6.3", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, @@ -2363,14 +2478,14 @@ } }, "node_modules/jest-mock": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", - "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.6.3.tgz", + "integrity": "sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-util": "^29.5.0" + "jest-util": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2394,26 +2509,26 @@ } }, "node_modules/jest-regex-util": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", - "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-resolve": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", - "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.4.tgz", + "integrity": "sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==", "dev": true, "dependencies": { "chalk": "^4.0.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", + "jest-haste-map": "^29.6.4", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", "resolve": "^1.20.0", "resolve.exports": "^2.0.0", "slash": "^3.0.0" @@ -2423,43 +2538,43 @@ } }, "node_modules/jest-resolve-dependencies": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", - "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.4.tgz", + "integrity": "sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==", "dev": true, "dependencies": { - "jest-regex-util": "^29.4.3", - "jest-snapshot": "^29.5.0" + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.6.4" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-runner": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", - "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.6.4.tgz", + "integrity": "sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/environment": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.6.4", + "@jest/environment": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.13.1", "graceful-fs": "^4.2.9", - "jest-docblock": "^29.4.3", - "jest-environment-node": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-leak-detector": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-resolve": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-util": "^29.5.0", - "jest-watcher": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-docblock": "^29.6.3", + "jest-environment-node": "^29.6.4", + "jest-haste-map": "^29.6.4", + "jest-leak-detector": "^29.6.3", + "jest-message-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-runtime": "^29.6.4", + "jest-util": "^29.6.3", + "jest-watcher": "^29.6.4", + "jest-worker": "^29.6.4", "p-limit": "^3.1.0", "source-map-support": "0.5.13" }, @@ -2468,31 +2583,31 @@ } }, "node_modules/jest-runtime": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", - "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", - "dev": true, - "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/globals": "^29.5.0", - "@jest/source-map": "^29.4.3", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.6.4.tgz", + "integrity": "sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.6.4", + "@jest/fake-timers": "^29.6.4", + "@jest/globals": "^29.6.4", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "cjs-module-lexer": "^1.0.0", "collect-v8-coverage": "^1.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", + "jest-haste-map": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-mock": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", "slash": "^3.0.0", "strip-bom": "^4.0.0" }, @@ -2501,34 +2616,31 @@ } }, "node_modules/jest-snapshot": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", - "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.6.4.tgz", + "integrity": "sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", "@babel/generator": "^7.7.2", "@babel/plugin-syntax-jsx": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/babel__traverse": "^7.0.6", - "@types/prettier": "^2.1.5", + "@jest/expect-utils": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^29.5.0", + "expect": "^29.6.4", "graceful-fs": "^4.2.9", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", + "jest-diff": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", "natural-compare": "^1.4.0", - "pretty-format": "^29.5.0", - "semver": "^7.3.5" + "pretty-format": "^29.6.3", + "semver": "^7.5.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2547,9 +2659,9 @@ } }, "node_modules/jest-snapshot/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -2568,12 +2680,12 @@ "dev": true }, "node_modules/jest-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", - "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.3.tgz", + "integrity": "sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", @@ -2585,17 +2697,17 @@ } }, "node_modules/jest-validate": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", - "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.3.tgz", + "integrity": "sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "camelcase": "^6.2.0", "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", + "jest-get-type": "^29.6.3", "leven": "^3.1.0", - "pretty-format": "^29.5.0" + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2614,18 +2726,18 @@ } }, "node_modules/jest-watcher": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", - "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.6.4.tgz", + "integrity": "sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==", "dev": true, "dependencies": { - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.13.1", - "jest-util": "^29.5.0", + "jest-util": "^29.6.3", "string-length": "^4.0.1" }, "engines": { @@ -2633,13 +2745,13 @@ } }, "node_modules/jest-worker": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", - "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", + "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", "dev": true, "dependencies": { "@types/node": "*", - "jest-util": "^29.5.0", + "jest-util": "^29.6.3", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, @@ -2762,20 +2874,53 @@ } }, "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", "dev": true, "dependencies": { - "semver": "^6.0.0" + "semver": "^7.5.3" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/make-dir/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", @@ -2891,9 +3036,9 @@ } }, "node_modules/node-fetch": { - "version": "2.6.11", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", - "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "dependencies": { "whatwg-url": "^5.0.0" }, @@ -2916,9 +3061,9 @@ "dev": true }, "node_modules/node-releases": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", - "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", "dev": true }, "node_modules/normalize-path": { @@ -3108,12 +3253,12 @@ } }, "node_modules/pretty-format": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", - "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.3.tgz", + "integrity": "sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==", "dev": true, "dependencies": { - "@jest/schemas": "^29.4.3", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", "react-is": "^18.0.0" }, @@ -3178,12 +3323,12 @@ } }, "node_modules/resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", + "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", "dev": true, "dependencies": { - "is-core-module": "^2.11.0", + "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, @@ -3225,9 +3370,9 @@ } }, "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" @@ -3452,9 +3597,9 @@ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" }, "node_modules/ts-jest": { - "version": "29.1.0", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz", - "integrity": "sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==", + "version": "29.1.1", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", + "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", "dev": true, "dependencies": { "bs-logger": "0.x", @@ -3463,7 +3608,7 @@ "json5": "^2.2.3", "lodash.memoize": "4.x", "make-error": "1.x", - "semver": "7.x", + "semver": "^7.5.3", "yargs-parser": "^21.0.1" }, "bin": { @@ -3507,9 +3652,9 @@ } }, "node_modules/ts-jest/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -3570,9 +3715,9 @@ } }, "node_modules/typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "version": "4.7.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", + "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", "dev": true, "bin": { "tsc": "bin/tsc", diff --git a/ecosystem-tests/node-ts-cjs/package.json b/ecosystem-tests/node-ts-cjs/package.json index 2cfa0dd9f..449e040e0 100644 --- a/ecosystem-tests/node-ts-cjs/package.json +++ b/ecosystem-tests/node-ts-cjs/package.json @@ -4,7 +4,7 @@ "main": "index.js", "private": true, "scripts": { - "tsc": "tsc && tsc -p tsconfig.nodenext.json", + "tsc": "tsc && tsc -p tsconfig.nodenext.json && tsc -p node_modules/openai/src/tsconfig.json", "test": "jest" }, "dependencies": { @@ -19,6 +19,6 @@ "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", "ts-jest": "^29.1.0", - "typescript": "^4.9.3" + "typescript": "4.7.4" } } diff --git a/ecosystem-tests/node-ts-cjs/tsconfig.json b/ecosystem-tests/node-ts-cjs/tsconfig.json index 1efb97eb2..9fcbc2e6c 100644 --- a/ecosystem-tests/node-ts-cjs/tsconfig.json +++ b/ecosystem-tests/node-ts-cjs/tsconfig.json @@ -7,8 +7,8 @@ "incremental": true, /* Language and Environment */ - "target": "ES2022", - "lib": ["ES2022"], + "target": "ES2015", + "lib": ["ES2015"], "jsx": "react", /* Modules */ diff --git a/ecosystem-tests/node-ts-cjs/tsconfig.nodenext.json b/ecosystem-tests/node-ts-cjs/tsconfig.nodenext.json index 8f53f6764..073cb35d3 100644 --- a/ecosystem-tests/node-ts-cjs/tsconfig.nodenext.json +++ b/ecosystem-tests/node-ts-cjs/tsconfig.nodenext.json @@ -7,8 +7,8 @@ "incremental": true, /* Language and Environment */ - "target": "ES2022", - "lib": ["ES2022"], + "target": "ES2015", + "lib": ["ES2015"], "jsx": "react", /* Modules */ diff --git a/ecosystem-tests/node-ts-esm-dom/package-lock.json b/ecosystem-tests/node-ts-esm-dom/package-lock.json index f4fea83ef..dfafbf8c2 100644 --- a/ecosystem-tests/node-ts-esm-dom/package-lock.json +++ b/ecosystem-tests/node-ts-esm-dom/package-lock.json @@ -17,7 +17,7 @@ "jest": "^29.5.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", - "typescript": "^5.1.6" + "typescript": "4.7.4" } }, "node_modules/@ampproject/remapping": { @@ -34,47 +34,119 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", - "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", "dev": true, "dependencies": { - "@babel/highlight": "^7.22.5" + "@babel/highlight": "^7.22.13", + "chalk": "^2.4.2" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@babel/code-frame/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/code-frame/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/code-frame/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/@babel/compat-data": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", - "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz", + "integrity": "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.5.tgz", - "integrity": "sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.11.tgz", + "integrity": "sha512-lh7RJrtPdhibbxndr6/xx0w8+CVlY5FJZiaSz908Fpy+G0xkBFTvwLcKJFF4PJxVfGhVWNebikpWGnOoC71juQ==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helpers": "^7.22.5", - "@babel/parser": "^7.22.5", + "@babel/code-frame": "^7.22.10", + "@babel/generator": "^7.22.10", + "@babel/helper-compilation-targets": "^7.22.10", + "@babel/helper-module-transforms": "^7.22.9", + "@babel/helpers": "^7.22.11", + "@babel/parser": "^7.22.11", "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5", + "@babel/traverse": "^7.22.11", + "@babel/types": "^7.22.11", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" + "json5": "^2.2.3", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -91,12 +163,12 @@ "dev": true }, "node_modules/@babel/generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", - "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz", + "integrity": "sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5", + "@babel/types": "^7.22.10", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" @@ -106,22 +178,19 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", - "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz", + "integrity": "sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.22.5", + "@babel/compat-data": "^7.22.9", "@babel/helper-validator-option": "^7.22.5", - "browserslist": "^4.21.3", + "browserslist": "^4.21.9", "lru-cache": "^5.1.1", - "semver": "^6.3.0" + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-environment-visitor": { @@ -171,22 +240,22 @@ } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", - "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz", + "integrity": "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-module-imports": "^7.22.5", "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.5" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-plugin-utils": { @@ -211,9 +280,9 @@ } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "dev": true, "dependencies": { "@babel/types": "^7.22.5" @@ -250,27 +319,27 @@ } }, "node_modules/@babel/helpers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", - "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.11.tgz", + "integrity": "sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==", "dev": true, "dependencies": { "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.22.11", + "@babel/types": "^7.22.11" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", - "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz", + "integrity": "sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==", "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", - "chalk": "^2.0.0", + "chalk": "^2.4.2", "js-tokens": "^4.0.0" }, "engines": { @@ -349,9 +418,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", - "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", + "version": "7.22.14", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.14.tgz", + "integrity": "sha512-1KucTHgOvaw/LzCVrEOAyXkr9rQlp0A1HiHRYnSUE9dmb8PvPW7o5sscg+5169r54n3vGlbx6GevTE/Iw/P3AQ==", "dev": true, "bin": { "parser": "bin/babel-parser.js" @@ -552,19 +621,19 @@ } }, "node_modules/@babel/traverse": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", - "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.11.tgz", + "integrity": "sha512-mzAenteTfomcB7mfPtyi+4oe5BZ6MXxWcn4CX+h4IRJ+OOGXBrWU6jDQavkQI9Vuc5P+donFabBfFCcmWka9lQ==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.5", + "@babel/code-frame": "^7.22.10", + "@babel/generator": "^7.22.10", "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-function-name": "^7.22.5", "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.22.11", + "@babel/types": "^7.22.11", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -573,9 +642,9 @@ } }, "node_modules/@babel/types": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", - "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.11.tgz", + "integrity": "sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg==", "dev": true, "dependencies": { "@babel/helper-string-parser": "^7.22.5", @@ -640,16 +709,16 @@ } }, "node_modules/@jest/console": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", - "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.6.4.tgz", + "integrity": "sha512-wNK6gC0Ha9QeEPSkeJedQuTQqxZYnDPuDcDhVuVatRvMkL4D0VTvFVZj+Yuh6caG2aOfzkUZ36KtCmLNtR02hw==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", "slash": "^3.0.0" }, "engines": { @@ -657,37 +726,37 @@ } }, "node_modules/@jest/core": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", - "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.6.4.tgz", + "integrity": "sha512-U/vq5ccNTSVgYH7mHnodHmCffGWHJnz/E1BEWlLuK5pM4FZmGfBn/nrJGLjUsSmyx3otCeqc1T31F4y08AMDLg==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/reporters": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.6.4", + "@jest/reporters": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "ci-info": "^3.2.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.5.0", - "jest-config": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-resolve-dependencies": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "jest-watcher": "^29.5.0", + "jest-changed-files": "^29.6.3", + "jest-config": "^29.6.4", + "jest-haste-map": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-resolve-dependencies": "^29.6.4", + "jest-runner": "^29.6.4", + "jest-runtime": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", + "jest-watcher": "^29.6.4", "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", + "pretty-format": "^29.6.3", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, @@ -704,89 +773,89 @@ } }, "node_modules/@jest/environment": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", - "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.6.4.tgz", + "integrity": "sha512-sQ0SULEjA1XUTHmkBRl7A1dyITM9yb1yb3ZNKPX3KlTd6IG7mWUe3e2yfExtC2Zz1Q+mMckOLHmL/qLiuQJrBQ==", "dev": true, "dependencies": { - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/fake-timers": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.5.0" + "jest-mock": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.6.4.tgz", + "integrity": "sha512-Warhsa7d23+3X5bLbrbYvaehcgX5TLYhI03JKoedTiI8uJU4IhqYBWF7OSSgUyz4IgLpUYPkK0AehA5/fRclAA==", "dev": true, "dependencies": { - "expect": "^29.5.0", - "jest-snapshot": "^29.5.0" + "expect": "^29.6.4", + "jest-snapshot": "^29.6.4" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", - "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.6.4.tgz", + "integrity": "sha512-FEhkJhqtvBwgSpiTrocquJCdXPsyvNKcl/n7A3u7X4pVoF4bswm11c9d4AV+kfq2Gpv/mM8x7E7DsRvH+djkrg==", "dev": true, "dependencies": { - "jest-get-type": "^29.4.3" + "jest-get-type": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/fake-timers": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", - "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.6.4.tgz", + "integrity": "sha512-6UkCwzoBK60edXIIWb0/KWkuj7R7Qq91vVInOe3De6DSpaEiqjKcJw4F7XUet24Wupahj9J6PlR09JqJ5ySDHw==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@sinonjs/fake-timers": "^10.0.2", "@types/node": "*", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" + "jest-message-util": "^29.6.3", + "jest-mock": "^29.6.3", + "jest-util": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/globals": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", - "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.6.4.tgz", + "integrity": "sha512-wVIn5bdtjlChhXAzVXavcY/3PEjf4VqM174BM3eGL5kMxLiZD5CLnbmkEyA1Dwh9q8XjP6E8RwjBsY/iCWrWsA==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/types": "^29.5.0", - "jest-mock": "^29.5.0" + "@jest/environment": "^29.6.4", + "@jest/expect": "^29.6.4", + "@jest/types": "^29.6.3", + "jest-mock": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/reporters": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", - "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.6.4.tgz", + "integrity": "sha512-sxUjWxm7QdchdrD3NfWKrL8FBsortZeibSJv4XLjESOOjSUOkjQcb0ZHJwfhEGIvBvTluTzfG2yZWZhkrXJu8g==", "dev": true, "dependencies": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", + "@jest/console": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", "@types/node": "*", "chalk": "^4.0.0", "collect-v8-coverage": "^1.0.0", @@ -794,13 +863,13 @@ "glob": "^7.1.3", "graceful-fs": "^4.2.9", "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-instrument": "^6.0.0", "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", + "jest-worker": "^29.6.4", "slash": "^3.0.0", "string-length": "^4.0.1", "strip-ansi": "^6.0.0", @@ -819,24 +888,24 @@ } }, "node_modules/@jest/schemas": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", - "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dev": true, "dependencies": { - "@sinclair/typebox": "^0.25.16" + "@sinclair/typebox": "^0.27.8" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/source-map": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", - "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", "dev": true, "dependencies": { - "@jridgewell/trace-mapping": "^0.3.15", + "@jridgewell/trace-mapping": "^0.3.18", "callsites": "^3.0.0", "graceful-fs": "^4.2.9" }, @@ -845,13 +914,13 @@ } }, "node_modules/@jest/test-result": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", - "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.6.4.tgz", + "integrity": "sha512-uQ1C0AUEN90/dsyEirgMLlouROgSY+Wc/JanVVk0OiUKa5UFh7sJpMEM3aoUBAz2BRNvUJ8j3d294WFuRxSyOQ==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.6.4", + "@jest/types": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" }, @@ -860,14 +929,14 @@ } }, "node_modules/@jest/test-sequencer": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", - "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.6.4.tgz", + "integrity": "sha512-E84M6LbpcRq3fT4ckfKs9ryVanwkaIB0Ws9bw3/yP4seRLg/VaCZ/LgW0MCq5wwk4/iP/qnilD41aj2fsw2RMg==", "dev": true, "dependencies": { - "@jest/test-result": "^29.5.0", + "@jest/test-result": "^29.6.4", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", + "jest-haste-map": "^29.6.4", "slash": "^3.0.0" }, "engines": { @@ -875,22 +944,22 @@ } }, "node_modules/@jest/transform": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", - "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.6.4.tgz", + "integrity": "sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", "convert-source-map": "^2.0.0", "fast-json-stable-stringify": "^2.1.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", + "jest-haste-map": "^29.6.4", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.6.3", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", @@ -901,12 +970,12 @@ } }, "node_modules/@jest/types": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", - "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dev": true, "dependencies": { - "@jest/schemas": "^29.4.3", + "@jest/schemas": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", @@ -932,9 +1001,9 @@ } }, "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", "dev": true, "engines": { "node": ">=6.0.0" @@ -956,25 +1025,19 @@ "dev": true }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", "dev": true, "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true - }, "node_modules/@sinclair/typebox": { - "version": "0.25.24", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", - "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", "dev": true }, "node_modules/@sinonjs/commons": { @@ -1094,15 +1157,9 @@ } }, "node_modules/@types/node": { - "version": "20.3.2", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.2.tgz", - "integrity": "sha512-vOBLVQeCQfIcF/2Y7eKFTqrMnizK5lRNQ7ykML/5RuwVXVWxYkgwS7xbt4B6fKCUPgbSL5FSsjHQpaGQP/dQmw==", - "dev": true - }, - "node_modules/@types/prettier": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", - "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", + "version": "20.5.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.7.tgz", + "integrity": "sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==", "dev": true }, "node_modules/@types/stack-utils": { @@ -1127,9 +1184,9 @@ "dev": true }, "node_modules/acorn": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", - "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -1215,15 +1272,15 @@ } }, "node_modules/babel-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", - "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.6.4.tgz", + "integrity": "sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==", "dev": true, "dependencies": { - "@jest/transform": "^29.5.0", + "@jest/transform": "^29.6.4", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.5.0", + "babel-preset-jest": "^29.6.3", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "slash": "^3.0.0" @@ -1251,10 +1308,26 @@ "node": ">=8" } }, + "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/babel-plugin-jest-hoist": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", - "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", "dev": true, "dependencies": { "@babel/template": "^7.3.3", @@ -1290,12 +1363,12 @@ } }, "node_modules/babel-preset-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", - "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", "dev": true, "dependencies": { - "babel-plugin-jest-hoist": "^29.5.0", + "babel-plugin-jest-hoist": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0" }, "engines": { @@ -1334,9 +1407,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.9", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", - "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "version": "4.21.10", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", + "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", "dev": true, "funding": [ { @@ -1353,9 +1426,9 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001503", - "electron-to-chromium": "^1.4.431", - "node-releases": "^2.0.12", + "caniuse-lite": "^1.0.30001517", + "electron-to-chromium": "^1.4.477", + "node-releases": "^2.0.13", "update-browserslist-db": "^1.0.11" }, "bin": { @@ -1411,9 +1484,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001508", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001508.tgz", - "integrity": "sha512-sdQZOJdmt3GJs1UMNpCCCyeuS2IEGLXnHyAo9yIO5JJDjbjoVRij4M1qep6P6gFpptD1PqIYgzM+gwJbOi92mw==", + "version": "1.0.30001524", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001524.tgz", + "integrity": "sha512-Jj917pJtYg9HSJBF95HVX3Cdr89JUyLT4IZ8SvM5aDRni95swKgYi3TgYLH5hnGfPE/U1dg6IfZ50UsIlLkwSA==", "dev": true, "funding": [ { @@ -1501,9 +1574,9 @@ } }, "node_modules/collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", "dev": true }, "node_modules/color-convert": { @@ -1582,10 +1655,18 @@ } }, "node_modules/dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", - "dev": true + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "dev": true, + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } }, "node_modules/deepmerge": { "version": "4.3.1", @@ -1615,18 +1696,18 @@ } }, "node_modules/diff-sequences": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", - "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/electron-to-chromium": { - "version": "1.4.442", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.442.tgz", - "integrity": "sha512-RkrZF//Ya+0aJq2NM3OdisNh5ZodZq1rdXOS96G8DdDgpDKqKE81yTbbQ3F/4CKm1JBPsGu1Lp/akkna2xO06Q==", + "version": "1.4.506", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.506.tgz", + "integrity": "sha512-xxGct4GPAKSRlrLBtJxJFYy74W11zX6PO9GyHgl/U+2s3Dp0ZEwAklDfNHXOWcvH7zWMpsmgbR0ggEuaYAVvHA==", "dev": true }, "node_modules/emittery": { @@ -1720,16 +1801,16 @@ } }, "node_modules/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.6.4.tgz", + "integrity": "sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==", "dev": true, "dependencies": { - "@jest/expect-utils": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0" + "@jest/expect-utils": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -1844,9 +1925,9 @@ "dev": true }, "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, "hasInstallScript": true, "optional": true, @@ -2024,9 +2105,9 @@ "dev": true }, "node_modules/is-core-module": { - "version": "2.12.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", - "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", "dev": true, "dependencies": { "has": "^1.0.3" @@ -2090,33 +2171,66 @@ } }, "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.0.tgz", + "integrity": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==", "dev": true, "dependencies": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" + "semver": "^7.5.4" }, "engines": { - "node": ">=8" + "node": ">=10" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "dev": true, "dependencies": { "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", + "make-dir": "^4.0.0", "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" } }, "node_modules/istanbul-lib-source-maps": { @@ -2134,9 +2248,9 @@ } }, "node_modules/istanbul-reports": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", - "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", "dev": true, "dependencies": { "html-escaper": "^2.0.0", @@ -2147,15 +2261,15 @@ } }, "node_modules/jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", - "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.6.4.tgz", + "integrity": "sha512-tEFhVQFF/bzoYV1YuGyzLPZ6vlPrdfvDmmAxudA1dLEuiztqg2Rkx20vkKY32xiDROcD2KXlgZ7Cu8RPeEHRKw==", "dev": true, "dependencies": { - "@jest/core": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/core": "^29.6.4", + "@jest/types": "^29.6.3", "import-local": "^3.0.2", - "jest-cli": "^29.5.0" + "jest-cli": "^29.6.4" }, "bin": { "jest": "bin/jest.js" @@ -2173,12 +2287,13 @@ } }, "node_modules/jest-changed-files": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", - "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.6.3.tgz", + "integrity": "sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==", "dev": true, "dependencies": { "execa": "^5.0.0", + "jest-util": "^29.6.3", "p-limit": "^3.1.0" }, "engines": { @@ -2186,28 +2301,28 @@ } }, "node_modules/jest-circus": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", - "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.6.4.tgz", + "integrity": "sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/environment": "^29.6.4", + "@jest/expect": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", - "dedent": "^0.7.0", + "dedent": "^1.0.0", "is-generator-fn": "^2.0.0", - "jest-each": "^29.5.0", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", + "jest-each": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-runtime": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", "p-limit": "^3.1.0", - "pretty-format": "^29.5.0", + "pretty-format": "^29.6.3", "pure-rand": "^6.0.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" @@ -2217,21 +2332,21 @@ } }, "node_modules/jest-cli": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", - "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.6.4.tgz", + "integrity": "sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==", "dev": true, "dependencies": { - "@jest/core": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/core": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", "chalk": "^4.0.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", "import-local": "^3.0.2", - "jest-config": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", + "jest-config": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", "prompts": "^2.0.1", "yargs": "^17.3.1" }, @@ -2251,31 +2366,31 @@ } }, "node_modules/jest-config": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", - "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.6.4.tgz", + "integrity": "sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.5.0", - "@jest/types": "^29.5.0", - "babel-jest": "^29.5.0", + "@jest/test-sequencer": "^29.6.4", + "@jest/types": "^29.6.3", + "babel-jest": "^29.6.4", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-circus": "^29.5.0", - "jest-environment-node": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", + "jest-circus": "^29.6.4", + "jest-environment-node": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-runner": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", "micromatch": "^4.0.4", "parse-json": "^5.2.0", - "pretty-format": "^29.5.0", + "pretty-format": "^29.6.3", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, @@ -2296,24 +2411,24 @@ } }, "node_modules/jest-diff": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", - "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.4.tgz", + "integrity": "sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "diff-sequences": "^29.4.3", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-docblock": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", - "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.6.3.tgz", + "integrity": "sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==", "dev": true, "dependencies": { "detect-newline": "^3.0.0" @@ -2323,62 +2438,62 @@ } }, "node_modules/jest-each": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", - "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.6.3.tgz", + "integrity": "sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", - "jest-util": "^29.5.0", - "pretty-format": "^29.5.0" + "jest-get-type": "^29.6.3", + "jest-util": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-environment-node": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", - "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.4.tgz", + "integrity": "sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/environment": "^29.6.4", + "@jest/fake-timers": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" + "jest-mock": "^29.6.3", + "jest-util": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-get-type": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", - "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-haste-map": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", - "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.4.tgz", + "integrity": "sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/graceful-fs": "^4.1.3", "@types/node": "*", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.6.3", + "jest-worker": "^29.6.4", "micromatch": "^4.0.4", "walker": "^1.0.8" }, @@ -2390,46 +2505,46 @@ } }, "node_modules/jest-leak-detector": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", - "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.6.3.tgz", + "integrity": "sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==", "dev": true, "dependencies": { - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", - "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.6.4.tgz", + "integrity": "sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "jest-diff": "^29.6.4", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-message-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", - "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.6.3.tgz", + "integrity": "sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==", "dev": true, "dependencies": { "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", + "pretty-format": "^29.6.3", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, @@ -2438,14 +2553,14 @@ } }, "node_modules/jest-mock": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", - "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.6.3.tgz", + "integrity": "sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-util": "^29.5.0" + "jest-util": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2469,26 +2584,26 @@ } }, "node_modules/jest-regex-util": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", - "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-resolve": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", - "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.4.tgz", + "integrity": "sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==", "dev": true, "dependencies": { "chalk": "^4.0.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", + "jest-haste-map": "^29.6.4", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", "resolve": "^1.20.0", "resolve.exports": "^2.0.0", "slash": "^3.0.0" @@ -2498,43 +2613,43 @@ } }, "node_modules/jest-resolve-dependencies": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", - "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.4.tgz", + "integrity": "sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==", "dev": true, "dependencies": { - "jest-regex-util": "^29.4.3", - "jest-snapshot": "^29.5.0" + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.6.4" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-runner": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", - "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.6.4.tgz", + "integrity": "sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/environment": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.6.4", + "@jest/environment": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.13.1", "graceful-fs": "^4.2.9", - "jest-docblock": "^29.4.3", - "jest-environment-node": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-leak-detector": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-resolve": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-util": "^29.5.0", - "jest-watcher": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-docblock": "^29.6.3", + "jest-environment-node": "^29.6.4", + "jest-haste-map": "^29.6.4", + "jest-leak-detector": "^29.6.3", + "jest-message-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-runtime": "^29.6.4", + "jest-util": "^29.6.3", + "jest-watcher": "^29.6.4", + "jest-worker": "^29.6.4", "p-limit": "^3.1.0", "source-map-support": "0.5.13" }, @@ -2543,31 +2658,31 @@ } }, "node_modules/jest-runtime": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", - "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", - "dev": true, - "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/globals": "^29.5.0", - "@jest/source-map": "^29.4.3", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.6.4.tgz", + "integrity": "sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.6.4", + "@jest/fake-timers": "^29.6.4", + "@jest/globals": "^29.6.4", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "cjs-module-lexer": "^1.0.0", "collect-v8-coverage": "^1.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", + "jest-haste-map": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-mock": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", "slash": "^3.0.0", "strip-bom": "^4.0.0" }, @@ -2576,34 +2691,31 @@ } }, "node_modules/jest-snapshot": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", - "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.6.4.tgz", + "integrity": "sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", "@babel/generator": "^7.7.2", "@babel/plugin-syntax-jsx": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/babel__traverse": "^7.0.6", - "@types/prettier": "^2.1.5", + "@jest/expect-utils": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^29.5.0", + "expect": "^29.6.4", "graceful-fs": "^4.2.9", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", + "jest-diff": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", "natural-compare": "^1.4.0", - "pretty-format": "^29.5.0", - "semver": "^7.3.5" + "pretty-format": "^29.6.3", + "semver": "^7.5.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2622,9 +2734,9 @@ } }, "node_modules/jest-snapshot/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -2643,12 +2755,12 @@ "dev": true }, "node_modules/jest-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", - "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.3.tgz", + "integrity": "sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", @@ -2660,17 +2772,17 @@ } }, "node_modules/jest-validate": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", - "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.3.tgz", + "integrity": "sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "camelcase": "^6.2.0", "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", + "jest-get-type": "^29.6.3", "leven": "^3.1.0", - "pretty-format": "^29.5.0" + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2689,18 +2801,18 @@ } }, "node_modules/jest-watcher": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", - "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.6.4.tgz", + "integrity": "sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==", "dev": true, "dependencies": { - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.13.1", - "jest-util": "^29.5.0", + "jest-util": "^29.6.3", "string-length": "^4.0.1" }, "engines": { @@ -2708,13 +2820,13 @@ } }, "node_modules/jest-worker": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", - "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", + "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", "dev": true, "dependencies": { "@types/node": "*", - "jest-util": "^29.5.0", + "jest-util": "^29.6.3", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, @@ -2838,20 +2950,53 @@ } }, "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", "dev": true, "dependencies": { - "semver": "^6.0.0" + "semver": "^7.5.3" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/make-dir/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", @@ -2938,9 +3083,9 @@ } }, "node_modules/node-fetch": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.1.tgz", - "integrity": "sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", "dependencies": { "data-uri-to-buffer": "^4.0.0", "fetch-blob": "^3.1.4", @@ -2961,9 +3106,9 @@ "dev": true }, "node_modules/node-releases": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", - "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", "dev": true }, "node_modules/normalize-path": { @@ -3153,12 +3298,12 @@ } }, "node_modules/pretty-format": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", - "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.3.tgz", + "integrity": "sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==", "dev": true, "dependencies": { - "@jest/schemas": "^29.4.3", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", "react-is": "^18.0.0" }, @@ -3223,12 +3368,12 @@ } }, "node_modules/resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", + "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", "dev": true, "dependencies": { - "is-core-module": "^2.11.0", + "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, @@ -3270,9 +3415,9 @@ } }, "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" @@ -3492,9 +3637,9 @@ } }, "node_modules/ts-jest": { - "version": "29.1.0", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz", - "integrity": "sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==", + "version": "29.1.1", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", + "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", "dev": true, "dependencies": { "bs-logger": "0.x", @@ -3503,7 +3648,7 @@ "json5": "^2.2.3", "lodash.memoize": "4.x", "make-error": "1.x", - "semver": "7.x", + "semver": "^7.5.3", "yargs-parser": "^21.0.1" }, "bin": { @@ -3547,9 +3692,9 @@ } }, "node_modules/ts-jest/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -3632,16 +3777,16 @@ } }, "node_modules/typescript": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", - "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", + "version": "4.7.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", + "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", "dev": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" }, "engines": { - "node": ">=14.17" + "node": ">=4.2.0" } }, "node_modules/update-browserslist-db": { diff --git a/ecosystem-tests/node-ts-esm-dom/package.json b/ecosystem-tests/node-ts-esm-dom/package.json index 4729a8216..5f6b5f658 100644 --- a/ecosystem-tests/node-ts-esm-dom/package.json +++ b/ecosystem-tests/node-ts-esm-dom/package.json @@ -18,6 +18,6 @@ "jest": "^29.5.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", - "typescript": "^5.1.3" + "typescript": "4.7.4" } } diff --git a/ecosystem-tests/node-ts-esm/package-lock.json b/ecosystem-tests/node-ts-esm/package-lock.json index f4fea83ef..dfafbf8c2 100644 --- a/ecosystem-tests/node-ts-esm/package-lock.json +++ b/ecosystem-tests/node-ts-esm/package-lock.json @@ -17,7 +17,7 @@ "jest": "^29.5.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", - "typescript": "^5.1.6" + "typescript": "4.7.4" } }, "node_modules/@ampproject/remapping": { @@ -34,47 +34,119 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", - "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", "dev": true, "dependencies": { - "@babel/highlight": "^7.22.5" + "@babel/highlight": "^7.22.13", + "chalk": "^2.4.2" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@babel/code-frame/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/code-frame/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/code-frame/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/@babel/compat-data": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", - "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz", + "integrity": "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.5.tgz", - "integrity": "sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.11.tgz", + "integrity": "sha512-lh7RJrtPdhibbxndr6/xx0w8+CVlY5FJZiaSz908Fpy+G0xkBFTvwLcKJFF4PJxVfGhVWNebikpWGnOoC71juQ==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helpers": "^7.22.5", - "@babel/parser": "^7.22.5", + "@babel/code-frame": "^7.22.10", + "@babel/generator": "^7.22.10", + "@babel/helper-compilation-targets": "^7.22.10", + "@babel/helper-module-transforms": "^7.22.9", + "@babel/helpers": "^7.22.11", + "@babel/parser": "^7.22.11", "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5", + "@babel/traverse": "^7.22.11", + "@babel/types": "^7.22.11", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" + "json5": "^2.2.3", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -91,12 +163,12 @@ "dev": true }, "node_modules/@babel/generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", - "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz", + "integrity": "sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5", + "@babel/types": "^7.22.10", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" @@ -106,22 +178,19 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", - "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz", + "integrity": "sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.22.5", + "@babel/compat-data": "^7.22.9", "@babel/helper-validator-option": "^7.22.5", - "browserslist": "^4.21.3", + "browserslist": "^4.21.9", "lru-cache": "^5.1.1", - "semver": "^6.3.0" + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-environment-visitor": { @@ -171,22 +240,22 @@ } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", - "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz", + "integrity": "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-module-imports": "^7.22.5", "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.5" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-plugin-utils": { @@ -211,9 +280,9 @@ } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "dev": true, "dependencies": { "@babel/types": "^7.22.5" @@ -250,27 +319,27 @@ } }, "node_modules/@babel/helpers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", - "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.11.tgz", + "integrity": "sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==", "dev": true, "dependencies": { "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.22.11", + "@babel/types": "^7.22.11" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", - "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz", + "integrity": "sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==", "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", - "chalk": "^2.0.0", + "chalk": "^2.4.2", "js-tokens": "^4.0.0" }, "engines": { @@ -349,9 +418,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", - "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", + "version": "7.22.14", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.14.tgz", + "integrity": "sha512-1KucTHgOvaw/LzCVrEOAyXkr9rQlp0A1HiHRYnSUE9dmb8PvPW7o5sscg+5169r54n3vGlbx6GevTE/Iw/P3AQ==", "dev": true, "bin": { "parser": "bin/babel-parser.js" @@ -552,19 +621,19 @@ } }, "node_modules/@babel/traverse": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", - "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.11.tgz", + "integrity": "sha512-mzAenteTfomcB7mfPtyi+4oe5BZ6MXxWcn4CX+h4IRJ+OOGXBrWU6jDQavkQI9Vuc5P+donFabBfFCcmWka9lQ==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.5", + "@babel/code-frame": "^7.22.10", + "@babel/generator": "^7.22.10", "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-function-name": "^7.22.5", "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.22.11", + "@babel/types": "^7.22.11", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -573,9 +642,9 @@ } }, "node_modules/@babel/types": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", - "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.11.tgz", + "integrity": "sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg==", "dev": true, "dependencies": { "@babel/helper-string-parser": "^7.22.5", @@ -640,16 +709,16 @@ } }, "node_modules/@jest/console": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", - "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.6.4.tgz", + "integrity": "sha512-wNK6gC0Ha9QeEPSkeJedQuTQqxZYnDPuDcDhVuVatRvMkL4D0VTvFVZj+Yuh6caG2aOfzkUZ36KtCmLNtR02hw==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", "slash": "^3.0.0" }, "engines": { @@ -657,37 +726,37 @@ } }, "node_modules/@jest/core": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", - "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.6.4.tgz", + "integrity": "sha512-U/vq5ccNTSVgYH7mHnodHmCffGWHJnz/E1BEWlLuK5pM4FZmGfBn/nrJGLjUsSmyx3otCeqc1T31F4y08AMDLg==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/reporters": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.6.4", + "@jest/reporters": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "ci-info": "^3.2.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.5.0", - "jest-config": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-resolve-dependencies": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "jest-watcher": "^29.5.0", + "jest-changed-files": "^29.6.3", + "jest-config": "^29.6.4", + "jest-haste-map": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-resolve-dependencies": "^29.6.4", + "jest-runner": "^29.6.4", + "jest-runtime": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", + "jest-watcher": "^29.6.4", "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", + "pretty-format": "^29.6.3", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, @@ -704,89 +773,89 @@ } }, "node_modules/@jest/environment": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", - "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.6.4.tgz", + "integrity": "sha512-sQ0SULEjA1XUTHmkBRl7A1dyITM9yb1yb3ZNKPX3KlTd6IG7mWUe3e2yfExtC2Zz1Q+mMckOLHmL/qLiuQJrBQ==", "dev": true, "dependencies": { - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/fake-timers": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.5.0" + "jest-mock": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.6.4.tgz", + "integrity": "sha512-Warhsa7d23+3X5bLbrbYvaehcgX5TLYhI03JKoedTiI8uJU4IhqYBWF7OSSgUyz4IgLpUYPkK0AehA5/fRclAA==", "dev": true, "dependencies": { - "expect": "^29.5.0", - "jest-snapshot": "^29.5.0" + "expect": "^29.6.4", + "jest-snapshot": "^29.6.4" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", - "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.6.4.tgz", + "integrity": "sha512-FEhkJhqtvBwgSpiTrocquJCdXPsyvNKcl/n7A3u7X4pVoF4bswm11c9d4AV+kfq2Gpv/mM8x7E7DsRvH+djkrg==", "dev": true, "dependencies": { - "jest-get-type": "^29.4.3" + "jest-get-type": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/fake-timers": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", - "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.6.4.tgz", + "integrity": "sha512-6UkCwzoBK60edXIIWb0/KWkuj7R7Qq91vVInOe3De6DSpaEiqjKcJw4F7XUet24Wupahj9J6PlR09JqJ5ySDHw==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@sinonjs/fake-timers": "^10.0.2", "@types/node": "*", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" + "jest-message-util": "^29.6.3", + "jest-mock": "^29.6.3", + "jest-util": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/globals": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", - "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.6.4.tgz", + "integrity": "sha512-wVIn5bdtjlChhXAzVXavcY/3PEjf4VqM174BM3eGL5kMxLiZD5CLnbmkEyA1Dwh9q8XjP6E8RwjBsY/iCWrWsA==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/types": "^29.5.0", - "jest-mock": "^29.5.0" + "@jest/environment": "^29.6.4", + "@jest/expect": "^29.6.4", + "@jest/types": "^29.6.3", + "jest-mock": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/reporters": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", - "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.6.4.tgz", + "integrity": "sha512-sxUjWxm7QdchdrD3NfWKrL8FBsortZeibSJv4XLjESOOjSUOkjQcb0ZHJwfhEGIvBvTluTzfG2yZWZhkrXJu8g==", "dev": true, "dependencies": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", + "@jest/console": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", "@types/node": "*", "chalk": "^4.0.0", "collect-v8-coverage": "^1.0.0", @@ -794,13 +863,13 @@ "glob": "^7.1.3", "graceful-fs": "^4.2.9", "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-instrument": "^6.0.0", "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", + "jest-worker": "^29.6.4", "slash": "^3.0.0", "string-length": "^4.0.1", "strip-ansi": "^6.0.0", @@ -819,24 +888,24 @@ } }, "node_modules/@jest/schemas": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", - "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dev": true, "dependencies": { - "@sinclair/typebox": "^0.25.16" + "@sinclair/typebox": "^0.27.8" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/source-map": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", - "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", "dev": true, "dependencies": { - "@jridgewell/trace-mapping": "^0.3.15", + "@jridgewell/trace-mapping": "^0.3.18", "callsites": "^3.0.0", "graceful-fs": "^4.2.9" }, @@ -845,13 +914,13 @@ } }, "node_modules/@jest/test-result": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", - "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.6.4.tgz", + "integrity": "sha512-uQ1C0AUEN90/dsyEirgMLlouROgSY+Wc/JanVVk0OiUKa5UFh7sJpMEM3aoUBAz2BRNvUJ8j3d294WFuRxSyOQ==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.6.4", + "@jest/types": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" }, @@ -860,14 +929,14 @@ } }, "node_modules/@jest/test-sequencer": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", - "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.6.4.tgz", + "integrity": "sha512-E84M6LbpcRq3fT4ckfKs9ryVanwkaIB0Ws9bw3/yP4seRLg/VaCZ/LgW0MCq5wwk4/iP/qnilD41aj2fsw2RMg==", "dev": true, "dependencies": { - "@jest/test-result": "^29.5.0", + "@jest/test-result": "^29.6.4", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", + "jest-haste-map": "^29.6.4", "slash": "^3.0.0" }, "engines": { @@ -875,22 +944,22 @@ } }, "node_modules/@jest/transform": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", - "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.6.4.tgz", + "integrity": "sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", "convert-source-map": "^2.0.0", "fast-json-stable-stringify": "^2.1.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", + "jest-haste-map": "^29.6.4", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.6.3", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", @@ -901,12 +970,12 @@ } }, "node_modules/@jest/types": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", - "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dev": true, "dependencies": { - "@jest/schemas": "^29.4.3", + "@jest/schemas": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", @@ -932,9 +1001,9 @@ } }, "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", "dev": true, "engines": { "node": ">=6.0.0" @@ -956,25 +1025,19 @@ "dev": true }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", "dev": true, "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true - }, "node_modules/@sinclair/typebox": { - "version": "0.25.24", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", - "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", "dev": true }, "node_modules/@sinonjs/commons": { @@ -1094,15 +1157,9 @@ } }, "node_modules/@types/node": { - "version": "20.3.2", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.2.tgz", - "integrity": "sha512-vOBLVQeCQfIcF/2Y7eKFTqrMnizK5lRNQ7ykML/5RuwVXVWxYkgwS7xbt4B6fKCUPgbSL5FSsjHQpaGQP/dQmw==", - "dev": true - }, - "node_modules/@types/prettier": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", - "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", + "version": "20.5.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.7.tgz", + "integrity": "sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==", "dev": true }, "node_modules/@types/stack-utils": { @@ -1127,9 +1184,9 @@ "dev": true }, "node_modules/acorn": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", - "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -1215,15 +1272,15 @@ } }, "node_modules/babel-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", - "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.6.4.tgz", + "integrity": "sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==", "dev": true, "dependencies": { - "@jest/transform": "^29.5.0", + "@jest/transform": "^29.6.4", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.5.0", + "babel-preset-jest": "^29.6.3", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "slash": "^3.0.0" @@ -1251,10 +1308,26 @@ "node": ">=8" } }, + "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/babel-plugin-jest-hoist": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", - "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", "dev": true, "dependencies": { "@babel/template": "^7.3.3", @@ -1290,12 +1363,12 @@ } }, "node_modules/babel-preset-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", - "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", "dev": true, "dependencies": { - "babel-plugin-jest-hoist": "^29.5.0", + "babel-plugin-jest-hoist": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0" }, "engines": { @@ -1334,9 +1407,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.9", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", - "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "version": "4.21.10", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", + "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", "dev": true, "funding": [ { @@ -1353,9 +1426,9 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001503", - "electron-to-chromium": "^1.4.431", - "node-releases": "^2.0.12", + "caniuse-lite": "^1.0.30001517", + "electron-to-chromium": "^1.4.477", + "node-releases": "^2.0.13", "update-browserslist-db": "^1.0.11" }, "bin": { @@ -1411,9 +1484,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001508", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001508.tgz", - "integrity": "sha512-sdQZOJdmt3GJs1UMNpCCCyeuS2IEGLXnHyAo9yIO5JJDjbjoVRij4M1qep6P6gFpptD1PqIYgzM+gwJbOi92mw==", + "version": "1.0.30001524", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001524.tgz", + "integrity": "sha512-Jj917pJtYg9HSJBF95HVX3Cdr89JUyLT4IZ8SvM5aDRni95swKgYi3TgYLH5hnGfPE/U1dg6IfZ50UsIlLkwSA==", "dev": true, "funding": [ { @@ -1501,9 +1574,9 @@ } }, "node_modules/collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", "dev": true }, "node_modules/color-convert": { @@ -1582,10 +1655,18 @@ } }, "node_modules/dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", - "dev": true + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "dev": true, + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } }, "node_modules/deepmerge": { "version": "4.3.1", @@ -1615,18 +1696,18 @@ } }, "node_modules/diff-sequences": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", - "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/electron-to-chromium": { - "version": "1.4.442", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.442.tgz", - "integrity": "sha512-RkrZF//Ya+0aJq2NM3OdisNh5ZodZq1rdXOS96G8DdDgpDKqKE81yTbbQ3F/4CKm1JBPsGu1Lp/akkna2xO06Q==", + "version": "1.4.506", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.506.tgz", + "integrity": "sha512-xxGct4GPAKSRlrLBtJxJFYy74W11zX6PO9GyHgl/U+2s3Dp0ZEwAklDfNHXOWcvH7zWMpsmgbR0ggEuaYAVvHA==", "dev": true }, "node_modules/emittery": { @@ -1720,16 +1801,16 @@ } }, "node_modules/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.6.4.tgz", + "integrity": "sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==", "dev": true, "dependencies": { - "@jest/expect-utils": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0" + "@jest/expect-utils": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -1844,9 +1925,9 @@ "dev": true }, "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, "hasInstallScript": true, "optional": true, @@ -2024,9 +2105,9 @@ "dev": true }, "node_modules/is-core-module": { - "version": "2.12.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", - "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", "dev": true, "dependencies": { "has": "^1.0.3" @@ -2090,33 +2171,66 @@ } }, "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.0.tgz", + "integrity": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==", "dev": true, "dependencies": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" + "semver": "^7.5.4" }, "engines": { - "node": ">=8" + "node": ">=10" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "dev": true, "dependencies": { "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", + "make-dir": "^4.0.0", "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" } }, "node_modules/istanbul-lib-source-maps": { @@ -2134,9 +2248,9 @@ } }, "node_modules/istanbul-reports": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", - "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", "dev": true, "dependencies": { "html-escaper": "^2.0.0", @@ -2147,15 +2261,15 @@ } }, "node_modules/jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", - "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.6.4.tgz", + "integrity": "sha512-tEFhVQFF/bzoYV1YuGyzLPZ6vlPrdfvDmmAxudA1dLEuiztqg2Rkx20vkKY32xiDROcD2KXlgZ7Cu8RPeEHRKw==", "dev": true, "dependencies": { - "@jest/core": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/core": "^29.6.4", + "@jest/types": "^29.6.3", "import-local": "^3.0.2", - "jest-cli": "^29.5.0" + "jest-cli": "^29.6.4" }, "bin": { "jest": "bin/jest.js" @@ -2173,12 +2287,13 @@ } }, "node_modules/jest-changed-files": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", - "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.6.3.tgz", + "integrity": "sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==", "dev": true, "dependencies": { "execa": "^5.0.0", + "jest-util": "^29.6.3", "p-limit": "^3.1.0" }, "engines": { @@ -2186,28 +2301,28 @@ } }, "node_modules/jest-circus": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", - "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.6.4.tgz", + "integrity": "sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/environment": "^29.6.4", + "@jest/expect": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", - "dedent": "^0.7.0", + "dedent": "^1.0.0", "is-generator-fn": "^2.0.0", - "jest-each": "^29.5.0", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", + "jest-each": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-runtime": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", "p-limit": "^3.1.0", - "pretty-format": "^29.5.0", + "pretty-format": "^29.6.3", "pure-rand": "^6.0.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" @@ -2217,21 +2332,21 @@ } }, "node_modules/jest-cli": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", - "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.6.4.tgz", + "integrity": "sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==", "dev": true, "dependencies": { - "@jest/core": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/core": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", "chalk": "^4.0.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", "import-local": "^3.0.2", - "jest-config": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", + "jest-config": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", "prompts": "^2.0.1", "yargs": "^17.3.1" }, @@ -2251,31 +2366,31 @@ } }, "node_modules/jest-config": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", - "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.6.4.tgz", + "integrity": "sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.5.0", - "@jest/types": "^29.5.0", - "babel-jest": "^29.5.0", + "@jest/test-sequencer": "^29.6.4", + "@jest/types": "^29.6.3", + "babel-jest": "^29.6.4", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-circus": "^29.5.0", - "jest-environment-node": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", + "jest-circus": "^29.6.4", + "jest-environment-node": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-runner": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", "micromatch": "^4.0.4", "parse-json": "^5.2.0", - "pretty-format": "^29.5.0", + "pretty-format": "^29.6.3", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, @@ -2296,24 +2411,24 @@ } }, "node_modules/jest-diff": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", - "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.4.tgz", + "integrity": "sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "diff-sequences": "^29.4.3", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-docblock": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", - "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.6.3.tgz", + "integrity": "sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==", "dev": true, "dependencies": { "detect-newline": "^3.0.0" @@ -2323,62 +2438,62 @@ } }, "node_modules/jest-each": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", - "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.6.3.tgz", + "integrity": "sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", - "jest-util": "^29.5.0", - "pretty-format": "^29.5.0" + "jest-get-type": "^29.6.3", + "jest-util": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-environment-node": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", - "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.4.tgz", + "integrity": "sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/environment": "^29.6.4", + "@jest/fake-timers": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" + "jest-mock": "^29.6.3", + "jest-util": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-get-type": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", - "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-haste-map": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", - "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.4.tgz", + "integrity": "sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/graceful-fs": "^4.1.3", "@types/node": "*", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.6.3", + "jest-worker": "^29.6.4", "micromatch": "^4.0.4", "walker": "^1.0.8" }, @@ -2390,46 +2505,46 @@ } }, "node_modules/jest-leak-detector": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", - "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.6.3.tgz", + "integrity": "sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==", "dev": true, "dependencies": { - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", - "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.6.4.tgz", + "integrity": "sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "jest-diff": "^29.6.4", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-message-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", - "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.6.3.tgz", + "integrity": "sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==", "dev": true, "dependencies": { "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", + "pretty-format": "^29.6.3", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, @@ -2438,14 +2553,14 @@ } }, "node_modules/jest-mock": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", - "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.6.3.tgz", + "integrity": "sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-util": "^29.5.0" + "jest-util": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2469,26 +2584,26 @@ } }, "node_modules/jest-regex-util": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", - "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-resolve": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", - "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.4.tgz", + "integrity": "sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==", "dev": true, "dependencies": { "chalk": "^4.0.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", + "jest-haste-map": "^29.6.4", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", "resolve": "^1.20.0", "resolve.exports": "^2.0.0", "slash": "^3.0.0" @@ -2498,43 +2613,43 @@ } }, "node_modules/jest-resolve-dependencies": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", - "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.4.tgz", + "integrity": "sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==", "dev": true, "dependencies": { - "jest-regex-util": "^29.4.3", - "jest-snapshot": "^29.5.0" + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.6.4" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-runner": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", - "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.6.4.tgz", + "integrity": "sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/environment": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.6.4", + "@jest/environment": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.13.1", "graceful-fs": "^4.2.9", - "jest-docblock": "^29.4.3", - "jest-environment-node": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-leak-detector": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-resolve": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-util": "^29.5.0", - "jest-watcher": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-docblock": "^29.6.3", + "jest-environment-node": "^29.6.4", + "jest-haste-map": "^29.6.4", + "jest-leak-detector": "^29.6.3", + "jest-message-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-runtime": "^29.6.4", + "jest-util": "^29.6.3", + "jest-watcher": "^29.6.4", + "jest-worker": "^29.6.4", "p-limit": "^3.1.0", "source-map-support": "0.5.13" }, @@ -2543,31 +2658,31 @@ } }, "node_modules/jest-runtime": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", - "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", - "dev": true, - "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/globals": "^29.5.0", - "@jest/source-map": "^29.4.3", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.6.4.tgz", + "integrity": "sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.6.4", + "@jest/fake-timers": "^29.6.4", + "@jest/globals": "^29.6.4", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "cjs-module-lexer": "^1.0.0", "collect-v8-coverage": "^1.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", + "jest-haste-map": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-mock": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", "slash": "^3.0.0", "strip-bom": "^4.0.0" }, @@ -2576,34 +2691,31 @@ } }, "node_modules/jest-snapshot": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", - "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.6.4.tgz", + "integrity": "sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", "@babel/generator": "^7.7.2", "@babel/plugin-syntax-jsx": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/babel__traverse": "^7.0.6", - "@types/prettier": "^2.1.5", + "@jest/expect-utils": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^29.5.0", + "expect": "^29.6.4", "graceful-fs": "^4.2.9", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", + "jest-diff": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", "natural-compare": "^1.4.0", - "pretty-format": "^29.5.0", - "semver": "^7.3.5" + "pretty-format": "^29.6.3", + "semver": "^7.5.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2622,9 +2734,9 @@ } }, "node_modules/jest-snapshot/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -2643,12 +2755,12 @@ "dev": true }, "node_modules/jest-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", - "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.3.tgz", + "integrity": "sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", @@ -2660,17 +2772,17 @@ } }, "node_modules/jest-validate": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", - "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.3.tgz", + "integrity": "sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "camelcase": "^6.2.0", "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", + "jest-get-type": "^29.6.3", "leven": "^3.1.0", - "pretty-format": "^29.5.0" + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2689,18 +2801,18 @@ } }, "node_modules/jest-watcher": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", - "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.6.4.tgz", + "integrity": "sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==", "dev": true, "dependencies": { - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.13.1", - "jest-util": "^29.5.0", + "jest-util": "^29.6.3", "string-length": "^4.0.1" }, "engines": { @@ -2708,13 +2820,13 @@ } }, "node_modules/jest-worker": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", - "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", + "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", "dev": true, "dependencies": { "@types/node": "*", - "jest-util": "^29.5.0", + "jest-util": "^29.6.3", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, @@ -2838,20 +2950,53 @@ } }, "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", "dev": true, "dependencies": { - "semver": "^6.0.0" + "semver": "^7.5.3" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/make-dir/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", @@ -2938,9 +3083,9 @@ } }, "node_modules/node-fetch": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.1.tgz", - "integrity": "sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", "dependencies": { "data-uri-to-buffer": "^4.0.0", "fetch-blob": "^3.1.4", @@ -2961,9 +3106,9 @@ "dev": true }, "node_modules/node-releases": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", - "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", "dev": true }, "node_modules/normalize-path": { @@ -3153,12 +3298,12 @@ } }, "node_modules/pretty-format": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", - "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.3.tgz", + "integrity": "sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==", "dev": true, "dependencies": { - "@jest/schemas": "^29.4.3", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", "react-is": "^18.0.0" }, @@ -3223,12 +3368,12 @@ } }, "node_modules/resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", + "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", "dev": true, "dependencies": { - "is-core-module": "^2.11.0", + "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, @@ -3270,9 +3415,9 @@ } }, "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" @@ -3492,9 +3637,9 @@ } }, "node_modules/ts-jest": { - "version": "29.1.0", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz", - "integrity": "sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==", + "version": "29.1.1", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", + "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", "dev": true, "dependencies": { "bs-logger": "0.x", @@ -3503,7 +3648,7 @@ "json5": "^2.2.3", "lodash.memoize": "4.x", "make-error": "1.x", - "semver": "7.x", + "semver": "^7.5.3", "yargs-parser": "^21.0.1" }, "bin": { @@ -3547,9 +3692,9 @@ } }, "node_modules/ts-jest/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -3632,16 +3777,16 @@ } }, "node_modules/typescript": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", - "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", + "version": "4.7.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", + "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", "dev": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" }, "engines": { - "node": ">=14.17" + "node": ">=4.2.0" } }, "node_modules/update-browserslist-db": { diff --git a/ecosystem-tests/node-ts-esm/package.json b/ecosystem-tests/node-ts-esm/package.json index 4729a8216..5f6b5f658 100644 --- a/ecosystem-tests/node-ts-esm/package.json +++ b/ecosystem-tests/node-ts-esm/package.json @@ -18,6 +18,6 @@ "jest": "^29.5.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", - "typescript": "^5.1.3" + "typescript": "4.7.4" } } diff --git a/ecosystem-tests/ts-browser-webpack/package-lock.json b/ecosystem-tests/ts-browser-webpack/package-lock.json index 553a3a4b7..2b539a595 100644 --- a/ecosystem-tests/ts-browser-webpack/package-lock.json +++ b/ecosystem-tests/ts-browser-webpack/package-lock.json @@ -18,7 +18,7 @@ "start-server-and-test": "^2.0.0", "ts-loader": "^9.4.3", "ts-node": "^10.9.1", - "typescript": "^5.1.6", + "typescript": "4.7.4", "webpack": "^5.87.0", "webpack-cli": "^5.0.2", "webpack-dev-server": "^4.15.1" @@ -39,21 +39,22 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", - "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", "dev": true, "dependencies": { - "@babel/highlight": "^7.22.5" + "@babel/highlight": "^7.22.13", + "chalk": "^2.4.2" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz", - "integrity": "sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==", + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz", + "integrity": "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==", "dev": true, "peer": true, "engines": { @@ -61,27 +62,27 @@ } }, "node_modules/@babel/core": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.5.tgz", - "integrity": "sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.11.tgz", + "integrity": "sha512-lh7RJrtPdhibbxndr6/xx0w8+CVlY5FJZiaSz908Fpy+G0xkBFTvwLcKJFF4PJxVfGhVWNebikpWGnOoC71juQ==", "dev": true, "peer": true, "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helpers": "^7.22.5", - "@babel/parser": "^7.22.5", + "@babel/code-frame": "^7.22.10", + "@babel/generator": "^7.22.10", + "@babel/helper-compilation-targets": "^7.22.10", + "@babel/helper-module-transforms": "^7.22.9", + "@babel/helpers": "^7.22.11", + "@babel/parser": "^7.22.11", "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5", + "@babel/traverse": "^7.22.11", + "@babel/types": "^7.22.11", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" + "json5": "^2.2.3", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -92,13 +93,13 @@ } }, "node_modules/@babel/generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz", - "integrity": "sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==", + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz", + "integrity": "sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==", "dev": true, "peer": true, "dependencies": { - "@babel/types": "^7.22.5", + "@babel/types": "^7.22.10", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" @@ -108,23 +109,20 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz", - "integrity": "sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==", + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz", + "integrity": "sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==", "dev": true, "peer": true, "dependencies": { - "@babel/compat-data": "^7.22.5", + "@babel/compat-data": "^7.22.9", "@babel/helper-validator-option": "^7.22.5", - "browserslist": "^4.21.3", + "browserslist": "^4.21.9", "lru-cache": "^5.1.1", - "semver": "^6.3.0" + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-environment-visitor": { @@ -178,23 +176,23 @@ } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", - "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz", + "integrity": "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==", "dev": true, "peer": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-module-imports": "^7.22.5", "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.5" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-simple-access": { @@ -211,9 +209,9 @@ } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz", - "integrity": "sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==", + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "dev": true, "peer": true, "dependencies": { @@ -253,28 +251,28 @@ } }, "node_modules/@babel/helpers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz", - "integrity": "sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.11.tgz", + "integrity": "sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==", "dev": true, "peer": true, "dependencies": { "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.22.11", + "@babel/types": "^7.22.11" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", - "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz", + "integrity": "sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==", "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", - "chalk": "^2.0.0", + "chalk": "^2.4.2", "js-tokens": "^4.0.0" }, "engines": { @@ -282,9 +280,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", - "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", + "version": "7.22.14", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.14.tgz", + "integrity": "sha512-1KucTHgOvaw/LzCVrEOAyXkr9rQlp0A1HiHRYnSUE9dmb8PvPW7o5sscg+5169r54n3vGlbx6GevTE/Iw/P3AQ==", "dev": true, "peer": true, "bin": { @@ -310,20 +308,20 @@ } }, "node_modules/@babel/traverse": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz", - "integrity": "sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.11.tgz", + "integrity": "sha512-mzAenteTfomcB7mfPtyi+4oe5BZ6MXxWcn4CX+h4IRJ+OOGXBrWU6jDQavkQI9Vuc5P+donFabBfFCcmWka9lQ==", "dev": true, "peer": true, "dependencies": { - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.5", + "@babel/code-frame": "^7.22.10", + "@babel/generator": "^7.22.10", "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-function-name": "^7.22.5", "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.22.11", + "@babel/types": "^7.22.11", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -332,9 +330,9 @@ } }, "node_modules/@babel/types": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", - "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.11.tgz", + "integrity": "sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg==", "dev": true, "peer": true, "dependencies": { @@ -407,9 +405,9 @@ } }, "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", "dev": true, "engines": { "node": ">=6.0.0" @@ -425,9 +423,9 @@ } }, "node_modules/@jridgewell/source-map": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.3.tgz", - "integrity": "sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", "dev": true, "dependencies": { "@jridgewell/gen-mapping": "^0.3.0", @@ -441,21 +439,15 @@ "dev": true }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", "dev": true, "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true - }, "node_modules/@leichtgewicht/ip-codec": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", @@ -581,9 +573,9 @@ } }, "node_modules/@types/eslint": { - "version": "8.40.2", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.40.2.tgz", - "integrity": "sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ==", + "version": "8.44.2", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.2.tgz", + "integrity": "sha512-sdPRb9K6iL5XZOmBubg8yiFp5yS/JdUDQsq5e6h95km91MCYMuvp7mh1fjPEYUhvHepKpZOjnEaMBR4PxjWDzg==", "dev": true, "dependencies": { "@types/estree": "*", @@ -619,9 +611,9 @@ } }, "node_modules/@types/express-serve-static-core": { - "version": "4.17.35", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz", - "integrity": "sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==", + "version": "4.17.36", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.36.tgz", + "integrity": "sha512-zbivROJ0ZqLAtMzgzIUC4oNqDG9iF0lSsAqpOD9kbs5xcIM3dTiyuHvBc7R8MtWBp3AAWGaovJa+wzWPjLYW7Q==", "dev": true, "dependencies": { "@types/node": "*", @@ -664,15 +656,15 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.3.2", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.2.tgz", - "integrity": "sha512-vOBLVQeCQfIcF/2Y7eKFTqrMnizK5lRNQ7ykML/5RuwVXVWxYkgwS7xbt4B6fKCUPgbSL5FSsjHQpaGQP/dQmw==", + "version": "20.5.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.7.tgz", + "integrity": "sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==", "dev": true }, "node_modules/@types/qs": { - "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "version": "6.9.8", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.8.tgz", + "integrity": "sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg==", "dev": true }, "node_modules/@types/range-parser": { @@ -961,9 +953,9 @@ } }, "node_modules/acorn": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", - "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -1462,12 +1454,12 @@ } }, "node_modules/babel-loader": { - "version": "9.1.2", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.2.tgz", - "integrity": "sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==", + "version": "9.1.3", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.3.tgz", + "integrity": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==", "dev": true, "dependencies": { - "find-cache-dir": "^3.3.2", + "find-cache-dir": "^4.0.0", "schema-utils": "^4.0.0" }, "engines": { @@ -2060,9 +2052,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.9", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", - "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "version": "4.21.10", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", + "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", "dev": true, "funding": [ { @@ -2079,9 +2071,9 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001503", - "electron-to-chromium": "^1.4.431", - "node-releases": "^2.0.12", + "caniuse-lite": "^1.0.30001517", + "electron-to-chromium": "^1.4.477", + "node-releases": "^2.0.13", "update-browserslist-db": "^1.0.11" }, "bin": { @@ -2172,9 +2164,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001508", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001508.tgz", - "integrity": "sha512-sdQZOJdmt3GJs1UMNpCCCyeuS2IEGLXnHyAo9yIO5JJDjbjoVRij4M1qep6P6gFpptD1PqIYgzM+gwJbOi92mw==", + "version": "1.0.30001524", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001524.tgz", + "integrity": "sha512-Jj917pJtYg9HSJBF95HVX3Cdr89JUyLT4IZ8SvM5aDRni95swKgYi3TgYLH5hnGfPE/U1dg6IfZ50UsIlLkwSA==", "dev": true, "funding": [ { @@ -2359,10 +2351,10 @@ "node": ">= 12" } }, - "node_modules/commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "node_modules/common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", "dev": true }, "node_modules/compressible": { @@ -2709,9 +2701,9 @@ "dev": true }, "node_modules/dns-packet": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.0.tgz", - "integrity": "sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==", + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", + "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", "dev": true, "dependencies": { "@leichtgewicht/ip-codec": "^2.0.1" @@ -2817,9 +2809,9 @@ "dev": true }, "node_modules/electron-to-chromium": { - "version": "1.4.442", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.442.tgz", - "integrity": "sha512-RkrZF//Ya+0aJq2NM3OdisNh5ZodZq1rdXOS96G8DdDgpDKqKE81yTbbQ3F/4CKm1JBPsGu1Lp/akkna2xO06Q==", + "version": "1.4.506", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.506.tgz", + "integrity": "sha512-xxGct4GPAKSRlrLBtJxJFYy74W11zX6PO9GyHgl/U+2s3Dp0ZEwAklDfNHXOWcvH7zWMpsmgbR0ggEuaYAVvHA==", "dev": true }, "node_modules/emoji-regex": { @@ -2940,15 +2932,6 @@ "source-map": "~0.6.1" } }, - "node_modules/escodegen/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, "node_modules/escodegen/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -2972,6 +2955,15 @@ "node": ">=8.0.0" } }, + "node_modules/eslint-scope/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, "node_modules/esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", @@ -2997,7 +2989,7 @@ "node": ">=4.0" } }, - "node_modules/esrecurse/node_modules/estraverse": { + "node_modules/estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", @@ -3006,15 +2998,6 @@ "node": ">=4.0" } }, - "node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, "node_modules/esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", @@ -3086,6 +3069,18 @@ "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, + "node_modules/execa/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/express": { "version": "4.18.2", "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", @@ -3190,21 +3185,6 @@ "@types/yauzl": "^2.9.1" } }, - "node_modules/extract-zip/node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/extsprintf": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", @@ -3221,9 +3201,9 @@ "dev": true }, "node_modules/fast-fifo": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.0.tgz", - "integrity": "sha512-IgfweLvEpwyA4WgiQe9Nx6VV2QkML2NkvZnk1oKnIzXgXdWxuhF7zw4DvLTPZJn6PIUneiAXPF24QmoEqHTjyw==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", "dev": true }, "node_modules/fast-json-stable-stringify": { @@ -3321,33 +3301,35 @@ "dev": true }, "node_modules/find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz", + "integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==", "dev": true, "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" + "common-path-prefix": "^3.0.0", + "pkg-dir": "^7.0.0" }, "engines": { - "node": ">=8" + "node": ">=14.16" }, "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", "dev": true, "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/follow-redirects": { @@ -3458,9 +3440,9 @@ "dev": true }, "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, "hasInstallScript": true, "optional": true, @@ -3512,12 +3494,15 @@ } }, "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -4003,15 +3988,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/import-fresh/node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true, - "engines": { - "node": ">=4" - } - }, "node_modules/import-local": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", @@ -4031,6 +4007,79 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/import-local/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-local/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", @@ -4099,9 +4148,9 @@ } }, "node_modules/is-core-module": { - "version": "2.12.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", - "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", "dev": true, "dependencies": { "has": "^1.0.3" @@ -4296,9 +4345,9 @@ } }, "node_modules/joi": { - "version": "17.9.2", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.2.tgz", - "integrity": "sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==", + "version": "17.10.0", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.10.0.tgz", + "integrity": "sha512-hrazgRSlhzacZ69LdcKfhi3Vu13z2yFfoAzmEov3yFIJlatTdVGUW6vle1zjH8qkzdCn/qGw8rapjqsObbYXAg==", "dev": true, "dependencies": { "@hapi/hoek": "^9.0.0", @@ -4450,15 +4499,18 @@ } }, "node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", + "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", "dev": true, "dependencies": { - "p-locate": "^4.1.0" + "p-locate": "^6.0.0" }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/lodash": { @@ -4498,21 +4550,6 @@ "yallist": "^3.0.2" } }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", @@ -4721,9 +4758,9 @@ } }, "node_modules/node-fetch": { - "version": "2.6.12", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.12.tgz", - "integrity": "sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==", + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "dev": true, "dependencies": { "whatwg-url": "^5.0.0" @@ -4750,9 +4787,9 @@ } }, "node_modules/node-releases": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", - "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", "dev": true }, "node_modules/normalize-path": { @@ -4893,30 +4930,33 @@ } }, "node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", "dev": true, "dependencies": { - "p-try": "^2.0.0" + "yocto-queue": "^1.0.0" }, "engines": { - "node": ">=6" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", "dev": true, "dependencies": { - "p-limit": "^2.2.0" + "p-limit": "^4.0.0" }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-retry": { @@ -5034,12 +5074,12 @@ } }, "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", "dev": true, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, "node_modules/path-is-absolute": { @@ -5121,15 +5161,18 @@ } }, "node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz", + "integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==", "dev": true, "dependencies": { - "find-up": "^4.0.0" + "find-up": "^6.3.0" }, "engines": { - "node": ">=8" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/pretty-error": { @@ -5549,12 +5592,12 @@ "dev": true }, "node_modules/resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", + "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", "dev": true, "dependencies": { - "is-core-module": "^2.11.0", + "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, @@ -5577,7 +5620,7 @@ "node": ">=8" } }, - "node_modules/resolve-from": { + "node_modules/resolve-cwd/node_modules/resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", @@ -5586,6 +5629,15 @@ "node": ">=8" } }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/retry": { "version": "0.13.1", "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", @@ -5717,10 +5769,11 @@ } }, "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "peer": true, "bin": { "semver": "bin/semver.js" } @@ -6153,9 +6206,9 @@ } }, "node_modules/streamx": { - "version": "2.15.0", - "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.15.0.tgz", - "integrity": "sha512-HcxY6ncGjjklGs1xsP1aR71INYcsXFJet5CU1CHqihQ2J5nOsbd4OjgjHO42w/4QNv9gZb3BueV+Vxok5pLEXg==", + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.15.1.tgz", + "integrity": "sha512-fQMzy2O/Q47rgwErk/eGeLu/roaFWV0jVsogDmrszM9uIw8L5OA+t+V93MgYlufNptfjmYR1tOMWhei/Eh7TQA==", "dev": true, "dependencies": { "fast-fifo": "^1.1.0", @@ -6262,9 +6315,9 @@ } }, "node_modules/terser": { - "version": "5.18.2", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.18.2.tgz", - "integrity": "sha512-Ah19JS86ypbJzTzvUCX7KOsEIhDaRONungA4aYBjEP3JZRf4ocuDzTg4QWZnPn9DEMiMYGJPiSOy7aykoCc70w==", + "version": "5.19.3", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.19.3.tgz", + "integrity": "sha512-pQzJ9UJzM0IgmT4FAtYI6+VqFf0lj/to58AV0Xfgg0Up37RyPG7Al+1cepC6/BVuAxR9oNb41/DL4DEoHJvTdg==", "dev": true, "dependencies": { "@jridgewell/source-map": "^0.3.3", @@ -6428,9 +6481,9 @@ } }, "node_modules/ts-loader": { - "version": "9.4.3", - "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.3.tgz", - "integrity": "sha512-n3hBnm6ozJYzwiwt5YRiJZkzktftRpMiBApHaJPoWLA+qetQBAXkHqCLM6nwSdRDimqVtA5ocIkcTRLMTt7yzA==", + "version": "9.4.4", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.4.tgz", + "integrity": "sha512-MLukxDHBl8OJ5Dk3y69IsKVFRA/6MwzEqBgh+OXMPB/OD01KQuWPFd1WAQP8a5PeSCAxfnkhiuWqfmFJzJQt9w==", "dev": true, "dependencies": { "chalk": "^4.1.0", @@ -6517,9 +6570,9 @@ } }, "node_modules/ts-loader/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -6599,9 +6652,9 @@ "dev": true }, "node_modules/tslib": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", - "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", "dev": true }, "node_modules/tunnel-agent": { @@ -6636,16 +6689,16 @@ } }, "node_modules/typescript": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", - "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", + "version": "4.7.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", + "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", "dev": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" }, "engines": { - "node": ">=14.17" + "node": ">=4.2.0" } }, "node_modules/unbzip2-stream": { @@ -6823,9 +6876,9 @@ "dev": true }, "node_modules/webpack": { - "version": "5.88.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.0.tgz", - "integrity": "sha512-O3jDhG5e44qIBSi/P6KpcCcH7HD+nYIHVBhdWFxcLOcIGN8zGo5nqF3BjyNCxIh4p1vFdNnreZv2h2KkoAw3lw==", + "version": "5.88.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", + "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", "dev": true, "dependencies": { "@types/eslint-scope": "^3.7.3", @@ -7237,6 +7290,18 @@ "engines": { "node": ">=6" } + }, + "node_modules/yocto-queue": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "dev": true, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } } } } diff --git a/ecosystem-tests/ts-browser-webpack/package.json b/ecosystem-tests/ts-browser-webpack/package.json index 59dfc3c15..02f8a6414 100644 --- a/ecosystem-tests/ts-browser-webpack/package.json +++ b/ecosystem-tests/ts-browser-webpack/package.json @@ -21,7 +21,7 @@ "start-server-and-test": "^2.0.0", "ts-loader": "^9.4.3", "ts-node": "^10.9.1", - "typescript": "^5.0.4", + "typescript": "4.7.4", "webpack": "^5.87.0", "webpack-cli": "^5.0.2", "webpack-dev-server": "^4.15.1" diff --git a/ecosystem-tests/vercel-edge/package-lock.json b/ecosystem-tests/vercel-edge/package-lock.json index cbdd742a6..7f7054032 100644 --- a/ecosystem-tests/vercel-edge/package-lock.json +++ b/ecosystem-tests/vercel-edge/package-lock.json @@ -1,7 +1,7 @@ { "name": "vercel-edge", "version": "0.1.0", - "lockfileVersion": 2, + "lockfileVersion": 3, "requires": true, "packages": { "": { @@ -18,7 +18,7 @@ "@types/react": "18.2.13", "@types/react-dom": "18.2.6", "edge-runtime": "^2.4.3", - "typescript": "5.1.6", + "typescript": "4.7.4", "vercel": "^31.0.0" } }, @@ -36,9 +36,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", - "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", + "version": "7.22.14", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.14.tgz", + "integrity": "sha512-1KucTHgOvaw/LzCVrEOAyXkr9rQlp0A1HiHRYnSUE9dmb8PvPW7o5sscg+5169r54n3vGlbx6GevTE/Iw/P3AQ==", "peer": true, "bin": { "parser": "bin/babel-parser.js" @@ -79,12 +79,12 @@ } }, "node_modules/@edge-runtime/format": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@edge-runtime/format/-/format-2.1.0.tgz", - "integrity": "sha512-gc2qbYEIIJRczBApBPznVI1c5vZgzrZQOsFZnAxxFiYah9qldHiu1YEitzSvXI8X8ZgvAguuIiyIbpWz17nlXA==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@edge-runtime/format/-/format-2.2.0.tgz", + "integrity": "sha512-gPrS6AVw/qJJL0vcxMXv4kFXCU3ZTCD1uuJpwX15YxHV8BgU9OG5v9LrkkXcr96PBT/9epypfNJMhlWADuEziw==", "dev": true, "engines": { - "node": ">=14" + "node": ">=16" } }, "node_modules/@edge-runtime/node-utils": { @@ -97,24 +97,24 @@ } }, "node_modules/@edge-runtime/primitives": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.3.tgz", - "integrity": "sha512-YnfMWMRQABAH8IsnFMJWMW+SyB4ZeYBPnR7V0aqdnew7Pq60cbH5DyFjS/FhiLwvHQk9wBREmXD7PP0HooEQ1A==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.1.0.tgz", + "integrity": "sha512-yxr1QM/lC8nrU38zxePeDqVeIjwsJ83gKGTH8YJ4CoHTv3q+6xEeqRIT+/9IPX/FApWYtnxHauhNqr6CHRj5YA==", "dev": true, "engines": { - "node": ">=14" + "node": ">=16" } }, "node_modules/@edge-runtime/vm": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.3.tgz", - "integrity": "sha512-SPfI1JeIRNs/4EEE2Oc0X6gG3RqjD1TnKu2lwmwFXq0435xgZGKhc3UiKkYAdoMn2dNFD73nlabMKHBRoMRpxg==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.1.0.tgz", + "integrity": "sha512-Y2JZgJP+4byI17SiDeEZhvBUvJ+om7E5ll/jrS7aGRpet5qKnJSsGep6xxhMjqT/j8ulFvTMN/kdlMMy5pEKBQ==", "dev": true, "dependencies": { - "@edge-runtime/primitives": "3.0.3" + "@edge-runtime/primitives": "3.1.0" }, "engines": { - "node": ">=14" + "node": ">=16" } }, "node_modules/@jridgewell/gen-mapping": { @@ -132,9 +132,9 @@ } }, "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", "engines": { "node": ">=6.0.0" } @@ -164,9 +164,9 @@ } }, "node_modules/@mapbox/node-pre-gyp": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz", - "integrity": "sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==", + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz", + "integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==", "dev": true, "dependencies": { "detect-libc": "^2.0.0", @@ -183,22 +183,10 @@ "node-pre-gyp": "bin/node-pre-gyp" } }, - "node_modules/@mapbox/node-pre-gyp/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/@mapbox/node-pre-gyp/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -398,6 +386,12 @@ "node": ">= 8.0.0" } }, + "node_modules/@rollup/pluginutils/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true + }, "node_modules/@sinclair/typebox": { "version": "0.25.24", "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", @@ -424,28 +418,6 @@ "path-browserify": "^1.0.1" } }, - "node_modules/@ts-morph/common/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/@ts-morph/common/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/@tsconfig/node10": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", @@ -531,9 +503,9 @@ "dev": true }, "node_modules/@vercel/build-utils": { - "version": "6.8.2", - "resolved": "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-6.8.2.tgz", - "integrity": "sha512-pyDBREAzaLBM3zoURCCKjnKIqtqPprKcwDdd9eBTGI32qOSpbwswtyqtgj2zH/Ro0LI61jCr6sK87JHILCr1sg==", + "version": "6.8.3", + "resolved": "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-6.8.3.tgz", + "integrity": "sha512-C86OPuPAvG/pSr27DPKecmptkYYsgyhOKdHTLv9jI3Pv1yvru78k+JjrAyn7N+0ev75KNV0Prv4P3p76168ePw==", "dev": true }, "node_modules/@vercel/error-utils": { @@ -553,14 +525,14 @@ } }, "node_modules/@vercel/gatsby-plugin-vercel-builder": { - "version": "1.3.16", - "resolved": "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.16.tgz", - "integrity": "sha512-T59fdopfGUvS7VX6DLQv89foG87/Bn9Oc3afo4A8fhQBA6XPj+0h0VyDmUGErVYJRgqnKRAMuyhKWsr/rhCvsQ==", + "version": "1.3.18", + "resolved": "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.18.tgz", + "integrity": "sha512-E9zk4lDiXigI5UdATt17ilvv+MA25U8QjH5OWqhJn/N3oNl0oZTm2kmXFxfV5lYyJOzAroAVbWZSVtgUMWtGng==", "dev": true, "dependencies": { "@sinclair/typebox": "0.25.24", - "@vercel/build-utils": "6.8.2", - "@vercel/node": "2.15.8", + "@vercel/build-utils": "6.8.3", + "@vercel/node": "2.15.10", "@vercel/routing-utils": "2.2.1", "esbuild": "0.14.47", "etag": "1.8.1", @@ -580,9 +552,9 @@ "dev": true }, "node_modules/@vercel/next": { - "version": "3.9.3", - "resolved": "https://registry.npmjs.org/@vercel/next/-/next-3.9.3.tgz", - "integrity": "sha512-jHuw1HYzaLt5qzJm+U1ydzKMSM9ptW5vHZ3AkFqkav7qaCDrvV0SKOiNQ8xoJhBLNFuXQY6Z4l8Ag86kUYevGA==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/@vercel/next/-/next-3.9.4.tgz", + "integrity": "sha512-6qH/dNSEEN2pQW5iVi6RUfjro6v9mxdXLtiRf65gQim89CXfPR9CKcCW3AxcKSkYPX9Q7fPiaEGwTr68fPklCw==", "dev": true }, "node_modules/@vercel/nft": { @@ -610,10 +582,16 @@ "node": ">=14" } }, + "node_modules/@vercel/nft/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true + }, "node_modules/@vercel/node": { - "version": "2.15.8", - "resolved": "https://registry.npmjs.org/@vercel/node/-/node-2.15.8.tgz", - "integrity": "sha512-G8+rC3mAouBFonsCKeQ9nINv7WL4SeHa6qx+bW/6BQAFc/eLKfQNa04t6ZYKLiXZQSw4COSC3g2afh7ejYVvVg==", + "version": "2.15.10", + "resolved": "https://registry.npmjs.org/@vercel/node/-/node-2.15.10.tgz", + "integrity": "sha512-IfnqnKAJlL1+0FSDJgxoe9J3kfYAgPGDjz4aO/H5FSjvqP7cKJnns1F9GsQq4pM499+TY8T8mKAdos7/m+WOEw==", "dev": true, "dependencies": { "@edge-runtime/node-utils": "2.0.3", @@ -621,12 +599,12 @@ "@edge-runtime/vm": "3.0.1", "@types/node": "14.18.33", "@types/node-fetch": "2.6.3", - "@vercel/build-utils": "6.8.2", + "@vercel/build-utils": "6.8.3", "@vercel/error-utils": "1.0.10", "@vercel/static-config": "2.0.17", "async-listen": "3.0.0", "content-type": "1.0.5", - "edge-runtime": "2.4.3", + "edge-runtime": "2.4.4", "esbuild": "0.14.47", "exit-hook": "2.2.1", "node-fetch": "2.6.9", @@ -636,6 +614,15 @@ "typescript": "4.9.5" } }, + "node_modules/@vercel/node/node_modules/@edge-runtime/format": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@edge-runtime/format/-/format-2.1.0.tgz", + "integrity": "sha512-gc2qbYEIIJRczBApBPznVI1c5vZgzrZQOsFZnAxxFiYah9qldHiu1YEitzSvXI8X8ZgvAguuIiyIbpWz17nlXA==", + "dev": true, + "engines": { + "node": ">=14" + } + }, "node_modules/@vercel/node/node_modules/@edge-runtime/primitives": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-2.1.2.tgz", @@ -672,10 +659,19 @@ "integrity": "sha512-qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg==", "dev": true }, + "node_modules/@vercel/node/node_modules/async-listen": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/async-listen/-/async-listen-3.0.0.tgz", + "integrity": "sha512-V+SsTpDqkrWTimiotsyl33ePSjA5/KrithwupuvJ6ztsqPvGv6ge4OredFhPffVXiLN/QUWvE0XcqJaYgt6fOg==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, "node_modules/@vercel/node/node_modules/edge-runtime": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.4.3.tgz", - "integrity": "sha512-Amv/P+OJhxopvoVXFr7UXAKheBpdLeCcdR5Vw4GSdNFDWVny9sioQbczjEKPLER5WsMXl17P+llS011Xftducw==", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.4.4.tgz", + "integrity": "sha512-uq1YdIxkMDsBYLdSSp/w62PciCL46ic4m1Z/2G6N8RcAPI8p35O8u6hJQT83j28Dnt4U5iyvmwFMYouHMK51uA==", "dev": true, "dependencies": { "@edge-runtime/format": "2.1.0", @@ -747,12 +743,12 @@ } }, "node_modules/@vercel/remix-builder": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-1.9.1.tgz", - "integrity": "sha512-yOxGKn3uhp3eYxIE4AZVjssv9L+7sZcnS04d+6qPNvuN0WAuN7pi/Jx0ebo4IMgFQmvK6Ws+xwq9UDCs37jcow==", + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-1.10.1.tgz", + "integrity": "sha512-qkK8Lv9KR4BVmLreKpwtJ9iaKh0NKF9SMZSsT5rLdX8F6EpkayUwSN3EEv4QN/9wFfEb8s1Nf2RY5Pj0zo8Itw==", "dev": true, "dependencies": { - "@vercel/build-utils": "6.8.2", + "@vercel/build-utils": "6.8.3", "@vercel/nft": "0.22.5", "@vercel/static-config": "2.0.17", "path-to-regexp": "6.2.1", @@ -760,18 +756,6 @@ "ts-morph": "12.0.0" } }, - "node_modules/@vercel/remix-builder/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/@vercel/remix-builder/node_modules/semver": { "version": "7.3.8", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", @@ -812,13 +796,13 @@ "dev": true }, "node_modules/@vercel/static-build": { - "version": "1.3.44", - "resolved": "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.3.44.tgz", - "integrity": "sha512-yn2/92/kvEvfKAVBLxzSm0XePaZVoYQ4hvO5NCGzZXa5iqS+hQ3kYCz1w2EyEpsGdCBQaR+SCYKqv5kmXvxIHw==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.4.0.tgz", + "integrity": "sha512-rCFVBve9nFaXrqP0pGiPaDciTTJ8CHeage8blF8xOEYMYdFRCg5nzFAOPERwUvl80RNpZrnGC7eJKxTHxfY2Ew==", "dev": true, "dependencies": { "@vercel/gatsby-plugin-vercel-analytics": "1.0.10", - "@vercel/gatsby-plugin-vercel-builder": "1.3.16" + "@vercel/gatsby-plugin-vercel-builder": "1.3.18" } }, "node_modules/@vercel/static-config": { @@ -866,6 +850,12 @@ "source-map-js": "^1.0.2" } }, + "node_modules/@vue/compiler-core/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "peer": true + }, "node_modules/@vue/compiler-dom": { "version": "3.3.4", "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz", @@ -894,6 +884,12 @@ "source-map-js": "^1.0.2" } }, + "node_modules/@vue/compiler-sfc/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "peer": true + }, "node_modules/@vue/compiler-ssr": { "version": "3.3.4", "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz", @@ -926,6 +922,12 @@ "magic-string": "^0.30.0" } }, + "node_modules/@vue/reactivity-transform/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "peer": true + }, "node_modules/@vue/runtime-core": { "version": "3.3.4", "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.4.tgz", @@ -1086,6 +1088,12 @@ "node": ">=10" } }, + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, "node_modules/aria-query": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", @@ -1096,9 +1104,9 @@ } }, "node_modules/async-listen": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/async-listen/-/async-listen-3.0.0.tgz", - "integrity": "sha512-V+SsTpDqkrWTimiotsyl33ePSjA5/KrithwupuvJ6ztsqPvGv6ge4OredFhPffVXiLN/QUWvE0XcqJaYgt6fOg==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/async-listen/-/async-listen-3.0.1.tgz", + "integrity": "sha512-cWMaNwUJnf37C/S5TfCkk/15MwbPRwVYALA2jtjkbHjCmAPiDXyNJy2q3p1KAZzDLHAWyarUWSujUoHR4pEgrA==", "dev": true, "engines": { "node": ">= 14" @@ -1140,6 +1148,16 @@ "file-uri-to-path": "1.0.0" } }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, "node_modules/braces": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", @@ -1164,9 +1182,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001509", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001509.tgz", - "integrity": "sha512-2uDDk+TRiTX5hMcUYT/7CSyzMZxjfGu0vAUjS2g0LSD8UoXOv0LtpH4LxGMemsiPq6LCVIUjNwVM0erkOkGCDA==", + "version": "1.0.30001524", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001524.tgz", + "integrity": "sha512-Jj917pJtYg9HSJBF95HVX3Cdr89JUyLT4IZ8SvM5aDRni95swKgYi3TgYLH5hnGfPE/U1dg6IfZ50UsIlLkwSA==", "funding": [ { "type": "opencollective", @@ -1215,15 +1233,6 @@ "periscopic": "^3.1.0" } }, - "node_modules/code-red/node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "peer": true, - "dependencies": { - "@types/estree": "^1.0.0" - } - }, "node_modules/color-support": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", @@ -1340,9 +1349,9 @@ } }, "node_modules/detect-libc": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", - "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.2.tgz", + "integrity": "sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==", "dev": true, "engines": { "node": ">=8" @@ -1358,14 +1367,14 @@ } }, "node_modules/edge-runtime": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.4.4.tgz", - "integrity": "sha512-uq1YdIxkMDsBYLdSSp/w62PciCL46ic4m1Z/2G6N8RcAPI8p35O8u6hJQT83j28Dnt4U5iyvmwFMYouHMK51uA==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.5.0.tgz", + "integrity": "sha512-QgDNX6R+RPwhY3+vqHpvYE4XUoB/cFG60nGBKu9pmPOJxQleeTCj2F5CHimIpNqex9h1Cy2Y3tuQ+Vq2GzmZIA==", "dev": true, "dependencies": { - "@edge-runtime/format": "2.1.0", - "@edge-runtime/vm": "3.0.3", - "async-listen": "3.0.0", + "@edge-runtime/format": "2.2.0", + "@edge-runtime/vm": "3.1.0", + "async-listen": "3.0.1", "mri": "1.2.0", "picocolors": "1.0.0", "pretty-bytes": "5.6.0", @@ -1377,7 +1386,7 @@ "edge-runtime": "dist/cli/index.js" }, "engines": { - "node": ">=14" + "node": ">=16" } }, "node_modules/emoji-regex": { @@ -1742,9 +1751,13 @@ } }, "node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "peer": true, + "dependencies": { + "@types/estree": "^1.0.0" + } }, "node_modules/etag": { "version": "1.8.1", @@ -1782,9 +1795,9 @@ "dev": true }, "node_modules/fast-glob": { - "version": "3.2.11", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", - "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", "dev": true, "dependencies": { "@nodelib/fs.stat": "^2.0.2", @@ -1871,6 +1884,18 @@ "node": ">= 8" } }, + "node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -1940,28 +1965,6 @@ "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" }, - "node_modules/glob/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/glob/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", @@ -2101,13 +2104,25 @@ "loose-envify": "cli.js" } }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/magic-string": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz", - "integrity": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==", + "version": "0.30.3", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.3.tgz", + "integrity": "sha512-B7xGbll2fG/VjP+SWg4sX3JynwIU0mjoTc6MPpKNuIvftk6u6vqhDnk1R80b8C2GBR6ywqy+1DcKBrevBg+bmw==", "peer": true, "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.13" + "@jridgewell/sourcemap-codec": "^1.4.15" }, "engines": { "node": ">=12" @@ -2183,14 +2198,23 @@ "node": ">= 0.6" } }, - "node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "yallist": "^4.0.0" + "brace-expansion": "^1.1.7" }, + "engines": { + "node": "*" + } + }, + "node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "dev": true, "engines": { "node": ">=8" } @@ -2208,6 +2232,18 @@ "node": ">= 8" } }, + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/mkdirp": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", @@ -2323,9 +2359,9 @@ } }, "node_modules/node-gyp-build": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", - "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.1.tgz", + "integrity": "sha512-24vnklJmyRS8ViBNI8KbtK/r/DmXQMRiOMXTNz2nrTnAYUwjmEEbnnpB/+kt+yWRv73bPsSPRFddrcIbAxSiMQ==", "dev": true, "bin": { "node-gyp-build": "bin.js", @@ -2419,15 +2455,6 @@ "is-reference": "^3.0.0" } }, - "node_modules/periscopic/node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "peer": true, - "dependencies": { - "@types/estree": "^1.0.0" - } - }, "node_modules/picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", @@ -2827,15 +2854,6 @@ "node": ">=16" } }, - "node_modules/svelte/node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "peer": true, - "dependencies": { - "@types/estree": "^1.0.0" - } - }, "node_modules/swr": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/swr/-/swr-2.2.0.tgz", @@ -2888,15 +2906,6 @@ "node": ">=10" } }, - "node_modules/tar/node_modules/minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/time-span": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/time-span/-/time-span-4.0.0.tgz", @@ -2983,12 +2992,6 @@ } } }, - "node_modules/ts-node/node_modules/arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "dev": true - }, "node_modules/ts-toolbelt": { "version": "6.15.5", "resolved": "https://registry.npmjs.org/ts-toolbelt/-/ts-toolbelt-6.15.5.tgz", @@ -2996,21 +2999,21 @@ "dev": true }, "node_modules/tslib": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", - "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/typescript": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", - "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", + "version": "4.7.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", + "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", "dev": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" }, "engines": { - "node": ">=14.17" + "node": ">=4.2.0" } }, "node_modules/universalify": { @@ -3052,21 +3055,21 @@ "dev": true }, "node_modules/vercel": { - "version": "31.2.2", - "resolved": "https://registry.npmjs.org/vercel/-/vercel-31.2.2.tgz", - "integrity": "sha512-g9j7h/1vunFJ33lJddMV7tgZycu6vRDXIEE+9uDYO6i+G7Is9s917tpjguQmUAT9nzmX7cwAmbx34QxGAXBpWw==", + "version": "31.4.0", + "resolved": "https://registry.npmjs.org/vercel/-/vercel-31.4.0.tgz", + "integrity": "sha512-jRzA3GyPiNckPN9aOiN63ulzgqEduTzALf4N8nh9UvCEzyEisCgtUxj2e+3xVWljdcGkj22VVij/DV4SnAXO6Q==", "dev": true, "dependencies": { - "@vercel/build-utils": "6.8.2", + "@vercel/build-utils": "6.8.3", "@vercel/go": "2.5.1", "@vercel/hydrogen": "0.0.64", - "@vercel/next": "3.9.3", - "@vercel/node": "2.15.8", + "@vercel/next": "3.9.4", + "@vercel/node": "2.15.10", "@vercel/python": "3.1.60", "@vercel/redwood": "1.1.15", - "@vercel/remix-builder": "1.9.1", + "@vercel/remix-builder": "1.10.1", "@vercel/ruby": "1.3.76", - "@vercel/static-build": "1.3.44" + "@vercel/static-build": "1.4.0" }, "bin": { "vc": "dist/index.js", @@ -3161,2295 +3164,5 @@ "url": "https://github.com/sponsors/colinhacks" } } - }, - "dependencies": { - "@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", - "peer": true, - "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@babel/parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz", - "integrity": "sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==", - "peer": true - }, - "@babel/runtime": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz", - "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "dependencies": { - "@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - } - } - }, - "@edge-runtime/format": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@edge-runtime/format/-/format-2.1.0.tgz", - "integrity": "sha512-gc2qbYEIIJRczBApBPznVI1c5vZgzrZQOsFZnAxxFiYah9qldHiu1YEitzSvXI8X8ZgvAguuIiyIbpWz17nlXA==", - "dev": true - }, - "@edge-runtime/node-utils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@edge-runtime/node-utils/-/node-utils-2.0.3.tgz", - "integrity": "sha512-JUSbi5xu/A8+D2t9B9wfirCI1J8n8q0660FfmqZgA+n3RqxD3y7SnamL1sKRE5/AbHsKs9zcqCbK2YDklbc9Bg==", - "dev": true - }, - "@edge-runtime/primitives": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.3.tgz", - "integrity": "sha512-YnfMWMRQABAH8IsnFMJWMW+SyB4ZeYBPnR7V0aqdnew7Pq60cbH5DyFjS/FhiLwvHQk9wBREmXD7PP0HooEQ1A==", - "dev": true - }, - "@edge-runtime/vm": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.3.tgz", - "integrity": "sha512-SPfI1JeIRNs/4EEE2Oc0X6gG3RqjD1TnKu2lwmwFXq0435xgZGKhc3UiKkYAdoMn2dNFD73nlabMKHBRoMRpxg==", - "dev": true, - "requires": { - "@edge-runtime/primitives": "3.0.3" - } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", - "peer": true, - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" - }, - "@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "peer": true - }, - "@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - }, - "@jridgewell/trace-mapping": { - "version": "0.3.19", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", - "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", - "peer": true, - "requires": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "@mapbox/node-pre-gyp": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz", - "integrity": "sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==", - "dev": true, - "requires": { - "detect-libc": "^2.0.0", - "https-proxy-agent": "^5.0.0", - "make-dir": "^3.1.0", - "node-fetch": "^2.6.7", - "nopt": "^5.0.0", - "npmlog": "^5.0.1", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.11" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } - } - }, - "@next/env": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.6.tgz", - "integrity": "sha512-nqUxEtvDqFhmV1/awSg0K2XHNwkftNaiUqCYO9e6+MYmqNObpKVl7OgMkGaQ2SZnFx5YqF0t60ZJTlyJIDAijg==" - }, - "@next/swc-darwin-arm64": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.6.tgz", - "integrity": "sha512-ahi6VP98o4HV19rkOXPSUu+ovfHfUxbJQ7VVJ7gL2FnZRr7onEFC1oGQ6NQHpm8CxpIzSSBW79kumlFMOmZVjg==", - "optional": true - }, - "@next/swc-darwin-x64": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.6.tgz", - "integrity": "sha512-13cXxKFsPJIJKzUqrU5XB1mc0xbUgYsRcdH6/rB8c4NMEbWGdtD4QoK9ShN31TZdePpD4k416Ur7p+deMIxnnA==", - "optional": true - }, - "@next/swc-linux-arm64-gnu": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.6.tgz", - "integrity": "sha512-Ti+NMHEjTNktCVxNjeWbYgmZvA2AqMMI2AMlzkXsU7W4pXCMhrryAmAIoo+7YdJbsx01JQWYVxGe62G6DoCLaA==", - "optional": true - }, - "@next/swc-linux-arm64-musl": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.6.tgz", - "integrity": "sha512-OHoC6gO7XfjstgwR+z6UHKlvhqJfyMtNaJidjx3sEcfaDwS7R2lqR5AABi8PuilGgi0BO0O0sCXqLlpp3a0emQ==", - "optional": true - }, - "@next/swc-linux-x64-gnu": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.6.tgz", - "integrity": "sha512-zHZxPGkUlpfNJCboUrFqwlwEX5vI9LSN70b8XEb0DYzzlrZyCyOi7hwDp/+3Urm9AB7YCAJkgR5Sp1XBVjHdfQ==", - "optional": true - }, - "@next/swc-linux-x64-musl": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.6.tgz", - "integrity": "sha512-K/Y8lYGTwTpv5ME8PSJxwxLolaDRdVy+lOd9yMRMiQE0BLUhtxtCWC9ypV42uh9WpLjoaD0joOsB9Q6mbrSGJg==", - "optional": true - }, - "@next/swc-win32-arm64-msvc": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.6.tgz", - "integrity": "sha512-U6LtxEUrjBL2tpW+Kr1nHCSJWNeIed7U7l5o7FiKGGwGgIlFi4UHDiLI6TQ2lxi20fAU33CsruV3U0GuzMlXIw==", - "optional": true - }, - "@next/swc-win32-ia32-msvc": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.6.tgz", - "integrity": "sha512-eEBeAqpCfhdPSlCZCayjCiyIllVqy4tcqvm1xmg3BgJG0G5ITiMM4Cw2WVeRSgWDJqQGRyyb+q8Y2ltzhXOWsQ==", - "optional": true - }, - "@next/swc-win32-x64-msvc": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.6.tgz", - "integrity": "sha512-OrZs94AuO3ZS5tnqlyPRNgfWvboXaDQCi5aXGve3o3C+Sj0ctMUV9+Do+0zMvvLRumR8E0PTWKvtz9n5vzIsWw==", - "optional": true - }, - "@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - } - }, - "@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true - }, - "@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - } - }, - "@rollup/pluginutils": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", - "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", - "dev": true, - "requires": { - "estree-walker": "^2.0.1", - "picomatch": "^2.2.2" - } - }, - "@sinclair/typebox": { - "version": "0.25.24", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", - "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", - "dev": true - }, - "@swc/helpers": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", - "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", - "requires": { - "tslib": "^2.4.0" - } - }, - "@ts-morph/common": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/@ts-morph/common/-/common-0.11.1.tgz", - "integrity": "sha512-7hWZS0NRpEsNV8vWJzg7FEz6V8MaLNeJOmwmghqUXTpzk16V1LLZhdo+4QvE/+zv4cVci0OviuJFnqhEfoV3+g==", - "dev": true, - "requires": { - "fast-glob": "^3.2.7", - "minimatch": "^3.0.4", - "mkdirp": "^1.0.4", - "path-browserify": "^1.0.1" - }, - "dependencies": { - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - } - } - }, - "@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", - "dev": true - }, - "@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "dev": true - }, - "@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "dev": true - }, - "@tsconfig/node16": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", - "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", - "dev": true - }, - "@types/estree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", - "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", - "peer": true - }, - "@types/json-schema": { - "version": "7.0.12", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", - "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", - "dev": true - }, - "@types/node": { - "version": "20.3.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.3.tgz", - "integrity": "sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==", - "dev": true - }, - "@types/node-fetch": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", - "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", - "dev": true, - "requires": { - "@types/node": "*", - "form-data": "^3.0.0" - } - }, - "@types/prop-types": { - "version": "15.7.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", - "dev": true - }, - "@types/react": { - "version": "18.2.13", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.13.tgz", - "integrity": "sha512-vJ+zElvi/Zn9cVXB5slX2xL8PZodPCwPRDpittQdw43JR2AJ5k3vKdgJJyneV/cYgIbLQUwXa9JVDvUZXGba+Q==", - "dev": true, - "requires": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "@types/react-dom": { - "version": "18.2.6", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.6.tgz", - "integrity": "sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==", - "dev": true, - "requires": { - "@types/react": "*" - } - }, - "@types/scheduler": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", - "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==", - "dev": true - }, - "@vercel/build-utils": { - "version": "6.8.2", - "resolved": "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-6.8.2.tgz", - "integrity": "sha512-pyDBREAzaLBM3zoURCCKjnKIqtqPprKcwDdd9eBTGI32qOSpbwswtyqtgj2zH/Ro0LI61jCr6sK87JHILCr1sg==", - "dev": true - }, - "@vercel/error-utils": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@vercel/error-utils/-/error-utils-1.0.10.tgz", - "integrity": "sha512-nsKy2sy+pjUWyKI1V/XXKspVzHMYgSalmj5+EsKWFXZbnNZicqxNtMR94J8Hs7SB4TQxh0s4KhczJtL59AVGMg==", - "dev": true - }, - "@vercel/gatsby-plugin-vercel-analytics": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-analytics/-/gatsby-plugin-vercel-analytics-1.0.10.tgz", - "integrity": "sha512-v329WHdtIce+y7oAmaWRvEx59Xfo0FxlQqK4BJG0u6VWYoKWPaflohDAiehIZf/YHCRVb59ZxnzmMOcm/LR8YQ==", - "dev": true, - "requires": { - "@babel/runtime": "7.12.1", - "web-vitals": "0.2.4" - } - }, - "@vercel/gatsby-plugin-vercel-builder": { - "version": "1.3.16", - "resolved": "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.16.tgz", - "integrity": "sha512-T59fdopfGUvS7VX6DLQv89foG87/Bn9Oc3afo4A8fhQBA6XPj+0h0VyDmUGErVYJRgqnKRAMuyhKWsr/rhCvsQ==", - "dev": true, - "requires": { - "@sinclair/typebox": "0.25.24", - "@vercel/build-utils": "6.8.2", - "@vercel/node": "2.15.8", - "@vercel/routing-utils": "2.2.1", - "esbuild": "0.14.47", - "etag": "1.8.1", - "fs-extra": "11.1.0" - } - }, - "@vercel/go": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@vercel/go/-/go-2.5.1.tgz", - "integrity": "sha512-yZGzzGmVXt2Rsy1cR0EDbst0fMhdELQY8c3jXy6/FTWJFG1e/40JYksu+WiRCxRBp8e7zfcxMrv0dN8JWRmbPQ==", - "dev": true - }, - "@vercel/hydrogen": { - "version": "0.0.64", - "resolved": "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-0.0.64.tgz", - "integrity": "sha512-1rzFB664G6Yzp7j4ezW9hvVjqnaU2BhyUdhchbsxtRuxkMpGgPBZKhjzRQHFvlmkz37XLC658T5Nb1P91b4sBw==", - "dev": true - }, - "@vercel/next": { - "version": "3.9.3", - "resolved": "https://registry.npmjs.org/@vercel/next/-/next-3.9.3.tgz", - "integrity": "sha512-jHuw1HYzaLt5qzJm+U1ydzKMSM9ptW5vHZ3AkFqkav7qaCDrvV0SKOiNQ8xoJhBLNFuXQY6Z4l8Ag86kUYevGA==", - "dev": true - }, - "@vercel/nft": { - "version": "0.22.5", - "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.22.5.tgz", - "integrity": "sha512-mug57Wd1BL7GMj9gXMgMeKUjdqO0e4u+0QLPYMFE1rwdJ+55oPy6lp3nIBCS8gOvigT62UI4QKUL2sGqcoW4Hw==", - "dev": true, - "requires": { - "@mapbox/node-pre-gyp": "^1.0.5", - "@rollup/pluginutils": "^4.0.0", - "acorn": "^8.6.0", - "async-sema": "^3.1.1", - "bindings": "^1.4.0", - "estree-walker": "2.0.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.2", - "node-gyp-build": "^4.2.2", - "resolve-from": "^5.0.0" - } - }, - "@vercel/node": { - "version": "2.15.8", - "resolved": "https://registry.npmjs.org/@vercel/node/-/node-2.15.8.tgz", - "integrity": "sha512-G8+rC3mAouBFonsCKeQ9nINv7WL4SeHa6qx+bW/6BQAFc/eLKfQNa04t6ZYKLiXZQSw4COSC3g2afh7ejYVvVg==", - "dev": true, - "requires": { - "@edge-runtime/node-utils": "2.0.3", - "@edge-runtime/primitives": "2.1.2", - "@edge-runtime/vm": "3.0.1", - "@types/node": "14.18.33", - "@types/node-fetch": "2.6.3", - "@vercel/build-utils": "6.8.2", - "@vercel/error-utils": "1.0.10", - "@vercel/static-config": "2.0.17", - "async-listen": "3.0.0", - "content-type": "1.0.5", - "edge-runtime": "2.4.3", - "esbuild": "0.14.47", - "exit-hook": "2.2.1", - "node-fetch": "2.6.9", - "path-to-regexp": "6.2.1", - "ts-morph": "12.0.0", - "ts-node": "10.9.1", - "typescript": "4.9.5" - }, - "dependencies": { - "@edge-runtime/primitives": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-2.1.2.tgz", - "integrity": "sha512-SR04SMDybALlhIYIi0hiuEUwIl0b7Sn+RKwQkX6hydg4+AKMzBNDFhj2nqHDD1+xkHArV9EhmJIb6iGjShwSzg==", - "dev": true - }, - "@edge-runtime/vm": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.1.tgz", - "integrity": "sha512-69twXLIcqVx0iNlc1vFqnXgka2CZi2c/QBAmMzXBk0M6mPG+ICCBh2dd+cv1K+HW2pfLuSW+EskkFXWGeCf1Vw==", - "dev": true, - "requires": { - "@edge-runtime/primitives": "3.0.1" - }, - "dependencies": { - "@edge-runtime/primitives": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.1.tgz", - "integrity": "sha512-l5NNDcPkKW4N6qRmB8zzpCF6uRW1S808V/zm72z7b/aWwZUYbmEPPkzyhGAW0aQxLU1pGdZ8u2gNjamdaU6RXw==", - "dev": true - } - } - }, - "@types/node": { - "version": "14.18.33", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.33.tgz", - "integrity": "sha512-qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg==", - "dev": true - }, - "edge-runtime": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.4.3.tgz", - "integrity": "sha512-Amv/P+OJhxopvoVXFr7UXAKheBpdLeCcdR5Vw4GSdNFDWVny9sioQbczjEKPLER5WsMXl17P+llS011Xftducw==", - "dev": true, - "requires": { - "@edge-runtime/format": "2.1.0", - "@edge-runtime/vm": "3.0.3", - "async-listen": "3.0.0", - "mri": "1.2.0", - "picocolors": "1.0.0", - "pretty-bytes": "5.6.0", - "pretty-ms": "7.0.1", - "signal-exit": "4.0.2", - "time-span": "4.0.0" - }, - "dependencies": { - "@edge-runtime/primitives": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.3.tgz", - "integrity": "sha512-YnfMWMRQABAH8IsnFMJWMW+SyB4ZeYBPnR7V0aqdnew7Pq60cbH5DyFjS/FhiLwvHQk9wBREmXD7PP0HooEQ1A==", - "dev": true - }, - "@edge-runtime/vm": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.3.tgz", - "integrity": "sha512-SPfI1JeIRNs/4EEE2Oc0X6gG3RqjD1TnKu2lwmwFXq0435xgZGKhc3UiKkYAdoMn2dNFD73nlabMKHBRoMRpxg==", - "dev": true, - "requires": { - "@edge-runtime/primitives": "3.0.3" - } - } - } - }, - "typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", - "dev": true - } - } - }, - "@vercel/python": { - "version": "3.1.60", - "resolved": "https://registry.npmjs.org/@vercel/python/-/python-3.1.60.tgz", - "integrity": "sha512-1aYinyTfejS8Us+sOum+RQPYcre0vF3XoL7ohL170ZCcHA0l35qV0b1slGAmLt3pqaHKYy3g/nkzUhuR8XXIrQ==", - "dev": true - }, - "@vercel/redwood": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/@vercel/redwood/-/redwood-1.1.15.tgz", - "integrity": "sha512-j0XaXe4ZpGVHG7XQSmZ3kza6s+ZtOBfRhnSxA70yCkrvPNN3tZgF3fevSKXizfL9fzVDd7Tdj++SCGWMdGfsyA==", - "dev": true, - "requires": { - "@vercel/nft": "0.22.5", - "@vercel/routing-utils": "2.2.1", - "semver": "6.1.1" - } - }, - "@vercel/remix-builder": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-1.9.1.tgz", - "integrity": "sha512-yOxGKn3uhp3eYxIE4AZVjssv9L+7sZcnS04d+6qPNvuN0WAuN7pi/Jx0ebo4IMgFQmvK6Ws+xwq9UDCs37jcow==", - "dev": true, - "requires": { - "@vercel/build-utils": "6.8.2", - "@vercel/nft": "0.22.5", - "@vercel/static-config": "2.0.17", - "path-to-regexp": "6.2.1", - "semver": "7.3.8", - "ts-morph": "12.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } - } - }, - "@vercel/routing-utils": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@vercel/routing-utils/-/routing-utils-2.2.1.tgz", - "integrity": "sha512-kzMZsvToDCDskNRZD71B9UAgstec7ujmlGH8cBEo6F/07VaFeji6GQdgd6Zwnrj+TvzQBggKoPQR64VkVY8Lzw==", - "dev": true, - "requires": { - "ajv": "^6.0.0", - "path-to-regexp": "6.1.0" - }, - "dependencies": { - "path-to-regexp": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.1.0.tgz", - "integrity": "sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==", - "dev": true - } - } - }, - "@vercel/ruby": { - "version": "1.3.76", - "resolved": "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.76.tgz", - "integrity": "sha512-J8I0B7wAn8piGoPhBroBfJWgMEJTMEL/2o8MCoCyWdaE7MRtpXhI10pj8IvcUvAECoGJ+SM1Pm+SvBqtbtZ5FQ==", - "dev": true - }, - "@vercel/static-build": { - "version": "1.3.44", - "resolved": "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.3.44.tgz", - "integrity": "sha512-yn2/92/kvEvfKAVBLxzSm0XePaZVoYQ4hvO5NCGzZXa5iqS+hQ3kYCz1w2EyEpsGdCBQaR+SCYKqv5kmXvxIHw==", - "dev": true, - "requires": { - "@vercel/gatsby-plugin-vercel-analytics": "1.0.10", - "@vercel/gatsby-plugin-vercel-builder": "1.3.16" - } - }, - "@vercel/static-config": { - "version": "2.0.17", - "resolved": "https://registry.npmjs.org/@vercel/static-config/-/static-config-2.0.17.tgz", - "integrity": "sha512-2f50OTVrN07x7pH+XNW0e7cj7T+Ufg+19+a2N3/XZBjQmV+FaMlmSLiaQ4tBxp2H8lWWHzENua7ZSSQPtRZ3/A==", - "dev": true, - "requires": { - "ajv": "8.6.3", - "json-schema-to-ts": "1.6.4", - "ts-morph": "12.0.0" - }, - "dependencies": { - "ajv": { - "version": "8.6.3", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.6.3.tgz", - "integrity": "sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - } - } - }, - "@vue/compiler-core": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.4.tgz", - "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==", - "peer": true, - "requires": { - "@babel/parser": "^7.21.3", - "@vue/shared": "3.3.4", - "estree-walker": "^2.0.2", - "source-map-js": "^1.0.2" - } - }, - "@vue/compiler-dom": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz", - "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==", - "peer": true, - "requires": { - "@vue/compiler-core": "3.3.4", - "@vue/shared": "3.3.4" - } - }, - "@vue/compiler-sfc": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz", - "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==", - "peer": true, - "requires": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.4", - "@vue/compiler-dom": "3.3.4", - "@vue/compiler-ssr": "3.3.4", - "@vue/reactivity-transform": "3.3.4", - "@vue/shared": "3.3.4", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.0", - "postcss": "^8.1.10", - "source-map-js": "^1.0.2" - } - }, - "@vue/compiler-ssr": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz", - "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==", - "peer": true, - "requires": { - "@vue/compiler-dom": "3.3.4", - "@vue/shared": "3.3.4" - } - }, - "@vue/reactivity": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.4.tgz", - "integrity": "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==", - "peer": true, - "requires": { - "@vue/shared": "3.3.4" - } - }, - "@vue/reactivity-transform": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz", - "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==", - "peer": true, - "requires": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.4", - "@vue/shared": "3.3.4", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.0" - } - }, - "@vue/runtime-core": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.4.tgz", - "integrity": "sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==", - "peer": true, - "requires": { - "@vue/reactivity": "3.3.4", - "@vue/shared": "3.3.4" - } - }, - "@vue/runtime-dom": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz", - "integrity": "sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==", - "peer": true, - "requires": { - "@vue/runtime-core": "3.3.4", - "@vue/shared": "3.3.4", - "csstype": "^3.1.1" - } - }, - "@vue/server-renderer": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.4.tgz", - "integrity": "sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==", - "peer": true, - "requires": { - "@vue/compiler-ssr": "3.3.4", - "@vue/shared": "3.3.4" - } - }, - "@vue/shared": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz", - "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==", - "peer": true - }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "acorn": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", - "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==" - }, - "acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", - "dev": true - }, - "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "requires": { - "debug": "4" - } - }, - "ai": { - "version": "2.1.34", - "resolved": "https://registry.npmjs.org/ai/-/ai-2.1.34.tgz", - "integrity": "sha512-gZawUnYhZHJ1PiE+x7iDuy2GQg67AKs0uHgdS8Jw3o/3NouGeJ/5ytyqbgHqczgvoquSpykumR+5TyRieF8x/w==", - "requires": { - "eventsource-parser": "1.0.0", - "nanoid": "3.3.6", - "solid-swr-store": "0.10.7", - "sswr": "2.0.0", - "swr": "2.2.0", - "swr-store": "0.10.6", - "swrv": "1.0.4" - } - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "optional": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true - }, - "are-we-there-yet": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", - "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", - "dev": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - } - }, - "aria-query": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", - "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", - "peer": true, - "requires": { - "dequal": "^2.0.3" - } - }, - "async-listen": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/async-listen/-/async-listen-3.0.0.tgz", - "integrity": "sha512-V+SsTpDqkrWTimiotsyl33ePSjA5/KrithwupuvJ6ztsqPvGv6ge4OredFhPffVXiLN/QUWvE0XcqJaYgt6fOg==", - "dev": true - }, - "async-sema": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz", - "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==", - "dev": true - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true - }, - "axobject-query": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", - "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", - "peer": true, - "requires": { - "dequal": "^2.0.3" - } - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "dev": true, - "requires": { - "file-uri-to-path": "1.0.0" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "requires": { - "streamsearch": "^1.1.0" - } - }, - "caniuse-lite": { - "version": "1.0.30001509", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001509.tgz", - "integrity": "sha512-2uDDk+TRiTX5hMcUYT/7CSyzMZxjfGu0vAUjS2g0LSD8UoXOv0LtpH4LxGMemsiPq6LCVIUjNwVM0erkOkGCDA==" - }, - "chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true - }, - "client-only": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", - "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" - }, - "code-block-writer": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-10.1.1.tgz", - "integrity": "sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==", - "dev": true - }, - "code-red": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/code-red/-/code-red-1.0.4.tgz", - "integrity": "sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==", - "peer": true, - "requires": { - "@jridgewell/sourcemap-codec": "^1.4.15", - "@types/estree": "^1.0.1", - "acorn": "^8.10.0", - "estree-walker": "^3.0.3", - "periscopic": "^3.1.0" - }, - "dependencies": { - "estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "peer": true, - "requires": { - "@types/estree": "^1.0.0" - } - } - } - }, - "color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", - "dev": true - }, - "content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "dev": true - }, - "convert-hrtime": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-3.0.0.tgz", - "integrity": "sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA==", - "dev": true - }, - "create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "dev": true - }, - "css-tree": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", - "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", - "peer": true, - "requires": { - "mdn-data": "2.0.30", - "source-map-js": "^1.0.1" - } - }, - "csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "dev": true - }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", - "dev": true - }, - "dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" - }, - "detect-libc": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", - "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", - "dev": true - }, - "diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "dev": true - }, - "edge-runtime": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.4.4.tgz", - "integrity": "sha512-uq1YdIxkMDsBYLdSSp/w62PciCL46ic4m1Z/2G6N8RcAPI8p35O8u6hJQT83j28Dnt4U5iyvmwFMYouHMK51uA==", - "dev": true, - "requires": { - "@edge-runtime/format": "2.1.0", - "@edge-runtime/vm": "3.0.3", - "async-listen": "3.0.0", - "mri": "1.2.0", - "picocolors": "1.0.0", - "pretty-bytes": "5.6.0", - "pretty-ms": "7.0.1", - "signal-exit": "4.0.2", - "time-span": "4.0.0" - } - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "esbuild": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.47.tgz", - "integrity": "sha512-wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA==", - "dev": true, - "requires": { - "esbuild-android-64": "0.14.47", - "esbuild-android-arm64": "0.14.47", - "esbuild-darwin-64": "0.14.47", - "esbuild-darwin-arm64": "0.14.47", - "esbuild-freebsd-64": "0.14.47", - "esbuild-freebsd-arm64": "0.14.47", - "esbuild-linux-32": "0.14.47", - "esbuild-linux-64": "0.14.47", - "esbuild-linux-arm": "0.14.47", - "esbuild-linux-arm64": "0.14.47", - "esbuild-linux-mips64le": "0.14.47", - "esbuild-linux-ppc64le": "0.14.47", - "esbuild-linux-riscv64": "0.14.47", - "esbuild-linux-s390x": "0.14.47", - "esbuild-netbsd-64": "0.14.47", - "esbuild-openbsd-64": "0.14.47", - "esbuild-sunos-64": "0.14.47", - "esbuild-windows-32": "0.14.47", - "esbuild-windows-64": "0.14.47", - "esbuild-windows-arm64": "0.14.47" - } - }, - "esbuild-android-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.47.tgz", - "integrity": "sha512-R13Bd9+tqLVFndncMHssZrPWe6/0Kpv2/dt4aA69soX4PRxlzsVpCvoJeFE8sOEoeVEiBkI0myjlkDodXlHa0g==", - "dev": true, - "optional": true - }, - "esbuild-android-arm64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.47.tgz", - "integrity": "sha512-OkwOjj7ts4lBp/TL6hdd8HftIzOy/pdtbrNA4+0oVWgGG64HrdVzAF5gxtJufAPOsEjkyh1oIYvKAUinKKQRSQ==", - "dev": true, - "optional": true - }, - "esbuild-darwin-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.47.tgz", - "integrity": "sha512-R6oaW0y5/u6Eccti/TS6c/2c1xYTb1izwK3gajJwi4vIfNs1s8B1dQzI1UiC9T61YovOQVuePDcfqHLT3mUZJA==", - "dev": true, - "optional": true - }, - "esbuild-darwin-arm64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.47.tgz", - "integrity": "sha512-seCmearlQyvdvM/noz1L9+qblC5vcBrhUaOoLEDDoLInF/VQ9IkobGiLlyTPYP5dW1YD4LXhtBgOyevoIHGGnw==", - "dev": true, - "optional": true - }, - "esbuild-freebsd-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.47.tgz", - "integrity": "sha512-ZH8K2Q8/Ux5kXXvQMDsJcxvkIwut69KVrYQhza/ptkW50DC089bCVrJZZ3sKzIoOx+YPTrmsZvqeZERjyYrlvQ==", - "dev": true, - "optional": true - }, - "esbuild-freebsd-arm64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.47.tgz", - "integrity": "sha512-ZJMQAJQsIOhn3XTm7MPQfCzEu5b9STNC+s90zMWe2afy9EwnHV7Ov7ohEMv2lyWlc2pjqLW8QJnz2r0KZmeAEQ==", - "dev": true, - "optional": true - }, - "esbuild-linux-32": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.47.tgz", - "integrity": "sha512-FxZOCKoEDPRYvq300lsWCTv1kcHgiiZfNrPtEhFAiqD7QZaXrad8LxyJ8fXGcWzIFzRiYZVtB3ttvITBvAFhKw==", - "dev": true, - "optional": true - }, - "esbuild-linux-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.47.tgz", - "integrity": "sha512-nFNOk9vWVfvWYF9YNYksZptgQAdstnDCMtR6m42l5Wfugbzu11VpMCY9XrD4yFxvPo9zmzcoUL/88y0lfJZJJw==", - "dev": true, - "optional": true - }, - "esbuild-linux-arm": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.47.tgz", - "integrity": "sha512-ZGE1Bqg/gPRXrBpgpvH81tQHpiaGxa8c9Rx/XOylkIl2ypLuOcawXEAo8ls+5DFCcRGt/o3sV+PzpAFZobOsmA==", - "dev": true, - "optional": true - }, - "esbuild-linux-arm64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.47.tgz", - "integrity": "sha512-ywfme6HVrhWcevzmsufjd4iT3PxTfCX9HOdxA7Hd+/ZM23Y9nXeb+vG6AyA6jgq/JovkcqRHcL9XwRNpWG6XRw==", - "dev": true, - "optional": true - }, - "esbuild-linux-mips64le": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.47.tgz", - "integrity": "sha512-mg3D8YndZ1LvUiEdDYR3OsmeyAew4MA/dvaEJxvyygahWmpv1SlEEnhEZlhPokjsUMfRagzsEF/d/2XF+kTQGg==", - "dev": true, - "optional": true - }, - "esbuild-linux-ppc64le": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.47.tgz", - "integrity": "sha512-WER+f3+szmnZiWoK6AsrTKGoJoErG2LlauSmk73LEZFQ/iWC+KhhDsOkn1xBUpzXWsxN9THmQFltLoaFEH8F8w==", - "dev": true, - "optional": true - }, - "esbuild-linux-riscv64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.47.tgz", - "integrity": "sha512-1fI6bP3A3rvI9BsaaXbMoaOjLE3lVkJtLxsgLHqlBhLlBVY7UqffWBvkrX/9zfPhhVMd9ZRFiaqXnB1T7BsL2g==", - "dev": true, - "optional": true - }, - "esbuild-linux-s390x": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.47.tgz", - "integrity": "sha512-eZrWzy0xFAhki1CWRGnhsHVz7IlSKX6yT2tj2Eg8lhAwlRE5E96Hsb0M1mPSE1dHGpt1QVwwVivXIAacF/G6mw==", - "dev": true, - "optional": true - }, - "esbuild-netbsd-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.47.tgz", - "integrity": "sha512-Qjdjr+KQQVH5Q2Q1r6HBYswFTToPpss3gqCiSw2Fpq/ua8+eXSQyAMG+UvULPqXceOwpnPo4smyZyHdlkcPppQ==", - "dev": true, - "optional": true - }, - "esbuild-openbsd-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.47.tgz", - "integrity": "sha512-QpgN8ofL7B9z8g5zZqJE+eFvD1LehRlxr25PBkjyyasakm4599iroUpaj96rdqRlO2ShuyqwJdr+oNqWwTUmQw==", - "dev": true, - "optional": true - }, - "esbuild-sunos-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.47.tgz", - "integrity": "sha512-uOeSgLUwukLioAJOiGYm3kNl+1wJjgJA8R671GYgcPgCx7QR73zfvYqXFFcIO93/nBdIbt5hd8RItqbbf3HtAQ==", - "dev": true, - "optional": true - }, - "esbuild-windows-32": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.47.tgz", - "integrity": "sha512-H0fWsLTp2WBfKLBgwYT4OTfFly4Im/8B5f3ojDv1Kx//kiubVY0IQunP2Koc/fr/0wI7hj3IiBDbSrmKlrNgLQ==", - "dev": true, - "optional": true - }, - "esbuild-windows-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.47.tgz", - "integrity": "sha512-/Pk5jIEH34T68r8PweKRi77W49KwanZ8X6lr3vDAtOlH5EumPE4pBHqkCUdELanvsT14yMXLQ/C/8XPi1pAtkQ==", - "dev": true, - "optional": true - }, - "esbuild-windows-arm64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.47.tgz", - "integrity": "sha512-HFSW2lnp62fl86/qPQlqw6asIwCnEsEoNIL1h2uVMgakddf+vUuMcCbtUY1i8sst7KkgHrVKCJQB33YhhOweCQ==", - "dev": true, - "optional": true - }, - "estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "dev": true - }, - "eventsource-parser": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-1.0.0.tgz", - "integrity": "sha512-9jgfSCa3dmEme2ES3mPByGXfgZ87VbP97tng1G2nWwWx6bV2nYxm2AWCrbQjXToSe+yYlqaZNtxffR9IeQr95g==" - }, - "exit-hook": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-2.2.1.tgz", - "integrity": "sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==", - "dev": true - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "fast-glob": { - "version": "3.2.11", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", - "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - } - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true, - "optional": true - }, - "fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dev": true, - "requires": { - "reusify": "^1.0.4" - } - }, - "file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "dev": true - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } - }, - "fs-extra": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", - "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "gauge": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", - "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", - "dev": true, - "requires": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "object-assign": "^4.1.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" - }, - "dependencies": { - "signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - } - } - }, - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "dependencies": { - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - } - } - }, - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "requires": { - "is-glob": "^4.0.1" - } - }, - "glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - }, - "graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", - "dev": true - }, - "https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "dev": true, - "requires": { - "agent-base": "6", - "debug": "4" - } - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true - }, - "is-reference": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.1.tgz", - "integrity": "sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==", - "peer": true, - "requires": { - "@types/estree": "*" - } - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "json-schema-to-ts": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/json-schema-to-ts/-/json-schema-to-ts-1.6.4.tgz", - "integrity": "sha512-pR4yQ9DHz6itqswtHCm26mw45FSNfQ9rEQjosaZErhn5J3J2sIViQiz8rDaezjKAhFGpmsoczYVBgGHzFw/stA==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.6", - "ts-toolbelt": "^6.15.5" - } - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true, - "optional": true - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "locate-character": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz", - "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==", - "peer": true - }, - "loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "requires": { - "js-tokens": "^3.0.0 || ^4.0.0" - } - }, - "magic-string": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz", - "integrity": "sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==", - "peer": true, - "requires": { - "@jridgewell/sourcemap-codec": "^1.4.13" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - } - }, - "make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true - }, - "mdn-data": { - "version": "2.0.30", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", - "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", - "peer": true - }, - "merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true - }, - "micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "requires": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - } - }, - "mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "dev": true - }, - "mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dev": true, - "requires": { - "mime-db": "1.52.0" - } - }, - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dev": true, - "requires": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - } - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "mri": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", - "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", - "dev": true - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" - }, - "next": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/next/-/next-13.4.6.tgz", - "integrity": "sha512-sjVqjxU+U2aXZnYt4Ud6CTLNNwWjdSfMgemGpIQJcN3Z7Jni9xRWbR0ie5fQzCg87aLqQVhKA2ud2gPoqJ9lGw==", - "requires": { - "@next/env": "13.4.6", - "@next/swc-darwin-arm64": "13.4.6", - "@next/swc-darwin-x64": "13.4.6", - "@next/swc-linux-arm64-gnu": "13.4.6", - "@next/swc-linux-arm64-musl": "13.4.6", - "@next/swc-linux-x64-gnu": "13.4.6", - "@next/swc-linux-x64-musl": "13.4.6", - "@next/swc-win32-arm64-msvc": "13.4.6", - "@next/swc-win32-ia32-msvc": "13.4.6", - "@next/swc-win32-x64-msvc": "13.4.6", - "@swc/helpers": "0.5.1", - "busboy": "1.6.0", - "caniuse-lite": "^1.0.30001406", - "postcss": "8.4.14", - "styled-jsx": "5.1.1", - "watchpack": "2.4.0", - "zod": "3.21.4" - } - }, - "node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "dev": true, - "requires": { - "whatwg-url": "^5.0.0" - } - }, - "node-gyp-build": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", - "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", - "dev": true - }, - "nopt": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", - "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", - "dev": true, - "requires": { - "abbrev": "1" - } - }, - "npmlog": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", - "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", - "dev": true, - "requires": { - "are-we-there-yet": "^2.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^3.0.0", - "set-blocking": "^2.0.0" - } - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "dev": true - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "parse-ms": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz", - "integrity": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==", - "dev": true - }, - "path-browserify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", - "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true - }, - "path-to-regexp": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz", - "integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==", - "dev": true - }, - "periscopic": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", - "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", - "peer": true, - "requires": { - "@types/estree": "^1.0.0", - "estree-walker": "^3.0.0", - "is-reference": "^3.0.0" - }, - "dependencies": { - "estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "peer": true, - "requires": { - "@types/estree": "^1.0.0" - } - } - } - }, - "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true - }, - "postcss": { - "version": "8.4.14", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", - "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", - "requires": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - } - }, - "pretty-bytes": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", - "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", - "dev": true - }, - "pretty-ms": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-7.0.1.tgz", - "integrity": "sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==", - "dev": true, - "requires": { - "parse-ms": "^2.1.0" - } - }, - "punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "dev": true - }, - "queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true - }, - "react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "requires": { - "loose-envify": "^1.1.0" - } - }, - "react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "requires": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - } - }, - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", - "dev": true - }, - "require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - }, - "reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "requires": { - "queue-microtask": "^1.2.2" - } - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - }, - "scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "requires": { - "loose-envify": "^1.1.0" - } - }, - "semver": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.1.1.tgz", - "integrity": "sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ==", - "dev": true - }, - "seroval": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/seroval/-/seroval-0.5.1.tgz", - "integrity": "sha512-ZfhQVB59hmIauJG5Ydynupy8KHyr5imGNtdDhbZG68Ufh1Ynkv9KOYOAABf71oVbQxJ8VkWnMHAjEHE7fWkH5g==", - "peer": true - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true - }, - "signal-exit": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", - "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", - "dev": true - }, - "solid-js": { - "version": "1.7.11", - "resolved": "https://registry.npmjs.org/solid-js/-/solid-js-1.7.11.tgz", - "integrity": "sha512-JkuvsHt8jqy7USsy9xJtT18aF9r2pFO+GB8JQ2XGTvtF49rGTObB46iebD25sE3qVNvIbwglXOXdALnJq9IHtQ==", - "peer": true, - "requires": { - "csstype": "^3.1.0", - "seroval": "^0.5.0" - } - }, - "solid-swr-store": { - "version": "0.10.7", - "resolved": "https://registry.npmjs.org/solid-swr-store/-/solid-swr-store-0.10.7.tgz", - "integrity": "sha512-A6d68aJmRP471aWqKKPE2tpgOiR5fH4qXQNfKIec+Vap+MGQm3tvXlT8n0I8UgJSlNAsSAUuw2VTviH2h3Vv5g==", - "requires": {} - }, - "source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" - }, - "sswr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/sswr/-/sswr-2.0.0.tgz", - "integrity": "sha512-mV0kkeBHcjcb0M5NqKtKVg/uTIYNlIIniyDfSGrSfxpEdM9C365jK0z55pl9K0xAkNTJi2OAOVFQpgMPUk+V0w==", - "requires": { - "swrev": "^4.0.0" - } - }, - "streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==" - }, - "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "requires": { - "safe-buffer": "~5.2.0" - } - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "styled-jsx": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", - "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", - "requires": { - "client-only": "0.0.1" - } - }, - "svelte": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/svelte/-/svelte-4.2.0.tgz", - "integrity": "sha512-kVsdPjDbLrv74SmLSUzAsBGquMs4MPgWGkGLpH+PjOYnFOziAvENVzgJmyOCV2gntxE32aNm8/sqNKD6LbIpeQ==", - "peer": true, - "requires": { - "@ampproject/remapping": "^2.2.1", - "@jridgewell/sourcemap-codec": "^1.4.15", - "@jridgewell/trace-mapping": "^0.3.18", - "acorn": "^8.9.0", - "aria-query": "^5.3.0", - "axobject-query": "^3.2.1", - "code-red": "^1.0.3", - "css-tree": "^2.3.1", - "estree-walker": "^3.0.3", - "is-reference": "^3.0.1", - "locate-character": "^3.0.0", - "magic-string": "^0.30.0", - "periscopic": "^3.1.0" - }, - "dependencies": { - "estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "peer": true, - "requires": { - "@types/estree": "^1.0.0" - } - } - } - }, - "swr": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/swr/-/swr-2.2.0.tgz", - "integrity": "sha512-AjqHOv2lAhkuUdIiBu9xbuettzAzWXmCEcLONNKJRba87WAefz8Ca9d6ds/SzrPc235n1IxWYdhJ2zF3MNUaoQ==", - "requires": { - "use-sync-external-store": "^1.2.0" - } - }, - "swr-store": { - "version": "0.10.6", - "resolved": "https://registry.npmjs.org/swr-store/-/swr-store-0.10.6.tgz", - "integrity": "sha512-xPjB1hARSiRaNNlUQvWSVrG5SirCjk2TmaUyzzvk69SZQan9hCJqw/5rG9iL7xElHU784GxRPISClq4488/XVw==", - "requires": { - "dequal": "^2.0.3" - } - }, - "swrev": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/swrev/-/swrev-4.0.0.tgz", - "integrity": "sha512-LqVcOHSB4cPGgitD1riJ1Hh4vdmITOp+BkmfmXRh4hSF/t7EnS4iD+SOTmq7w5pPm/SiPeto4ADbKS6dHUDWFA==" - }, - "swrv": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/swrv/-/swrv-1.0.4.tgz", - "integrity": "sha512-zjEkcP8Ywmj+xOJW3lIT65ciY/4AL4e/Or7Gj0MzU3zBJNMdJiT8geVZhINavnlHRMMCcJLHhraLTAiDOTmQ9g==", - "requires": {} - }, - "tar": { - "version": "6.1.15", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz", - "integrity": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==", - "dev": true, - "requires": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "dependencies": { - "minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - "dev": true - } - } - }, - "time-span": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/time-span/-/time-span-4.0.0.tgz", - "integrity": "sha512-MyqZCTGLDZ77u4k+jqg4UlrzPTPZ49NDlaekU6uuFaJLzPIN1woaRXCbGeqOfxwc3Y37ZROGAJ614Rdv7Olt+g==", - "dev": true, - "requires": { - "convert-hrtime": "^3.0.0" - } - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "requires": { - "is-number": "^7.0.0" - } - }, - "tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true - }, - "ts-morph": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/ts-morph/-/ts-morph-12.0.0.tgz", - "integrity": "sha512-VHC8XgU2fFW7yO1f/b3mxKDje1vmyzFXHWzOYmKEkCEwcLjDtbdLgBQviqj4ZwP4MJkQtRo6Ha2I29lq/B+VxA==", - "dev": true, - "requires": { - "@ts-morph/common": "~0.11.0", - "code-block-writer": "^10.1.1" - } - }, - "ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", - "dev": true, - "requires": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "dependencies": { - "arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "dev": true - } - } - }, - "ts-toolbelt": { - "version": "6.15.5", - "resolved": "https://registry.npmjs.org/ts-toolbelt/-/ts-toolbelt-6.15.5.tgz", - "integrity": "sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A==", - "dev": true - }, - "tslib": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", - "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==" - }, - "typescript": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", - "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", - "dev": true - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - }, - "uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "use-sync-external-store": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", - "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", - "requires": {} - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "v8-compile-cache-lib": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", - "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", - "dev": true - }, - "vercel": { - "version": "31.2.2", - "resolved": "https://registry.npmjs.org/vercel/-/vercel-31.2.2.tgz", - "integrity": "sha512-g9j7h/1vunFJ33lJddMV7tgZycu6vRDXIEE+9uDYO6i+G7Is9s917tpjguQmUAT9nzmX7cwAmbx34QxGAXBpWw==", - "dev": true, - "requires": { - "@vercel/build-utils": "6.8.2", - "@vercel/go": "2.5.1", - "@vercel/hydrogen": "0.0.64", - "@vercel/next": "3.9.3", - "@vercel/node": "2.15.8", - "@vercel/python": "3.1.60", - "@vercel/redwood": "1.1.15", - "@vercel/remix-builder": "1.9.1", - "@vercel/ruby": "1.3.76", - "@vercel/static-build": "1.3.44" - } - }, - "vue": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/vue/-/vue-3.3.4.tgz", - "integrity": "sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==", - "peer": true, - "requires": { - "@vue/compiler-dom": "3.3.4", - "@vue/compiler-sfc": "3.3.4", - "@vue/runtime-dom": "3.3.4", - "@vue/server-renderer": "3.3.4", - "@vue/shared": "3.3.4" - } - }, - "watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", - "requires": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - } - }, - "web-vitals": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-0.2.4.tgz", - "integrity": "sha512-6BjspCO9VriYy12z356nL6JBS0GYeEcA457YyRzD+dD6XYCQ75NKhcOHUMHentOE7OcVCIXXDvOm0jKFfQG2Gg==", - "dev": true - }, - "webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", - "dev": true - }, - "whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dev": true, - "requires": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - "dev": true, - "requires": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "yn": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", - "dev": true - }, - "zod": { - "version": "3.21.4", - "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", - "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==" - } } } diff --git a/ecosystem-tests/vercel-edge/package.json b/ecosystem-tests/vercel-edge/package.json index 8a77812f7..abe8d35e9 100644 --- a/ecosystem-tests/vercel-edge/package.json +++ b/ecosystem-tests/vercel-edge/package.json @@ -21,7 +21,7 @@ "@types/react": "18.2.13", "@types/react-dom": "18.2.6", "edge-runtime": "^2.4.3", - "typescript": "5.1.6", + "typescript": "4.7.4", "vercel": "^31.0.0" } } diff --git a/scripts/remove-triple-slash-references.js b/scripts/remove-triple-slash-references.js new file mode 100644 index 000000000..d47d45b73 --- /dev/null +++ b/scripts/remove-triple-slash-references.js @@ -0,0 +1,11 @@ +// strip out lib="dom" and types="node" references; these are needed at build time, +// but would pollute the user's TS environment +const fs = require('fs'); +for (const file of process.argv.slice(2)) { + const before = fs.readFileSync(file, 'utf8'); + const after = before.replace(/^ *\/\/\/ *(props: APIResponseProps): Promise { // TODO handle blob, arraybuffer, other content types, etc. const text = await response.text(); debug('response', response.status, response.url, response.headers, text); - return text as T; + return text as any as T; } /** @@ -313,7 +313,8 @@ export abstract class APIClient { protected parseHeaders(headers: HeadersInit | null | undefined): Record { return ( !headers ? {} - : Symbol.iterator in headers ? Object.fromEntries(Array.from(headers).map((header) => [...header])) + : Symbol.iterator in headers ? + Object.fromEntries(Array.from(headers as Iterable).map((header) => [...header])) : { ...headers } ); } @@ -397,7 +398,7 @@ export abstract class APIClient { return new PagePromise(this, request, Page); } - buildURL(path: string, query: Req | undefined): string { + buildURL>(path: string, query: Req | null | undefined): string { const url = isAbsoluteURL(path) ? new URL(path) diff --git a/tsconfig.dist-src.json b/tsconfig.dist-src.json new file mode 100644 index 000000000..e9f2d70b0 --- /dev/null +++ b/tsconfig.dist-src.json @@ -0,0 +1,11 @@ +{ + // this config is included in the published src directory to prevent TS errors + // from appearing when users go to source, and VSCode opens the source .ts file + // via declaration maps + "include": ["index.ts"], + "compilerOptions": { + "target": "es2015", + "lib": ["DOM"], + "moduleResolution": "node" + } +} From 5095cf340743e4627b4f0ad2f055ebe332824d23 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 5 Sep 2023 08:36:41 -0400 Subject: [PATCH 067/725] fix(client): handle case where the client is instantiated with a undefined baseURL (#285) --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index e8013a515..16e4adbb3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -111,8 +111,8 @@ export class OpenAI extends Core.APIClient { const options: ClientOptions = { apiKey, organization, - baseURL: `https://api.openai.com/v1`, ...opts, + baseURL: opts.baseURL ?? `https://api.openai.com/v1`, }; if (!options.dangerouslyAllowBrowser && Core.isRunningInBrowser()) { From 664e9532c8acfbf981e9a788ab40c111ebe2fda0 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 5 Sep 2023 14:47:10 -0400 Subject: [PATCH 068/725] docs(api): update docstrings (#286) --- src/resources/chat/completions.ts | 8 ++++---- src/resources/completions.ts | 6 +++--- src/resources/edits.ts | 2 +- src/resources/files.ts | 2 +- src/resources/fine-tunes.ts | 4 ++-- src/resources/fine-tuning/jobs.ts | 6 +++--- src/resources/models.ts | 5 +++-- 7 files changed, 17 insertions(+), 16 deletions(-) diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index ddfe1344b..591079010 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -50,7 +50,7 @@ export interface ChatCompletion { choices: Array; /** - * A unix timestamp of when the chat completion was created. + * The Unix timestamp (in seconds) of when the chat completion was created. */ created: number; @@ -109,7 +109,7 @@ export interface ChatCompletionChunk { choices: Array; /** - * A unix timestamp of when the chat completion chunk was created. + * The Unix timestamp (in seconds) of when the chat completion chunk was created. */ created: number; @@ -321,7 +321,7 @@ export interface ChatCompletionCreateParamsBase { * existing frequency in the text so far, decreasing the model's likelihood to * repeat the same line verbatim. * - * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) + * [See more information about frequency and presence penalties.](/docs/guides/gpt/parameter-details) */ frequency_penalty?: number | null; @@ -372,7 +372,7 @@ export interface ChatCompletionCreateParamsBase { * whether they appear in the text so far, increasing the model's likelihood to * talk about new topics. * - * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) + * [See more information about frequency and presence penalties.](/docs/guides/gpt/parameter-details) */ presence_penalty?: number | null; diff --git a/src/resources/completions.ts b/src/resources/completions.ts index f971034d8..ee3ccd34f 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -45,7 +45,7 @@ export interface Completion { choices: Array; /** - * The Unix timestamp of when the completion was created. + * The Unix timestamp (in seconds) of when the completion was created. */ created: number; @@ -166,7 +166,7 @@ export interface CompletionCreateParamsBase { * existing frequency in the text so far, decreasing the model's likelihood to * repeat the same line verbatim. * - * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) + * [See more information about frequency and presence penalties.](/docs/guides/gpt/parameter-details) */ frequency_penalty?: number | null; @@ -221,7 +221,7 @@ export interface CompletionCreateParamsBase { * whether they appear in the text so far, increasing the model's likelihood to * talk about new topics. * - * [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) + * [See more information about frequency and presence penalties.](/docs/guides/gpt/parameter-details) */ presence_penalty?: number | null; diff --git a/src/resources/edits.ts b/src/resources/edits.ts index 55623ac91..0d23cbb6e 100644 --- a/src/resources/edits.ts +++ b/src/resources/edits.ts @@ -25,7 +25,7 @@ export interface Edit { choices: Array; /** - * A unix timestamp of when the edit was created. + * The Unix timestamp (in seconds) of when the edit was created. */ created: number; diff --git a/src/resources/files.ts b/src/resources/files.ts index ae88eaef0..33a4ab42a 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -81,7 +81,7 @@ export interface FileObject { bytes: number; /** - * The unix timestamp for when the file was created. + * The Unix timestamp (in seconds) for when the file was created. */ created_at: number; diff --git a/src/resources/fine-tunes.ts b/src/resources/fine-tunes.ts index 1d09f7cf3..e75eed7c7 100644 --- a/src/resources/fine-tunes.ts +++ b/src/resources/fine-tunes.ts @@ -94,7 +94,7 @@ export interface FineTune { id: string; /** - * The unix timestamp for when the fine-tuning job was created. + * The Unix timestamp (in seconds) for when the fine-tuning job was created. */ created_at: number; @@ -142,7 +142,7 @@ export interface FineTune { training_files: Array; /** - * The unix timestamp for when the fine-tuning job was last updated. + * The Unix timestamp (in seconds) for when the fine-tuning job was last updated. */ updated_at: number; diff --git a/src/resources/fine-tuning/jobs.ts b/src/resources/fine-tuning/jobs.ts index 684da758f..dfb128d4b 100644 --- a/src/resources/fine-tuning/jobs.ts +++ b/src/resources/fine-tuning/jobs.ts @@ -100,7 +100,7 @@ export interface FineTuningJob { id: string; /** - * The unix timestamp for when the fine-tuning job was created. + * The Unix timestamp (in seconds) for when the fine-tuning job was created. */ created_at: number; @@ -154,10 +154,10 @@ export interface FineTuningJob { /** * The file ID used for validation. */ - validation_file: string; + validation_file: string | null; /** - * The unix timestamp for when the fine-tuning job was finished. + * The Unix timestamp (in seconds) for when the fine-tuning job was finished. */ finished_at?: number; } diff --git a/src/resources/models.ts b/src/resources/models.ts index 84f01ccc3..d1b204f3d 100644 --- a/src/resources/models.ts +++ b/src/resources/models.ts @@ -23,7 +23,8 @@ export class Models extends APIResource { } /** - * Delete a fine-tuned model. You must have the Owner role in your organization. + * Delete a fine-tuned model. You must have the Owner role in your organization to + * delete a model. */ del(model: string, options?: Core.RequestOptions): Core.APIPromise { return this.delete(`/models/${model}`, options); @@ -47,7 +48,7 @@ export interface Model { id: string; /** - * The date and time when the model was created. + * The Unix timestamp (in seconds) when the model was created. */ created: number; From a06804314d4815d420c97f6f965c926ea70d56df Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 5 Sep 2023 15:54:40 -0400 Subject: [PATCH 069/725] feat: make docs more readable by eliminating unnecessary escape sequences (#287) --- src/resources/chat/completions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 591079010..97ab2e9dd 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -329,7 +329,7 @@ export interface ChatCompletionCreateParamsBase { * Controls how the model responds to function calls. "none" means the model does * not call a function, and responds to the end-user. "auto" means the model can * pick between an end-user or calling a function. Specifying a particular function - * via `{"name":\ "my_function"}` forces the model to call that function. "none" is + * via `{"name": "my_function"}` forces the model to call that function. "none" is * the default when no functions are present. "auto" is the default if functions * are present. */ From a10b8956b3eaae7cdcb90329a8386a41219ca021 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 6 Sep 2023 09:31:00 -0400 Subject: [PATCH 070/725] feat: fixes tests where an array has to have unique enum values (#290) --- README.md | 6 ++---- tests/api-resources/fine-tunes.test.ts | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index bd5a544b5..87095a7c1 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,8 @@ yarn add openai ## Usage -The full API of this library can be found in [API.md file](https://github.com/openai/openai-node/blob/master/api.md). The code below shows how to get started using the chat completions API. +> [!IMPORTANT] +> Previous versions of this SDK used a `Configuration` class. See the [v3 to v4 migration guide](https://github.com/openai/openai-node/discussions/217). ```js import OpenAI from 'openai'; @@ -39,9 +40,6 @@ async function main() { main(); ``` -> [!IMPORTANT] -> Previous versions of this SDK used a `Configuration` class. See the [v3 to v4 migration guide](https://github.com/openai/openai-node/discussions/217). - ## Streaming Responses We provide support for streaming responses using Server Sent Events (SSE). diff --git a/tests/api-resources/fine-tunes.test.ts b/tests/api-resources/fine-tunes.test.ts index 8b4a6df45..48429a90a 100644 --- a/tests/api-resources/fine-tunes.test.ts +++ b/tests/api-resources/fine-tunes.test.ts @@ -21,7 +21,7 @@ describe('resource fineTunes', () => { const response = await openai.fineTunes.create({ training_file: 'file-abc123', batch_size: 0, - classification_betas: [0, 0, 0], + classification_betas: [0.6, 1, 1.5, 2], classification_n_classes: 0, classification_positive_class: 'string', compute_classification_metrics: true, From 0d1cce26cdc6567c10c8d72bbc72a788ffb8f2be Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 6 Sep 2023 11:46:32 -0400 Subject: [PATCH 071/725] docs(readme): add link to api.md (#291) --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 87095a7c1..1e670180f 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,7 @@ yarn add openai ## Usage -> [!IMPORTANT] -> Previous versions of this SDK used a `Configuration` class. See the [v3 to v4 migration guide](https://github.com/openai/openai-node/discussions/217). +The full API of this library can be found in [api.md file](https://github.com/openai/openai-node/blob/master/api.md). The code below shows how to get started using the chat completions API. ```js import OpenAI from 'openai'; @@ -90,6 +89,9 @@ main(); Documentation for each method, request param, and response field are available in docstrings and will appear on hover in most modern editors. +> [!IMPORTANT] +> Previous versions of this SDK used a `Configuration` class. See the [v3 to v4 migration guide](https://github.com/openai/openai-node/discussions/217). + ## File Uploads Request parameters that correspond to file uploads can be passed in many different forms: From ef59010cab0c666fa8a437ec6e27800789aa8705 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 6 Sep 2023 13:55:33 -0400 Subject: [PATCH 072/725] feat(client): add files.waitForProcessing() method (#292) --- api.md | 1 + src/core.ts | 2 +- src/error.ts | 4 ++-- src/resources/files.ts | 28 ++++++++++++++++++++++++++++ 4 files changed, 32 insertions(+), 3 deletions(-) diff --git a/api.md b/api.md index 14b70dffe..e26b57850 100644 --- a/api.md +++ b/api.md @@ -62,6 +62,7 @@ Methods: - client.files.list() -> FileObjectsPage - client.files.del(fileId) -> FileDeleted - client.files.retrieveContent(fileId) -> string +- client.files.waitForProcessing(id, { pollInterval = 5000, maxWait = 30 _ 60 _ 1000 }) -> Promise<FileObject> # Images diff --git a/src/core.ts b/src/core.ts index f857b5ff0..18190d28e 100644 --- a/src/core.ts +++ b/src/core.ts @@ -901,7 +901,7 @@ const isAbsoluteURL = (url: string): boolean => { return startsWithSchemeRegexp.test(url); }; -const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms)); +export const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms)); const validatePositiveInteger = (name: string, n: unknown): number => { if (typeof n !== 'number' || !Number.isInteger(n)) { diff --git a/src/error.ts b/src/error.ts index 818c6b413..d2c337424 100644 --- a/src/error.ts +++ b/src/error.ts @@ -106,8 +106,8 @@ export class APIConnectionError extends APIError { } export class APIConnectionTimeoutError extends APIConnectionError { - constructor() { - super({ message: 'Request timed out.' }); + constructor({ message }: { message?: string } = {}) { + super({ message: message ?? 'Request timed out.' }); } } diff --git a/src/resources/files.ts b/src/resources/files.ts index 33a4ab42a..90d3f64e5 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -2,6 +2,8 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; +import { sleep } from 'openai/core'; +import { APIConnectionTimeoutError } from 'openai/error'; import * as API from './index'; import { type Uploadable, multipartFormRequestOptions } from 'openai/core'; import { Page } from 'openai/pagination'; @@ -47,6 +49,32 @@ export class Files extends APIResource { headers: { Accept: 'application/json', ...options?.headers }, }); } + + /** + * Waits for the given file to be processed, default timeout is 30 mins. + */ + async waitForProcessing( + id: string, + { pollInterval = 5000, maxWait = 30 * 60 * 1000 }: { pollInterval?: number; maxWait?: number } = {}, + ): Promise { + const TERMINAL_STATES = new Set(['processed', 'error', 'deleted']); + + const start = Date.now(); + let file = await this.retrieve(id); + + while (!file.status || !TERMINAL_STATES.has(file.status)) { + await sleep(pollInterval); + + file = await this.retrieve(id); + if (Date.now() - start > maxWait) { + throw new APIConnectionTimeoutError({ + message: `Giving up on waiting for file ${id} to finish processing after ${maxWait} milliseconds.`, + }); + } + } + + return file; + } } /** From fbbe740549c2ec52b018b91831f5d701058deff1 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 6 Sep 2023 13:55:52 -0400 Subject: [PATCH 073/725] chore(next => master): release 4.5.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 23 +++++++++++++++++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 26 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index fb1f343c6..7aa3d5670 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.4.0" + ".": "4.5.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f0c19da3e..3723f555a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## 4.5.0 (2023-09-06) + +Full Changelog: [v4.4.0...v4.5.0](https://github.com/openai/openai-node/compare/v4.4.0...v4.5.0) + +### Features + +* **client:** add files.waitForProcessing() method ([#292](https://github.com/openai/openai-node/issues/292)) ([ef59010](https://github.com/openai/openai-node/commit/ef59010cab0c666fa8a437ec6e27800789aa8705)) +* fixes tests where an array has to have unique enum values ([#290](https://github.com/openai/openai-node/issues/290)) ([a10b895](https://github.com/openai/openai-node/commit/a10b8956b3eaae7cdcb90329a8386a41219ca021)) +* make docs more readable by eliminating unnecessary escape sequences ([#287](https://github.com/openai/openai-node/issues/287)) ([a068043](https://github.com/openai/openai-node/commit/a06804314d4815d420c97f6f965c926ea70d56df)) + + +### Bug Fixes + +* **client:** fix TS errors that appear when users Go to Source in VSCode ([#281](https://github.com/openai/openai-node/issues/281)) ([8dc59bc](https://github.com/openai/openai-node/commit/8dc59bcf924cc991747ca475c714d915e04c6012)), closes [#249](https://github.com/openai/openai-node/issues/249) +* **client:** handle case where the client is instantiated with a undefined baseURL ([#285](https://github.com/openai/openai-node/issues/285)) ([5095cf3](https://github.com/openai/openai-node/commit/5095cf340743e4627b4f0ad2f055ebe332824d23)) +* **client:** use explicit file extensions in _shims imports ([#276](https://github.com/openai/openai-node/issues/276)) ([16fe929](https://github.com/openai/openai-node/commit/16fe929688d35c2ebe52c8cf1c1570bafda5f97e)) + + +### Documentation + +* **api:** update docstrings ([#286](https://github.com/openai/openai-node/issues/286)) ([664e953](https://github.com/openai/openai-node/commit/664e9532c8acfbf981e9a788ab40c111ebe2fda0)) +* **readme:** add link to api.md ([#291](https://github.com/openai/openai-node/issues/291)) ([0d1cce2](https://github.com/openai/openai-node/commit/0d1cce26cdc6567c10c8d72bbc72a788ffb8f2be)) + ## 4.4.0 (2023-09-01) Full Changelog: [v4.3.1...v4.4.0](https://github.com/openai/openai-node/compare/v4.3.1...v4.4.0) diff --git a/package.json b/package.json index d493b0550..16acc60fa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.4.0", + "version": "4.5.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 8ab25148f..dc414ab9e 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.4.0'; // x-release-please-version +export const VERSION = '4.5.0'; // x-release-please-version From 5893e37406ff85331c85a3baa519ca3051a28e00 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 8 Sep 2023 17:34:34 +0100 Subject: [PATCH 074/725] feat(types): extract ChatCompletionRole enum to its own type (#298) --- api.md | 1 + src/resources/chat/chat.ts | 1 + src/resources/chat/completions.ts | 10 ++++++++-- src/resources/chat/index.ts | 1 + 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/api.md b/api.md index e26b57850..7285097f2 100644 --- a/api.md +++ b/api.md @@ -20,6 +20,7 @@ Types: - ChatCompletionChunk - ChatCompletionMessage - ChatCompletionMessageParam +- ChatCompletionRole - CreateChatCompletionRequestMessage Methods: diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 5d10f2f4d..6ef43dd7a 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -14,6 +14,7 @@ export namespace Chat { export import ChatCompletionChunk = API.ChatCompletionChunk; export import ChatCompletionMessage = API.ChatCompletionMessage; export import ChatCompletionMessageParam = API.ChatCompletionMessageParam; + export import ChatCompletionRole = API.ChatCompletionRole; export import CreateChatCompletionRequestMessage = API.CreateChatCompletionRequestMessage; export import ChatCompletionCreateParams = API.ChatCompletionCreateParams; export import CompletionCreateParams = API.CompletionCreateParams; diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 97ab2e9dd..dfc37a731 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -164,7 +164,7 @@ export namespace ChatCompletionChunk { /** * The role of the author of this message. */ - role?: 'system' | 'user' | 'assistant' | 'function'; + role?: ChatCompletionRole; } export namespace Delta { @@ -202,7 +202,7 @@ export interface ChatCompletionMessage { /** * The role of the author of this message. */ - role: 'system' | 'user' | 'assistant' | 'function'; + role: ChatCompletionRole; /** * The name and arguments of a function that should be called, as generated by the @@ -281,6 +281,11 @@ export namespace ChatCompletionMessageParam { } } +/** + * The role of the author of this message. + */ +export type ChatCompletionRole = 'system' | 'user' | 'assistant' | 'function'; + /** * @deprecated ChatCompletionMessageParam should be used instead */ @@ -497,6 +502,7 @@ export namespace Completions { export import ChatCompletionChunk = API.ChatCompletionChunk; export import ChatCompletionMessage = API.ChatCompletionMessage; export import ChatCompletionMessageParam = API.ChatCompletionMessageParam; + export import ChatCompletionRole = API.ChatCompletionRole; export import CreateChatCompletionRequestMessage = API.CreateChatCompletionRequestMessage; export import ChatCompletionCreateParams = API.ChatCompletionCreateParams; export import CompletionCreateParams = API.CompletionCreateParams; diff --git a/src/resources/chat/index.ts b/src/resources/chat/index.ts index ea9d1d1b9..32dea91fe 100644 --- a/src/resources/chat/index.ts +++ b/src/resources/chat/index.ts @@ -6,6 +6,7 @@ export { ChatCompletionChunk, ChatCompletionMessage, ChatCompletionMessageParam, + ChatCompletionRole, CreateChatCompletionRequestMessage, ChatCompletionCreateParams, CompletionCreateParams, From 47c79fee0fa715ad04410e73530829602736d85f Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 8 Sep 2023 23:30:12 +0100 Subject: [PATCH 075/725] fix: fix module not found errors in Vercel edge (#300) --- ecosystem-tests/cli.ts | 6 + ecosystem-tests/vercel-edge/jest.config.cjs | 9 + ecosystem-tests/vercel-edge/package-lock.json | 6414 +++++++++++++---- ecosystem-tests/vercel-edge/package.json | 9 +- .../vercel-edge/src/pages/api/edge-test.ts | 79 + .../vercel-edge/src/pages/api/node-test.ts | 68 + .../vercel-edge/src/uploadWebApiTestCases.ts | 122 + ecosystem-tests/vercel-edge/tests/test.ts | 20 + package.json | 32 +- scripts/replace-self-referencing-imports.js | 6 +- 10 files changed, 5295 insertions(+), 1470 deletions(-) create mode 100644 ecosystem-tests/vercel-edge/jest.config.cjs create mode 100644 ecosystem-tests/vercel-edge/src/pages/api/edge-test.ts create mode 100644 ecosystem-tests/vercel-edge/src/pages/api/node-test.ts create mode 100644 ecosystem-tests/vercel-edge/src/uploadWebApiTestCases.ts create mode 100644 ecosystem-tests/vercel-edge/tests/test.ts diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index 619cdc002..6d4095f1c 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -21,8 +21,14 @@ const projects = { 'vercel-edge': async () => { await installPackage(); + if (state.live) { + await run('npm', ['run', 'test:ci:dev']); + } await run('npm', ['run', 'build']); + if (state.live) { + await run('npm', ['run', 'test:ci']); + } if (state.deploy) { await run('npm', ['run', 'vercel', 'deploy', '--prod', '--force']); } diff --git a/ecosystem-tests/vercel-edge/jest.config.cjs b/ecosystem-tests/vercel-edge/jest.config.cjs new file mode 100644 index 000000000..b08ea4311 --- /dev/null +++ b/ecosystem-tests/vercel-edge/jest.config.cjs @@ -0,0 +1,9 @@ +/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ +module.exports = { + preset: 'ts-jest', + testEnvironment: 'node', + testMatch: ['/tests/*.ts'], + watchPathIgnorePatterns: ['/node_modules/'], + verbose: false, + testTimeout: 60000, +}; diff --git a/ecosystem-tests/vercel-edge/package-lock.json b/ecosystem-tests/vercel-edge/package-lock.json index 7f7054032..4f6397e72 100644 --- a/ecosystem-tests/vercel-edge/package-lock.json +++ b/ecosystem-tests/vercel-edge/package-lock.json @@ -18,6 +18,10 @@ "@types/react": "18.2.13", "@types/react-dom": "18.2.6", "edge-runtime": "^2.4.3", + "fastest-levenshtein": "^1.0.16", + "jest": "^29.5.0", + "start-server-and-test": "^2.0.0", + "ts-jest": "^29.1.0", "typescript": "4.7.4", "vercel": "^31.0.0" } @@ -26,7 +30,6 @@ "version": "2.2.1", "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", - "peer": true, "dependencies": { "@jridgewell/gen-mapping": "^0.3.0", "@jridgewell/trace-mapping": "^0.3.9" @@ -35,2022 +38,4625 @@ "node": ">=6.0.0" } }, - "node_modules/@babel/parser": { - "version": "7.22.14", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.14.tgz", - "integrity": "sha512-1KucTHgOvaw/LzCVrEOAyXkr9rQlp0A1HiHRYnSUE9dmb8PvPW7o5sscg+5169r54n3vGlbx6GevTE/Iw/P3AQ==", - "peer": true, - "bin": { - "parser": "bin/babel-parser.js" + "node_modules/@babel/code-frame": { + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.22.13", + "chalk": "^2.4.2" }, "engines": { - "node": ">=6.0.0" + "node": ">=6.9.0" } }, - "node_modules/@babel/runtime": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz", - "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==", + "node_modules/@babel/code-frame/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "dependencies": { - "regenerator-runtime": "^0.13.4" + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "node_modules/@babel/code-frame/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "dependencies": { - "@jridgewell/trace-mapping": "0.3.9" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, "engines": { - "node": ">=12" + "node": ">=4" } }, - "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "node_modules/@babel/code-frame/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" + "color-name": "1.1.3" } }, - "node_modules/@edge-runtime/format": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@edge-runtime/format/-/format-2.2.0.tgz", - "integrity": "sha512-gPrS6AVw/qJJL0vcxMXv4kFXCU3ZTCD1uuJpwX15YxHV8BgU9OG5v9LrkkXcr96PBT/9epypfNJMhlWADuEziw==", + "node_modules/@babel/code-frame/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, "engines": { - "node": ">=16" + "node": ">=0.8.0" } }, - "node_modules/@edge-runtime/node-utils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@edge-runtime/node-utils/-/node-utils-2.0.3.tgz", - "integrity": "sha512-JUSbi5xu/A8+D2t9B9wfirCI1J8n8q0660FfmqZgA+n3RqxD3y7SnamL1sKRE5/AbHsKs9zcqCbK2YDklbc9Bg==", + "node_modules/@babel/code-frame/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, "engines": { - "node": ">=14" + "node": ">=4" } }, - "node_modules/@edge-runtime/primitives": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.1.0.tgz", - "integrity": "sha512-yxr1QM/lC8nrU38zxePeDqVeIjwsJ83gKGTH8YJ4CoHTv3q+6xEeqRIT+/9IPX/FApWYtnxHauhNqr6CHRj5YA==", + "node_modules/@babel/code-frame/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, "engines": { - "node": ">=16" + "node": ">=4" } }, - "node_modules/@edge-runtime/vm": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.1.0.tgz", - "integrity": "sha512-Y2JZgJP+4byI17SiDeEZhvBUvJ+om7E5ll/jrS7aGRpet5qKnJSsGep6xxhMjqT/j8ulFvTMN/kdlMMy5pEKBQ==", + "node_modules/@babel/compat-data": { + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz", + "integrity": "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.15.tgz", + "integrity": "sha512-PtZqMmgRrvj8ruoEOIwVA3yoF91O+Hgw9o7DAUTNBA6Mo2jpu31clx9a7Nz/9JznqetTR6zwfC4L3LAjKQXUwA==", "dev": true, "dependencies": { - "@edge-runtime/primitives": "3.1.0" + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.22.15", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-module-transforms": "^7.22.15", + "@babel/helpers": "^7.22.15", + "@babel/parser": "^7.22.15", + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.22.15", + "@babel/types": "^7.22.15", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" }, "engines": { - "node": ">=16" + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" } }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", - "peer": true, + "node_modules/@babel/core/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.15.tgz", + "integrity": "sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==", + "dev": true, "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@babel/types": "^7.22.15", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" }, "engines": { - "node": ">=6.0.0" + "node": ">=6.9.0" } }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", - "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "node_modules/@babel/helper-compilation-targets": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", + "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.9", + "@babel/helper-validator-option": "^7.22.15", + "browserslist": "^4.21.9", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, "engines": { - "node": ">=6.0.0" + "node": ">=6.9.0" } }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "peer": true, - "engines": { - "node": ">=6.0.0" + "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" } }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.19", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", - "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", - "peer": true, - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" + "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", + "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" } }, - "node_modules/@mapbox/node-pre-gyp": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz", - "integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==", + "node_modules/@babel/helper-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", + "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", "dev": true, "dependencies": { - "detect-libc": "^2.0.0", - "https-proxy-agent": "^5.0.0", - "make-dir": "^3.1.0", - "node-fetch": "^2.6.7", - "nopt": "^5.0.0", - "npmlog": "^5.0.1", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.11" + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.5" }, - "bin": { - "node-pre-gyp": "bin/node-pre-gyp" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/@mapbox/node-pre-gyp/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "@babel/types": "^7.22.5" }, "engines": { - "node": ">=10" + "node": ">=6.9.0" } }, - "node_modules/@next/env": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.6.tgz", - "integrity": "sha512-nqUxEtvDqFhmV1/awSg0K2XHNwkftNaiUqCYO9e6+MYmqNObpKVl7OgMkGaQ2SZnFx5YqF0t60ZJTlyJIDAijg==" + "node_modules/@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } }, - "node_modules/@next/swc-darwin-arm64": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.6.tgz", - "integrity": "sha512-ahi6VP98o4HV19rkOXPSUu+ovfHfUxbJQ7VVJ7gL2FnZRr7onEFC1oGQ6NQHpm8CxpIzSSBW79kumlFMOmZVjg==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "darwin" - ], + "node_modules/@babel/helper-module-transforms": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.15.tgz", + "integrity": "sha512-l1UiX4UyHSFsYt17iQ3Se5pQQZZHa22zyIXURmvkmLCD4t/aU+dvNWHatKac/D9Vm9UES7nvIqHs4jZqKviUmQ==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.15" + }, "engines": { - "node": ">= 10" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@next/swc-darwin-x64": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.6.tgz", - "integrity": "sha512-13cXxKFsPJIJKzUqrU5XB1mc0xbUgYsRcdH6/rB8c4NMEbWGdtD4QoK9ShN31TZdePpD4k416Ur7p+deMIxnnA==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "darwin" - ], + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true, "engines": { - "node": ">= 10" + "node": ">=6.9.0" } }, - "node_modules/@next/swc-linux-arm64-gnu": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.6.tgz", - "integrity": "sha512-Ti+NMHEjTNktCVxNjeWbYgmZvA2AqMMI2AMlzkXsU7W4pXCMhrryAmAIoo+7YdJbsx01JQWYVxGe62G6DoCLaA==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, "engines": { - "node": ">= 10" + "node": ">=6.9.0" } }, - "node_modules/@next/swc-linux-arm64-musl": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.6.tgz", - "integrity": "sha512-OHoC6gO7XfjstgwR+z6UHKlvhqJfyMtNaJidjx3sEcfaDwS7R2lqR5AABi8PuilGgi0BO0O0sCXqLlpp3a0emQ==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, "engines": { - "node": ">= 10" + "node": ">=6.9.0" } }, - "node_modules/@next/swc-linux-x64-gnu": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.6.tgz", - "integrity": "sha512-zHZxPGkUlpfNJCboUrFqwlwEX5vI9LSN70b8XEb0DYzzlrZyCyOi7hwDp/+3Urm9AB7YCAJkgR5Sp1XBVjHdfQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], + "node_modules/@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "dev": true, "engines": { - "node": ">= 10" + "node": ">=6.9.0" } }, - "node_modules/@next/swc-linux-x64-musl": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.6.tgz", - "integrity": "sha512-K/Y8lYGTwTpv5ME8PSJxwxLolaDRdVy+lOd9yMRMiQE0BLUhtxtCWC9ypV42uh9WpLjoaD0joOsB9Q6mbrSGJg==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.15.tgz", + "integrity": "sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ==", + "dev": true, "engines": { - "node": ">= 10" + "node": ">=6.9.0" } }, - "node_modules/@next/swc-win32-arm64-msvc": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.6.tgz", - "integrity": "sha512-U6LtxEUrjBL2tpW+Kr1nHCSJWNeIed7U7l5o7FiKGGwGgIlFi4UHDiLI6TQ2lxi20fAU33CsruV3U0GuzMlXIw==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "win32" - ], + "node_modules/@babel/helper-validator-option": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz", + "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==", + "dev": true, "engines": { - "node": ">= 10" + "node": ">=6.9.0" } }, - "node_modules/@next/swc-win32-ia32-msvc": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.6.tgz", - "integrity": "sha512-eEBeAqpCfhdPSlCZCayjCiyIllVqy4tcqvm1xmg3BgJG0G5ITiMM4Cw2WVeRSgWDJqQGRyyb+q8Y2ltzhXOWsQ==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-x64-msvc": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.6.tgz", - "integrity": "sha512-OrZs94AuO3ZS5tnqlyPRNgfWvboXaDQCi5aXGve3o3C+Sj0ctMUV9+Do+0zMvvLRumR8E0PTWKvtz9n5vzIsWw==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ], + "node_modules/@babel/helpers": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.15.tgz", + "integrity": "sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.22.15", + "@babel/types": "^7.22.15" + }, "engines": { - "node": ">= 10" + "node": ">=6.9.0" } }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "node_modules/@babel/highlight": { + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz", + "integrity": "sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==", "dev": true, "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" }, "engines": { - "node": ">= 8" + "node": ">=6.9.0" } }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, "engines": { - "node": ">= 8" + "node": ">=4" } }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, "engines": { - "node": ">= 8" + "node": ">=4" } }, - "node_modules/@rollup/pluginutils": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", - "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "dependencies": { - "estree-walker": "^2.0.1", - "picomatch": "^2.2.2" - }, - "engines": { - "node": ">= 8.0.0" + "color-name": "1.1.3" } }, - "node_modules/@rollup/pluginutils/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "dev": true }, - "node_modules/@sinclair/typebox": { - "version": "0.25.24", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", - "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", - "dev": true + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } }, - "node_modules/@swc/helpers": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", - "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", - "dependencies": { - "tslib": "^2.4.0" + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" } }, - "node_modules/@ts-morph/common": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/@ts-morph/common/-/common-0.11.1.tgz", - "integrity": "sha512-7hWZS0NRpEsNV8vWJzg7FEz6V8MaLNeJOmwmghqUXTpzk16V1LLZhdo+4QvE/+zv4cVci0OviuJFnqhEfoV3+g==", + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "dependencies": { - "fast-glob": "^3.2.7", - "minimatch": "^3.0.4", - "mkdirp": "^1.0.4", - "path-browserify": "^1.0.1" + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", - "dev": true - }, - "node_modules/@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "dev": true + "node_modules/@babel/parser": { + "version": "7.22.16", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.16.tgz", + "integrity": "sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } }, - "node_modules/@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "dev": true + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@tsconfig/node16": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", - "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", - "dev": true + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@types/estree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", - "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", - "peer": true + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@types/json-schema": { - "version": "7.0.12", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", - "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", - "dev": true + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@types/node": { - "version": "20.3.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.3.tgz", - "integrity": "sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==", - "dev": true + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@types/node-fetch": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", - "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", + "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", "dev": true, "dependencies": { - "@types/node": "*", - "form-data": "^3.0.0" + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/prop-types": { - "version": "15.7.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", - "dev": true + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@types/react": { - "version": "18.2.13", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.13.tgz", - "integrity": "sha512-vJ+zElvi/Zn9cVXB5slX2xL8PZodPCwPRDpittQdw43JR2AJ5k3vKdgJJyneV/cYgIbLQUwXa9JVDvUZXGba+Q==", + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/react-dom": { - "version": "18.2.6", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.6.tgz", - "integrity": "sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==", + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, "dependencies": { - "@types/react": "*" + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/scheduler": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", - "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==", - "dev": true + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@vercel/build-utils": { - "version": "6.8.3", - "resolved": "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-6.8.3.tgz", - "integrity": "sha512-C86OPuPAvG/pSr27DPKecmptkYYsgyhOKdHTLv9jI3Pv1yvru78k+JjrAyn7N+0ev75KNV0Prv4P3p76168ePw==", - "dev": true + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@vercel/error-utils": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@vercel/error-utils/-/error-utils-1.0.10.tgz", - "integrity": "sha512-nsKy2sy+pjUWyKI1V/XXKspVzHMYgSalmj5+EsKWFXZbnNZicqxNtMR94J8Hs7SB4TQxh0s4KhczJtL59AVGMg==", - "dev": true + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@vercel/gatsby-plugin-vercel-analytics": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-analytics/-/gatsby-plugin-vercel-analytics-1.0.10.tgz", - "integrity": "sha512-v329WHdtIce+y7oAmaWRvEx59Xfo0FxlQqK4BJG0u6VWYoKWPaflohDAiehIZf/YHCRVb59ZxnzmMOcm/LR8YQ==", + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, "dependencies": { - "@babel/runtime": "7.12.1", - "web-vitals": "0.2.4" + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@vercel/gatsby-plugin-vercel-builder": { - "version": "1.3.18", - "resolved": "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.18.tgz", - "integrity": "sha512-E9zk4lDiXigI5UdATt17ilvv+MA25U8QjH5OWqhJn/N3oNl0oZTm2kmXFxfV5lYyJOzAroAVbWZSVtgUMWtGng==", + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", "dev": true, "dependencies": { - "@sinclair/typebox": "0.25.24", - "@vercel/build-utils": "6.8.3", - "@vercel/node": "2.15.10", - "@vercel/routing-utils": "2.2.1", - "esbuild": "0.14.47", - "etag": "1.8.1", - "fs-extra": "11.1.0" + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@vercel/go": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@vercel/go/-/go-2.5.1.tgz", - "integrity": "sha512-yZGzzGmVXt2Rsy1cR0EDbst0fMhdELQY8c3jXy6/FTWJFG1e/40JYksu+WiRCxRBp8e7zfcxMrv0dN8JWRmbPQ==", - "dev": true - }, - "node_modules/@vercel/hydrogen": { - "version": "0.0.64", - "resolved": "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-0.0.64.tgz", - "integrity": "sha512-1rzFB664G6Yzp7j4ezW9hvVjqnaU2BhyUdhchbsxtRuxkMpGgPBZKhjzRQHFvlmkz37XLC658T5Nb1P91b4sBw==", - "dev": true + "node_modules/@babel/runtime": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz", + "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==", + "dev": true, + "dependencies": { + "regenerator-runtime": "^0.13.4" + } }, - "node_modules/@vercel/next": { - "version": "3.9.4", - "resolved": "https://registry.npmjs.org/@vercel/next/-/next-3.9.4.tgz", - "integrity": "sha512-6qH/dNSEEN2pQW5iVi6RUfjro6v9mxdXLtiRf65gQim89CXfPR9CKcCW3AxcKSkYPX9Q7fPiaEGwTr68fPklCw==", - "dev": true + "node_modules/@babel/template": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } }, - "node_modules/@vercel/nft": { - "version": "0.22.5", - "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.22.5.tgz", - "integrity": "sha512-mug57Wd1BL7GMj9gXMgMeKUjdqO0e4u+0QLPYMFE1rwdJ+55oPy6lp3nIBCS8gOvigT62UI4QKUL2sGqcoW4Hw==", + "node_modules/@babel/traverse": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.15.tgz", + "integrity": "sha512-DdHPwvJY0sEeN4xJU5uRLmZjgMMDIvMPniLuYzUVXj/GGzysPl0/fwt44JBkyUIzGJPV8QgHMcQdQ34XFuKTYQ==", "dev": true, "dependencies": { - "@mapbox/node-pre-gyp": "^1.0.5", - "@rollup/pluginutils": "^4.0.0", - "acorn": "^8.6.0", - "async-sema": "^3.1.1", - "bindings": "^1.4.0", - "estree-walker": "2.0.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.2", - "node-gyp-build": "^4.2.2", - "resolve-from": "^5.0.0" + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.22.15", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15", + "debug": "^4.1.0", + "globals": "^11.1.0" }, - "bin": { - "nft": "out/cli.js" + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.15.tgz", + "integrity": "sha512-X+NLXr0N8XXmN5ZsaQdm9U2SSC3UbIYq/doL++sueHOTisgZHoKaQtZxGuV2cUPQHMfjKEfg/g6oy7Hm6SKFtA==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.15", + "to-fast-properties": "^2.0.0" }, "engines": { - "node": ">=14" + "node": ">=6.9.0" } }, - "node_modules/@vercel/nft/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true }, - "node_modules/@vercel/node": { - "version": "2.15.10", - "resolved": "https://registry.npmjs.org/@vercel/node/-/node-2.15.10.tgz", - "integrity": "sha512-IfnqnKAJlL1+0FSDJgxoe9J3kfYAgPGDjz4aO/H5FSjvqP7cKJnns1F9GsQq4pM499+TY8T8mKAdos7/m+WOEw==", + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", "dev": true, "dependencies": { - "@edge-runtime/node-utils": "2.0.3", - "@edge-runtime/primitives": "2.1.2", - "@edge-runtime/vm": "3.0.1", - "@types/node": "14.18.33", - "@types/node-fetch": "2.6.3", - "@vercel/build-utils": "6.8.3", - "@vercel/error-utils": "1.0.10", - "@vercel/static-config": "2.0.17", - "async-listen": "3.0.0", - "content-type": "1.0.5", - "edge-runtime": "2.4.4", - "esbuild": "0.14.47", - "exit-hook": "2.2.1", - "node-fetch": "2.6.9", - "path-to-regexp": "6.2.1", - "ts-morph": "12.0.0", - "ts-node": "10.9.1", - "typescript": "4.9.5" + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" } }, - "node_modules/@vercel/node/node_modules/@edge-runtime/format": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@edge-runtime/format/-/format-2.1.0.tgz", - "integrity": "sha512-gc2qbYEIIJRczBApBPznVI1c5vZgzrZQOsFZnAxxFiYah9qldHiu1YEitzSvXI8X8ZgvAguuIiyIbpWz17nlXA==", + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@edge-runtime/format": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@edge-runtime/format/-/format-2.2.0.tgz", + "integrity": "sha512-gPrS6AVw/qJJL0vcxMXv4kFXCU3ZTCD1uuJpwX15YxHV8BgU9OG5v9LrkkXcr96PBT/9epypfNJMhlWADuEziw==", "dev": true, "engines": { - "node": ">=14" + "node": ">=16" } }, - "node_modules/@vercel/node/node_modules/@edge-runtime/primitives": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-2.1.2.tgz", - "integrity": "sha512-SR04SMDybALlhIYIi0hiuEUwIl0b7Sn+RKwQkX6hydg4+AKMzBNDFhj2nqHDD1+xkHArV9EhmJIb6iGjShwSzg==", + "node_modules/@edge-runtime/node-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/node-utils/-/node-utils-2.0.3.tgz", + "integrity": "sha512-JUSbi5xu/A8+D2t9B9wfirCI1J8n8q0660FfmqZgA+n3RqxD3y7SnamL1sKRE5/AbHsKs9zcqCbK2YDklbc9Bg==", "dev": true, "engines": { "node": ">=14" } }, - "node_modules/@vercel/node/node_modules/@edge-runtime/vm": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.1.tgz", - "integrity": "sha512-69twXLIcqVx0iNlc1vFqnXgka2CZi2c/QBAmMzXBk0M6mPG+ICCBh2dd+cv1K+HW2pfLuSW+EskkFXWGeCf1Vw==", + "node_modules/@edge-runtime/primitives": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.1.0.tgz", + "integrity": "sha512-yxr1QM/lC8nrU38zxePeDqVeIjwsJ83gKGTH8YJ4CoHTv3q+6xEeqRIT+/9IPX/FApWYtnxHauhNqr6CHRj5YA==", "dev": true, - "dependencies": { - "@edge-runtime/primitives": "3.0.1" - }, "engines": { - "node": ">=14" + "node": ">=16" } }, - "node_modules/@vercel/node/node_modules/@edge-runtime/vm/node_modules/@edge-runtime/primitives": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.1.tgz", - "integrity": "sha512-l5NNDcPkKW4N6qRmB8zzpCF6uRW1S808V/zm72z7b/aWwZUYbmEPPkzyhGAW0aQxLU1pGdZ8u2gNjamdaU6RXw==", + "node_modules/@edge-runtime/vm": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.1.0.tgz", + "integrity": "sha512-Y2JZgJP+4byI17SiDeEZhvBUvJ+om7E5ll/jrS7aGRpet5qKnJSsGep6xxhMjqT/j8ulFvTMN/kdlMMy5pEKBQ==", "dev": true, + "dependencies": { + "@edge-runtime/primitives": "3.1.0" + }, "engines": { - "node": ">=14" + "node": ">=16" } }, - "node_modules/@vercel/node/node_modules/@types/node": { - "version": "14.18.33", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.33.tgz", - "integrity": "sha512-qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg==", + "node_modules/@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", "dev": true }, - "node_modules/@vercel/node/node_modules/async-listen": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/async-listen/-/async-listen-3.0.0.tgz", - "integrity": "sha512-V+SsTpDqkrWTimiotsyl33ePSjA5/KrithwupuvJ6ztsqPvGv6ge4OredFhPffVXiLN/QUWvE0XcqJaYgt6fOg==", + "node_modules/@hapi/topo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", "dev": true, - "engines": { - "node": ">= 14" + "dependencies": { + "@hapi/hoek": "^9.0.0" } }, - "node_modules/@vercel/node/node_modules/edge-runtime": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.4.4.tgz", - "integrity": "sha512-uq1YdIxkMDsBYLdSSp/w62PciCL46ic4m1Z/2G6N8RcAPI8p35O8u6hJQT83j28Dnt4U5iyvmwFMYouHMK51uA==", + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "dev": true, "dependencies": { - "@edge-runtime/format": "2.1.0", - "@edge-runtime/vm": "3.0.3", - "async-listen": "3.0.0", - "mri": "1.2.0", - "picocolors": "1.0.0", - "pretty-bytes": "5.6.0", - "pretty-ms": "7.0.1", - "signal-exit": "4.0.2", - "time-span": "4.0.0" - }, - "bin": { - "edge-runtime": "dist/cli/index.js" + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" }, "engines": { - "node": ">=14" + "node": ">=8" } }, - "node_modules/@vercel/node/node_modules/edge-runtime/node_modules/@edge-runtime/primitives": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.3.tgz", - "integrity": "sha512-YnfMWMRQABAH8IsnFMJWMW+SyB4ZeYBPnR7V0aqdnew7Pq60cbH5DyFjS/FhiLwvHQk9wBREmXD7PP0HooEQ1A==", + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", "dev": true, "engines": { - "node": ">=14" + "node": ">=8" } }, - "node_modules/@vercel/node/node_modules/edge-runtime/node_modules/@edge-runtime/vm": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.3.tgz", - "integrity": "sha512-SPfI1JeIRNs/4EEE2Oc0X6gG3RqjD1TnKu2lwmwFXq0435xgZGKhc3UiKkYAdoMn2dNFD73nlabMKHBRoMRpxg==", + "node_modules/@jest/console": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.6.4.tgz", + "integrity": "sha512-wNK6gC0Ha9QeEPSkeJedQuTQqxZYnDPuDcDhVuVatRvMkL4D0VTvFVZj+Yuh6caG2aOfzkUZ36KtCmLNtR02hw==", "dev": true, "dependencies": { - "@edge-runtime/primitives": "3.0.3" + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", + "slash": "^3.0.0" }, "engines": { - "node": ">=14" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@vercel/node/node_modules/typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "node_modules/@jest/core": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.6.4.tgz", + "integrity": "sha512-U/vq5ccNTSVgYH7mHnodHmCffGWHJnz/E1BEWlLuK5pM4FZmGfBn/nrJGLjUsSmyx3otCeqc1T31F4y08AMDLg==", "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" + "dependencies": { + "@jest/console": "^29.6.4", + "@jest/reporters": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.6.3", + "jest-config": "^29.6.4", + "jest-haste-map": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-resolve-dependencies": "^29.6.4", + "jest-runner": "^29.6.4", + "jest-runtime": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", + "jest-watcher": "^29.6.4", + "micromatch": "^4.0.4", + "pretty-format": "^29.6.3", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" }, "engines": { - "node": ">=4.2.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/@vercel/python": { - "version": "3.1.60", - "resolved": "https://registry.npmjs.org/@vercel/python/-/python-3.1.60.tgz", - "integrity": "sha512-1aYinyTfejS8Us+sOum+RQPYcre0vF3XoL7ohL170ZCcHA0l35qV0b1slGAmLt3pqaHKYy3g/nkzUhuR8XXIrQ==", - "dev": true - }, - "node_modules/@vercel/redwood": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/@vercel/redwood/-/redwood-1.1.15.tgz", - "integrity": "sha512-j0XaXe4ZpGVHG7XQSmZ3kza6s+ZtOBfRhnSxA70yCkrvPNN3tZgF3fevSKXizfL9fzVDd7Tdj++SCGWMdGfsyA==", + "node_modules/@jest/environment": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.6.4.tgz", + "integrity": "sha512-sQ0SULEjA1XUTHmkBRl7A1dyITM9yb1yb3ZNKPX3KlTd6IG7mWUe3e2yfExtC2Zz1Q+mMckOLHmL/qLiuQJrBQ==", "dev": true, "dependencies": { - "@vercel/nft": "0.22.5", - "@vercel/routing-utils": "2.2.1", - "semver": "6.1.1" + "@jest/fake-timers": "^29.6.4", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@vercel/remix-builder": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-1.10.1.tgz", - "integrity": "sha512-qkK8Lv9KR4BVmLreKpwtJ9iaKh0NKF9SMZSsT5rLdX8F6EpkayUwSN3EEv4QN/9wFfEb8s1Nf2RY5Pj0zo8Itw==", + "node_modules/@jest/expect": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.6.4.tgz", + "integrity": "sha512-Warhsa7d23+3X5bLbrbYvaehcgX5TLYhI03JKoedTiI8uJU4IhqYBWF7OSSgUyz4IgLpUYPkK0AehA5/fRclAA==", "dev": true, "dependencies": { - "@vercel/build-utils": "6.8.3", - "@vercel/nft": "0.22.5", - "@vercel/static-config": "2.0.17", - "path-to-regexp": "6.2.1", - "semver": "7.3.8", - "ts-morph": "12.0.0" + "expect": "^29.6.4", + "jest-snapshot": "^29.6.4" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@vercel/remix-builder/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "node_modules/@jest/expect-utils": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.6.4.tgz", + "integrity": "sha512-FEhkJhqtvBwgSpiTrocquJCdXPsyvNKcl/n7A3u7X4pVoF4bswm11c9d4AV+kfq2Gpv/mM8x7E7DsRvH+djkrg==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" + "jest-get-type": "^29.6.3" }, - "bin": { - "semver": "bin/semver.js" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.6.4.tgz", + "integrity": "sha512-6UkCwzoBK60edXIIWb0/KWkuj7R7Qq91vVInOe3De6DSpaEiqjKcJw4F7XUet24Wupahj9J6PlR09JqJ5ySDHw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.6.3", + "jest-mock": "^29.6.3", + "jest-util": "^29.6.3" }, "engines": { - "node": ">=10" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@vercel/routing-utils": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@vercel/routing-utils/-/routing-utils-2.2.1.tgz", - "integrity": "sha512-kzMZsvToDCDskNRZD71B9UAgstec7ujmlGH8cBEo6F/07VaFeji6GQdgd6Zwnrj+TvzQBggKoPQR64VkVY8Lzw==", + "node_modules/@jest/globals": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.6.4.tgz", + "integrity": "sha512-wVIn5bdtjlChhXAzVXavcY/3PEjf4VqM174BM3eGL5kMxLiZD5CLnbmkEyA1Dwh9q8XjP6E8RwjBsY/iCWrWsA==", "dev": true, "dependencies": { - "path-to-regexp": "6.1.0" + "@jest/environment": "^29.6.4", + "@jest/expect": "^29.6.4", + "@jest/types": "^29.6.3", + "jest-mock": "^29.6.3" }, - "optionalDependencies": { - "ajv": "^6.0.0" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@vercel/routing-utils/node_modules/path-to-regexp": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.1.0.tgz", - "integrity": "sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==", - "dev": true + "node_modules/@jest/reporters": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.6.4.tgz", + "integrity": "sha512-sxUjWxm7QdchdrD3NfWKrL8FBsortZeibSJv4XLjESOOjSUOkjQcb0ZHJwfhEGIvBvTluTzfG2yZWZhkrXJu8g==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^6.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", + "jest-worker": "^29.6.4", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } }, - "node_modules/@vercel/ruby": { - "version": "1.3.76", - "resolved": "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.76.tgz", - "integrity": "sha512-J8I0B7wAn8piGoPhBroBfJWgMEJTMEL/2o8MCoCyWdaE7MRtpXhI10pj8IvcUvAECoGJ+SM1Pm+SvBqtbtZ5FQ==", + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/schemas/node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", "dev": true }, - "node_modules/@vercel/static-build": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.4.0.tgz", - "integrity": "sha512-rCFVBve9nFaXrqP0pGiPaDciTTJ8CHeage8blF8xOEYMYdFRCg5nzFAOPERwUvl80RNpZrnGC7eJKxTHxfY2Ew==", + "node_modules/@jest/source-map": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", "dev": true, "dependencies": { - "@vercel/gatsby-plugin-vercel-analytics": "1.0.10", - "@vercel/gatsby-plugin-vercel-builder": "1.3.18" + "@jridgewell/trace-mapping": "^0.3.18", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@vercel/static-config": { - "version": "2.0.17", - "resolved": "https://registry.npmjs.org/@vercel/static-config/-/static-config-2.0.17.tgz", - "integrity": "sha512-2f50OTVrN07x7pH+XNW0e7cj7T+Ufg+19+a2N3/XZBjQmV+FaMlmSLiaQ4tBxp2H8lWWHzENua7ZSSQPtRZ3/A==", + "node_modules/@jest/test-result": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.6.4.tgz", + "integrity": "sha512-uQ1C0AUEN90/dsyEirgMLlouROgSY+Wc/JanVVk0OiUKa5UFh7sJpMEM3aoUBAz2BRNvUJ8j3d294WFuRxSyOQ==", "dev": true, "dependencies": { - "ajv": "8.6.3", - "json-schema-to-ts": "1.6.4", - "ts-morph": "12.0.0" + "@jest/console": "^29.6.4", + "@jest/types": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@vercel/static-config/node_modules/ajv": { - "version": "8.6.3", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.6.3.tgz", - "integrity": "sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw==", + "node_modules/@jest/test-sequencer": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.6.4.tgz", + "integrity": "sha512-E84M6LbpcRq3fT4ckfKs9ryVanwkaIB0Ws9bw3/yP4seRLg/VaCZ/LgW0MCq5wwk4/iP/qnilD41aj2fsw2RMg==", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "@jest/test-result": "^29.6.4", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.6.4", + "slash": "^3.0.0" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@vercel/static-config/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "node_modules/@vue/compiler-core": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.4.tgz", - "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==", - "peer": true, + "node_modules/@jest/transform": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.6.4.tgz", + "integrity": "sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==", + "dev": true, "dependencies": { - "@babel/parser": "^7.21.3", - "@vue/shared": "3.3.4", - "estree-walker": "^2.0.2", - "source-map-js": "^1.0.2" + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.6.4", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.6.3", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@vue/compiler-core/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", - "peer": true - }, - "node_modules/@vue/compiler-dom": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz", - "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==", - "peer": true, + "node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dev": true, "dependencies": { - "@vue/compiler-core": "3.3.4", - "@vue/shared": "3.3.4" + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@vue/compiler-sfc": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz", - "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==", - "peer": true, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", "dependencies": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.4", - "@vue/compiler-dom": "3.3.4", - "@vue/compiler-ssr": "3.3.4", - "@vue/reactivity-transform": "3.3.4", - "@vue/shared": "3.3.4", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.0", - "postcss": "^8.1.10", - "source-map-js": "^1.0.2" + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" } }, - "node_modules/@vue/compiler-sfc/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", - "peer": true + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "engines": { + "node": ">=6.0.0" + } }, - "node_modules/@vue/compiler-ssr": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz", - "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==", - "peer": true, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", "dependencies": { - "@vue/compiler-dom": "3.3.4", - "@vue/shared": "3.3.4" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@vue/reactivity": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.4.tgz", - "integrity": "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==", - "peer": true, + "node_modules/@mapbox/node-pre-gyp": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz", + "integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==", + "dev": true, "dependencies": { - "@vue/shared": "3.3.4" + "detect-libc": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "make-dir": "^3.1.0", + "node-fetch": "^2.6.7", + "nopt": "^5.0.0", + "npmlog": "^5.0.1", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.11" + }, + "bin": { + "node-pre-gyp": "bin/node-pre-gyp" } }, - "node_modules/@vue/reactivity-transform": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz", - "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==", - "peer": true, + "node_modules/@mapbox/node-pre-gyp/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, "dependencies": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.4", - "@vue/shared": "3.3.4", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.0" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/@vue/reactivity-transform/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", - "peer": true + "node_modules/@next/env": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.6.tgz", + "integrity": "sha512-nqUxEtvDqFhmV1/awSg0K2XHNwkftNaiUqCYO9e6+MYmqNObpKVl7OgMkGaQ2SZnFx5YqF0t60ZJTlyJIDAijg==" }, - "node_modules/@vue/runtime-core": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.4.tgz", - "integrity": "sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==", - "peer": true, - "dependencies": { - "@vue/reactivity": "3.3.4", - "@vue/shared": "3.3.4" + "node_modules/@next/swc-darwin-arm64": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.6.tgz", + "integrity": "sha512-ahi6VP98o4HV19rkOXPSUu+ovfHfUxbJQ7VVJ7gL2FnZRr7onEFC1oGQ6NQHpm8CxpIzSSBW79kumlFMOmZVjg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" } }, - "node_modules/@vue/runtime-dom": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz", - "integrity": "sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==", - "peer": true, - "dependencies": { - "@vue/runtime-core": "3.3.4", - "@vue/shared": "3.3.4", - "csstype": "^3.1.1" + "node_modules/@next/swc-darwin-x64": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.6.tgz", + "integrity": "sha512-13cXxKFsPJIJKzUqrU5XB1mc0xbUgYsRcdH6/rB8c4NMEbWGdtD4QoK9ShN31TZdePpD4k416Ur7p+deMIxnnA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" } }, - "node_modules/@vue/server-renderer": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.4.tgz", - "integrity": "sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==", - "peer": true, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.6.tgz", + "integrity": "sha512-Ti+NMHEjTNktCVxNjeWbYgmZvA2AqMMI2AMlzkXsU7W4pXCMhrryAmAIoo+7YdJbsx01JQWYVxGe62G6DoCLaA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-musl": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.6.tgz", + "integrity": "sha512-OHoC6gO7XfjstgwR+z6UHKlvhqJfyMtNaJidjx3sEcfaDwS7R2lqR5AABi8PuilGgi0BO0O0sCXqLlpp3a0emQ==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.6.tgz", + "integrity": "sha512-zHZxPGkUlpfNJCboUrFqwlwEX5vI9LSN70b8XEb0DYzzlrZyCyOi7hwDp/+3Urm9AB7YCAJkgR5Sp1XBVjHdfQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.6.tgz", + "integrity": "sha512-K/Y8lYGTwTpv5ME8PSJxwxLolaDRdVy+lOd9yMRMiQE0BLUhtxtCWC9ypV42uh9WpLjoaD0joOsB9Q6mbrSGJg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.6.tgz", + "integrity": "sha512-U6LtxEUrjBL2tpW+Kr1nHCSJWNeIed7U7l5o7FiKGGwGgIlFi4UHDiLI6TQ2lxi20fAU33CsruV3U0GuzMlXIw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-ia32-msvc": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.6.tgz", + "integrity": "sha512-eEBeAqpCfhdPSlCZCayjCiyIllVqy4tcqvm1xmg3BgJG0G5ITiMM4Cw2WVeRSgWDJqQGRyyb+q8Y2ltzhXOWsQ==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-x64-msvc": { + "version": "13.4.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.6.tgz", + "integrity": "sha512-OrZs94AuO3ZS5tnqlyPRNgfWvboXaDQCi5aXGve3o3C+Sj0ctMUV9+Do+0zMvvLRumR8E0PTWKvtz9n5vzIsWw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, "dependencies": { - "@vue/compiler-ssr": "3.3.4", - "@vue/shared": "3.3.4" + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" }, - "peerDependencies": { - "vue": "3.3.4" + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@rollup/pluginutils": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", + "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", + "dev": true, + "dependencies": { + "estree-walker": "^2.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/@rollup/pluginutils/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true + }, + "node_modules/@sideway/address": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz", + "integrity": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@sideway/formula": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", + "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==", + "dev": true + }, + "node_modules/@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", + "dev": true + }, + "node_modules/@sinclair/typebox": { + "version": "0.25.24", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", + "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "dev": true + }, + "node_modules/@sinonjs/commons": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/@swc/helpers": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", + "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@ts-morph/common": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/@ts-morph/common/-/common-0.11.1.tgz", + "integrity": "sha512-7hWZS0NRpEsNV8vWJzg7FEz6V8MaLNeJOmwmghqUXTpzk16V1LLZhdo+4QvE/+zv4cVci0OviuJFnqhEfoV3+g==", + "dev": true, + "dependencies": { + "fast-glob": "^3.2.7", + "minimatch": "^3.0.4", + "mkdirp": "^1.0.4", + "path-browserify": "^1.0.1" + } + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true + }, + "node_modules/@types/babel__core": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", + "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", + "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/estree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", + "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", + "peer": true + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", + "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", + "dev": true + }, + "node_modules/@types/node": { + "version": "20.3.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.3.tgz", + "integrity": "sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==", + "dev": true + }, + "node_modules/@types/node-fetch": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", + "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", + "dev": true, + "dependencies": { + "@types/node": "*", + "form-data": "^3.0.0" + } + }, + "node_modules/@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", + "dev": true + }, + "node_modules/@types/react": { + "version": "18.2.13", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.13.tgz", + "integrity": "sha512-vJ+zElvi/Zn9cVXB5slX2xL8PZodPCwPRDpittQdw43JR2AJ5k3vKdgJJyneV/cYgIbLQUwXa9JVDvUZXGba+Q==", + "dev": true, + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.2.6", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.6.tgz", + "integrity": "sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==", + "dev": true, + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/scheduler": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", + "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==", + "dev": true + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/@types/yargs": { + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "node_modules/@vercel/build-utils": { + "version": "6.8.3", + "resolved": "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-6.8.3.tgz", + "integrity": "sha512-C86OPuPAvG/pSr27DPKecmptkYYsgyhOKdHTLv9jI3Pv1yvru78k+JjrAyn7N+0ev75KNV0Prv4P3p76168ePw==", + "dev": true + }, + "node_modules/@vercel/error-utils": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@vercel/error-utils/-/error-utils-1.0.10.tgz", + "integrity": "sha512-nsKy2sy+pjUWyKI1V/XXKspVzHMYgSalmj5+EsKWFXZbnNZicqxNtMR94J8Hs7SB4TQxh0s4KhczJtL59AVGMg==", + "dev": true + }, + "node_modules/@vercel/gatsby-plugin-vercel-analytics": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-analytics/-/gatsby-plugin-vercel-analytics-1.0.10.tgz", + "integrity": "sha512-v329WHdtIce+y7oAmaWRvEx59Xfo0FxlQqK4BJG0u6VWYoKWPaflohDAiehIZf/YHCRVb59ZxnzmMOcm/LR8YQ==", + "dev": true, + "dependencies": { + "@babel/runtime": "7.12.1", + "web-vitals": "0.2.4" + } + }, + "node_modules/@vercel/gatsby-plugin-vercel-builder": { + "version": "1.3.18", + "resolved": "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.18.tgz", + "integrity": "sha512-E9zk4lDiXigI5UdATt17ilvv+MA25U8QjH5OWqhJn/N3oNl0oZTm2kmXFxfV5lYyJOzAroAVbWZSVtgUMWtGng==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "0.25.24", + "@vercel/build-utils": "6.8.3", + "@vercel/node": "2.15.10", + "@vercel/routing-utils": "2.2.1", + "esbuild": "0.14.47", + "etag": "1.8.1", + "fs-extra": "11.1.0" + } + }, + "node_modules/@vercel/go": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@vercel/go/-/go-2.5.1.tgz", + "integrity": "sha512-yZGzzGmVXt2Rsy1cR0EDbst0fMhdELQY8c3jXy6/FTWJFG1e/40JYksu+WiRCxRBp8e7zfcxMrv0dN8JWRmbPQ==", + "dev": true + }, + "node_modules/@vercel/hydrogen": { + "version": "0.0.64", + "resolved": "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-0.0.64.tgz", + "integrity": "sha512-1rzFB664G6Yzp7j4ezW9hvVjqnaU2BhyUdhchbsxtRuxkMpGgPBZKhjzRQHFvlmkz37XLC658T5Nb1P91b4sBw==", + "dev": true + }, + "node_modules/@vercel/next": { + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/@vercel/next/-/next-3.9.4.tgz", + "integrity": "sha512-6qH/dNSEEN2pQW5iVi6RUfjro6v9mxdXLtiRf65gQim89CXfPR9CKcCW3AxcKSkYPX9Q7fPiaEGwTr68fPklCw==", + "dev": true + }, + "node_modules/@vercel/nft": { + "version": "0.22.5", + "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.22.5.tgz", + "integrity": "sha512-mug57Wd1BL7GMj9gXMgMeKUjdqO0e4u+0QLPYMFE1rwdJ+55oPy6lp3nIBCS8gOvigT62UI4QKUL2sGqcoW4Hw==", + "dev": true, + "dependencies": { + "@mapbox/node-pre-gyp": "^1.0.5", + "@rollup/pluginutils": "^4.0.0", + "acorn": "^8.6.0", + "async-sema": "^3.1.1", + "bindings": "^1.4.0", + "estree-walker": "2.0.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.2", + "node-gyp-build": "^4.2.2", + "resolve-from": "^5.0.0" + }, + "bin": { + "nft": "out/cli.js" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@vercel/nft/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true + }, + "node_modules/@vercel/node": { + "version": "2.15.10", + "resolved": "https://registry.npmjs.org/@vercel/node/-/node-2.15.10.tgz", + "integrity": "sha512-IfnqnKAJlL1+0FSDJgxoe9J3kfYAgPGDjz4aO/H5FSjvqP7cKJnns1F9GsQq4pM499+TY8T8mKAdos7/m+WOEw==", + "dev": true, + "dependencies": { + "@edge-runtime/node-utils": "2.0.3", + "@edge-runtime/primitives": "2.1.2", + "@edge-runtime/vm": "3.0.1", + "@types/node": "14.18.33", + "@types/node-fetch": "2.6.3", + "@vercel/build-utils": "6.8.3", + "@vercel/error-utils": "1.0.10", + "@vercel/static-config": "2.0.17", + "async-listen": "3.0.0", + "content-type": "1.0.5", + "edge-runtime": "2.4.4", + "esbuild": "0.14.47", + "exit-hook": "2.2.1", + "node-fetch": "2.6.9", + "path-to-regexp": "6.2.1", + "ts-morph": "12.0.0", + "ts-node": "10.9.1", + "typescript": "4.9.5" + } + }, + "node_modules/@vercel/node/node_modules/@edge-runtime/format": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@edge-runtime/format/-/format-2.1.0.tgz", + "integrity": "sha512-gc2qbYEIIJRczBApBPznVI1c5vZgzrZQOsFZnAxxFiYah9qldHiu1YEitzSvXI8X8ZgvAguuIiyIbpWz17nlXA==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@vercel/node/node_modules/@edge-runtime/primitives": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-2.1.2.tgz", + "integrity": "sha512-SR04SMDybALlhIYIi0hiuEUwIl0b7Sn+RKwQkX6hydg4+AKMzBNDFhj2nqHDD1+xkHArV9EhmJIb6iGjShwSzg==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@vercel/node/node_modules/@edge-runtime/vm": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.1.tgz", + "integrity": "sha512-69twXLIcqVx0iNlc1vFqnXgka2CZi2c/QBAmMzXBk0M6mPG+ICCBh2dd+cv1K+HW2pfLuSW+EskkFXWGeCf1Vw==", + "dev": true, + "dependencies": { + "@edge-runtime/primitives": "3.0.1" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@vercel/node/node_modules/@edge-runtime/vm/node_modules/@edge-runtime/primitives": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.1.tgz", + "integrity": "sha512-l5NNDcPkKW4N6qRmB8zzpCF6uRW1S808V/zm72z7b/aWwZUYbmEPPkzyhGAW0aQxLU1pGdZ8u2gNjamdaU6RXw==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@vercel/node/node_modules/@types/node": { + "version": "14.18.33", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.33.tgz", + "integrity": "sha512-qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg==", + "dev": true + }, + "node_modules/@vercel/node/node_modules/async-listen": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/async-listen/-/async-listen-3.0.0.tgz", + "integrity": "sha512-V+SsTpDqkrWTimiotsyl33ePSjA5/KrithwupuvJ6ztsqPvGv6ge4OredFhPffVXiLN/QUWvE0XcqJaYgt6fOg==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, + "node_modules/@vercel/node/node_modules/edge-runtime": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.4.4.tgz", + "integrity": "sha512-uq1YdIxkMDsBYLdSSp/w62PciCL46ic4m1Z/2G6N8RcAPI8p35O8u6hJQT83j28Dnt4U5iyvmwFMYouHMK51uA==", + "dev": true, + "dependencies": { + "@edge-runtime/format": "2.1.0", + "@edge-runtime/vm": "3.0.3", + "async-listen": "3.0.0", + "mri": "1.2.0", + "picocolors": "1.0.0", + "pretty-bytes": "5.6.0", + "pretty-ms": "7.0.1", + "signal-exit": "4.0.2", + "time-span": "4.0.0" + }, + "bin": { + "edge-runtime": "dist/cli/index.js" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@vercel/node/node_modules/edge-runtime/node_modules/@edge-runtime/primitives": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.0.3.tgz", + "integrity": "sha512-YnfMWMRQABAH8IsnFMJWMW+SyB4ZeYBPnR7V0aqdnew7Pq60cbH5DyFjS/FhiLwvHQk9wBREmXD7PP0HooEQ1A==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@vercel/node/node_modules/edge-runtime/node_modules/@edge-runtime/vm": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.0.3.tgz", + "integrity": "sha512-SPfI1JeIRNs/4EEE2Oc0X6gG3RqjD1TnKu2lwmwFXq0435xgZGKhc3UiKkYAdoMn2dNFD73nlabMKHBRoMRpxg==", + "dev": true, + "dependencies": { + "@edge-runtime/primitives": "3.0.3" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@vercel/node/node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/@vercel/python": { + "version": "3.1.60", + "resolved": "https://registry.npmjs.org/@vercel/python/-/python-3.1.60.tgz", + "integrity": "sha512-1aYinyTfejS8Us+sOum+RQPYcre0vF3XoL7ohL170ZCcHA0l35qV0b1slGAmLt3pqaHKYy3g/nkzUhuR8XXIrQ==", + "dev": true + }, + "node_modules/@vercel/redwood": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/@vercel/redwood/-/redwood-1.1.15.tgz", + "integrity": "sha512-j0XaXe4ZpGVHG7XQSmZ3kza6s+ZtOBfRhnSxA70yCkrvPNN3tZgF3fevSKXizfL9fzVDd7Tdj++SCGWMdGfsyA==", + "dev": true, + "dependencies": { + "@vercel/nft": "0.22.5", + "@vercel/routing-utils": "2.2.1", + "semver": "6.1.1" + } + }, + "node_modules/@vercel/remix-builder": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-1.10.1.tgz", + "integrity": "sha512-qkK8Lv9KR4BVmLreKpwtJ9iaKh0NKF9SMZSsT5rLdX8F6EpkayUwSN3EEv4QN/9wFfEb8s1Nf2RY5Pj0zo8Itw==", + "dev": true, + "dependencies": { + "@vercel/build-utils": "6.8.3", + "@vercel/nft": "0.22.5", + "@vercel/static-config": "2.0.17", + "path-to-regexp": "6.2.1", + "semver": "7.3.8", + "ts-morph": "12.0.0" + } + }, + "node_modules/@vercel/remix-builder/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@vercel/routing-utils": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@vercel/routing-utils/-/routing-utils-2.2.1.tgz", + "integrity": "sha512-kzMZsvToDCDskNRZD71B9UAgstec7ujmlGH8cBEo6F/07VaFeji6GQdgd6Zwnrj+TvzQBggKoPQR64VkVY8Lzw==", + "dev": true, + "dependencies": { + "path-to-regexp": "6.1.0" + }, + "optionalDependencies": { + "ajv": "^6.0.0" + } + }, + "node_modules/@vercel/routing-utils/node_modules/path-to-regexp": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.1.0.tgz", + "integrity": "sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==", + "dev": true + }, + "node_modules/@vercel/ruby": { + "version": "1.3.76", + "resolved": "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.76.tgz", + "integrity": "sha512-J8I0B7wAn8piGoPhBroBfJWgMEJTMEL/2o8MCoCyWdaE7MRtpXhI10pj8IvcUvAECoGJ+SM1Pm+SvBqtbtZ5FQ==", + "dev": true + }, + "node_modules/@vercel/static-build": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.4.0.tgz", + "integrity": "sha512-rCFVBve9nFaXrqP0pGiPaDciTTJ8CHeage8blF8xOEYMYdFRCg5nzFAOPERwUvl80RNpZrnGC7eJKxTHxfY2Ew==", + "dev": true, + "dependencies": { + "@vercel/gatsby-plugin-vercel-analytics": "1.0.10", + "@vercel/gatsby-plugin-vercel-builder": "1.3.18" + } + }, + "node_modules/@vercel/static-config": { + "version": "2.0.17", + "resolved": "https://registry.npmjs.org/@vercel/static-config/-/static-config-2.0.17.tgz", + "integrity": "sha512-2f50OTVrN07x7pH+XNW0e7cj7T+Ufg+19+a2N3/XZBjQmV+FaMlmSLiaQ4tBxp2H8lWWHzENua7ZSSQPtRZ3/A==", + "dev": true, + "dependencies": { + "ajv": "8.6.3", + "json-schema-to-ts": "1.6.4", + "ts-morph": "12.0.0" + } + }, + "node_modules/@vercel/static-config/node_modules/ajv": { + "version": "8.6.3", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.6.3.tgz", + "integrity": "sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@vercel/static-config/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@vue/compiler-core": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.4.tgz", + "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==", + "peer": true, + "dependencies": { + "@babel/parser": "^7.21.3", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "source-map-js": "^1.0.2" + } + }, + "node_modules/@vue/compiler-core/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "peer": true + }, + "node_modules/@vue/compiler-dom": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz", + "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==", + "peer": true, + "dependencies": { + "@vue/compiler-core": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz", + "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==", + "peer": true, + "dependencies": { + "@babel/parser": "^7.20.15", + "@vue/compiler-core": "3.3.4", + "@vue/compiler-dom": "3.3.4", + "@vue/compiler-ssr": "3.3.4", + "@vue/reactivity-transform": "3.3.4", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.0", + "postcss": "^8.1.10", + "source-map-js": "^1.0.2" + } + }, + "node_modules/@vue/compiler-sfc/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "peer": true + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz", + "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==", + "peer": true, + "dependencies": { + "@vue/compiler-dom": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "node_modules/@vue/reactivity": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.4.tgz", + "integrity": "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==", + "peer": true, + "dependencies": { + "@vue/shared": "3.3.4" + } + }, + "node_modules/@vue/reactivity-transform": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz", + "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==", + "peer": true, + "dependencies": { + "@babel/parser": "^7.20.15", + "@vue/compiler-core": "3.3.4", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.0" + } + }, + "node_modules/@vue/reactivity-transform/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "peer": true + }, + "node_modules/@vue/runtime-core": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.4.tgz", + "integrity": "sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==", + "peer": true, + "dependencies": { + "@vue/reactivity": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz", + "integrity": "sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==", + "peer": true, + "dependencies": { + "@vue/runtime-core": "3.3.4", + "@vue/shared": "3.3.4", + "csstype": "^3.1.1" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.4.tgz", + "integrity": "sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==", + "peer": true, + "dependencies": { + "@vue/compiler-ssr": "3.3.4", + "@vue/shared": "3.3.4" + }, + "peerDependencies": { + "vue": "3.3.4" + } + }, + "node_modules/@vue/shared": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz", + "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==", + "peer": true + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/ai": { + "version": "2.1.34", + "resolved": "https://registry.npmjs.org/ai/-/ai-2.1.34.tgz", + "integrity": "sha512-gZawUnYhZHJ1PiE+x7iDuy2GQg67AKs0uHgdS8Jw3o/3NouGeJ/5ytyqbgHqczgvoquSpykumR+5TyRieF8x/w==", + "dependencies": { + "eventsource-parser": "1.0.0", + "nanoid": "3.3.6", + "solid-swr-store": "0.10.7", + "sswr": "2.0.0", + "swr": "2.2.0", + "swr-store": "0.10.6", + "swrv": "1.0.4" + }, + "engines": { + "node": ">=14.6" + }, + "peerDependencies": { + "react": "^18.2.0", + "solid-js": "^1.7.7", + "svelte": "^3.0.0 || ^4.0.0", + "vue": "^3.3.4" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "solid-js": { + "optional": true + }, + "svelte": { + "optional": true + }, + "vue": { + "optional": true + } + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "optional": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", + "dev": true + }, + "node_modules/are-we-there-yet": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", + "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", + "dev": true, + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "peer": true, + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/async-listen": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/async-listen/-/async-listen-3.0.1.tgz", + "integrity": "sha512-cWMaNwUJnf37C/S5TfCkk/15MwbPRwVYALA2jtjkbHjCmAPiDXyNJy2q3p1KAZzDLHAWyarUWSujUoHR4pEgrA==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, + "node_modules/async-sema": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz", + "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==", + "dev": true + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/axios": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", + "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", + "dev": true, + "dependencies": { + "follow-redirects": "^1.14.9", + "form-data": "^4.0.0" + } + }, + "node_modules/axios/node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "peer": true, + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/babel-jest": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.6.4.tgz", + "integrity": "sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==", + "dev": true, + "dependencies": { + "@jest/transform": "^29.6.4", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-istanbul/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.21.10", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", + "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001517", + "electron-to-chromium": "^1.4.477", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.11" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001524", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001524.tgz", + "integrity": "sha512-Jj917pJtYg9HSJBF95HVX3Cdr89JUyLT4IZ8SvM5aDRni95swKgYi3TgYLH5hnGfPE/U1dg6IfZ50UsIlLkwSA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/check-more-types": { + "version": "2.24.0", + "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", + "integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "dev": true + }, + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/code-block-writer": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-10.1.1.tgz", + "integrity": "sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==", + "dev": true + }, + "node_modules/code-red": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/code-red/-/code-red-1.0.4.tgz", + "integrity": "sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==", + "peer": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.15", + "@types/estree": "^1.0.1", + "acorn": "^8.10.0", + "estree-walker": "^3.0.3", + "periscopic": "^3.1.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "dev": true + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true, + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", + "dev": true + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-hrtime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-3.0.0.tgz", + "integrity": "sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/css-tree": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "peer": true, + "dependencies": { + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + } + }, + "node_modules/csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/dedent": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "dev": true, + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "dev": true + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/detect-libc": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.2.tgz", + "integrity": "sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true + }, + "node_modules/edge-runtime": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.5.0.tgz", + "integrity": "sha512-QgDNX6R+RPwhY3+vqHpvYE4XUoB/cFG60nGBKu9pmPOJxQleeTCj2F5CHimIpNqex9h1Cy2Y3tuQ+Vq2GzmZIA==", + "dev": true, + "dependencies": { + "@edge-runtime/format": "2.2.0", + "@edge-runtime/vm": "3.1.0", + "async-listen": "3.0.1", + "mri": "1.2.0", + "picocolors": "1.0.0", + "pretty-bytes": "5.6.0", + "pretty-ms": "7.0.1", + "signal-exit": "4.0.2", + "time-span": "4.0.0" + }, + "bin": { + "edge-runtime": "dist/cli/index.js" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.509", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.509.tgz", + "integrity": "sha512-G5KlSWY0zzhANtX15tkikHl4WB7zil2Y65oT52EZUL194abjUXBZym12Ht7Bhuwm/G3LJFEqMADyv2Cks56dmg==", + "dev": true + }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/esbuild": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.47.tgz", + "integrity": "sha512-wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "esbuild-android-64": "0.14.47", + "esbuild-android-arm64": "0.14.47", + "esbuild-darwin-64": "0.14.47", + "esbuild-darwin-arm64": "0.14.47", + "esbuild-freebsd-64": "0.14.47", + "esbuild-freebsd-arm64": "0.14.47", + "esbuild-linux-32": "0.14.47", + "esbuild-linux-64": "0.14.47", + "esbuild-linux-arm": "0.14.47", + "esbuild-linux-arm64": "0.14.47", + "esbuild-linux-mips64le": "0.14.47", + "esbuild-linux-ppc64le": "0.14.47", + "esbuild-linux-riscv64": "0.14.47", + "esbuild-linux-s390x": "0.14.47", + "esbuild-netbsd-64": "0.14.47", + "esbuild-openbsd-64": "0.14.47", + "esbuild-sunos-64": "0.14.47", + "esbuild-windows-32": "0.14.47", + "esbuild-windows-64": "0.14.47", + "esbuild-windows-arm64": "0.14.47" + } + }, + "node_modules/esbuild-android-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.47.tgz", + "integrity": "sha512-R13Bd9+tqLVFndncMHssZrPWe6/0Kpv2/dt4aA69soX4PRxlzsVpCvoJeFE8sOEoeVEiBkI0myjlkDodXlHa0g==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-android-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.47.tgz", + "integrity": "sha512-OkwOjj7ts4lBp/TL6hdd8HftIzOy/pdtbrNA4+0oVWgGG64HrdVzAF5gxtJufAPOsEjkyh1oIYvKAUinKKQRSQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-darwin-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.47.tgz", + "integrity": "sha512-R6oaW0y5/u6Eccti/TS6c/2c1xYTb1izwK3gajJwi4vIfNs1s8B1dQzI1UiC9T61YovOQVuePDcfqHLT3mUZJA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-darwin-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.47.tgz", + "integrity": "sha512-seCmearlQyvdvM/noz1L9+qblC5vcBrhUaOoLEDDoLInF/VQ9IkobGiLlyTPYP5dW1YD4LXhtBgOyevoIHGGnw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-freebsd-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.47.tgz", + "integrity": "sha512-ZH8K2Q8/Ux5kXXvQMDsJcxvkIwut69KVrYQhza/ptkW50DC089bCVrJZZ3sKzIoOx+YPTrmsZvqeZERjyYrlvQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-freebsd-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.47.tgz", + "integrity": "sha512-ZJMQAJQsIOhn3XTm7MPQfCzEu5b9STNC+s90zMWe2afy9EwnHV7Ov7ohEMv2lyWlc2pjqLW8QJnz2r0KZmeAEQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-32": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.47.tgz", + "integrity": "sha512-FxZOCKoEDPRYvq300lsWCTv1kcHgiiZfNrPtEhFAiqD7QZaXrad8LxyJ8fXGcWzIFzRiYZVtB3ttvITBvAFhKw==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.47.tgz", + "integrity": "sha512-nFNOk9vWVfvWYF9YNYksZptgQAdstnDCMtR6m42l5Wfugbzu11VpMCY9XrD4yFxvPo9zmzcoUL/88y0lfJZJJw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-arm": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.47.tgz", + "integrity": "sha512-ZGE1Bqg/gPRXrBpgpvH81tQHpiaGxa8c9Rx/XOylkIl2ypLuOcawXEAo8ls+5DFCcRGt/o3sV+PzpAFZobOsmA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.47.tgz", + "integrity": "sha512-ywfme6HVrhWcevzmsufjd4iT3PxTfCX9HOdxA7Hd+/ZM23Y9nXeb+vG6AyA6jgq/JovkcqRHcL9XwRNpWG6XRw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-mips64le": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.47.tgz", + "integrity": "sha512-mg3D8YndZ1LvUiEdDYR3OsmeyAew4MA/dvaEJxvyygahWmpv1SlEEnhEZlhPokjsUMfRagzsEF/d/2XF+kTQGg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-ppc64le": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.47.tgz", + "integrity": "sha512-WER+f3+szmnZiWoK6AsrTKGoJoErG2LlauSmk73LEZFQ/iWC+KhhDsOkn1xBUpzXWsxN9THmQFltLoaFEH8F8w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-riscv64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.47.tgz", + "integrity": "sha512-1fI6bP3A3rvI9BsaaXbMoaOjLE3lVkJtLxsgLHqlBhLlBVY7UqffWBvkrX/9zfPhhVMd9ZRFiaqXnB1T7BsL2g==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-s390x": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.47.tgz", + "integrity": "sha512-eZrWzy0xFAhki1CWRGnhsHVz7IlSKX6yT2tj2Eg8lhAwlRE5E96Hsb0M1mPSE1dHGpt1QVwwVivXIAacF/G6mw==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-netbsd-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.47.tgz", + "integrity": "sha512-Qjdjr+KQQVH5Q2Q1r6HBYswFTToPpss3gqCiSw2Fpq/ua8+eXSQyAMG+UvULPqXceOwpnPo4smyZyHdlkcPppQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-openbsd-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.47.tgz", + "integrity": "sha512-QpgN8ofL7B9z8g5zZqJE+eFvD1LehRlxr25PBkjyyasakm4599iroUpaj96rdqRlO2ShuyqwJdr+oNqWwTUmQw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-sunos-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.47.tgz", + "integrity": "sha512-uOeSgLUwukLioAJOiGYm3kNl+1wJjgJA8R671GYgcPgCx7QR73zfvYqXFFcIO93/nBdIbt5hd8RItqbbf3HtAQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-windows-32": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.47.tgz", + "integrity": "sha512-H0fWsLTp2WBfKLBgwYT4OTfFly4Im/8B5f3ojDv1Kx//kiubVY0IQunP2Koc/fr/0wI7hj3IiBDbSrmKlrNgLQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-windows-64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.47.tgz", + "integrity": "sha512-/Pk5jIEH34T68r8PweKRi77W49KwanZ8X6lr3vDAtOlH5EumPE4pBHqkCUdELanvsT14yMXLQ/C/8XPi1pAtkQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-windows-arm64": { + "version": "0.14.47", + "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.47.tgz", + "integrity": "sha512-HFSW2lnp62fl86/qPQlqw6asIwCnEsEoNIL1h2uVMgakddf+vUuMcCbtUY1i8sst7KkgHrVKCJQB33YhhOweCQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" } }, - "node_modules/@vue/shared": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz", - "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==", - "peer": true - }, - "node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true + "node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } }, - "node_modules/acorn": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", - "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, "bin": { - "acorn": "bin/acorn" + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" }, "engines": { - "node": ">=0.4.0" + "node": ">=4" } }, - "node_modules/acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "peer": true, + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", "dev": true, "engines": { - "node": ">=0.4.0" + "node": ">= 0.6" } }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "node_modules/event-stream": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", + "integrity": "sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==", "dev": true, "dependencies": { - "debug": "4" - }, + "duplexer": "~0.1.1", + "from": "~0", + "map-stream": "~0.1.0", + "pause-stream": "0.0.11", + "split": "0.3", + "stream-combiner": "~0.0.4", + "through": "~2.3.1" + } + }, + "node_modules/eventsource-parser": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-1.0.0.tgz", + "integrity": "sha512-9jgfSCa3dmEme2ES3mPByGXfgZ87VbP97tng1G2nWwWx6bV2nYxm2AWCrbQjXToSe+yYlqaZNtxffR9IeQr95g==", "engines": { - "node": ">= 6.0.0" + "node": ">=14.18" } }, - "node_modules/ai": { - "version": "2.1.34", - "resolved": "https://registry.npmjs.org/ai/-/ai-2.1.34.tgz", - "integrity": "sha512-gZawUnYhZHJ1PiE+x7iDuy2GQg67AKs0uHgdS8Jw3o/3NouGeJ/5ytyqbgHqczgvoquSpykumR+5TyRieF8x/w==", + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, "dependencies": { - "eventsource-parser": "1.0.0", - "nanoid": "3.3.6", - "solid-swr-store": "0.10.7", - "sswr": "2.0.0", - "swr": "2.2.0", - "swr-store": "0.10.6", - "swrv": "1.0.4" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": ">=14.6" - }, - "peerDependencies": { - "react": "^18.2.0", - "solid-js": "^1.7.7", - "svelte": "^3.0.0 || ^4.0.0", - "vue": "^3.3.4" + "node": ">=10" }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "solid-js": { - "optional": true - }, - "svelte": { - "optional": true - }, - "vue": { - "optional": true - } + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/execa/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "dev": true, - "optional": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/exit-hook": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-2.2.1.tgz", + "integrity": "sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==", + "dev": true, + "engines": { + "node": ">=6" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "node_modules/expect": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.6.4.tgz", + "integrity": "sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==", "dev": true, + "dependencies": { + "@jest/expect-utils": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3" + }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, - "node_modules/are-we-there-yet": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", - "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", + "node_modules/fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", "dev": true, "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" }, "engines": { - "node": ">=10" + "node": ">=8.6.0" } }, - "node_modules/arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, - "node_modules/aria-query": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", - "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", - "peer": true, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true, + "engines": { + "node": ">= 4.9.1" + } + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, "dependencies": { - "dequal": "^2.0.3" + "reusify": "^1.0.4" } }, - "node_modules/async-listen": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/async-listen/-/async-listen-3.0.1.tgz", - "integrity": "sha512-cWMaNwUJnf37C/S5TfCkk/15MwbPRwVYALA2jtjkbHjCmAPiDXyNJy2q3p1KAZzDLHAWyarUWSujUoHR4pEgrA==", + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "dev": true, - "engines": { - "node": ">= 14" + "dependencies": { + "bser": "2.1.1" } }, - "node_modules/async-sema": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz", - "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==", + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", "dev": true }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } }, - "node_modules/axobject-query": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", - "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", - "peer": true, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, "dependencies": { - "dequal": "^2.0.3" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true + "node_modules/follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } }, - "node_modules/bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", "dev": true, "dependencies": { - "file-uri-to-path": "1.0.0" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "node_modules/from": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", + "integrity": "sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==", + "dev": true + }, + "node_modules/fs-extra": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", + "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" } }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", "dev": true, "dependencies": { - "fill-range": "^7.0.1" + "minipass": "^3.0.0" }, "engines": { - "node": ">=8" + "node": ">= 8" } }, - "node_modules/busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, "dependencies": { - "streamsearch": "^1.1.0" + "yallist": "^4.0.0" }, "engines": { - "node": ">=10.16.0" + "node": ">=8" } }, - "node_modules/caniuse-lite": { - "version": "1.0.30001524", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001524.tgz", - "integrity": "sha512-Jj917pJtYg9HSJBF95HVX3Cdr89JUyLT4IZ8SvM5aDRni95swKgYi3TgYLH5hnGfPE/U1dg6IfZ50UsIlLkwSA==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true }, - "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=10" + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/client-only": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", - "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" - }, - "node_modules/code-block-writer": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-10.1.1.tgz", - "integrity": "sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==", + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", "dev": true }, - "node_modules/code-red": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/code-red/-/code-red-1.0.4.tgz", - "integrity": "sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==", - "peer": true, + "node_modules/gauge": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", + "dev": true, "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15", - "@types/estree": "^1.0.1", - "acorn": "^8.10.0", - "estree-walker": "^3.0.3", - "periscopic": "^3.1.0" + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" + }, + "engines": { + "node": ">=10" } }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "node_modules/gauge/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, - "bin": { - "color-support": "bin.js" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, - "dependencies": { - "delayed-stream": "~1.0.0" - }, "engines": { - "node": ">= 0.8" + "node": "6.* || 8.* || >= 10.*" } }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", - "dev": true - }, - "node_modules/content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true, "engines": { - "node": ">= 0.6" + "node": ">=8.0.0" } }, - "node_modules/convert-hrtime": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-3.0.0.tgz", - "integrity": "sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA==", + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "dev": true + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } }, - "node_modules/css-tree": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", - "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", - "peer": true, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, "dependencies": { - "mdn-data": "2.0.30", - "source-map-js": "^1.0.1" + "is-glob": "^4.0.1" }, "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + "node": ">= 6" } }, - "node_modules/csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dev": true, "dependencies": { - "ms": "2.1.2" + "function-bind": "^1.1.1" }, "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "node": ">= 0.4.0" } }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { - "node": ">=0.4.0" + "node": ">=8" } }, - "node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", + "dev": true + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, "engines": { - "node": ">=6" + "node": ">=10.17.0" } }, - "node_modules/detect-libc": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.2.tgz", - "integrity": "sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==", + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, "engines": { - "node": ">=0.3.1" + "node": ">=0.8.19" } }, - "node_modules/edge-runtime": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.5.0.tgz", - "integrity": "sha512-QgDNX6R+RPwhY3+vqHpvYE4XUoB/cFG60nGBKu9pmPOJxQleeTCj2F5CHimIpNqex9h1Cy2Y3tuQ+Vq2GzmZIA==", + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dev": true, "dependencies": { - "@edge-runtime/format": "2.2.0", - "@edge-runtime/vm": "3.1.0", - "async-listen": "3.0.1", - "mri": "1.2.0", - "picocolors": "1.0.0", - "pretty-bytes": "5.6.0", - "pretty-ms": "7.0.1", - "signal-exit": "4.0.2", - "time-span": "4.0.0" - }, - "bin": { - "edge-runtime": "dist/cli/index.js" - }, - "engines": { - "node": ">=16" + "once": "^1.3.0", + "wrappy": "1" } }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, - "node_modules/esbuild": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.47.tgz", - "integrity": "sha512-wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA==", + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-core-module": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" + "dependencies": { + "has": "^1.0.3" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "esbuild-android-64": "0.14.47", - "esbuild-android-arm64": "0.14.47", - "esbuild-darwin-64": "0.14.47", - "esbuild-darwin-arm64": "0.14.47", - "esbuild-freebsd-64": "0.14.47", - "esbuild-freebsd-arm64": "0.14.47", - "esbuild-linux-32": "0.14.47", - "esbuild-linux-64": "0.14.47", - "esbuild-linux-arm": "0.14.47", - "esbuild-linux-arm64": "0.14.47", - "esbuild-linux-mips64le": "0.14.47", - "esbuild-linux-ppc64le": "0.14.47", - "esbuild-linux-riscv64": "0.14.47", - "esbuild-linux-s390x": "0.14.47", - "esbuild-netbsd-64": "0.14.47", - "esbuild-openbsd-64": "0.14.47", - "esbuild-sunos-64": "0.14.47", - "esbuild-windows-32": "0.14.47", - "esbuild-windows-64": "0.14.47", - "esbuild-windows-arm64": "0.14.47" + "node": ">=0.10.0" } }, - "node_modules/esbuild-android-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.47.tgz", - "integrity": "sha512-R13Bd9+tqLVFndncMHssZrPWe6/0Kpv2/dt4aA69soX4PRxlzsVpCvoJeFE8sOEoeVEiBkI0myjlkDodXlHa0g==", - "cpu": [ - "x64" - ], + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, - "optional": true, - "os": [ - "android" - ], "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/esbuild-android-arm64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.47.tgz", - "integrity": "sha512-OkwOjj7ts4lBp/TL6hdd8HftIzOy/pdtbrNA4+0oVWgGG64HrdVzAF5gxtJufAPOsEjkyh1oIYvKAUinKKQRSQ==", - "cpu": [ - "arm64" - ], + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true, - "optional": true, - "os": [ - "android" - ], "engines": { - "node": ">=12" + "node": ">=6" } }, - "node_modules/esbuild-darwin-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.47.tgz", - "integrity": "sha512-R6oaW0y5/u6Eccti/TS6c/2c1xYTb1izwK3gajJwi4vIfNs1s8B1dQzI1UiC9T61YovOQVuePDcfqHLT3mUZJA==", - "cpu": [ - "x64" - ], + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], + "dependencies": { + "is-extglob": "^2.1.1" + }, "engines": { - "node": ">=12" + "node": ">=0.10.0" } }, - "node_modules/esbuild-darwin-arm64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.47.tgz", - "integrity": "sha512-seCmearlQyvdvM/noz1L9+qblC5vcBrhUaOoLEDDoLInF/VQ9IkobGiLlyTPYP5dW1YD4LXhtBgOyevoIHGGnw==", - "cpu": [ - "arm64" - ], + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], "engines": { - "node": ">=12" + "node": ">=0.12.0" } }, - "node_modules/esbuild-freebsd-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.47.tgz", - "integrity": "sha512-ZH8K2Q8/Ux5kXXvQMDsJcxvkIwut69KVrYQhza/ptkW50DC089bCVrJZZ3sKzIoOx+YPTrmsZvqeZERjyYrlvQ==", - "cpu": [ - "x64" - ], + "node_modules/is-reference": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.1.tgz", + "integrity": "sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==", + "peer": true, + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, - "optional": true, - "os": [ - "freebsd" - ], "engines": { - "node": ">=12" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/esbuild-freebsd-arm64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.47.tgz", - "integrity": "sha512-ZJMQAJQsIOhn3XTm7MPQfCzEu5b9STNC+s90zMWe2afy9EwnHV7Ov7ohEMv2lyWlc2pjqLW8QJnz2r0KZmeAEQ==", - "cpu": [ - "arm64" - ], + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", "dev": true, - "optional": true, - "os": [ - "freebsd" - ], "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/esbuild-linux-32": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.47.tgz", - "integrity": "sha512-FxZOCKoEDPRYvq300lsWCTv1kcHgiiZfNrPtEhFAiqD7QZaXrad8LxyJ8fXGcWzIFzRiYZVtB3ttvITBvAFhKw==", - "cpu": [ - "ia32" - ], + "node_modules/istanbul-lib-instrument": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.0.tgz", + "integrity": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" + }, "engines": { - "node": ">=12" + "node": ">=10" } }, - "node_modules/esbuild-linux-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.47.tgz", - "integrity": "sha512-nFNOk9vWVfvWYF9YNYksZptgQAdstnDCMtR6m42l5Wfugbzu11VpMCY9XrD4yFxvPo9zmzcoUL/88y0lfJZJJw==", - "cpu": [ - "x64" - ], + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, "engines": { - "node": ">=12" + "node": ">=10" } }, - "node_modules/esbuild-linux-arm": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.47.tgz", - "integrity": "sha512-ZGE1Bqg/gPRXrBpgpvH81tQHpiaGxa8c9Rx/XOylkIl2ypLuOcawXEAo8ls+5DFCcRGt/o3sV+PzpAFZobOsmA==", - "cpu": [ - "arm" - ], + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": ">=12" + "node": ">=10" } }, - "node_modules/esbuild-linux-arm64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.47.tgz", - "integrity": "sha512-ywfme6HVrhWcevzmsufjd4iT3PxTfCX9HOdxA7Hd+/ZM23Y9nXeb+vG6AyA6jgq/JovkcqRHcL9XwRNpWG6XRw==", - "cpu": [ - "arm64" - ], + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "semver": "^7.5.3" + }, "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/esbuild-linux-mips64le": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.47.tgz", - "integrity": "sha512-mg3D8YndZ1LvUiEdDYR3OsmeyAew4MA/dvaEJxvyygahWmpv1SlEEnhEZlhPokjsUMfRagzsEF/d/2XF+kTQGg==", - "cpu": [ - "mips64el" - ], + "node_modules/istanbul-lib-report/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, "engines": { - "node": ">=12" + "node": ">=10" } }, - "node_modules/esbuild-linux-ppc64le": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.47.tgz", - "integrity": "sha512-WER+f3+szmnZiWoK6AsrTKGoJoErG2LlauSmk73LEZFQ/iWC+KhhDsOkn1xBUpzXWsxN9THmQFltLoaFEH8F8w==", - "cpu": [ - "ppc64" - ], + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, "engines": { - "node": ">=12" + "node": ">=10" } }, - "node_modules/esbuild-linux-riscv64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.47.tgz", - "integrity": "sha512-1fI6bP3A3rvI9BsaaXbMoaOjLE3lVkJtLxsgLHqlBhLlBVY7UqffWBvkrX/9zfPhhVMd9ZRFiaqXnB1T7BsL2g==", - "cpu": [ - "riscv64" - ], + "node_modules/istanbul-reports": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/esbuild-linux-s390x": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.47.tgz", - "integrity": "sha512-eZrWzy0xFAhki1CWRGnhsHVz7IlSKX6yT2tj2Eg8lhAwlRE5E96Hsb0M1mPSE1dHGpt1QVwwVivXIAacF/G6mw==", - "cpu": [ - "s390x" - ], + "node_modules/jest": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.6.4.tgz", + "integrity": "sha512-tEFhVQFF/bzoYV1YuGyzLPZ6vlPrdfvDmmAxudA1dLEuiztqg2Rkx20vkKY32xiDROcD2KXlgZ7Cu8RPeEHRKw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "@jest/core": "^29.6.4", + "@jest/types": "^29.6.3", + "import-local": "^3.0.2", + "jest-cli": "^29.6.4" + }, + "bin": { + "jest": "bin/jest.js" + }, "engines": { - "node": ">=12" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/esbuild-netbsd-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.47.tgz", - "integrity": "sha512-Qjdjr+KQQVH5Q2Q1r6HBYswFTToPpss3gqCiSw2Fpq/ua8+eXSQyAMG+UvULPqXceOwpnPo4smyZyHdlkcPppQ==", - "cpu": [ - "x64" - ], + "node_modules/jest-changed-files": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.6.3.tgz", + "integrity": "sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==", "dev": true, - "optional": true, - "os": [ - "netbsd" - ], + "dependencies": { + "execa": "^5.0.0", + "jest-util": "^29.6.3", + "p-limit": "^3.1.0" + }, "engines": { - "node": ">=12" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/esbuild-openbsd-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.47.tgz", - "integrity": "sha512-QpgN8ofL7B9z8g5zZqJE+eFvD1LehRlxr25PBkjyyasakm4599iroUpaj96rdqRlO2ShuyqwJdr+oNqWwTUmQw==", - "cpu": [ - "x64" - ], + "node_modules/jest-circus": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.6.4.tgz", + "integrity": "sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==", "dev": true, - "optional": true, - "os": [ - "openbsd" - ], + "dependencies": { + "@jest/environment": "^29.6.4", + "@jest/expect": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^1.0.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-runtime": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", + "p-limit": "^3.1.0", + "pretty-format": "^29.6.3", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, "engines": { - "node": ">=12" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/esbuild-sunos-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.47.tgz", - "integrity": "sha512-uOeSgLUwukLioAJOiGYm3kNl+1wJjgJA8R671GYgcPgCx7QR73zfvYqXFFcIO93/nBdIbt5hd8RItqbbf3HtAQ==", - "cpu": [ - "x64" - ], + "node_modules/jest-cli": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.6.4.tgz", + "integrity": "sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==", "dev": true, - "optional": true, - "os": [ - "sunos" - ], + "dependencies": { + "@jest/core": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", + "prompts": "^2.0.1", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, "engines": { - "node": ">=12" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/esbuild-windows-32": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.47.tgz", - "integrity": "sha512-H0fWsLTp2WBfKLBgwYT4OTfFly4Im/8B5f3ojDv1Kx//kiubVY0IQunP2Koc/fr/0wI7hj3IiBDbSrmKlrNgLQ==", - "cpu": [ - "ia32" - ], + "node_modules/jest-config": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.6.4.tgz", + "integrity": "sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.6.4", + "@jest/types": "^29.6.3", + "babel-jest": "^29.6.4", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.6.4", + "jest-environment-node": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-runner": "^29.6.4", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.6.3", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, "engines": { - "node": ">=12" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } } }, - "node_modules/esbuild-windows-64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.47.tgz", - "integrity": "sha512-/Pk5jIEH34T68r8PweKRi77W49KwanZ8X6lr3vDAtOlH5EumPE4pBHqkCUdELanvsT14yMXLQ/C/8XPi1pAtkQ==", - "cpu": [ - "x64" - ], + "node_modules/jest-diff": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.4.tgz", + "integrity": "sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" + }, "engines": { - "node": ">=12" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/esbuild-windows-arm64": { - "version": "0.14.47", - "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.47.tgz", - "integrity": "sha512-HFSW2lnp62fl86/qPQlqw6asIwCnEsEoNIL1h2uVMgakddf+vUuMcCbtUY1i8sst7KkgHrVKCJQB33YhhOweCQ==", - "cpu": [ - "arm64" - ], + "node_modules/jest-docblock": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.6.3.tgz", + "integrity": "sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "dependencies": { + "detect-newline": "^3.0.0" + }, "engines": { - "node": ">=12" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "peer": true, + "node_modules/jest-each": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.6.3.tgz", + "integrity": "sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==", + "dev": true, "dependencies": { - "@types/estree": "^1.0.0" + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "jest-util": "^29.6.3", + "pretty-format": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "node_modules/jest-environment-node": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.4.tgz", + "integrity": "sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==", "dev": true, + "dependencies": { + "@jest/environment": "^29.6.4", + "@jest/fake-timers": "^29.6.4", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.6.3", + "jest-util": "^29.6.3" + }, "engines": { - "node": ">= 0.6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/eventsource-parser": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-1.0.0.tgz", - "integrity": "sha512-9jgfSCa3dmEme2ES3mPByGXfgZ87VbP97tng1G2nWwWx6bV2nYxm2AWCrbQjXToSe+yYlqaZNtxffR9IeQr95g==", + "node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "dev": true, "engines": { - "node": ">=14.18" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/exit-hook": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-2.2.1.tgz", - "integrity": "sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==", + "node_modules/jest-haste-map": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.4.tgz", + "integrity": "sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==", "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.6.3", + "jest-worker": "^29.6.4", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, "engines": { - "node": ">=6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "node_modules/fast-glob": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", - "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "node_modules/jest-leak-detector": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.6.3.tgz", + "integrity": "sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==", "dev": true, "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { - "node": ">=8.6.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "node_modules/jest-matcher-utils": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.6.4.tgz", + "integrity": "sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==", "dev": true, - "optional": true + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.6.4", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "node_modules/jest-message-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.6.3.tgz", + "integrity": "sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==", "dev": true, "dependencies": { - "reusify": "^1.0.4" + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.6.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "dev": true - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "node_modules/jest-mock": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.6.3.tgz", + "integrity": "sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==", "dev": true, "dependencies": { - "to-regex-range": "^5.0.1" + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.6.3" }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "dev": true, "engines": { - "node": ">= 6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/fs-extra": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", - "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", + "node_modules/jest-resolve": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.4.tgz", + "integrity": "sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==", "dev": true, "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.6.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.6.3", + "jest-validate": "^29.6.3", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" }, "engines": { - "node": ">=14.14" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "node_modules/jest-resolve-dependencies": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.4.tgz", + "integrity": "sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==", "dev": true, "dependencies": { - "minipass": "^3.0.0" + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.6.4" }, "engines": { - "node": ">= 8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/fs-minipass/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/jest-runner": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.6.4.tgz", + "integrity": "sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==", "dev": true, "dependencies": { - "yallist": "^4.0.0" + "@jest/console": "^29.6.4", + "@jest/environment": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.6.3", + "jest-environment-node": "^29.6.4", + "jest-haste-map": "^29.6.4", + "jest-leak-detector": "^29.6.3", + "jest-message-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-runtime": "^29.6.4", + "jest-util": "^29.6.3", + "jest-watcher": "^29.6.4", + "jest-worker": "^29.6.4", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "node_modules/gauge": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", - "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", + "node_modules/jest-runtime": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.6.4.tgz", + "integrity": "sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==", "dev": true, "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "object-assign": "^4.1.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" + "@jest/environment": "^29.6.4", + "@jest/fake-timers": "^29.6.4", + "@jest/globals": "^29.6.4", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-mock": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" }, "engines": { - "node": ">=10" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/gauge/node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "node_modules/jest-snapshot": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.6.4.tgz", + "integrity": "sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==", "dev": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.6.4", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", + "natural-compare": "^1.4.0", + "pretty-format": "^29.6.3", + "semver": "^7.5.3" }, "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { - "is-glob": "^4.0.1" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">= 6" + "node": ">=10" } }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - }, - "node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", - "dev": true - }, - "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "node_modules/jest-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.3.tgz", + "integrity": "sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==", "dev": true, "dependencies": { - "agent-base": "6", - "debug": "4" + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">= 6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "node_modules/jest-validate": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.3.tgz", + "integrity": "sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==", "dev": true, "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/jest-watcher": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.6.4.tgz", + "integrity": "sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==", "dev": true, + "dependencies": { + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.6.3", + "string-length": "^4.0.1" + }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "node_modules/jest-worker": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", + "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", "dev": true, "dependencies": { - "is-extglob": "^2.1.1" + "@types/node": "*", + "jest-util": "^29.6.3", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">=0.12.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/is-reference": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.1.tgz", - "integrity": "sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==", - "peer": true, + "node_modules/joi": { + "version": "17.10.1", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.10.1.tgz", + "integrity": "sha512-vIiDxQKmRidUVp8KngT8MZSOcmRVm2zV7jbMjNYWuHcJWI0bUck3nRTGQjhpPlQenIQIBC5Vp9AhcnHbWQqafw==", + "dev": true, "dependencies": { - "@types/estree": "*" + "@hapi/hoek": "^9.0.0", + "@hapi/topo": "^5.0.0", + "@sideway/address": "^4.1.3", + "@sideway/formula": "^3.0.1", + "@sideway/pinpoint": "^2.0.0" } }, "node_modules/js-tokens": { @@ -2058,6 +4664,37 @@ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, "node_modules/json-schema-to-ts": { "version": "1.6.4", "resolved": "https://registry.npmjs.org/json-schema-to-ts/-/json-schema-to-ts-1.6.4.tgz", @@ -2073,26 +4710,95 @@ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true, - "optional": true + "optional": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/lazy-ass": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", + "integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==", + "dev": true, + "engines": { + "node": "> 0.8" + } }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "engines": { + "node": ">=6" } }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, "node_modules/locate-character": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz", "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==", "peer": true }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, "node_modules/loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", @@ -2149,12 +4855,33 @@ "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", "dev": true }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/map-stream": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz", + "integrity": "sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==", + "dev": true + }, "node_modules/mdn-data": { "version": "2.0.30", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", "peer": true }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, "node_modules/merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", @@ -2198,6 +4925,15 @@ "node": ">= 0.6" } }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -2210,6 +4946,15 @@ "node": "*" } }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/minipass": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", @@ -2288,6 +5033,12 @@ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, "node_modules/next": { "version": "13.4.6", "resolved": "https://registry.npmjs.org/next/-/next-13.4.6.tgz", @@ -2369,6 +5120,18 @@ "node-gyp-build-test": "build-test.js" } }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "dev": true + }, "node_modules/nopt": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", @@ -2384,6 +5147,27 @@ "node": ">=6" } }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/npmlog": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", @@ -2414,6 +5198,90 @@ "wrappy": "1" } }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/parse-ms": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz", @@ -2429,6 +5297,15 @@ "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", "dev": true }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", @@ -2438,12 +5315,36 @@ "node": ">=0.10.0" } }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, "node_modules/path-to-regexp": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz", "integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==", "dev": true }, + "node_modules/pause-stream": { + "version": "0.0.11", + "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", + "integrity": "sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==", + "dev": true, + "dependencies": { + "through": "~2.3" + } + }, "node_modules/periscopic": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", @@ -2472,6 +5373,27 @@ "url": "https://github.com/sponsors/jonschlinkert" } }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/postcss": { "version": "8.4.14", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", @@ -2507,6 +5429,32 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/pretty-format": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.3.tgz", + "integrity": "sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, "node_modules/pretty-ms": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-7.0.1.tgz", @@ -2522,6 +5470,34 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/ps-tree": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz", + "integrity": "sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==", + "dev": true, + "dependencies": { + "event-stream": "=3.3.4" + }, + "bin": { + "ps-tree": "bin/ps-tree.js" + }, + "engines": { + "node": ">= 0.10" + } + }, "node_modules/punycode": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", @@ -2531,6 +5507,22 @@ "node": ">=6" } }, + "node_modules/pure-rand": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.3.tgz", + "integrity": "sha512-KddyFewCsO0j3+np81IQ+SweXLDnDQTs5s67BOnrYmYe/yNmUhttQyGsYzy8yUnoljGAQ9sl38YB4vH8ur7Y+w==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ] + }, "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", @@ -2574,6 +5566,12 @@ "react": "^18.2.0" } }, + "node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, "node_modules/readable-stream": { "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", @@ -2594,6 +5592,15 @@ "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", "dev": true }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/require-from-string": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", @@ -2603,6 +5610,35 @@ "node": ">=0.10.0" } }, + "node_modules/resolve": { + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", + "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", @@ -2612,6 +5648,15 @@ "node": ">=8" } }, + "node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, "node_modules/reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", @@ -2660,6 +5705,15 @@ "queue-microtask": "^1.2.2" } }, + "node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "dev": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, "node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", @@ -2712,6 +5766,27 @@ "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", "dev": true }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/signal-exit": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", @@ -2724,6 +5799,21 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/solid-js": { "version": "1.7.11", "resolved": "https://registry.npmjs.org/solid-js/-/solid-js-1.7.11.tgz", @@ -2746,6 +5836,15 @@ "swr-store": "^0.10" } }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/source-map-js": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", @@ -2754,6 +5853,34 @@ "node": ">=0.10.0" } }, + "node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/split": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz", + "integrity": "sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==", + "dev": true, + "dependencies": { + "through": "2" + }, + "engines": { + "node": "*" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, "node_modules/sswr": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/sswr/-/sswr-2.0.0.tgz", @@ -2765,6 +5892,57 @@ "svelte": "^4.0.0" } }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/start-server-and-test": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-2.0.0.tgz", + "integrity": "sha512-UqKLw0mJbfrsG1jcRLTUlvuRi9sjNuUiDOLI42r7R5fA9dsFoywAy9DoLXNYys9B886E4RCKb+qM1Gzu96h7DQ==", + "dev": true, + "dependencies": { + "arg": "^5.0.2", + "bluebird": "3.7.2", + "check-more-types": "2.24.0", + "debug": "4.3.4", + "execa": "5.1.1", + "lazy-ass": "1.6.0", + "ps-tree": "1.2.0", + "wait-on": "7.0.1" + }, + "bin": { + "server-test": "src/bin/start.js", + "start-server-and-test": "src/bin/start.js", + "start-test": "src/bin/start.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/start-server-and-test/node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, + "node_modules/stream-combiner": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz", + "integrity": "sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==", + "dev": true, + "dependencies": { + "duplexer": "~0.1.1" + } + }, "node_modules/streamsearch": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", @@ -2782,6 +5960,19 @@ "safe-buffer": "~5.2.0" } }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", @@ -2808,6 +5999,36 @@ "node": ">=8" } }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/styled-jsx": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", @@ -2830,6 +6051,30 @@ } } }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/svelte": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/svelte/-/svelte-4.2.0.tgz", @@ -2906,6 +6151,26 @@ "node": ">=10" } }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, "node_modules/time-span": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/time-span/-/time-span-4.0.0.tgz", @@ -2921,6 +6186,21 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", @@ -2939,6 +6219,64 @@ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", "dev": true }, + "node_modules/ts-jest": { + "version": "29.1.1", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", + "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", + "dev": true, + "dependencies": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "^7.5.3", + "yargs-parser": "^21.0.1" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.0.0-beta.0 <8", + "@jest/types": "^29.0.0", + "babel-jest": "^29.0.0", + "jest": "^29.0.0", + "typescript": ">=4.3 <6" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@jest/types": { + "optional": true + }, + "babel-jest": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/ts-jest/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/ts-morph": { "version": "12.0.0", "resolved": "https://registry.npmjs.org/ts-morph/-/ts-morph-12.0.0.tgz", @@ -3003,6 +6341,27 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/typescript": { "version": "4.7.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", @@ -3025,6 +6384,36 @@ "node": ">= 10.0.0" } }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", @@ -3054,6 +6443,26 @@ "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", "dev": true }, + "node_modules/v8-to-istanbul": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", + "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, "node_modules/vercel": { "version": "31.4.0", "resolved": "https://registry.npmjs.org/vercel/-/vercel-31.4.0.tgz", @@ -3092,6 +6501,34 @@ "@vue/shared": "3.3.4" } }, + "node_modules/wait-on": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-7.0.1.tgz", + "integrity": "sha512-9AnJE9qTjRQOlTZIldAaf/da2eW0eSRSgcqq85mXQja/DW3MriHxkpODDSUEg+Gri/rKEcXUZHe+cevvYItaog==", + "dev": true, + "dependencies": { + "axios": "^0.27.2", + "joi": "^17.7.0", + "lodash": "^4.17.21", + "minimist": "^1.2.7", + "rxjs": "^7.8.0" + }, + "bin": { + "wait-on": "bin/wait-on" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "dependencies": { + "makeerror": "1.0.12" + } + }, "node_modules/watchpack": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", @@ -3126,6 +6563,21 @@ "webidl-conversions": "^3.0.0" } }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, "node_modules/wide-align": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", @@ -3135,18 +6587,90 @@ "string-width": "^1.0.2 || 2 || 3 || 4" } }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/write-file-atomic/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, "node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, "node_modules/yn": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", @@ -3156,6 +6680,18 @@ "node": ">=6" } }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/zod": { "version": "3.21.4", "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", diff --git a/ecosystem-tests/vercel-edge/package.json b/ecosystem-tests/vercel-edge/package.json index abe8d35e9..9ebff4bbc 100644 --- a/ecosystem-tests/vercel-edge/package.json +++ b/ecosystem-tests/vercel-edge/package.json @@ -8,7 +8,10 @@ "start": "next start", "lint": "next lint", "edge-runtime": "edge-runtime", - "vercel": "vercel" + "vercel": "vercel", + "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", + "test:ci:dev": "start-server-and-test dev http://localhost:3000 test", + "test:ci": "start-server-and-test start http://localhost:3000 test" }, "dependencies": { "ai": "2.1.34", @@ -21,6 +24,10 @@ "@types/react": "18.2.13", "@types/react-dom": "18.2.6", "edge-runtime": "^2.4.3", + "fastest-levenshtein": "^1.0.16", + "jest": "^29.5.0", + "start-server-and-test": "^2.0.0", + "ts-jest": "^29.1.0", "typescript": "4.7.4", "vercel": "^31.0.0" } diff --git a/ecosystem-tests/vercel-edge/src/pages/api/edge-test.ts b/ecosystem-tests/vercel-edge/src/pages/api/edge-test.ts new file mode 100644 index 000000000..e25842671 --- /dev/null +++ b/ecosystem-tests/vercel-edge/src/pages/api/edge-test.ts @@ -0,0 +1,79 @@ +import { NextRequest, NextResponse } from 'next/server'; +import { distance } from 'fastest-levenshtein'; +import OpenAI from 'openai'; +import { uploadWebApiTestCases } from '../../uploadWebApiTestCases'; + +export const config = { + runtime: 'edge', + unstable_allowDynamic: [ + // This is currently required because `qs` uses `side-channel` which depends on this. + // + // Warning: Some features may be broken at runtime because of this. + '/node_modules/function-bind/**', + ], +}; + +type Test = { description: string; handler: () => Promise }; + +const tests: Test[] = []; +function it(description: string, handler: () => Promise) { + tests.push({ description, handler }); +} +function expectEqual(a: any, b: any) { + if (!Object.is(a, b)) { + throw new Error(`expected values to be equal: ${JSON.stringify({ a, b })}`); + } +} +function expectSimilar(received: string, expected: string, maxDistance: number) { + const receivedDistance = distance(received, expected); + if (receivedDistance < maxDistance) { + return; + } + + const message = [ + `Received: ${JSON.stringify(received)}`, + `Expected: ${JSON.stringify(expected)}`, + `Max distance: ${maxDistance}`, + `Received distance: ${receivedDistance}`, + ].join('\n'); + + throw new Error(message); +} + +export default async (request: NextRequest) => { + try { + console.error('creating client'); + const client = new OpenAI(); + console.error('created client'); + + uploadWebApiTestCases({ + client: client as any, + it, + expectEqual, + expectSimilar, + runtime: 'edge', + }); + + let allPassed = true; + const results = []; + + for (const { description, handler } of tests) { + console.error('running', description); + let result; + try { + result = await handler(); + console.error('passed ', description); + } catch (error) { + console.error('failed ', description, error); + allPassed = false; + result = error instanceof Error ? error.stack : String(error); + } + results.push(`${description}\n\n${String(result)}`); + } + + return new NextResponse(allPassed ? 'Passed!' : results.join('\n\n')); + } catch (error) { + console.error(error instanceof Error ? error.stack : String(error)); + return new NextResponse(error instanceof Error ? error.stack : String(error), { status: 500 }); + } +}; diff --git a/ecosystem-tests/vercel-edge/src/pages/api/node-test.ts b/ecosystem-tests/vercel-edge/src/pages/api/node-test.ts new file mode 100644 index 000000000..97acfbd36 --- /dev/null +++ b/ecosystem-tests/vercel-edge/src/pages/api/node-test.ts @@ -0,0 +1,68 @@ +import type { NextApiRequest, NextApiResponse } from 'next'; +import { distance } from 'fastest-levenshtein'; +import OpenAI from 'openai'; +import { uploadWebApiTestCases } from '../../uploadWebApiTestCases'; + +type Test = { description: string; handler: () => Promise }; + +const tests: Test[] = []; +function it(description: string, handler: () => Promise) { + tests.push({ description, handler }); +} +function expectEqual(a: any, b: any) { + if (!Object.is(a, b)) { + throw new Error(`expected values to be equal: ${JSON.stringify({ a, b })}`); + } +} +function expectSimilar(received: string, expected: string, maxDistance: number) { + const receivedDistance = distance(received, expected); + if (receivedDistance < maxDistance) { + return; + } + + const message = [ + `Received: ${JSON.stringify(received)}`, + `Expected: ${JSON.stringify(expected)}`, + `Max distance: ${maxDistance}`, + `Received distance: ${receivedDistance}`, + ].join('\n'); + + throw new Error(message); +} + +export default async (request: NextApiRequest, response: NextApiResponse) => { + try { + console.error('creating client'); + const client = new OpenAI(); + console.error('created client'); + + uploadWebApiTestCases({ + client: client as any, + it, + expectEqual, + expectSimilar, + }); + + let allPassed = true; + const results = []; + + for (const { description, handler } of tests) { + console.error('running', description); + let result; + try { + result = await handler(); + console.error('passed ', description); + } catch (error) { + console.error('failed ', description, error); + allPassed = false; + result = error instanceof Error ? error.stack : String(error); + } + results.push(`${description}\n\n${String(result)}`); + } + + response.status(200).end(allPassed ? 'Passed!' : results.join('\n\n')); + } catch (error) { + console.error(error instanceof Error ? error.stack : String(error)); + response.status(500).end(error instanceof Error ? error.stack : String(error)); + } +}; diff --git a/ecosystem-tests/vercel-edge/src/uploadWebApiTestCases.ts b/ecosystem-tests/vercel-edge/src/uploadWebApiTestCases.ts new file mode 100644 index 000000000..72f5b615f --- /dev/null +++ b/ecosystem-tests/vercel-edge/src/uploadWebApiTestCases.ts @@ -0,0 +1,122 @@ +import OpenAI, { toFile } from 'openai'; +import { TranscriptionCreateParams } from 'openai/resources/audio/transcriptions'; + +/** + * Tests uploads using various Web API data objects. + * This is structured to support running these tests on builtins in the environment in + * Node or Cloudflare workers etc. or on polyfills like from node-fetch/formdata-node + */ +export function uploadWebApiTestCases({ + client, + it, + expectEqual, + expectSimilar, + runtime = 'node', +}: { + /** + * OpenAI client instance + */ + client: OpenAI; + /** + * Jest it() function, or an imitation in envs like Cloudflare workers + */ + it: (desc: string, handler: () => Promise) => void; + /** + * Jest expect(a).toEqual(b) function, or an imitation in envs like Cloudflare workers + */ + expectEqual(a: unknown, b: unknown): void; + /** + * Assert that the levenshtein distance between the two given strings is less than the given max distance. + */ + expectSimilar(received: string, expected: string, maxDistance: number): void; + runtime?: 'node' | 'edge'; +}) { + const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; + const filename = 'sample-1.mp3'; + + const correctAnswer = + 'It was anxious to find him no one that expectation of a man who were giving his father enjoyment. But he was avoided in sight in the minister to which indeed,'; + const model = 'whisper-1'; + + async function typeTests() { + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: null, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); + } + + it(`streaming works`, async function () { + const stream = await client.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + stream: true, + }); + const chunks = []; + for await (const part of stream) { + chunks.push(part); + } + expectSimilar(chunks.map((c) => c.choices[0]?.delta.content || '').join(''), 'This is a test', 10); + }); + + if (runtime !== 'node') { + it('handles File', async () => { + const file = await fetch(url) + .then((x) => x.arrayBuffer()) + .then((x) => new File([x], filename)); + + const params: TranscriptionCreateParams = { file, model }; + + const result = await client.audio.transcriptions.create(params); + expectSimilar(result.text, correctAnswer, 12); + }); + + it('handles Response', async () => { + const file = await fetch(url); + + const result = await client.audio.transcriptions.create({ file, model }); + expectSimilar(result.text, correctAnswer, 12); + }); + } + + const fineTune = `{"prompt": "", "completion": ""}`; + + it('toFile handles string', async () => { + // @ts-expect-error we don't type support for `string` to avoid a footgun with passing the file path + const file = await toFile(fineTune, 'finetune.jsonl'); + const result = await client.files.create({ file, purpose: 'fine-tune' }); + expectEqual(result.status, 'uploaded'); + }); + it('toFile handles Blob', async () => { + const result = await client.files.create({ + file: await toFile(new Blob([fineTune]), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expectEqual(result.status, 'uploaded'); + }); + it('toFile handles Uint8Array', async () => { + const result = await client.files.create({ + file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expectEqual(result.status, 'uploaded'); + }); + it('toFile handles ArrayBuffer', async () => { + const result = await client.files.create({ + file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expectEqual(result.status, 'uploaded'); + }); + if (runtime !== 'edge') { + // this fails in edge for some reason + it('toFile handles DataView', async () => { + const result = await client.files.create({ + file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expectEqual(result.status, 'uploaded'); + }); + } +} diff --git a/ecosystem-tests/vercel-edge/tests/test.ts b/ecosystem-tests/vercel-edge/tests/test.ts new file mode 100644 index 000000000..36a7ea0bf --- /dev/null +++ b/ecosystem-tests/vercel-edge/tests/test.ts @@ -0,0 +1,20 @@ +import fetch from 'node-fetch'; + +const baseUrl = process.env.TEST_BASE_URL || 'http://localhost:3000/'; +console.log(baseUrl); + +it( + 'node runtime', + async () => { + expect(await (await fetch(`${baseUrl}/api/node-test`)).text()).toEqual('Passed!'); + }, + 3 * 60000, +); + +it( + 'edge runtime', + async () => { + expect(await (await fetch(`${baseUrl}/api/edge-test`)).text()).toEqual('Passed!'); + }, + 3 * 60000, +); diff --git a/package.json b/package.json index 16acc60fa..81f805a07 100644 --- a/package.json +++ b/package.json @@ -10,9 +10,10 @@ "license": "Apache-2.0", "private": false, "exports": { - "./_shims/*.mjs": { + "./_shims/*": { "deno": { "types": "./dist/_shims/*.d.ts", + "require": "./dist/_shims/*.js", "default": "./dist/_shims/*.mjs" }, "bun": { @@ -22,47 +23,28 @@ }, "browser": { "types": "./dist/_shims/*.d.ts", + "require": "./dist/_shims/*.js", "default": "./dist/_shims/*.mjs" }, "worker": { "types": "./dist/_shims/*.d.ts", + "require": "./dist/_shims/*.js", "default": "./dist/_shims/*.mjs" }, "workerd": { "types": "./dist/_shims/*.d.ts", + "require": "./dist/_shims/*.js", "default": "./dist/_shims/*.mjs" }, "node": { "types": "./dist/_shims/*-node.d.ts", + "require": "./dist/_shims/*-node.js", "default": "./dist/_shims/*-node.mjs" }, "types": "./dist/_shims/*.d.ts", + "require": "./dist/_shims/*.js", "default": "./dist/_shims/*.mjs" }, - "./_shims/*.js": { - "deno": { - "types": "./dist/_shims/*.d.ts", - "default": "./dist/_shims/*.js" - }, - "browser": { - "types": "./dist/_shims/*.d.ts", - "default": "./dist/_shims/*.js" - }, - "worker": { - "types": "./dist/_shims/*.d.ts", - "default": "./dist/_shims/*.js" - }, - "workerd": { - "types": "./dist/_shims/*.d.ts", - "default": "./dist/_shims/*.js" - }, - "node": { - "types": "./dist/_shims/*-node.d.ts", - "default": "./dist/_shims/*-node.js" - }, - "types": "./dist/_shims/*.d.ts", - "default": "./dist/_shims/*.js" - }, ".": { "require": { "types": "./dist/index.d.ts", diff --git a/scripts/replace-self-referencing-imports.js b/scripts/replace-self-referencing-imports.js index 7d49d7c74..16c4e2563 100644 --- a/scripts/replace-self-referencing-imports.js +++ b/scripts/replace-self-referencing-imports.js @@ -12,11 +12,7 @@ function replaceSelfReferencingImports({ orig, file, config }) { return orig.replace(/['"]([^"'\r\n]+)['"]/, (match, importPath) => { if (!importPath.startsWith('openai/')) return match; - if (!file.startsWith(distSrcDir)) { - const ext = file.endsWith('.d.ts') ? '' : path.extname(file); - const { dir, base } = path.parse(importPath); - return JSON.stringify(`${dir}/${base}${ext}`); - } + if (!file.startsWith(distSrcDir)) return match; let relativePath = path.relative( path.dirname(file), path.join(distSrcDir, importPath.substring('openai/'.length)), From b90ee4ac45c32d76f1d65e18c428f4387e4dabfd Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 8 Sep 2023 23:30:29 +0100 Subject: [PATCH 076/725] chore(next => master): release 4.6.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7aa3d5670..fd087344c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.5.0" + ".": "4.6.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3723f555a..b4fa6c08c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.6.0 (2023-09-08) + +Full Changelog: [v4.5.0...v4.6.0](https://github.com/openai/openai-node/compare/v4.5.0...v4.6.0) + +### Features + +* **types:** extract ChatCompletionRole enum to its own type ([#298](https://github.com/openai/openai-node/issues/298)) ([5893e37](https://github.com/openai/openai-node/commit/5893e37406ff85331c85a3baa519ca3051a28e00)) + + +### Bug Fixes + +* fix module not found errors in Vercel edge ([#300](https://github.com/openai/openai-node/issues/300)) ([47c79fe](https://github.com/openai/openai-node/commit/47c79fee0fa715ad04410e73530829602736d85f)) + ## 4.5.0 (2023-09-06) Full Changelog: [v4.4.0...v4.5.0](https://github.com/openai/openai-node/compare/v4.4.0...v4.5.0) diff --git a/package.json b/package.json index 81f805a07..5e4fd2c66 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.5.0", + "version": "4.6.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index dc414ab9e..b04b2bd0c 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.5.0'; // x-release-please-version +export const VERSION = '4.6.0'; // x-release-please-version From 9db381961e38d2280b0602447e7d91691b327bde Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 13 Sep 2023 09:31:24 -0500 Subject: [PATCH 077/725] feat: make docs urls in comments absolute (#306) --- src/resources/audio/transcriptions.ts | 5 +++-- src/resources/audio/translations.ts | 5 +++-- src/resources/chat/completions.ts | 14 ++++++------ src/resources/completions.ts | 14 ++++++------ src/resources/embeddings.ts | 13 ++++++----- src/resources/files.ts | 5 +++-- src/resources/fine-tunes.ts | 31 ++++++++++++++------------- src/resources/fine-tuning/jobs.ts | 21 +++++++++++------- src/resources/images.ts | 9 +++++--- 9 files changed, 68 insertions(+), 49 deletions(-) diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index 18b8e784b..5819804bd 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -39,8 +39,9 @@ export interface TranscriptionCreateParams { /** * An optional text to guide the model's style or continue a previous audio - * segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the - * audio language. + * segment. The + * [prompt](https://platform.openai.com/docs/guides/speech-to-text/prompting) + * should match the audio language. */ prompt?: string; diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index 922fec294..7043c2c3b 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -32,8 +32,9 @@ export interface TranslationCreateParams { /** * An optional text to guide the model's style or continue a previous audio - * segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in - * English. + * segment. The + * [prompt](https://platform.openai.com/docs/guides/speech-to-text/prompting) + * should be in English. */ prompt?: string; diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index dfc37a731..76e645445 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -304,8 +304,8 @@ export interface ChatCompletionCreateParamsBase { /** * ID of the model to use. See the - * [model endpoint compatibility](/docs/models/model-endpoint-compatibility) table - * for details on which models work with the Chat API. + * [model endpoint compatibility](https://platform.openai.com/docs/models/model-endpoint-compatibility) + * table for details on which models work with the Chat API. */ model: | (string & {}) @@ -326,7 +326,7 @@ export interface ChatCompletionCreateParamsBase { * existing frequency in the text so far, decreasing the model's likelihood to * repeat the same line verbatim. * - * [See more information about frequency and presence penalties.](/docs/guides/gpt/parameter-details) + * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/gpt/parameter-details) */ frequency_penalty?: number | null; @@ -377,7 +377,7 @@ export interface ChatCompletionCreateParamsBase { * whether they appear in the text so far, increasing the model's likelihood to * talk about new topics. * - * [See more information about frequency and presence penalties.](/docs/guides/gpt/parameter-details) + * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/gpt/parameter-details) */ presence_penalty?: number | null; @@ -416,7 +416,8 @@ export interface ChatCompletionCreateParamsBase { /** * A unique identifier representing your end-user, which can help OpenAI to monitor - * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + * and detect abuse. + * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices/end-user-ids). */ user?: string; } @@ -438,7 +439,8 @@ export namespace ChatCompletionCreateParams { /** * The parameters the functions accepts, described as a JSON Schema object. See the - * [guide](/docs/guides/gpt/function-calling) for examples, and the + * [guide](https://platform.openai.com/docs/guides/gpt/function-calling) for + * examples, and the * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for * documentation about the format. * diff --git a/src/resources/completions.ts b/src/resources/completions.ts index ee3ccd34f..21f46e63b 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -117,9 +117,10 @@ export type CompletionCreateParams = CompletionCreateParamsNonStreaming | Comple export interface CompletionCreateParamsBase { /** * ID of the model to use. You can use the - * [List models](/docs/api-reference/models/list) API to see all of your available - * models, or see our [Model overview](/docs/models/overview) for descriptions of - * them. + * [List models](https://platform.openai.com/docs/api-reference/models/list) API to + * see all of your available models, or see our + * [Model overview](https://platform.openai.com/docs/models/overview) for + * descriptions of them. */ model: | (string & {}) @@ -166,7 +167,7 @@ export interface CompletionCreateParamsBase { * existing frequency in the text so far, decreasing the model's likelihood to * repeat the same line verbatim. * - * [See more information about frequency and presence penalties.](/docs/guides/gpt/parameter-details) + * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/gpt/parameter-details) */ frequency_penalty?: number | null; @@ -221,7 +222,7 @@ export interface CompletionCreateParamsBase { * whether they appear in the text so far, increasing the model's likelihood to * talk about new topics. * - * [See more information about frequency and presence penalties.](/docs/guides/gpt/parameter-details) + * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/gpt/parameter-details) */ presence_penalty?: number | null; @@ -266,7 +267,8 @@ export interface CompletionCreateParamsBase { /** * A unique identifier representing your end-user, which can help OpenAI to monitor - * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + * and detect abuse. + * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices/end-user-ids). */ user?: string; } diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index 8709deb9f..5b6484ed5 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -61,7 +61,8 @@ export namespace CreateEmbeddingResponse { export interface Embedding { /** * The embedding vector, which is a list of floats. The length of vector depends on - * the model as listed in the [embedding guide](/docs/guides/embeddings). + * the model as listed in the + * [embedding guide](https://platform.openai.com/docs/guides/embeddings). */ embedding: Array; @@ -89,15 +90,17 @@ export interface EmbeddingCreateParams { /** * ID of the model to use. You can use the - * [List models](/docs/api-reference/models/list) API to see all of your available - * models, or see our [Model overview](/docs/models/overview) for descriptions of - * them. + * [List models](https://platform.openai.com/docs/api-reference/models/list) API to + * see all of your available models, or see our + * [Model overview](https://platform.openai.com/docs/models/overview) for + * descriptions of them. */ model: (string & {}) | 'text-embedding-ada-002'; /** * A unique identifier representing your end-user, which can help OpenAI to monitor - * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + * and detect abuse. + * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices/end-user-ids). */ user?: string; } diff --git a/src/resources/files.ts b/src/resources/files.ts index 90d3f64e5..5ce8096e0 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -153,8 +153,9 @@ export interface FileCreateParams { /** * The intended purpose of the uploaded documents. * - * Use "fine-tune" for [fine-tuning](/docs/api-reference/fine-tuning). This allows - * us to validate the format of the uploaded file. + * Use "fine-tune" for + * [fine-tuning](https://platform.openai.com/docs/api-reference/fine-tuning). This + * allows us to validate the format of the uploaded file. */ purpose: string; } diff --git a/src/resources/fine-tunes.ts b/src/resources/fine-tunes.ts index e75eed7c7..c65cdd47a 100644 --- a/src/resources/fine-tunes.ts +++ b/src/resources/fine-tunes.ts @@ -15,7 +15,7 @@ export class FineTunes extends APIResource { * Response includes details of the enqueued job including job status and the name * of the fine-tuned models once complete. * - * [Learn more about fine-tuning](/docs/guides/legacy-fine-tuning) + * [Learn more about fine-tuning](https://platform.openai.com/docs/guides/legacy-fine-tuning) */ create(body: FineTuneCreateParams, options?: Core.RequestOptions): Core.APIPromise { return this.post('/fine-tunes', { body, ...options }); @@ -24,7 +24,7 @@ export class FineTunes extends APIResource { /** * Gets info about the fine-tune job. * - * [Learn more about fine-tuning](/docs/guides/legacy-fine-tuning) + * [Learn more about fine-tuning](https://platform.openai.com/docs/guides/legacy-fine-tuning) */ retrieve(fineTuneId: string, options?: Core.RequestOptions): Core.APIPromise { return this.get(`/fine-tunes/${fineTuneId}`, options); @@ -105,8 +105,8 @@ export interface FineTune { /** * The hyperparameters used for the fine-tuning job. See the - * [fine-tuning guide](/docs/guides/legacy-fine-tuning/hyperparameters) for more - * details. + * [fine-tuning guide](https://platform.openai.com/docs/guides/legacy-fine-tuning/hyperparameters) + * for more details. */ hyperparams: FineTune.Hyperparams; @@ -160,8 +160,8 @@ export interface FineTune { export namespace FineTune { /** * The hyperparameters used for the fine-tuning job. See the - * [fine-tuning guide](/docs/guides/legacy-fine-tuning/hyperparameters) for more - * details. + * [fine-tuning guide](https://platform.openai.com/docs/guides/legacy-fine-tuning/hyperparameters) + * for more details. */ export interface Hyperparams { /** @@ -224,15 +224,16 @@ export interface FineTuneCreateParams { /** * The ID of an uploaded file that contains training data. * - * See [upload file](/docs/api-reference/files/upload) for how to upload a file. + * See [upload file](https://platform.openai.com/docs/api-reference/files/upload) + * for how to upload a file. * * Your dataset must be formatted as a JSONL file, where each training example is a * JSON object with the keys "prompt" and "completion". Additionally, you must * upload your file with the purpose `fine-tune`. * * See the - * [fine-tuning guide](/docs/guides/legacy-fine-tuning/creating-training-data) for - * more details. + * [fine-tuning guide](https://platform.openai.com/docs/guides/legacy-fine-tuning/creating-training-data) + * for more details. */ training_file: string; @@ -276,7 +277,7 @@ export interface FineTuneCreateParams { * If set, we calculate classification-specific metrics such as accuracy and F-1 * score using the validation set at the end of every epoch. These metrics can be * viewed in the - * [results file](/docs/guides/legacy-fine-tuning/analyzing-your-fine-tuned-model). + * [results file](https://platform.openai.com/docs/guides/legacy-fine-tuning/analyzing-your-fine-tuned-model). * * In order to compute classification metrics, you must provide a * `validation_file`. Additionally, you must specify `classification_n_classes` for @@ -299,8 +300,8 @@ export interface FineTuneCreateParams { /** * The name of the base model to fine-tune. You can select one of "ada", "babbage", * "curie", "davinci", or a fine-tuned model created after 2022-04-21 and before - * 2023-08-22. To learn more about these models, see the [Models](/docs/models) - * documentation. + * 2023-08-22. To learn more about these models, see the + * [Models](https://platform.openai.com/docs/models) documentation. */ model?: (string & {}) | 'ada' | 'babbage' | 'curie' | 'davinci' | null; @@ -335,7 +336,7 @@ export interface FineTuneCreateParams { * * If you provide this file, the data is used to generate validation metrics * periodically during fine-tuning. These metrics can be viewed in the - * [fine-tuning results file](/docs/guides/legacy-fine-tuning/analyzing-your-fine-tuned-model). + * [fine-tuning results file](https://platform.openai.com/docs/guides/legacy-fine-tuning/analyzing-your-fine-tuned-model). * Your train and validation data should be mutually exclusive. * * Your dataset must be formatted as a JSONL file, where each validation example is @@ -343,8 +344,8 @@ export interface FineTuneCreateParams { * upload your file with the purpose `fine-tune`. * * See the - * [fine-tuning guide](/docs/guides/legacy-fine-tuning/creating-training-data) for - * more details. + * [fine-tuning guide](https://platform.openai.com/docs/guides/legacy-fine-tuning/creating-training-data) + * for more details. */ validation_file?: string | null; } diff --git a/src/resources/fine-tuning/jobs.ts b/src/resources/fine-tuning/jobs.ts index dfb128d4b..2c8ad1049 100644 --- a/src/resources/fine-tuning/jobs.ts +++ b/src/resources/fine-tuning/jobs.ts @@ -14,7 +14,7 @@ export class Jobs extends APIResource { * Response includes details of the enqueued job including job status and the name * of the fine-tuned models once complete. * - * [Learn more about fine-tuning](/docs/guides/fine-tuning) + * [Learn more about fine-tuning](https://platform.openai.com/docs/guides/fine-tuning) */ create(body: JobCreateParams, options?: Core.RequestOptions): Core.APIPromise { return this.post('/fine_tuning/jobs', { body, ...options }); @@ -23,7 +23,7 @@ export class Jobs extends APIResource { /** * Get info about a fine-tuning job. * - * [Learn more about fine-tuning](/docs/guides/fine-tuning) + * [Learn more about fine-tuning](https://platform.openai.com/docs/guides/fine-tuning) */ retrieve(fineTuningJobId: string, options?: Core.RequestOptions): Core.APIPromise { return this.get(`/fine_tuning/jobs/${fineTuningJobId}`, options); @@ -111,7 +111,8 @@ export interface FineTuningJob { /** * The hyperparameters used for the fine-tuning job. See the - * [fine-tuning guide](/docs/guides/fine-tuning) for more details. + * [fine-tuning guide](https://platform.openai.com/docs/guides/fine-tuning) for + * more details. */ hyperparameters: FineTuningJob.Hyperparameters; @@ -165,7 +166,8 @@ export interface FineTuningJob { export namespace FineTuningJob { /** * The hyperparameters used for the fine-tuning job. See the - * [fine-tuning guide](/docs/guides/fine-tuning) for more details. + * [fine-tuning guide](https://platform.openai.com/docs/guides/fine-tuning) for + * more details. */ export interface Hyperparameters { /** @@ -193,19 +195,21 @@ export interface FineTuningJobEvent { export interface JobCreateParams { /** * The name of the model to fine-tune. You can select one of the - * [supported models](/docs/guides/fine-tuning/what-models-can-be-fine-tuned). + * [supported models](https://platform.openai.com/docs/guides/fine-tuning/what-models-can-be-fine-tuned). */ model: (string & {}) | 'babbage-002' | 'davinci-002' | 'gpt-3.5-turbo'; /** * The ID of an uploaded file that contains training data. * - * See [upload file](/docs/api-reference/files/upload) for how to upload a file. + * See [upload file](https://platform.openai.com/docs/api-reference/files/upload) + * for how to upload a file. * * Your dataset must be formatted as a JSONL file. Additionally, you must upload * your file with the purpose `fine-tune`. * - * See the [fine-tuning guide](/docs/guides/fine-tuning) for more details. + * See the [fine-tuning guide](https://platform.openai.com/docs/guides/fine-tuning) + * for more details. */ training_file: string; @@ -234,7 +238,8 @@ export interface JobCreateParams { * Your dataset must be formatted as a JSONL file. You must upload your file with * the purpose `fine-tune`. * - * See the [fine-tuning guide](/docs/guides/fine-tuning) for more details. + * See the [fine-tuning guide](https://platform.openai.com/docs/guides/fine-tuning) + * for more details. */ validation_file?: string | null; } diff --git a/src/resources/images.ts b/src/resources/images.ts index 81eb78674..a7a7424b2 100644 --- a/src/resources/images.ts +++ b/src/resources/images.ts @@ -79,7 +79,8 @@ export interface ImageCreateVariationParams { /** * A unique identifier representing your end-user, which can help OpenAI to monitor - * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + * and detect abuse. + * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices/end-user-ids). */ user?: string; } @@ -123,7 +124,8 @@ export interface ImageEditParams { /** * A unique identifier representing your end-user, which can help OpenAI to monitor - * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + * and detect abuse. + * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices/end-user-ids). */ user?: string; } @@ -154,7 +156,8 @@ export interface ImageGenerateParams { /** * A unique identifier representing your end-user, which can help OpenAI to monitor - * and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). + * and detect abuse. + * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices/end-user-ids). */ user?: string; } From 1f98eac5be956e56d75ef5456115165b45a4763c Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 14 Sep 2023 11:35:07 -0500 Subject: [PATCH 078/725] feat(client): retry on 408 Request Timeout (#310) --- README.md | 4 ++-- src/core.ts | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1e670180f..3e66766ab 100644 --- a/README.md +++ b/README.md @@ -178,8 +178,8 @@ See [`@azure/openai`](https://www.npmjs.com/package/@azure/openai) for an Azure- ### Retries Certain errors will be automatically retried 2 times by default, with a short exponential backoff. -Connection errors (for example, due to a network connectivity problem), 409 Conflict, 429 Rate Limit, -and >=500 Internal errors will all be retried by default. +Connection errors (for example, due to a network connectivity problem), 408 Request Timeout, 409 Conflict, +429 Rate Limit, and >=500 Internal errors will all be retried by default. You can use the `maxRetries` option to configure or disable this: diff --git a/src/core.ts b/src/core.ts index 18190d28e..acf3bd33b 100644 --- a/src/core.ts +++ b/src/core.ts @@ -463,6 +463,9 @@ export abstract class APIClient { if (shouldRetryHeader === 'true') return true; if (shouldRetryHeader === 'false') return false; + // Retry on request timeouts. + if (response.status === 408) return true; + // Retry on lock timeouts. if (response.status === 409) return true; From c469f0e7a2fbf52940e780c99be71c097ab540e5 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 14 Sep 2023 11:35:26 -0500 Subject: [PATCH 079/725] chore(next => master): release 4.7.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index fd087344c..c0f9e2df1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.6.0" + ".": "4.7.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b4fa6c08c..60ef9e938 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 4.7.0 (2023-09-14) + +Full Changelog: [v4.6.0...v4.7.0](https://github.com/openai/openai-node/compare/v4.6.0...v4.7.0) + +### Features + +* **client:** retry on 408 Request Timeout ([#310](https://github.com/openai/openai-node/issues/310)) ([1f98eac](https://github.com/openai/openai-node/commit/1f98eac5be956e56d75ef5456115165b45a4763c)) +* make docs urls in comments absolute ([#306](https://github.com/openai/openai-node/issues/306)) ([9db3819](https://github.com/openai/openai-node/commit/9db381961e38d2280b0602447e7d91691b327bde)) + ## 4.6.0 (2023-09-08) Full Changelog: [v4.5.0...v4.6.0](https://github.com/openai/openai-node/compare/v4.5.0...v4.6.0) diff --git a/package.json b/package.json index 5e4fd2c66..02a50b866 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.6.0", + "version": "4.7.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index b04b2bd0c..65ca08e28 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.6.0'; // x-release-please-version +export const VERSION = '4.7.0'; // x-release-please-version From 6757c756fc280c5310ab7168e08e9f36a9308ae9 Mon Sep 17 00:00:00 2001 From: Alex Rattray Date: Thu, 14 Sep 2023 10:28:08 -0400 Subject: [PATCH 080/725] chore: remove deprecated fine-tunes example --- examples/fine-tune-data.jsonl | 3 --- examples/fine-tunes.ts | 41 ----------------------------------- 2 files changed, 44 deletions(-) delete mode 100644 examples/fine-tune-data.jsonl delete mode 100755 examples/fine-tunes.ts diff --git a/examples/fine-tune-data.jsonl b/examples/fine-tune-data.jsonl deleted file mode 100644 index b8b711d61..000000000 --- a/examples/fine-tune-data.jsonl +++ /dev/null @@ -1,3 +0,0 @@ -{"prompt": "", "completion": ""} -{"prompt": "", "completion": ""} -{"prompt": "", "completion": ""} diff --git a/examples/fine-tunes.ts b/examples/fine-tunes.ts deleted file mode 100755 index ee4cb9eb9..000000000 --- a/examples/fine-tunes.ts +++ /dev/null @@ -1,41 +0,0 @@ -#!/usr/bin/env -S npm run tsn -T - -/** - * Fine-tuning allows you to train models on your own data. - * - * See these guides for more information: - * - https://help.openai.com/en/articles/5528730-fine-tuning-a-classifier-to-improve-truthfulness - * - https://platform.openai.com/docs/guides/fine-tuning - */ - -import fs from 'fs'; -import OpenAI from 'openai'; - -// Gets the API Key from the environment variable `OPENAI_API_KEY` -const client = new OpenAI(); - -async function main() { - console.log(`Uploading file`); - const file = await client.files.create({ - file: fs.createReadStream('examples/fine-tune-data.jsonl'), - purpose: 'fine-tune', - }); - console.log(`Uploaded file with ID: ${file.id}`); - console.log('-----'); - - console.log(`Starting fine-tuning`); - const fineTune = await client.fineTunes.create({ model: 'babbage', training_file: file.id }); - console.log(`Fine-tuning ID: ${fineTune.id}`); - console.log('-----'); - - console.log(`Streaming fine-tuning progress:`); - const stream = await client.fineTunes.listEvents(fineTune.id, { stream: true }); - for await (const part of stream) { - console.log(part.message); - } -} - -main().catch((err) => { - console.error(err); - process.exit(1); -}); From 96bad3113b582a9abcfae9467ea47c951077bd33 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 15 Sep 2023 06:14:29 -0400 Subject: [PATCH 081/725] ci: configure release PR title (#312) --- release-please-config.json | 1 + 1 file changed, 1 insertion(+) diff --git a/release-please-config.json b/release-please-config.json index 04230db37..a497a8890 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -8,6 +8,7 @@ "bump-minor-pre-major": true, "bump-patch-for-minor-pre-major": true, "pull-request-header": "Automated Release PR", + "pull-request-title-pattern": "release: ${version}", "changelog-sections": [ { "type": "feat", From a16e26863390235cb43e2fe0e569298a4f84c32f Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 15 Sep 2023 12:15:45 -0400 Subject: [PATCH 082/725] docs: declare Bun 1.0 officially supported (#314) --- README.md | 2 +- ecosystem-tests/bun/README.md | 2 -- ecosystem-tests/bun/openai.test.ts | 14 ++++++------ ecosystem-tests/bun/package.json | 3 +++ ecosystem-tests/bun/sample1.mp3 | Bin 0 -> 121671 bytes package.json | 35 +++++++++++++++++++++++++++++ 6 files changed, 46 insertions(+), 10 deletions(-) create mode 100644 ecosystem-tests/bun/sample1.mp3 diff --git a/README.md b/README.md index 3e66766ab..7172ff706 100644 --- a/README.md +++ b/README.md @@ -315,7 +315,7 @@ The following runtimes are supported: - Node.js 16 LTS or later ([non-EOL](https://endoflife.date/nodejs)) versions. - Deno v1.28.0 or higher, using `import OpenAI from "npm:openai"`. - Deno Deploy is not yet supported. +- Bun 1.0 or later. - Cloudflare Workers. - Vercel Edge Runtime. diff --git a/ecosystem-tests/bun/README.md b/ecosystem-tests/bun/README.md index d4885a50c..05f68e2ca 100644 --- a/ecosystem-tests/bun/README.md +++ b/ecosystem-tests/bun/README.md @@ -11,5 +11,3 @@ To run: ```bash bun run index.ts ``` - -This project was created using `bun init` in bun v0.6.3. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime. diff --git a/ecosystem-tests/bun/openai.test.ts b/ecosystem-tests/bun/openai.test.ts index 399b40c84..f6642c7cf 100644 --- a/ecosystem-tests/bun/openai.test.ts +++ b/ecosystem-tests/bun/openai.test.ts @@ -57,7 +57,7 @@ test(`streaming works`, async function () { // @ts-ignore avoid DOM lib for testing purposes if (typeof File !== 'undefined') { - test.todo('handles builtinFile', async function () { + test('handles builtinFile', async function () { const file = await fetch(url) .then((x) => x.arrayBuffer()) // @ts-ignore avoid DOM lib for testing purposes @@ -68,14 +68,14 @@ if (typeof File !== 'undefined') { }); } -test.todo('handles Response', async function () { +test('handles Response', async function () { const file = await fetch(url); const result = await client.audio.transcriptions.create({ file, model }); expectSimilar(result.text, correctAnswer, 12); }); -test.todo('handles fs.ReadStream', async function () { +test('handles fs.ReadStream', async function () { const result = await client.audio.transcriptions.create({ file: fs.createReadStream('sample1.mp3'), model, @@ -87,7 +87,7 @@ const fineTune = `{"prompt": "", "completion": "=1.0.0" + }, "scripts": { "tsc": "tsc" }, diff --git a/ecosystem-tests/bun/sample1.mp3 b/ecosystem-tests/bun/sample1.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1e787cd7cf33203d99fa50b39b232b318d287541 GIT binary patch literal 121671 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC Date: Fri, 15 Sep 2023 12:16:04 -0400 Subject: [PATCH 083/725] release: 4.7.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c0f9e2df1..d839ae398 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.7.0" + ".": "4.7.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 60ef9e938..aec372606 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.7.1 (2023-09-15) + +Full Changelog: [v4.7.0...v4.7.1](https://github.com/openai/openai-node/compare/v4.7.0...v4.7.1) + +### Documentation + +* declare Bun 1.0 officially supported ([#314](https://github.com/openai/openai-node/issues/314)) ([a16e268](https://github.com/openai/openai-node/commit/a16e26863390235cb43e2fe0e569298a4f84c32f)) + ## 4.7.0 (2023-09-14) Full Changelog: [v4.6.0...v4.7.0](https://github.com/openai/openai-node/compare/v4.6.0...v4.7.0) diff --git a/package.json b/package.json index a6e400fec..3f3303e24 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.7.0", + "version": "4.7.1", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 65ca08e28..509351224 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.7.0'; // x-release-please-version +export const VERSION = '4.7.1'; // x-release-please-version From 93412197c67cb3fb203f35e3ae0a7c3fb173453e Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 15 Sep 2023 13:42:05 -0400 Subject: [PATCH 084/725] feat(errors): add status code to error message (#315) --- src/core.ts | 2 +- src/error.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core.ts b/src/core.ts index acf3bd33b..3a473ca61 100644 --- a/src/core.ts +++ b/src/core.ts @@ -377,7 +377,7 @@ export abstract class APIClient { return this.retryRequest(options, retriesRemaining, responseHeaders); } - const errText = await response.text().catch(() => 'Unknown'); + const errText = await response.text().catch((e) => castToError(e).message); const errJSON = safeJSON(errText); const errMessage = errJSON ? undefined : errText; diff --git a/src/error.ts b/src/error.ts index d2c337424..39f91b229 100644 --- a/src/error.ts +++ b/src/error.ts @@ -17,7 +17,7 @@ export class APIError extends Error { message: string | undefined, headers: Headers | undefined, ) { - super(APIError.makeMessage(error, message)); + super(`${status} ${APIError.makeMessage(error, message)}`); this.status = status; this.headers = headers; @@ -34,7 +34,7 @@ export class APIError extends Error { typeof error.message === 'string' ? error.message : JSON.stringify(error.message) : error ? JSON.stringify(error) - : message || 'Unknown error occurred' + : message || 'status code (no body)' ); } From d3a30de4b3cdfa87ef0708c8f077fd0859b37587 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 15 Sep 2023 13:42:22 -0400 Subject: [PATCH 085/725] release: 4.8.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d839ae398..1ed3fbdcb 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.7.1" + ".": "4.8.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index aec372606..e5c25e6a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.8.0 (2023-09-15) + +Full Changelog: [v4.7.1...v4.8.0](https://github.com/openai/openai-node/compare/v4.7.1...v4.8.0) + +### Features + +* **errors:** add status code to error message ([#315](https://github.com/openai/openai-node/issues/315)) ([9341219](https://github.com/openai/openai-node/commit/93412197c67cb3fb203f35e3ae0a7c3fb173453e)) + ## 4.7.1 (2023-09-15) Full Changelog: [v4.7.0...v4.7.1](https://github.com/openai/openai-node/compare/v4.7.0...v4.7.1) diff --git a/package.json b/package.json index 3f3303e24..540b936a3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.7.1", + "version": "4.8.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 509351224..5ae204f4b 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.7.1'; // x-release-please-version +export const VERSION = '4.8.0'; // x-release-please-version From 49101a0e864033cf30273c7b30283a9f5fb8b05e Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 20 Sep 2023 18:06:57 -0400 Subject: [PATCH 086/725] feat(client): support importing node or web shims manually (#325) --- .prettierignore | 3 + README.md | 4 + build | 15 +- ecosystem-tests/bun/openai.test.ts | 34 + ecosystem-tests/bun/tsconfig.json | 3 +- ecosystem-tests/cli.ts | 78 +- .../cloudflare-worker/package.json | 2 +- .../src/uploadWebApiTestCases.ts | 34 + .../cloudflare-worker/src/worker.ts | 5 + .../cloudflare-worker/tests/test.js | 2 +- .../cloudflare-worker/tsconfig.json | 1 + ecosystem-tests/deno/main_test.ts | 34 + .../jest.config.cjs | 0 .../moduleResolution/node/type-tests.ts | 14 + .../moduleResolution/nodenext/type-tests.ts | 5 + .../node-ts-cjs-auto/package-lock.json | 3868 +++++++++++++++ .../package.json | 9 +- .../sample1.mp3 | Bin .../node-ts-cjs-auto/tests/shims.ts | 7 + .../tests/test.ts | 0 .../node-ts-cjs-auto/tsconfig.json | 54 + .../node-ts-cjs-auto/tsconfig.nodenext.json | 54 + .../jest.config.cjs | 0 .../package-lock.json | 721 ++- ecosystem-tests/node-ts-cjs-web/package.json | 28 + .../sample1.mp3 | Bin .../node-ts-cjs-web/tests/shims.ts | 11 + .../tests/test-jsdom-unpolyfilled.ts | 11 + .../node-ts-cjs-web/tests/test-jsdom.ts | 166 + .../tests/test-node.ts} | 65 +- .../tsconfig.json | 2 +- .../tsconfig.nodenext.json | 2 +- ecosystem-tests/node-ts-cjs/package-lock.json | 632 ++- ecosystem-tests/node-ts-cjs/package.json | 2 + .../node-ts-cjs/tests/late-shim-errors.ts | 8 + .../node-ts-cjs/tests/multiple-shim-errors.ts | 8 + ecosystem-tests/node-ts-cjs/tests/shims.ts | 12 + .../tests/test-jsdom-compat-error.ts | 11 + .../node-ts-cjs/tests/test-jsdom.ts | 146 + .../node-ts-cjs/tests/test-node.ts | 194 + ecosystem-tests/node-ts-cjs/tsconfig.json | 3 +- .../node-ts-cjs/tsconfig.nodenext.json | 3 +- .../node-ts-esm-auto/esnext-type-tests.ts | 5 + .../jest.config.cjs | 0 .../package-lock.json | 0 ecosystem-tests/node-ts-esm-auto/package.json | 23 + .../sample1.mp3 | Bin .../node-ts-esm-auto/tests/shims.ts | 5 + .../node-ts-esm-auto/tests/test.ts | 196 + .../node-ts-esm-auto/tsconfig.json | 54 + .../node-ts-esm-web/jest.config.cjs | 23 + .../package-lock.json | 355 +- .../package.json | 2 +- ecosystem-tests/node-ts-esm-web/sample1.mp3 | Bin 0 -> 121671 bytes .../node-ts-esm-web/tests/shims.ts | 12 + .../tests/test.ts | 66 +- .../tsconfig.json | 2 +- .../tsconfig.noderesolution.json | 2 +- ecosystem-tests/node-ts-esm/package.json | 2 +- ecosystem-tests/node-ts-esm/tests/shims.ts | 7 + .../node-ts-esm/tests/test-esnext.ts | 68 + ecosystem-tests/node-ts-esm/tests/test.ts | 2 + ecosystem-tests/node-ts-esm/tsconfig.json | 2 +- .../node-ts-esm/tsconfig.noderesolution.json | 3 +- .../node-ts4.5-jest27/jest.config.cjs | 9 + .../node-ts4.5-jest27/package-lock.json | 4395 +++++++++++++++++ .../package.json | 7 +- ecosystem-tests/node-ts4.5-jest27/sample1.mp3 | Bin 0 -> 121671 bytes .../tests/test.ts | 21 + .../tsconfig.json | 2 +- .../ts-browser-webpack/package.json | 2 +- .../ts-browser-webpack/src/index.ts | 35 + .../vercel-edge/src/uploadWebApiTestCases.ts | 63 +- jest.config.js | 2 +- package.json | 94 +- release-please-config.json | 4 +- scripts/postprocess-files.cjs | 160 + scripts/remove-triple-slash-references.js | 11 - scripts/replace-self-referencing-imports.js | 24 - scripts/replace-shim-guards.js | 14 - scripts/resolve-full-paths.js | 16 - src/_shims/MultipartBody.ts | 9 + src/_shims/README.md | 46 + src/_shims/ReadableStream.d.ts | 38 - src/_shims/ReadableStream.mjs | 7 - src/_shims/agent-node.ts | 22 - src/_shims/agent.ts | 12 - .../runtime-bun.ts} | 3 +- .../runtime-deno.ts} | 4 +- src/_shims/auto/runtime-node.ts | 4 + src/_shims/auto/runtime.ts | 4 + src/_shims/auto/types-deno.ts | 4 + src/_shims/auto/types-node.ts | 4 + src/_shims/auto/types.d.ts | 99 + src/_shims/auto/types.js | 3 + src/_shims/auto/types.mjs | 3 + src/_shims/bun-runtime.ts | 14 + src/_shims/fetch-deno.ts | 27 - src/_shims/fetch-node.d.ts | 64 - src/_shims/fetch-node.js | 12 - src/_shims/fetch-node.mjs | 14 - src/_shims/fetch.d.ts | 60 - src/_shims/fetch.js | 13 - src/_shims/fetch.mjs | 15 - src/_shims/fileFromPath-node.ts | 29 - src/_shims/fileFromPath.ts | 29 - src/_shims/form-data-deno.ts | 19 - src/_shims/form-data-node.d.ts | 45 - src/_shims/form-data-node.js | 11 - src/_shims/form-data-node.mjs | 9 - src/_shims/form-data.d.ts | 43 - src/_shims/form-data.js | 17 - src/_shims/form-data.mjs | 20 - src/_shims/getMultipartRequestOptions-node.ts | 25 - src/_shims/getMultipartRequestOptions.ts | 14 - src/_shims/index-deno.ts | 110 + src/_shims/index.d.ts | 79 + src/_shims/index.js | 13 + src/_shims/index.mjs | 7 + src/_shims/manual-types.d.ts | 12 + src/_shims/manual-types.js | 3 + src/_shims/manual-types.mjs | 3 + src/_shims/node-readable-node.ts | 10 - src/_shims/node-readable.ts | 30 - src/_shims/node-runtime.ts | 79 + src/_shims/node-types.d.ts | 42 + src/_shims/node-types.js | 3 + src/_shims/node-types.mjs | 3 + src/_shims/registry.ts | 62 + src/_shims/web-runtime.ts | 91 + src/_shims/web-types.d.ts | 82 + src/_shims/web-types.js | 3 + src/_shims/web-types.mjs | 3 + src/core.ts | 41 +- src/index.ts | 2 +- src/shims/node.ts | 50 + src/shims/web.ts | 50 + src/streaming.ts | 2 +- src/uploads.ts | 26 +- tests/form.test.ts | 2 +- tests/index.test.ts | 2 +- tests/responses.test.ts | 2 +- tests/uploads.test.ts | 2 +- tsconfig.build.json | 20 +- tsconfig.deno.json | 4 +- tsconfig.json | 6 +- yarn.lock | 322 +- 147 files changed, 12522 insertions(+), 1325 deletions(-) rename ecosystem-tests/{node-ts-cjs-dom => node-ts-cjs-auto}/jest.config.cjs (100%) create mode 100644 ecosystem-tests/node-ts-cjs-auto/moduleResolution/node/type-tests.ts create mode 100644 ecosystem-tests/node-ts-cjs-auto/moduleResolution/nodenext/type-tests.ts create mode 100644 ecosystem-tests/node-ts-cjs-auto/package-lock.json rename ecosystem-tests/{node-ts-cjs-dom => node-ts-cjs-auto}/package.json (74%) rename ecosystem-tests/{node-ts-cjs-dom => node-ts-cjs-auto}/sample1.mp3 (100%) create mode 100644 ecosystem-tests/node-ts-cjs-auto/tests/shims.ts rename ecosystem-tests/{node-ts-cjs-ts4.5 => node-ts-cjs-auto}/tests/test.ts (100%) create mode 100644 ecosystem-tests/node-ts-cjs-auto/tsconfig.json create mode 100644 ecosystem-tests/node-ts-cjs-auto/tsconfig.nodenext.json rename ecosystem-tests/{node-ts-cjs-ts4.5 => node-ts-cjs-web}/jest.config.cjs (100%) rename ecosystem-tests/{node-ts-cjs-ts4.5 => node-ts-cjs-web}/package-lock.json (85%) create mode 100644 ecosystem-tests/node-ts-cjs-web/package.json rename ecosystem-tests/{node-ts-cjs-ts4.5 => node-ts-cjs-web}/sample1.mp3 (100%) create mode 100644 ecosystem-tests/node-ts-cjs-web/tests/shims.ts create mode 100644 ecosystem-tests/node-ts-cjs-web/tests/test-jsdom-unpolyfilled.ts create mode 100644 ecosystem-tests/node-ts-cjs-web/tests/test-jsdom.ts rename ecosystem-tests/{node-ts-cjs-dom/tests/test.ts => node-ts-cjs-web/tests/test-node.ts} (78%) rename ecosystem-tests/{node-ts-cjs-dom => node-ts-cjs-web}/tsconfig.json (97%) rename ecosystem-tests/{node-ts-cjs-dom => node-ts-cjs-web}/tsconfig.nodenext.json (97%) create mode 100644 ecosystem-tests/node-ts-cjs/tests/late-shim-errors.ts create mode 100644 ecosystem-tests/node-ts-cjs/tests/multiple-shim-errors.ts create mode 100644 ecosystem-tests/node-ts-cjs/tests/shims.ts create mode 100644 ecosystem-tests/node-ts-cjs/tests/test-jsdom-compat-error.ts create mode 100644 ecosystem-tests/node-ts-cjs/tests/test-jsdom.ts create mode 100644 ecosystem-tests/node-ts-cjs/tests/test-node.ts create mode 100644 ecosystem-tests/node-ts-esm-auto/esnext-type-tests.ts rename ecosystem-tests/{node-ts-esm-dom => node-ts-esm-auto}/jest.config.cjs (100%) rename ecosystem-tests/{node-ts-esm-dom => node-ts-esm-auto}/package-lock.json (100%) create mode 100644 ecosystem-tests/node-ts-esm-auto/package.json rename ecosystem-tests/{node-ts-esm-dom => node-ts-esm-auto}/sample1.mp3 (100%) create mode 100644 ecosystem-tests/node-ts-esm-auto/tests/shims.ts create mode 100644 ecosystem-tests/node-ts-esm-auto/tests/test.ts create mode 100644 ecosystem-tests/node-ts-esm-auto/tsconfig.json create mode 100644 ecosystem-tests/node-ts-esm-web/jest.config.cjs rename ecosystem-tests/{node-ts-cjs-dom => node-ts-esm-web}/package-lock.json (94%) rename ecosystem-tests/{node-ts-esm-dom => node-ts-esm-web}/package.json (94%) create mode 100644 ecosystem-tests/node-ts-esm-web/sample1.mp3 create mode 100644 ecosystem-tests/node-ts-esm-web/tests/shims.ts rename ecosystem-tests/{node-ts-esm-dom => node-ts-esm-web}/tests/test.ts (77%) rename ecosystem-tests/{node-ts-esm-dom => node-ts-esm-web}/tsconfig.json (97%) rename ecosystem-tests/{node-ts-esm-dom => node-ts-esm-web}/tsconfig.noderesolution.json (97%) create mode 100644 ecosystem-tests/node-ts-esm/tests/shims.ts create mode 100644 ecosystem-tests/node-ts-esm/tests/test-esnext.ts create mode 100644 ecosystem-tests/node-ts4.5-jest27/jest.config.cjs create mode 100644 ecosystem-tests/node-ts4.5-jest27/package-lock.json rename ecosystem-tests/{node-ts-cjs-ts4.5 => node-ts4.5-jest27}/package.json (79%) create mode 100644 ecosystem-tests/node-ts4.5-jest27/sample1.mp3 rename ecosystem-tests/{node-ts-cjs => node-ts4.5-jest27}/tests/test.ts (88%) rename ecosystem-tests/{node-ts-cjs-ts4.5 => node-ts4.5-jest27}/tsconfig.json (97%) create mode 100644 scripts/postprocess-files.cjs delete mode 100644 scripts/remove-triple-slash-references.js delete mode 100644 scripts/replace-self-referencing-imports.js delete mode 100644 scripts/replace-shim-guards.js delete mode 100644 scripts/resolve-full-paths.js create mode 100644 src/_shims/MultipartBody.ts create mode 100644 src/_shims/README.md delete mode 100644 src/_shims/ReadableStream.d.ts delete mode 100644 src/_shims/ReadableStream.mjs delete mode 100644 src/_shims/agent-node.ts delete mode 100644 src/_shims/agent.ts rename src/_shims/{ReadableStream.js => auto/runtime-bun.ts} (67%) rename src/_shims/{ReadableStream-node.ts => auto/runtime-deno.ts} (50%) create mode 100644 src/_shims/auto/runtime-node.ts create mode 100644 src/_shims/auto/runtime.ts create mode 100644 src/_shims/auto/types-deno.ts create mode 100644 src/_shims/auto/types-node.ts create mode 100644 src/_shims/auto/types.d.ts create mode 100644 src/_shims/auto/types.js create mode 100644 src/_shims/auto/types.mjs create mode 100644 src/_shims/bun-runtime.ts delete mode 100644 src/_shims/fetch-deno.ts delete mode 100644 src/_shims/fetch-node.d.ts delete mode 100644 src/_shims/fetch-node.js delete mode 100644 src/_shims/fetch-node.mjs delete mode 100644 src/_shims/fetch.d.ts delete mode 100644 src/_shims/fetch.js delete mode 100644 src/_shims/fetch.mjs delete mode 100644 src/_shims/fileFromPath-node.ts delete mode 100644 src/_shims/fileFromPath.ts delete mode 100644 src/_shims/form-data-deno.ts delete mode 100644 src/_shims/form-data-node.d.ts delete mode 100644 src/_shims/form-data-node.js delete mode 100644 src/_shims/form-data-node.mjs delete mode 100644 src/_shims/form-data.d.ts delete mode 100644 src/_shims/form-data.js delete mode 100644 src/_shims/form-data.mjs delete mode 100644 src/_shims/getMultipartRequestOptions-node.ts delete mode 100644 src/_shims/getMultipartRequestOptions.ts create mode 100644 src/_shims/index-deno.ts create mode 100644 src/_shims/index.d.ts create mode 100644 src/_shims/index.js create mode 100644 src/_shims/index.mjs create mode 100644 src/_shims/manual-types.d.ts create mode 100644 src/_shims/manual-types.js create mode 100644 src/_shims/manual-types.mjs delete mode 100644 src/_shims/node-readable-node.ts delete mode 100644 src/_shims/node-readable.ts create mode 100644 src/_shims/node-runtime.ts create mode 100644 src/_shims/node-types.d.ts create mode 100644 src/_shims/node-types.js create mode 100644 src/_shims/node-types.mjs create mode 100644 src/_shims/registry.ts create mode 100644 src/_shims/web-runtime.ts create mode 100644 src/_shims/web-types.d.ts create mode 100644 src/_shims/web-types.js create mode 100644 src/_shims/web-types.mjs create mode 100644 src/shims/node.ts create mode 100644 src/shims/web.ts diff --git a/.prettierignore b/.prettierignore index 804a75c60..fc6160fb1 100644 --- a/.prettierignore +++ b/.prettierignore @@ -2,3 +2,6 @@ CHANGELOG.md /ecosystem-tests /node_modules /deno + +# don't format tsc output, will break source maps +/dist diff --git a/README.md b/README.md index 7172ff706..2b5f53335 100644 --- a/README.md +++ b/README.md @@ -318,5 +318,9 @@ The following runtimes are supported: - Bun 1.0 or later. - Cloudflare Workers. - Vercel Edge Runtime. +- Jest 28 or greater with the `"node"` environment (`"jsdom"` is not supported at this time). +- Nitro v2.6 or greater. + +Note that React Native is not supported at this time. If you are interested in other runtime environments, please open or upvote an issue on GitHub. diff --git a/build b/build index 785c3c755..85d5b4bc8 100755 --- a/build +++ b/build @@ -12,7 +12,7 @@ rm -rf dist; mkdir dist # Copy src to dist/src and build from dist/src into dist, so that # the source map for index.js.map will refer to ./src/index.ts etc cp -rp src README.md dist -rm dist/src/_shims/*-deno.* +rm dist/src/_shims/*-deno.ts dist/src/_shims/auto/*-deno.ts for file in LICENSE CHANGELOG.md; do if [ -e "${file}" ]; then cp "${file}" dist; fi done @@ -27,8 +27,8 @@ node scripts/make-dist-package-json.cjs > dist/package.json # build to .js/.mjs/.d.ts files npm exec tsc-multi # copy over handwritten .js/.mjs/.d.ts files -cp src/_shims/*.{d.ts,js,mjs} dist/_shims -npm exec tsc-alias -- -p tsconfig.build.json +cp src/_shims/*.{d.ts,js,mjs,md} dist/_shims +cp src/_shims/auto/*.{d.ts,js,mjs} dist/_shims/auto # we need to add exports = module.exports = OpenAI Node to index.js; # No way to get that from index.ts because it would cause compile errors # when building .mjs @@ -40,14 +40,7 @@ node scripts/fix-index-exports.cjs cp dist/index.d.ts dist/index.d.mts cp tsconfig.dist-src.json dist/src/tsconfig.json -# strip out lib="dom" and types="node" references; these are needed at build time, -# but would pollute the user's TS environment -find dist -type f -exec node scripts/remove-triple-slash-references.js {} + -# strip out `unknown extends RequestInit ? never :` from dist/src/_shims; -# these cause problems when viewing the .ts source files in go to definition -find dist/src/_shims -type f -exec node scripts/replace-shim-guards.js {} + - -npm exec prettier -- --loglevel=warn --write . +node scripts/postprocess-files.cjs # make sure that nothing crashes when we require the output CJS or # import the output ESM diff --git a/ecosystem-tests/bun/openai.test.ts b/ecosystem-tests/bun/openai.test.ts index f6642c7cf..6eb1ca947 100644 --- a/ecosystem-tests/bun/openai.test.ts +++ b/ecosystem-tests/bun/openai.test.ts @@ -2,6 +2,7 @@ import OpenAI, { toFile } from 'openai'; import fs from 'fs'; import { distance } from 'fastest-levenshtein'; import { test, expect } from 'bun:test'; +import { ChatCompletion } from 'openai/resources/chat/completions'; const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; const filename = 'sample-1.mp3'; @@ -42,6 +43,39 @@ test(`basic request works`, async function () { expectSimilar(completion.choices[0]?.message?.content, 'This is a test', 10); }); +test(`raw response`, async function () { + const response = await client.chat.completions + .create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + }) + .asResponse(); + + // test that we can use web Response API + const { body } = response; + if (!body) throw new Error('expected response.body to be defined'); + + const reader = body.getReader(); + const chunks: Uint8Array[] = []; + let result; + do { + result = await reader.read(); + if (!result.done) chunks.push(result.value); + } while (!result.done); + + reader.releaseLock(); + + let offset = 0; + const merged = new Uint8Array(chunks.reduce((total, chunk) => total + chunk.length, 0)); + for (const chunk of chunks) { + merged.set(chunk, offset); + offset += chunk.length; + } + + const json: ChatCompletion = JSON.parse(new TextDecoder().decode(merged)); + expectSimilar(json.choices[0]?.message.content || '', 'This is a test', 10); +}); + test(`streaming works`, async function () { const stream = await client.chat.completions.create({ model: 'gpt-4', diff --git a/ecosystem-tests/bun/tsconfig.json b/ecosystem-tests/bun/tsconfig.json index 29f8aa003..69a17ce99 100644 --- a/ecosystem-tests/bun/tsconfig.json +++ b/ecosystem-tests/bun/tsconfig.json @@ -1,4 +1,5 @@ { + "include": ["*.ts"], "compilerOptions": { "lib": ["ESNext"], "module": "esnext", @@ -8,7 +9,7 @@ "allowImportingTsExtensions": true, "strict": true, "downlevelIteration": true, - "skipLibCheck": true, + "skipLibCheck": false, "jsx": "preserve", "allowSyntheticDefaultImports": true, "forceConsistentCasingInFileNames": true, diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index 6d4095f1c..00ea96bfd 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -7,7 +7,20 @@ import path from 'path'; const TAR_NAME = 'openai.tgz'; const PACK_FILE = `.pack/${TAR_NAME}`; +async function defaultNodeRunner() { + await installPackage(); + await run('npm', ['run', 'tsc']); + if (state.live) await run('npm', ['test']); +} + const projects = { + 'node-ts-cjs': defaultNodeRunner, + 'node-ts-cjs-web': defaultNodeRunner, + 'node-ts-cjs-auto': defaultNodeRunner, + 'node-ts4.5-jest27': defaultNodeRunner, + 'node-ts-esm': defaultNodeRunner, + 'node-ts-esm-web': defaultNodeRunner, + 'node-ts-esm-auto': defaultNodeRunner, 'ts-browser-webpack': async () => { await installPackage(); @@ -45,36 +58,6 @@ const projects = { await run('npm', ['run', 'deploy']); } }, - 'node-ts-cjs': async () => { - await installPackage(); - - await run('npm', ['run', 'tsc']); - - if (state.live) { - await run('npm', ['test']); - } - }, - 'node-ts-cjs-ts4.5': async () => { - await installPackage(); - await run('npm', ['run', 'tsc']); - }, - 'node-ts-cjs-dom': async () => { - await installPackage(); - await run('npm', ['run', 'tsc']); - }, - 'node-ts-esm': async () => { - await installPackage(); - - await run('npm', ['run', 'tsc']); - - if (state.live) { - await run('npm', ['run', 'test']); - } - }, - 'node-ts-esm-dom': async () => { - await installPackage(); - await run('npm', ['run', 'tsc']); - }, bun: async () => { if (state.fromNpm) { await run('bun', ['install', '-D', state.fromNpm]); @@ -116,6 +99,7 @@ const projects = { }; const projectNames = Object.keys(projects) as Array; +const projectNamesSet = new Set(projectNames); function parseArgs() { return yargs(process.argv.slice(2)) @@ -189,10 +173,13 @@ async function main() { await buildPackage(); } + const positionalArgs = args._.filter(Boolean); + // For some reason `yargs` doesn't pick up the positional args correctly const projectsToRun = ( args.projects?.length ? args.projects - : args._.length ? args._ + : positionalArgs.length ? + positionalArgs.filter((n) => typeof n === 'string' && (projectNamesSet as Set).has(n)) : projectNames) as typeof projectNames; console.error(`running projects: ${projectsToRun}`); @@ -234,10 +221,11 @@ async function main() { const project = queue.shift(); if (!project) break; - let stdout, stderr; + // preserve interleaved ordering of writes to stdout/stderr + const chunks: { dest: 'stdout' | 'stderr'; data: string | Buffer }[] = []; try { runningProjects.add(project); - const result = await execa( + const child = execa( 'yarn', [ 'tsn', @@ -252,16 +240,19 @@ async function main() { ], { stdio: 'pipe', encoding: 'utf8', maxBuffer: 100 * 1024 * 1024 }, ); - ({ stdout, stderr } = result); + child.stdout?.on('data', (data) => chunks.push({ dest: 'stdout', data })); + child.stderr?.on('data', (data) => chunks.push({ dest: 'stderr', data })); + await child; } catch (error) { - ({ stdout, stderr } = error as any); failed.push(project); } finally { runningProjects.delete(project); } - if (stdout) process.stdout.write(stdout); - if (stderr) process.stderr.write(stderr); + for (const { dest, data } of chunks) { + if (dest === 'stdout') process.stdout.write(data); + else process.stderr.write(data); + } } }), ); @@ -274,18 +265,21 @@ async function main() { await withChdir(path.join(rootDir, 'ecosystem-tests', project), async () => { console.error('\n'); - console.error(banner(project)); + console.error(banner(`▶️ ${project}`)); console.error('\n'); try { await withRetry(fn, project, state.retry); - console.error(`✅ - Successfully ran ${project}`); + console.error('\n'); + console.error(banner(`✅ ${project}`)); } catch (err) { if (err && (err as any).shortMessage) { - console.error('❌', (err as any).shortMessage); + console.error((err as any).shortMessage); } else { - console.error('❌', err); + console.error(err); } + console.error('\n'); + console.error(banner(`❌ ${project}`)); failed.push(project); } console.error('\n'); @@ -331,8 +325,6 @@ async function buildPackage() { return; } - await run('yarn', ['build']); - if (!(await pathExists('.pack'))) { await fs.mkdir('.pack'); } diff --git a/ecosystem-tests/cloudflare-worker/package.json b/ecosystem-tests/cloudflare-worker/package.json index d85b4b36d..463de4045 100644 --- a/ecosystem-tests/cloudflare-worker/package.json +++ b/ecosystem-tests/cloudflare-worker/package.json @@ -8,7 +8,7 @@ "deploy": "wrangler publish", "start": "wrangler dev", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", - "test:ci": "WAIT_ON_INTERVAL=10000 start-server-and-test start http://localhost:8787 test" + "test:ci": "start-server-and-test start http://localhost:8787 test" }, "devDependencies": { "@cloudflare/workers-types": "^4.20230419.0", diff --git a/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts b/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts index f915a6794..f7651a992 100644 --- a/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts +++ b/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts @@ -1,5 +1,6 @@ import OpenAI, { toFile } from 'openai'; import { TranscriptionCreateParams } from 'openai/resources/audio/transcriptions'; +import { ChatCompletion } from 'openai/resources/chat/completions'; /** * Tests uploads using various Web API data objects. @@ -45,6 +46,39 @@ export function uploadWebApiTestCases({ await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); } + it(`raw response`, async function () { + const response = await client.chat.completions + .create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + }) + .asResponse(); + + // test that we can use web Response API + const { body } = response; + if (!body) throw new Error('expected response.body to be defined'); + + const reader = body.getReader(); + const chunks: Uint8Array[] = []; + let result; + do { + result = await reader.read(); + if (!result.done) chunks.push(result.value); + } while (!result.done); + + reader.releaseLock(); + + let offset = 0; + const merged = new Uint8Array(chunks.reduce((total, chunk) => total + chunk.length, 0)); + for (const chunk of chunks) { + merged.set(chunk, offset); + offset += chunk.length; + } + + const json: ChatCompletion = JSON.parse(new TextDecoder().decode(merged)); + expectSimilar(json.choices[0]?.message.content || '', 'This is a test', 10); + }); + it(`streaming works`, async function () { const stream = await client.chat.completions.create({ model: 'gpt-4', diff --git a/ecosystem-tests/cloudflare-worker/src/worker.ts b/ecosystem-tests/cloudflare-worker/src/worker.ts index 9e6b935bd..ce2012f57 100644 --- a/ecosystem-tests/cloudflare-worker/src/worker.ts +++ b/ecosystem-tests/cloudflare-worker/src/worker.ts @@ -33,6 +33,11 @@ type Test = { description: string; handler: () => Promise }; export default { async fetch(request: Request, env: Env, ctx: ExecutionContext): Promise { + const url = new URL(request.url); + // start-server-and-test polls / to see if the server is up and running + if (url.pathname === '/') return new Response(); + // then the test code requests /test + if (url.pathname !== '/test') return new Response(null, { status: 404 }); try { console.error('importing openai'); const { default: OpenAI } = await import('openai'); diff --git a/ecosystem-tests/cloudflare-worker/tests/test.js b/ecosystem-tests/cloudflare-worker/tests/test.js index 0fc5044a6..3a1ca3ea1 100644 --- a/ecosystem-tests/cloudflare-worker/tests/test.js +++ b/ecosystem-tests/cloudflare-worker/tests/test.js @@ -3,7 +3,7 @@ import fetch from 'node-fetch'; it( 'works', async () => { - expect(await (await fetch('http://github.com/service/http://localhost:8787/')).text()).toEqual('Passed!'); + expect(await (await fetch('http://github.com/service/http://localhost:8787/test')).text()).toEqual('Passed!'); }, 3 * 60000 ); diff --git a/ecosystem-tests/cloudflare-worker/tsconfig.json b/ecosystem-tests/cloudflare-worker/tsconfig.json index 72dc410d8..cde90e627 100644 --- a/ecosystem-tests/cloudflare-worker/tsconfig.json +++ b/ecosystem-tests/cloudflare-worker/tsconfig.json @@ -1,4 +1,5 @@ { + "include": ["src/*.ts"], "compilerOptions": { /* Visit https://aka.ms/tsconfig.json to read more about this file */ diff --git a/ecosystem-tests/deno/main_test.ts b/ecosystem-tests/deno/main_test.ts index 4bed6a076..988b03d84 100644 --- a/ecosystem-tests/deno/main_test.ts +++ b/ecosystem-tests/deno/main_test.ts @@ -1,6 +1,7 @@ import { assertEquals, AssertionError } from 'https://deno.land/std@0.192.0/testing/asserts.ts'; import OpenAI, { toFile } from 'npm:openai@3.3.0'; import { distance } from 'https://deno.land/x/fastest_levenshtein/mod.ts'; +import { ChatCompletion } from 'npm:openai@3.3.0/resources/chat/completions'; const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; const filename = 'sample-1.mp3'; @@ -36,6 +37,39 @@ function assertSimilar(received: string, expected: string, maxDistance: number) throw new AssertionError(message); } +Deno.test(async function rawResponse() { + const response = await client.chat.completions + .create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + }) + .asResponse(); + + // test that we can use web Response API + const { body } = response; + if (!body) throw new Error('expected response.body to be defined'); + + const reader = body.getReader(); + const chunks: Uint8Array[] = []; + let result; + do { + result = await reader.read(); + if (!result.done) chunks.push(result.value); + } while (!result.done); + + reader.releaseLock(); + + let offset = 0; + const merged = new Uint8Array(chunks.reduce((total, chunk) => total + chunk.length, 0)); + for (const chunk of chunks) { + merged.set(chunk, offset); + offset += chunk.length; + } + + const json: ChatCompletion = JSON.parse(new TextDecoder().decode(merged)); + assertSimilar(json.choices[0]?.message.content || '', 'This is a test', 10); +}); + Deno.test(async function streamingWorks() { const stream = await client.chat.completions.create({ model: 'gpt-4', diff --git a/ecosystem-tests/node-ts-cjs-dom/jest.config.cjs b/ecosystem-tests/node-ts-cjs-auto/jest.config.cjs similarity index 100% rename from ecosystem-tests/node-ts-cjs-dom/jest.config.cjs rename to ecosystem-tests/node-ts-cjs-auto/jest.config.cjs diff --git a/ecosystem-tests/node-ts-cjs-auto/moduleResolution/node/type-tests.ts b/ecosystem-tests/node-ts-cjs-auto/moduleResolution/node/type-tests.ts new file mode 100644 index 000000000..a3c4f383b --- /dev/null +++ b/ecosystem-tests/node-ts-cjs-auto/moduleResolution/node/type-tests.ts @@ -0,0 +1,14 @@ +import OpenAI from 'openai'; + +const client = new OpenAI(); + +async function typeTests() { + const response = await client.audio.transcriptions + .create({ + file: 'test' as any, + model: 'whisper-1', + }) + .asResponse(); + // @ts-expect-error this doesn't work with "moduleResolution": "node" + response.body; +} diff --git a/ecosystem-tests/node-ts-cjs-auto/moduleResolution/nodenext/type-tests.ts b/ecosystem-tests/node-ts-cjs-auto/moduleResolution/nodenext/type-tests.ts new file mode 100644 index 000000000..c47ddc2a5 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs-auto/moduleResolution/nodenext/type-tests.ts @@ -0,0 +1,5 @@ +import * as shims from 'openai/_shims/index'; + +function typeTests(x: shims.Request) { + const url: string = x.url; +} diff --git a/ecosystem-tests/node-ts-cjs-auto/package-lock.json b/ecosystem-tests/node-ts-cjs-auto/package-lock.json new file mode 100644 index 000000000..56cf77290 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs-auto/package-lock.json @@ -0,0 +1,3868 @@ +{ + "name": "node-ts-cjs-auto", + "version": "0.0.1", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "node-ts-cjs-auto", + "version": "0.0.1", + "dependencies": { + "formdata-node": "^4.4.1", + "node-fetch": "^2.6.1", + "tsconfig-paths": "^4.0.0" + }, + "devDependencies": { + "@types/node": "^20.4.2", + "@types/node-fetch": "^2.6.1", + "@types/ws": "^8.5.4", + "fastest-levenshtein": "^1.0.16", + "jest": "^28.1.3", + "ts-jest": "^28.0.8", + "typescript": "4.7.4" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.22.13", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/code-frame/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/code-frame/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/code-frame/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.20.tgz", + "integrity": "sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.20.tgz", + "integrity": "sha512-Y6jd1ahLubuYweD/zJH+vvOY141v4f9igNQAQ+MBgq9JlHS2iTsZKn1aMsb3vGccZsXI16VzTBw52Xx0DWmtnA==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.22.15", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-module-transforms": "^7.22.20", + "@babel/helpers": "^7.22.15", + "@babel/parser": "^7.22.16", + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.22.20", + "@babel/types": "^7.22.19", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.15.tgz", + "integrity": "sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.15", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", + "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.9", + "@babel/helper-validator-option": "^7.22.15", + "browserslist": "^4.21.9", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", + "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.20.tgz", + "integrity": "sha512-dLT7JVWIUUxKOs1UnJUBR3S70YK+pKX6AbJgB2vMIvEkZkrfJDbYDJesnPshtKV4LhDOR3Oc5YULeDizRek+5A==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz", + "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.15.tgz", + "integrity": "sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.22.15", + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", + "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.22.16", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.16.tgz", + "integrity": "sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.20.tgz", + "integrity": "sha512-eU260mPZbU7mZ0N+X10pxXhQFMGTeLb9eFS0mxehS8HZp9o1uSnFeWQuG1UPrlxgA7QoUzFhOnilHDp0AXCyHw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.22.15", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.22.16", + "@babel/types": "^7.22.19", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.22.19", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.19.tgz", + "integrity": "sha512-P7LAw/LbojPzkgp5oznjE6tQEIWbp4PkkfrZDINTro9zgBRtI324/EYsiSI7lhPbpIQ+DCeR2NNmMWANGGfZsg==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.19", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", + "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "slash": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/core": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-28.1.3.tgz", + "integrity": "sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA==", + "dev": true, + "dependencies": { + "@jest/console": "^28.1.3", + "@jest/reporters": "^28.1.3", + "@jest/test-result": "^28.1.3", + "@jest/transform": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^28.1.3", + "jest-config": "^28.1.3", + "jest-haste-map": "^28.1.3", + "jest-message-util": "^28.1.3", + "jest-regex-util": "^28.0.2", + "jest-resolve": "^28.1.3", + "jest-resolve-dependencies": "^28.1.3", + "jest-runner": "^28.1.3", + "jest-runtime": "^28.1.3", + "jest-snapshot": "^28.1.3", + "jest-util": "^28.1.3", + "jest-validate": "^28.1.3", + "jest-watcher": "^28.1.3", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/environment": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-28.1.3.tgz", + "integrity": "sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "jest-mock": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/expect": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-28.1.3.tgz", + "integrity": "sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==", + "dev": true, + "dependencies": { + "expect": "^28.1.3", + "jest-snapshot": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-28.1.3.tgz", + "integrity": "sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==", + "dev": true, + "dependencies": { + "jest-get-type": "^28.0.2" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-28.1.3.tgz", + "integrity": "sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "@sinonjs/fake-timers": "^9.1.2", + "@types/node": "*", + "jest-message-util": "^28.1.3", + "jest-mock": "^28.1.3", + "jest-util": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-28.1.3.tgz", + "integrity": "sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==", + "dev": true, + "dependencies": { + "@jest/environment": "^28.1.3", + "@jest/expect": "^28.1.3", + "@jest/types": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-28.1.3.tgz", + "integrity": "sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^28.1.3", + "@jest/test-result": "^28.1.3", + "@jest/transform": "^28.1.3", + "@jest/types": "^28.1.3", + "@jridgewell/trace-mapping": "^0.3.13", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "jest-worker": "^28.1.3", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/schemas": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.24.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "28.1.2", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-28.1.2.tgz", + "integrity": "sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.13", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", + "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", + "dev": true, + "dependencies": { + "@jest/console": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-28.1.3.tgz", + "integrity": "sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==", + "dev": true, + "dependencies": { + "@jest/test-result": "^28.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^28.1.3", + "slash": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-28.1.3.tgz", + "integrity": "sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^28.1.3", + "@jridgewell/trace-mapping": "^0.3.13", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^28.1.3", + "jest-regex-util": "^28.0.2", + "jest-util": "^28.1.3", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/types": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@sinclair/typebox": { + "version": "0.24.51", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz", + "integrity": "sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.2.tgz", + "integrity": "sha512-pNpr1T1xLUc2l3xJKuPtsEky3ybxN3m4fJkknfIpTCTfIZCDW57oAg+EfCgIIp2rvCe0Wn++/FfodDS4YXxBwA==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.5", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.5.tgz", + "integrity": "sha512-h9yIuWbJKdOPLJTbmSpPzkF67e659PbQDba7ifWm5BJ8xTv+sDmS7rFmywkWOvXedGTivCdeGSIIX8WLcRTz8w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.2.tgz", + "integrity": "sha512-/AVzPICMhMOMYoSx9MoKpGDKdBRsIXMNByh1PXSZoa+v6ZoLa8xxtsT/uLQ/NJm0XVAWl/BvId4MlDeXJaeIZQ==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.2.tgz", + "integrity": "sha512-ojlGK1Hsfce93J0+kn3H5R73elidKUaZonirN33GSmgTUMpzI/MIFfSpF3haANe3G1bEBS9/9/QEqwTzwqFsKw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/node": { + "version": "20.5.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.7.tgz", + "integrity": "sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==", + "dev": true + }, + "node_modules/@types/node-fetch": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", + "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "form-data": "^3.0.0" + } + }, + "node_modules/@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", + "dev": true + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/@types/ws": { + "version": "8.5.5", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", + "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/yargs": { + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/babel-jest": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-28.1.3.tgz", + "integrity": "sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==", + "dev": true, + "dependencies": { + "@jest/transform": "^28.1.3", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^28.1.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-28.1.3.tgz", + "integrity": "sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-28.1.3.tgz", + "integrity": "sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^28.1.3", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.21.10", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", + "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001517", + "electron-to-chromium": "^1.4.477", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.11" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001538", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001538.tgz", + "integrity": "sha512-HWJnhnID+0YMtGlzcp3T9drmBJUVDchPJ08tpUGFLs9CYlwWPH2uLgpHn8fND5pCgXVtnGS3H4QR9XLMHVNkHw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "dev": true + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "dev": true + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/diff-sequences": { + "version": "28.1.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-28.1.1.tgz", + "integrity": "sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==", + "dev": true, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.525", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.525.tgz", + "integrity": "sha512-GIZ620hDK4YmIqAWkscG4W6RwY6gOx1y5J6f4JUQwctiJrqH2oxZYU4mXHi35oV32tr630UcepBzSBGJ/WYcZA==", + "dev": true + }, + "node_modules/emittery": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", + "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/expect/-/expect-28.1.3.tgz", + "integrity": "sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==", + "dev": true, + "dependencies": { + "@jest/expect-utils": "^28.1.3", + "jest-get-type": "^28.0.2", + "jest-matcher-utils": "^28.1.3", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true, + "engines": { + "node": ">= 4.9.1" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/formdata-node": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-4.4.1.tgz", + "integrity": "sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==", + "dependencies": { + "node-domexception": "1.0.0", + "web-streams-polyfill": "4.0.0-beta.3" + }, + "engines": { + "node": ">= 12.20" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-core-module": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest/-/jest-28.1.3.tgz", + "integrity": "sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA==", + "dev": true, + "dependencies": { + "@jest/core": "^28.1.3", + "@jest/types": "^28.1.3", + "import-local": "^3.0.2", + "jest-cli": "^28.1.3" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-28.1.3.tgz", + "integrity": "sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA==", + "dev": true, + "dependencies": { + "execa": "^5.0.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-circus": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-28.1.3.tgz", + "integrity": "sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==", + "dev": true, + "dependencies": { + "@jest/environment": "^28.1.3", + "@jest/expect": "^28.1.3", + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^28.1.3", + "jest-matcher-utils": "^28.1.3", + "jest-message-util": "^28.1.3", + "jest-runtime": "^28.1.3", + "jest-snapshot": "^28.1.3", + "jest-util": "^28.1.3", + "p-limit": "^3.1.0", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-cli": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-28.1.3.tgz", + "integrity": "sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ==", + "dev": true, + "dependencies": { + "@jest/core": "^28.1.3", + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^28.1.3", + "jest-util": "^28.1.3", + "jest-validate": "^28.1.3", + "prompts": "^2.0.1", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-config": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-28.1.3.tgz", + "integrity": "sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^28.1.3", + "@jest/types": "^28.1.3", + "babel-jest": "^28.1.3", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^28.1.3", + "jest-environment-node": "^28.1.3", + "jest-get-type": "^28.0.2", + "jest-regex-util": "^28.0.2", + "jest-resolve": "^28.1.3", + "jest-runner": "^28.1.3", + "jest-util": "^28.1.3", + "jest-validate": "^28.1.3", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-diff": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-28.1.3.tgz", + "integrity": "sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^28.1.1", + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-docblock": { + "version": "28.1.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-28.1.1.tgz", + "integrity": "sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-each": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-28.1.3.tgz", + "integrity": "sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "chalk": "^4.0.0", + "jest-get-type": "^28.0.2", + "jest-util": "^28.1.3", + "pretty-format": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-28.1.3.tgz", + "integrity": "sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==", + "dev": true, + "dependencies": { + "@jest/environment": "^28.1.3", + "@jest/fake-timers": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "jest-mock": "^28.1.3", + "jest-util": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-28.0.2.tgz", + "integrity": "sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==", + "dev": true, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-28.1.3.tgz", + "integrity": "sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^28.0.2", + "jest-util": "^28.1.3", + "jest-worker": "^28.1.3", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-28.1.3.tgz", + "integrity": "sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==", + "dev": true, + "dependencies": { + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-28.1.3.tgz", + "integrity": "sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^28.1.3", + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-message-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-mock": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-28.1.3.tgz", + "integrity": "sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", + "dev": true, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-28.1.3.tgz", + "integrity": "sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^28.1.3", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^28.1.3", + "jest-validate": "^28.1.3", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.3.tgz", + "integrity": "sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==", + "dev": true, + "dependencies": { + "jest-regex-util": "^28.0.2", + "jest-snapshot": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-runner": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-28.1.3.tgz", + "integrity": "sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==", + "dev": true, + "dependencies": { + "@jest/console": "^28.1.3", + "@jest/environment": "^28.1.3", + "@jest/test-result": "^28.1.3", + "@jest/transform": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.10.2", + "graceful-fs": "^4.2.9", + "jest-docblock": "^28.1.1", + "jest-environment-node": "^28.1.3", + "jest-haste-map": "^28.1.3", + "jest-leak-detector": "^28.1.3", + "jest-message-util": "^28.1.3", + "jest-resolve": "^28.1.3", + "jest-runtime": "^28.1.3", + "jest-util": "^28.1.3", + "jest-watcher": "^28.1.3", + "jest-worker": "^28.1.3", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-runtime": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-28.1.3.tgz", + "integrity": "sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==", + "dev": true, + "dependencies": { + "@jest/environment": "^28.1.3", + "@jest/fake-timers": "^28.1.3", + "@jest/globals": "^28.1.3", + "@jest/source-map": "^28.1.2", + "@jest/test-result": "^28.1.3", + "@jest/transform": "^28.1.3", + "@jest/types": "^28.1.3", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^28.1.3", + "jest-message-util": "^28.1.3", + "jest-mock": "^28.1.3", + "jest-regex-util": "^28.0.2", + "jest-resolve": "^28.1.3", + "jest-snapshot": "^28.1.3", + "jest-util": "^28.1.3", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-28.1.3.tgz", + "integrity": "sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^28.1.3", + "@jest/transform": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/babel__traverse": "^7.0.6", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^28.1.3", + "graceful-fs": "^4.2.9", + "jest-diff": "^28.1.3", + "jest-get-type": "^28.0.2", + "jest-haste-map": "^28.1.3", + "jest-matcher-utils": "^28.1.3", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "natural-compare": "^1.4.0", + "pretty-format": "^28.1.3", + "semver": "^7.3.5" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/jest-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-validate": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-28.1.3.tgz", + "integrity": "sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^28.0.2", + "leven": "^3.1.0", + "pretty-format": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watcher": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", + "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", + "dev": true, + "dependencies": { + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.10.2", + "jest-util": "^28.1.3", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "engines": { + "node": ">=10.5.0" + } + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pretty-format": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", + "dev": true, + "dependencies": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.6", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", + "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve.exports": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", + "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dev": true, + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "node_modules/ts-jest": { + "version": "28.0.8", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-28.0.8.tgz", + "integrity": "sha512-5FaG0lXmRPzApix8oFG8RKjAz4ehtm8yMKOTy5HX3fY6W8kmvOrmcY0hKDElW52FJov+clhUbrKAqofnj4mXTg==", + "dev": true, + "dependencies": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^28.0.0", + "json5": "^2.2.1", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "7.x", + "yargs-parser": "^21.0.1" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.0.0-beta.0 <8", + "@jest/types": "^28.0.0", + "babel-jest": "^28.0.0", + "jest": "^28.0.0", + "typescript": ">=4.3" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@jest/types": { + "optional": true + }, + "babel-jest": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/ts-jest/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/tsconfig-paths": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", + "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", + "dependencies": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "4.7.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", + "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/v8-to-istanbul": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", + "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/web-streams-polyfill": { + "version": "4.0.0-beta.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz", + "integrity": "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==", + "engines": { + "node": ">= 14" + } + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/ecosystem-tests/node-ts-cjs-dom/package.json b/ecosystem-tests/node-ts-cjs-auto/package.json similarity index 74% rename from ecosystem-tests/node-ts-cjs-dom/package.json rename to ecosystem-tests/node-ts-cjs-auto/package.json index 57f239c60..17e4ae9e6 100644 --- a/ecosystem-tests/node-ts-cjs-dom/package.json +++ b/ecosystem-tests/node-ts-cjs-auto/package.json @@ -1,5 +1,5 @@ { - "name": "node-ts-cjs-dom", + "name": "node-ts-cjs-auto", "version": "0.0.1", "main": "index.js", "private": true, @@ -13,11 +13,12 @@ "tsconfig-paths": "^4.0.0" }, "devDependencies": { - "@types/node": "^17.0.9", + "@types/node": "^20.4.2", "@types/node-fetch": "^2.6.1", + "@types/ws": "^8.5.4", "fastest-levenshtein": "^1.0.16", - "jest": "^29.5.0", - "ts-jest": "^29.1.0", + "jest": "^28.1.3", + "ts-jest": "^28.0.8", "typescript": "4.7.4" } } diff --git a/ecosystem-tests/node-ts-cjs-dom/sample1.mp3 b/ecosystem-tests/node-ts-cjs-auto/sample1.mp3 similarity index 100% rename from ecosystem-tests/node-ts-cjs-dom/sample1.mp3 rename to ecosystem-tests/node-ts-cjs-auto/sample1.mp3 diff --git a/ecosystem-tests/node-ts-cjs-auto/tests/shims.ts b/ecosystem-tests/node-ts-cjs-auto/tests/shims.ts new file mode 100644 index 000000000..d34211578 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs-auto/tests/shims.ts @@ -0,0 +1,7 @@ +import * as shims from 'openai/_shims/index'; +import * as fd from 'formdata-node'; + +test('openai/shims/node', () => { + expect(shims.kind).toEqual('node'); + expect(shims.File).toBe(fd.File); +}); diff --git a/ecosystem-tests/node-ts-cjs-ts4.5/tests/test.ts b/ecosystem-tests/node-ts-cjs-auto/tests/test.ts similarity index 100% rename from ecosystem-tests/node-ts-cjs-ts4.5/tests/test.ts rename to ecosystem-tests/node-ts-cjs-auto/tests/test.ts diff --git a/ecosystem-tests/node-ts-cjs-auto/tsconfig.json b/ecosystem-tests/node-ts-cjs-auto/tsconfig.json new file mode 100644 index 000000000..bb679e8fb --- /dev/null +++ b/ecosystem-tests/node-ts-cjs-auto/tsconfig.json @@ -0,0 +1,54 @@ +{ + "include": ["tests/*", "moduleResolution/node/*"], + + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ + /* Projects */ + "incremental": true, + + /* Language and Environment */ + "target": "ES2015", + "lib": ["ES2015"], + "jsx": "react", + + /* Modules */ + "module": "commonjs", + "rootDir": "./", + "moduleResolution": "node", + "baseUrl": "./", + "paths": { + "~/*": ["*"] + }, + "resolveJsonModule": true, + "composite": true, + + /* Emit */ + "outDir": "node_modules", + "noEmit": true, + + /* Interop Constraints */ + "isolatedModules": true, + "allowSyntheticDefaultImports": true, + /* "esModuleInterop": true, */ + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "checkJs": true, + + /* Experimental Features */ + "experimentalDecorators": true, + + /* Type Checking */ + "strict": true, + "noImplicitAny": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "strictBindCallApply": true, + "strictPropertyInitialization": true, + "noImplicitThis": true, + "alwaysStrict": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + "noPropertyAccessFromIndexSignature": true, + "skipLibCheck": false + } +} diff --git a/ecosystem-tests/node-ts-cjs-auto/tsconfig.nodenext.json b/ecosystem-tests/node-ts-cjs-auto/tsconfig.nodenext.json new file mode 100644 index 000000000..ed9ff4fc7 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs-auto/tsconfig.nodenext.json @@ -0,0 +1,54 @@ +{ + "include": ["tests/*", "moduleResolution/nodenext/*"], + + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ + /* Projects */ + "incremental": true, + + /* Language and Environment */ + "target": "ES2015", + "lib": ["ES2015"], + "jsx": "react", + + /* Modules */ + "module": "commonjs", + "rootDir": "./", + "moduleResolution": "NodeNext", + "baseUrl": "./", + "paths": { + "~/*": ["*"] + }, + "resolveJsonModule": true, + "composite": true, + + /* Emit */ + "outDir": "node_modules", + "noEmit": true, + + /* Interop Constraints */ + "isolatedModules": true, + "allowSyntheticDefaultImports": true, + /* "esModuleInterop": true, */ + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "checkJs": true, + + /* Experimental Features */ + "experimentalDecorators": true, + + /* Type Checking */ + "strict": true, + "noImplicitAny": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "strictBindCallApply": true, + "strictPropertyInitialization": true, + "noImplicitThis": true, + "alwaysStrict": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + "noPropertyAccessFromIndexSignature": true, + "skipLibCheck": false + } +} diff --git a/ecosystem-tests/node-ts-cjs-ts4.5/jest.config.cjs b/ecosystem-tests/node-ts-cjs-web/jest.config.cjs similarity index 100% rename from ecosystem-tests/node-ts-cjs-ts4.5/jest.config.cjs rename to ecosystem-tests/node-ts-cjs-web/jest.config.cjs diff --git a/ecosystem-tests/node-ts-cjs-ts4.5/package-lock.json b/ecosystem-tests/node-ts-cjs-web/package-lock.json similarity index 85% rename from ecosystem-tests/node-ts-cjs-ts4.5/package-lock.json rename to ecosystem-tests/node-ts-cjs-web/package-lock.json index 55e77bfd9..29122bccf 100644 --- a/ecosystem-tests/node-ts-cjs-ts4.5/package-lock.json +++ b/ecosystem-tests/node-ts-cjs-web/package-lock.json @@ -1,11 +1,11 @@ { - "name": "node-ts-cjs", + "name": "node-ts-cjs-web", "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "node-ts-cjs", + "name": "node-ts-cjs-web", "version": "0.0.1", "dependencies": { "formdata-node": "^4.4.1", @@ -13,13 +13,17 @@ "tsconfig-paths": "^4.0.0" }, "devDependencies": { - "@types/node": "^20.4.2", + "@types/node": "^17.0.9", "@types/node-fetch": "^2.6.1", - "@types/ws": "^8.5.4", "fastest-levenshtein": "^1.0.16", + "formdata-polyfill": "^4.0.10", "jest": "^29.5.0", + "jest-environment-jsdom": "^29.7.0", + "text-encoding-polyfill": "^0.6.7", "ts-jest": "^29.1.0", - "typescript": "4.5.4" + "typescript": "4.7.4", + "web-streams-polyfill": "^3.2.1", + "whatwg-fetch": "^3.6.19" } }, "node_modules/@ampproject/remapping": { @@ -753,15 +757,15 @@ } }, "node_modules/@jest/environment": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.6.4.tgz", - "integrity": "sha512-sQ0SULEjA1XUTHmkBRl7A1dyITM9yb1yb3ZNKPX3KlTd6IG7mWUe3e2yfExtC2Zz1Q+mMckOLHmL/qLiuQJrBQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", "dev": true, "dependencies": { - "@jest/fake-timers": "^29.6.4", + "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.6.3" + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -793,17 +797,17 @@ } }, "node_modules/@jest/fake-timers": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.6.4.tgz", - "integrity": "sha512-6UkCwzoBK60edXIIWb0/KWkuj7R7Qq91vVInOe3De6DSpaEiqjKcJw4F7XUet24Wupahj9J6PlR09JqJ5ySDHw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@sinonjs/fake-timers": "^10.0.2", "@types/node": "*", - "jest-message-util": "^29.6.3", - "jest-mock": "^29.6.3", - "jest-util": "^29.6.3" + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -1038,6 +1042,15 @@ "@sinonjs/commons": "^3.0.0" } }, + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, "node_modules/@types/babel__core": { "version": "7.20.1", "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", @@ -1112,10 +1125,21 @@ "@types/istanbul-lib-report": "*" } }, + "node_modules/@types/jsdom": { + "version": "20.0.1", + "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz", + "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/tough-cookie": "*", + "parse5": "^7.0.0" + } + }, "node_modules/@types/node": { - "version": "20.5.7", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.7.tgz", - "integrity": "sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==", + "version": "17.0.45", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz", + "integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==", "dev": true }, "node_modules/@types/node-fetch": { @@ -1134,14 +1158,11 @@ "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", "dev": true }, - "node_modules/@types/ws": { - "version": "8.5.5", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", - "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", - "dev": true, - "dependencies": { - "@types/node": "*" - } + "node_modules/@types/tough-cookie": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.3.tgz", + "integrity": "sha512-THo502dA5PzG/sfQH+42Lw3fvmYkceefOspdCwpHRul8ik2Jv1K8I5OZz1AT3/rs46kwgMCe9bSBmDLYkkOMGg==", + "dev": true }, "node_modules/@types/yargs": { "version": "17.0.24", @@ -1158,6 +1179,55 @@ "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", "dev": true }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", + "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", + "dev": true, + "dependencies": { + "acorn": "^8.1.0", + "acorn-walk": "^8.0.2" + } + }, + "node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, "node_modules/ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", @@ -1589,6 +1659,78 @@ "node": ">= 8" } }, + "node_modules/cssom": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", + "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", + "dev": true + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + }, + "node_modules/data-urls": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", + "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", + "dev": true, + "dependencies": { + "abab": "^2.0.6", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/data-urls/node_modules/tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dev": true, + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/data-urls/node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/data-urls/node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dev": true, + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -1606,6 +1748,12 @@ } } }, + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", + "dev": true + }, "node_modules/dedent": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", @@ -1656,6 +1804,27 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/domexception": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", + "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", + "dev": true, + "dependencies": { + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true, + "engines": { + "node": ">=12" + } + }, "node_modules/electron-to-chromium": { "version": "1.4.506", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.506.tgz", @@ -1680,6 +1849,18 @@ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -1707,6 +1888,27 @@ "node": ">=8" } }, + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dev": true, + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, "node_modules/esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", @@ -1720,6 +1922,24 @@ "node": ">=4" } }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/execa": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", @@ -1792,6 +2012,29 @@ "bser": "2.1.1" } }, + "node_modules/fetch-blob": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "paypal", + "url": "https://paypal.me/jimmywarting" + } + ], + "dependencies": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + }, + "engines": { + "node": "^12.20 || >= 14.13" + } + }, "node_modules/fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -1843,6 +2086,26 @@ "node": ">= 12.20" } }, + "node_modules/formdata-node/node_modules/web-streams-polyfill": { + "version": "4.0.0-beta.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz", + "integrity": "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==", + "engines": { + "node": ">= 14" + } + }, + "node_modules/formdata-polyfill": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "dev": true, + "dependencies": { + "fetch-blob": "^3.1.2" + }, + "engines": { + "node": ">=12.20.0" + } + }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -1964,12 +2227,51 @@ "node": ">=8" } }, + "node_modules/html-encoding-sniffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", + "dev": true, + "dependencies": { + "whatwg-encoding": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, + "node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "dev": true, + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", @@ -1979,6 +2281,18 @@ "node": ">=10.17.0" } }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/import-local": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", @@ -2068,6 +2382,12 @@ "node": ">=0.12.0" } }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true + }, "node_modules/is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", @@ -2378,6 +2698,33 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/jest-environment-jsdom": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz", + "integrity": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/jsdom": "^20.0.0", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0", + "jsdom": "^20.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, "node_modules/jest-environment-node": { "version": "29.6.4", "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.4.tgz", @@ -2458,9 +2805,9 @@ } }, "node_modules/jest-message-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.6.3.tgz", - "integrity": "sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", "dev": true, "dependencies": { "@babel/code-frame": "^7.12.13", @@ -2469,7 +2816,7 @@ "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, @@ -2478,14 +2825,14 @@ } }, "node_modules/jest-mock": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.6.3.tgz", - "integrity": "sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", - "jest-util": "^29.6.3" + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2680,9 +3027,9 @@ "dev": true }, "node_modules/jest-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.3.tgz", - "integrity": "sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -2793,6 +3140,99 @@ "js-yaml": "bin/js-yaml.js" } }, + "node_modules/jsdom": { + "version": "20.0.3", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", + "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", + "dev": true, + "dependencies": { + "abab": "^2.0.6", + "acorn": "^8.8.1", + "acorn-globals": "^7.0.0", + "cssom": "^0.5.0", + "cssstyle": "^2.3.0", + "data-urls": "^3.0.2", + "decimal.js": "^10.4.2", + "domexception": "^4.0.0", + "escodegen": "^2.0.0", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^3.0.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.1", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.2", + "parse5": "^7.1.1", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.1.2", + "w3c-xmlserializer": "^4.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^2.0.0", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0", + "ws": "^8.11.0", + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsdom/node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jsdom/node_modules/tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dev": true, + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/jsdom/node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/jsdom/node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dev": true, + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/jsesc": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", @@ -3087,6 +3527,12 @@ "node": ">=8" } }, + "node_modules/nwsapi": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz", + "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==", + "dev": true + }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", @@ -3180,6 +3626,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "dev": true, + "dependencies": { + "entities": "^4.4.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, "node_modules/path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", @@ -3253,9 +3711,9 @@ } }, "node_modules/pretty-format": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.3.tgz", - "integrity": "sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { "@jest/schemas": "^29.6.3", @@ -3291,6 +3749,21 @@ "node": ">= 6" } }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/pure-rand": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", @@ -3307,6 +3780,12 @@ } ] }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, "node_modules/react-is": { "version": "18.2.0", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", @@ -3322,6 +3801,12 @@ "node": ">=0.10.0" } }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, "node_modules/resolve": { "version": "1.22.4", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", @@ -3369,6 +3854,24 @@ "node": ">=10" } }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/saxes": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", + "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", + "dev": true, + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=v12.22.7" + } + }, "node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", @@ -3550,6 +4053,12 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, "node_modules/test-exclude": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", @@ -3564,6 +4073,12 @@ "node": ">=8" } }, + "node_modules/text-encoding-polyfill": { + "version": "0.6.7", + "resolved": "https://registry.npmjs.org/text-encoding-polyfill/-/text-encoding-polyfill-0.6.7.tgz", + "integrity": "sha512-/DZ1XJqhbqRkCop6s9ZFu8JrFRwmVuHg4quIRm+ziFkR3N3ec6ck6yBvJ1GYeEQZhLVwRW0rZE+C3SSJpy0RTg==", + "dev": true + }, "node_modules/tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", @@ -3591,6 +4106,21 @@ "node": ">=8.0" } }, + "node_modules/tough-cookie": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", + "dev": true, + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", @@ -3715,9 +4245,9 @@ } }, "node_modules/typescript": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.4.tgz", - "integrity": "sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg==", + "version": "4.7.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", + "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", "dev": true, "bin": { "tsc": "bin/tsc", @@ -3727,6 +4257,15 @@ "node": ">=4.2.0" } }, + "node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, "node_modules/update-browserslist-db": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", @@ -3757,6 +4296,16 @@ "browserslist": ">= 4.21.0" } }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, "node_modules/v8-to-istanbul": { "version": "9.1.0", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", @@ -3777,6 +4326,18 @@ "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", "dev": true }, + "node_modules/w3c-xmlserializer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", + "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", + "dev": true, + "dependencies": { + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" + } + }, "node_modules/walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", @@ -3787,11 +4348,12 @@ } }, "node_modules/web-streams-polyfill": { - "version": "4.0.0-beta.3", - "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz", - "integrity": "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz", + "integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==", + "dev": true, "engines": { - "node": ">= 14" + "node": ">= 8" } }, "node_modules/webidl-conversions": { @@ -3799,6 +4361,33 @@ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, + "node_modules/whatwg-encoding": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "dev": true, + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-fetch": { + "version": "3.6.19", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.19.tgz", + "integrity": "sha512-d67JP4dHSbm2TrpFj8AbO8DnL1JXL5J9u0Kq2xW6d0TFDbCA3Muhdt8orXC22utleTVj7Prqt82baN6RBvnEgw==", + "dev": true + }, + "node_modules/whatwg-mimetype": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "dev": true, + "engines": { + "node": ">=12" + } + }, "node_modules/whatwg-url": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", @@ -3859,6 +4448,42 @@ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, + "node_modules/ws": { + "version": "8.14.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.14.1.tgz", + "integrity": "sha512-4OOseMUq8AzRBI/7SLMUwO+FEDnguetSk7KMb1sHwvF2w2Wv5Hoj0nlifx8vtGsftE/jWHojPy8sMMzYLJ2G/A==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xml-name-validator": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true + }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", diff --git a/ecosystem-tests/node-ts-cjs-web/package.json b/ecosystem-tests/node-ts-cjs-web/package.json new file mode 100644 index 000000000..8a50fcb43 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs-web/package.json @@ -0,0 +1,28 @@ +{ + "name": "node-ts-cjs-web", + "version": "0.0.1", + "main": "index.js", + "private": true, + "scripts": { + "tsc": "tsc && tsc -p tsconfig.nodenext.json", + "test": "jest" + }, + "dependencies": { + "formdata-node": "^4.4.1", + "node-fetch": "^2.6.1", + "tsconfig-paths": "^4.0.0" + }, + "devDependencies": { + "@types/node": "^17.0.9", + "@types/node-fetch": "^2.6.1", + "fastest-levenshtein": "^1.0.16", + "formdata-polyfill": "^4.0.10", + "jest": "^29.5.0", + "jest-environment-jsdom": "^29.7.0", + "text-encoding-polyfill": "^0.6.7", + "ts-jest": "^29.1.0", + "typescript": "4.7.4", + "web-streams-polyfill": "^3.2.1", + "whatwg-fetch": "^3.6.19" + } +} diff --git a/ecosystem-tests/node-ts-cjs-ts4.5/sample1.mp3 b/ecosystem-tests/node-ts-cjs-web/sample1.mp3 similarity index 100% rename from ecosystem-tests/node-ts-cjs-ts4.5/sample1.mp3 rename to ecosystem-tests/node-ts-cjs-web/sample1.mp3 diff --git a/ecosystem-tests/node-ts-cjs-web/tests/shims.ts b/ecosystem-tests/node-ts-cjs-web/tests/shims.ts new file mode 100644 index 000000000..07279b9eb --- /dev/null +++ b/ecosystem-tests/node-ts-cjs-web/tests/shims.ts @@ -0,0 +1,11 @@ +import 'openai/shims/web'; +import * as shims from 'openai/_shims/index'; + +function typeTests(x: shims.Request) { + const url: string = x.url; +} + +test('openai/shims/node', () => { + expect(shims.kind).toEqual('web'); + expect(shims.File).toBe(File); +}); diff --git a/ecosystem-tests/node-ts-cjs-web/tests/test-jsdom-unpolyfilled.ts b/ecosystem-tests/node-ts-cjs-web/tests/test-jsdom-unpolyfilled.ts new file mode 100644 index 000000000..e536f3047 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs-web/tests/test-jsdom-unpolyfilled.ts @@ -0,0 +1,11 @@ +/** + * @jest-environment jsdom + */ + +export {}; + +test('openai/shims/web throws if globals are missing', async () => { + await expect(() => import('openai/shims/web')).rejects.toThrow( + `this environment is missing the following Web Fetch API type: fetch is not defined. You may need to use polyfills`, + ); +}); diff --git a/ecosystem-tests/node-ts-cjs-web/tests/test-jsdom.ts b/ecosystem-tests/node-ts-cjs-web/tests/test-jsdom.ts new file mode 100644 index 000000000..3abc9e6e4 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs-web/tests/test-jsdom.ts @@ -0,0 +1,166 @@ +/** + * @jest-environment jsdom + */ +import 'whatwg-fetch'; +import 'openai/shims/web'; +import OpenAI, { toFile } from 'openai'; +import { distance } from 'fastest-levenshtein'; +import { ChatCompletion } from 'openai/resources/chat/completions'; +// @ts-ignore +import { TextEncoder } from 'text-encoding-polyfill'; + +const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; +const filename = 'sample-1.mp3'; + +const correctAnswer = + 'It was anxious to find him no one that expectation of a man who were giving his father enjoyment. But he was avoided in sight in the minister to which indeed,'; +const model = 'whisper-1'; + +const client = new OpenAI({ apiKey: process.env['OPENAI_API_KEY'], dangerouslyAllowBrowser: true }); + +async function typeTests() { + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: null, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); +} + +declare global { + namespace jest { + interface Matchers { + toBeSimilarTo(comparedTo: string, expectedDistance: number): R; + } + } +} +expect.extend({ + toBeSimilarTo(received, comparedTo: string, expectedDistance: number) { + const message = () => + [ + `Received: ${JSON.stringify(received)}`, + `Expected: ${JSON.stringify(comparedTo)}`, + `Expected distance: ${expectedDistance}`, + `Received distance: ${actualDistance}`, + ].join('\n'); + + const actualDistance = distance(received, comparedTo); + if (actualDistance < expectedDistance) { + return { + message, + pass: true, + }; + } + + return { + message, + pass: false, + }; + }, +}); + +test(`basic request works`, async function () { + const completion = await client.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + }); + expect(completion.choices[0]?.message?.content).toBeSimilarTo('This is a test', 10); +}); + +// response bodies aren't working with the chosen polyfills +it.skip(`raw response`, async function () { + const response = await client.chat.completions + .create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + }) + .asResponse(); + + // test that we can use web Response API + const { body } = response; + if (!body) throw new Error('expected response.body to be defined'); + + const reader = body.getReader(); + const chunks: Uint8Array[] = []; + let result; + do { + result = await reader.read(); + if (!result.done) chunks.push(result.value); + } while (!result.done); + + reader.releaseLock(); + + let offset = 0; + const merged = new Uint8Array(chunks.reduce((total, chunk) => total + chunk.length, 0)); + for (const chunk of chunks) { + merged.set(chunk, offset); + offset += chunk.length; + } + + const json: ChatCompletion = JSON.parse(new TextDecoder().decode(merged)); + expect(json.choices[0]?.message.content || '').toBeSimilarTo('This is a test', 10); +}); + +// response bodies aren't working with the chosen polyfills +it.skip(`streaming works`, async function () { + const stream = await client.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + stream: true, + }); + const chunks = []; + for await (const part of stream) { + chunks.push(part); + } + expect(chunks.map((c) => c.choices[0]?.delta.content || '').join('')).toBeSimilarTo('This is a test', 10); +}); + +// file uploads aren't working with the chosen polyfills +it.skip('handles builtinFile', async function () { + const file = await fetch(url) + .then((x) => x.arrayBuffer()) + .then((x) => new File([x], filename)); + + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toBeSimilarTo(correctAnswer, 12); +}); + +it.skip('handles Response', async function () { + const file = await fetch(url); + + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toBeSimilarTo(correctAnswer, 12); +}); + +const fineTune = `{"prompt": "", "completion": ""}`; + +describe.skip('toFile', () => { + it('handles builtin Blob', async function () { + const result = await client.files.create({ + file: await toFile(new Blob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles Uint8Array', async function () { + const result = await client.files.create({ + file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles ArrayBuffer', async function () { + const result = await client.files.create({ + file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles DataView', async function () { + const result = await client.files.create({ + file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); +}); diff --git a/ecosystem-tests/node-ts-cjs-dom/tests/test.ts b/ecosystem-tests/node-ts-cjs-web/tests/test-node.ts similarity index 78% rename from ecosystem-tests/node-ts-cjs-dom/tests/test.ts rename to ecosystem-tests/node-ts-cjs-web/tests/test-node.ts index 7afbaa545..9d1abf435 100644 --- a/ecosystem-tests/node-ts-cjs-dom/tests/test.ts +++ b/ecosystem-tests/node-ts-cjs-web/tests/test-node.ts @@ -1,9 +1,7 @@ +import 'openai/shims/web'; import OpenAI, { toFile } from 'openai'; -import { TranscriptionCreateParams } from 'openai/resources/audio/transcriptions'; -import fetch from 'node-fetch'; -import { File as FormDataFile, Blob as FormDataBlob } from 'formdata-node'; -import * as fs from 'fs'; import { distance } from 'fastest-levenshtein'; +import { ChatCompletion } from 'openai/resources/chat/completions'; const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; const filename = 'sample-1.mp3'; @@ -55,6 +53,39 @@ expect.extend({ }, }); +it(`raw response`, async function () { + const response = await client.chat.completions + .create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + }) + .asResponse(); + + // test that we can use web Response API + const { body } = response; + if (!body) throw new Error('expected response.body to be defined'); + + const reader = body.getReader(); + const chunks: Uint8Array[] = []; + let result; + do { + result = await reader.read(); + if (!result.done) chunks.push(result.value); + } while (!result.done); + + reader.releaseLock(); + + let offset = 0; + const merged = new Uint8Array(chunks.reduce((total, chunk) => total + chunk.length, 0)); + for (const chunk of chunks) { + merged.set(chunk, offset); + offset += chunk.length; + } + + const json: ChatCompletion = JSON.parse(new TextDecoder().decode(merged)); + expect(json.choices[0]?.message.content || '').toBeSimilarTo('This is a test', 10); +}); + it(`streaming works`, async function () { const stream = await client.chat.completions.create({ model: 'gpt-4', @@ -68,17 +99,6 @@ it(`streaming works`, async function () { expect(chunks.map((c) => c.choices[0]?.delta.content || '').join('')).toBeSimilarTo('This is a test', 10); }); -it('handles formdata-node File', async function () { - const file = await fetch(url) - .then((x) => x.arrayBuffer()) - .then((x) => new FormDataFile([x], filename)); - - const params: TranscriptionCreateParams = { file, model }; - - const result = await client.audio.transcriptions.create(params); - expect(result.text).toEqual(correctAnswer); -}); - if (typeof File !== 'undefined') { it('handles builtinFile', async function () { const file = await fetch(url) @@ -97,24 +117,9 @@ it('handles Response', async function () { expect(result.text).toBeSimilarTo(correctAnswer, 12); }); -it('handles fs.ReadStream', async function () { - const result = await client.audio.transcriptions.create({ - file: fs.createReadStream('sample1.mp3'), - model, - }); - expect(result.text).toBeSimilarTo(correctAnswer, 12); -}); - const fineTune = `{"prompt": "", "completion": ""}`; describe('toFile', () => { - it('handles form-data Blob', async function () { - const result = await client.files.create({ - file: await toFile(new FormDataBlob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), - purpose: 'fine-tune', - }); - expect(result.status).toEqual('uploaded'); - }); if (typeof Blob !== 'undefined') { it('handles builtin Blob', async function () { const result = await client.files.create({ diff --git a/ecosystem-tests/node-ts-cjs-dom/tsconfig.json b/ecosystem-tests/node-ts-cjs-web/tsconfig.json similarity index 97% rename from ecosystem-tests/node-ts-cjs-dom/tsconfig.json rename to ecosystem-tests/node-ts-cjs-web/tsconfig.json index 48cf9dadf..7f3d49978 100644 --- a/ecosystem-tests/node-ts-cjs-dom/tsconfig.json +++ b/ecosystem-tests/node-ts-cjs-web/tsconfig.json @@ -1,5 +1,5 @@ { - "exclude": ["node_modules"], + "include": ["tests/*.ts"], "compilerOptions": { /* Visit https://aka.ms/tsconfig.json to read more about this file */ diff --git a/ecosystem-tests/node-ts-cjs-dom/tsconfig.nodenext.json b/ecosystem-tests/node-ts-cjs-web/tsconfig.nodenext.json similarity index 97% rename from ecosystem-tests/node-ts-cjs-dom/tsconfig.nodenext.json rename to ecosystem-tests/node-ts-cjs-web/tsconfig.nodenext.json index d658ee142..4c4cfd451 100644 --- a/ecosystem-tests/node-ts-cjs-dom/tsconfig.nodenext.json +++ b/ecosystem-tests/node-ts-cjs-web/tsconfig.nodenext.json @@ -1,5 +1,5 @@ { - "exclude": ["node_modules"], + "include": ["tests/*.ts"], "compilerOptions": { /* Visit https://aka.ms/tsconfig.json to read more about this file */ diff --git a/ecosystem-tests/node-ts-cjs/package-lock.json b/ecosystem-tests/node-ts-cjs/package-lock.json index 37c945a2b..3742eaa82 100644 --- a/ecosystem-tests/node-ts-cjs/package-lock.json +++ b/ecosystem-tests/node-ts-cjs/package-lock.json @@ -18,6 +18,8 @@ "@types/ws": "^8.5.4", "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", + "jest-environment-jsdom": "^29.7.0", + "text-encoding-polyfill": "^0.6.7", "ts-jest": "^29.1.0", "typescript": "4.7.4" } @@ -753,15 +755,15 @@ } }, "node_modules/@jest/environment": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.6.4.tgz", - "integrity": "sha512-sQ0SULEjA1XUTHmkBRl7A1dyITM9yb1yb3ZNKPX3KlTd6IG7mWUe3e2yfExtC2Zz1Q+mMckOLHmL/qLiuQJrBQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", "dev": true, "dependencies": { - "@jest/fake-timers": "^29.6.4", + "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.6.3" + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -793,17 +795,17 @@ } }, "node_modules/@jest/fake-timers": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.6.4.tgz", - "integrity": "sha512-6UkCwzoBK60edXIIWb0/KWkuj7R7Qq91vVInOe3De6DSpaEiqjKcJw4F7XUet24Wupahj9J6PlR09JqJ5ySDHw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@sinonjs/fake-timers": "^10.0.2", "@types/node": "*", - "jest-message-util": "^29.6.3", - "jest-mock": "^29.6.3", - "jest-util": "^29.6.3" + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -1038,6 +1040,15 @@ "@sinonjs/commons": "^3.0.0" } }, + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, "node_modules/@types/babel__core": { "version": "7.20.1", "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", @@ -1112,6 +1123,17 @@ "@types/istanbul-lib-report": "*" } }, + "node_modules/@types/jsdom": { + "version": "20.0.1", + "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz", + "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/tough-cookie": "*", + "parse5": "^7.0.0" + } + }, "node_modules/@types/node": { "version": "20.5.7", "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.7.tgz", @@ -1134,6 +1156,12 @@ "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", "dev": true }, + "node_modules/@types/tough-cookie": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.3.tgz", + "integrity": "sha512-THo502dA5PzG/sfQH+42Lw3fvmYkceefOspdCwpHRul8ik2Jv1K8I5OZz1AT3/rs46kwgMCe9bSBmDLYkkOMGg==", + "dev": true + }, "node_modules/@types/ws": { "version": "8.5.5", "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", @@ -1158,6 +1186,55 @@ "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", "dev": true }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", + "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", + "dev": true, + "dependencies": { + "acorn": "^8.1.0", + "acorn-walk": "^8.0.2" + } + }, + "node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, "node_modules/ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", @@ -1589,6 +1666,78 @@ "node": ">= 8" } }, + "node_modules/cssom": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", + "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", + "dev": true + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + }, + "node_modules/data-urls": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", + "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", + "dev": true, + "dependencies": { + "abab": "^2.0.6", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/data-urls/node_modules/tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dev": true, + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/data-urls/node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/data-urls/node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dev": true, + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -1606,6 +1755,12 @@ } } }, + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", + "dev": true + }, "node_modules/dedent": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", @@ -1656,6 +1811,27 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/domexception": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", + "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", + "dev": true, + "dependencies": { + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true, + "engines": { + "node": ">=12" + } + }, "node_modules/electron-to-chromium": { "version": "1.4.506", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.506.tgz", @@ -1680,6 +1856,18 @@ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -1707,6 +1895,27 @@ "node": ">=8" } }, + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dev": true, + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, "node_modules/esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", @@ -1720,6 +1929,24 @@ "node": ">=4" } }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/execa": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", @@ -1964,12 +2191,51 @@ "node": ">=8" } }, + "node_modules/html-encoding-sniffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", + "dev": true, + "dependencies": { + "whatwg-encoding": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, + "node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "dev": true, + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", @@ -1979,6 +2245,18 @@ "node": ">=10.17.0" } }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/import-local": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", @@ -2068,6 +2346,12 @@ "node": ">=0.12.0" } }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true + }, "node_modules/is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", @@ -2378,6 +2662,33 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/jest-environment-jsdom": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz", + "integrity": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/jsdom": "^20.0.0", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0", + "jsdom": "^20.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, "node_modules/jest-environment-node": { "version": "29.6.4", "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.4.tgz", @@ -2458,9 +2769,9 @@ } }, "node_modules/jest-message-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.6.3.tgz", - "integrity": "sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", "dev": true, "dependencies": { "@babel/code-frame": "^7.12.13", @@ -2469,7 +2780,7 @@ "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, @@ -2478,14 +2789,14 @@ } }, "node_modules/jest-mock": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.6.3.tgz", - "integrity": "sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", - "jest-util": "^29.6.3" + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2680,9 +2991,9 @@ "dev": true }, "node_modules/jest-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.3.tgz", - "integrity": "sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -2793,6 +3104,99 @@ "js-yaml": "bin/js-yaml.js" } }, + "node_modules/jsdom": { + "version": "20.0.3", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", + "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", + "dev": true, + "dependencies": { + "abab": "^2.0.6", + "acorn": "^8.8.1", + "acorn-globals": "^7.0.0", + "cssom": "^0.5.0", + "cssstyle": "^2.3.0", + "data-urls": "^3.0.2", + "decimal.js": "^10.4.2", + "domexception": "^4.0.0", + "escodegen": "^2.0.0", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^3.0.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.1", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.2", + "parse5": "^7.1.1", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.1.2", + "w3c-xmlserializer": "^4.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^2.0.0", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0", + "ws": "^8.11.0", + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsdom/node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jsdom/node_modules/tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dev": true, + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/jsdom/node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/jsdom/node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dev": true, + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/jsesc": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", @@ -3087,6 +3491,12 @@ "node": ">=8" } }, + "node_modules/nwsapi": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz", + "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==", + "dev": true + }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", @@ -3180,6 +3590,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "dev": true, + "dependencies": { + "entities": "^4.4.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, "node_modules/path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", @@ -3253,9 +3675,9 @@ } }, "node_modules/pretty-format": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.3.tgz", - "integrity": "sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { "@jest/schemas": "^29.6.3", @@ -3291,6 +3713,21 @@ "node": ">= 6" } }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/pure-rand": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", @@ -3307,6 +3744,12 @@ } ] }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, "node_modules/react-is": { "version": "18.2.0", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", @@ -3322,6 +3765,12 @@ "node": ">=0.10.0" } }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, "node_modules/resolve": { "version": "1.22.4", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", @@ -3369,6 +3818,24 @@ "node": ">=10" } }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/saxes": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", + "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", + "dev": true, + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=v12.22.7" + } + }, "node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", @@ -3550,6 +4017,12 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, "node_modules/test-exclude": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", @@ -3564,6 +4037,12 @@ "node": ">=8" } }, + "node_modules/text-encoding-polyfill": { + "version": "0.6.7", + "resolved": "https://registry.npmjs.org/text-encoding-polyfill/-/text-encoding-polyfill-0.6.7.tgz", + "integrity": "sha512-/DZ1XJqhbqRkCop6s9ZFu8JrFRwmVuHg4quIRm+ziFkR3N3ec6ck6yBvJ1GYeEQZhLVwRW0rZE+C3SSJpy0RTg==", + "dev": true + }, "node_modules/tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", @@ -3591,6 +4070,21 @@ "node": ">=8.0" } }, + "node_modules/tough-cookie": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", + "dev": true, + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", @@ -3727,6 +4221,15 @@ "node": ">=4.2.0" } }, + "node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, "node_modules/update-browserslist-db": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", @@ -3757,6 +4260,16 @@ "browserslist": ">= 4.21.0" } }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, "node_modules/v8-to-istanbul": { "version": "9.1.0", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", @@ -3777,6 +4290,18 @@ "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", "dev": true }, + "node_modules/w3c-xmlserializer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", + "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", + "dev": true, + "dependencies": { + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" + } + }, "node_modules/walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", @@ -3799,6 +4324,27 @@ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, + "node_modules/whatwg-encoding": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "dev": true, + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-mimetype": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "dev": true, + "engines": { + "node": ">=12" + } + }, "node_modules/whatwg-url": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", @@ -3859,6 +4405,42 @@ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, + "node_modules/ws": { + "version": "8.14.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.14.1.tgz", + "integrity": "sha512-4OOseMUq8AzRBI/7SLMUwO+FEDnguetSk7KMb1sHwvF2w2Wv5Hoj0nlifx8vtGsftE/jWHojPy8sMMzYLJ2G/A==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xml-name-validator": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true + }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", diff --git a/ecosystem-tests/node-ts-cjs/package.json b/ecosystem-tests/node-ts-cjs/package.json index 449e040e0..76f866b0b 100644 --- a/ecosystem-tests/node-ts-cjs/package.json +++ b/ecosystem-tests/node-ts-cjs/package.json @@ -18,6 +18,8 @@ "@types/ws": "^8.5.4", "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", + "jest-environment-jsdom": "^29.7.0", + "text-encoding-polyfill": "^0.6.7", "ts-jest": "^29.1.0", "typescript": "4.7.4" } diff --git a/ecosystem-tests/node-ts-cjs/tests/late-shim-errors.ts b/ecosystem-tests/node-ts-cjs/tests/late-shim-errors.ts new file mode 100644 index 000000000..6b9c4d95c --- /dev/null +++ b/ecosystem-tests/node-ts-cjs/tests/late-shim-errors.ts @@ -0,0 +1,8 @@ +export {}; + +test('throws if shims are imported after openai', async () => { + await import('openai'); + await expect(() => import('openai/shims/web')).rejects.toThrow( + `you must \`import 'openai/shims/web'\` before importing anything else from openai`, + ); +}); diff --git a/ecosystem-tests/node-ts-cjs/tests/multiple-shim-errors.ts b/ecosystem-tests/node-ts-cjs/tests/multiple-shim-errors.ts new file mode 100644 index 000000000..92261fd58 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs/tests/multiple-shim-errors.ts @@ -0,0 +1,8 @@ +export {}; + +test('throws if multiple shims are imported', async () => { + await import('openai/shims/node'); + await expect(() => import('openai/shims/web')).rejects.toThrow( + `can't \`import 'openai/shims/web'\` after \`import 'openai/shims/node'\``, + ); +}); diff --git a/ecosystem-tests/node-ts-cjs/tests/shims.ts b/ecosystem-tests/node-ts-cjs/tests/shims.ts new file mode 100644 index 000000000..d0b04bac5 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs/tests/shims.ts @@ -0,0 +1,12 @@ +import 'openai/shims/node'; +import * as shims from 'openai/_shims/index'; +import * as fd from 'formdata-node'; + +function typeTests(x: shims.Request) { + const url: string = x.url; +} + +test('openai/shims/node', () => { + expect(shims.kind).toEqual('node'); + expect(shims.File).toBe(fd.File); +}); diff --git a/ecosystem-tests/node-ts-cjs/tests/test-jsdom-compat-error.ts b/ecosystem-tests/node-ts-cjs/tests/test-jsdom-compat-error.ts new file mode 100644 index 000000000..066fc3dc2 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs/tests/test-jsdom-compat-error.ts @@ -0,0 +1,11 @@ +/** + * @jest-environment jsdom + */ + +export {}; + +it(`throws when fetch API types are missing`, async () => { + await expect(() => import('openai')).rejects.toThrow( + 'this environment is missing the following Web Fetch API type', + ); +}); diff --git a/ecosystem-tests/node-ts-cjs/tests/test-jsdom.ts b/ecosystem-tests/node-ts-cjs/tests/test-jsdom.ts new file mode 100644 index 000000000..1f5d75f28 --- /dev/null +++ b/ecosystem-tests/node-ts-cjs/tests/test-jsdom.ts @@ -0,0 +1,146 @@ +/** + * @jest-environment jsdom + */ +import 'openai/shims/node'; +import OpenAI, { toFile } from 'openai'; +import fetch from 'node-fetch'; +import { distance } from 'fastest-levenshtein'; +// @ts-ignore +import { TextEncoder } from 'text-encoding-polyfill'; + +const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; +const filename = 'sample-1.mp3'; + +const correctAnswer = + 'It was anxious to find him no one that expectation of a man who were giving his father enjoyment. But he was avoided in sight in the minister to which indeed,'; +const model = 'whisper-1'; + +const client = new OpenAI({ apiKey: process.env['OPENAI_API_KEY'], dangerouslyAllowBrowser: true }); + +async function typeTests() { + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: null, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); +} + +declare global { + namespace jest { + interface Matchers { + toBeSimilarTo(comparedTo: string, expectedDistance: number): R; + } + } +} +expect.extend({ + toBeSimilarTo(received, comparedTo: string, expectedDistance: number) { + const message = () => + [ + `Received: ${JSON.stringify(received)}`, + `Expected: ${JSON.stringify(comparedTo)}`, + `Expected distance: ${expectedDistance}`, + `Received distance: ${actualDistance}`, + ].join('\n'); + + const actualDistance = distance(received, comparedTo); + if (actualDistance < expectedDistance) { + return { + message, + pass: true, + }; + } + + return { + message, + pass: false, + }; + }, +}); + +test(`basic request works`, async function () { + const completion = await client.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + }); + expect(completion.choices[0]?.message?.content).toBeSimilarTo('This is a test', 10); +}); + +it(`streaming works`, async function () { + const stream = await client.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + stream: true, + }); + const chunks = []; + for await (const part of stream) { + chunks.push(part); + } + expect(chunks.map((c) => c.choices[0]?.delta.content || '').join('')).toBeSimilarTo('This is a test', 10); +}); + +it.skip('handles builtinFile', async function () { + const file = await fetch(url) + .then((x) => x.arrayBuffer()) + // @ts-ignore avoid DOM lib for testing purposes + .then((x) => new File([x], filename)); + + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toBeSimilarTo(correctAnswer, 12); +}); + +it.skip('handles Response', async function () { + const file = await fetch(url); + + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toBeSimilarTo(correctAnswer, 12); +}); + +const fineTune = `{"prompt": "", "completion": ""}`; + +describe.skip('toFile', () => { + it('handles builtin Blob', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new Blob([new TextEncoder().encode(fineTune)]), + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles Uint8Array', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new TextEncoder().encode(fineTune), + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles ArrayBuffer', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new TextEncoder().encode(fineTune).buffer, + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles DataView', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new DataView(new TextEncoder().encode(fineTune).buffer), + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); +}); diff --git a/ecosystem-tests/node-ts-cjs/tests/test-node.ts b/ecosystem-tests/node-ts-cjs/tests/test-node.ts new file mode 100644 index 000000000..14db8938b --- /dev/null +++ b/ecosystem-tests/node-ts-cjs/tests/test-node.ts @@ -0,0 +1,194 @@ +import 'openai/shims/node'; +import OpenAI, { toFile } from 'openai'; +import { TranscriptionCreateParams } from 'openai/resources/audio/transcriptions'; +import fetch from 'node-fetch'; +import { File as FormDataFile, Blob as FormDataBlob } from 'formdata-node'; +import * as fs from 'fs'; +import { distance } from 'fastest-levenshtein'; +import { ChatCompletion } from 'openai/resources/chat/completions'; + +const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; +const filename = 'sample-1.mp3'; + +const correctAnswer = + 'It was anxious to find him no one that expectation of a man who were giving his father enjoyment. But he was avoided in sight in the minister to which indeed,'; +const model = 'whisper-1'; + +const client = new OpenAI(); + +async function typeTests() { + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: null, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); +} + +declare global { + namespace jest { + interface Matchers { + toBeSimilarTo(comparedTo: string, expectedDistance: number): R; + } + } +} +expect.extend({ + toBeSimilarTo(received, comparedTo: string, expectedDistance: number) { + const message = () => + [ + `Received: ${JSON.stringify(received)}`, + `Expected: ${JSON.stringify(comparedTo)}`, + `Expected distance: ${expectedDistance}`, + `Received distance: ${actualDistance}`, + ].join('\n'); + + const actualDistance = distance(received, comparedTo); + if (actualDistance < expectedDistance) { + return { + message, + pass: true, + }; + } + + return { + message, + pass: false, + }; + }, +}); + +it(`raw response`, async function () { + const response = await client.chat.completions + .create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + }) + .asResponse(); + + // test that we can use node-fetch Response API + const chunks: string[] = []; + response.body.on('data', (chunk) => chunks.push(chunk)); + await new Promise((resolve, reject) => { + response.body.once('end', resolve); + response.body.once('error', reject); + }); + const json: ChatCompletion = JSON.parse(chunks.join('')); + expect(json.choices[0]?.message.content || '').toBeSimilarTo('This is a test', 10); +}); + +it(`streaming works`, async function () { + const stream = await client.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + stream: true, + }); + const chunks = []; + for await (const part of stream) { + chunks.push(part); + } + expect(chunks.map((c) => c.choices[0]?.delta.content || '').join('')).toBeSimilarTo('This is a test', 10); +}); + +it('handles formdata-node File', async function () { + const file = await fetch(url) + .then((x) => x.arrayBuffer()) + .then((x) => new FormDataFile([x], filename)); + + const params: TranscriptionCreateParams = { file, model }; + + const result = await client.audio.transcriptions.create(params); + expect(result.text).toBeSimilarTo(correctAnswer, 12); +}); + +// @ts-ignore avoid DOM lib for testing purposes +if (typeof File !== 'undefined') { + it('handles builtinFile', async function () { + const file = await fetch(url) + .then((x) => x.arrayBuffer()) + // @ts-ignore avoid DOM lib for testing purposes + .then((x) => new File([x], filename)); + + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toBeSimilarTo(correctAnswer, 12); + }); +} + +it('handles Response', async function () { + const file = await fetch(url); + + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toBeSimilarTo(correctAnswer, 12); +}); + +it('handles fs.ReadStream', async function () { + const result = await client.audio.transcriptions.create({ + file: fs.createReadStream('sample1.mp3'), + model, + }); + expect(result.text).toBeSimilarTo(correctAnswer, 12); +}); + +const fineTune = `{"prompt": "", "completion": ""}`; + +describe('toFile', () => { + it('handles form-data Blob', async function () { + const result = await client.files.create({ + file: await toFile( + new FormDataBlob([ + // @ts-ignore avoid DOM lib for testing purposes + new TextEncoder().encode(fineTune), + ]), + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + // @ts-ignore avoid DOM lib for testing purposes + if (typeof Blob !== 'undefined') { + it('handles builtin Blob', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new Blob([new TextEncoder().encode(fineTune)]), + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + } + it('handles Uint8Array', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new TextEncoder().encode(fineTune), + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles ArrayBuffer', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new TextEncoder().encode(fineTune).buffer, + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles DataView', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new DataView(new TextEncoder().encode(fineTune).buffer), + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); +}); diff --git a/ecosystem-tests/node-ts-cjs/tsconfig.json b/ecosystem-tests/node-ts-cjs/tsconfig.json index 9fcbc2e6c..d1ad90efd 100644 --- a/ecosystem-tests/node-ts-cjs/tsconfig.json +++ b/ecosystem-tests/node-ts-cjs/tsconfig.json @@ -1,5 +1,6 @@ { - "exclude": ["node_modules"], + "include": ["tests/*.ts"], + "exclude": ["tests/*-shim-errors.ts"], "compilerOptions": { /* Visit https://aka.ms/tsconfig.json to read more about this file */ diff --git a/ecosystem-tests/node-ts-cjs/tsconfig.nodenext.json b/ecosystem-tests/node-ts-cjs/tsconfig.nodenext.json index 073cb35d3..0efe77b4e 100644 --- a/ecosystem-tests/node-ts-cjs/tsconfig.nodenext.json +++ b/ecosystem-tests/node-ts-cjs/tsconfig.nodenext.json @@ -1,5 +1,6 @@ { - "exclude": ["node_modules"], + "include": ["tests/*.ts"], + "exclude": ["tests/*-shim-errors.ts"], "compilerOptions": { /* Visit https://aka.ms/tsconfig.json to read more about this file */ diff --git a/ecosystem-tests/node-ts-esm-auto/esnext-type-tests.ts b/ecosystem-tests/node-ts-esm-auto/esnext-type-tests.ts new file mode 100644 index 000000000..c47ddc2a5 --- /dev/null +++ b/ecosystem-tests/node-ts-esm-auto/esnext-type-tests.ts @@ -0,0 +1,5 @@ +import * as shims from 'openai/_shims/index'; + +function typeTests(x: shims.Request) { + const url: string = x.url; +} diff --git a/ecosystem-tests/node-ts-esm-dom/jest.config.cjs b/ecosystem-tests/node-ts-esm-auto/jest.config.cjs similarity index 100% rename from ecosystem-tests/node-ts-esm-dom/jest.config.cjs rename to ecosystem-tests/node-ts-esm-auto/jest.config.cjs diff --git a/ecosystem-tests/node-ts-esm-dom/package-lock.json b/ecosystem-tests/node-ts-esm-auto/package-lock.json similarity index 100% rename from ecosystem-tests/node-ts-esm-dom/package-lock.json rename to ecosystem-tests/node-ts-esm-auto/package-lock.json diff --git a/ecosystem-tests/node-ts-esm-auto/package.json b/ecosystem-tests/node-ts-esm-auto/package.json new file mode 100644 index 000000000..7c227166c --- /dev/null +++ b/ecosystem-tests/node-ts-esm-auto/package.json @@ -0,0 +1,23 @@ +{ + "name": "node-ts-esm-auto", + "version": "0.0.1", + "main": "index.js", + "type": "module", + "private": true, + "scripts": { + "tsc": "tsc", + "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" + }, + "dependencies": { + "formdata-node": "^5.0.1", + "node-fetch": "^3.0.0" + }, + "devDependencies": { + "@types/node": "^20.3.1", + "fastest-levenshtein": "^1.0.16", + "jest": "^29.5.0", + "ts-jest": "^29.1.0", + "ts-node": "^10.9.1", + "typescript": "4.7.4" + } +} diff --git a/ecosystem-tests/node-ts-esm-dom/sample1.mp3 b/ecosystem-tests/node-ts-esm-auto/sample1.mp3 similarity index 100% rename from ecosystem-tests/node-ts-esm-dom/sample1.mp3 rename to ecosystem-tests/node-ts-esm-auto/sample1.mp3 diff --git a/ecosystem-tests/node-ts-esm-auto/tests/shims.ts b/ecosystem-tests/node-ts-esm-auto/tests/shims.ts new file mode 100644 index 000000000..aed8e6497 --- /dev/null +++ b/ecosystem-tests/node-ts-esm-auto/tests/shims.ts @@ -0,0 +1,5 @@ +import * as shims from 'openai/_shims/index'; + +test('openai/shims/node', () => { + expect(shims.kind).toEqual('node'); +}); diff --git a/ecosystem-tests/node-ts-esm-auto/tests/test.ts b/ecosystem-tests/node-ts-esm-auto/tests/test.ts new file mode 100644 index 000000000..d8ecba1ef --- /dev/null +++ b/ecosystem-tests/node-ts-esm-auto/tests/test.ts @@ -0,0 +1,196 @@ +import 'openai/shims/node'; +import OpenAI, { toFile } from 'openai'; +import { TranscriptionCreateParams } from 'openai/resources/audio/transcriptions'; +import fetch from 'node-fetch'; +import { File as FormDataFile, Blob as FormDataBlob } from 'formdata-node'; +import * as fs from 'fs'; +import { distance } from 'fastest-levenshtein'; +import { ChatCompletion } from 'openai/resources/chat/completions'; + +const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; +const filename = 'sample-1.mp3'; + +const correctAnswer = + 'It was anxious to find him no one that expectation of a man who were giving his father enjoyment. But he was avoided in sight in the minister to which indeed,'; +const model = 'whisper-1'; + +const client = new OpenAI(); + +async function typeTests() { + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: { foo: true }, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: null, model: 'whisper-1' }); + // @ts-expect-error this should error if the `Uploadable` type was resolved correctly + await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); +} + +declare global { + namespace jest { + interface Matchers { + toBeSimilarTo(comparedTo: string, expectedDistance: number): R; + } + } +} +expect.extend({ + toBeSimilarTo(received, comparedTo: string, expectedDistance: number) { + const message = () => + [ + `Received: ${JSON.stringify(received)}`, + `Expected: ${JSON.stringify(comparedTo)}`, + `Expected distance: ${expectedDistance}`, + `Received distance: ${actualDistance}`, + ].join('\n'); + + const actualDistance = distance(received, comparedTo); + if (actualDistance < expectedDistance) { + return { + message, + pass: true, + }; + } + + return { + message, + pass: false, + }; + }, +}); + +it(`raw response`, async function () { + const response = await client.chat.completions + .create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + }) + .asResponse(); + + // test that we can use node-fetch Response API + const chunks: string[] = []; + const { body } = response; + if (!body) throw new Error(`expected response.body to be defined`); + body.on('data', (chunk) => chunks.push(chunk)); + await new Promise((resolve, reject) => { + body.once('end', resolve); + body.once('error', reject); + }); + const json: ChatCompletion = JSON.parse(chunks.join('')); + expect(json.choices[0]?.message.content || '').toBeSimilarTo('This is a test', 10); +}); + +it(`streaming works`, async function () { + const stream = await client.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + stream: true, + }); + const chunks = []; + for await (const part of stream) { + chunks.push(part); + } + expect(chunks.map((c) => c.choices[0]?.delta.content || '').join('')).toBeSimilarTo('This is a test', 10); +}); + +it('handles formdata-node File', async function () { + const file = await fetch(url) + .then((x) => x.arrayBuffer()) + .then((x) => new FormDataFile([x], filename)); + + const params: TranscriptionCreateParams = { file, model }; + + const result = await client.audio.transcriptions.create(params); + expect(result.text).toBeSimilarTo(correctAnswer, 12); +}); + +// @ts-ignore avoid DOM lib for testing purposes +if (typeof File !== 'undefined') { + it('handles builtinFile', async function () { + const file = await fetch(url) + .then((x) => x.arrayBuffer()) + // @ts-ignore avoid DOM lib for testing purposes + .then((x) => new File([x], filename)); + + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toBeSimilarTo(correctAnswer, 12); + }); +} + +it('handles Response', async function () { + const file = await fetch(url); + + const result = await client.audio.transcriptions.create({ file, model }); + expect(result.text).toBeSimilarTo(correctAnswer, 12); +}); + +it('handles fs.ReadStream', async function () { + const result = await client.audio.transcriptions.create({ + file: fs.createReadStream('sample1.mp3'), + model, + }); + expect(result.text).toBeSimilarTo(correctAnswer, 12); +}); + +const fineTune = `{"prompt": "", "completion": ""}`; + +describe('toFile', () => { + it('handles form-data Blob', async function () { + const result = await client.files.create({ + file: await toFile( + new FormDataBlob([ + // @ts-ignore avoid DOM lib for testing purposes + new TextEncoder().encode(fineTune), + ]), + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + // @ts-ignore avoid DOM lib for testing purposes + if (typeof Blob !== 'undefined') { + it('handles builtin Blob', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new Blob([new TextEncoder().encode(fineTune)]), + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + } + it('handles Uint8Array', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new TextEncoder().encode(fineTune), + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles ArrayBuffer', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new TextEncoder().encode(fineTune).buffer, + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); + it('handles DataView', async function () { + const result = await client.files.create({ + file: await toFile( + // @ts-ignore avoid DOM lib for testing purposes + new DataView(new TextEncoder().encode(fineTune).buffer), + 'finetune.jsonl', + ), + purpose: 'fine-tune', + }); + expect(result.status).toEqual('uploaded'); + }); +}); diff --git a/ecosystem-tests/node-ts-esm-auto/tsconfig.json b/ecosystem-tests/node-ts-esm-auto/tsconfig.json new file mode 100644 index 000000000..7e7c45459 --- /dev/null +++ b/ecosystem-tests/node-ts-esm-auto/tsconfig.json @@ -0,0 +1,54 @@ +{ + "include": ["tests/*.ts", "*.ts"], + + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ + /* Projects */ + "incremental": true, + + /* Language and Environment */ + "target": "ES2022", + "lib": ["ES2022"], + "jsx": "react", + + /* Modules */ + "module": "ESNext", + "rootDir": "./", + "moduleResolution": "NodeNext", + "baseUrl": "./", + "paths": { + "~/*": ["*"] + }, + "resolveJsonModule": true, + "composite": true, + + /* Emit */ + "outDir": "node_modules", + "noEmit": true, + + /* Interop Constraints */ + "isolatedModules": true, + "allowSyntheticDefaultImports": true, + /* "esModuleInterop": true, */ + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "checkJs": true, + + /* Experimental Features */ + "experimentalDecorators": true, + + /* Type Checking */ + "strict": true, + "noImplicitAny": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "strictBindCallApply": true, + "strictPropertyInitialization": true, + "noImplicitThis": true, + "alwaysStrict": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + "noPropertyAccessFromIndexSignature": true, + "skipLibCheck": true + } +} diff --git a/ecosystem-tests/node-ts-esm-web/jest.config.cjs b/ecosystem-tests/node-ts-esm-web/jest.config.cjs new file mode 100644 index 000000000..31e0a832f --- /dev/null +++ b/ecosystem-tests/node-ts-esm-web/jest.config.cjs @@ -0,0 +1,23 @@ +/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ +module.exports = { + extensionsToTreatAsEsm: ['.ts'], + moduleNameMapper: { + '^(\\.{1,2}/.*)\\.js$': '$1', + }, + transform: { + // '^.+\\.[tj]sx?$' to process js/ts with `ts-jest` + // '^.+\\.m?[tj]sx?$' to process js/ts/mjs/mts with `ts-jest` + '^.+\\.tsx?$': [ + 'ts-jest', + { + useESM: true, + diagnostics: false, + }, + ], + }, + testEnvironment: 'node', + testMatch: ['/tests/*.ts'], + watchPathIgnorePatterns: ['/node_modules/'], + verbose: false, + testTimeout: 60000, +}; diff --git a/ecosystem-tests/node-ts-cjs-dom/package-lock.json b/ecosystem-tests/node-ts-esm-web/package-lock.json similarity index 94% rename from ecosystem-tests/node-ts-cjs-dom/package-lock.json rename to ecosystem-tests/node-ts-esm-web/package-lock.json index e53aa7a4f..dfafbf8c2 100644 --- a/ecosystem-tests/node-ts-cjs-dom/package-lock.json +++ b/ecosystem-tests/node-ts-esm-web/package-lock.json @@ -1,23 +1,22 @@ { - "name": "node-ts-cjs-dom", + "name": "node-esm", "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "node-ts-cjs-dom", + "name": "node-esm", "version": "0.0.1", "dependencies": { - "formdata-node": "^4.4.1", - "node-fetch": "^2.6.1", - "tsconfig-paths": "^4.0.0" + "formdata-node": "^5.0.1", + "node-fetch": "^3.0.0" }, "devDependencies": { - "@types/node": "^17.0.9", - "@types/node-fetch": "^2.6.1", + "@types/node": "^20.3.1", "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", "ts-jest": "^29.1.0", + "ts-node": "^10.9.1", "typescript": "4.7.4" } }, @@ -662,6 +661,28 @@ "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", @@ -1037,6 +1058,30 @@ "@sinonjs/commons": "^3.0.0" } }, + "node_modules/@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true + }, "node_modules/@types/babel__core": { "version": "7.20.1", "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", @@ -1112,21 +1157,11 @@ } }, "node_modules/@types/node": { - "version": "17.0.45", - "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz", - "integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==", + "version": "20.5.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.7.tgz", + "integrity": "sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==", "dev": true }, - "node_modules/@types/node-fetch": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", - "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", - "dev": true, - "dependencies": { - "@types/node": "*", - "form-data": "^3.0.0" - } - }, "node_modules/@types/stack-utils": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", @@ -1148,6 +1183,27 @@ "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", "dev": true }, + "node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", @@ -1200,6 +1256,12 @@ "node": ">= 8" } }, + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, "node_modules/argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", @@ -1209,12 +1271,6 @@ "sprintf-js": "~1.0.2" } }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true - }, "node_modules/babel-jest": { "version": "29.6.4", "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.6.4.tgz", @@ -1541,18 +1597,6 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -1565,6 +1609,12 @@ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "dev": true }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, "node_modules/cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", @@ -1579,6 +1629,14 @@ "node": ">= 8" } }, + "node_modules/data-uri-to-buffer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", + "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", + "engines": { + "node": ">= 12" + } + }, "node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -1619,15 +1677,6 @@ "node": ">=0.10.0" } }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, "node_modules/detect-newline": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", @@ -1637,6 +1686,15 @@ "node": ">=8" } }, + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, "node_modules/diff-sequences": { "version": "29.6.3", "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", @@ -1782,6 +1840,36 @@ "bser": "2.1.1" } }, + "node_modules/fetch-blob": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "paypal", + "url": "https://paypal.me/jimmywarting" + } + ], + "dependencies": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + }, + "engines": { + "node": "^12.20 || >= 14.13" + } + }, + "node_modules/fetch-blob/node_modules/web-streams-polyfill": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz", + "integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==", + "engines": { + "node": ">= 8" + } + }, "node_modules/fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -1807,30 +1895,27 @@ "node": ">=8" } }, - "node_modules/form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", - "dev": true, + "node_modules/formdata-node": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-5.0.1.tgz", + "integrity": "sha512-8xnIjMYGKPj+rY2BTbAmpqVpi8der/2FT4d9f7J32FlsCpO5EzZPq3C/N56zdv8KweHzVF6TGijsS1JT6r1H2g==", "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "node-domexception": "1.0.0", + "web-streams-polyfill": "4.0.0-beta.3" }, "engines": { - "node": ">= 6" + "node": ">= 14.17" } }, - "node_modules/formdata-node": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-4.4.1.tgz", - "integrity": "sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==", + "node_modules/formdata-polyfill": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", "dependencies": { - "node-domexception": "1.0.0", - "web-streams-polyfill": "4.0.0-beta.3" + "fetch-blob": "^3.1.2" }, "engines": { - "node": ">= 12.20" + "node": ">=12.20.0" } }, "node_modules/fs.realpath": { @@ -2805,6 +2890,7 @@ "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, "bin": { "json5": "lib/cli.js" }, @@ -2945,27 +3031,6 @@ "node": ">=8.6" } }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dev": true, - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, "node_modules/mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", @@ -2987,14 +3052,6 @@ "node": "*" } }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", @@ -3026,22 +3083,20 @@ } }, "node_modules/node-fetch": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", "dependencies": { - "whatwg-url": "^5.0.0" + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" }, "engines": { - "node": "4.x || >=6.0.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/node-fetch" } }, "node_modules/node-int64": { @@ -3581,11 +3636,6 @@ "node": ">=8.0" } }, - "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - }, "node_modules/ts-jest": { "version": "29.1.1", "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", @@ -3662,25 +3712,47 @@ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/tsconfig-paths": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", - "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", - "dependencies": { - "json5": "^2.2.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" + "node_modules/ts-node": { + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", + "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "dev": true, + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tsconfig-paths/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "engines": { - "node": ">=4" + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } } }, "node_modules/type-detect": { @@ -3747,6 +3819,12 @@ "browserslist": ">= 4.21.0" } }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "dev": true + }, "node_modules/v8-to-istanbul": { "version": "9.1.0", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", @@ -3784,20 +3862,6 @@ "node": ">= 14" } }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -3891,6 +3955,15 @@ "node": ">=12" } }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", diff --git a/ecosystem-tests/node-ts-esm-dom/package.json b/ecosystem-tests/node-ts-esm-web/package.json similarity index 94% rename from ecosystem-tests/node-ts-esm-dom/package.json rename to ecosystem-tests/node-ts-esm-web/package.json index 5f6b5f658..97a2309f8 100644 --- a/ecosystem-tests/node-ts-esm-dom/package.json +++ b/ecosystem-tests/node-ts-esm-web/package.json @@ -1,5 +1,5 @@ { - "name": "node-esm", + "name": "node-ts-esm-web", "version": "0.0.1", "main": "index.js", "type": "module", diff --git a/ecosystem-tests/node-ts-esm-web/sample1.mp3 b/ecosystem-tests/node-ts-esm-web/sample1.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1e787cd7cf33203d99fa50b39b232b318d287541 GIT binary patch literal 121671 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC { + expect(shims.kind).toEqual('web'); + expect(shims.File).toEqual(File); +}); diff --git a/ecosystem-tests/node-ts-esm-dom/tests/test.ts b/ecosystem-tests/node-ts-esm-web/tests/test.ts similarity index 77% rename from ecosystem-tests/node-ts-esm-dom/tests/test.ts rename to ecosystem-tests/node-ts-esm-web/tests/test.ts index 42890a58c..7b9b6b6d9 100644 --- a/ecosystem-tests/node-ts-esm-dom/tests/test.ts +++ b/ecosystem-tests/node-ts-esm-web/tests/test.ts @@ -1,9 +1,8 @@ +// shouldn't need extension, but Jest's ESM module resolution is broken +import 'openai/shims/web.mjs'; import OpenAI, { toFile } from 'openai'; -import { TranscriptionCreateParams } from 'openai/resources/audio/transcriptions'; -import fetch from 'node-fetch'; -import { File as FormDataFile, Blob as FormDataBlob } from 'formdata-node'; -import * as fs from 'fs'; import { distance } from 'fastest-levenshtein'; +import { ChatCompletion } from 'openai/resources/chat/completions'; const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; const filename = 'sample-1.mp3'; @@ -55,6 +54,39 @@ expect.extend({ }, }); +it(`raw response`, async function () { + const response = await client.chat.completions + .create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + }) + .asResponse(); + + // test that we can use web Response API + const { body } = response; + if (!body) throw new Error('expected response.body to be defined'); + + const reader = body.getReader(); + const chunks: Uint8Array[] = []; + let result; + do { + result = await reader.read(); + if (!result.done) chunks.push(result.value); + } while (!result.done); + + reader.releaseLock(); + + let offset = 0; + const merged = new Uint8Array(chunks.reduce((total, chunk) => total + chunk.length, 0)); + for (const chunk of chunks) { + merged.set(chunk, offset); + offset += chunk.length; + } + + const json: ChatCompletion = JSON.parse(new TextDecoder().decode(merged)); + expect(json.choices[0]?.message.content || '').toBeSimilarTo('This is a test', 10); +}); + it(`streaming works`, async function () { const stream = await client.chat.completions.create({ model: 'gpt-4', @@ -68,17 +100,6 @@ it(`streaming works`, async function () { expect(chunks.map((c) => c.choices[0]?.delta.content || '').join('')).toBeSimilarTo('This is a test', 10); }); -it('handles formdata-node File', async function () { - const file = await fetch(url) - .then((x) => x.arrayBuffer()) - .then((x) => new FormDataFile([x], filename)); - - const params: TranscriptionCreateParams = { file, model }; - - const result = await client.audio.transcriptions.create(params); - expect(result.text).toBeSimilarTo(correctAnswer, 12); -}); - if (typeof File !== 'undefined') { it('handles builtinFile', async function () { const file = await fetch(url) @@ -97,24 +118,9 @@ it('handles Response', async function () { expect(result.text).toBeSimilarTo(correctAnswer, 12); }); -it('handles fs.ReadStream', async function () { - const result = await client.audio.transcriptions.create({ - file: fs.createReadStream('sample1.mp3'), - model, - }); - expect(result.text).toBeSimilarTo(correctAnswer, 12); -}); - const fineTune = `{"prompt": "", "completion": ""}`; describe('toFile', () => { - it('handles form-data Blob', async function () { - const result = await client.files.create({ - file: await toFile(new FormDataBlob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), - purpose: 'fine-tune', - }); - expect(result.status).toEqual('uploaded'); - }); if (typeof Blob !== 'undefined') { it('handles builtin Blob', async function () { const result = await client.files.create({ diff --git a/ecosystem-tests/node-ts-esm-dom/tsconfig.json b/ecosystem-tests/node-ts-esm-web/tsconfig.json similarity index 97% rename from ecosystem-tests/node-ts-esm-dom/tsconfig.json rename to ecosystem-tests/node-ts-esm-web/tsconfig.json index 0d45c35f3..81f9c1186 100644 --- a/ecosystem-tests/node-ts-esm-dom/tsconfig.json +++ b/ecosystem-tests/node-ts-esm-web/tsconfig.json @@ -1,5 +1,5 @@ { - "exclude": ["node_modules"], + "include": ["tests/*.ts"], "compilerOptions": { /* Visit https://aka.ms/tsconfig.json to read more about this file */ diff --git a/ecosystem-tests/node-ts-esm-dom/tsconfig.noderesolution.json b/ecosystem-tests/node-ts-esm-web/tsconfig.noderesolution.json similarity index 97% rename from ecosystem-tests/node-ts-esm-dom/tsconfig.noderesolution.json rename to ecosystem-tests/node-ts-esm-web/tsconfig.noderesolution.json index 09e7243b1..96e61ca7d 100644 --- a/ecosystem-tests/node-ts-esm-dom/tsconfig.noderesolution.json +++ b/ecosystem-tests/node-ts-esm-web/tsconfig.noderesolution.json @@ -1,5 +1,5 @@ { - "exclude": ["node_modules"], + "include": ["tests/*.ts"], "compilerOptions": { /* Visit https://aka.ms/tsconfig.json to read more about this file */ diff --git a/ecosystem-tests/node-ts-esm/package.json b/ecosystem-tests/node-ts-esm/package.json index 5f6b5f658..a4f42790f 100644 --- a/ecosystem-tests/node-ts-esm/package.json +++ b/ecosystem-tests/node-ts-esm/package.json @@ -1,5 +1,5 @@ { - "name": "node-esm", + "name": "node-ts-esm", "version": "0.0.1", "main": "index.js", "type": "module", diff --git a/ecosystem-tests/node-ts-esm/tests/shims.ts b/ecosystem-tests/node-ts-esm/tests/shims.ts new file mode 100644 index 000000000..a7a22ddb4 --- /dev/null +++ b/ecosystem-tests/node-ts-esm/tests/shims.ts @@ -0,0 +1,7 @@ +// shouldn't need extension, but Jest's ESM module resolution is broken +import 'openai/shims/node.mjs'; +import * as shims from 'openai/_shims/index'; + +test('openai/shims/node', () => { + expect(shims.kind).toEqual('node'); +}); diff --git a/ecosystem-tests/node-ts-esm/tests/test-esnext.ts b/ecosystem-tests/node-ts-esm/tests/test-esnext.ts new file mode 100644 index 000000000..7fafdae10 --- /dev/null +++ b/ecosystem-tests/node-ts-esm/tests/test-esnext.ts @@ -0,0 +1,68 @@ +// shouldn't need extension, but Jest's ESM module resolution is broken +// however, using .mjs doesn't set the right typings with "moduleResolution": "node"...argh +import 'openai/shims/node.mjs'; +import OpenAI from 'openai'; +import { distance } from 'fastest-levenshtein'; +import { ChatCompletion } from 'openai/resources/chat/completions'; +import * as shims from 'openai/_shims/index'; + +// The tests in this file don't typecheck with "moduleResolution": "node" + +function typeTests(x: shims.Request) { + const url: string = x.url; +} + +const client = new OpenAI(); + +declare global { + namespace jest { + interface Matchers { + toBeSimilarTo(comparedTo: string, expectedDistance: number): R; + } + } +} +expect.extend({ + toBeSimilarTo(received, comparedTo: string, expectedDistance: number) { + const message = () => + [ + `Received: ${JSON.stringify(received)}`, + `Expected: ${JSON.stringify(comparedTo)}`, + `Expected distance: ${expectedDistance}`, + `Received distance: ${actualDistance}`, + ].join('\n'); + + const actualDistance = distance(received, comparedTo); + if (actualDistance < expectedDistance) { + return { + message, + pass: true, + }; + } + + return { + message, + pass: false, + }; + }, +}); + +it(`raw response`, async function () { + const response = await client.chat.completions + .create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + }) + .asResponse(); + + // test that we can use node-fetch Response API + const chunks: string[] = []; + const { body } = response; + if (!body) throw new Error(`expected response.body to be defined`); + body.on('data', (chunk) => chunks.push(chunk)); + await new Promise((resolve, reject) => { + body.once('end', resolve); + body.once('error', reject); + }); + const json: ChatCompletion = JSON.parse(chunks.join('')); + expect(json.choices[0]?.message.content || '').toBeSimilarTo('This is a test', 10); +}); diff --git a/ecosystem-tests/node-ts-esm/tests/test.ts b/ecosystem-tests/node-ts-esm/tests/test.ts index ea6d0a76b..c62012114 100644 --- a/ecosystem-tests/node-ts-esm/tests/test.ts +++ b/ecosystem-tests/node-ts-esm/tests/test.ts @@ -1,3 +1,5 @@ +// shouldn't need extension, but Jest's ESM module resolution is broken +import 'openai/shims/node.mjs'; import OpenAI, { toFile } from 'openai'; import { TranscriptionCreateParams } from 'openai/resources/audio/transcriptions'; import fetch from 'node-fetch'; diff --git a/ecosystem-tests/node-ts-esm/tsconfig.json b/ecosystem-tests/node-ts-esm/tsconfig.json index de2268490..c4a5f80c5 100644 --- a/ecosystem-tests/node-ts-esm/tsconfig.json +++ b/ecosystem-tests/node-ts-esm/tsconfig.json @@ -1,5 +1,5 @@ { - "exclude": ["node_modules"], + "include": ["tests/*.ts"], "compilerOptions": { /* Visit https://aka.ms/tsconfig.json to read more about this file */ diff --git a/ecosystem-tests/node-ts-esm/tsconfig.noderesolution.json b/ecosystem-tests/node-ts-esm/tsconfig.noderesolution.json index b14dc7f61..0a7d2b35a 100644 --- a/ecosystem-tests/node-ts-esm/tsconfig.noderesolution.json +++ b/ecosystem-tests/node-ts-esm/tsconfig.noderesolution.json @@ -1,5 +1,6 @@ { - "exclude": ["node_modules"], + "include": ["tests/*.ts"], + "exclude": ["tests/*-esnext.ts"], "compilerOptions": { /* Visit https://aka.ms/tsconfig.json to read more about this file */ diff --git a/ecosystem-tests/node-ts4.5-jest27/jest.config.cjs b/ecosystem-tests/node-ts4.5-jest27/jest.config.cjs new file mode 100644 index 000000000..b08ea4311 --- /dev/null +++ b/ecosystem-tests/node-ts4.5-jest27/jest.config.cjs @@ -0,0 +1,9 @@ +/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ +module.exports = { + preset: 'ts-jest', + testEnvironment: 'node', + testMatch: ['/tests/*.ts'], + watchPathIgnorePatterns: ['/node_modules/'], + verbose: false, + testTimeout: 60000, +}; diff --git a/ecosystem-tests/node-ts4.5-jest27/package-lock.json b/ecosystem-tests/node-ts4.5-jest27/package-lock.json new file mode 100644 index 000000000..dbec66d6d --- /dev/null +++ b/ecosystem-tests/node-ts4.5-jest27/package-lock.json @@ -0,0 +1,4395 @@ +{ + "name": "node-ts-cjs", + "version": "0.0.1", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "node-ts-cjs", + "version": "0.0.1", + "dependencies": { + "formdata-node": "^4.4.1", + "node-fetch": "^2.6.1", + "tsconfig-paths": "^4.0.0" + }, + "devDependencies": { + "@types/jest": "27.4.1", + "@types/node": "^20.4.2", + "@types/node-fetch": "^2.6.1", + "@types/ws": "^8.5.4", + "fastest-levenshtein": "^1.0.16", + "jest": "27.5.1", + "ts-jest": "27.1.4", + "typescript": "4.5.4" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.22.13", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/code-frame/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/code-frame/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/code-frame/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz", + "integrity": "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.22.17", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.17.tgz", + "integrity": "sha512-2EENLmhpwplDux5PSsZnSbnSkB3tZ6QTksgO25xwEL7pIDcNOMhF5v/s6RzwjMZzZzw9Ofc30gHv5ChCC8pifQ==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.22.15", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-module-transforms": "^7.22.17", + "@babel/helpers": "^7.22.15", + "@babel/parser": "^7.22.16", + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.22.17", + "@babel/types": "^7.22.17", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.15.tgz", + "integrity": "sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.15", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", + "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.9", + "@babel/helper-validator-option": "^7.22.15", + "browserslist": "^4.21.9", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", + "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", + "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.22.17", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.17.tgz", + "integrity": "sha512-XouDDhQESrLHTpnBtCKExJdyY4gJCdrvH2Pyv8r8kovX2U8G0dRUOT45T9XlbLtuu9CLXP15eusnkprhoPV5iQ==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.15.tgz", + "integrity": "sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz", + "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.15.tgz", + "integrity": "sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.22.15", + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz", + "integrity": "sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.22.16", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.16.tgz", + "integrity": "sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.22.17", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.17.tgz", + "integrity": "sha512-xK4Uwm0JnAMvxYZxOVecss85WxTEIbTa7bnGyf/+EgCL5Zt3U7htUpEOWv9detPlamGKuRzCqw74xVglDWpPdg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.22.15", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.22.16", + "@babel/types": "^7.22.17", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.22.17", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.17.tgz", + "integrity": "sha512-YSQPHLFtQNE5xN9tHuZnzu8vPr61wVTBZdfv1meex1NBosa4iT05k/Jw06ddJugi4bk7The/oSwQGFcksmEJQg==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.15", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/core": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", + "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", + "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", + "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", + "dev": true, + "dependencies": { + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", + "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", + "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", + "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "27.4.1", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.4.1.tgz", + "integrity": "sha512-23iPJADSmicDVrWk+HT58LMJtzLAnB2AgIzplQuq/bSrGaxCrlvRFjGbXmamnnk/mAmCdLStiGqggu28ocUyiw==", + "dev": true, + "dependencies": { + "jest-matcher-utils": "^27.0.0", + "pretty-format": "^27.0.0" + } + }, + "node_modules/@types/node": { + "version": "20.6.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.6.0.tgz", + "integrity": "sha512-najjVq5KN2vsH2U/xyh2opaSEz6cZMR2SetLIlxlj08nOcmPOemJmUK2o4kUzfLqfrWE0PIrNeE16XhYDd3nqg==", + "dev": true + }, + "node_modules/@types/node-fetch": { + "version": "2.6.5", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.5.tgz", + "integrity": "sha512-OZsUlr2nxvkqUFLSaY2ZbA+P1q22q+KrlxWOn/38RX+u5kTkYL2mTujEpzUhGkS+K/QCYp9oagfXG39XOzyySg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "form-data": "^4.0.0" + } + }, + "node_modules/@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", + "dev": true + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/@types/ws": { + "version": "8.5.5", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", + "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dev": true, + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "node_modules/acorn-globals/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/babel-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", + "dev": true, + "dependencies": { + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", + "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", + "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^27.5.1", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "dev": true + }, + "node_modules/browserslist": { + "version": "4.21.10", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", + "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001517", + "electron-to-chromium": "^1.4.477", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.11" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001534", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001534.tgz", + "integrity": "sha512-vlPVrhsCS7XaSh2VvWluIQEzVhefrUQcEsQWSS5A5V+dM07uv1qHeQzAOTGIMy9i3e9bH15+muvI/UHojVgS/Q==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "dev": true + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "dev": true + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "dev": true + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + }, + "node_modules/data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "dev": true, + "dependencies": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", + "dev": true + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "dev": true, + "dependencies": { + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.520", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.520.tgz", + "integrity": "sha512-Frfus2VpYADsrh1lB3v/ft/WVFlVzOIm+Q0p7U7VqHI6qr7NWHYKe+Wif3W50n7JAFoBsWVsoU0+qDks6WQ60g==", + "dev": true + }, + "node_modules/emittery": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", + "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dev": true, + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true, + "engines": { + "node": ">= 4.9.1" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/formdata-node": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-4.4.1.tgz", + "integrity": "sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==", + "dependencies": { + "node-domexception": "1.0.0", + "web-streams-polyfill": "4.0.0-beta.3" + }, + "engines": { + "node": ">= 12.20" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dev": true, + "dependencies": { + "whatwg-encoding": "^1.0.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dev": true, + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-core-module": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", + "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", + "dev": true, + "dependencies": { + "@jest/core": "^27.5.1", + "import-local": "^3.0.2", + "jest-cli": "^27.5.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", + "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "execa": "^5.0.0", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", + "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-cli": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", + "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", + "dev": true, + "dependencies": { + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-config": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", + "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-docblock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", + "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", + "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-jasmine2": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", + "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-leak-detector": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", + "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", + "dev": true, + "dependencies": { + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", + "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watcher": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", + "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", + "dev": true, + "dependencies": { + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.5.1", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "dev": true, + "dependencies": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsdom/node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "engines": { + "node": ">=10.5.0" + } + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-fetch/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "node_modules/node-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "node_modules/node-fetch/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nwsapi": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz", + "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==", + "dev": true + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, + "node_modules/resolve": { + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", + "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve.exports": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", + "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "dev": true, + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dev": true, + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/throat": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", + "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==", + "dev": true + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tough-cookie": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", + "dev": true, + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dev": true, + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-jest": { + "version": "27.1.4", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-27.1.4.tgz", + "integrity": "sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==", + "dev": true, + "dependencies": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^27.0.0", + "json5": "2.x", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "7.x", + "yargs-parser": "20.x" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.0.0-beta.0 <8", + "@types/jest": "^27.0.0", + "babel-jest": ">=27.0.0 <28", + "jest": "^27.0.0", + "typescript": ">=3.8 <5.0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@types/jest": { + "optional": true + }, + "babel-jest": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/ts-jest/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/tsconfig-paths": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", + "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", + "dependencies": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dev": true, + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/typescript": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.4.tgz", + "integrity": "sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/v8-to-istanbul": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", + "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "deprecated": "Use your platform's native performance.now() and performance.timeOrigin.", + "dev": true, + "dependencies": { + "browser-process-hrtime": "^1.0.0" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "dev": true, + "dependencies": { + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/web-streams-polyfill": { + "version": "4.0.0-beta.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz", + "integrity": "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==", + "engines": { + "node": ">= 14" + } + }, + "node_modules/webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "dev": true, + "engines": { + "node": ">=10.4" + } + }, + "node_modules/whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dev": true, + "dependencies": { + "iconv-lite": "0.4.24" + } + }, + "node_modules/whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "dev": true + }, + "node_modules/whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dev": true, + "dependencies": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "dev": true, + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "dev": true + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" + } + } + } +} diff --git a/ecosystem-tests/node-ts-cjs-ts4.5/package.json b/ecosystem-tests/node-ts4.5-jest27/package.json similarity index 79% rename from ecosystem-tests/node-ts-cjs-ts4.5/package.json rename to ecosystem-tests/node-ts4.5-jest27/package.json index e79a1ba62..cf126a1dc 100644 --- a/ecosystem-tests/node-ts-cjs-ts4.5/package.json +++ b/ecosystem-tests/node-ts4.5-jest27/package.json @@ -1,5 +1,5 @@ { - "name": "node-ts-cjs", + "name": "node-ts4.5-jest27", "version": "0.0.1", "main": "index.js", "private": true, @@ -15,10 +15,11 @@ "devDependencies": { "@types/node": "^20.4.2", "@types/node-fetch": "^2.6.1", + "@types/jest": "27.4.1", "@types/ws": "^8.5.4", "fastest-levenshtein": "^1.0.16", - "jest": "^29.5.0", - "ts-jest": "^29.1.0", + "jest": "27.5.1", + "ts-jest": "27.1.4", "typescript": "4.5.4" } } diff --git a/ecosystem-tests/node-ts4.5-jest27/sample1.mp3 b/ecosystem-tests/node-ts4.5-jest27/sample1.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1e787cd7cf33203d99fa50b39b232b318d287541 GIT binary patch literal 121671 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC chunks.push(chunk)); + await new Promise((resolve, reject) => { + response.body.once('end', resolve); + response.body.once('error', reject); + }); + const json: ChatCompletion = JSON.parse(chunks.join('')); + expect(json.choices[0]?.message.content || '').toBeSimilarTo('This is a test', 10); +}); + it(`streaming works`, async function () { const stream = await client.chat.completions.create({ model: 'gpt-4', diff --git a/ecosystem-tests/node-ts-cjs-ts4.5/tsconfig.json b/ecosystem-tests/node-ts4.5-jest27/tsconfig.json similarity index 97% rename from ecosystem-tests/node-ts-cjs-ts4.5/tsconfig.json rename to ecosystem-tests/node-ts4.5-jest27/tsconfig.json index 9fcbc2e6c..2ada1bcad 100644 --- a/ecosystem-tests/node-ts-cjs-ts4.5/tsconfig.json +++ b/ecosystem-tests/node-ts4.5-jest27/tsconfig.json @@ -1,5 +1,5 @@ { - "exclude": ["node_modules"], + "include": ["tests/*.ts"], "compilerOptions": { /* Visit https://aka.ms/tsconfig.json to read more about this file */ diff --git a/ecosystem-tests/ts-browser-webpack/package.json b/ecosystem-tests/ts-browser-webpack/package.json index 02f8a6414..ac251790f 100644 --- a/ecosystem-tests/ts-browser-webpack/package.json +++ b/ecosystem-tests/ts-browser-webpack/package.json @@ -8,7 +8,7 @@ "serve": "webpack-cli serve", "build": "webpack", "test": "ts-node src/test.ts", - "test:ci": "WAIT_ON_INTERVAL=10000 start-server-and-test serve http://localhost:8080 test" + "test:ci": "start-server-and-test serve http://localhost:8080 test" }, "devDependencies": { "babel-core": "^6.26.3", diff --git a/ecosystem-tests/ts-browser-webpack/src/index.ts b/ecosystem-tests/ts-browser-webpack/src/index.ts index 415a27c82..a5e9101e3 100644 --- a/ecosystem-tests/ts-browser-webpack/src/index.ts +++ b/ecosystem-tests/ts-browser-webpack/src/index.ts @@ -1,5 +1,7 @@ +import 'openai/shims/web'; import OpenAI, { toFile } from 'openai'; import { distance } from 'fastest-levenshtein'; +import { ChatCompletion } from 'openai/resources/chat/completions'; type TestCase = { path: string[]; @@ -104,6 +106,39 @@ async function typeTests() { await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); } +it(`raw response`, async function () { + const response = await client.chat.completions + .create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + }) + .asResponse(); + + // test that we can use web Response API + const { body } = response; + if (!body) throw new Error('expected response.body to be defined'); + + const reader = body.getReader(); + const chunks: Uint8Array[] = []; + let result; + do { + result = await reader.read(); + if (!result.done) chunks.push(result.value); + } while (!result.done); + + reader.releaseLock(); + + let offset = 0; + const merged = new Uint8Array(chunks.reduce((total, chunk) => total + chunk.length, 0)); + for (const chunk of chunks) { + merged.set(chunk, offset); + offset += chunk.length; + } + + const json: ChatCompletion = JSON.parse(new TextDecoder().decode(merged)); + expect(json.choices[0]?.message.content || '').toBeSimilarTo('This is a test', 10); +}); + it(`streaming works`, async function () { const stream = await client.chat.completions.create({ model: 'gpt-4', diff --git a/ecosystem-tests/vercel-edge/src/uploadWebApiTestCases.ts b/ecosystem-tests/vercel-edge/src/uploadWebApiTestCases.ts index 72f5b615f..865aa86a5 100644 --- a/ecosystem-tests/vercel-edge/src/uploadWebApiTestCases.ts +++ b/ecosystem-tests/vercel-edge/src/uploadWebApiTestCases.ts @@ -1,5 +1,7 @@ import OpenAI, { toFile } from 'openai'; import { TranscriptionCreateParams } from 'openai/resources/audio/transcriptions'; +import { ChatCompletion } from 'openai/resources/chat/completions'; +import * as nf from 'node-fetch'; /** * Tests uploads using various Web API data objects. @@ -47,6 +49,65 @@ export function uploadWebApiTestCases({ await client.audio.transcriptions.create({ file: 'test', model: 'whisper-1' }); } + if (runtime === 'node') { + it(`raw response`, async function () { + const response = await client.chat.completions + .create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + }) + .asResponse(); + + // test that we can use node-fetch Response API + const chunks: string[] = []; + // we can't have both node and web response types in one project, + // but the tests will work at runtime because they will be in different + // enrivonments. So cast to any here + const { body } = response as any as nf.Response; + if (!body) throw new Error(`expected response.body to be defined`); + body.on('data', (chunk) => chunks.push(chunk)); + await new Promise((resolve, reject) => { + body.once('end', resolve); + body.once('error', reject); + }); + const json: ChatCompletion = JSON.parse(chunks.join('')); + expectSimilar(json.choices[0]?.message.content || '', 'This is a test', 10); + }); + } else { + it(`raw response`, async function () { + const response = await client.chat.completions + .create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + }) + .asResponse(); + + // test that we can use web Response API + const { body } = response; + if (!body) throw new Error('expected response.body to be defined'); + + const reader = body.getReader(); + const chunks: Uint8Array[] = []; + let result; + do { + result = await reader.read(); + if (!result.done) chunks.push(result.value); + } while (!result.done); + + reader.releaseLock(); + + let offset = 0; + const merged = new Uint8Array(chunks.reduce((total, chunk) => total + chunk.length, 0)); + for (const chunk of chunks) { + merged.set(chunk, offset); + offset += chunk.length; + } + + const json: ChatCompletion = JSON.parse(new TextDecoder().decode(merged)); + expectSimilar(json.choices[0]?.message.content || '', 'This is a test', 10); + }); + } + it(`streaming works`, async function () { const stream = await client.chat.completions.create({ model: 'gpt-4', @@ -83,7 +144,7 @@ export function uploadWebApiTestCases({ const fineTune = `{"prompt": "", "completion": ""}`; it('toFile handles string', async () => { - // @ts-expect-error we don't type support for `string` to avoid a footgun with passing the file path + // @ts-ignore this only doesn't error in vercel build... const file = await toFile(fineTune, 'finetune.jsonl'); const result = await client.files.create({ file, purpose: 'fine-tune' }); expectEqual(result.status, 'uploaded'); diff --git a/jest.config.js b/jest.config.js index 2f22a3d51..f304b9822 100644 --- a/jest.config.js +++ b/jest.config.js @@ -4,7 +4,7 @@ module.exports = { testEnvironment: 'node', moduleNameMapper: { '^openai$': '/src/index.ts', - '^openai/_shims/(.*)$': '/src/_shims/$1-node', + '^openai/_shims/auto/(.*)$': '/src/_shims/auto/$1-node', '^openai/(.*)$': '/src/$1', }, modulePathIgnorePatterns: ['/ecosystem-tests/', '/dist/', '/deno_tests/'], diff --git a/package.json b/package.json index 540b936a3..36bd588ac 100644 --- a/package.json +++ b/package.json @@ -9,76 +9,49 @@ "repository": "github:openai/openai-node", "license": "Apache-2.0", "private": false, + "sideEffects": [ + "./_shims/index.js", + "./_shims/index.mjs", + "./shims/node.js", + "./shims/node.mjs", + "./shims/web.js", + "./shims/web.mjs" + ], "exports": { - "./_shims/node-readable": { + "./_shims/auto/*": { "deno": { - "types": "./dist/_shims/node-readable.d.ts", - "require": "./dist/_shims/node-readable.js", - "default": "./dist/_shims/node-readable.mjs" + "types": "./dist/_shims/auto/*.d.ts", + "require": "./dist/_shims/auto/*.js", + "default": "./dist/_shims/auto/*.mjs" }, "bun": { - "types": "./dist/_shims/node-readable-node.d.ts", - "require": "./dist/_shims/node-readable-node.js", - "default": "./dist/_shims/node-readable-node.mjs" + "types": "./dist/_shims/auto/*.d.ts", + "require": "./dist/_shims/auto/*-bun.js", + "default": "./dist/_shims/auto/*-bun.mjs" }, "browser": { - "types": "./dist/_shims/node-readable.d.ts", - "require": "./dist/_shims/node-readable.js", - "default": "./dist/_shims/node-readable.mjs" + "types": "./dist/_shims/auto/*.d.ts", + "require": "./dist/_shims/auto/*.js", + "default": "./dist/_shims/auto/*.mjs" }, "worker": { - "types": "./dist/_shims/node-readable.d.ts", - "require": "./dist/_shims/node-readable.js", - "default": "./dist/_shims/node-readable.mjs" + "types": "./dist/_shims/auto/*.d.ts", + "require": "./dist/_shims/auto/*.js", + "default": "./dist/_shims/auto/*.mjs" }, "workerd": { - "types": "./dist/_shims/node-readable.d.ts", - "require": "./dist/_shims/node-readable.js", - "default": "./dist/_shims/node-readable.mjs" + "types": "./dist/_shims/auto/*.d.ts", + "require": "./dist/_shims/auto/*.js", + "default": "./dist/_shims/auto/*.mjs" }, "node": { - "types": "./dist/_shims/node-readable-node.d.ts", - "require": "./dist/_shims/node-readable-node.js", - "default": "./dist/_shims/node-readable-node.mjs" + "types": "./dist/_shims/auto/*-node.d.ts", + "require": "./dist/_shims/auto/*-node.js", + "default": "./dist/_shims/auto/*-node.mjs" }, - "types": "./dist/_shims/node-readable.d.ts", - "require": "./dist/_shims/node-readable.js", - "default": "./dist/_shims/node-readable.mjs" - }, - "./_shims/*": { - "deno": { - "types": "./dist/_shims/*.d.ts", - "require": "./dist/_shims/*.js", - "default": "./dist/_shims/*.mjs" - }, - "bun": { - "types": "./dist/_shims/*.d.ts", - "require": "./dist/_shims/*.js", - "default": "./dist/_shims/*.mjs" - }, - "browser": { - "types": "./dist/_shims/*.d.ts", - "require": "./dist/_shims/*.js", - "default": "./dist/_shims/*.mjs" - }, - "worker": { - "types": "./dist/_shims/*.d.ts", - "require": "./dist/_shims/*.js", - "default": "./dist/_shims/*.mjs" - }, - "workerd": { - "types": "./dist/_shims/*.d.ts", - "require": "./dist/_shims/*.js", - "default": "./dist/_shims/*.mjs" - }, - "node": { - "types": "./dist/_shims/*-node.d.ts", - "require": "./dist/_shims/*-node.js", - "default": "./dist/_shims/*-node.mjs" - }, - "types": "./dist/_shims/*.d.ts", - "require": "./dist/_shims/*.js", - "default": "./dist/_shims/*.mjs" + "types": "./dist/_shims/auto/*.d.ts", + "require": "./dist/_shims/auto/*.js", + "default": "./dist/_shims/auto/*.mjs" }, ".": { "require": { @@ -123,9 +96,9 @@ }, "devDependencies": { "@types/jest": "^29.4.0", - "@typescript-eslint/eslint-plugin": "^5.33.0", - "@typescript-eslint/parser": "^5.33.0", - "eslint": "^8.22.0", + "@typescript-eslint/eslint-plugin": "^6.7.0", + "@typescript-eslint/parser": "^6.7.0", + "eslint": "^8.49.0", "eslint-plugin-prettier": "^4.0.0", "eslint-plugin-unused-imports": "^2.0.0", "jest": "^29.4.0", @@ -134,7 +107,6 @@ "ts-jest": "^29.1.0", "ts-morph": "^19.0.0", "ts-node": "^10.5.0", - "tsc-alias": "^1.8.6", "tsc-multi": "^1.1.0", "tsconfig-paths": "^4.0.0", "typescript": "^4.8.2" diff --git a/release-please-config.json b/release-please-config.json index a497a8890..e5d1018e1 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -58,5 +58,7 @@ } ], "release-type": "node", - "extra-files": ["src/version.ts"] + "extra-files": [ + "src/version.ts" + ] } diff --git a/scripts/postprocess-files.cjs b/scripts/postprocess-files.cjs new file mode 100644 index 000000000..5379f9fa2 --- /dev/null +++ b/scripts/postprocess-files.cjs @@ -0,0 +1,160 @@ +const fs = require('fs'); +const path = require('path'); +const { parse } = require('@typescript-eslint/parser'); + +const distDir = path.resolve(__dirname, '..', 'dist'); +const distSrcDir = path.join(distDir, 'src'); + +/** + * Quick and dirty AST traversal + */ +function traverse(node, visitor) { + if (!node || typeof node.type !== 'string') return; + visitor.node?.(node); + visitor[node.type]?.(node); + for (const key in node) { + const value = node[key]; + if (Array.isArray(value)) { + for (const elem of value) traverse(elem, visitor); + } else if (value instanceof Object) { + traverse(value, visitor); + } + } +} + +/** + * Helper method for replacing arbitrary ranges of text in input code. + * + * The `replacer` is a function that will be called with a mini-api. For example: + * + * replaceRanges('foobar', ({ replace }) => replace([0, 3], 'baz')) // 'bazbar' + * + * The replaced ranges must not be overlapping. + */ +function replaceRanges(code, replacer) { + const replacements = []; + replacer({ replace: (range, replacement) => replacements.push({ range, replacement }) }); + + if (!replacements.length) return code; + replacements.sort((a, b) => a.range[0] - b.range[0]); + const overlapIndex = replacements.findIndex( + (r, index) => index > 0 && replacements[index - 1].range[1] > r.range[0], + ); + if (overlapIndex >= 0) { + throw new Error( + `replacements overlap: ${JSON.stringify(replacements[overlapIndex - 1])} and ${JSON.stringify( + replacements[overlapIndex], + )}`, + ); + } + + const parts = []; + let end = 0; + for (const { + range: [from, to], + replacement, + } of replacements) { + if (from > end) parts.push(code.substring(end, from)); + parts.push(replacement); + end = to; + } + if (end < code.length) parts.push(code.substring(end)); + return parts.join(''); +} + +/** + * Like calling .map(), where the iteratee is called on the path in every import or export from statement. + * @returns the transformed code + */ +function mapModulePaths(code, iteratee) { + const ast = parse(code, { range: true }); + return replaceRanges(code, ({ replace }) => + traverse(ast, { + node(node) { + switch (node.type) { + case 'ImportDeclaration': + case 'ExportNamedDeclaration': + case 'ExportAllDeclaration': + case 'ImportExpression': + if (node.source) { + const { range, value } = node.source; + const transformed = iteratee(value); + if (transformed !== value) { + replace(range, JSON.stringify(transformed)); + } + } + } + }, + }), + ); +} + +async function* walk(dir) { + for await (const d of await fs.promises.opendir(dir)) { + const entry = path.join(dir, d.name); + if (d.isDirectory()) yield* walk(entry); + else if (d.isFile()) yield entry; + } +} + +async function postprocess() { + for await (const file of walk(path.resolve(__dirname, '..', 'dist'))) { + if (!/\.([cm]?js|(\.d)?[cm]?ts)$/.test(file)) continue; + + const code = await fs.promises.readFile(file, 'utf8'); + + let transformed = mapModulePaths(code, (importPath) => { + if (file.startsWith(distSrcDir)) { + if (importPath.startsWith('openai/')) { + // convert self-references in dist/src to relative paths + let relativePath = path.relative( + path.dirname(file), + path.join(distSrcDir, importPath.substring('openai/'.length)), + ); + if (!relativePath.startsWith('.')) relativePath = `./${relativePath}`; + return relativePath; + } + return importPath; + } + if (importPath.startsWith('.')) { + // add explicit file extensions to relative imports + const { dir, name } = path.parse(importPath); + const ext = /\.mjs$/.test(file) ? '.mjs' : '.js'; + return `${dir}/${name}${ext}`; + } + return importPath; + }); + + if (file.startsWith(distSrcDir) && !file.endsWith('_shims/index.d.ts')) { + // strip out `unknown extends Foo ? never :` shim guards in dist/src + // to prevent errors from appearing in Go To Source + transformed = transformed.replace( + new RegExp('unknown extends (typeof )?\\S+ \\? \\S+ :\\s*'.replace(/\s+/, '\\s+'), 'gm'), + // replace with same number of characters to avoid breaking source maps + (match) => ' '.repeat(match.length), + ); + } + + if (file.endsWith('.d.ts')) { + // work around bad tsc behavior + // if we have `import { type Readable } from 'openai/_shims/index'`, + // tsc sometimes replaces `Readable` with `import("stream").Readable` inline + // in the output .d.ts + transformed = transformed.replace(/import\("stream"\).Readable/g, 'Readable'); + } + + // strip out lib="dom" and types="node" references; these are needed at build time, + // but would pollute the user's TS environment + transformed = transformed.replace( + /^ *\/\/\/ * ' '.repeat(match.length - 1) + '\n', + ); + + if (transformed !== code) { + await fs.promises.writeFile(file, transformed, 'utf8'); + console.error(`wrote ${path.relative(process.cwd(), file)}`); + } + } +} +postprocess(); diff --git a/scripts/remove-triple-slash-references.js b/scripts/remove-triple-slash-references.js deleted file mode 100644 index d47d45b73..000000000 --- a/scripts/remove-triple-slash-references.js +++ /dev/null @@ -1,11 +0,0 @@ -// strip out lib="dom" and types="node" references; these are needed at build time, -// but would pollute the user's TS environment -const fs = require('fs'); -for (const file of process.argv.slice(2)) { - const before = fs.readFileSync(file, 'utf8'); - const after = before.replace(/^ *\/\/\/ * { - if (!importPath.startsWith('openai/')) return match; - if (!file.startsWith(distSrcDir)) return match; - let relativePath = path.relative( - path.dirname(file), - path.join(distSrcDir, importPath.substring('openai/'.length)), - ); - if (!relativePath.startsWith('.')) relativePath = `./${relativePath}`; - return JSON.stringify(relativePath); - }); -} -exports.default = replaceSelfReferencingImports; diff --git a/scripts/replace-shim-guards.js b/scripts/replace-shim-guards.js deleted file mode 100644 index 17bd9fb5f..000000000 --- a/scripts/replace-shim-guards.js +++ /dev/null @@ -1,14 +0,0 @@ -// strip out `unknown extends RequestInit ? never :` from dist/src/_shims; -// these cause problems when viewing the .ts source files in go to definition -const fs = require('fs'); -for (const file of process.argv.slice(2)) { - const before = fs.readFileSync(file, 'utf8'); - const after = before.replace( - new RegExp('unknown extends (typeof )?\\S+ \\? \\S+ :\\s*'.replace(/\s+/, '\\s+'), 'gm'), - '', - ); - if (after !== before) { - fs.writeFileSync(file, after, 'utf8'); - console.error('wrote', file); - } -} diff --git a/scripts/resolve-full-paths.js b/scripts/resolve-full-paths.js deleted file mode 100644 index f8f979ad7..000000000 --- a/scripts/resolve-full-paths.js +++ /dev/null @@ -1,16 +0,0 @@ -'use strict'; -Object.defineProperty(exports, '__esModule', { value: true }); - -const path = require('path'); - -// tsc-alias --resolveFullPaths is buggy, it replaces 'formdata-node' -// with 'formdata-node.js' because we have a file with that name -function resolveFullPaths({ orig, file, config }) { - return orig.replace(/['"]([^"'\r\n]+)['"]/, (match, importPath) => { - if (!importPath.startsWith('.')) return match; - const { dir, name } = path.parse(importPath); - const ext = /\.mjs$/.test(file) ? '.mjs' : '.js'; - return JSON.stringify(`${dir}/${name}${ext}`); - }); -} -exports.default = resolveFullPaths; diff --git a/src/_shims/MultipartBody.ts b/src/_shims/MultipartBody.ts new file mode 100644 index 000000000..af3b11188 --- /dev/null +++ b/src/_shims/MultipartBody.ts @@ -0,0 +1,9 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ +export class MultipartBody { + constructor(public body: any) {} + get [Symbol.toStringTag](): string { + return 'MultipartBody'; + } +} diff --git a/src/_shims/README.md b/src/_shims/README.md new file mode 100644 index 000000000..b3a349b41 --- /dev/null +++ b/src/_shims/README.md @@ -0,0 +1,46 @@ +# 👋 Wondering what everything in here does? + +`openai` supports a wide variety of runtime environments like Node.js, Deno, Bun, browsers, and various +edge runtimes, as well as both CommonJS (CJS) and EcmaScript Modules (ESM). + +To do this, `openai` provides shims for either using `node-fetch` when in Node (because `fetch` is still experimental there) or the global `fetch` API built into the environment when not in Node. + +It uses [conditional exports](https://nodejs.org/api/packages.html#conditional-exports) to +automatically select the correct shims for each environment. However, conditional exports are a fairly new +feature and not supported everywhere. For instance, the TypeScript `"moduleResolution": "node"` + +setting doesn't consult the `exports` map, compared to `"moduleResolution": "nodeNext"`, which does. +Unfortunately that's still the default setting, and it can result in errors like +getting the wrong raw `Response` type from `.asResponse()`, for example. + +The user can work around these issues by manually importing one of: + +- `import 'openai/shims/node'` +- `import 'openai/shims/web'` + +All of the code here in `_shims` handles selecting the automatic default shims or manual overrides. + +### How it works - Runtime + +Runtime shims get installed by calling `setShims` exported by `openai/_shims/registry`. + +Manually importing `openai/shims/node` or `openai/shims/web`, calls `setShims` with the respective runtime shims. + +All client code imports shims from `openai/_shims/index`, which: + +- checks if shims have been set manually +- if not, calls `setShims` with the shims from `openai/_shims/auto/runtime` +- re-exports the installed shims from `openai/_shims/registry`. + +`openai/_shims/auto/runtime` exports web runtime shims. +If the `node` export condition is set, the export map replaces it with `openai/_shims/auto/runtime-node`. + +### How it works - Type time + +All client code imports shim types from `openai/_shims/index`, which selects the manual types from `openai/_shims/manual-types` if they have been declared, otherwise it exports the auto types from `openai/_shims/auto/types`. + +`openai/_shims/manual-types` exports an empty namespace. +Manually importing `openai/shims/node` or `openai/shims/web` merges declarations into this empty namespace, so they get picked up by `openai/_shims/index`. + +`openai/_shims/auto/types` exports web type definitions. +If the `node` export condition is set, the export map replaces it with `openai/_shims/auto/types-node`, though TS only picks this up if `"moduleResolution": "nodenext"` or `"moduleResolution": "bundler"`. diff --git a/src/_shims/ReadableStream.d.ts b/src/_shims/ReadableStream.d.ts deleted file mode 100644 index b21d01ce2..000000000 --- a/src/_shims/ReadableStream.d.ts +++ /dev/null @@ -1,38 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -/** - * >>> Confused? <<< - * - * If you're getting errors from these types, try adding "lib": ["DOM"] - * to your tsconfig.json, or otherwise configure the appropriate builtin - * `ReadableStream` type for your environment. - */ - -// @ts-ignore -type _ReadableStream = unknown extends ReadableStream ? never : ReadableStream; -declare const _ReadableStream: { - prototype: _ReadableStream; - new ( - underlyingSource: _UnderlyingByteSource, - strategy?: { highWaterMark?: number }, - ): _ReadableStream; - new ( - underlyingSource: _UnderlyingDefaultSource, - strategy?: _QueuingStrategy, - ): _ReadableStream; - new (underlyingSource?: _UnderlyingSource, strategy?: _QueuingStrategy): _ReadableStream; -}; - -// @ts-ignore -type _UnderlyingSource = unknown extends UnderlyingSource ? never : UnderlyingSource; -// @ts-ignore -type _UnderlyingByteSource = unknown extends UnderlyingByteSource ? never : UnderlyingByteSource; -type _UnderlyingDefaultSource = - // @ts-ignore - unknown extends UnderlyingDefaultSource ? never : UnderlyingDefaultSource; -// @ts-ignore -type _QueuingStrategy = unknown extends QueuingStrategy ? never : QueuingStrategy; - -export { _ReadableStream as ReadableStream }; diff --git a/src/_shims/ReadableStream.mjs b/src/_shims/ReadableStream.mjs deleted file mode 100644 index a484d65a7..000000000 --- a/src/_shims/ReadableStream.mjs +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -const _ReadableStream = ReadableStream; - -export { _ReadableStream as ReadableStream }; diff --git a/src/_shims/agent-node.ts b/src/_shims/agent-node.ts deleted file mode 100644 index 31f4d7c5f..000000000 --- a/src/_shims/agent-node.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -import KeepAliveAgent from 'agentkeepalive'; -import type { Agent } from 'node:http'; -import { AbortController as AbortControllerPolyfill } from 'abort-controller'; - -export type { Agent }; - -const defaultHttpAgent: Agent = new KeepAliveAgent({ keepAlive: true, timeout: 5 * 60 * 1000 }); -const defaultHttpsAgent: Agent = new KeepAliveAgent.HttpsAgent({ keepAlive: true, timeout: 5 * 60 * 1000 }); - -// Polyfill global object if needed. -if (typeof AbortController === 'undefined') { - AbortController = AbortControllerPolyfill as any as typeof AbortController; -} - -export const getDefaultAgent = (url: string): Agent | undefined => { - if (defaultHttpsAgent && url.startsWith('https')) return defaultHttpsAgent; - return defaultHttpAgent; -}; diff --git a/src/_shims/agent.ts b/src/_shims/agent.ts deleted file mode 100644 index 24e5bf7ca..000000000 --- a/src/_shims/agent.ts +++ /dev/null @@ -1,12 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - * - * This is a stub for non-node environments. - * In node environments, it gets replaced agent-node.ts by the package export map - */ - -export type Agent = any; - -export const getDefaultAgent = (url: string): any => { - return undefined; -}; diff --git a/src/_shims/ReadableStream.js b/src/_shims/auto/runtime-bun.ts similarity index 67% rename from src/_shims/ReadableStream.js rename to src/_shims/auto/runtime-bun.ts index 7c0dff176..e053254b3 100644 --- a/src/_shims/ReadableStream.js +++ b/src/_shims/auto/runtime-bun.ts @@ -1,5 +1,4 @@ /** * Disclaimer: modules in _shims aren't intended to be imported by SDK users. */ - -exports.ReadableStream = ReadableStream; +export * from '../bun-runtime'; diff --git a/src/_shims/ReadableStream-node.ts b/src/_shims/auto/runtime-deno.ts similarity index 50% rename from src/_shims/ReadableStream-node.ts rename to src/_shims/auto/runtime-deno.ts index adc525861..62b7a39ee 100644 --- a/src/_shims/ReadableStream-node.ts +++ b/src/_shims/auto/runtime-deno.ts @@ -1,6 +1,4 @@ /** * Disclaimer: modules in _shims aren't intended to be imported by SDK users. */ -import { ReadableStream } from 'web-streams-polyfill'; - -export { ReadableStream }; +export * from '../web-runtime'; diff --git a/src/_shims/auto/runtime-node.ts b/src/_shims/auto/runtime-node.ts new file mode 100644 index 000000000..0ae2216fe --- /dev/null +++ b/src/_shims/auto/runtime-node.ts @@ -0,0 +1,4 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ +export * from '../node-runtime'; diff --git a/src/_shims/auto/runtime.ts b/src/_shims/auto/runtime.ts new file mode 100644 index 000000000..62b7a39ee --- /dev/null +++ b/src/_shims/auto/runtime.ts @@ -0,0 +1,4 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ +export * from '../web-runtime'; diff --git a/src/_shims/auto/types-deno.ts b/src/_shims/auto/types-deno.ts new file mode 100644 index 000000000..226fb15a0 --- /dev/null +++ b/src/_shims/auto/types-deno.ts @@ -0,0 +1,4 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ +export * from '../web-types'; diff --git a/src/_shims/auto/types-node.ts b/src/_shims/auto/types-node.ts new file mode 100644 index 000000000..2625a8b70 --- /dev/null +++ b/src/_shims/auto/types-node.ts @@ -0,0 +1,4 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ +export * from '../node-types'; diff --git a/src/_shims/auto/types.d.ts b/src/_shims/auto/types.d.ts new file mode 100644 index 000000000..9c1cc2550 --- /dev/null +++ b/src/_shims/auto/types.d.ts @@ -0,0 +1,99 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ +export type Agent = any; + +// @ts-ignore +declare const _fetch: unknown extends typeof fetch ? never : typeof fetch; +export { _fetch as fetch }; + +// @ts-ignore +type _Request = unknown extends Request ? never : Request; +export { _Request as Request }; + +// @ts-ignore +type _RequestInfo = unknown extends RequestInfo ? never : RequestInfo; +export { type _RequestInfo as RequestInfo }; + +// @ts-ignore +type _RequestInit = unknown extends RequestInit ? never : RequestInit; +export { type _RequestInit as RequestInit }; + +// @ts-ignore +type _Response = unknown extends Response ? never : Response; +export { _Response as Response }; + +// @ts-ignore +type _ResponseInit = unknown extends ResponseInit ? never : ResponseInit; +export { type _ResponseInit as ResponseInit }; + +// @ts-ignore +type _ResponseType = unknown extends ResponseType ? never : ResponseType; +export { type _ResponseType as ResponseType }; + +// @ts-ignore +type _BodyInit = unknown extends BodyInit ? never : BodyInit; +export { type _BodyInit as BodyInit }; + +// @ts-ignore +type _Headers = unknown extends Headers ? never : Headers; +export { _Headers as Headers }; + +// @ts-ignore +type _HeadersInit = unknown extends HeadersInit ? never : HeadersInit; +export { type _HeadersInit as HeadersInit }; + +type EndingType = 'native' | 'transparent'; + +export interface BlobPropertyBag { + endings?: EndingType; + type?: string; +} + +export interface FilePropertyBag extends BlobPropertyBag { + lastModified?: number; +} + +export type FileFromPathOptions = Omit; + +// @ts-ignore +type _FormData = unknown extends FormData ? never : FormData; +// @ts-ignore +declare const _FormData: unknown extends typeof FormData ? never : typeof FormData; +export { _FormData as FormData }; + +// @ts-ignore +type _File = unknown extends File ? never : File; +// @ts-ignore +declare const _File: unknown extends typeof File ? never : typeof File; +export { _File as File }; + +// @ts-ignore +type _Blob = unknown extends Blob ? never : Blob; +// @ts-ignore +declare const _Blob: unknown extends typeof Blob ? never : typeof Blob; +export { _Blob as Blob }; + +export declare class Readable { + readable: boolean; + readonly readableEnded: boolean; + readonly readableFlowing: boolean | null; + readonly readableHighWaterMark: number; + readonly readableLength: number; + readonly readableObjectMode: boolean; + destroyed: boolean; + read(size?: number): any; + pause(): this; + resume(): this; + isPaused(): boolean; + destroy(error?: Error): this; + [Symbol.asyncIterator](): AsyncIterableIterator; +} + +export declare class FsReadStream extends Readable { + path: {}; // node type is string | Buffer +} + +// @ts-ignore +type _ReadableStream = unknown extends ReadableStream ? never : ReadableStream; +export { type _ReadableStream as ReadableStream }; diff --git a/src/_shims/auto/types.js b/src/_shims/auto/types.js new file mode 100644 index 000000000..ddbdb799c --- /dev/null +++ b/src/_shims/auto/types.js @@ -0,0 +1,3 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ diff --git a/src/_shims/auto/types.mjs b/src/_shims/auto/types.mjs new file mode 100644 index 000000000..ddbdb799c --- /dev/null +++ b/src/_shims/auto/types.mjs @@ -0,0 +1,3 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ diff --git a/src/_shims/bun-runtime.ts b/src/_shims/bun-runtime.ts new file mode 100644 index 000000000..8d5aaab0c --- /dev/null +++ b/src/_shims/bun-runtime.ts @@ -0,0 +1,14 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ +import { type Shims } from './registry'; +import { getRuntime as getWebRuntime } from './web-runtime'; +import { ReadStream as FsReadStream } from 'node:fs'; + +export function getRuntime(): Shims { + const runtime = getWebRuntime(); + function isFsReadStream(value: any): value is FsReadStream { + return value instanceof FsReadStream; + } + return { ...runtime, isFsReadStream }; +} diff --git a/src/_shims/fetch-deno.ts b/src/_shims/fetch-deno.ts deleted file mode 100644 index c7ef4ffc7..000000000 --- a/src/_shims/fetch-deno.ts +++ /dev/null @@ -1,27 +0,0 @@ -const _fetch = fetch; -type _fetch = typeof fetch; -const _Request = Request; -type _Request = Request; -type _RequestInfo = RequestInfo; -type _RequestInit = RequestInit; -const _Response = Response; -type _Response = Response; -type _ResponseInit = ResponseInit; -type _BodyInit = BodyInit; -const _Headers = Headers; -type _Headers = Headers; -type _HeadersInit = HeadersInit; - -export const isPolyfilled = false; - -export { - _fetch as fetch, - _Request as Request, - type _RequestInfo as RequestInfo, - type _RequestInit as RequestInit, - _Response as Response, - type _ResponseInit as ResponseInit, - type _BodyInit as BodyInit, - _Headers as Headers, - type _HeadersInit as HeadersInit, -}; diff --git a/src/_shims/fetch-node.d.ts b/src/_shims/fetch-node.d.ts deleted file mode 100644 index 006f00da4..000000000 --- a/src/_shims/fetch-node.d.ts +++ /dev/null @@ -1,64 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -import * as nf from 'node-fetch'; - -// Use builtin web types if present; else node-fetch types - -/** - * >>> Confused? <<< - * - * If you're getting errors from these types, try adding "lib": ["DOM"] - * to your tsconfig.json, or otherwise configure the appropriate builtin - * `fetch` types for your environment. - */ - -// @ts-ignore -type _fetch = unknown extends typeof fetch ? typeof nf.default : typeof fetch; -// @ts-ignore -type _Request = unknown extends Request ? nf.Request : Request; -// @ts-ignore -type _RequestInfo = unknown extends RequestInfo ? nf.RequestInfo : RequestInfo; -// @ts-ignore -type _RequestInit = unknown extends RequestInit ? nf.RequestInit : RequestInit; -// @ts-ignore -type _Response = unknown extends Response ? nf.Response : Response; -// @ts-ignore -type _ResponseInit = unknown extends ResponseInit ? nf.ResponseInit : ResponseInit; -type _ResponseType = - // @ts-ignore - unknown extends ResponseType ? 'basic' | 'cors' | 'default' | 'error' | 'opaque' | 'opaqueredirect' - : // @ts-ignore - ResponseType; -// @ts-ignore -type _BodyInit = unknown extends BodyInit ? nf.BodyInit : BodyInit; -// @ts-ignore -type _Headers = unknown extends Headers ? nf.Headers : Headers; -// @ts-ignore -type _HeadersInit = unknown extends HeadersInit ? nf.HeadersInit : HeadersInit; - -declare const _fetch: _fetch; -declare const _Request: { - prototype: _Request; - new (input: _RequestInfo | URL, init?: _RequestInit): _Request; -}; -declare const _Response: { - prototype: _Response; - new (body?: _BodyInit | null, init?: _ResponseInit): _Response; -}; -declare const _Headers: { - prototype: _Headers; - new (init?: _HeadersInit): _Headers; -}; - -export const isPolyfilled = false; - -export { _fetch as fetch, _Request as Request, _Response as Response, _Headers as Headers }; -export type { - _RequestInit as RequestInit, - _RequestInfo as RequestInfo, - _ResponseType as ResponseType, - _BodyInit as BodyInit, - _HeadersInit as HeadersInit, -}; diff --git a/src/_shims/fetch-node.js b/src/_shims/fetch-node.js deleted file mode 100644 index 15f8f8abf..000000000 --- a/src/_shims/fetch-node.js +++ /dev/null @@ -1,12 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -const nf = require('node-fetch'); - -exports.fetch = nf.default; -exports.Request = nf.Request; -exports.Response = nf.Response; -exports.Headers = nf.Headers; - -exports.isPolyfilled = true; diff --git a/src/_shims/fetch-node.mjs b/src/_shims/fetch-node.mjs deleted file mode 100644 index d8543dcac..000000000 --- a/src/_shims/fetch-node.mjs +++ /dev/null @@ -1,14 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -import * as nf from 'node-fetch'; - -const _fetch = nf.default; -const _Request = nf.Request; -const _Response = nf.Response; -const _Headers = nf.Headers; - -export { _fetch as fetch, _Request as Request, _Response as Response, _Headers as Headers }; - -export const isPolyfilled = true; diff --git a/src/_shims/fetch.d.ts b/src/_shims/fetch.d.ts deleted file mode 100644 index 772a6d987..000000000 --- a/src/_shims/fetch.d.ts +++ /dev/null @@ -1,60 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -// Use builtin web types if present; else never (user should -// add appropriate lib or types to tsconfig) - -/** - * >>> Confused? <<< - * - * If you're getting errors from these types, try adding "lib": ["DOM"] - * to your tsconfig.json, or otherwise configure the appropriate builtin - * `fetch` types for your environment. - */ - -// @ts-ignore -type _fetch = unknown extends typeof fetch ? never : typeof fetch; -// @ts-ignore -type _Request = unknown extends Request ? never : Request; -// @ts-ignore -type _RequestInfo = unknown extends RequestInfo ? never : RequestInfo; -// @ts-ignore -type _RequestInit = unknown extends RequestInit ? never : RequestInit; -// @ts-ignore -type _Response = unknown extends Response ? never : Response; -// @ts-ignore -type _ResponseInit = unknown extends ResponseInit ? never : ResponseInit; -// @ts-ignore -type _ResponseType = unknown extends ResponseType ? never : ResponseType; -// @ts-ignore -type _BodyInit = unknown extends BodyInit ? never : BodyInit; -// @ts-ignore -type _Headers = unknown extends Headers ? never : Headers; -// @ts-ignore -type _HeadersInit = unknown extends HeadersInit ? never : HeadersInit; - -declare const _fetch: _fetch; -declare const _Request: { - prototype: _Request; - new (input: _RequestInfo | URL, init?: _RequestInit): _Request; -}; -declare const _Response: { - prototype: _Response; - new (body?: _BodyInit | null, init?: _ResponseInit): _Response; -}; -declare const _Headers: { - prototype: _Headers; - new (init?: _HeadersInit): _Headers; -}; - -export const isPolyfilled = false; - -export { _fetch as fetch, _Request as Request, _Response as Response, _Headers as Headers }; -export type { - _RequestInit as RequestInit, - _RequestInfo as RequestInfo, - _ResponseType as ResponseType, - _BodyInit as BodyInit, - _HeadersInit as HeadersInit, -}; diff --git a/src/_shims/fetch.js b/src/_shims/fetch.js deleted file mode 100644 index 3c3821fdd..000000000 --- a/src/_shims/fetch.js +++ /dev/null @@ -1,13 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -// If we accidentally call fetch with the wrong this binding, -// in the browser it would throw: -// TypeError: Failed to execute 'fetch' on 'Window': Illegal invocation -exports.fetch = fetch.bind(undefined); -exports.Request = Request; -exports.Response = Response; -exports.Headers = Headers; - -exports.isPolyfilled = false; diff --git a/src/_shims/fetch.mjs b/src/_shims/fetch.mjs deleted file mode 100644 index 6d539fbab..000000000 --- a/src/_shims/fetch.mjs +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -// If we accidentally call fetch with the wrong this binding, -// in the browser it would throw: -// TypeError: Failed to execute 'fetch' on 'Window': Illegal invocation -const _fetch = fetch.bind(undefined); -const _Request = Request; -const _Response = Response; -const _Headers = Headers; - -export const isPolyfilled = false; - -export { _fetch as fetch, _Request as Request, _Response as Response, _Headers as Headers }; diff --git a/src/_shims/fileFromPath-node.ts b/src/_shims/fileFromPath-node.ts deleted file mode 100644 index 065fd7ecb..000000000 --- a/src/_shims/fileFromPath-node.ts +++ /dev/null @@ -1,29 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -import { fileFromPath as _fileFromPath } from 'formdata-node/file-from-path'; -import type { File, FilePropertyBag } from './form-data-node'; - -export type FileFromPathOptions = Omit; - -let warned = false; - -/** - * @deprecated use fs.createReadStream('./my/file.txt') instead - */ -export async function fileFromPath(path: string): Promise; -export async function fileFromPath(path: string, filename?: string): Promise; -export async function fileFromPath(path: string, options?: FileFromPathOptions): Promise; -export async function fileFromPath( - path: string, - filename?: string, - options?: FileFromPathOptions, -): Promise; -export async function fileFromPath(path: string, ...args: any[]): Promise { - if (!warned) { - console.warn(`fileFromPath is deprecated; use fs.createReadStream(${JSON.stringify(path)}) instead`); - warned = true; - } - return await _fileFromPath(path, ...args); -} diff --git a/src/_shims/fileFromPath.ts b/src/_shims/fileFromPath.ts deleted file mode 100644 index 4e7c4c001..000000000 --- a/src/_shims/fileFromPath.ts +++ /dev/null @@ -1,29 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - * - * This is a stub that gets replaced by fileFromPath-node.js for node environments - * in the package export map - */ - -import type { FilePropertyBag, File } from './form-data'; - -export type FileFromPathOptions = Omit; - -/** - * This is a stub for non-node environments that just throws an error. - * In node environments, this module will be replaced by util/node/fileFromPath by the - * package import map. - */ -export async function fileFromPath(path: string): Promise; -export async function fileFromPath(path: string, filename?: string): Promise; -export async function fileFromPath(path: string, options?: FileFromPathOptions): Promise; -export async function fileFromPath( - path: string, - filename?: string, - options?: FileFromPathOptions, -): Promise; -export async function fileFromPath(): Promise { - throw new Error( - 'The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/openai/openai-node#file-uploads', - ); -} diff --git a/src/_shims/form-data-deno.ts b/src/_shims/form-data-deno.ts deleted file mode 100644 index ec0349eba..000000000 --- a/src/_shims/form-data-deno.ts +++ /dev/null @@ -1,19 +0,0 @@ -type _BlobPropertyBag = BlobPropertyBag; -type _FilePropertyBag = FilePropertyBag; - -const _FormData = FormData; -type _FormData = FormData; -const _File = File; -type _File = File; -const _Blob = Blob; -type _Blob = Blob; - -export const isPolyfilled = false; - -export { - _FormData as FormData, - _File as File, - _Blob as Blob, - type _BlobPropertyBag as BlobPropertyBag, - type _FilePropertyBag as FilePropertyBag, -}; diff --git a/src/_shims/form-data-node.d.ts b/src/_shims/form-data-node.d.ts deleted file mode 100644 index 30eceea80..000000000 --- a/src/_shims/form-data-node.d.ts +++ /dev/null @@ -1,45 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -import * as fd from 'formdata-node'; - -import type { BlobPart } from '../uploads'; - -type EndingType = 'native' | 'transparent'; - -export interface BlobPropertyBag { - endings?: EndingType; - /** MIME type, e.g., "text/plain" */ - type?: string; -} - -export interface FilePropertyBag extends BlobPropertyBag { - lastModified?: number; -} - -// Use builtin web types if present; else formdata-node types - -// @ts-ignore -type _FormData = unknown extends FormData ? fd.FormData : FormData; -// @ts-ignore -type _File = unknown extends File ? fd.File : File; -// @ts-ignore -type _Blob = unknown extends Blob ? fd.Blob : Blob; - -declare const _FormData: { - new (form?: any): _FormData; - prototype: _FormData; -}; -declare const _File: { - new (fileBits: BlobPart[], fileName: string, options?: FilePropertyBag | undefined): _File; - prototype: _File; -}; -declare const _Blob: { - new (blobParts?: BlobPart[] | undefined, options?: BlobPropertyBag | undefined): _Blob; - prototype: _Blob; -}; - -export const isPolyfilled = false; - -export { _FormData as FormData, _File as File, _Blob as Blob }; diff --git a/src/_shims/form-data-node.js b/src/_shims/form-data-node.js deleted file mode 100644 index 892aba543..000000000 --- a/src/_shims/form-data-node.js +++ /dev/null @@ -1,11 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -const fd = require('formdata-node'); - -exports.FormData = fd.FormData; -exports.File = fd.File; -exports.Blob = fd.Blob; - -exports.isPolyfilled = true; diff --git a/src/_shims/form-data-node.mjs b/src/_shims/form-data-node.mjs deleted file mode 100644 index b35ac4dac..000000000 --- a/src/_shims/form-data-node.mjs +++ /dev/null @@ -1,9 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -import { FormData, File, Blob } from 'formdata-node'; - -export { FormData, File, Blob }; - -export const isPolyfilled = true; diff --git a/src/_shims/form-data.d.ts b/src/_shims/form-data.d.ts deleted file mode 100644 index 0fb24cc44..000000000 --- a/src/_shims/form-data.d.ts +++ /dev/null @@ -1,43 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -import type { BlobPart } from '../uploads'; - -type EndingType = 'native' | 'transparent'; - -export interface BlobPropertyBag { - endings?: EndingType; - type?: string; -} - -export interface FilePropertyBag extends BlobPropertyBag { - lastModified?: number; -} - -// Use builtin web types if present; else never (user should -// add appropriate lib or types to tsconfig) - -// @ts-ignore -type _FormData = unknown extends FormData ? never : FormData; -// @ts-ignore -type _File = unknown extends File ? never : File; -// @ts-ignore -type _Blob = unknown extends Blob ? never : Blob; - -declare const _FormData: { - new (form?: any): _FormData; - prototype: _FormData; -}; -declare const _File: { - new (fileBits: BlobPart[], fileName: string, options?: FilePropertyBag | undefined): _File; - prototype: _File; -}; -declare const _Blob: { - new (blobParts?: BlobPart[] | undefined, options?: BlobPropertyBag | undefined): _Blob; - prototype: _Blob; -}; - -export const isPolyfilled = false; - -export { _FormData as FormData, _File as File, _Blob as Blob }; diff --git a/src/_shims/form-data.js b/src/_shims/form-data.js deleted file mode 100644 index 8cbe41c4c..000000000 --- a/src/_shims/form-data.js +++ /dev/null @@ -1,17 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -exports.FormData = FormData; -exports.Blob = Blob; -exports.File = - typeof File !== 'undefined' ? File : ( - // Bun doesn't implement File yet, so just make a shim that throws a helpful error message - class File extends Blob { - constructor() { - throw new Error(`file uploads aren't supported in this environment yet as 'File' is not defined`); - } - } - ); - -exports.isPolyfilled = false; diff --git a/src/_shims/form-data.mjs b/src/_shims/form-data.mjs deleted file mode 100644 index 3ee740bdf..000000000 --- a/src/_shims/form-data.mjs +++ /dev/null @@ -1,20 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -const _FormData = FormData; -const _Blob = Blob; - -const _File = - typeof File !== 'undefined' ? File : ( - // Bun doesn't implement File yet, so just make a shim that throws a helpful error message - class File extends Blob { - constructor() { - throw new Error(`file uploads aren't supported in this environment yet as 'File' is not defined`); - } - } - ); - -export { _FormData as FormData, _File as File, _Blob as Blob }; - -export const isPolyfilled = false; diff --git a/src/_shims/getMultipartRequestOptions-node.ts b/src/_shims/getMultipartRequestOptions-node.ts deleted file mode 100644 index ac13a0756..000000000 --- a/src/_shims/getMultipartRequestOptions-node.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -import { FormData } from './form-data-node'; -import type { RequestOptions } from '../core'; -import { Readable } from 'node:stream'; -import { FormDataEncoder } from 'form-data-encoder'; -import { MultipartBody } from '../uploads'; - -export async function getMultipartRequestOptions>( - form: FormData, - opts: RequestOptions, -): Promise> { - const encoder = new FormDataEncoder(form); - const readable = Readable.from(encoder); - const body = new MultipartBody(readable); - const headers = { - ...opts.headers, - ...encoder.headers, - 'Content-Length': encoder.contentLength, - }; - - return { ...opts, body: body as any, headers }; -} diff --git a/src/_shims/getMultipartRequestOptions.ts b/src/_shims/getMultipartRequestOptions.ts deleted file mode 100644 index f74227d0b..000000000 --- a/src/_shims/getMultipartRequestOptions.ts +++ /dev/null @@ -1,14 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -import { FormData } from './form-data'; -import type { RequestOptions } from '../core'; -import { MultipartBody } from '../uploads'; - -export async function getMultipartRequestOptions>( - form: FormData, - opts: RequestOptions, -): Promise> { - return { ...opts, body: new MultipartBody(form) as any }; -} diff --git a/src/_shims/index-deno.ts b/src/_shims/index-deno.ts new file mode 100644 index 000000000..b838e5f22 --- /dev/null +++ b/src/_shims/index-deno.ts @@ -0,0 +1,110 @@ +import { MultipartBody } from './MultipartBody'; +import { type RequestOptions } from '../core'; + +export const kind: string = 'web'; + +export type Agent = any; + +const _fetch = fetch; +type _fetch = typeof fetch; +export { _fetch as fetch }; + +const _Request = Request; +type _Request = Request; +export { _Request as Request }; + +type _RequestInfo = RequestInfo; +export { type _RequestInfo as RequestInfo }; + +type _RequestInit = RequestInit; +export { type _RequestInit as RequestInit }; + +const _Response = Response; +type _Response = Response; +export { _Response as Response }; + +type _ResponseInit = ResponseInit; +export { type _ResponseInit as ResponseInit }; + +type _ResponseType = ResponseType; +export { type _ResponseType as ResponseType }; + +type _BodyInit = BodyInit; +export { type _BodyInit as BodyInit }; + +const _Headers = Headers; +type _Headers = Headers; +export { _Headers as Headers }; + +type _HeadersInit = HeadersInit; +export { type _HeadersInit as HeadersInit }; + +type EndingType = 'native' | 'transparent'; + +export interface BlobPropertyBag { + endings?: EndingType; + type?: string; +} + +export interface FilePropertyBag extends BlobPropertyBag { + lastModified?: number; +} + +export type FileFromPathOptions = Omit; + +const _FormData = FormData; +type _FormData = FormData; +export { _FormData as FormData }; + +const _File = File; +type _File = File; +export { _File as File }; + +const _Blob = Blob; +type _Blob = Blob; +export { _Blob as Blob }; + +export async function getMultipartRequestOptions>( + form: FormData, + opts: RequestOptions, +): Promise> { + return { + ...opts, + body: new MultipartBody(form) as any, + }; +} + +export function getDefaultAgent(url: string) { + return undefined; +} +export function fileFromPath() { + throw new Error( + 'The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/openai/openai-node#file-uploads', + ); +} + +export const isFsReadStream = (value: any) => false; + +export declare class Readable { + readable: boolean; + readonly readableEnded: boolean; + readonly readableFlowing: boolean | null; + readonly readableHighWaterMark: number; + readonly readableLength: number; + readonly readableObjectMode: boolean; + destroyed: boolean; + read(size?: number): any; + pause(): this; + resume(): this; + isPaused(): boolean; + destroy(error?: Error): this; + [Symbol.asyncIterator](): AsyncIterableIterator; +} + +export declare class FsReadStream extends Readable { + path: {}; // node type is string | Buffer +} + +const _ReadableStream = ReadableStream; +type _ReadableStream = ReadableStream; +export { _ReadableStream as ReadableStream }; diff --git a/src/_shims/index.d.ts b/src/_shims/index.d.ts new file mode 100644 index 000000000..044f2cfcf --- /dev/null +++ b/src/_shims/index.d.ts @@ -0,0 +1,79 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ +import { manual } from './manual-types'; +import * as auto from 'openai/_shims/auto/types'; +import { type RequestOptions } from '../core'; + +type SelectType = unknown extends Manual ? Auto : Manual; + +export const kind: string; + +// @ts-ignore +export type Agent = SelectType; + +// @ts-ignore +export const fetch: SelectType; + +// @ts-ignore +export type Request = SelectType; +// @ts-ignore +export type RequestInfo = SelectType; +// @ts-ignore +export type RequestInit = SelectType; + +// @ts-ignore +export type Response = SelectType; +// @ts-ignore +export type ResponseInit = SelectType; +// @ts-ignore +export type ResponseType = SelectType; +// @ts-ignore +export type BodyInit = SelectType; +// @ts-ignore +export type Headers = SelectType; +// @ts-ignore +export const Headers: SelectType; +// @ts-ignore +export type HeadersInit = SelectType; + +// @ts-ignore +export type BlobPropertyBag = SelectType; +// @ts-ignore +export type FilePropertyBag = SelectType; +// @ts-ignore +export type FileFromPathOptions = SelectType; +// @ts-ignore +export type FormData = SelectType; +// @ts-ignore +export const FormData: SelectType; +// @ts-ignore +export type File = SelectType; +// @ts-ignore +export const File: SelectType; +// @ts-ignore +export type Blob = SelectType; +// @ts-ignore +export const Blob: SelectType; + +// @ts-ignore +export type Readable = SelectType; +// @ts-ignore +export type FsReadStream = SelectType; +// @ts-ignore +export type ReadableStream = SelectType; + +export function getMultipartRequestOptions>( + form: FormData, + opts: RequestOptions, +): Promise>; + +export function getDefaultAgent(url: string): any; + +// @ts-ignore +export type FileFromPathOptions = SelectType; + +export function fileFromPath(path: string, options?: FileFromPathOptions): Promise; +export function fileFromPath(path: string, filename?: string, options?: FileFromPathOptions): Promise; + +export function isFsReadStream(value: any): value is FsReadStream; diff --git a/src/_shims/index.js b/src/_shims/index.js new file mode 100644 index 000000000..b5fc8229e --- /dev/null +++ b/src/_shims/index.js @@ -0,0 +1,13 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ +const shims = require('./registry'); +const auto = require('openai/_shims/auto/runtime'); +if (!shims.kind) shims.setShims(auto.getRuntime(), { auto: true }); +for (const property of Object.keys(shims)) { + Object.defineProperty(exports, property, { + get() { + return shims[property]; + }, + }); +} diff --git a/src/_shims/index.mjs b/src/_shims/index.mjs new file mode 100644 index 000000000..81665e610 --- /dev/null +++ b/src/_shims/index.mjs @@ -0,0 +1,7 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ +import * as shims from './registry.mjs'; +import * as auto from 'openai/_shims/auto/runtime'; +if (!shims.kind) shims.setShims(auto.getRuntime(), { auto: true }); +export * from './registry.mjs'; diff --git a/src/_shims/manual-types.d.ts b/src/_shims/manual-types.d.ts new file mode 100644 index 000000000..3d00fc243 --- /dev/null +++ b/src/_shims/manual-types.d.ts @@ -0,0 +1,12 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ +/** + * Types will get added to this namespace when you import one of the following: + * + * import 'openai/shims/node' + * import 'openai/shims/web' + * + * Importing more than one will cause type and runtime errors. + */ +export namespace manual {} diff --git a/src/_shims/manual-types.js b/src/_shims/manual-types.js new file mode 100644 index 000000000..ddbdb799c --- /dev/null +++ b/src/_shims/manual-types.js @@ -0,0 +1,3 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ diff --git a/src/_shims/manual-types.mjs b/src/_shims/manual-types.mjs new file mode 100644 index 000000000..ddbdb799c --- /dev/null +++ b/src/_shims/manual-types.mjs @@ -0,0 +1,3 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ diff --git a/src/_shims/node-readable-node.ts b/src/_shims/node-readable-node.ts deleted file mode 100644 index 0355aa1e1..000000000 --- a/src/_shims/node-readable-node.ts +++ /dev/null @@ -1,10 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ -export type { Readable } from 'node:stream'; -import { ReadStream as FsReadStream } from 'node:fs'; -export type { FsReadStream }; - -export function isFsReadStream(value: any): value is FsReadStream { - return value instanceof FsReadStream; -} diff --git a/src/_shims/node-readable.ts b/src/_shims/node-readable.ts deleted file mode 100644 index fc3f2f554..000000000 --- a/src/_shims/node-readable.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * Disclaimer: modules in _shims aren't intended to be imported by SDK users. - */ - -// shim these Node types to avoid importing @types/node and polluting the user's -// type environment in non-node projects - -export declare class Readable { - readable: boolean; - readonly readableEnded: boolean; - readonly readableFlowing: boolean | null; - readonly readableHighWaterMark: number; - readonly readableLength: number; - readonly readableObjectMode: boolean; - destroyed: boolean; - read(size?: number): any; - pause(): this; - resume(): this; - isPaused(): boolean; - destroy(error?: Error): this; - [Symbol.asyncIterator](): AsyncIterableIterator; -} - -export declare class FsReadStream extends Readable { - path: {}; // node type is string | Buffer -} - -export function isFsReadStream(value: any): value is FsReadStream { - return false; -} diff --git a/src/_shims/node-runtime.ts b/src/_shims/node-runtime.ts new file mode 100644 index 000000000..2e5ab5631 --- /dev/null +++ b/src/_shims/node-runtime.ts @@ -0,0 +1,79 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ +import * as nf from 'node-fetch'; +import * as fd from 'formdata-node'; +import { type File, type FilePropertyBag } from 'formdata-node'; +import KeepAliveAgent from 'agentkeepalive'; +import { AbortController as AbortControllerPolyfill } from 'abort-controller'; +import { ReadStream as FsReadStream } from 'node:fs'; +import { type Agent } from 'node:http'; +import { FormDataEncoder } from 'form-data-encoder'; +import { Readable } from 'node:stream'; +import { type RequestOptions } from '../core'; +import { MultipartBody } from './MultipartBody'; +import { type Shims } from './registry'; + +type FileFromPathOptions = Omit; + +let fileFromPathWarned = false; + +/** + * @deprecated use fs.createReadStream('./my/file.txt') instead + */ +async function fileFromPath(path: string): Promise; +async function fileFromPath(path: string, filename?: string): Promise; +async function fileFromPath(path: string, options?: FileFromPathOptions): Promise; +async function fileFromPath(path: string, filename?: string, options?: FileFromPathOptions): Promise; +async function fileFromPath(path: string, ...args: any[]): Promise { + // this import fails in environments that don't handle export maps correctly, like old versions of Jest + const { fileFromPath: _fileFromPath } = await import('formdata-node/file-from-path'); + + if (!fileFromPathWarned) { + console.warn(`fileFromPath is deprecated; use fs.createReadStream(${JSON.stringify(path)}) instead`); + fileFromPathWarned = true; + } + // @ts-ignore + return await _fileFromPath(path, ...args); +} + +const defaultHttpAgent: Agent = new KeepAliveAgent({ keepAlive: true, timeout: 5 * 60 * 1000 }); +const defaultHttpsAgent: Agent = new KeepAliveAgent.HttpsAgent({ keepAlive: true, timeout: 5 * 60 * 1000 }); + +async function getMultipartRequestOptions>( + form: fd.FormData, + opts: RequestOptions, +): Promise> { + const encoder = new FormDataEncoder(form); + const readable = Readable.from(encoder); + const body = new MultipartBody(readable); + const headers = { + ...opts.headers, + ...encoder.headers, + 'Content-Length': encoder.contentLength, + }; + + return { ...opts, body: body as any, headers }; +} + +export function getRuntime(): Shims { + // Polyfill global object if needed. + if (typeof AbortController === 'undefined') { + // @ts-ignore + AbortController = AbortControllerPolyfill; + } + return { + kind: 'node', + fetch: nf.default, + Request: nf.Request, + Response: nf.Response, + Headers: nf.Headers, + FormData: fd.FormData, + Blob: fd.Blob, + File: fd.File, + getMultipartRequestOptions, + getDefaultAgent: (url: string): Agent => (url.startsWith('https') ? defaultHttpsAgent : defaultHttpAgent), + fileFromPath, + isFsReadStream: (value: any): value is FsReadStream => value instanceof FsReadStream, + }; +} diff --git a/src/_shims/node-types.d.ts b/src/_shims/node-types.d.ts new file mode 100644 index 000000000..28fe60499 --- /dev/null +++ b/src/_shims/node-types.d.ts @@ -0,0 +1,42 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ +import * as nf from 'node-fetch'; +import * as fd from 'formdata-node'; + +export { type Agent } from 'node:http'; +export { type Readable } from 'node:stream'; +export { type ReadStream as FsReadStream } from 'node:fs'; +export { type ReadableStream } from 'web-streams-polyfill'; + +export const fetch: typeof nf.default; + +export type Request = nf.Request; +export type RequestInfo = nf.RequestInfo; +export type RequestInit = nf.RequestInit; + +export type Response = nf.Response; +export type ResponseInit = nf.ResponseInit; +export type ResponseType = nf.ResponseType; +export type BodyInit = nf.BodyInit; +export type Headers = nf.Headers; +export type HeadersInit = nf.HeadersInit; + +type EndingType = 'native' | 'transparent'; +export interface BlobPropertyBag { + endings?: EndingType; + type?: string; +} + +export interface FilePropertyBag extends BlobPropertyBag { + lastModified?: number; +} + +export type FileFromPathOptions = Omit; + +export type FormData = fd.FormData; +export const FormData: typeof fd.FormData; +export type File = fd.File; +export const File: typeof fd.File; +export type Blob = fd.Blob; +export const Blob: typeof fd.Blob; diff --git a/src/_shims/node-types.js b/src/_shims/node-types.js new file mode 100644 index 000000000..ddbdb799c --- /dev/null +++ b/src/_shims/node-types.js @@ -0,0 +1,3 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ diff --git a/src/_shims/node-types.mjs b/src/_shims/node-types.mjs new file mode 100644 index 000000000..ddbdb799c --- /dev/null +++ b/src/_shims/node-types.mjs @@ -0,0 +1,3 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ diff --git a/src/_shims/registry.ts b/src/_shims/registry.ts new file mode 100644 index 000000000..0e0706877 --- /dev/null +++ b/src/_shims/registry.ts @@ -0,0 +1,62 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ +import { type RequestOptions } from '../core'; + +export interface Shims { + kind: string; + fetch: any; + Request: any; + Response: any; + Headers: any; + FormData: any; + Blob: any; + File: any; + getMultipartRequestOptions: >( + form: Shims['FormData'], + opts: RequestOptions, + ) => Promise>; + getDefaultAgent: (url: string) => any; + fileFromPath: + | ((path: string, filename?: string, options?: {}) => Promise) + | ((path: string, options?: {}) => Promise); + isFsReadStream: (value: any) => boolean; +} + +export let auto = false; +export let kind: Shims['kind'] | undefined = undefined; +export let fetch: Shims['fetch'] | undefined = undefined; +export let Request: Shims['Request'] | undefined = undefined; +export let Response: Shims['Response'] | undefined = undefined; +export let Headers: Shims['Headers'] | undefined = undefined; +export let FormData: Shims['FormData'] | undefined = undefined; +export let Blob: Shims['Blob'] | undefined = undefined; +export let File: Shims['File'] | undefined = undefined; +export let getMultipartRequestOptions: Shims['getMultipartRequestOptions'] | undefined = undefined; +export let getDefaultAgent: Shims['getDefaultAgent'] | undefined = undefined; +export let fileFromPath: Shims['fileFromPath'] | undefined = undefined; +export let isFsReadStream: Shims['isFsReadStream'] | undefined = undefined; + +export function setShims(shims: Shims, options: { auto: boolean } = { auto: false }) { + if (auto) { + throw new Error( + `you must \`import 'openai/shims/${shims.kind}'\` before importing anything else from openai`, + ); + } + if (kind) { + throw new Error(`can't \`import 'openai/shims/${shims.kind}'\` after \`import 'openai/shims/${kind}'\``); + } + auto = options.auto; + kind = shims.kind; + fetch = shims.fetch; + Request = shims.Request; + Response = shims.Response; + Headers = shims.Headers; + FormData = shims.FormData; + Blob = shims.Blob; + File = shims.File; + getMultipartRequestOptions = shims.getMultipartRequestOptions; + getDefaultAgent = shims.getDefaultAgent; + fileFromPath = shims.fileFromPath; + isFsReadStream = shims.isFsReadStream; +} diff --git a/src/_shims/web-runtime.ts b/src/_shims/web-runtime.ts new file mode 100644 index 000000000..12d73e965 --- /dev/null +++ b/src/_shims/web-runtime.ts @@ -0,0 +1,91 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ +import { MultipartBody } from './MultipartBody'; +import { type RequestOptions } from '../core'; +import { type Shims } from './registry'; + +export function getRuntime({ manuallyImported }: { manuallyImported?: boolean } = {}): Shims { + const recommendation = + manuallyImported ? + `You may need to use polyfills` + : `Add one of these imports before your first \`import … from 'openai'\`: +- \`import 'openai/shims/node'\` (if you're running on Node) +- \`import 'openai/shims/web'\` (otherwise) +`; + + let _fetch, _Request, _Response, _Headers; + try { + // @ts-ignore + _fetch = fetch; + // @ts-ignore + _Request = Request; + // @ts-ignore + _Response = Response; + // @ts-ignore + _Headers = Headers; + } catch (error) { + throw new Error( + `this environment is missing the following Web Fetch API type: ${ + (error as any).message + }. ${recommendation}`, + ); + } + + return { + kind: 'web', + fetch: _fetch, + Request: _Request, + Response: _Response, + Headers: _Headers, + FormData: + // @ts-ignore + typeof FormData !== 'undefined' ? FormData : ( + class FormData { + // @ts-ignore + constructor() { + throw new Error( + `file uploads aren't supported in this environment yet as 'FormData' is undefined. ${recommendation}`, + ); + } + } + ), + Blob: + typeof Blob !== 'undefined' ? Blob : ( + class Blob { + constructor() { + throw new Error( + `file uploads aren't supported in this environment yet as 'Blob' is undefined. ${recommendation}`, + ); + } + } + ), + File: + // @ts-ignore + typeof File !== 'undefined' ? File : ( + class File { + // @ts-ignore + constructor() { + throw new Error( + `file uploads aren't supported in this environment yet as 'File' is undefined. ${recommendation}`, + ); + } + } + ), + getMultipartRequestOptions: async >( + // @ts-ignore + form: FormData, + opts: RequestOptions, + ): Promise> => ({ + ...opts, + body: new MultipartBody(form) as any, + }), + getDefaultAgent: (url: string) => undefined, + fileFromPath: () => { + throw new Error( + 'The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/openai/openai-node#file-uploads', + ); + }, + isFsReadStream: (value: any) => false, + }; +} diff --git a/src/_shims/web-types.d.ts b/src/_shims/web-types.d.ts new file mode 100644 index 000000000..ec96cd817 --- /dev/null +++ b/src/_shims/web-types.d.ts @@ -0,0 +1,82 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ +export type Agent = any; + +declare const _fetch: typeof fetch; +export { _fetch as fetch }; + +type _Request = Request; +export { _Request as Request }; + +type _RequestInfo = RequestInfo; +export { type _RequestInfo as RequestInfo }; + +type _RequestInit = RequestInit; +export { type _RequestInit as RequestInit }; + +type _Response = Response; +export { _Response as Response }; + +type _ResponseInit = ResponseInit; +export { type _ResponseInit as ResponseInit }; + +type _ResponseType = ResponseType; +export { type _ResponseType as ResponseType }; + +type _BodyInit = BodyInit; +export { type _BodyInit as BodyInit }; + +type _Headers = Headers; +export { _Headers as Headers }; + +type _HeadersInit = HeadersInit; +export { type _HeadersInit as HeadersInit }; + +type EndingType = 'native' | 'transparent'; + +export interface BlobPropertyBag { + endings?: EndingType; + type?: string; +} + +export interface FilePropertyBag extends BlobPropertyBag { + lastModified?: number; +} + +export type FileFromPathOptions = Omit; + +type _FormData = FormData; +declare const _FormData: typeof FormData; +export { _FormData as FormData }; + +type _File = File; +declare const _File: typeof File; +export { _File as File }; + +type _Blob = Blob; +declare const _Blob: typeof Blob; +export { _Blob as Blob }; + +export declare class Readable { + readable: boolean; + readonly readableEnded: boolean; + readonly readableFlowing: boolean | null; + readonly readableHighWaterMark: number; + readonly readableLength: number; + readonly readableObjectMode: boolean; + destroyed: boolean; + read(size?: number): any; + pause(): this; + resume(): this; + isPaused(): boolean; + destroy(error?: Error): this; + [Symbol.asyncIterator](): AsyncIterableIterator; +} + +export declare class FsReadStream extends Readable { + path: {}; // node type is string | Buffer +} + +type _ReadableStream = ReadableStream; +export { type _ReadableStream as ReadableStream }; diff --git a/src/_shims/web-types.js b/src/_shims/web-types.js new file mode 100644 index 000000000..ddbdb799c --- /dev/null +++ b/src/_shims/web-types.js @@ -0,0 +1,3 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ diff --git a/src/_shims/web-types.mjs b/src/_shims/web-types.mjs new file mode 100644 index 000000000..ddbdb799c --- /dev/null +++ b/src/_shims/web-types.mjs @@ -0,0 +1,3 @@ +/** + * Disclaimer: modules in _shims aren't intended to be imported by SDK users. + */ diff --git a/src/core.ts b/src/core.ts index 3a473ca61..a151d9d1a 100644 --- a/src/core.ts +++ b/src/core.ts @@ -1,16 +1,17 @@ import { VERSION } from './version'; import { Stream } from './streaming'; import { APIError, APIConnectionError, APIConnectionTimeoutError, APIUserAbortError } from './error'; -import type { Readable } from 'openai/_shims/node-readable'; -import { getDefaultAgent, type Agent } from 'openai/_shims/agent'; import { + kind as shimsKind, + type Readable, + getDefaultAgent, + type Agent, fetch, - isPolyfilled as fetchIsPolyfilled, type RequestInfo, type RequestInit, type Response, type HeadersInit, -} from 'openai/_shims/fetch'; +} from './_shims/index'; export { type Response }; import { isMultipartBody } from './uploads'; export { @@ -84,6 +85,12 @@ export class APIPromise extends Promise { * * If you want to parse the response body but still get the `Response` * instance, you can use {@link withResponse()}. + * + * 👋 Getting the wrong TypeScript type for `Response`? + * Try setting `"moduleResolution": "NodeNext"` if you can, + * or add one of these imports before your first `import … from 'openai'`: + * - `import 'openai/shims/node'` (if you're running on Node) + * - `import 'openai/shims/web'` (otherwise) */ asResponse(): Promise { return this.responsePromise.then((p) => p.response); @@ -93,6 +100,13 @@ export class APIPromise extends Promise { * * If you just want to get the raw `Response` instance without parsing it, * you can use {@link asResponse()}. + * + * + * 👋 Getting the wrong TypeScript type for `Response`? + * Try setting `"moduleResolution": "NodeNext"` if you can, + * or add one of these imports before your first `import … from 'openai'`: + * - `import 'openai/shims/node'` (if you're running on Node) + * - `import 'openai/shims/web'` (otherwise) */ async withResponse(): Promise<{ data: T; response: Response }> { const [data, response] = await Promise.all([this.parse(), this.asResponse()]); @@ -277,7 +291,7 @@ export abstract class APIClient { ...headers, }; // let builtin fetch set the Content-Type for multipart bodies - if (isMultipartBody(options.body) && !fetchIsPolyfilled) { + if (isMultipartBody(options.body) && shimsKind !== 'node') { delete reqHeaders['Content-Type']; } @@ -444,11 +458,14 @@ export abstract class APIClient { const timeout = setTimeout(() => controller.abort(), ms); - return this.getRequestClient() - .fetch(url, { signal: controller.signal as any, ...options }) - .finally(() => { - clearTimeout(timeout); - }); + return ( + this.getRequestClient() + // use undefined this binding; fetch errors if bound to something else in browser/cloudflare + .fetch.call(undefined, url, { signal: controller.signal as any, ...options }) + .finally(() => { + clearTimeout(timeout); + }) + ); } protected getRequestClient(): RequestClient { @@ -592,7 +609,7 @@ export abstract class AbstractPage implements AsyncIterable { } else if ('url' in nextInfo) { const params = [...Object.entries(nextOptions.query || {}), ...nextInfo.url.searchParams.entries()]; for (const [key, value] of params) { - nextInfo.url.searchParams.set(key, value); + nextInfo.url.searchParams.set(key, value as any); } nextOptions.query = undefined; nextOptions.path = nextInfo.url.toString(); @@ -718,7 +735,7 @@ const requestOptionsKeys: KeysEnum = { idempotencyKey: true, }; -export const isRequestOptions = (obj: unknown): obj is RequestOptions => { +export const isRequestOptions = (obj: unknown): obj is RequestOptions | Readable> => { return ( typeof obj === 'object' && obj !== null && diff --git a/src/index.ts b/src/index.ts index 16e4adbb3..2ecbb6546 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4,7 +4,7 @@ import * as Core from './core'; import * as Pagination from './pagination'; import * as API from './resources/index'; import * as Errors from './error'; -import type { Agent } from 'openai/_shims/agent'; +import { type Agent } from './_shims/index'; import * as Uploads from './uploads'; export interface ClientOptions { diff --git a/src/shims/node.ts b/src/shims/node.ts new file mode 100644 index 000000000..9273d4eae --- /dev/null +++ b/src/shims/node.ts @@ -0,0 +1,50 @@ +// @ts-ignore +import * as types from '../_shims/node-types'; +import { setShims } from '../_shims/registry'; +import { getRuntime } from '../_shims/node-runtime'; +setShims(getRuntime()); + +declare module '../_shims/manual-types' { + export namespace manual { + // @ts-ignore + export type Agent = types.Agent; + // @ts-ignore + export import fetch = types.fetch; + // @ts-ignore + export type Request = types.Request; + // @ts-ignore + export type RequestInfo = types.RequestInfo; + // @ts-ignore + export type RequestInit = types.RequestInit; + // @ts-ignore + export type Response = types.Response; + // @ts-ignore + export type ResponseInit = types.ResponseInit; + // @ts-ignore + export type ResponseType = types.ResponseType; + // @ts-ignore + export type BodyInit = types.BodyInit; + // @ts-ignore + export type Headers = types.Headers; + // @ts-ignore + export type HeadersInit = types.HeadersInit; + // @ts-ignore + export type BlobPropertyBag = types.BlobPropertyBag; + // @ts-ignore + export type FilePropertyBag = types.FilePropertyBag; + // @ts-ignore + export type FileFromPathOptions = types.FileFromPathOptions; + // @ts-ignore + export import FormData = types.FormData; + // @ts-ignore + export import File = types.File; + // @ts-ignore + export import Blob = types.Blob; + // @ts-ignore + export type Readable = types.Readable; + // @ts-ignore + export type FsReadStream = types.FsReadStream; + // @ts-ignore + export type ReadableStream = types.ReadableStream; + } +} diff --git a/src/shims/web.ts b/src/shims/web.ts new file mode 100644 index 000000000..9970f1db8 --- /dev/null +++ b/src/shims/web.ts @@ -0,0 +1,50 @@ +// @ts-ignore +import * as types from '../_shims/web-types'; +import { setShims } from '../_shims/registry'; +import { getRuntime } from '../_shims/web-runtime'; +setShims(getRuntime({ manuallyImported: true })); + +declare module '../_shims/manual-types' { + export namespace manual { + // @ts-ignore + export type Agent = types.Agent; + // @ts-ignore + export import fetch = types.fetch; + // @ts-ignore + export type Request = types.Request; + // @ts-ignore + export type RequestInfo = types.RequestInfo; + // @ts-ignore + export type RequestInit = types.RequestInit; + // @ts-ignore + export type Response = types.Response; + // @ts-ignore + export type ResponseInit = types.ResponseInit; + // @ts-ignore + export type ResponseType = types.ResponseType; + // @ts-ignore + export type BodyInit = types.BodyInit; + // @ts-ignore + export type Headers = types.Headers; + // @ts-ignore + export type HeadersInit = types.HeadersInit; + // @ts-ignore + export type BlobPropertyBag = types.BlobPropertyBag; + // @ts-ignore + export type FilePropertyBag = types.FilePropertyBag; + // @ts-ignore + export type FileFromPathOptions = types.FileFromPathOptions; + // @ts-ignore + export import FormData = types.FormData; + // @ts-ignore + export import File = types.File; + // @ts-ignore + export import Blob = types.Blob; + // @ts-ignore + export type Readable = types.Readable; + // @ts-ignore + export type FsReadStream = types.FsReadStream; + // @ts-ignore + export type ReadableStream = types.ReadableStream; + } +} diff --git a/src/streaming.ts b/src/streaming.ts index 230234546..21dedbb0f 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -1,4 +1,4 @@ -import type { Response } from 'openai/_shims/fetch'; +import { type Response } from './_shims/index'; type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined; diff --git a/src/uploads.ts b/src/uploads.ts index e02ecb8a1..301d770e3 100644 --- a/src/uploads.ts +++ b/src/uploads.ts @@ -1,12 +1,15 @@ import { type RequestOptions } from './core'; -import { type Readable } from 'openai/_shims/node-readable'; -import { type BodyInit } from 'openai/_shims/fetch'; -import { FormData, File, type Blob, type FilePropertyBag } from 'openai/_shims/form-data'; -import { getMultipartRequestOptions } from 'openai/_shims/getMultipartRequestOptions'; -import { fileFromPath } from 'openai/_shims/fileFromPath'; -import { type FsReadStream, isFsReadStream } from 'openai/_shims/node-readable'; - -export { fileFromPath }; +import { + FormData, + File, + type Blob, + type FilePropertyBag, + getMultipartRequestOptions, + type FsReadStream, + isFsReadStream, +} from './_shims/index'; +import { MultipartBody } from './_shims/MultipartBody'; +export { fileFromPath } from './_shims/index'; type BlobLikePart = string | ArrayBuffer | ArrayBufferView | BlobLike | Uint8Array | DataView; export type BlobPart = string | ArrayBuffer | ArrayBufferView | Blob | Uint8Array | DataView; @@ -175,13 +178,6 @@ const getStringFromMaybeBuffer = (x: string | Buffer | unknown): string | undefi const isAsyncIterableIterator = (value: any): value is AsyncIterableIterator => value != null && typeof value === 'object' && typeof value[Symbol.asyncIterator] === 'function'; -export class MultipartBody { - constructor(public body: Readable | BodyInit) {} - get [Symbol.toStringTag](): string { - return 'MultipartBody'; - } -} - export const isMultipartBody = (body: any): body is MultipartBody => body && typeof body === 'object' && body.body && body[Symbol.toStringTag] === 'MultipartBody'; diff --git a/tests/form.test.ts b/tests/form.test.ts index 88dfaac77..3a143852c 100644 --- a/tests/form.test.ts +++ b/tests/form.test.ts @@ -1,5 +1,5 @@ import { multipartFormRequestOptions, createForm } from 'openai/core'; -import { Blob } from 'openai/_shims/form-data'; +import { Blob } from 'openai/_shims/index'; import { toFile } from 'openai'; describe('form data validation', () => { diff --git a/tests/index.test.ts b/tests/index.test.ts index de1befa1e..93f44fe9e 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -3,7 +3,7 @@ import OpenAI from 'openai'; import { APIUserAbortError } from 'openai'; import { Headers } from 'openai/core'; -import { Response, fetch as defaultFetch, type RequestInit, type RequestInfo } from 'openai/_shims/fetch'; +import defaultFetch, { Response, type RequestInit, type RequestInfo } from 'node-fetch'; describe('instantiate client', () => { const env = process.env; diff --git a/tests/responses.test.ts b/tests/responses.test.ts index 2901d3c43..ef6ba27bf 100644 --- a/tests/responses.test.ts +++ b/tests/responses.test.ts @@ -1,5 +1,5 @@ import { createResponseHeaders } from 'openai/core'; -import { Headers } from 'openai/_shims/fetch'; +import { Headers } from 'openai/_shims/index'; describe('response parsing', () => { // TODO: test unicode characters diff --git a/tests/uploads.test.ts b/tests/uploads.test.ts index 76fa6573c..b40856e29 100644 --- a/tests/uploads.test.ts +++ b/tests/uploads.test.ts @@ -1,6 +1,6 @@ import fs from 'fs'; import { toFile, type ResponseLike } from 'openai/uploads'; -import { File } from 'openai/_shims/form-data'; +import { File } from 'openai/_shims/index'; class MyClass { name: string = 'foo'; diff --git a/tsconfig.build.json b/tsconfig.build.json index 320dc5c1d..6adad0d06 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -1,13 +1,12 @@ { "extends": "./tsconfig.json", "include": ["dist/src"], - "exclude": ["dist/src/_shims/*.deno.ts"], + "exclude": ["dist/src/_shims/*-deno.ts"], "compilerOptions": { "rootDir": "./dist/src", "paths": { - "openai/_shims/*": ["dist/src/_shims/*-node"], - "openai": ["dist/src/index.ts"], "openai/*": ["dist/src/*"], + "openai": ["dist/src/index.ts"], "digest-fetch": ["./typings/digest-fetch"] }, "noEmit": false, @@ -16,20 +15,5 @@ "outDir": "dist", "pretty": true, "sourceMap": true - }, - "tsc-alias": { - "fileExtensions": { - "inputGlob": "{mjs,cjs,js,jsx,mts,cts,ts,tsx}" - }, - "replacers": { - "replace-self-referencing-imports": { - "enabled": true, - "file": "./scripts/replace-self-referencing-imports.js" - }, - "resolve-full-paths": { - "enabled": true, - "file": "./scripts/resolve-full-paths.js" - } - } } } diff --git a/tsconfig.deno.json b/tsconfig.deno.json index 1fa5cf8ae..5d6467665 100644 --- a/tsconfig.deno.json +++ b/tsconfig.deno.json @@ -6,9 +6,9 @@ "rootDir": "./deno", "lib": ["es2020", "DOM"], "paths": { - "openai/_shims/*": ["deno/_shims/*"], - "openai": ["deno/index.ts"], + "openai/_shims/auto/*": ["deno/_shims/auto/*-deno"], "openai/*": ["deno/*"], + "openai": ["deno/index.ts"], "digest-fetch": ["./typings/digest-fetch"] }, "noEmit": true, diff --git a/tsconfig.json b/tsconfig.json index 1edbcb2e2..801835f0c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,6 @@ { "include": ["src", "tests", "examples"], - "exclude": ["src/_shims/*.deno.ts"], + "exclude": ["src/_shims/**/*-deno.ts"], "compilerOptions": { "target": "es2019", "lib": ["es2020"], @@ -9,9 +9,9 @@ "esModuleInterop": true, "baseUrl": "./", "paths": { - "openai/_shims/*": ["src/_shims/*-node"], - "openai": ["src/index.ts"], + "openai/_shims/auto/*": ["src/_shims/auto/*-node"], "openai/*": ["src/*"], + "openai": ["src/index.ts"], "digest-fetch": ["./typings/digest-fetch"] }, "noEmit": true, diff --git a/yarn.lock b/yarn.lock index dba8c9628..d7a57abaa 100644 --- a/yarn.lock +++ b/yarn.lock @@ -348,22 +348,27 @@ dependencies: "@cspotcode/source-map-consumer" "0.8.0" -"@eslint-community/eslint-utils@^4.2.0": +"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": version "4.4.0" resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== dependencies: eslint-visitor-keys "^3.3.0" -"@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.6.1": +"@eslint-community/regexpp@^4.5.1": + version "4.8.1" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.8.1.tgz#8c4bb756cc2aa7eaf13cfa5e69c83afb3260c20c" + integrity sha512-PWiOzLIUAjN/w5K17PoF4n6sKBw0gqLHPhywmYHP4t1VFQQVYeb1yWsJwnMVEMl3tUHME7X/SJPZLmtG7XBDxQ== + +"@eslint-community/regexpp@^4.6.1": version "4.6.2" resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.6.2.tgz#1816b5f6948029c5eaacb0703b850ee0cb37d8f8" integrity sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw== -"@eslint/eslintrc@^2.1.1": - version "2.1.1" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.1.tgz#18d635e24ad35f7276e8a49d135c7d3ca6a46f93" - integrity sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA== +"@eslint/eslintrc@^2.1.2": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.2.tgz#c6936b4b328c64496692f76944e755738be62396" + integrity sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g== dependencies: ajv "^6.12.4" debug "^4.3.2" @@ -375,10 +380,10 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" -"@eslint/js@^8.46.0": - version "8.46.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.46.0.tgz#3f7802972e8b6fe3f88ed1aabc74ec596c456db6" - integrity sha512-a8TLtmPi8xzPkCbp/OGFUo5yhRkHM2Ko9kOWP4znJr0WAhWyThaw3PnwX4vOTWOAMsV2uRt32PPDcEz63esSaA== +"@eslint/js@8.49.0": + version "8.49.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.49.0.tgz#86f79756004a97fa4df866835093f1df3d03c333" + integrity sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w== "@glimmer/env@0.1.7": version "0.1.7" @@ -416,10 +421,10 @@ resolved "https://registry.yarnpkg.com/@handlebars/parser/-/parser-2.0.0.tgz#5e8b7298f31ff8f7b260e6b7363c7e9ceed7d9c5" integrity sha512-EP9uEDZv/L5Qh9IWuMUGJRfwhXJ4h1dqKTT4/3+tY0eu7sPis7xh23j61SYUnNF4vqCQvvUXpDo9Bh/+q1zASA== -"@humanwhocodes/config-array@^0.11.10": - version "0.11.10" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2" - integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ== +"@humanwhocodes/config-array@^0.11.11": + version "0.11.11" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.11.tgz#88a04c570dbbc7dd943e4712429c3df09bc32844" + integrity sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA== dependencies: "@humanwhocodes/object-schema" "^1.2.1" debug "^4.1.1" @@ -839,10 +844,10 @@ expect "^29.0.0" pretty-format "^29.0.0" -"@types/json-schema@^7.0.9": - version "7.0.12" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb" - integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA== +"@types/json-schema@^7.0.12": + version "7.0.13" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.13.tgz#02c24f4363176d2d18fc8b70b9f3c54aba178a85" + integrity sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ== "@types/node-fetch@^2.6.4": version "2.6.4" @@ -872,10 +877,10 @@ resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.6.0.tgz#efcbd41937f9ae7434c714ab698604822d890759" integrity sha512-G/AdOadiZhnJp0jXCaBQU449W2h716OW/EoXeYkCytxKL06X1WCXB4DZpp8TpZ8eyIJVS1cw4lrlkkSYU21cDw== -"@types/semver@^7.3.12": - version "7.5.0" - resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.0.tgz#591c1ce3a702c45ee15f47a42ade72c2fd78978a" - integrity sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw== +"@types/semver@^7.5.0": + version "7.5.2" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.2.tgz#31f6eec1ed7ec23f4f05608d3a2d381df041f564" + integrity sha512-7aqorHYgdNO4DM36stTiGO3DvKoex9TQRwsJU6vMaFGyqpBA1MNZkz+PG3gaNUPpTAOYhT1WR7M1JyA3fbS9Cw== "@types/stack-utils@^2.0.0": version "2.0.1" @@ -899,59 +904,61 @@ dependencies: "@types/yargs-parser" "*" -"@typescript-eslint/eslint-plugin@^5.33.0": - version "5.62.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz#aeef0328d172b9e37d9bab6dbc13b87ed88977db" - integrity sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag== +"@typescript-eslint/eslint-plugin@^6.7.0": + version "6.7.2" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.7.2.tgz#f18cc75c9cceac8080a9dc2e7d166008c5207b9f" + integrity sha512-ooaHxlmSgZTM6CHYAFRlifqh1OAr3PAQEwi7lhYhaegbnXrnh7CDcHmc3+ihhbQC7H0i4JF0psI5ehzkF6Yl6Q== dependencies: - "@eslint-community/regexpp" "^4.4.0" - "@typescript-eslint/scope-manager" "5.62.0" - "@typescript-eslint/type-utils" "5.62.0" - "@typescript-eslint/utils" "5.62.0" + "@eslint-community/regexpp" "^4.5.1" + "@typescript-eslint/scope-manager" "6.7.2" + "@typescript-eslint/type-utils" "6.7.2" + "@typescript-eslint/utils" "6.7.2" + "@typescript-eslint/visitor-keys" "6.7.2" debug "^4.3.4" graphemer "^1.4.0" - ignore "^5.2.0" - natural-compare-lite "^1.4.0" - semver "^7.3.7" - tsutils "^3.21.0" - -"@typescript-eslint/parser@^5.33.0": - version "5.62.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.62.0.tgz#1b63d082d849a2fcae8a569248fbe2ee1b8a56c7" - integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA== - dependencies: - "@typescript-eslint/scope-manager" "5.62.0" - "@typescript-eslint/types" "5.62.0" - "@typescript-eslint/typescript-estree" "5.62.0" + ignore "^5.2.4" + natural-compare "^1.4.0" + semver "^7.5.4" + ts-api-utils "^1.0.1" + +"@typescript-eslint/parser@^6.7.0": + version "6.7.2" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.7.2.tgz#e0ae93771441b9518e67d0660c79e3a105497af4" + integrity sha512-KA3E4ox0ws+SPyxQf9iSI25R6b4Ne78ORhNHeVKrPQnoYsb9UhieoiRoJgrzgEeKGOXhcY1i8YtOeCHHTDa6Fw== + dependencies: + "@typescript-eslint/scope-manager" "6.7.2" + "@typescript-eslint/types" "6.7.2" + "@typescript-eslint/typescript-estree" "6.7.2" + "@typescript-eslint/visitor-keys" "6.7.2" debug "^4.3.4" -"@typescript-eslint/scope-manager@5.62.0": - version "5.62.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz#d9457ccc6a0b8d6b37d0eb252a23022478c5460c" - integrity sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w== +"@typescript-eslint/scope-manager@6.7.2": + version "6.7.2" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.7.2.tgz#cf59a2095d2f894770c94be489648ad1c78dc689" + integrity sha512-bgi6plgyZjEqapr7u2mhxGR6E8WCzKNUFWNh6fkpVe9+yzRZeYtDTbsIBzKbcxI+r1qVWt6VIoMSNZ4r2A+6Yw== dependencies: - "@typescript-eslint/types" "5.62.0" - "@typescript-eslint/visitor-keys" "5.62.0" + "@typescript-eslint/types" "6.7.2" + "@typescript-eslint/visitor-keys" "6.7.2" -"@typescript-eslint/type-utils@5.62.0": - version "5.62.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz#286f0389c41681376cdad96b309cedd17d70346a" - integrity sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew== +"@typescript-eslint/type-utils@6.7.2": + version "6.7.2" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.7.2.tgz#ed921c9db87d72fa2939fee242d700561454f367" + integrity sha512-36F4fOYIROYRl0qj95dYKx6kybddLtsbmPIYNK0OBeXv2j9L5nZ17j9jmfy+bIDHKQgn2EZX+cofsqi8NPATBQ== dependencies: - "@typescript-eslint/typescript-estree" "5.62.0" - "@typescript-eslint/utils" "5.62.0" + "@typescript-eslint/typescript-estree" "6.7.2" + "@typescript-eslint/utils" "6.7.2" debug "^4.3.4" - tsutils "^3.21.0" + ts-api-utils "^1.0.1" "@typescript-eslint/types@5.45.0": version "5.45.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.45.0.tgz#794760b9037ee4154c09549ef5a96599621109c5" integrity sha512-QQij+u/vgskA66azc9dCmx+rev79PzX8uDHpsqSjEFtfF2gBUTRCpvYMh2gw2ghkJabNkPlSUCimsyBEQZd1DA== -"@typescript-eslint/types@5.62.0": - version "5.62.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f" - integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ== +"@typescript-eslint/types@6.7.2": + version "6.7.2" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.7.2.tgz#75a615a6dbeca09cafd102fe7f465da1d8a3c066" + integrity sha512-flJYwMYgnUNDAN9/GAI3l8+wTmvTYdv64fcH8aoJK76Y+1FCZ08RtI5zDerM/FYT5DMkAc+19E4aLmd5KqdFyg== "@typescript-eslint/typescript-estree@5.45.0": version "5.45.0" @@ -966,32 +973,31 @@ semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/typescript-estree@5.62.0": - version "5.62.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b" - integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA== +"@typescript-eslint/typescript-estree@6.7.2": + version "6.7.2" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.7.2.tgz#ce5883c23b581a5caf878af641e49dd0349238c7" + integrity sha512-kiJKVMLkoSciGyFU0TOY0fRxnp9qq1AzVOHNeN1+B9erKFCJ4Z8WdjAkKQPP+b1pWStGFqezMLltxO+308dJTQ== dependencies: - "@typescript-eslint/types" "5.62.0" - "@typescript-eslint/visitor-keys" "5.62.0" + "@typescript-eslint/types" "6.7.2" + "@typescript-eslint/visitor-keys" "6.7.2" debug "^4.3.4" globby "^11.1.0" is-glob "^4.0.3" - semver "^7.3.7" - tsutils "^3.21.0" - -"@typescript-eslint/utils@5.62.0": - version "5.62.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.62.0.tgz#141e809c71636e4a75daa39faed2fb5f4b10df86" - integrity sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ== - dependencies: - "@eslint-community/eslint-utils" "^4.2.0" - "@types/json-schema" "^7.0.9" - "@types/semver" "^7.3.12" - "@typescript-eslint/scope-manager" "5.62.0" - "@typescript-eslint/types" "5.62.0" - "@typescript-eslint/typescript-estree" "5.62.0" - eslint-scope "^5.1.1" - semver "^7.3.7" + semver "^7.5.4" + ts-api-utils "^1.0.1" + +"@typescript-eslint/utils@6.7.2": + version "6.7.2" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.7.2.tgz#b9ef0da6f04932167a9222cb4ac59cb187165ebf" + integrity sha512-ZCcBJug/TS6fXRTsoTkgnsvyWSiXwMNiPzBUani7hDidBdj1779qwM1FIAmpH4lvlOZNF3EScsxxuGifjpLSWQ== + dependencies: + "@eslint-community/eslint-utils" "^4.4.0" + "@types/json-schema" "^7.0.12" + "@types/semver" "^7.5.0" + "@typescript-eslint/scope-manager" "6.7.2" + "@typescript-eslint/types" "6.7.2" + "@typescript-eslint/typescript-estree" "6.7.2" + semver "^7.5.4" "@typescript-eslint/visitor-keys@5.45.0": version "5.45.0" @@ -1001,13 +1007,13 @@ "@typescript-eslint/types" "5.45.0" eslint-visitor-keys "^3.3.0" -"@typescript-eslint/visitor-keys@5.62.0": - version "5.62.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e" - integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw== +"@typescript-eslint/visitor-keys@6.7.2": + version "6.7.2" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.7.2.tgz#4cb2bd786f1f459731b0ad1584c9f73e1c7a4d5c" + integrity sha512-uVw9VIMFBUTz8rIeaUT3fFe8xIUx8r4ywAdlQv1ifH+6acn/XF8Y6rwJ7XNmkNMDrTW+7+vxFFPIF40nJCVsMQ== dependencies: - "@typescript-eslint/types" "5.62.0" - eslint-visitor-keys "^3.3.0" + "@typescript-eslint/types" "6.7.2" + eslint-visitor-keys "^3.4.1" abort-controller@^3.0.0: version "3.0.0" @@ -1132,14 +1138,6 @@ anymatch@^3.0.3: normalize-path "^3.0.0" picomatch "^2.0.4" -anymatch@~3.1.2: - version "3.1.3" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" - integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - arg@^4.1.0: version "4.1.3" resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" @@ -1242,11 +1240,6 @@ base-64@^0.1.0: resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb" integrity sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA== -binary-extensions@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" - integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== - brace-expansion@^1.1.7: version "1.1.11" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" @@ -1262,7 +1255,7 @@ brace-expansion@^2.0.1: dependencies: balanced-match "^1.0.0" -braces@^3.0.2, braces@~3.0.2: +braces@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== @@ -1371,21 +1364,6 @@ charenc@0.0.2: resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA== -chokidar@^3.5.3: - version "3.5.3" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" - integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== - dependencies: - anymatch "~3.1.2" - braces "~3.0.2" - glob-parent "~5.1.2" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.6.0" - optionalDependencies: - fsevents "~2.3.2" - ci-info@3.3.0, ci-info@^3.2.0: version "3.3.0" resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.3.0.tgz#b4ed1fb6818dea4803a55c623041f9165d2066b2" @@ -1488,11 +1466,6 @@ commander@^2.19.0: resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== -commander@^9.0.0: - version "9.5.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz#bc08d1eb5cedf7ccb797a96199d41c7bc3e60d30" - integrity sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ== - commondir@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" @@ -1729,14 +1702,6 @@ eslint-rule-composer@^0.3.0: resolved "https://registry.yarnpkg.com/eslint-rule-composer/-/eslint-rule-composer-0.3.0.tgz#79320c927b0c5c0d3d3d2b76c8b4a488f25bbaf9" integrity sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg== -eslint-scope@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" - integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== - dependencies: - esrecurse "^4.3.0" - estraverse "^4.1.1" - eslint-scope@^7.2.2: version "7.2.2" resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" @@ -1745,21 +1710,26 @@ eslint-scope@^7.2.2: esrecurse "^4.3.0" estraverse "^5.2.0" -eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.2: +eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1: version "3.4.2" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.2.tgz#8c2095440eca8c933bedcadf16fefa44dbe9ba5f" integrity sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw== -eslint@^8.22.0: - version "8.46.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.46.0.tgz#a06a0ff6974e53e643acc42d1dcf2e7f797b3552" - integrity sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg== +eslint-visitor-keys@^3.4.3: + version "3.4.3" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" + integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== + +eslint@^8.49.0: + version "8.49.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.49.0.tgz#09d80a89bdb4edee2efcf6964623af1054bf6d42" + integrity sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ== dependencies: "@eslint-community/eslint-utils" "^4.2.0" "@eslint-community/regexpp" "^4.6.1" - "@eslint/eslintrc" "^2.1.1" - "@eslint/js" "^8.46.0" - "@humanwhocodes/config-array" "^0.11.10" + "@eslint/eslintrc" "^2.1.2" + "@eslint/js" "8.49.0" + "@humanwhocodes/config-array" "^0.11.11" "@humanwhocodes/module-importer" "^1.0.1" "@nodelib/fs.walk" "^1.2.8" ajv "^6.12.4" @@ -1769,7 +1739,7 @@ eslint@^8.22.0: doctrine "^3.0.0" escape-string-regexp "^4.0.0" eslint-scope "^7.2.2" - eslint-visitor-keys "^3.4.2" + eslint-visitor-keys "^3.4.3" espree "^9.6.1" esquery "^1.4.2" esutils "^2.0.2" @@ -1830,11 +1800,6 @@ esrecurse@^4.3.0: dependencies: estraverse "^5.2.0" -estraverse@^4.1.1: - version "4.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" - integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== - estraverse@^5.1.0, estraverse@^5.2.0: version "5.3.0" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" @@ -2036,7 +2001,7 @@ fs.realpath@^1.0.0: resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== -fsevents@^2.3.2, fsevents@~2.3.2: +fsevents@^2.3.2: version "2.3.2" resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== @@ -2071,7 +2036,7 @@ get-stream@^6.0.0: resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== -glob-parent@^5.1.2, glob-parent@~5.1.2: +glob-parent@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== @@ -2121,7 +2086,7 @@ globals@^13.19.0: dependencies: type-fest "^0.20.2" -globby@^11.0.4, globby@^11.1.0: +globby@^11.1.0: version "11.1.0" resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== @@ -2207,7 +2172,7 @@ ignore@5.2.0: resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== -ignore@^5.2.0: +ignore@^5.2.0, ignore@^5.2.4: version "5.2.4" resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== @@ -2274,13 +2239,6 @@ is-arrayish@^0.2.1: resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= -is-binary-path@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" - integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== - dependencies: - binary-extensions "^2.0.0" - is-buffer@^2.0.0: version "2.0.5" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" @@ -2330,7 +2288,7 @@ is-generator-fn@^2.0.0: resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== -is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== @@ -3046,21 +3004,11 @@ ms@^2.0.0: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== -mylas@^2.1.9: - version "2.1.13" - resolved "https://registry.yarnpkg.com/mylas/-/mylas-2.1.13.tgz#1e23b37d58fdcc76e15d8a5ed23f9ae9fc0cbdf4" - integrity sha512-+MrqnJRtxdF+xngFfUUkIMQrUUL0KsxbADUkn23Z/4ibGg192Q+z+CQyiYwvWTsYjJygmMR8+w3ZDa98Zh6ESg== - n-readlines@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/n-readlines/-/n-readlines-1.0.1.tgz#bbb7364d38bc31a170a199f986fcacfa76b95f6e" integrity sha512-z4SyAIVgMy7CkgsoNw7YVz40v0g4+WWvvqy8+ZdHrCtgevcEO758WQyrYcw3XPxcLxF+//RszTz/rO48nzD0wQ== -natural-compare-lite@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4" - integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g== - natural-compare@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" @@ -3088,7 +3036,7 @@ node-releases@^2.0.3: resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.4.tgz#f38252370c43854dc48aa431c766c6c398f40476" integrity sha512-gbMzqQtTtDz/00jQzZ21PQzdI9PyLYqUSvD0p3naOhX4odFji0ZxYdnVwPTxmSwkmxhcFImpozceidSG+AgoPQ== -normalize-path@^3.0.0, normalize-path@~3.0.0: +normalize-path@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== @@ -3260,7 +3208,7 @@ picocolors@^1.0.0: resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== -picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1: +picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== @@ -3284,13 +3232,6 @@ please-upgrade-node@3.2.0: dependencies: semver-compare "^1.0.0" -plimit-lit@^1.2.6: - version "1.5.0" - resolved "https://registry.yarnpkg.com/plimit-lit/-/plimit-lit-1.5.0.tgz#f66df8a7041de1e965c4f1c0697ab486968a92a5" - integrity sha512-Eb/MqCb1Iv/ok4m1FqIXqvUKPISufcjZ605hl3KM/n8GaX8zfhtgdLwZU3vKjuHGh2O9Rjog/bHTq8ofIShdng== - dependencies: - queue-lit "^1.5.0" - postcss-less@3.1.4: version "3.1.4" resolved "https://registry.yarnpkg.com/postcss-less/-/postcss-less-3.1.4.tgz#369f58642b5928ef898ffbc1a6e93c958304c5ad" @@ -3455,11 +3396,6 @@ pure-rand@^6.0.0: resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.0.2.tgz#a9c2ddcae9b68d736a8163036f088a2781c8b306" integrity sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ== -queue-lit@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/queue-lit/-/queue-lit-1.5.0.tgz#8197fdafda1edd615c8a0fc14c48353626e5160a" - integrity sha512-IslToJ4eiCEE9xwMzq3viOO5nH8sUWUCwoElrhNMozzr9IIt2qqvB4I+uHu/zJTQVqc9R5DFwok4ijNK1pU3fA== - queue-microtask@^1.2.2: version "1.2.3" resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" @@ -3479,13 +3415,6 @@ readable-stream@^3.4.0: string_decoder "^1.1.1" util-deprecate "^1.0.1" -readdirp@~3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" - integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== - dependencies: - picomatch "^2.2.1" - regexp-util@1.2.2, regexp-util@^1.2.0, regexp-util@^1.2.1: version "1.2.2" resolved "https://registry.yarnpkg.com/regexp-util/-/regexp-util-1.2.2.tgz#5cf599134921eb0d776e41d41e9c0da33f0fa2fc" @@ -3631,7 +3560,7 @@ semver@^6.0.0, semver@^6.3.0: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== -semver@^7.3.7: +semver@^7.3.7, semver@^7.5.4: version "7.5.4" resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== @@ -3861,6 +3790,11 @@ trough@^1.0.0: resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406" integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA== +ts-api-utils@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.0.3.tgz#f12c1c781d04427313dbac808f453f050e54a331" + integrity sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg== + ts-jest@^29.1.0: version "29.1.0" resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.0.tgz#4a9db4104a49b76d2b368ea775b6c9535c603891" @@ -3902,18 +3836,6 @@ ts-node@^10.5.0: v8-compile-cache-lib "^3.0.0" yn "3.1.1" -tsc-alias@^1.8.6: - version "1.8.6" - resolved "https://registry.yarnpkg.com/tsc-alias/-/tsc-alias-1.8.6.tgz#28300ed398e90b1c600548ed956f58dfbecc1589" - integrity sha512-vq+i6VpE83IeMsSJVcFN03ZBofADhr8/gIJXjxpbnTRfN/MFXy0+SBaKG2o7p95QqXBGkeG98HYz3IkOOveFbg== - dependencies: - chokidar "^3.5.3" - commander "^9.0.0" - globby "^11.0.4" - mylas "^2.1.9" - normalize-path "^3.0.0" - plimit-lit "^1.2.6" - tsc-multi@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/tsc-multi/-/tsc-multi-1.1.0.tgz#0e2b03c0ed0ac58ecb556f11709441102d202680" From 8daf11fd9f6399eefeebe61b344fec7523c83991 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 20 Sep 2023 18:07:15 -0400 Subject: [PATCH 087/725] release: 4.9.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1ed3fbdcb..d9141eb34 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.8.0" + ".": "4.9.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e5c25e6a1..3a079127e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.9.0 (2023-09-20) + +Full Changelog: [v4.8.0...v4.9.0](https://github.com/openai/openai-node/compare/v4.8.0...v4.9.0) + +### Features + +* **client:** support importing node or web shims manually ([#325](https://github.com/openai/openai-node/issues/325)) ([628f293](https://github.com/openai/openai-node/commit/628f2935a8791625685f68f73db8f3759b8f4f91)) + ## 4.8.0 (2023-09-15) Full Changelog: [v4.7.1...v4.8.0](https://github.com/openai/openai-node/compare/v4.7.1...v4.8.0) diff --git a/package.json b/package.json index 36bd588ac..85d526612 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.8.0", + "version": "4.9.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 5ae204f4b..7e0a988a4 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.8.0'; // x-release-please-version +export const VERSION = '4.9.0'; // x-release-please-version From 5e05b31c132545ce166cea92c5f3e4410fd40711 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 21 Sep 2023 12:28:09 -0400 Subject: [PATCH 088/725] docs(README): fix variable names in some examples (#327) --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 2b5f53335..898bb5c6b 100644 --- a/README.md +++ b/README.md @@ -28,12 +28,12 @@ const openai = new OpenAI({ }); async function main() { - const completion = await openai.chat.completions.create({ + const chatCompletion = await openai.chat.completions.create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-3.5-turbo', }); - console.log(completion.choices); + console.log(chatCompletion.choices); } main(); @@ -81,7 +81,7 @@ async function main() { messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-3.5-turbo', }; - const completion: OpenAI.Chat.ChatCompletion = await openai.chat.completions.create(params); + const chatCompletion: OpenAI.Chat.ChatCompletion = await openai.chat.completions.create(params); } main(); @@ -226,8 +226,8 @@ You can use `for await … of` syntax to iterate through items across all pages: async function fetchAllFineTuningJobs(params) { const allFineTuningJobs = []; // Automatically fetches more pages as needed. - for await (const job of openai.fineTuning.jobs.list({ limit: 20 })) { - allFineTuningJobs.push(job); + for await (const fineTuningJob of openai.fineTuning.jobs.list({ limit: 20 })) { + allFineTuningJobs.push(fineTuningJob); } return allFineTuningJobs; } @@ -237,8 +237,8 @@ Alternatively, you can make request a single page at a time: ```ts let page = await openai.fineTuning.jobs.list({ limit: 20 }); -for (const job of page.data) { - console.log(job); +for (const fineTuningJob of page.data) { + console.log(fineTuningJob); } // Convenience methods are provided for manually paginating: @@ -265,11 +265,11 @@ const response = await openai.chat.completions console.log(response.headers.get('X-My-Header')); console.log(response.statusText); // access the underlying Response object -const { data: completions, response: raw } = await openai.chat.completions +const { data: chatCompletion, response: raw } = await openai.chat.completions .create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-3.5-turbo' }) .withResponse(); console.log(raw.headers.get('X-My-Header')); -console.log(completions.choices); +console.log(chatCompletion.choices); ``` ## Configuring an HTTP(S) Agent (e.g., for proxies) From d8ebe75cbaae7e4165ad61c8becfa3975fa5a76d Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 21 Sep 2023 12:28:27 -0400 Subject: [PATCH 089/725] release: 4.9.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d9141eb34..25b3c3259 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.9.0" + ".": "4.9.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a079127e..ec37e8079 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.9.1 (2023-09-21) + +Full Changelog: [v4.9.0...v4.9.1](https://github.com/openai/openai-node/compare/v4.9.0...v4.9.1) + +### Documentation + +* **README:** fix variable names in some examples ([#327](https://github.com/openai/openai-node/issues/327)) ([5e05b31](https://github.com/openai/openai-node/commit/5e05b31c132545ce166cea92c5f3e4410fd40711)) + ## 4.9.0 (2023-09-20) Full Changelog: [v4.8.0...v4.9.0](https://github.com/openai/openai-node/compare/v4.8.0...v4.9.0) diff --git a/package.json b/package.json index 85d526612..4754e3626 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.9.0", + "version": "4.9.1", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 7e0a988a4..093c16710 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.9.0'; // x-release-please-version +export const VERSION = '4.9.1'; // x-release-please-version From e5f385233737002b4bb47a94cba33da7fedfe64d Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 21 Sep 2023 14:51:50 -0400 Subject: [PATCH 090/725] feat(api): add 'gpt-3.5-turbo-instruct', fine-tune error objects, update documentation (#329) --- src/resources/chat/completions.ts | 22 +++++----- src/resources/completions.ts | 8 ++-- src/resources/edits.ts | 5 ++- src/resources/embeddings.ts | 2 +- src/resources/files.ts | 2 +- src/resources/fine-tuning/jobs.ts | 69 +++++++++++++++++++++++-------- 6 files changed, 74 insertions(+), 34 deletions(-) diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 76e645445..18338c669 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -75,10 +75,11 @@ export namespace ChatCompletion { /** * The reason the model stopped generating tokens. This will be `stop` if the model * hit a natural stop point or a provided stop sequence, `length` if the maximum - * number of tokens specified in the request was reached, or `function_call` if the - * model called a function. + * number of tokens specified in the request was reached, `content_filter` if + * content was omitted due to a flag from our content filters, or `function_call` + * if the model called a function. */ - finish_reason: 'stop' | 'length' | 'function_call'; + finish_reason: 'stop' | 'length' | 'function_call' | 'content_filter'; /** * The index of the choice in the list of choices. @@ -134,8 +135,9 @@ export namespace ChatCompletionChunk { /** * The reason the model stopped generating tokens. This will be `stop` if the model * hit a natural stop point or a provided stop sequence, `length` if the maximum - * number of tokens specified in the request was reached, or `function_call` if the - * model called a function. + * number of tokens specified in the request was reached, `content_filter` if + * content was omitted due to a flag from our content filters, or `function_call` + * if the model called a function. */ finish_reason: 'stop' | 'length' | 'function_call' | null; @@ -331,11 +333,11 @@ export interface ChatCompletionCreateParamsBase { frequency_penalty?: number | null; /** - * Controls how the model responds to function calls. "none" means the model does - * not call a function, and responds to the end-user. "auto" means the model can + * Controls how the model responds to function calls. `none` means the model does + * not call a function, and responds to the end-user. `auto` means the model can * pick between an end-user or calling a function. Specifying a particular function - * via `{"name": "my_function"}` forces the model to call that function. "none" is - * the default when no functions are present. "auto" is the default if functions + * via `{"name": "my_function"}` forces the model to call that function. `none` is + * the default when no functions are present. `auto` is the default if functions * are present. */ function_call?: 'none' | 'auto' | ChatCompletionCreateParams.FunctionCallOption; @@ -365,7 +367,7 @@ export interface ChatCompletionCreateParamsBase { * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) * for counting tokens. */ - max_tokens?: number; + max_tokens?: number | null; /** * How many chat completion choices to generate for each input message. diff --git a/src/resources/completions.ts b/src/resources/completions.ts index 21f46e63b..33fa7b258 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -68,10 +68,11 @@ export interface Completion { export interface CompletionChoice { /** * The reason the model stopped generating tokens. This will be `stop` if the model - * hit a natural stop point or a provided stop sequence, or `length` if the maximum - * number of tokens specified in the request was reached. + * hit a natural stop point or a provided stop sequence, `length` if the maximum + * number of tokens specified in the request was reached, or `content_filter` if + * content was omitted due to a flag from our content filters. */ - finish_reason: 'stop' | 'length'; + finish_reason: 'stop' | 'length' | 'content_filter'; index: number; @@ -126,6 +127,7 @@ export interface CompletionCreateParamsBase { | (string & {}) | 'babbage-002' | 'davinci-002' + | 'gpt-3.5-turbo-instruct' | 'text-davinci-003' | 'text-davinci-002' | 'text-davinci-001' diff --git a/src/resources/edits.ts b/src/resources/edits.ts index 0d23cbb6e..2b6798364 100644 --- a/src/resources/edits.ts +++ b/src/resources/edits.ts @@ -44,8 +44,9 @@ export namespace Edit { export interface Choice { /** * The reason the model stopped generating tokens. This will be `stop` if the model - * hit a natural stop point or a provided stop sequence, or `length` if the maximum - * number of tokens specified in the request was reached. + * hit a natural stop point or a provided stop sequence, `length` if the maximum + * number of tokens specified in the request was reached, or `content_filter` if + * content was omitted due to a flag from our content filters. */ finish_reason: 'stop' | 'length'; diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index 5b6484ed5..ab9fac8d4 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -82,7 +82,7 @@ export interface EmbeddingCreateParams { * Input text to embed, encoded as a string or array of tokens. To embed multiple * inputs in a single request, pass an array of strings or array of token arrays. * Each input must not exceed the max input tokens for the model (8191 tokens for - * `text-embedding-ada-002`). + * `text-embedding-ada-002`) and cannot be an empty string. * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) * for counting tokens. */ diff --git a/src/resources/files.ts b/src/resources/files.ts index 5ce8096e0..630020214 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -41,7 +41,7 @@ export class Files extends APIResource { } /** - * Returns the contents of the specified file + * Returns the contents of the specified file. */ retrieveContent(fileId: string, options?: Core.RequestOptions): Core.APIPromise { return this.get(`/files/${fileId}/content`, { diff --git a/src/resources/fine-tuning/jobs.ts b/src/resources/fine-tuning/jobs.ts index 2c8ad1049..85f5c0f54 100644 --- a/src/resources/fine-tuning/jobs.ts +++ b/src/resources/fine-tuning/jobs.ts @@ -3,7 +3,6 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; import { isRequestOptions } from 'openai/core'; -import * as Files from 'openai/resources/files'; import * as API from './index'; import { CursorPage, CursorPageParams } from 'openai/pagination'; @@ -105,10 +104,23 @@ export interface FineTuningJob { created_at: number; /** - * The name of the fine-tuned model that is being created. + * For fine-tuning jobs that have `failed`, this will contain more information on + * the cause of the failure. + */ + error: FineTuningJob.Error | null; + + /** + * The name of the fine-tuned model that is being created. The value will be null + * if the fine-tuning job is still running. */ fine_tuned_model: string | null; + /** + * The Unix timestamp (in seconds) for when the fine-tuning job was finished. The + * value will be null if the fine-tuning job is still running. + */ + finished_at: number | null; + /** * The hyperparameters used for the fine-tuning job. See the * [fine-tuning guide](https://platform.openai.com/docs/guides/fine-tuning) for @@ -132,38 +144,61 @@ export interface FineTuningJob { organization_id: string; /** - * The compiled results files for the fine-tuning job. + * The compiled results file ID(s) for the fine-tuning job. You can retrieve the + * results with the + * [Files API](https://platform.openai.com/docs/api-reference/files/retrieve-contents). */ - result_files: Array; + result_files: Array; /** - * The current status of the fine-tuning job, which can be either `created`, - * `pending`, `running`, `succeeded`, `failed`, or `cancelled`. + * The current status of the fine-tuning job, which can be either + * `validating_files`, `queued`, `running`, `succeeded`, `failed`, or `cancelled`. */ status: string; /** - * The total number of billable tokens processed by this fine tuning job. + * The total number of billable tokens processed by this fine-tuning job. The value + * will be null if the fine-tuning job is still running. */ - trained_tokens: number; + trained_tokens: number | null; /** - * The file ID used for training. + * The file ID used for training. You can retrieve the training data with the + * [Files API](https://platform.openai.com/docs/api-reference/files/retrieve-contents). */ training_file: string; /** - * The file ID used for validation. + * The file ID used for validation. You can retrieve the validation results with + * the + * [Files API](https://platform.openai.com/docs/api-reference/files/retrieve-contents). */ validation_file: string | null; +} +export namespace FineTuningJob { /** - * The Unix timestamp (in seconds) for when the fine-tuning job was finished. + * For fine-tuning jobs that have `failed`, this will contain more information on + * the cause of the failure. */ - finished_at?: number; -} + export interface Error { + /** + * A machine-readable error code. + */ + code: string; + + /** + * A human-readable error message. + */ + message: string; + + /** + * The parameter that was invalid, usually `training_file` or `validation_file`. + * This field will be null if the failure was not parameter-specific. + */ + param: string | null; + } -export namespace FineTuningJob { /** * The hyperparameters used for the fine-tuning job. See the * [fine-tuning guide](https://platform.openai.com/docs/guides/fine-tuning) for @@ -172,11 +207,11 @@ export namespace FineTuningJob { export interface Hyperparameters { /** * The number of epochs to train the model for. An epoch refers to one full cycle - * through the training dataset. "Auto" decides the optimal number of epochs based + * through the training dataset. "auto" decides the optimal number of epochs based * on the size of the dataset. If setting the number manually, we support any * number between 1 and 50 epochs. */ - n_epochs?: 'auto' | number; + n_epochs: 'auto' | number; } } @@ -219,7 +254,7 @@ export interface JobCreateParams { hyperparameters?: JobCreateParams.Hyperparameters; /** - * A string of up to 40 characters that will be added to your fine-tuned model + * A string of up to 18 characters that will be added to your fine-tuned model * name. * * For example, a `suffix` of "custom-model-name" would produce a model name like From dd57062c2976920d22c7efdc0f44df8afedffee2 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 21 Sep 2023 14:52:08 -0400 Subject: [PATCH 091/725] release: 4.10.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 25b3c3259..7a2c6223d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.9.1" + ".": "4.10.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ec37e8079..e1810b0c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.10.0 (2023-09-21) + +Full Changelog: [v4.9.1...v4.10.0](https://github.com/openai/openai-node/compare/v4.9.1...v4.10.0) + +### Features + +* **api:** add 'gpt-3.5-turbo-instruct', fine-tune error objects, update documentation ([#329](https://github.com/openai/openai-node/issues/329)) ([e5f3852](https://github.com/openai/openai-node/commit/e5f385233737002b4bb47a94cba33da7fedfe64d)) + ## 4.9.1 (2023-09-21) Full Changelog: [v4.9.0...v4.9.1](https://github.com/openai/openai-node/compare/v4.9.0...v4.9.1) diff --git a/package.json b/package.json index 4754e3626..df892786a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.9.1", + "version": "4.10.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 093c16710..37e598a80 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.9.1'; // x-release-please-version +export const VERSION = '4.10.0'; // x-release-please-version From b514ec230e44d0ee524f478cdf30288de939885a Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 21 Sep 2023 14:56:17 -0400 Subject: [PATCH 092/725] release: 4.10.0 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1810b0c8..edf69aa6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,14 @@ Full Changelog: [v4.9.1...v4.10.0](https://github.com/openai/openai-node/compare * **api:** add 'gpt-3.5-turbo-instruct', fine-tune error objects, update documentation ([#329](https://github.com/openai/openai-node/issues/329)) ([e5f3852](https://github.com/openai/openai-node/commit/e5f385233737002b4bb47a94cba33da7fedfe64d)) +## 4.10.0 (2023-09-21) + +Full Changelog: [v4.9.1...v4.10.0](https://github.com/openai/openai-node/compare/v4.9.1...v4.10.0) + +### Features + +* **api:** add 'gpt-3.5-turbo-instruct', fine-tune error objects, update documentation ([#329](https://github.com/openai/openai-node/issues/329)) ([e5f3852](https://github.com/openai/openai-node/commit/e5f385233737002b4bb47a94cba33da7fedfe64d)) + ## 4.9.1 (2023-09-21) Full Changelog: [v4.9.0...v4.9.1](https://github.com/openai/openai-node/compare/v4.9.0...v4.9.1) From fd2337b018ab2f31bcea8f9feda0ddaf755390c7 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 22 Sep 2023 18:51:10 -0400 Subject: [PATCH 093/725] chore(internal): bump lock file (#334) --- yarn.lock | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/yarn.lock b/yarn.lock index d7a57abaa..a31198557 100644 --- a/yarn.lock +++ b/yarn.lock @@ -380,10 +380,10 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" -"@eslint/js@8.49.0": - version "8.49.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.49.0.tgz#86f79756004a97fa4df866835093f1df3d03c333" - integrity sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w== +"@eslint/js@8.50.0": + version "8.50.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.50.0.tgz#9e93b850f0f3fa35f5fa59adfd03adae8488e484" + integrity sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ== "@glimmer/env@0.1.7": version "0.1.7" @@ -1721,14 +1721,14 @@ eslint-visitor-keys@^3.4.3: integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== eslint@^8.49.0: - version "8.49.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.49.0.tgz#09d80a89bdb4edee2efcf6964623af1054bf6d42" - integrity sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ== + version "8.50.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.50.0.tgz#2ae6015fee0240fcd3f83e1e25df0287f487d6b2" + integrity sha512-FOnOGSuFuFLv/Sa+FDVRZl4GGVAAFFi8LecRsI5a1tMO5HIE8nCm4ivAlzt4dT3ol/PaaGC0rJEEXQmHJBGoOg== dependencies: "@eslint-community/eslint-utils" "^4.2.0" "@eslint-community/regexpp" "^4.6.1" "@eslint/eslintrc" "^2.1.2" - "@eslint/js" "8.49.0" + "@eslint/js" "8.50.0" "@humanwhocodes/config-array" "^0.11.11" "@humanwhocodes/module-importer" "^1.0.1" "@nodelib/fs.walk" "^1.2.8" From 462bcda7140611afa20bc25de4aec6d4b205b37d Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 25 Sep 2023 09:59:38 -0400 Subject: [PATCH 094/725] feat(package): export a root error type (#338) --- src/core.ts | 24 +++++++++++++++--------- src/error.ts | 4 +++- src/index.ts | 6 ++++-- src/streaming.ts | 9 +++++---- 4 files changed, 27 insertions(+), 16 deletions(-) diff --git a/src/core.ts b/src/core.ts index a151d9d1a..4aa51a127 100644 --- a/src/core.ts +++ b/src/core.ts @@ -1,6 +1,12 @@ import { VERSION } from './version'; import { Stream } from './streaming'; -import { APIError, APIConnectionError, APIConnectionTimeoutError, APIUserAbortError } from './error'; +import { + OpenAIError, + APIError, + APIConnectionError, + APIConnectionTimeoutError, + APIUserAbortError, +} from './error'; import { kind as shimsKind, type Readable, @@ -440,7 +446,7 @@ export abstract class APIClient { if (value === null) { return `${encodeURIComponent(key)}=`; } - throw new Error( + throw new OpenAIError( `Cannot stringify type ${typeof value}; Expected string, number, boolean, or null. If you need to pass nested query parameters, you can manually encode them, e.g. { query: { 'foo[key1]': value1, 'foo[key2]': value2 } }, and please open a GitHub issue requesting better support for your use case.`, ); }) @@ -599,7 +605,7 @@ export abstract class AbstractPage implements AsyncIterable { async getNextPage(): Promise { const nextInfo = this.nextPageInfo(); if (!nextInfo) { - throw new Error( + throw new OpenAIError( 'No next page expected; please check `.hasNextPage()` before calling `.getNextPage()`.', ); } @@ -925,10 +931,10 @@ export const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve const validatePositiveInteger = (name: string, n: unknown): number => { if (typeof n !== 'number' || !Number.isInteger(n)) { - throw new Error(`${name} must be an integer`); + throw new OpenAIError(`${name} must be an integer`); } if (n < 0) { - throw new Error(`${name} must be a positive integer`); + throw new OpenAIError(`${name} must be a positive integer`); } return n; }; @@ -939,7 +945,7 @@ export const castToError = (err: any): Error => { }; export const ensurePresent = (value: T | null | undefined): T => { - if (value == null) throw new Error(`Expected a value to be given but received ${value} instead.`); + if (value == null) throw new OpenAIError(`Expected a value to be given but received ${value} instead.`); return value; }; @@ -962,14 +968,14 @@ export const coerceInteger = (value: unknown): number => { if (typeof value === 'number') return Math.round(value); if (typeof value === 'string') return parseInt(value, 10); - throw new Error(`Could not coerce ${value} (type: ${typeof value}) into a number`); + throw new OpenAIError(`Could not coerce ${value} (type: ${typeof value}) into a number`); }; export const coerceFloat = (value: unknown): number => { if (typeof value === 'number') return value; if (typeof value === 'string') return parseFloat(value); - throw new Error(`Could not coerce ${value} (type: ${typeof value}) into a number`); + throw new OpenAIError(`Could not coerce ${value} (type: ${typeof value}) into a number`); }; export const coerceBoolean = (value: unknown): boolean => { @@ -1073,5 +1079,5 @@ export const toBase64 = (str: string | null | undefined): string => { return btoa(str); } - throw new Error('Cannot generate b64 string; Expected `Buffer` or `btoa` to be defined'); + throw new OpenAIError('Cannot generate b64 string; Expected `Buffer` or `btoa` to be defined'); }; diff --git a/src/error.ts b/src/error.ts index 39f91b229..873087c78 100644 --- a/src/error.ts +++ b/src/error.ts @@ -2,7 +2,9 @@ import { castToError, Headers } from './core'; -export class APIError extends Error { +export class OpenAIError extends Error {} + +export class APIError extends OpenAIError { readonly status: number | undefined; readonly headers: Headers | undefined; readonly error: Object | undefined; diff --git a/src/index.ts b/src/index.ts index 2ecbb6546..c36f37379 100644 --- a/src/index.ts +++ b/src/index.ts @@ -103,7 +103,7 @@ export class OpenAI extends Core.APIClient { ...opts }: ClientOptions = {}) { if (apiKey === undefined) { - throw new Error( + throw new Errors.OpenAIError( "The OPENAI_API_KEY environment variable is missing or empty; either provide it, or instantiate the OpenAI client with an apiKey option, like new OpenAI({ apiKey: 'my apiKey' }).", ); } @@ -116,7 +116,7 @@ export class OpenAI extends Core.APIClient { }; if (!options.dangerouslyAllowBrowser && Core.isRunningInBrowser()) { - throw new Error( + throw new Errors.OpenAIError( "It looks like you're running in a browser-like environment.\n\nThis is disabled by default, as it risks exposing your secret API credentials to attackers.\nIf you understand the risks and have appropriate mitigations in place,\nyou can set the `dangerouslyAllowBrowser` option to `true`, e.g.,\n\nnew OpenAI({ apiKey, dangerouslyAllowBrowser: true });\n\nhttps://help.openai.com/en/articles/5112595-best-practices-for-api-key-safety\n", ); } @@ -164,6 +164,7 @@ export class OpenAI extends Core.APIClient { static OpenAI = this; + static OpenAIError = Errors.OpenAIError; static APIError = Errors.APIError; static APIConnectionError = Errors.APIConnectionError; static APIConnectionTimeoutError = Errors.APIConnectionTimeoutError; @@ -179,6 +180,7 @@ export class OpenAI extends Core.APIClient { } export const { + OpenAIError, APIError, APIConnectionError, APIConnectionTimeoutError, diff --git a/src/streaming.ts b/src/streaming.ts index 21dedbb0f..6ce851282 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -1,4 +1,5 @@ import { type Response } from './_shims/index'; +import { OpenAIError } from './error'; type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined; @@ -23,7 +24,7 @@ export class Stream implements AsyncIterable { private async *iterMessages(): AsyncGenerator { if (!this.response.body) { this.controller.abort(); - throw new Error(`Attempted to iterate over a response with no body`); + throw new OpenAIError(`Attempted to iterate over a response with no body`); } const lineDecoder = new LineDecoder(); @@ -198,7 +199,7 @@ class LineDecoder { return Buffer.from(bytes).toString(); } - throw new Error( + throw new OpenAIError( `Unexpected: received non-Uint8Array (${bytes.constructor.name}) stream chunk in an environment with a global "Buffer" defined, which this library assumes to be Node. Please report this error.`, ); } @@ -210,14 +211,14 @@ class LineDecoder { return this.textDecoder.decode(bytes); } - throw new Error( + throw new OpenAIError( `Unexpected: received non-Uint8Array/ArrayBuffer (${ (bytes as any).constructor.name }) in a web platform. Please report this error.`, ); } - throw new Error( + throw new OpenAIError( `Unexpected: neither Buffer nor TextDecoder are available as globals. Please report this error.`, ); } From 1bf84b672c386f8ca46bb8fc120eb8d8d48b3a82 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 25 Sep 2023 11:59:24 -0400 Subject: [PATCH 095/725] chore(internal): update lock file (#339) --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index a31198557..901ac9da1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -878,9 +878,9 @@ integrity sha512-G/AdOadiZhnJp0jXCaBQU449W2h716OW/EoXeYkCytxKL06X1WCXB4DZpp8TpZ8eyIJVS1cw4lrlkkSYU21cDw== "@types/semver@^7.5.0": - version "7.5.2" - resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.2.tgz#31f6eec1ed7ec23f4f05608d3a2d381df041f564" - integrity sha512-7aqorHYgdNO4DM36stTiGO3DvKoex9TQRwsJU6vMaFGyqpBA1MNZkz+PG3gaNUPpTAOYhT1WR7M1JyA3fbS9Cw== + version "7.5.3" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.3.tgz#9a726e116beb26c24f1ccd6850201e1246122e04" + integrity sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw== "@types/stack-utils@^2.0.0": version "2.0.1" From b6dd38488ea7cc4c22495f16d027b7ffdb87da53 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 25 Sep 2023 14:22:30 -0400 Subject: [PATCH 096/725] feat(client): handle retry-after with a date (#340) --- src/core.ts | 43 ++++++++++++----------- yarn.lock | 98 ++++++++++++++++++++++++++--------------------------- 2 files changed, 73 insertions(+), 68 deletions(-) diff --git a/src/core.ts b/src/core.ts index 4aa51a127..a715f4507 100644 --- a/src/core.ts +++ b/src/core.ts @@ -509,32 +509,37 @@ export abstract class APIClient { retriesRemaining -= 1; // About the Retry-After header: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Retry-After - // - // TODO: we may want to handle the case where the header is using the http-date syntax: "Retry-After: ". - // See https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Retry-After#syntax for details. - const retryAfter = parseInt(responseHeaders?.['retry-after'] || ''); + let timeoutMillis: number | undefined; + const retryAfterHeader = responseHeaders?.['retry-after']; + if (retryAfterHeader) { + const timeoutSeconds = parseInt(retryAfterHeader); + if (!Number.isNaN(timeoutSeconds)) { + timeoutMillis = timeoutSeconds * 1000; + } else { + timeoutMillis = Date.parse(retryAfterHeader) - Date.now(); + } + } - const maxRetries = options.maxRetries ?? this.maxRetries; - const timeout = this.calculateRetryTimeoutSeconds(retriesRemaining, retryAfter, maxRetries) * 1000; - await sleep(timeout); + // If the API asks us to wait a certain amount of time (and it's a reasonable amount), + // just do what it says, but otherwise calculate a default + if ( + !timeoutMillis || + !Number.isInteger(timeoutMillis) || + timeoutMillis <= 0 || + timeoutMillis > 60 * 1000 + ) { + const maxRetries = options.maxRetries ?? this.maxRetries; + timeoutMillis = this.calculateDefaultRetryTimeoutMillis(retriesRemaining, maxRetries); + } + await sleep(timeoutMillis); return this.makeRequest(options, retriesRemaining); } - private calculateRetryTimeoutSeconds( - retriesRemaining: number, - retryAfter: number, - maxRetries: number, - ): number { + private calculateDefaultRetryTimeoutMillis(retriesRemaining: number, maxRetries: number): number { const initialRetryDelay = 0.5; const maxRetryDelay = 2; - // If the API asks us to wait a certain amount of time (and it's a reasonable amount), - // just do what it says. - if (Number.isInteger(retryAfter) && retryAfter <= 60) { - return retryAfter; - } - const numRetries = maxRetries - retriesRemaining; // Apply exponential backoff, but not more than the max. @@ -543,7 +548,7 @@ export abstract class APIClient { // Apply some jitter, plus-or-minus half a second. const jitter = Math.random() - 0.5; - return sleepSeconds + jitter; + return (sleepSeconds + jitter) * 1000; } private getUserAgent(): string { diff --git a/yarn.lock b/yarn.lock index 901ac9da1..c02ef2b4e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -905,15 +905,15 @@ "@types/yargs-parser" "*" "@typescript-eslint/eslint-plugin@^6.7.0": - version "6.7.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.7.2.tgz#f18cc75c9cceac8080a9dc2e7d166008c5207b9f" - integrity sha512-ooaHxlmSgZTM6CHYAFRlifqh1OAr3PAQEwi7lhYhaegbnXrnh7CDcHmc3+ihhbQC7H0i4JF0psI5ehzkF6Yl6Q== + version "6.7.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.7.3.tgz#d98046e9f7102d49a93d944d413c6055c47fafd7" + integrity sha512-vntq452UHNltxsaaN+L9WyuMch8bMd9CqJ3zhzTPXXidwbf5mqqKCVXEuvRZUqLJSTLeWE65lQwyXsRGnXkCTA== dependencies: "@eslint-community/regexpp" "^4.5.1" - "@typescript-eslint/scope-manager" "6.7.2" - "@typescript-eslint/type-utils" "6.7.2" - "@typescript-eslint/utils" "6.7.2" - "@typescript-eslint/visitor-keys" "6.7.2" + "@typescript-eslint/scope-manager" "6.7.3" + "@typescript-eslint/type-utils" "6.7.3" + "@typescript-eslint/utils" "6.7.3" + "@typescript-eslint/visitor-keys" "6.7.3" debug "^4.3.4" graphemer "^1.4.0" ignore "^5.2.4" @@ -922,31 +922,31 @@ ts-api-utils "^1.0.1" "@typescript-eslint/parser@^6.7.0": - version "6.7.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.7.2.tgz#e0ae93771441b9518e67d0660c79e3a105497af4" - integrity sha512-KA3E4ox0ws+SPyxQf9iSI25R6b4Ne78ORhNHeVKrPQnoYsb9UhieoiRoJgrzgEeKGOXhcY1i8YtOeCHHTDa6Fw== - dependencies: - "@typescript-eslint/scope-manager" "6.7.2" - "@typescript-eslint/types" "6.7.2" - "@typescript-eslint/typescript-estree" "6.7.2" - "@typescript-eslint/visitor-keys" "6.7.2" + version "6.7.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.7.3.tgz#aaf40092a32877439e5957e18f2d6a91c82cc2fd" + integrity sha512-TlutE+iep2o7R8Lf+yoer3zU6/0EAUc8QIBB3GYBc1KGz4c4TRm83xwXUZVPlZ6YCLss4r77jbu6j3sendJoiQ== + dependencies: + "@typescript-eslint/scope-manager" "6.7.3" + "@typescript-eslint/types" "6.7.3" + "@typescript-eslint/typescript-estree" "6.7.3" + "@typescript-eslint/visitor-keys" "6.7.3" debug "^4.3.4" -"@typescript-eslint/scope-manager@6.7.2": - version "6.7.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.7.2.tgz#cf59a2095d2f894770c94be489648ad1c78dc689" - integrity sha512-bgi6plgyZjEqapr7u2mhxGR6E8WCzKNUFWNh6fkpVe9+yzRZeYtDTbsIBzKbcxI+r1qVWt6VIoMSNZ4r2A+6Yw== +"@typescript-eslint/scope-manager@6.7.3": + version "6.7.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.7.3.tgz#07e5709c9bdae3eaf216947433ef97b3b8b7d755" + integrity sha512-wOlo0QnEou9cHO2TdkJmzF7DFGvAKEnB82PuPNHpT8ZKKaZu6Bm63ugOTn9fXNJtvuDPanBc78lGUGGytJoVzQ== dependencies: - "@typescript-eslint/types" "6.7.2" - "@typescript-eslint/visitor-keys" "6.7.2" + "@typescript-eslint/types" "6.7.3" + "@typescript-eslint/visitor-keys" "6.7.3" -"@typescript-eslint/type-utils@6.7.2": - version "6.7.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.7.2.tgz#ed921c9db87d72fa2939fee242d700561454f367" - integrity sha512-36F4fOYIROYRl0qj95dYKx6kybddLtsbmPIYNK0OBeXv2j9L5nZ17j9jmfy+bIDHKQgn2EZX+cofsqi8NPATBQ== +"@typescript-eslint/type-utils@6.7.3": + version "6.7.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.7.3.tgz#c2c165c135dda68a5e70074ade183f5ad68f3400" + integrity sha512-Fc68K0aTDrKIBvLnKTZ5Pf3MXK495YErrbHb1R6aTpfK5OdSFj0rVN7ib6Tx6ePrZ2gsjLqr0s98NG7l96KSQw== dependencies: - "@typescript-eslint/typescript-estree" "6.7.2" - "@typescript-eslint/utils" "6.7.2" + "@typescript-eslint/typescript-estree" "6.7.3" + "@typescript-eslint/utils" "6.7.3" debug "^4.3.4" ts-api-utils "^1.0.1" @@ -955,10 +955,10 @@ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.45.0.tgz#794760b9037ee4154c09549ef5a96599621109c5" integrity sha512-QQij+u/vgskA66azc9dCmx+rev79PzX8uDHpsqSjEFtfF2gBUTRCpvYMh2gw2ghkJabNkPlSUCimsyBEQZd1DA== -"@typescript-eslint/types@6.7.2": - version "6.7.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.7.2.tgz#75a615a6dbeca09cafd102fe7f465da1d8a3c066" - integrity sha512-flJYwMYgnUNDAN9/GAI3l8+wTmvTYdv64fcH8aoJK76Y+1FCZ08RtI5zDerM/FYT5DMkAc+19E4aLmd5KqdFyg== +"@typescript-eslint/types@6.7.3": + version "6.7.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.7.3.tgz#0402b5628a63f24f2dc9d4a678e9a92cc50ea3e9" + integrity sha512-4g+de6roB2NFcfkZb439tigpAMnvEIg3rIjWQ+EM7IBaYt/CdJt6em9BJ4h4UpdgaBWdmx2iWsafHTrqmgIPNw== "@typescript-eslint/typescript-estree@5.45.0": version "5.45.0" @@ -973,30 +973,30 @@ semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/typescript-estree@6.7.2": - version "6.7.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.7.2.tgz#ce5883c23b581a5caf878af641e49dd0349238c7" - integrity sha512-kiJKVMLkoSciGyFU0TOY0fRxnp9qq1AzVOHNeN1+B9erKFCJ4Z8WdjAkKQPP+b1pWStGFqezMLltxO+308dJTQ== +"@typescript-eslint/typescript-estree@6.7.3": + version "6.7.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.7.3.tgz#ec5bb7ab4d3566818abaf0e4a8fa1958561b7279" + integrity sha512-YLQ3tJoS4VxLFYHTw21oe1/vIZPRqAO91z6Uv0Ss2BKm/Ag7/RVQBcXTGcXhgJMdA4U+HrKuY5gWlJlvoaKZ5g== dependencies: - "@typescript-eslint/types" "6.7.2" - "@typescript-eslint/visitor-keys" "6.7.2" + "@typescript-eslint/types" "6.7.3" + "@typescript-eslint/visitor-keys" "6.7.3" debug "^4.3.4" globby "^11.1.0" is-glob "^4.0.3" semver "^7.5.4" ts-api-utils "^1.0.1" -"@typescript-eslint/utils@6.7.2": - version "6.7.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.7.2.tgz#b9ef0da6f04932167a9222cb4ac59cb187165ebf" - integrity sha512-ZCcBJug/TS6fXRTsoTkgnsvyWSiXwMNiPzBUani7hDidBdj1779qwM1FIAmpH4lvlOZNF3EScsxxuGifjpLSWQ== +"@typescript-eslint/utils@6.7.3": + version "6.7.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.7.3.tgz#96c655816c373135b07282d67407cb577f62e143" + integrity sha512-vzLkVder21GpWRrmSR9JxGZ5+ibIUSudXlW52qeKpzUEQhRSmyZiVDDj3crAth7+5tmN1ulvgKaCU2f/bPRCzg== dependencies: "@eslint-community/eslint-utils" "^4.4.0" "@types/json-schema" "^7.0.12" "@types/semver" "^7.5.0" - "@typescript-eslint/scope-manager" "6.7.2" - "@typescript-eslint/types" "6.7.2" - "@typescript-eslint/typescript-estree" "6.7.2" + "@typescript-eslint/scope-manager" "6.7.3" + "@typescript-eslint/types" "6.7.3" + "@typescript-eslint/typescript-estree" "6.7.3" semver "^7.5.4" "@typescript-eslint/visitor-keys@5.45.0": @@ -1007,12 +1007,12 @@ "@typescript-eslint/types" "5.45.0" eslint-visitor-keys "^3.3.0" -"@typescript-eslint/visitor-keys@6.7.2": - version "6.7.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.7.2.tgz#4cb2bd786f1f459731b0ad1584c9f73e1c7a4d5c" - integrity sha512-uVw9VIMFBUTz8rIeaUT3fFe8xIUx8r4ywAdlQv1ifH+6acn/XF8Y6rwJ7XNmkNMDrTW+7+vxFFPIF40nJCVsMQ== +"@typescript-eslint/visitor-keys@6.7.3": + version "6.7.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.7.3.tgz#83809631ca12909bd2083558d2f93f5747deebb2" + integrity sha512-HEVXkU9IB+nk9o63CeICMHxFWbHWr3E1mpilIQBe9+7L/lH97rleFLVtYsfnWB+JVMaiFnEaxvknvmIzX+CqVg== dependencies: - "@typescript-eslint/types" "6.7.2" + "@typescript-eslint/types" "6.7.3" eslint-visitor-keys "^3.4.1" abort-controller@^3.0.0: From 0001f062728b0e2047d2bf03b9d947a4be0c7206 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 26 Sep 2023 01:04:58 -0400 Subject: [PATCH 097/725] chore(internal): update lock file (#342) --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index c02ef2b4e..31af2fa43 100644 --- a/yarn.lock +++ b/yarn.lock @@ -356,9 +356,9 @@ eslint-visitor-keys "^3.3.0" "@eslint-community/regexpp@^4.5.1": - version "4.8.1" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.8.1.tgz#8c4bb756cc2aa7eaf13cfa5e69c83afb3260c20c" - integrity sha512-PWiOzLIUAjN/w5K17PoF4n6sKBw0gqLHPhywmYHP4t1VFQQVYeb1yWsJwnMVEMl3tUHME7X/SJPZLmtG7XBDxQ== + version "4.8.2" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.8.2.tgz#26585b7c0ba36362893d3a3c206ee0c57c389616" + integrity sha512-0MGxAVt1m/ZK+LTJp/j0qF7Hz97D9O/FH9Ms3ltnyIdDD57cbb1ACIQTkbHvNXtWDv5TPq7w5Kq56+cNukbo7g== "@eslint-community/regexpp@^4.6.1": version "4.6.2" From a02ac8e7f881551527a3cbcadad53b7e424650e8 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 27 Sep 2023 05:44:52 +0100 Subject: [PATCH 098/725] chore(internal): update lock file (#343) --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 31af2fa43..fb2b9a2c1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -356,9 +356,9 @@ eslint-visitor-keys "^3.3.0" "@eslint-community/regexpp@^4.5.1": - version "4.8.2" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.8.2.tgz#26585b7c0ba36362893d3a3c206ee0c57c389616" - integrity sha512-0MGxAVt1m/ZK+LTJp/j0qF7Hz97D9O/FH9Ms3ltnyIdDD57cbb1ACIQTkbHvNXtWDv5TPq7w5Kq56+cNukbo7g== + version "4.9.0" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.9.0.tgz#7ccb5f58703fa61ffdcbf39e2c604a109e781162" + integrity sha512-zJmuCWj2VLBt4c25CfBIbMZLGLyhkvs7LznyVX5HfpzeocThgIj5XQK4L+g3U36mMcx8bPMhGyPpwCATamC4jQ== "@eslint-community/regexpp@^4.6.1": version "4.6.2" From f10c757d831d90407ba47b4659d9cd34b1a35b1d Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 29 Sep 2023 09:27:37 +0100 Subject: [PATCH 099/725] fix(api): add content_filter to chat completion finish reason (#344) --- src/resources/chat/completions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 18338c669..b72b595d2 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -139,7 +139,7 @@ export namespace ChatCompletionChunk { * content was omitted due to a flag from our content filters, or `function_call` * if the model called a function. */ - finish_reason: 'stop' | 'length' | 'function_call' | null; + finish_reason: 'stop' | 'length' | 'function_call' | 'content_filter' | null; /** * The index of the choice in the list of choices. From 3e28dcf90d25f89f9e706090b4b5b81b098d9925 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 29 Sep 2023 09:27:56 +0100 Subject: [PATCH 100/725] release: 4.11.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 22 ++++++++++++++++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 25 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7a2c6223d..58acdf5b1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.10.0" + ".": "4.11.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index edf69aa6a..5b7f19589 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## 4.11.0 (2023-09-29) + +Full Changelog: [v4.10.0...v4.11.0](https://github.com/openai/openai-node/compare/v4.10.0...v4.11.0) + +### Features + +* **client:** handle retry-after with a date ([#340](https://github.com/openai/openai-node/issues/340)) ([b6dd384](https://github.com/openai/openai-node/commit/b6dd38488ea7cc4c22495f16d027b7ffdb87da53)) +* **package:** export a root error type ([#338](https://github.com/openai/openai-node/issues/338)) ([462bcda](https://github.com/openai/openai-node/commit/462bcda7140611afa20bc25de4aec6d4b205b37d)) + + +### Bug Fixes + +* **api:** add content_filter to chat completion finish reason ([#344](https://github.com/openai/openai-node/issues/344)) ([f10c757](https://github.com/openai/openai-node/commit/f10c757d831d90407ba47b4659d9cd34b1a35b1d)) + + +### Chores + +* **internal:** bump lock file ([#334](https://github.com/openai/openai-node/issues/334)) ([fd2337b](https://github.com/openai/openai-node/commit/fd2337b018ab2f31bcea8f9feda0ddaf755390c7)) +* **internal:** update lock file ([#339](https://github.com/openai/openai-node/issues/339)) ([1bf84b6](https://github.com/openai/openai-node/commit/1bf84b672c386f8ca46bb8fc120eb8d8d48b3a82)) +* **internal:** update lock file ([#342](https://github.com/openai/openai-node/issues/342)) ([0001f06](https://github.com/openai/openai-node/commit/0001f062728b0e2047d2bf03b9d947a4be0c7206)) +* **internal:** update lock file ([#343](https://github.com/openai/openai-node/issues/343)) ([a02ac8e](https://github.com/openai/openai-node/commit/a02ac8e7f881551527a3cbcadad53b7e424650e8)) + ## 4.10.0 (2023-09-21) Full Changelog: [v4.9.1...v4.10.0](https://github.com/openai/openai-node/compare/v4.9.1...v4.10.0) diff --git a/package.json b/package.json index df892786a..0087741fe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.10.0", + "version": "4.11.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 37e598a80..ac2d33f18 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.10.0'; // x-release-please-version +export const VERSION = '4.11.0'; // x-release-please-version From f29a67cf43eee3ae77bec843c2c3933e5cbbcde4 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 3 Oct 2023 00:22:35 -0400 Subject: [PATCH 101/725] test: use `TEST_API_BASE_URL` in tests (#345) --- bin/check-test-server | 4 ++-- tests/api-resources/audio/transcriptions.test.ts | 5 ++++- tests/api-resources/audio/translations.test.ts | 5 ++++- tests/api-resources/chat/completions.test.ts | 5 ++++- tests/api-resources/completions.test.ts | 5 ++++- tests/api-resources/edits.test.ts | 5 ++++- tests/api-resources/embeddings.test.ts | 5 ++++- tests/api-resources/files.test.ts | 5 ++++- tests/api-resources/fine-tunes.test.ts | 5 ++++- tests/api-resources/fine-tuning/jobs.test.ts | 5 ++++- tests/api-resources/images.test.ts | 5 ++++- tests/api-resources/models.test.ts | 5 ++++- tests/api-resources/moderations.test.ts | 5 ++++- tests/index.test.ts | 2 +- 14 files changed, 51 insertions(+), 15 deletions(-) diff --git a/bin/check-test-server b/bin/check-test-server index 34efa9dac..a6fa34950 100755 --- a/bin/check-test-server +++ b/bin/check-test-server @@ -10,13 +10,13 @@ function prism_is_running() { } function is_overriding_api_base_url() { - [ -n "$API_BASE_URL" ] + [ -n "$TEST_API_BASE_URL" ] } if is_overriding_api_base_url ; then # If someone is running the tests against the live API, we can trust they know # what they're doing and exit early. - echo -e "${GREEN}✔ Running tests against ${API_BASE_URL}${NC}" + echo -e "${GREEN}✔ Running tests against ${TEST_API_BASE_URL}${NC}" exit 0 elif prism_is_running ; then diff --git a/tests/api-resources/audio/transcriptions.test.ts b/tests/api-resources/audio/transcriptions.test.ts index f9b2aade4..ce0f5e389 100644 --- a/tests/api-resources/audio/transcriptions.test.ts +++ b/tests/api-resources/audio/transcriptions.test.ts @@ -3,7 +3,10 @@ import OpenAI, { toFile } from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ + apiKey: 'something1234', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); describe('resource transcriptions', () => { test('create: only required params', async () => { diff --git a/tests/api-resources/audio/translations.test.ts b/tests/api-resources/audio/translations.test.ts index 92cffa51b..903c18909 100644 --- a/tests/api-resources/audio/translations.test.ts +++ b/tests/api-resources/audio/translations.test.ts @@ -3,7 +3,10 @@ import OpenAI, { toFile } from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ + apiKey: 'something1234', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); describe('resource translations', () => { test('create: only required params', async () => { diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 1c8a02fd9..e917ca62f 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -3,7 +3,10 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ + apiKey: 'something1234', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); describe('resource completions', () => { test('create: only required params', async () => { diff --git a/tests/api-resources/completions.test.ts b/tests/api-resources/completions.test.ts index 4f4e4cdc3..c4d09793d 100644 --- a/tests/api-resources/completions.test.ts +++ b/tests/api-resources/completions.test.ts @@ -3,7 +3,10 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ + apiKey: 'something1234', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); describe('resource completions', () => { test('create: only required params', async () => { diff --git a/tests/api-resources/edits.test.ts b/tests/api-resources/edits.test.ts index 7b23c1ca5..8acf37951 100644 --- a/tests/api-resources/edits.test.ts +++ b/tests/api-resources/edits.test.ts @@ -3,7 +3,10 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ + apiKey: 'something1234', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); describe('resource edits', () => { test('create: only required params', async () => { diff --git a/tests/api-resources/embeddings.test.ts b/tests/api-resources/embeddings.test.ts index cb8b8f9e0..23a33b30c 100644 --- a/tests/api-resources/embeddings.test.ts +++ b/tests/api-resources/embeddings.test.ts @@ -3,7 +3,10 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ + apiKey: 'something1234', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); describe('resource embeddings', () => { test('create: only required params', async () => { diff --git a/tests/api-resources/files.test.ts b/tests/api-resources/files.test.ts index d75fa5067..daa70c2ae 100644 --- a/tests/api-resources/files.test.ts +++ b/tests/api-resources/files.test.ts @@ -3,7 +3,10 @@ import OpenAI, { toFile } from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ + apiKey: 'something1234', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); describe('resource files', () => { test('create: only required params', async () => { diff --git a/tests/api-resources/fine-tunes.test.ts b/tests/api-resources/fine-tunes.test.ts index 48429a90a..6a48a8381 100644 --- a/tests/api-resources/fine-tunes.test.ts +++ b/tests/api-resources/fine-tunes.test.ts @@ -3,7 +3,10 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ + apiKey: 'something1234', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); describe('resource fineTunes', () => { test('create: only required params', async () => { diff --git a/tests/api-resources/fine-tuning/jobs.test.ts b/tests/api-resources/fine-tuning/jobs.test.ts index fbcc9c388..6222a6a3e 100644 --- a/tests/api-resources/fine-tuning/jobs.test.ts +++ b/tests/api-resources/fine-tuning/jobs.test.ts @@ -3,7 +3,10 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ + apiKey: 'something1234', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); describe('resource jobs', () => { test('create: only required params', async () => { diff --git a/tests/api-resources/images.test.ts b/tests/api-resources/images.test.ts index f9dabcb3e..55a5c22cd 100644 --- a/tests/api-resources/images.test.ts +++ b/tests/api-resources/images.test.ts @@ -3,7 +3,10 @@ import OpenAI, { toFile } from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ + apiKey: 'something1234', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); describe('resource images', () => { test('createVariation: only required params', async () => { diff --git a/tests/api-resources/models.test.ts b/tests/api-resources/models.test.ts index 3d9608376..d3c06b8a7 100644 --- a/tests/api-resources/models.test.ts +++ b/tests/api-resources/models.test.ts @@ -3,7 +3,10 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ + apiKey: 'something1234', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); describe('resource models', () => { test('retrieve', async () => { diff --git a/tests/api-resources/moderations.test.ts b/tests/api-resources/moderations.test.ts index 910e8e5a2..798710ce7 100644 --- a/tests/api-resources/moderations.test.ts +++ b/tests/api-resources/moderations.test.ts @@ -3,7 +3,10 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/' }); +const openai = new OpenAI({ + apiKey: 'something1234', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); describe('resource moderations', () => { test('create: only required params', async () => { diff --git a/tests/index.test.ts b/tests/index.test.ts index 93f44fe9e..bbb4b2135 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -98,7 +98,7 @@ describe('instantiate client', () => { test('custom signal', async () => { const client = new OpenAI({ - baseURL: 'http://127.0.0.1:4010/', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', apiKey: 'my api key', fetch: (...args) => { return new Promise((resolve, reject) => From 4bbbedf03307d76c91c67df4760473dc9a4bb2b9 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 3 Oct 2023 00:22:54 -0400 Subject: [PATCH 102/725] release: 4.11.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 4 ++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 58acdf5b1..b6e1475f8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.11.0" + ".": "4.11.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b7f19589..e6dd1fbc4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 4.11.1 (2023-10-03) + +Full Changelog: [v4.11.0...v4.11.1](https://github.com/openai/openai-node/compare/v4.11.0...v4.11.1) + ## 4.11.0 (2023-09-29) Full Changelog: [v4.10.0...v4.11.0](https://github.com/openai/openai-node/compare/v4.10.0...v4.11.0) diff --git a/package.json b/package.json index 0087741fe..42b15ca74 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.11.0", + "version": "4.11.1", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index ac2d33f18..0cf9c693e 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.11.0'; // x-release-please-version +export const VERSION = '4.11.1'; // x-release-please-version From a4b401e91a0b3fbf55aedfb6ed6d93396377bf27 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 5 Oct 2023 14:06:05 -0400 Subject: [PATCH 103/725] feat(api): remove `content_filter` stop_reason and update documentation (#352) --- src/resources/chat/completions.ts | 29 +++++++++++++++-------------- src/resources/completions.ts | 8 ++++---- src/resources/embeddings.ts | 2 +- src/resources/files.ts | 16 ++++++++-------- src/resources/fine-tunes.ts | 3 +++ src/resources/fine-tuning/jobs.ts | 3 +++ 6 files changed, 34 insertions(+), 27 deletions(-) diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index b72b595d2..71479caa2 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -99,7 +99,7 @@ export namespace ChatCompletion { */ export interface ChatCompletionChunk { /** - * A unique identifier for the chat completion chunk. + * A unique identifier for the chat completion. Each chunk has the same ID. */ id: string; @@ -110,7 +110,8 @@ export interface ChatCompletionChunk { choices: Array; /** - * The Unix timestamp (in seconds) of when the chat completion chunk was created. + * The Unix timestamp (in seconds) of when the chat completion was created. Each + * chunk has the same timestamp. */ created: number; @@ -139,7 +140,7 @@ export namespace ChatCompletionChunk { * content was omitted due to a flag from our content filters, or `function_call` * if the model called a function. */ - finish_reason: 'stop' | 'length' | 'function_call' | 'content_filter' | null; + finish_reason: 'stop' | 'length' | 'function_call' | null; /** * The index of the choice in the list of choices. @@ -300,7 +301,7 @@ export type ChatCompletionCreateParams = export interface ChatCompletionCreateParamsBase { /** * A list of messages comprising the conversation so far. - * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_format_inputs_to_ChatGPT_models.ipynb). + * [Example Python code](https://cookbook.openai.com/examples/how_to_format_inputs_to_chatgpt_models). */ messages: Array; @@ -333,12 +334,12 @@ export interface ChatCompletionCreateParamsBase { frequency_penalty?: number | null; /** - * Controls how the model responds to function calls. `none` means the model does - * not call a function, and responds to the end-user. `auto` means the model can - * pick between an end-user or calling a function. Specifying a particular function - * via `{"name": "my_function"}` forces the model to call that function. `none` is - * the default when no functions are present. `auto` is the default if functions - * are present. + * Controls how the model calls functions. "none" means the model will not call a + * function and instead generates a message. "auto" means the model can pick + * between generating a message or calling a function. Specifying a particular + * function via `{"name": "my_function"}` forces the model to call that function. + * "none" is the default when no functions are present. "auto" is the default if + * functions are present. */ function_call?: 'none' | 'auto' | ChatCompletionCreateParams.FunctionCallOption; @@ -364,7 +365,7 @@ export interface ChatCompletionCreateParamsBase { * * The total length of input tokens and generated tokens is limited by the model's * context length. - * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) + * [Example Python code](https://cookbook.openai.com/examples/how_to_count_tokens_with_tiktoken) * for counting tokens. */ max_tokens?: number | null; @@ -394,7 +395,7 @@ export interface ChatCompletionCreateParamsBase { * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) * as they become available, with the stream terminated by a `data: [DONE]` * message. - * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). + * [Example Python code](https://cookbook.openai.com/examples/how_to_stream_completions). */ stream?: boolean | null; @@ -474,7 +475,7 @@ export interface ChatCompletionCreateParamsNonStreaming extends ChatCompletionCr * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) * as they become available, with the stream terminated by a `data: [DONE]` * message. - * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). + * [Example Python code](https://cookbook.openai.com/examples/how_to_stream_completions). */ stream?: false | null; } @@ -491,7 +492,7 @@ export interface ChatCompletionCreateParamsStreaming extends ChatCompletionCreat * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) * as they become available, with the stream terminated by a `data: [DONE]` * message. - * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). + * [Example Python code](https://cookbook.openai.com/examples/how_to_stream_completions). */ stream: true; } diff --git a/src/resources/completions.ts b/src/resources/completions.ts index 33fa7b258..591384cde 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -205,7 +205,7 @@ export interface CompletionCreateParamsBase { * * The token count of your prompt plus `max_tokens` cannot exceed the model's * context length. - * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) + * [Example Python code](https://cookbook.openai.com/examples/how_to_count_tokens_with_tiktoken) * for counting tokens. */ max_tokens?: number | null; @@ -240,7 +240,7 @@ export interface CompletionCreateParamsBase { * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) * as they become available, with the stream terminated by a `data: [DONE]` * message. - * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). + * [Example Python code](https://cookbook.openai.com/examples/how_to_stream_completions). */ stream?: boolean | null; @@ -287,7 +287,7 @@ export interface CompletionCreateParamsNonStreaming extends CompletionCreatePara * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) * as they become available, with the stream terminated by a `data: [DONE]` * message. - * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). + * [Example Python code](https://cookbook.openai.com/examples/how_to_stream_completions). */ stream?: false | null; } @@ -299,7 +299,7 @@ export interface CompletionCreateParamsStreaming extends CompletionCreateParamsB * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) * as they become available, with the stream terminated by a `data: [DONE]` * message. - * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_stream_completions.ipynb). + * [Example Python code](https://cookbook.openai.com/examples/how_to_stream_completions). */ stream: true; } diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index ab9fac8d4..8806a8a43 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -83,7 +83,7 @@ export interface EmbeddingCreateParams { * inputs in a single request, pass an array of strings or array of token arrays. * Each input must not exceed the max input tokens for the model (8191 tokens for * `text-embedding-ada-002`) and cannot be an empty string. - * [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_count_tokens_with_tiktoken.ipynb) + * [Example Python code](https://cookbook.openai.com/examples/how_to_count_tokens_with_tiktoken) * for counting tokens. */ input: string | Array | Array | Array>; diff --git a/src/resources/files.ts b/src/resources/files.ts index 630020214..62669183a 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -10,10 +10,10 @@ import { Page } from 'openai/pagination'; export class Files extends APIResource { /** - * Upload a file that contains document(s) to be used across various - * endpoints/features. Currently, the size of all the files uploaded by one - * organization can be up to 1 GB. Please contact us if you need to increase the - * storage limit. + * Upload a file that can be used across various endpoints/features. Currently, the + * size of all the files uploaded by one organization can be up to 1 GB. Please + * [contact us](https://help.openai.com/) if you need to increase the storage + * limit. */ create(body: FileCreateParams, options?: Core.RequestOptions): Core.APIPromise { return this.post('/files', multipartFormRequestOptions({ body, ...options })); @@ -143,19 +143,19 @@ export interface FileObject { export interface FileCreateParams { /** - * Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be - * uploaded. + * The file object (not file name) to be uploaded. * * If the `purpose` is set to "fine-tune", the file will be used for fine-tuning. */ file: Uploadable; /** - * The intended purpose of the uploaded documents. + * The intended purpose of the uploaded file. * * Use "fine-tune" for * [fine-tuning](https://platform.openai.com/docs/api-reference/fine-tuning). This - * allows us to validate the format of the uploaded file. + * allows us to validate the format of the uploaded file is correct for + * fine-tuning. */ purpose: string; } diff --git a/src/resources/fine-tunes.ts b/src/resources/fine-tunes.ts index c65cdd47a..682aee42b 100644 --- a/src/resources/fine-tunes.ts +++ b/src/resources/fine-tunes.ts @@ -204,6 +204,9 @@ export namespace FineTune { } } +/** + * Fine-tune event object + */ export interface FineTuneEvent { created_at: number; diff --git a/src/resources/fine-tuning/jobs.ts b/src/resources/fine-tuning/jobs.ts index 85f5c0f54..2a46ef183 100644 --- a/src/resources/fine-tuning/jobs.ts +++ b/src/resources/fine-tuning/jobs.ts @@ -215,6 +215,9 @@ export namespace FineTuningJob { } } +/** + * Fine-tuning job event object + */ export interface FineTuningJobEvent { id: string; From 3799863da4ff2a27940ef0b7e57360c72e44d986 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 5 Oct 2023 19:29:20 -0400 Subject: [PATCH 104/725] chore(internal): minor formatting improvement (#354) --- src/streaming.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/streaming.ts b/src/streaming.ts index 6ce851282..7f9ebe0a0 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -26,6 +26,7 @@ export class Stream implements AsyncIterable { this.controller.abort(); throw new OpenAIError(`Attempted to iterate over a response with no body`); } + const lineDecoder = new LineDecoder(); const iter = readableStreamAsyncIterable(this.response.body); From fc71a4b6b73208ff3e8f0c8792a9a03e3790d26b Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 6 Oct 2023 14:27:45 -0400 Subject: [PATCH 105/725] fix: prevent ReferenceError, update compatibility to ES2020 and Node 18+ (#356) --- README.md | 2 +- package.json | 1 + src/_shims/node-runtime.ts | 4 ++-- tsconfig.json | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 898bb5c6b..30220f95b 100644 --- a/README.md +++ b/README.md @@ -313,7 +313,7 @@ TypeScript >= 4.5 is supported. The following runtimes are supported: -- Node.js 16 LTS or later ([non-EOL](https://endoflife.date/nodejs)) versions. +- Node.js 18 LTS or later ([non-EOL](https://endoflife.date/nodejs)) versions. - Deno v1.28.0 or higher, using `import OpenAI from "npm:openai"`. - Bun 1.0 or later. - Cloudflare Workers. diff --git a/package.json b/package.json index 42b15ca74..55047091f 100644 --- a/package.json +++ b/package.json @@ -82,6 +82,7 @@ "prepublishOnly": "echo 'to publish, run yarn build && (cd dist; yarn publish)' && exit 1", "format": "prettier --write --cache --cache-strategy metadata . !dist", "tsn": "ts-node -r tsconfig-paths/register", + "lint": "eslint --ext ts,js .", "fix": "eslint --fix --ext ts,js ." }, "dependencies": { diff --git a/src/_shims/node-runtime.ts b/src/_shims/node-runtime.ts index 2e5ab5631..e2398e2b3 100644 --- a/src/_shims/node-runtime.ts +++ b/src/_shims/node-runtime.ts @@ -59,8 +59,8 @@ async function getMultipartRequestOptions export function getRuntime(): Shims { // Polyfill global object if needed. if (typeof AbortController === 'undefined') { - // @ts-ignore - AbortController = AbortControllerPolyfill; + // @ts-expect-error (the types are subtly different, but compatible in practice) + globalThis.AbortController = AbortControllerPolyfill; } return { kind: 'node', diff --git a/tsconfig.json b/tsconfig.json index 801835f0c..4bc150677 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "include": ["src", "tests", "examples"], "exclude": ["src/_shims/**/*-deno.ts"], "compilerOptions": { - "target": "es2019", + "target": "es2020", "lib": ["es2020"], "module": "commonjs", "moduleResolution": "node", From bb815d0373ae33f58329e34e8983f5b3881db22d Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 11 Oct 2023 06:09:16 -0400 Subject: [PATCH 106/725] feat: re-export chat completion types at the top level, and work around webpack limitations (#365) - eliminate circular imports, which cause runtime errors in webpack dev bundles - move `n_epochs` under `hyperparameters` --- src/index.ts | 74 +++++++++++--------- src/pagination.ts | 6 +- src/resources/audio/audio.ts | 22 +++--- src/resources/audio/transcriptions.ts | 6 +- src/resources/audio/translations.ts | 6 +- src/resources/chat/chat.ts | 31 ++++---- src/resources/chat/completions.ts | 42 +++++------ src/resources/completions.ts | 18 ++--- src/resources/edits.ts | 10 +-- src/resources/embeddings.ts | 10 +-- src/resources/files.ts | 14 ++-- src/resources/fine-tunes.ts | 56 +++++++++------ src/resources/fine-tuning/fine-tuning.ts | 21 +++--- src/resources/fine-tuning/jobs.ts | 22 +++--- src/resources/images.ts | 12 ++-- src/resources/index.ts | 2 +- src/resources/models.ts | 10 ++- src/resources/moderations.ts | 8 +-- tests/api-resources/chat/completions.test.ts | 8 +-- tests/api-resources/fine-tunes.test.ts | 2 +- 20 files changed, 194 insertions(+), 186 deletions(-) diff --git a/src/index.ts b/src/index.ts index c36f37379..daa24ff51 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,10 +2,10 @@ import * as Core from './core'; import * as Pagination from './pagination'; -import * as API from './resources/index'; import * as Errors from './error'; import { type Agent } from './_shims/index'; import * as Uploads from './uploads'; +import * as API from 'openai/resources/index'; export interface ClientOptions { /** @@ -213,61 +213,69 @@ export namespace OpenAI { export import CursorPageResponse = Pagination.CursorPageResponse; export import Completions = API.Completions; - export import Completion = API.Completion; - export import CompletionChoice = API.CompletionChoice; - export import CompletionUsage = API.CompletionUsage; - export import CompletionCreateParams = API.CompletionCreateParams; - export import CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; - export import CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; + export type Completion = API.Completion; + export type CompletionChoice = API.CompletionChoice; + export type CompletionUsage = API.CompletionUsage; + export type CompletionCreateParams = API.CompletionCreateParams; + export type CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; + export type CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; export import Chat = API.Chat; + export type ChatCompletion = API.ChatCompletion; + export type ChatCompletionChunk = API.ChatCompletionChunk; + export type ChatCompletionMessage = API.ChatCompletionMessage; + export type ChatCompletionMessageParam = API.ChatCompletionMessageParam; + export type ChatCompletionRole = API.ChatCompletionRole; + export type ChatCompletionCreateParams = API.ChatCompletionCreateParams; + export type ChatCompletionCreateParamsNonStreaming = API.ChatCompletionCreateParamsNonStreaming; + export type ChatCompletionCreateParamsStreaming = API.ChatCompletionCreateParamsStreaming; export import Edits = API.Edits; - export import Edit = API.Edit; - export import EditCreateParams = API.EditCreateParams; + export type Edit = API.Edit; + export type EditCreateParams = API.EditCreateParams; export import Embeddings = API.Embeddings; - export import CreateEmbeddingResponse = API.CreateEmbeddingResponse; - export import Embedding = API.Embedding; - export import EmbeddingCreateParams = API.EmbeddingCreateParams; + export type CreateEmbeddingResponse = API.CreateEmbeddingResponse; + export type Embedding = API.Embedding; + export type EmbeddingCreateParams = API.EmbeddingCreateParams; export import Files = API.Files; - export import FileContent = API.FileContent; - export import FileDeleted = API.FileDeleted; - export import FileObject = API.FileObject; + export type FileContent = API.FileContent; + export type FileDeleted = API.FileDeleted; + export type FileObject = API.FileObject; export import FileObjectsPage = API.FileObjectsPage; - export import FileCreateParams = API.FileCreateParams; + export type FileCreateParams = API.FileCreateParams; export import Images = API.Images; - export import Image = API.Image; - export import ImagesResponse = API.ImagesResponse; - export import ImageCreateVariationParams = API.ImageCreateVariationParams; - export import ImageEditParams = API.ImageEditParams; - export import ImageGenerateParams = API.ImageGenerateParams; + export type Image = API.Image; + export type ImagesResponse = API.ImagesResponse; + export type ImageCreateVariationParams = API.ImageCreateVariationParams; + export type ImageEditParams = API.ImageEditParams; + export type ImageGenerateParams = API.ImageGenerateParams; export import Audio = API.Audio; export import Moderations = API.Moderations; - export import Moderation = API.Moderation; - export import ModerationCreateResponse = API.ModerationCreateResponse; - export import ModerationCreateParams = API.ModerationCreateParams; + export type Moderation = API.Moderation; + export type ModerationCreateResponse = API.ModerationCreateResponse; + export type ModerationCreateParams = API.ModerationCreateParams; export import Models = API.Models; - export import Model = API.Model; - export import ModelDeleted = API.ModelDeleted; + export type Model = API.Model; + export type ModelDeleted = API.ModelDeleted; export import ModelsPage = API.ModelsPage; export import FineTuning = API.FineTuning; export import FineTunes = API.FineTunes; - export import FineTune = API.FineTune; - export import FineTuneEvent = API.FineTuneEvent; - export import FineTuneEventsListResponse = API.FineTuneEventsListResponse; + export type FineTune = API.FineTune; + export type FineTuneEvent = API.FineTuneEvent; + export type FineTuneEventsListResponse = API.FineTuneEventsListResponse; export import FineTunesPage = API.FineTunesPage; - export import FineTuneCreateParams = API.FineTuneCreateParams; - export import FineTuneListEventsParams = API.FineTuneListEventsParams; - export import FineTuneListEventsParamsNonStreaming = API.FineTuneListEventsParamsNonStreaming; - export import FineTuneListEventsParamsStreaming = API.FineTuneListEventsParamsStreaming; + export type FineTuneCreateParams = API.FineTuneCreateParams; + export type FineTuneListEventsParams = API.FineTuneListEventsParams; + export type FineTuneListEventsParamsNonStreaming = API.FineTuneListEventsParamsNonStreaming; + export type FineTuneListEventsParamsStreaming = API.FineTuneListEventsParamsStreaming; } export default OpenAI; diff --git a/src/pagination.ts b/src/pagination.ts index a9ffb1f47..a52b55f5b 100644 --- a/src/pagination.ts +++ b/src/pagination.ts @@ -12,15 +12,15 @@ export interface PageResponse { * Note: no pagination actually occurs yet, this is for forwards-compatibility. */ export class Page extends AbstractPage implements PageResponse { - object: string; - data: Array; + object: string; + constructor(client: APIClient, response: Response, body: PageResponse, options: FinalRequestOptions) { super(client, response, body, options); - this.object = body.object; this.data = body.data; + this.object = body.object; } getPaginatedItems(): Item[] { diff --git a/src/resources/audio/audio.ts b/src/resources/audio/audio.ts index 5061b2000..0514c0d99 100644 --- a/src/resources/audio/audio.ts +++ b/src/resources/audio/audio.ts @@ -1,21 +1,19 @@ // File generated from our OpenAPI spec by Stainless. import { APIResource } from 'openai/resource'; -import { Transcriptions } from './transcriptions'; -import { Translations } from './translations'; -import * as API from './index'; +import * as TranscriptionsAPI from 'openai/resources/audio/transcriptions'; +import * as TranslationsAPI from 'openai/resources/audio/translations'; export class Audio extends APIResource { - transcriptions: Transcriptions = new Transcriptions(this.client); - translations: Translations = new Translations(this.client); + transcriptions: TranscriptionsAPI.Transcriptions = new TranscriptionsAPI.Transcriptions(this.client); + translations: TranslationsAPI.Translations = new TranslationsAPI.Translations(this.client); } export namespace Audio { - export import Transcriptions = API.Transcriptions; - export import Transcription = API.Transcription; - export import TranscriptionCreateParams = API.TranscriptionCreateParams; - - export import Translations = API.Translations; - export import Translation = API.Translation; - export import TranslationCreateParams = API.TranslationCreateParams; + export import Transcriptions = TranscriptionsAPI.Transcriptions; + export type Transcription = TranscriptionsAPI.Transcription; + export type TranscriptionCreateParams = TranscriptionsAPI.TranscriptionCreateParams; + export import Translations = TranslationsAPI.Translations; + export type Translation = TranslationsAPI.Translation; + export type TranslationCreateParams = TranslationsAPI.TranslationCreateParams; } diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index 5819804bd..d34663d24 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -2,7 +2,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; -import * as API from './index'; +import * as TranscriptionsAPI from 'openai/resources/audio/transcriptions'; import { type Uploadable, multipartFormRequestOptions } from 'openai/core'; export class Transcriptions extends APIResource { @@ -62,6 +62,6 @@ export interface TranscriptionCreateParams { } export namespace Transcriptions { - export import Transcription = API.Transcription; - export import TranscriptionCreateParams = API.TranscriptionCreateParams; + export type Transcription = TranscriptionsAPI.Transcription; + export type TranscriptionCreateParams = TranscriptionsAPI.TranscriptionCreateParams; } diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index 7043c2c3b..52e3cf3a5 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -2,7 +2,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; -import * as API from './index'; +import * as TranslationsAPI from 'openai/resources/audio/translations'; import { type Uploadable, multipartFormRequestOptions } from 'openai/core'; export class Translations extends APIResource { @@ -55,6 +55,6 @@ export interface TranslationCreateParams { } export namespace Translations { - export import Translation = API.Translation; - export import TranslationCreateParams = API.TranslationCreateParams; + export type Translation = TranslationsAPI.Translation; + export type TranslationCreateParams = TranslationsAPI.TranslationCreateParams; } diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 6ef43dd7a..4532dd3f0 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -1,25 +1,24 @@ // File generated from our OpenAPI spec by Stainless. import { APIResource } from 'openai/resource'; -import { Completions } from './completions'; -import * as API from './index'; +import * as CompletionsAPI from 'openai/resources/chat/completions'; export class Chat extends APIResource { - completions: Completions = new Completions(this.client); + completions: CompletionsAPI.Completions = new CompletionsAPI.Completions(this.client); } export namespace Chat { - export import Completions = API.Completions; - export import ChatCompletion = API.ChatCompletion; - export import ChatCompletionChunk = API.ChatCompletionChunk; - export import ChatCompletionMessage = API.ChatCompletionMessage; - export import ChatCompletionMessageParam = API.ChatCompletionMessageParam; - export import ChatCompletionRole = API.ChatCompletionRole; - export import CreateChatCompletionRequestMessage = API.CreateChatCompletionRequestMessage; - export import ChatCompletionCreateParams = API.ChatCompletionCreateParams; - export import CompletionCreateParams = API.CompletionCreateParams; - export import ChatCompletionCreateParamsNonStreaming = API.ChatCompletionCreateParamsNonStreaming; - export import CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; - export import ChatCompletionCreateParamsStreaming = API.ChatCompletionCreateParamsStreaming; - export import CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; + export import Completions = CompletionsAPI.Completions; + export type ChatCompletion = CompletionsAPI.ChatCompletion; + export type ChatCompletionChunk = CompletionsAPI.ChatCompletionChunk; + export type ChatCompletionMessage = CompletionsAPI.ChatCompletionMessage; + export type ChatCompletionMessageParam = CompletionsAPI.ChatCompletionMessageParam; + export type ChatCompletionRole = CompletionsAPI.ChatCompletionRole; + export type CreateChatCompletionRequestMessage = CompletionsAPI.CreateChatCompletionRequestMessage; + export type ChatCompletionCreateParams = CompletionsAPI.ChatCompletionCreateParams; + export type CompletionCreateParams = CompletionsAPI.CompletionCreateParams; + export type ChatCompletionCreateParamsNonStreaming = CompletionsAPI.ChatCompletionCreateParamsNonStreaming; + export type CompletionCreateParamsNonStreaming = CompletionsAPI.CompletionCreateParamsNonStreaming; + export type ChatCompletionCreateParamsStreaming = CompletionsAPI.ChatCompletionCreateParamsStreaming; + export type CompletionCreateParamsStreaming = CompletionsAPI.CompletionCreateParamsStreaming; } diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 71479caa2..3ea6e3c77 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -3,8 +3,8 @@ import * as Core from 'openai/core'; import { APIPromise } from 'openai/core'; import { APIResource } from 'openai/resource'; -import * as Completions_ from 'openai/resources/completions'; -import * as API from './index'; +import * as ChatCompletionsAPI from 'openai/resources/chat/completions'; +import * as CompletionsAPI from 'openai/resources/completions'; import { Stream } from 'openai/streaming'; export class Completions extends APIResource { @@ -67,7 +67,7 @@ export interface ChatCompletion { /** * Usage statistics for the completion request. */ - usage?: Completions_.CompletionUsage; + usage?: CompletionsAPI.CompletionUsage; } export namespace ChatCompletion { @@ -89,7 +89,7 @@ export namespace ChatCompletion { /** * A chat completion message generated by the model. */ - message: ChatCompletionMessage; + message: ChatCompletionsAPI.ChatCompletionMessage; } } @@ -140,7 +140,7 @@ export namespace ChatCompletionChunk { * content was omitted due to a flag from our content filters, or `function_call` * if the model called a function. */ - finish_reason: 'stop' | 'length' | 'function_call' | null; + finish_reason: 'stop' | 'length' | 'function_call' | 'content_filter' | null; /** * The index of the choice in the list of choices. @@ -167,7 +167,7 @@ export namespace ChatCompletionChunk { /** * The role of the author of this message. */ - role?: ChatCompletionRole; + role?: ChatCompletionsAPI.ChatCompletionRole; } export namespace Delta { @@ -459,8 +459,9 @@ export namespace ChatCompletionCreateParams { description?: string; } - export type ChatCompletionCreateParamsNonStreaming = API.ChatCompletionCreateParamsNonStreaming; - export type ChatCompletionCreateParamsStreaming = API.ChatCompletionCreateParamsStreaming; + export type ChatCompletionCreateParamsNonStreaming = + ChatCompletionsAPI.ChatCompletionCreateParamsNonStreaming; + export type ChatCompletionCreateParamsStreaming = ChatCompletionsAPI.ChatCompletionCreateParamsStreaming; } /** @@ -503,16 +504,17 @@ export interface ChatCompletionCreateParamsStreaming extends ChatCompletionCreat export type CompletionCreateParamsStreaming = ChatCompletionCreateParamsStreaming; export namespace Completions { - export import ChatCompletion = API.ChatCompletion; - export import ChatCompletionChunk = API.ChatCompletionChunk; - export import ChatCompletionMessage = API.ChatCompletionMessage; - export import ChatCompletionMessageParam = API.ChatCompletionMessageParam; - export import ChatCompletionRole = API.ChatCompletionRole; - export import CreateChatCompletionRequestMessage = API.CreateChatCompletionRequestMessage; - export import ChatCompletionCreateParams = API.ChatCompletionCreateParams; - export import CompletionCreateParams = API.CompletionCreateParams; - export import ChatCompletionCreateParamsNonStreaming = API.ChatCompletionCreateParamsNonStreaming; - export import CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; - export import ChatCompletionCreateParamsStreaming = API.ChatCompletionCreateParamsStreaming; - export import CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; + export type ChatCompletion = ChatCompletionsAPI.ChatCompletion; + export type ChatCompletionChunk = ChatCompletionsAPI.ChatCompletionChunk; + export type ChatCompletionMessage = ChatCompletionsAPI.ChatCompletionMessage; + export type ChatCompletionMessageParam = ChatCompletionsAPI.ChatCompletionMessageParam; + export type ChatCompletionRole = ChatCompletionsAPI.ChatCompletionRole; + export type CreateChatCompletionRequestMessage = ChatCompletionsAPI.CreateChatCompletionRequestMessage; + export type ChatCompletionCreateParams = ChatCompletionsAPI.ChatCompletionCreateParams; + export type CompletionCreateParams = ChatCompletionsAPI.CompletionCreateParams; + export type ChatCompletionCreateParamsNonStreaming = + ChatCompletionsAPI.ChatCompletionCreateParamsNonStreaming; + export type CompletionCreateParamsNonStreaming = ChatCompletionsAPI.CompletionCreateParamsNonStreaming; + export type ChatCompletionCreateParamsStreaming = ChatCompletionsAPI.ChatCompletionCreateParamsStreaming; + export type CompletionCreateParamsStreaming = ChatCompletionsAPI.CompletionCreateParamsStreaming; } diff --git a/src/resources/completions.ts b/src/resources/completions.ts index 591384cde..014607b0f 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -3,7 +3,7 @@ import * as Core from 'openai/core'; import { APIPromise } from 'openai/core'; import { APIResource } from 'openai/resource'; -import * as API from './index'; +import * as CompletionsAPI from 'openai/resources/completions'; import { Stream } from 'openai/streaming'; export class Completions extends APIResource { @@ -276,8 +276,8 @@ export interface CompletionCreateParamsBase { } export namespace CompletionCreateParams { - export type CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; - export type CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; + export type CompletionCreateParamsNonStreaming = CompletionsAPI.CompletionCreateParamsNonStreaming; + export type CompletionCreateParamsStreaming = CompletionsAPI.CompletionCreateParamsStreaming; } export interface CompletionCreateParamsNonStreaming extends CompletionCreateParamsBase { @@ -305,10 +305,10 @@ export interface CompletionCreateParamsStreaming extends CompletionCreateParamsB } export namespace Completions { - export import Completion = API.Completion; - export import CompletionChoice = API.CompletionChoice; - export import CompletionUsage = API.CompletionUsage; - export import CompletionCreateParams = API.CompletionCreateParams; - export import CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; - export import CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; + export type Completion = CompletionsAPI.Completion; + export type CompletionChoice = CompletionsAPI.CompletionChoice; + export type CompletionUsage = CompletionsAPI.CompletionUsage; + export type CompletionCreateParams = CompletionsAPI.CompletionCreateParams; + export type CompletionCreateParamsNonStreaming = CompletionsAPI.CompletionCreateParamsNonStreaming; + export type CompletionCreateParamsStreaming = CompletionsAPI.CompletionCreateParamsStreaming; } diff --git a/src/resources/edits.ts b/src/resources/edits.ts index 2b6798364..a53251c3c 100644 --- a/src/resources/edits.ts +++ b/src/resources/edits.ts @@ -2,8 +2,8 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; -import * as Completions from 'openai/resources/completions'; -import * as API from './index'; +import * as EditsAPI from 'openai/resources/edits'; +import * as CompletionsAPI from 'openai/resources/completions'; export class Edits extends APIResource { /** @@ -37,7 +37,7 @@ export interface Edit { /** * Usage statistics for the completion request. */ - usage: Completions.CompletionUsage; + usage: CompletionsAPI.CompletionUsage; } export namespace Edit { @@ -104,6 +104,6 @@ export interface EditCreateParams { } export namespace Edits { - export import Edit = API.Edit; - export import EditCreateParams = API.EditCreateParams; + export type Edit = EditsAPI.Edit; + export type EditCreateParams = EditsAPI.EditCreateParams; } diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index 8806a8a43..4ddaf1363 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -2,7 +2,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; -import * as API from './index'; +import * as EmbeddingsAPI from 'openai/resources/embeddings'; export class Embeddings extends APIResource { /** @@ -81,7 +81,7 @@ export interface EmbeddingCreateParams { /** * Input text to embed, encoded as a string or array of tokens. To embed multiple * inputs in a single request, pass an array of strings or array of token arrays. - * Each input must not exceed the max input tokens for the model (8191 tokens for + * The input must not exceed the max input tokens for the model (8192 tokens for * `text-embedding-ada-002`) and cannot be an empty string. * [Example Python code](https://cookbook.openai.com/examples/how_to_count_tokens_with_tiktoken) * for counting tokens. @@ -106,7 +106,7 @@ export interface EmbeddingCreateParams { } export namespace Embeddings { - export import CreateEmbeddingResponse = API.CreateEmbeddingResponse; - export import Embedding = API.Embedding; - export import EmbeddingCreateParams = API.EmbeddingCreateParams; + export type CreateEmbeddingResponse = EmbeddingsAPI.CreateEmbeddingResponse; + export type Embedding = EmbeddingsAPI.Embedding; + export type EmbeddingCreateParams = EmbeddingsAPI.EmbeddingCreateParams; } diff --git a/src/resources/files.ts b/src/resources/files.ts index 62669183a..785151815 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -4,7 +4,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; import { sleep } from 'openai/core'; import { APIConnectionTimeoutError } from 'openai/error'; -import * as API from './index'; +import * as FilesAPI from 'openai/resources/files'; import { type Uploadable, multipartFormRequestOptions } from 'openai/core'; import { Page } from 'openai/pagination'; @@ -81,8 +81,6 @@ export class Files extends APIResource { * Note: no pagination actually occurs yet, this is for forwards-compatibility. */ export class FileObjectsPage extends Page {} -// alias so we can export it in the namespace -type _FileObjectsPage = FileObjectsPage; export type FileContent = string; @@ -161,9 +159,9 @@ export interface FileCreateParams { } export namespace Files { - export import FileContent = API.FileContent; - export import FileDeleted = API.FileDeleted; - export import FileObject = API.FileObject; - export type FileObjectsPage = _FileObjectsPage; - export import FileCreateParams = API.FileCreateParams; + export type FileContent = FilesAPI.FileContent; + export type FileDeleted = FilesAPI.FileDeleted; + export type FileObject = FilesAPI.FileObject; + export import FileObjectsPage = FilesAPI.FileObjectsPage; + export type FileCreateParams = FilesAPI.FileCreateParams; } diff --git a/src/resources/fine-tunes.ts b/src/resources/fine-tunes.ts index 682aee42b..34fbdc725 100644 --- a/src/resources/fine-tunes.ts +++ b/src/resources/fine-tunes.ts @@ -3,8 +3,8 @@ import * as Core from 'openai/core'; import { APIPromise } from 'openai/core'; import { APIResource } from 'openai/resource'; -import * as Files from 'openai/resources/files'; -import * as API from './index'; +import * as FineTunesAPI from 'openai/resources/fine-tunes'; +import * as FilesAPI from 'openai/resources/files'; import { Page } from 'openai/pagination'; import { Stream } from 'openai/streaming'; @@ -80,8 +80,6 @@ export class FineTunes extends APIResource { * Note: no pagination actually occurs yet, this is for forwards-compatibility. */ export class FineTunesPage extends Page {} -// alias so we can export it in the namespace -type _FineTunesPage = FineTunesPage; /** * The `FineTune` object represents a legacy fine-tune job that has been created @@ -128,7 +126,7 @@ export interface FineTune { /** * The compiled results files for the fine-tuning job. */ - result_files: Array; + result_files: Array; /** * The current status of the fine-tuning job, which can be either `created`, @@ -139,7 +137,7 @@ export interface FineTune { /** * The list of files used for training. */ - training_files: Array; + training_files: Array; /** * The Unix timestamp (in seconds) for when the fine-tuning job was last updated. @@ -149,7 +147,7 @@ export interface FineTune { /** * The list of files used for validation. */ - validation_files: Array; + validation_files: Array; /** * The list of events that have been observed in the lifecycle of the FineTune job. @@ -289,6 +287,11 @@ export interface FineTuneCreateParams { */ compute_classification_metrics?: boolean | null; + /** + * The hyperparameters used for the fine-tuning job. + */ + hyperparameters?: FineTuneCreateParams.Hyperparameters; + /** * The learning rate multiplier to use for training. The fine-tuning learning rate * is the original learning rate used for pretraining multiplied by this value. @@ -308,12 +311,6 @@ export interface FineTuneCreateParams { */ model?: (string & {}) | 'ada' | 'babbage' | 'curie' | 'davinci' | null; - /** - * The number of epochs to train the model for. An epoch refers to one full cycle - * through the training dataset. - */ - n_epochs?: number | null; - /** * The weight to use for loss on the prompt tokens. This controls how much the * model tries to learn to generate the prompt (as compared to the completion which @@ -353,6 +350,19 @@ export interface FineTuneCreateParams { validation_file?: string | null; } +export namespace FineTuneCreateParams { + /** + * The hyperparameters used for the fine-tuning job. + */ + export interface Hyperparameters { + /** + * The number of epochs to train the model for. An epoch refers to one full cycle + * through the training dataset. + */ + n_epochs?: 'auto' | number; + } +} + export type FineTuneListEventsParams = | FineTuneListEventsParamsNonStreaming | FineTuneListEventsParamsStreaming; @@ -371,8 +381,8 @@ export interface FineTuneListEventsParamsBase { } export namespace FineTuneListEventsParams { - export type FineTuneListEventsParamsNonStreaming = API.FineTuneListEventsParamsNonStreaming; - export type FineTuneListEventsParamsStreaming = API.FineTuneListEventsParamsStreaming; + export type FineTuneListEventsParamsNonStreaming = FineTunesAPI.FineTuneListEventsParamsNonStreaming; + export type FineTuneListEventsParamsStreaming = FineTunesAPI.FineTuneListEventsParamsStreaming; } export interface FineTuneListEventsParamsNonStreaming extends FineTuneListEventsParamsBase { @@ -402,12 +412,12 @@ export interface FineTuneListEventsParamsStreaming extends FineTuneListEventsPar } export namespace FineTunes { - export import FineTune = API.FineTune; - export import FineTuneEvent = API.FineTuneEvent; - export import FineTuneEventsListResponse = API.FineTuneEventsListResponse; - export type FineTunesPage = _FineTunesPage; - export import FineTuneCreateParams = API.FineTuneCreateParams; - export import FineTuneListEventsParams = API.FineTuneListEventsParams; - export import FineTuneListEventsParamsNonStreaming = API.FineTuneListEventsParamsNonStreaming; - export import FineTuneListEventsParamsStreaming = API.FineTuneListEventsParamsStreaming; + export type FineTune = FineTunesAPI.FineTune; + export type FineTuneEvent = FineTunesAPI.FineTuneEvent; + export type FineTuneEventsListResponse = FineTunesAPI.FineTuneEventsListResponse; + export import FineTunesPage = FineTunesAPI.FineTunesPage; + export type FineTuneCreateParams = FineTunesAPI.FineTuneCreateParams; + export type FineTuneListEventsParams = FineTunesAPI.FineTuneListEventsParams; + export type FineTuneListEventsParamsNonStreaming = FineTunesAPI.FineTuneListEventsParamsNonStreaming; + export type FineTuneListEventsParamsStreaming = FineTunesAPI.FineTuneListEventsParamsStreaming; } diff --git a/src/resources/fine-tuning/fine-tuning.ts b/src/resources/fine-tuning/fine-tuning.ts index 2e4c69f57..3ac498965 100644 --- a/src/resources/fine-tuning/fine-tuning.ts +++ b/src/resources/fine-tuning/fine-tuning.ts @@ -1,20 +1,19 @@ // File generated from our OpenAPI spec by Stainless. import { APIResource } from 'openai/resource'; -import { Jobs } from './jobs'; -import * as API from './index'; +import * as JobsAPI from 'openai/resources/fine-tuning/jobs'; export class FineTuning extends APIResource { - jobs: Jobs = new Jobs(this.client); + jobs: JobsAPI.Jobs = new JobsAPI.Jobs(this.client); } export namespace FineTuning { - export import Jobs = API.Jobs; - export import FineTuningJob = API.FineTuningJob; - export import FineTuningJobEvent = API.FineTuningJobEvent; - export import FineTuningJobsPage = API.FineTuningJobsPage; - export import FineTuningJobEventsPage = API.FineTuningJobEventsPage; - export import JobCreateParams = API.JobCreateParams; - export import JobListParams = API.JobListParams; - export import JobListEventsParams = API.JobListEventsParams; + export import Jobs = JobsAPI.Jobs; + export type FineTuningJob = JobsAPI.FineTuningJob; + export type FineTuningJobEvent = JobsAPI.FineTuningJobEvent; + export import FineTuningJobsPage = JobsAPI.FineTuningJobsPage; + export import FineTuningJobEventsPage = JobsAPI.FineTuningJobEventsPage; + export type JobCreateParams = JobsAPI.JobCreateParams; + export type JobListParams = JobsAPI.JobListParams; + export type JobListEventsParams = JobsAPI.JobListEventsParams; } diff --git a/src/resources/fine-tuning/jobs.ts b/src/resources/fine-tuning/jobs.ts index 2a46ef183..6230d7e5e 100644 --- a/src/resources/fine-tuning/jobs.ts +++ b/src/resources/fine-tuning/jobs.ts @@ -3,8 +3,8 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; import { isRequestOptions } from 'openai/core'; -import * as API from './index'; -import { CursorPage, CursorPageParams } from 'openai/pagination'; +import * as JobsAPI from 'openai/resources/fine-tuning/jobs'; +import { CursorPage, type CursorPageParams } from 'openai/pagination'; export class Jobs extends APIResource { /** @@ -81,12 +81,8 @@ export class Jobs extends APIResource { } export class FineTuningJobsPage extends CursorPage {} -// alias so we can export it in the namespace -type _FineTuningJobsPage = FineTuningJobsPage; export class FineTuningJobEventsPage extends CursorPage {} -// alias so we can export it in the namespace -type _FineTuningJobEventsPage = FineTuningJobEventsPage; /** * The `fine_tuning.job` object represents a fine-tuning job that has been created @@ -300,11 +296,11 @@ export interface JobListParams extends CursorPageParams {} export interface JobListEventsParams extends CursorPageParams {} export namespace Jobs { - export import FineTuningJob = API.FineTuningJob; - export import FineTuningJobEvent = API.FineTuningJobEvent; - export type FineTuningJobsPage = _FineTuningJobsPage; - export type FineTuningJobEventsPage = _FineTuningJobEventsPage; - export import JobCreateParams = API.JobCreateParams; - export import JobListParams = API.JobListParams; - export import JobListEventsParams = API.JobListEventsParams; + export type FineTuningJob = JobsAPI.FineTuningJob; + export type FineTuningJobEvent = JobsAPI.FineTuningJobEvent; + export import FineTuningJobsPage = JobsAPI.FineTuningJobsPage; + export import FineTuningJobEventsPage = JobsAPI.FineTuningJobEventsPage; + export type JobCreateParams = JobsAPI.JobCreateParams; + export type JobListParams = JobsAPI.JobListParams; + export type JobListEventsParams = JobsAPI.JobListEventsParams; } diff --git a/src/resources/images.ts b/src/resources/images.ts index a7a7424b2..d4b346f81 100644 --- a/src/resources/images.ts +++ b/src/resources/images.ts @@ -2,7 +2,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; -import * as API from './index'; +import * as ImagesAPI from 'openai/resources/images'; import { type Uploadable, multipartFormRequestOptions } from 'openai/core'; export class Images extends APIResource { @@ -163,9 +163,9 @@ export interface ImageGenerateParams { } export namespace Images { - export import Image = API.Image; - export import ImagesResponse = API.ImagesResponse; - export import ImageCreateVariationParams = API.ImageCreateVariationParams; - export import ImageEditParams = API.ImageEditParams; - export import ImageGenerateParams = API.ImageGenerateParams; + export type Image = ImagesAPI.Image; + export type ImagesResponse = ImagesAPI.ImagesResponse; + export type ImageCreateVariationParams = ImagesAPI.ImageCreateVariationParams; + export type ImageEditParams = ImagesAPI.ImageEditParams; + export type ImageGenerateParams = ImagesAPI.ImageGenerateParams; } diff --git a/src/resources/index.ts b/src/resources/index.ts index 0d9ab9935..16ea95f8b 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -1,7 +1,7 @@ // File generated from our OpenAPI spec by Stainless. +export * from './chat/index'; export { Audio } from './audio/audio'; -export { Chat } from './chat/chat'; export { Completion, CompletionChoice, diff --git a/src/resources/models.ts b/src/resources/models.ts index d1b204f3d..dd01a5d0d 100644 --- a/src/resources/models.ts +++ b/src/resources/models.ts @@ -2,7 +2,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; -import * as API from './index'; +import * as ModelsAPI from 'openai/resources/models'; import { Page } from 'openai/pagination'; export class Models extends APIResource { @@ -35,8 +35,6 @@ export class Models extends APIResource { * Note: no pagination actually occurs yet, this is for forwards-compatibility. */ export class ModelsPage extends Page {} -// alias so we can export it in the namespace -type _ModelsPage = ModelsPage; /** * Describes an OpenAI model offering that can be used with the API. @@ -72,7 +70,7 @@ export interface ModelDeleted { } export namespace Models { - export import Model = API.Model; - export import ModelDeleted = API.ModelDeleted; - export type ModelsPage = _ModelsPage; + export type Model = ModelsAPI.Model; + export type ModelDeleted = ModelsAPI.ModelDeleted; + export import ModelsPage = ModelsAPI.ModelsPage; } diff --git a/src/resources/moderations.ts b/src/resources/moderations.ts index 516921b84..7a3f372af 100644 --- a/src/resources/moderations.ts +++ b/src/resources/moderations.ts @@ -2,7 +2,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; -import * as API from './index'; +import * as ModerationsAPI from 'openai/resources/moderations'; export class Moderations extends APIResource { /** @@ -210,7 +210,7 @@ export interface ModerationCreateParams { } export namespace Moderations { - export import Moderation = API.Moderation; - export import ModerationCreateResponse = API.ModerationCreateResponse; - export import ModerationCreateParams = API.ModerationCreateParams; + export type Moderation = ModerationsAPI.Moderation; + export type ModerationCreateResponse = ModerationsAPI.ModerationCreateResponse; + export type ModerationCreateParams = ModerationsAPI.ModerationCreateParams; } diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index e917ca62f..0725211a8 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -11,7 +11,7 @@ const openai = new OpenAI({ describe('resource completions', () => { test('create: only required params', async () => { const responsePromise = openai.chat.completions.create({ - messages: [{ role: 'system', content: 'string' }], + messages: [{ content: 'string', role: 'system' }], model: 'gpt-3.5-turbo', }); const rawResponse = await responsePromise.asResponse(); @@ -27,16 +27,16 @@ describe('resource completions', () => { const response = await openai.chat.completions.create({ messages: [ { - role: 'system', content: 'string', + function_call: { arguments: 'string', name: 'string' }, name: 'string', - function_call: { name: 'string', arguments: 'string' }, + role: 'system', }, ], model: 'gpt-3.5-turbo', frequency_penalty: -2, function_call: 'none', - functions: [{ name: 'string', description: 'string', parameters: { foo: 'bar' } }], + functions: [{ description: 'string', name: 'string', parameters: { foo: 'bar' } }], logit_bias: { foo: 0 }, max_tokens: 0, n: 1, diff --git a/tests/api-resources/fine-tunes.test.ts b/tests/api-resources/fine-tunes.test.ts index 6a48a8381..1221b6bc6 100644 --- a/tests/api-resources/fine-tunes.test.ts +++ b/tests/api-resources/fine-tunes.test.ts @@ -28,9 +28,9 @@ describe('resource fineTunes', () => { classification_n_classes: 0, classification_positive_class: 'string', compute_classification_metrics: true, + hyperparameters: { n_epochs: 'auto' }, learning_rate_multiplier: 0, model: 'curie', - n_epochs: 0, prompt_loss_weight: 0, suffix: 'x', validation_file: 'file-abc123', From 946fa891300fba2f75a0f3ee0e90efa81f84cee1 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 11 Oct 2023 06:09:35 -0400 Subject: [PATCH 107/725] release: 4.12.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 19 +++++++++++++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 22 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b6e1475f8..816750640 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.11.1" + ".": "4.12.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e6dd1fbc4..ef66bf24b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## 4.12.0 (2023-10-11) + +Full Changelog: [v4.11.1...v4.12.0](https://github.com/openai/openai-node/compare/v4.11.1...v4.12.0) + +### Features + +* **api:** remove `content_filter` stop_reason and update documentation ([#352](https://github.com/openai/openai-node/issues/352)) ([a4b401e](https://github.com/openai/openai-node/commit/a4b401e91a0b3fbf55aedfb6ed6d93396377bf27)) +* re-export chat completion types at the top level, and work around webpack limitations ([#365](https://github.com/openai/openai-node/issues/365)) ([bb815d0](https://github.com/openai/openai-node/commit/bb815d0373ae33f58329e34e8983f5b3881db22d)) + + +### Bug Fixes + +* prevent ReferenceError, update compatibility to ES2020 and Node 18+ ([#356](https://github.com/openai/openai-node/issues/356)) ([fc71a4b](https://github.com/openai/openai-node/commit/fc71a4b6b73208ff3e8f0c8792a9a03e3790d26b)) + + +### Chores + +* **internal:** minor formatting improvement ([#354](https://github.com/openai/openai-node/issues/354)) ([3799863](https://github.com/openai/openai-node/commit/3799863da4ff2a27940ef0b7e57360c72e44d986)) + ## 4.11.1 (2023-10-03) Full Changelog: [v4.11.0...v4.11.1](https://github.com/openai/openai-node/compare/v4.11.0...v4.11.1) diff --git a/package.json b/package.json index 55047091f..3e9410782 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.11.1", + "version": "4.12.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 0cf9c693e..c8d4c562e 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.11.1'; // x-release-please-version +export const VERSION = '4.12.0'; // x-release-please-version From b2b1d85d90eef51e689ca75c0ca2f35bb63cccc0 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 11 Oct 2023 21:28:45 +0100 Subject: [PATCH 108/725] fix: fix namespace exports regression (#366) --- src/index.ts | 80 ++++++++++++------------ src/resources/audio/audio.ts | 8 +-- src/resources/audio/transcriptions.ts | 4 +- src/resources/audio/translations.ts | 4 +- src/resources/chat/chat.ts | 24 +++---- src/resources/chat/completions.ts | 25 ++++---- src/resources/completions.ts | 12 ++-- src/resources/edits.ts | 4 +- src/resources/embeddings.ts | 6 +- src/resources/files.ts | 8 +-- src/resources/fine-tunes.ts | 14 ++--- src/resources/fine-tuning/fine-tuning.ts | 10 +-- src/resources/fine-tuning/jobs.ts | 10 +-- src/resources/images.ts | 10 +-- src/resources/models.ts | 4 +- src/resources/moderations.ts | 6 +- 16 files changed, 114 insertions(+), 115 deletions(-) diff --git a/src/index.ts b/src/index.ts index daa24ff51..05f41b882 100644 --- a/src/index.ts +++ b/src/index.ts @@ -213,69 +213,69 @@ export namespace OpenAI { export import CursorPageResponse = Pagination.CursorPageResponse; export import Completions = API.Completions; - export type Completion = API.Completion; - export type CompletionChoice = API.CompletionChoice; - export type CompletionUsage = API.CompletionUsage; - export type CompletionCreateParams = API.CompletionCreateParams; - export type CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; - export type CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; + export import Completion = API.Completion; + export import CompletionChoice = API.CompletionChoice; + export import CompletionUsage = API.CompletionUsage; + export import CompletionCreateParams = API.CompletionCreateParams; + export import CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; + export import CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; export import Chat = API.Chat; - export type ChatCompletion = API.ChatCompletion; - export type ChatCompletionChunk = API.ChatCompletionChunk; - export type ChatCompletionMessage = API.ChatCompletionMessage; - export type ChatCompletionMessageParam = API.ChatCompletionMessageParam; - export type ChatCompletionRole = API.ChatCompletionRole; - export type ChatCompletionCreateParams = API.ChatCompletionCreateParams; - export type ChatCompletionCreateParamsNonStreaming = API.ChatCompletionCreateParamsNonStreaming; - export type ChatCompletionCreateParamsStreaming = API.ChatCompletionCreateParamsStreaming; + export import ChatCompletion = API.ChatCompletion; + export import ChatCompletionChunk = API.ChatCompletionChunk; + export import ChatCompletionMessage = API.ChatCompletionMessage; + export import ChatCompletionMessageParam = API.ChatCompletionMessageParam; + export import ChatCompletionRole = API.ChatCompletionRole; + export import ChatCompletionCreateParams = API.ChatCompletionCreateParams; + export import ChatCompletionCreateParamsNonStreaming = API.ChatCompletionCreateParamsNonStreaming; + export import ChatCompletionCreateParamsStreaming = API.ChatCompletionCreateParamsStreaming; export import Edits = API.Edits; - export type Edit = API.Edit; - export type EditCreateParams = API.EditCreateParams; + export import Edit = API.Edit; + export import EditCreateParams = API.EditCreateParams; export import Embeddings = API.Embeddings; - export type CreateEmbeddingResponse = API.CreateEmbeddingResponse; - export type Embedding = API.Embedding; - export type EmbeddingCreateParams = API.EmbeddingCreateParams; + export import CreateEmbeddingResponse = API.CreateEmbeddingResponse; + export import Embedding = API.Embedding; + export import EmbeddingCreateParams = API.EmbeddingCreateParams; export import Files = API.Files; - export type FileContent = API.FileContent; - export type FileDeleted = API.FileDeleted; - export type FileObject = API.FileObject; + export import FileContent = API.FileContent; + export import FileDeleted = API.FileDeleted; + export import FileObject = API.FileObject; export import FileObjectsPage = API.FileObjectsPage; - export type FileCreateParams = API.FileCreateParams; + export import FileCreateParams = API.FileCreateParams; export import Images = API.Images; - export type Image = API.Image; - export type ImagesResponse = API.ImagesResponse; - export type ImageCreateVariationParams = API.ImageCreateVariationParams; - export type ImageEditParams = API.ImageEditParams; - export type ImageGenerateParams = API.ImageGenerateParams; + export import Image = API.Image; + export import ImagesResponse = API.ImagesResponse; + export import ImageCreateVariationParams = API.ImageCreateVariationParams; + export import ImageEditParams = API.ImageEditParams; + export import ImageGenerateParams = API.ImageGenerateParams; export import Audio = API.Audio; export import Moderations = API.Moderations; - export type Moderation = API.Moderation; - export type ModerationCreateResponse = API.ModerationCreateResponse; - export type ModerationCreateParams = API.ModerationCreateParams; + export import Moderation = API.Moderation; + export import ModerationCreateResponse = API.ModerationCreateResponse; + export import ModerationCreateParams = API.ModerationCreateParams; export import Models = API.Models; - export type Model = API.Model; - export type ModelDeleted = API.ModelDeleted; + export import Model = API.Model; + export import ModelDeleted = API.ModelDeleted; export import ModelsPage = API.ModelsPage; export import FineTuning = API.FineTuning; export import FineTunes = API.FineTunes; - export type FineTune = API.FineTune; - export type FineTuneEvent = API.FineTuneEvent; - export type FineTuneEventsListResponse = API.FineTuneEventsListResponse; + export import FineTune = API.FineTune; + export import FineTuneEvent = API.FineTuneEvent; + export import FineTuneEventsListResponse = API.FineTuneEventsListResponse; export import FineTunesPage = API.FineTunesPage; - export type FineTuneCreateParams = API.FineTuneCreateParams; - export type FineTuneListEventsParams = API.FineTuneListEventsParams; - export type FineTuneListEventsParamsNonStreaming = API.FineTuneListEventsParamsNonStreaming; - export type FineTuneListEventsParamsStreaming = API.FineTuneListEventsParamsStreaming; + export import FineTuneCreateParams = API.FineTuneCreateParams; + export import FineTuneListEventsParams = API.FineTuneListEventsParams; + export import FineTuneListEventsParamsNonStreaming = API.FineTuneListEventsParamsNonStreaming; + export import FineTuneListEventsParamsStreaming = API.FineTuneListEventsParamsStreaming; } export default OpenAI; diff --git a/src/resources/audio/audio.ts b/src/resources/audio/audio.ts index 0514c0d99..74b1c841c 100644 --- a/src/resources/audio/audio.ts +++ b/src/resources/audio/audio.ts @@ -11,9 +11,9 @@ export class Audio extends APIResource { export namespace Audio { export import Transcriptions = TranscriptionsAPI.Transcriptions; - export type Transcription = TranscriptionsAPI.Transcription; - export type TranscriptionCreateParams = TranscriptionsAPI.TranscriptionCreateParams; + export import Transcription = TranscriptionsAPI.Transcription; + export import TranscriptionCreateParams = TranscriptionsAPI.TranscriptionCreateParams; export import Translations = TranslationsAPI.Translations; - export type Translation = TranslationsAPI.Translation; - export type TranslationCreateParams = TranslationsAPI.TranslationCreateParams; + export import Translation = TranslationsAPI.Translation; + export import TranslationCreateParams = TranslationsAPI.TranslationCreateParams; } diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index d34663d24..253ae33d5 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -62,6 +62,6 @@ export interface TranscriptionCreateParams { } export namespace Transcriptions { - export type Transcription = TranscriptionsAPI.Transcription; - export type TranscriptionCreateParams = TranscriptionsAPI.TranscriptionCreateParams; + export import Transcription = TranscriptionsAPI.Transcription; + export import TranscriptionCreateParams = TranscriptionsAPI.TranscriptionCreateParams; } diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index 52e3cf3a5..5ac8d7d88 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -55,6 +55,6 @@ export interface TranslationCreateParams { } export namespace Translations { - export type Translation = TranslationsAPI.Translation; - export type TranslationCreateParams = TranslationsAPI.TranslationCreateParams; + export import Translation = TranslationsAPI.Translation; + export import TranslationCreateParams = TranslationsAPI.TranslationCreateParams; } diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 4532dd3f0..ac510d7bd 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -9,16 +9,16 @@ export class Chat extends APIResource { export namespace Chat { export import Completions = CompletionsAPI.Completions; - export type ChatCompletion = CompletionsAPI.ChatCompletion; - export type ChatCompletionChunk = CompletionsAPI.ChatCompletionChunk; - export type ChatCompletionMessage = CompletionsAPI.ChatCompletionMessage; - export type ChatCompletionMessageParam = CompletionsAPI.ChatCompletionMessageParam; - export type ChatCompletionRole = CompletionsAPI.ChatCompletionRole; - export type CreateChatCompletionRequestMessage = CompletionsAPI.CreateChatCompletionRequestMessage; - export type ChatCompletionCreateParams = CompletionsAPI.ChatCompletionCreateParams; - export type CompletionCreateParams = CompletionsAPI.CompletionCreateParams; - export type ChatCompletionCreateParamsNonStreaming = CompletionsAPI.ChatCompletionCreateParamsNonStreaming; - export type CompletionCreateParamsNonStreaming = CompletionsAPI.CompletionCreateParamsNonStreaming; - export type ChatCompletionCreateParamsStreaming = CompletionsAPI.ChatCompletionCreateParamsStreaming; - export type CompletionCreateParamsStreaming = CompletionsAPI.CompletionCreateParamsStreaming; + export import ChatCompletion = CompletionsAPI.ChatCompletion; + export import ChatCompletionChunk = CompletionsAPI.ChatCompletionChunk; + export import ChatCompletionMessage = CompletionsAPI.ChatCompletionMessage; + export import ChatCompletionMessageParam = CompletionsAPI.ChatCompletionMessageParam; + export import ChatCompletionRole = CompletionsAPI.ChatCompletionRole; + export import CreateChatCompletionRequestMessage = CompletionsAPI.CreateChatCompletionRequestMessage; + export import ChatCompletionCreateParams = CompletionsAPI.ChatCompletionCreateParams; + export import CompletionCreateParams = CompletionsAPI.CompletionCreateParams; + export import ChatCompletionCreateParamsNonStreaming = CompletionsAPI.ChatCompletionCreateParamsNonStreaming; + export import CompletionCreateParamsNonStreaming = CompletionsAPI.CompletionCreateParamsNonStreaming; + export import ChatCompletionCreateParamsStreaming = CompletionsAPI.ChatCompletionCreateParamsStreaming; + export import CompletionCreateParamsStreaming = CompletionsAPI.CompletionCreateParamsStreaming; } diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 3ea6e3c77..d513b0f20 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -504,17 +504,16 @@ export interface ChatCompletionCreateParamsStreaming extends ChatCompletionCreat export type CompletionCreateParamsStreaming = ChatCompletionCreateParamsStreaming; export namespace Completions { - export type ChatCompletion = ChatCompletionsAPI.ChatCompletion; - export type ChatCompletionChunk = ChatCompletionsAPI.ChatCompletionChunk; - export type ChatCompletionMessage = ChatCompletionsAPI.ChatCompletionMessage; - export type ChatCompletionMessageParam = ChatCompletionsAPI.ChatCompletionMessageParam; - export type ChatCompletionRole = ChatCompletionsAPI.ChatCompletionRole; - export type CreateChatCompletionRequestMessage = ChatCompletionsAPI.CreateChatCompletionRequestMessage; - export type ChatCompletionCreateParams = ChatCompletionsAPI.ChatCompletionCreateParams; - export type CompletionCreateParams = ChatCompletionsAPI.CompletionCreateParams; - export type ChatCompletionCreateParamsNonStreaming = - ChatCompletionsAPI.ChatCompletionCreateParamsNonStreaming; - export type CompletionCreateParamsNonStreaming = ChatCompletionsAPI.CompletionCreateParamsNonStreaming; - export type ChatCompletionCreateParamsStreaming = ChatCompletionsAPI.ChatCompletionCreateParamsStreaming; - export type CompletionCreateParamsStreaming = ChatCompletionsAPI.CompletionCreateParamsStreaming; + export import ChatCompletion = ChatCompletionsAPI.ChatCompletion; + export import ChatCompletionChunk = ChatCompletionsAPI.ChatCompletionChunk; + export import ChatCompletionMessage = ChatCompletionsAPI.ChatCompletionMessage; + export import ChatCompletionMessageParam = ChatCompletionsAPI.ChatCompletionMessageParam; + export import ChatCompletionRole = ChatCompletionsAPI.ChatCompletionRole; + export import CreateChatCompletionRequestMessage = ChatCompletionsAPI.CreateChatCompletionRequestMessage; + export import ChatCompletionCreateParams = ChatCompletionsAPI.ChatCompletionCreateParams; + export import CompletionCreateParams = ChatCompletionsAPI.CompletionCreateParams; + export import ChatCompletionCreateParamsNonStreaming = ChatCompletionsAPI.ChatCompletionCreateParamsNonStreaming; + export import CompletionCreateParamsNonStreaming = ChatCompletionsAPI.CompletionCreateParamsNonStreaming; + export import ChatCompletionCreateParamsStreaming = ChatCompletionsAPI.ChatCompletionCreateParamsStreaming; + export import CompletionCreateParamsStreaming = ChatCompletionsAPI.CompletionCreateParamsStreaming; } diff --git a/src/resources/completions.ts b/src/resources/completions.ts index 014607b0f..9ec1469dd 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -305,10 +305,10 @@ export interface CompletionCreateParamsStreaming extends CompletionCreateParamsB } export namespace Completions { - export type Completion = CompletionsAPI.Completion; - export type CompletionChoice = CompletionsAPI.CompletionChoice; - export type CompletionUsage = CompletionsAPI.CompletionUsage; - export type CompletionCreateParams = CompletionsAPI.CompletionCreateParams; - export type CompletionCreateParamsNonStreaming = CompletionsAPI.CompletionCreateParamsNonStreaming; - export type CompletionCreateParamsStreaming = CompletionsAPI.CompletionCreateParamsStreaming; + export import Completion = CompletionsAPI.Completion; + export import CompletionChoice = CompletionsAPI.CompletionChoice; + export import CompletionUsage = CompletionsAPI.CompletionUsage; + export import CompletionCreateParams = CompletionsAPI.CompletionCreateParams; + export import CompletionCreateParamsNonStreaming = CompletionsAPI.CompletionCreateParamsNonStreaming; + export import CompletionCreateParamsStreaming = CompletionsAPI.CompletionCreateParamsStreaming; } diff --git a/src/resources/edits.ts b/src/resources/edits.ts index a53251c3c..300f7a7aa 100644 --- a/src/resources/edits.ts +++ b/src/resources/edits.ts @@ -104,6 +104,6 @@ export interface EditCreateParams { } export namespace Edits { - export type Edit = EditsAPI.Edit; - export type EditCreateParams = EditsAPI.EditCreateParams; + export import Edit = EditsAPI.Edit; + export import EditCreateParams = EditsAPI.EditCreateParams; } diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index 4ddaf1363..9be063552 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -106,7 +106,7 @@ export interface EmbeddingCreateParams { } export namespace Embeddings { - export type CreateEmbeddingResponse = EmbeddingsAPI.CreateEmbeddingResponse; - export type Embedding = EmbeddingsAPI.Embedding; - export type EmbeddingCreateParams = EmbeddingsAPI.EmbeddingCreateParams; + export import CreateEmbeddingResponse = EmbeddingsAPI.CreateEmbeddingResponse; + export import Embedding = EmbeddingsAPI.Embedding; + export import EmbeddingCreateParams = EmbeddingsAPI.EmbeddingCreateParams; } diff --git a/src/resources/files.ts b/src/resources/files.ts index 785151815..bd684179a 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -159,9 +159,9 @@ export interface FileCreateParams { } export namespace Files { - export type FileContent = FilesAPI.FileContent; - export type FileDeleted = FilesAPI.FileDeleted; - export type FileObject = FilesAPI.FileObject; + export import FileContent = FilesAPI.FileContent; + export import FileDeleted = FilesAPI.FileDeleted; + export import FileObject = FilesAPI.FileObject; export import FileObjectsPage = FilesAPI.FileObjectsPage; - export type FileCreateParams = FilesAPI.FileCreateParams; + export import FileCreateParams = FilesAPI.FileCreateParams; } diff --git a/src/resources/fine-tunes.ts b/src/resources/fine-tunes.ts index 34fbdc725..99f90d17f 100644 --- a/src/resources/fine-tunes.ts +++ b/src/resources/fine-tunes.ts @@ -412,12 +412,12 @@ export interface FineTuneListEventsParamsStreaming extends FineTuneListEventsPar } export namespace FineTunes { - export type FineTune = FineTunesAPI.FineTune; - export type FineTuneEvent = FineTunesAPI.FineTuneEvent; - export type FineTuneEventsListResponse = FineTunesAPI.FineTuneEventsListResponse; + export import FineTune = FineTunesAPI.FineTune; + export import FineTuneEvent = FineTunesAPI.FineTuneEvent; + export import FineTuneEventsListResponse = FineTunesAPI.FineTuneEventsListResponse; export import FineTunesPage = FineTunesAPI.FineTunesPage; - export type FineTuneCreateParams = FineTunesAPI.FineTuneCreateParams; - export type FineTuneListEventsParams = FineTunesAPI.FineTuneListEventsParams; - export type FineTuneListEventsParamsNonStreaming = FineTunesAPI.FineTuneListEventsParamsNonStreaming; - export type FineTuneListEventsParamsStreaming = FineTunesAPI.FineTuneListEventsParamsStreaming; + export import FineTuneCreateParams = FineTunesAPI.FineTuneCreateParams; + export import FineTuneListEventsParams = FineTunesAPI.FineTuneListEventsParams; + export import FineTuneListEventsParamsNonStreaming = FineTunesAPI.FineTuneListEventsParamsNonStreaming; + export import FineTuneListEventsParamsStreaming = FineTunesAPI.FineTuneListEventsParamsStreaming; } diff --git a/src/resources/fine-tuning/fine-tuning.ts b/src/resources/fine-tuning/fine-tuning.ts index 3ac498965..3c0a5a852 100644 --- a/src/resources/fine-tuning/fine-tuning.ts +++ b/src/resources/fine-tuning/fine-tuning.ts @@ -9,11 +9,11 @@ export class FineTuning extends APIResource { export namespace FineTuning { export import Jobs = JobsAPI.Jobs; - export type FineTuningJob = JobsAPI.FineTuningJob; - export type FineTuningJobEvent = JobsAPI.FineTuningJobEvent; + export import FineTuningJob = JobsAPI.FineTuningJob; + export import FineTuningJobEvent = JobsAPI.FineTuningJobEvent; export import FineTuningJobsPage = JobsAPI.FineTuningJobsPage; export import FineTuningJobEventsPage = JobsAPI.FineTuningJobEventsPage; - export type JobCreateParams = JobsAPI.JobCreateParams; - export type JobListParams = JobsAPI.JobListParams; - export type JobListEventsParams = JobsAPI.JobListEventsParams; + export import JobCreateParams = JobsAPI.JobCreateParams; + export import JobListParams = JobsAPI.JobListParams; + export import JobListEventsParams = JobsAPI.JobListEventsParams; } diff --git a/src/resources/fine-tuning/jobs.ts b/src/resources/fine-tuning/jobs.ts index 6230d7e5e..d616ce452 100644 --- a/src/resources/fine-tuning/jobs.ts +++ b/src/resources/fine-tuning/jobs.ts @@ -296,11 +296,11 @@ export interface JobListParams extends CursorPageParams {} export interface JobListEventsParams extends CursorPageParams {} export namespace Jobs { - export type FineTuningJob = JobsAPI.FineTuningJob; - export type FineTuningJobEvent = JobsAPI.FineTuningJobEvent; + export import FineTuningJob = JobsAPI.FineTuningJob; + export import FineTuningJobEvent = JobsAPI.FineTuningJobEvent; export import FineTuningJobsPage = JobsAPI.FineTuningJobsPage; export import FineTuningJobEventsPage = JobsAPI.FineTuningJobEventsPage; - export type JobCreateParams = JobsAPI.JobCreateParams; - export type JobListParams = JobsAPI.JobListParams; - export type JobListEventsParams = JobsAPI.JobListEventsParams; + export import JobCreateParams = JobsAPI.JobCreateParams; + export import JobListParams = JobsAPI.JobListParams; + export import JobListEventsParams = JobsAPI.JobListEventsParams; } diff --git a/src/resources/images.ts b/src/resources/images.ts index d4b346f81..019371b98 100644 --- a/src/resources/images.ts +++ b/src/resources/images.ts @@ -163,9 +163,9 @@ export interface ImageGenerateParams { } export namespace Images { - export type Image = ImagesAPI.Image; - export type ImagesResponse = ImagesAPI.ImagesResponse; - export type ImageCreateVariationParams = ImagesAPI.ImageCreateVariationParams; - export type ImageEditParams = ImagesAPI.ImageEditParams; - export type ImageGenerateParams = ImagesAPI.ImageGenerateParams; + export import Image = ImagesAPI.Image; + export import ImagesResponse = ImagesAPI.ImagesResponse; + export import ImageCreateVariationParams = ImagesAPI.ImageCreateVariationParams; + export import ImageEditParams = ImagesAPI.ImageEditParams; + export import ImageGenerateParams = ImagesAPI.ImageGenerateParams; } diff --git a/src/resources/models.ts b/src/resources/models.ts index dd01a5d0d..e1906db5d 100644 --- a/src/resources/models.ts +++ b/src/resources/models.ts @@ -70,7 +70,7 @@ export interface ModelDeleted { } export namespace Models { - export type Model = ModelsAPI.Model; - export type ModelDeleted = ModelsAPI.ModelDeleted; + export import Model = ModelsAPI.Model; + export import ModelDeleted = ModelsAPI.ModelDeleted; export import ModelsPage = ModelsAPI.ModelsPage; } diff --git a/src/resources/moderations.ts b/src/resources/moderations.ts index 7a3f372af..21603ceea 100644 --- a/src/resources/moderations.ts +++ b/src/resources/moderations.ts @@ -210,7 +210,7 @@ export interface ModerationCreateParams { } export namespace Moderations { - export type Moderation = ModerationsAPI.Moderation; - export type ModerationCreateResponse = ModerationsAPI.ModerationCreateResponse; - export type ModerationCreateParams = ModerationsAPI.ModerationCreateParams; + export import Moderation = ModerationsAPI.Moderation; + export import ModerationCreateResponse = ModerationsAPI.ModerationCreateResponse; + export import ModerationCreateParams = ModerationsAPI.ModerationCreateParams; } From 7b27f3b8e5897559d348903c80ff7f86f4596c5e Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 11 Oct 2023 21:29:04 +0100 Subject: [PATCH 109/725] release: 4.12.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 816750640..130086b59 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.12.0" + ".": "4.12.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ef66bf24b..940362e44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.12.1 (2023-10-11) + +Full Changelog: [v4.12.0...v4.12.1](https://github.com/openai/openai-node/compare/v4.12.0...v4.12.1) + +### Bug Fixes + +* fix namespace exports regression ([#366](https://github.com/openai/openai-node/issues/366)) ([b2b1d85](https://github.com/openai/openai-node/commit/b2b1d85d90eef51e689ca75c0ca2f35bb63cccc0)) + ## 4.12.0 (2023-10-11) Full Changelog: [v4.11.1...v4.12.0](https://github.com/openai/openai-node/compare/v4.11.1...v4.12.0) diff --git a/package.json b/package.json index 3e9410782..e4ee62738 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.12.0", + "version": "4.12.1", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index c8d4c562e..cec55e2a7 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.12.0'; // x-release-please-version +export const VERSION = '4.12.1'; // x-release-please-version From b176703102998f0e9d8ca2ed93ccd495fd10a6ee Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 11 Oct 2023 21:57:18 +0100 Subject: [PATCH 110/725] chore: show deprecation notice on re-export (#368) --- README.md | 2 +- src/resources/chat/chat.ts | 3 +++ src/resources/chat/completions.ts | 3 +++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 30220f95b..856f3e171 100644 --- a/README.md +++ b/README.md @@ -297,7 +297,7 @@ await openai.models.list({ ## Semantic Versioning -This package generally attempts to follow [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions: +This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions: 1. Changes that only affect static types, without breaking runtime behavior. 2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals)_. diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index ac510d7bd..35011c7a5 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -14,6 +14,9 @@ export namespace Chat { export import ChatCompletionMessage = CompletionsAPI.ChatCompletionMessage; export import ChatCompletionMessageParam = CompletionsAPI.ChatCompletionMessageParam; export import ChatCompletionRole = CompletionsAPI.ChatCompletionRole; + /** + * @deprecated ChatCompletionMessageParam should be used instead + */ export import CreateChatCompletionRequestMessage = CompletionsAPI.CreateChatCompletionRequestMessage; export import ChatCompletionCreateParams = CompletionsAPI.ChatCompletionCreateParams; export import CompletionCreateParams = CompletionsAPI.CompletionCreateParams; diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index d513b0f20..a5be20771 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -509,6 +509,9 @@ export namespace Completions { export import ChatCompletionMessage = ChatCompletionsAPI.ChatCompletionMessage; export import ChatCompletionMessageParam = ChatCompletionsAPI.ChatCompletionMessageParam; export import ChatCompletionRole = ChatCompletionsAPI.ChatCompletionRole; + /** + * @deprecated ChatCompletionMessageParam should be used instead + */ export import CreateChatCompletionRequestMessage = ChatCompletionsAPI.CreateChatCompletionRequestMessage; export import ChatCompletionCreateParams = ChatCompletionsAPI.ChatCompletionCreateParams; export import CompletionCreateParams = ChatCompletionsAPI.CompletionCreateParams; From 71984edc3141ba99ffa1327bab6a182b4452209f Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 12 Oct 2023 01:23:23 +0100 Subject: [PATCH 111/725] refactor(streaming): change Stream constructor signature (#370) --- package.json | 3 +- src/_shims/auto/types.d.ts | 4 +- src/_shims/index.d.ts | 2 + src/_shims/node-runtime.ts | 2 + src/_shims/node-types.d.ts | 2 +- src/_shims/registry.ts | 3 + src/_shims/web-runtime.ts | 12 +++ src/_shims/web-types.d.ts | 3 +- src/core.ts | 2 +- src/error.ts | 9 +- src/shims/node.ts | 2 +- src/shims/web.ts | 2 +- src/streaming.ts | 196 ++++++++++++++++++++++++++++--------- yarn.lock | 5 + 14 files changed, 192 insertions(+), 55 deletions(-) diff --git a/package.json b/package.json index e4ee62738..2e728d452 100644 --- a/package.json +++ b/package.json @@ -93,7 +93,8 @@ "digest-fetch": "^1.3.0", "form-data-encoder": "1.7.2", "formdata-node": "^4.3.2", - "node-fetch": "^2.6.7" + "node-fetch": "^2.6.7", + "web-streams-polyfill": "^3.2.1" }, "devDependencies": { "@types/jest": "^29.4.0", diff --git a/src/_shims/auto/types.d.ts b/src/_shims/auto/types.d.ts index 9c1cc2550..d7755070b 100644 --- a/src/_shims/auto/types.d.ts +++ b/src/_shims/auto/types.d.ts @@ -96,4 +96,6 @@ export declare class FsReadStream extends Readable { // @ts-ignore type _ReadableStream = unknown extends ReadableStream ? never : ReadableStream; -export { type _ReadableStream as ReadableStream }; +// @ts-ignore +declare const _ReadableStream: unknown extends typeof ReadableStream ? never : typeof ReadableStream; +export { _ReadableStream as ReadableStream }; diff --git a/src/_shims/index.d.ts b/src/_shims/index.d.ts index 044f2cfcf..4e52b952e 100644 --- a/src/_shims/index.d.ts +++ b/src/_shims/index.d.ts @@ -62,6 +62,8 @@ export type Readable = SelectType; export type FsReadStream = SelectType; // @ts-ignore export type ReadableStream = SelectType; +// @ts-ignore +export const ReadableStream: SelectType; export function getMultipartRequestOptions>( form: FormData, diff --git a/src/_shims/node-runtime.ts b/src/_shims/node-runtime.ts index e2398e2b3..cc16e8542 100644 --- a/src/_shims/node-runtime.ts +++ b/src/_shims/node-runtime.ts @@ -13,6 +13,7 @@ import { Readable } from 'node:stream'; import { type RequestOptions } from '../core'; import { MultipartBody } from './MultipartBody'; import { type Shims } from './registry'; +import { ReadableStream } from 'web-streams-polyfill'; type FileFromPathOptions = Omit; @@ -71,6 +72,7 @@ export function getRuntime(): Shims { FormData: fd.FormData, Blob: fd.Blob, File: fd.File, + ReadableStream, getMultipartRequestOptions, getDefaultAgent: (url: string): Agent => (url.startsWith('https') ? defaultHttpsAgent : defaultHttpAgent), fileFromPath, diff --git a/src/_shims/node-types.d.ts b/src/_shims/node-types.d.ts index 28fe60499..b31698f78 100644 --- a/src/_shims/node-types.d.ts +++ b/src/_shims/node-types.d.ts @@ -7,7 +7,7 @@ import * as fd from 'formdata-node'; export { type Agent } from 'node:http'; export { type Readable } from 'node:stream'; export { type ReadStream as FsReadStream } from 'node:fs'; -export { type ReadableStream } from 'web-streams-polyfill'; +export { ReadableStream } from 'web-streams-polyfill'; export const fetch: typeof nf.default; diff --git a/src/_shims/registry.ts b/src/_shims/registry.ts index 0e0706877..65b570d0c 100644 --- a/src/_shims/registry.ts +++ b/src/_shims/registry.ts @@ -12,6 +12,7 @@ export interface Shims { FormData: any; Blob: any; File: any; + ReadableStream: any; getMultipartRequestOptions: >( form: Shims['FormData'], opts: RequestOptions, @@ -32,6 +33,7 @@ export let Headers: Shims['Headers'] | undefined = undefined; export let FormData: Shims['FormData'] | undefined = undefined; export let Blob: Shims['Blob'] | undefined = undefined; export let File: Shims['File'] | undefined = undefined; +export let ReadableStream: Shims['ReadableStream'] | undefined = undefined; export let getMultipartRequestOptions: Shims['getMultipartRequestOptions'] | undefined = undefined; export let getDefaultAgent: Shims['getDefaultAgent'] | undefined = undefined; export let fileFromPath: Shims['fileFromPath'] | undefined = undefined; @@ -55,6 +57,7 @@ export function setShims(shims: Shims, options: { auto: boolean } = { auto: fals FormData = shims.FormData; Blob = shims.Blob; File = shims.File; + ReadableStream = shims.ReadableStream; getMultipartRequestOptions = shims.getMultipartRequestOptions; getDefaultAgent = shims.getDefaultAgent; fileFromPath = shims.fileFromPath; diff --git a/src/_shims/web-runtime.ts b/src/_shims/web-runtime.ts index 12d73e965..92dadeb89 100644 --- a/src/_shims/web-runtime.ts +++ b/src/_shims/web-runtime.ts @@ -72,6 +72,18 @@ export function getRuntime({ manuallyImported }: { manuallyImported?: boolean } } } ), + ReadableStream: + // @ts-ignore + typeof ReadableStream !== 'undefined' ? ReadableStream : ( + class ReadableStream { + // @ts-ignore + constructor() { + throw new Error( + `streaming isn't supported in this environment yet as 'ReadableStream' is undefined. ${recommendation}`, + ); + } + } + ), getMultipartRequestOptions: async >( // @ts-ignore form: FormData, diff --git a/src/_shims/web-types.d.ts b/src/_shims/web-types.d.ts index ec96cd817..4ff351383 100644 --- a/src/_shims/web-types.d.ts +++ b/src/_shims/web-types.d.ts @@ -79,4 +79,5 @@ export declare class FsReadStream extends Readable { } type _ReadableStream = ReadableStream; -export { type _ReadableStream as ReadableStream }; +declare const _ReadableStream: typeof ReadableStream; +export { _ReadableStream as ReadableStream }; diff --git a/src/core.ts b/src/core.ts index a715f4507..73b2f5574 100644 --- a/src/core.ts +++ b/src/core.ts @@ -44,7 +44,7 @@ async function defaultParseResponse(props: APIResponseProps): Promise { if (props.options.stream) { // Note: there is an invariant here that isn't represented in the type system // that if you set `stream: true` the response type must also be `Stream` - return new Stream(response, props.controller) as any; + return Stream.fromSSEResponse(response, props.controller) as any; } const contentType = response.headers.get('content-type'); diff --git a/src/error.ts b/src/error.ts index 873087c78..28a8b540f 100644 --- a/src/error.ts +++ b/src/error.ts @@ -19,7 +19,7 @@ export class APIError extends OpenAIError { message: string | undefined, headers: Headers | undefined, ) { - super(`${status} ${APIError.makeMessage(error, message)}`); + super(`${APIError.makeMessage(status, error, message)}`); this.status = status; this.headers = headers; @@ -30,13 +30,14 @@ export class APIError extends OpenAIError { this.type = data?.['type']; } - private static makeMessage(error: any, message: string | undefined) { + private static makeMessage(status: number | undefined, error: any, message: string | undefined) { return ( - error?.message ? + (status || '') + + (error?.message ? typeof error.message === 'string' ? error.message : JSON.stringify(error.message) : error ? JSON.stringify(error) - : message || 'status code (no body)' + : message || 'status code (no body)') ); } diff --git a/src/shims/node.ts b/src/shims/node.ts index 9273d4eae..73df5600c 100644 --- a/src/shims/node.ts +++ b/src/shims/node.ts @@ -45,6 +45,6 @@ declare module '../_shims/manual-types' { // @ts-ignore export type FsReadStream = types.FsReadStream; // @ts-ignore - export type ReadableStream = types.ReadableStream; + export import ReadableStream = types.ReadableStream; } } diff --git a/src/shims/web.ts b/src/shims/web.ts index 9970f1db8..f72d78444 100644 --- a/src/shims/web.ts +++ b/src/shims/web.ts @@ -45,6 +45,6 @@ declare module '../_shims/manual-types' { // @ts-ignore export type FsReadStream = types.FsReadStream; // @ts-ignore - export type ReadableStream = types.ReadableStream; + export import ReadableStream = types.ReadableStream; } } diff --git a/src/streaming.ts b/src/streaming.ts index 7f9ebe0a0..f69724d64 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -1,4 +1,4 @@ -import { type Response } from './_shims/index'; +import { ReadableStream, type Response } from './_shims/index'; import { OpenAIError } from './error'; type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined; @@ -12,67 +12,175 @@ type ServerSentEvent = { export class Stream implements AsyncIterable { controller: AbortController; - private response: Response; - private decoder: SSEDecoder; - - constructor(response: Response, controller: AbortController) { - this.response = response; + constructor(private iterator: () => AsyncIterator, controller: AbortController) { this.controller = controller; - this.decoder = new SSEDecoder(); } - private async *iterMessages(): AsyncGenerator { - if (!this.response.body) { - this.controller.abort(); - throw new OpenAIError(`Attempted to iterate over a response with no body`); - } + static fromSSEResponse(response: Response, controller: AbortController) { + let consumed = false; + const decoder = new SSEDecoder(); + + async function* iterMessages(): AsyncGenerator { + if (!response.body) { + controller.abort(); + throw new OpenAIError(`Attempted to iterate over a response with no body`); + } + + const lineDecoder = new LineDecoder(); - const lineDecoder = new LineDecoder(); + const iter = readableStreamAsyncIterable(response.body); + for await (const chunk of iter) { + for (const line of lineDecoder.decode(chunk)) { + const sse = decoder.decode(line); + if (sse) yield sse; + } + } - const iter = readableStreamAsyncIterable(this.response.body); - for await (const chunk of iter) { - for (const line of lineDecoder.decode(chunk)) { - const sse = this.decoder.decode(line); + for (const line of lineDecoder.flush()) { + const sse = decoder.decode(line); if (sse) yield sse; } } - for (const line of lineDecoder.flush()) { - const sse = this.decoder.decode(line); - if (sse) yield sse; + async function* iterator(): AsyncIterator { + if (consumed) { + throw new Error('Cannot iterate over a consumed stream, use `.tee()` to split the stream.'); + } + consumed = true; + let done = false; + try { + for await (const sse of iterMessages()) { + if (done) continue; + + if (sse.data.startsWith('[DONE]')) { + done = true; + continue; + } + + if (sse.event === null) { + try { + yield JSON.parse(sse.data); + } catch (e) { + console.error(`Could not parse message into JSON:`, sse.data); + console.error(`From chunk:`, sse.raw); + throw e; + } + } + } + done = true; + } catch (e) { + // If the user calls `stream.controller.abort()`, we should exit without throwing. + if (e instanceof Error && e.name === 'AbortError') return; + throw e; + } finally { + // If the user `break`s, abort the ongoing request. + if (!done) controller.abort(); + } } + + return new Stream(iterator, controller); } - async *[Symbol.asyncIterator](): AsyncIterator { - let done = false; - try { - for await (const sse of this.iterMessages()) { - if (done) continue; + // Generates a Stream from a newline-separated ReadableStream where each item + // is a JSON Value. + static fromReadableStream(readableStream: ReadableStream, controller: AbortController) { + let consumed = false; - if (sse.data.startsWith('[DONE]')) { - done = true; - continue; + async function* iterLines(): AsyncGenerator { + const lineDecoder = new LineDecoder(); + + const iter = readableStreamAsyncIterable(readableStream); + for await (const chunk of iter) { + for (const line of lineDecoder.decode(chunk)) { + yield line; } + } - if (sse.event === null) { - try { - yield JSON.parse(sse.data); - } catch (e) { - console.error(`Could not parse message into JSON:`, sse.data); - console.error(`From chunk:`, sse.raw); - throw e; - } + for (const line of lineDecoder.flush()) { + yield line; + } + } + + async function* iterator(): AsyncIterator { + if (consumed) { + throw new Error('Cannot iterate over a consumed stream, use `.tee()` to split the stream.'); + } + consumed = true; + let done = false; + try { + for await (const line of iterLines()) { + if (done) continue; + if (line) yield JSON.parse(line); } + done = true; + } catch (e) { + // If the user calls `stream.controller.abort()`, we should exit without throwing. + if (e instanceof Error && e.name === 'AbortError') return; + throw e; + } finally { + // If the user `break`s, abort the ongoing request. + if (!done) controller.abort(); } - done = true; - } catch (e) { - // If the user calls `stream.controller.abort()`, we should exit without throwing. - if (e instanceof Error && e.name === 'AbortError') return; - throw e; - } finally { - // If the user `break`s, abort the ongoing request. - if (!done) this.controller.abort(); } + + return new Stream(iterator, controller); + } + + [Symbol.asyncIterator](): AsyncIterator { + return this.iterator(); + } + + tee(): [Stream, Stream] { + const left: Array>> = []; + const right: Array>> = []; + const iterator = this.iterator(); + + const teeIterator = (queue: Array>>): AsyncIterator => { + return { + next: () => { + if (queue.length === 0) { + const result = iterator.next(); + left.push(result); + right.push(result); + } + return queue.shift()!; + }, + }; + }; + + return [ + new Stream(() => teeIterator(left), this.controller), + new Stream(() => teeIterator(right), this.controller), + ]; + } + + // Converts this stream to a newline-separated ReadableStream of JSON Stringified values in the stream + // which can be turned back into a Stream with Stream.fromReadableStream. + toReadableStream(): ReadableStream { + const self = this; + let iter: AsyncIterator; + const encoder = new TextEncoder(); + + return new ReadableStream({ + async start() { + iter = self[Symbol.asyncIterator](); + }, + async pull(ctrl) { + try { + const { value, done } = await iter.next(); + if (done) return ctrl.close(); + + const bytes = encoder.encode(JSON.stringify(value) + '\n'); + + ctrl.enqueue(bytes); + } catch (err) { + ctrl.error(err); + } + }, + async cancel() { + await iter.return?.(); + }, + }); } } diff --git a/yarn.lock b/yarn.lock index fb2b9a2c1..d01ab81de 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4067,6 +4067,11 @@ web-streams-polyfill@4.0.0-beta.1: resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.1.tgz#3b19b9817374b7cee06d374ba7eeb3aeb80e8c95" integrity sha512-3ux37gEX670UUphBF9AMCq8XM6iQ8Ac6A+DSRRjDoRBm1ufCkaCDdNVbaqq60PsEkdNlLKrGtv/YBP4EJXqNtQ== +web-streams-polyfill@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6" + integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q== + webidl-conversions@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" From e0d459f958451a99e15a11a0e5ea6471abbe1ac1 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 12 Oct 2023 02:30:22 +0100 Subject: [PATCH 112/725] refactor(test): refactor authentication tests (#371) --- README.md | 4 +- src/index.ts | 17 +++--- .../audio/transcriptions.test.ts | 2 +- .../api-resources/audio/translations.test.ts | 2 +- tests/api-resources/chat/completions.test.ts | 2 +- tests/api-resources/completions.test.ts | 2 +- tests/api-resources/edits.test.ts | 2 +- tests/api-resources/embeddings.test.ts | 2 +- tests/api-resources/files.test.ts | 2 +- tests/api-resources/fine-tunes.test.ts | 2 +- tests/api-resources/fine-tuning/jobs.test.ts | 2 +- tests/api-resources/images.test.ts | 2 +- tests/api-resources/models.test.ts | 2 +- tests/api-resources/moderations.test.ts | 2 +- tests/index.test.ts | 57 +++++++------------ 15 files changed, 45 insertions(+), 57 deletions(-) diff --git a/README.md b/README.md index 856f3e171..3ebda69ca 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ The full API of this library can be found in [api.md file](https://github.com/op import OpenAI from 'openai'; const openai = new OpenAI({ - apiKey: 'my api key', // defaults to process.env["OPENAI_API_KEY"] + apiKey: 'My API Key', // defaults to process.env["OPENAI_API_KEY"] }); async function main() { @@ -73,7 +73,7 @@ This library includes TypeScript definitions for all request params and response import OpenAI from 'openai'; const openai = new OpenAI({ - apiKey: 'my api key', // defaults to process.env["OPENAI_API_KEY"] + apiKey: 'My API Key', // defaults to process.env["OPENAI_API_KEY"] }); async function main() { diff --git a/src/index.ts b/src/index.ts index 05f41b882..4c6d0ba7a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,10 +9,15 @@ import * as API from 'openai/resources/index'; export interface ClientOptions { /** - * Defaults to process.env["OPENAI_API_KEY"]. + * Defaults to process.env['OPENAI_API_KEY']. */ apiKey?: string; + /** + * Defaults to process.env['OPENAI_ORG_ID']. + */ + organization?: string | null; + /** * Override the default base URL for the API, e.g., "https://api.example.com/v2/" */ @@ -72,21 +77,20 @@ export interface ClientOptions { * Only set this option to `true` if you understand the risks and have appropriate mitigations in place. */ dangerouslyAllowBrowser?: boolean; - - organization?: string | null; } /** API Client for interfacing with the OpenAI API. */ export class OpenAI extends Core.APIClient { apiKey: string; - organization?: string | null; + organization: string | null; private _options: ClientOptions; /** * API Client for interfacing with the OpenAI API. * - * @param {string} [opts.apiKey=process.env['OPENAI_API_KEY']] - The API Key to send to the API. + * @param {string} [opts.apiKey==process.env['OPENAI_API_KEY'] ?? undefined] + * @param {string | null} [opts.organization==process.env['OPENAI_ORG_ID'] ?? null] * @param {string} [opts.baseURL] - Override the default base URL for the API. * @param {number} [opts.timeout=10 minutes] - The maximum amount of time (in milliseconds) the client will wait for a response before timing out. * @param {number} [opts.httpAgent] - An HTTP agent used to manage HTTP(s) connections. @@ -95,7 +99,6 @@ export class OpenAI extends Core.APIClient { * @param {Core.Headers} opts.defaultHeaders - Default headers to include with every request to the API. * @param {Core.DefaultQuery} opts.defaultQuery - Default query parameters to include with every request to the API. * @param {boolean} [opts.dangerouslyAllowBrowser=false] - By default, client-side use of this library is not allowed, as it risks exposing your secret API credentials to attackers. - * @param {string | null} [opts.organization] */ constructor({ apiKey = Core.readEnv('OPENAI_API_KEY'), @@ -104,7 +107,7 @@ export class OpenAI extends Core.APIClient { }: ClientOptions = {}) { if (apiKey === undefined) { throw new Errors.OpenAIError( - "The OPENAI_API_KEY environment variable is missing or empty; either provide it, or instantiate the OpenAI client with an apiKey option, like new OpenAI({ apiKey: 'my apiKey' }).", + "The OPENAI_API_KEY environment variable is missing or empty; either provide it, or instantiate the OpenAI client with an apiKey option, like new OpenAI({ apiKey: 'My API Key' }).", ); } diff --git a/tests/api-resources/audio/transcriptions.test.ts b/tests/api-resources/audio/transcriptions.test.ts index ce0f5e389..cc23c130f 100644 --- a/tests/api-resources/audio/transcriptions.test.ts +++ b/tests/api-resources/audio/transcriptions.test.ts @@ -4,7 +4,7 @@ import OpenAI, { toFile } from 'openai'; import { Response } from 'node-fetch'; const openai = new OpenAI({ - apiKey: 'something1234', + apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); diff --git a/tests/api-resources/audio/translations.test.ts b/tests/api-resources/audio/translations.test.ts index 903c18909..723625f6e 100644 --- a/tests/api-resources/audio/translations.test.ts +++ b/tests/api-resources/audio/translations.test.ts @@ -4,7 +4,7 @@ import OpenAI, { toFile } from 'openai'; import { Response } from 'node-fetch'; const openai = new OpenAI({ - apiKey: 'something1234', + apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 0725211a8..4a5616cae 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -4,7 +4,7 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; const openai = new OpenAI({ - apiKey: 'something1234', + apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); diff --git a/tests/api-resources/completions.test.ts b/tests/api-resources/completions.test.ts index c4d09793d..b3f083727 100644 --- a/tests/api-resources/completions.test.ts +++ b/tests/api-resources/completions.test.ts @@ -4,7 +4,7 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; const openai = new OpenAI({ - apiKey: 'something1234', + apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); diff --git a/tests/api-resources/edits.test.ts b/tests/api-resources/edits.test.ts index 8acf37951..add95f051 100644 --- a/tests/api-resources/edits.test.ts +++ b/tests/api-resources/edits.test.ts @@ -4,7 +4,7 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; const openai = new OpenAI({ - apiKey: 'something1234', + apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); diff --git a/tests/api-resources/embeddings.test.ts b/tests/api-resources/embeddings.test.ts index 23a33b30c..1e2af9297 100644 --- a/tests/api-resources/embeddings.test.ts +++ b/tests/api-resources/embeddings.test.ts @@ -4,7 +4,7 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; const openai = new OpenAI({ - apiKey: 'something1234', + apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); diff --git a/tests/api-resources/files.test.ts b/tests/api-resources/files.test.ts index daa70c2ae..dc8a6da00 100644 --- a/tests/api-resources/files.test.ts +++ b/tests/api-resources/files.test.ts @@ -4,7 +4,7 @@ import OpenAI, { toFile } from 'openai'; import { Response } from 'node-fetch'; const openai = new OpenAI({ - apiKey: 'something1234', + apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); diff --git a/tests/api-resources/fine-tunes.test.ts b/tests/api-resources/fine-tunes.test.ts index 1221b6bc6..c82898ff2 100644 --- a/tests/api-resources/fine-tunes.test.ts +++ b/tests/api-resources/fine-tunes.test.ts @@ -4,7 +4,7 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; const openai = new OpenAI({ - apiKey: 'something1234', + apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); diff --git a/tests/api-resources/fine-tuning/jobs.test.ts b/tests/api-resources/fine-tuning/jobs.test.ts index 6222a6a3e..9bcb4b085 100644 --- a/tests/api-resources/fine-tuning/jobs.test.ts +++ b/tests/api-resources/fine-tuning/jobs.test.ts @@ -4,7 +4,7 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; const openai = new OpenAI({ - apiKey: 'something1234', + apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); diff --git a/tests/api-resources/images.test.ts b/tests/api-resources/images.test.ts index 55a5c22cd..c9291b258 100644 --- a/tests/api-resources/images.test.ts +++ b/tests/api-resources/images.test.ts @@ -4,7 +4,7 @@ import OpenAI, { toFile } from 'openai'; import { Response } from 'node-fetch'; const openai = new OpenAI({ - apiKey: 'something1234', + apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); diff --git a/tests/api-resources/models.test.ts b/tests/api-resources/models.test.ts index d3c06b8a7..91eb0d055 100644 --- a/tests/api-resources/models.test.ts +++ b/tests/api-resources/models.test.ts @@ -4,7 +4,7 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; const openai = new OpenAI({ - apiKey: 'something1234', + apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); diff --git a/tests/api-resources/moderations.test.ts b/tests/api-resources/moderations.test.ts index 798710ce7..ad315df5d 100644 --- a/tests/api-resources/moderations.test.ts +++ b/tests/api-resources/moderations.test.ts @@ -4,7 +4,7 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; const openai = new OpenAI({ - apiKey: 'something1234', + apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); diff --git a/tests/index.test.ts b/tests/index.test.ts index bbb4b2135..192d26c6c 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -23,7 +23,7 @@ describe('instantiate client', () => { const client = new OpenAI({ baseURL: 'http://localhost:5000/', defaultHeaders: { 'X-My-Default-Header': '2' }, - apiKey: 'my api key', + apiKey: 'My API Key', }); test('they are used in the request', () => { @@ -55,7 +55,7 @@ describe('instantiate client', () => { const client = new OpenAI({ baseURL: 'http://localhost:5000/', defaultQuery: { apiVersion: 'foo' }, - apiKey: 'my api key', + apiKey: 'My API Key', }); expect(client.buildURL('/foo', null)).toEqual('http://localhost:5000/foo?apiVersion=foo'); }); @@ -64,7 +64,7 @@ describe('instantiate client', () => { const client = new OpenAI({ baseURL: 'http://localhost:5000/', defaultQuery: { apiVersion: 'foo', hello: 'world' }, - apiKey: 'my api key', + apiKey: 'My API Key', }); expect(client.buildURL('/foo', null)).toEqual('http://localhost:5000/foo?apiVersion=foo&hello=world'); }); @@ -73,7 +73,7 @@ describe('instantiate client', () => { const client = new OpenAI({ baseURL: 'http://localhost:5000/', defaultQuery: { hello: 'world' }, - apiKey: 'my api key', + apiKey: 'My API Key', }); expect(client.buildURL('/foo', { hello: undefined })).toEqual('http://localhost:5000/foo'); }); @@ -82,7 +82,7 @@ describe('instantiate client', () => { test('custom fetch', async () => { const client = new OpenAI({ baseURL: 'http://localhost:5000/', - apiKey: 'my api key', + apiKey: 'My API Key', fetch: (url) => { return Promise.resolve( new Response(JSON.stringify({ url, custom: true }), { @@ -99,7 +99,7 @@ describe('instantiate client', () => { test('custom signal', async () => { const client = new OpenAI({ baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', - apiKey: 'my api key', + apiKey: 'My API Key', fetch: (...args) => { return new Promise((resolve, reject) => setTimeout( @@ -124,57 +124,42 @@ describe('instantiate client', () => { describe('baseUrl', () => { test('trailing slash', () => { - const client = new OpenAI({ baseURL: 'http://localhost:5000/custom/path/', apiKey: 'my api key' }); + const client = new OpenAI({ baseURL: 'http://localhost:5000/custom/path/', apiKey: 'My API Key' }); expect(client.buildURL('/foo', null)).toEqual('http://localhost:5000/custom/path/foo'); }); test('no trailing slash', () => { - const client = new OpenAI({ baseURL: 'http://localhost:5000/custom/path', apiKey: 'my api key' }); + const client = new OpenAI({ baseURL: 'http://localhost:5000/custom/path', apiKey: 'My API Key' }); expect(client.buildURL('/foo', null)).toEqual('http://localhost:5000/custom/path/foo'); }); }); test('maxRetries option is correctly set', () => { - const client = new OpenAI({ maxRetries: 1, apiKey: 'my api key' }); + const client = new OpenAI({ maxRetries: 1, apiKey: 'My API Key' }); expect(client.maxRetries).toEqual(1); // default - const client2 = new OpenAI({ apiKey: 'my api key' }); + const client2 = new OpenAI({ apiKey: 'My API Key' }); expect(client2.maxRetries).toEqual(2); }); - test('with minimal arguments', () => { - // set API Key via env var - process.env['OPENAI_API_KEY'] = 'env var api key'; + test('with environment variable arguments', () => { + // set options via env var + process.env['OPENAI_API_KEY'] = 'My API Key'; const client = new OpenAI(); - expect(client.apiKey).toBe('env var api key'); + expect(client.apiKey).toBe('My API Key'); }); - test('with apiKey argument', () => { - process.env['OPENAI_API_KEY'] = 'env var api key'; - - const client = new OpenAI({ apiKey: 'another api key' }); - expect(client.apiKey).toBe('another api key'); - }); - - test('with options argument', () => { - process.env['OPENAI_API_KEY'] = 'env var api key'; - - // apiKey - const client = new OpenAI({ apiKey: 'my api key' }); - expect(client.apiKey).toBe('my api key'); - }); - - test('with disabled authentication', () => { - // fails if no API Key provided - expect(() => { - new OpenAI(); - }).toThrow(); + test('with overriden environment variable arguments', () => { + // set options via env var + process.env['OPENAI_API_KEY'] = 'another My API Key'; + const client = new OpenAI({ apiKey: 'My API Key' }); + expect(client.apiKey).toBe('My API Key'); }); }); describe('request building', () => { - const client = new OpenAI({ apiKey: 'my api key' }); + const client = new OpenAI({ apiKey: 'My API Key' }); describe('Content-Length', () => { test('handles multi-byte characters', () => { @@ -200,7 +185,7 @@ describe('retries', () => { return new Response(JSON.stringify({ a: 1 }), { headers: { 'Content-Type': 'application/json' } }); }; - const client = new OpenAI({ apiKey: 'my api key', timeout: 2000, fetch: testFetch }); + const client = new OpenAI({ apiKey: 'My API Key', timeout: 2000, fetch: testFetch }); expect(await client.request({ path: '/foo', method: 'get' })).toEqual({ a: 1 }); expect(count).toEqual(2); From 6130145f105f8917cc71e271d9a49909599fc847 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 12 Oct 2023 17:55:26 +0100 Subject: [PATCH 113/725] ci: before first major release use a minor version update for feature changes (#372) --- release-please-config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-please-config.json b/release-please-config.json index e5d1018e1..26eb693f3 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -6,7 +6,7 @@ "include-v-in-tag": true, "include-component-in-tag": false, "bump-minor-pre-major": true, - "bump-patch-for-minor-pre-major": true, + "bump-patch-for-minor-pre-major": false, "pull-request-header": "Automated Release PR", "pull-request-title-pattern": "release: ${version}", "changelog-sections": [ From b088998ae610de54bb8700eefd6b664eb9a2fcc3 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 12 Oct 2023 23:57:35 +0100 Subject: [PATCH 114/725] chore: add case insensitive get header function (#373) --- src/core.ts | 35 ++++++++++++++++++++++++++--------- 1 file changed, 26 insertions(+), 9 deletions(-) diff --git a/src/core.ts b/src/core.ts index 73b2f5574..62d2ac212 100644 --- a/src/core.ts +++ b/src/core.ts @@ -1059,16 +1059,33 @@ export const isHeadersProtocol = (headers: any): headers is HeadersProtocol => { return typeof headers?.get === 'function'; }; -export const getHeader = (headers: HeadersLike, key: string): string | null | undefined => { - const lowerKey = key.toLowerCase(); - if (isHeadersProtocol(headers)) return headers.get(key) || headers.get(lowerKey); - const value = headers[key] || headers[lowerKey]; - if (Array.isArray(value)) { - if (value.length <= 1) return value[0]; - console.warn(`Received ${value.length} entries for the ${key} header, using the first entry.`); - return value[0]; +export const getRequiredHeader = (headers: HeadersLike, header: string): string => { + const lowerCasedHeader = header.toLowerCase(); + if (isHeadersProtocol(headers)) { + // to deal with the case where the header looks like Finch-Event-Id + const intercapsHeader = + header[0]?.toUpperCase() + + header.substring(1).replace(/([^\w])(\w)/g, (_m, g1, g2) => g1 + g2.toUpperCase()); + for (const key of [header, lowerCasedHeader, header.toUpperCase(), intercapsHeader]) { + const value = headers.get(key); + if (value) { + return value; + } + } } - return value; + + for (const [key, value] of Object.entries(headers)) { + if (key.toLowerCase() === lowerCasedHeader) { + if (Array.isArray(value)) { + if (value.length <= 1) return value[0]; + console.warn(`Received ${value.length} entries for the ${header} header, using the first entry.`); + return value[0]; + } + return value; + } + } + + throw new Error(`Could not find ${header} header`); }; /** From a06c6850bfdd756dc8f07dd1f70218be610faa30 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 13 Oct 2023 15:50:00 +0100 Subject: [PATCH 115/725] chore: update comment (#376) --- src/core.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.ts b/src/core.ts index 62d2ac212..4120de182 100644 --- a/src/core.ts +++ b/src/core.ts @@ -1062,7 +1062,7 @@ export const isHeadersProtocol = (headers: any): headers is HeadersProtocol => { export const getRequiredHeader = (headers: HeadersLike, header: string): string => { const lowerCasedHeader = header.toLowerCase(); if (isHeadersProtocol(headers)) { - // to deal with the case where the header looks like Finch-Event-Id + // to deal with the case where the header looks like Stainless-Event-Id const intercapsHeader = header[0]?.toUpperCase() + header.substring(1).replace(/([^\w])(\w)/g, (_m, g1, g2) => g1 + g2.toUpperCase()); From 09233b1ccc80ee900be19050f438cc8aa9dbb513 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 13 Oct 2023 19:44:37 +0100 Subject: [PATCH 116/725] fix(client): correctly handle errors during streaming (#377) --- src/streaming.ts | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/streaming.ts b/src/streaming.ts index f69724d64..33f641888 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -1,6 +1,8 @@ import { ReadableStream, type Response } from './_shims/index'; import { OpenAIError } from './error'; +import { APIError } from 'openai/error'; + type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined; type ServerSentEvent = { @@ -58,13 +60,21 @@ export class Stream implements AsyncIterable { } if (sse.event === null) { + let data; + try { - yield JSON.parse(sse.data); + data = JSON.parse(sse.data); } catch (e) { console.error(`Could not parse message into JSON:`, sse.data); console.error(`From chunk:`, sse.raw); throw e; } + + if (data && data.error) { + throw new APIError(undefined, data.error, undefined, undefined); + } + + yield data; } } done = true; From b04031d19210a66f82c7d233a50f7bc427a1bf92 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sat, 14 Oct 2023 17:04:26 +0100 Subject: [PATCH 117/725] chore: update comment (#378) --- src/streaming.ts | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/src/streaming.ts b/src/streaming.ts index 33f641888..f69724d64 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -1,8 +1,6 @@ import { ReadableStream, type Response } from './_shims/index'; import { OpenAIError } from './error'; -import { APIError } from 'openai/error'; - type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined; type ServerSentEvent = { @@ -60,21 +58,13 @@ export class Stream implements AsyncIterable { } if (sse.event === null) { - let data; - try { - data = JSON.parse(sse.data); + yield JSON.parse(sse.data); } catch (e) { console.error(`Could not parse message into JSON:`, sse.data); console.error(`From chunk:`, sse.raw); throw e; } - - if (data && data.error) { - throw new APIError(undefined, data.error, undefined, undefined); - } - - yield data; } } done = true; From 9ced5804777a5857d6775a49ddf30ed9cc016fab Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 16 Oct 2023 11:13:17 +0100 Subject: [PATCH 118/725] fix(client): correctly handle errors during streaming (#379) --- src/streaming.ts | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/streaming.ts b/src/streaming.ts index f69724d64..33f641888 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -1,6 +1,8 @@ import { ReadableStream, type Response } from './_shims/index'; import { OpenAIError } from './error'; +import { APIError } from 'openai/error'; + type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined; type ServerSentEvent = { @@ -58,13 +60,21 @@ export class Stream implements AsyncIterable { } if (sse.event === null) { + let data; + try { - yield JSON.parse(sse.data); + data = JSON.parse(sse.data); } catch (e) { console.error(`Could not parse message into JSON:`, sse.data); console.error(`From chunk:`, sse.raw); throw e; } + + if (data && data.error) { + throw new APIError(undefined, data.error, undefined, undefined); + } + + yield data; } } done = true; From 689db0b8058527ae5c3af5e457c962d8a6635297 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 16 Oct 2023 19:16:47 +0100 Subject: [PATCH 119/725] chore(internal): add debug logs for stream responses (#380) --- src/core.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core.ts b/src/core.ts index 4120de182..9cd99639d 100644 --- a/src/core.ts +++ b/src/core.ts @@ -42,6 +42,8 @@ type APIResponseProps = { async function defaultParseResponse(props: APIResponseProps): Promise { const { response } = props; if (props.options.stream) { + debug('response', response.status, response.url, response.headers, response.body); + // Note: there is an invariant here that isn't represented in the type system // that if you set `stream: true` the response type must also be `Stream` return Stream.fromSSEResponse(response, props.controller) as any; From 68dfb17cce300ade8d29afc854d616833b3283ca Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 16 Oct 2023 21:29:07 +0100 Subject: [PATCH 120/725] fix: improve status code in error messages (#381) --- src/error.ts | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/src/error.ts b/src/error.ts index 28a8b540f..33bc5f06c 100644 --- a/src/error.ts +++ b/src/error.ts @@ -31,14 +31,23 @@ export class APIError extends OpenAIError { } private static makeMessage(status: number | undefined, error: any, message: string | undefined) { - return ( - (status || '') + - (error?.message ? + const msg = + error?.message ? typeof error.message === 'string' ? error.message : JSON.stringify(error.message) : error ? JSON.stringify(error) - : message || 'status code (no body)') - ); + : message; + + if (status && msg) { + return `${status} ${msg}`; + } + if (status) { + return `${status} status code (no body)`; + } + if (msg) { + return msg; + } + return '(no status code or body)'; } static generate( From 09e10b3cfd6365a54a86096ccf2ab9dea6d0dc5a Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 16 Oct 2023 21:29:26 +0100 Subject: [PATCH 121/725] release: 4.12.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 25 +++++++++++++++++++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 28 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 130086b59..f6b69126a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.12.1" + ".": "4.12.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 940362e44..e75f10c7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # Changelog +## 4.12.2 (2023-10-16) + +Full Changelog: [v4.12.1...v4.12.2](https://github.com/openai/openai-node/compare/v4.12.1...v4.12.2) + +### Bug Fixes + +* **client:** correctly handle errors during streaming ([#377](https://github.com/openai/openai-node/issues/377)) ([09233b1](https://github.com/openai/openai-node/commit/09233b1ccc80ee900be19050f438cc8aa9dbb513)) +* **client:** correctly handle errors during streaming ([#379](https://github.com/openai/openai-node/issues/379)) ([9ced580](https://github.com/openai/openai-node/commit/9ced5804777a5857d6775a49ddf30ed9cc016fab)) +* improve status code in error messages ([#381](https://github.com/openai/openai-node/issues/381)) ([68dfb17](https://github.com/openai/openai-node/commit/68dfb17cce300ade8d29afc854d616833b3283ca)) + + +### Chores + +* add case insensitive get header function ([#373](https://github.com/openai/openai-node/issues/373)) ([b088998](https://github.com/openai/openai-node/commit/b088998ae610de54bb8700eefd6b664eb9a2fcc3)) +* **internal:** add debug logs for stream responses ([#380](https://github.com/openai/openai-node/issues/380)) ([689db0b](https://github.com/openai/openai-node/commit/689db0b8058527ae5c3af5e457c962d8a6635297)) +* show deprecation notice on re-export ([#368](https://github.com/openai/openai-node/issues/368)) ([b176703](https://github.com/openai/openai-node/commit/b176703102998f0e9d8ca2ed93ccd495fd10a6ee)) +* update comment ([#376](https://github.com/openai/openai-node/issues/376)) ([a06c685](https://github.com/openai/openai-node/commit/a06c6850bfdd756dc8f07dd1f70218be610faa30)) +* update comment ([#378](https://github.com/openai/openai-node/issues/378)) ([b04031d](https://github.com/openai/openai-node/commit/b04031d19210a66f82c7d233a50f7bc427a1bf92)) + + +### Refactors + +* **streaming:** change Stream constructor signature ([#370](https://github.com/openai/openai-node/issues/370)) ([71984ed](https://github.com/openai/openai-node/commit/71984edc3141ba99ffa1327bab6a182b4452209f)) +* **test:** refactor authentication tests ([#371](https://github.com/openai/openai-node/issues/371)) ([e0d459f](https://github.com/openai/openai-node/commit/e0d459f958451a99e15a11a0e5ea6471abbe1ac1)) + ## 4.12.1 (2023-10-11) Full Changelog: [v4.12.0...v4.12.1](https://github.com/openai/openai-node/compare/v4.12.0...v4.12.1) diff --git a/package.json b/package.json index 2e728d452..cdb3fce92 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.12.1", + "version": "4.12.2", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index cec55e2a7..df9635d1c 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.12.1'; // x-release-please-version +export const VERSION = '4.12.2'; // x-release-please-version From 516f0ade1ec1fd8fc4c78999ee0f656cc2b5ae58 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 16 Oct 2023 21:49:56 +0100 Subject: [PATCH 122/725] docs: organisation -> organization (UK to US English) (#382) --- bin/check-release-environment | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/check-release-environment b/bin/check-release-environment index 759763247..fdd847176 100644 --- a/bin/check-release-environment +++ b/bin/check-release-environment @@ -3,11 +3,11 @@ errors=() if [ -z "${STAINLESS_API_KEY}" ]; then - errors+=("The STAINLESS_API_KEY secret has not been set. Please contact Stainless for an API key & set it in your organisation secrets on GitHub.") + errors+=("The STAINLESS_API_KEY secret has not been set. Please contact Stainless for an API key & set it in your organization secrets on GitHub.") fi if [ -z "${NPM_TOKEN}" ]; then - errors+=("The OPENAI_NPM_TOKEN secret has not been set. Please set it in either this repository's secrets or your organisation secrets") + errors+=("The OPENAI_NPM_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets") fi len=${#errors[@]} From 3247786bb9e481b6cbedb1025f2cd136b0780524 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 16 Oct 2023 21:50:14 +0100 Subject: [PATCH 123/725] release: 4.12.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f6b69126a..b0b1b578b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.12.2" + ".": "4.12.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e75f10c7d..85790a768 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.12.3 (2023-10-16) + +Full Changelog: [v4.12.2...v4.12.3](https://github.com/openai/openai-node/compare/v4.12.2...v4.12.3) + +### Documentation + +* organisation -> organization (UK to US English) ([#382](https://github.com/openai/openai-node/issues/382)) ([516f0ad](https://github.com/openai/openai-node/commit/516f0ade1ec1fd8fc4c78999ee0f656cc2b5ae58)) + ## 4.12.2 (2023-10-16) Full Changelog: [v4.12.1...v4.12.2](https://github.com/openai/openai-node/compare/v4.12.1...v4.12.2) diff --git a/package.json b/package.json index cdb3fce92..2fd8e7018 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.12.2", + "version": "4.12.3", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index df9635d1c..65031c96f 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.12.2'; // x-release-please-version +export const VERSION = '4.12.3'; // x-release-please-version From be8e18ba4c6a16e7b6413c77246f83230e0b8fc2 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 17 Oct 2023 22:52:10 +0100 Subject: [PATCH 124/725] fix: import web-streams-polyfill without overriding globals (#385) --- src/_shims/node-runtime.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/_shims/node-runtime.ts b/src/_shims/node-runtime.ts index cc16e8542..7d24b7077 100644 --- a/src/_shims/node-runtime.ts +++ b/src/_shims/node-runtime.ts @@ -13,7 +13,9 @@ import { Readable } from 'node:stream'; import { type RequestOptions } from '../core'; import { MultipartBody } from './MultipartBody'; import { type Shims } from './registry'; -import { ReadableStream } from 'web-streams-polyfill'; + +// @ts-ignore (this package does not have proper export maps for this export) +import { ReadableStream } from 'web-streams-polyfill/dist/ponyfill.es2018.js'; type FileFromPathOptions = Omit; From b61cdb0ead90d949eeb56c24e44e7b57c18e87ba Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 17 Oct 2023 22:52:29 +0100 Subject: [PATCH 125/725] release: 4.12.4 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b0b1b578b..a9e8de513 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.12.3" + ".": "4.12.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 85790a768..71d1f75d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.12.4 (2023-10-17) + +Full Changelog: [v4.12.3...v4.12.4](https://github.com/openai/openai-node/compare/v4.12.3...v4.12.4) + +### Bug Fixes + +* import web-streams-polyfill without overriding globals ([#385](https://github.com/openai/openai-node/issues/385)) ([be8e18b](https://github.com/openai/openai-node/commit/be8e18ba4c6a16e7b6413c77246f83230e0b8fc2)) + ## 4.12.3 (2023-10-16) Full Changelog: [v4.12.2...v4.12.3](https://github.com/openai/openai-node/compare/v4.12.2...v4.12.3) diff --git a/package.json b/package.json index 2fd8e7018..98531f013 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.12.3", + "version": "4.12.4", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 65031c96f..d02576568 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.12.3'; // x-release-please-version +export const VERSION = '4.12.4'; // x-release-please-version From ecabebc4acc2b7139f1d31f14df0a478072889c5 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 19 Oct 2023 17:16:51 +0100 Subject: [PATCH 126/725] ci: update release secrets (#388) --- .github/workflows/create-releases.yml | 2 +- .github/workflows/publish-npm.yml | 2 +- .github/workflows/release-doctor.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/create-releases.yml b/.github/workflows/create-releases.yml index 7c09d64bb..2a5f9d49f 100644 --- a/.github/workflows/create-releases.yml +++ b/.github/workflows/create-releases.yml @@ -36,4 +36,4 @@ jobs: run: | bash ./bin/publish-npm env: - NPM_TOKEN: ${{ secrets.OPENAI_NPM_TOKEN }} + NPM_TOKEN: ${{ secrets.OPENAI_NPM_TOKEN || secrets.NPM_TOKEN }} diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml index b52ec0a4e..326067066 100644 --- a/.github/workflows/publish-npm.yml +++ b/.github/workflows/publish-npm.yml @@ -25,4 +25,4 @@ jobs: run: | bash ./bin/publish-npm env: - NPM_TOKEN: ${{ secrets.OPENAI_NPM_TOKEN }} + NPM_TOKEN: ${{ secrets.OPENAI_NPM_TOKEN || secrets.NPM_TOKEN }} diff --git a/.github/workflows/release-doctor.yml b/.github/workflows/release-doctor.yml index a94615c37..b640869d0 100644 --- a/.github/workflows/release-doctor.yml +++ b/.github/workflows/release-doctor.yml @@ -20,4 +20,4 @@ jobs: bash ./bin/check-release-environment env: STAINLESS_API_KEY: ${{ secrets.STAINLESS_API_KEY }} - NPM_TOKEN: ${{ secrets.OPENAI_NPM_TOKEN }} + NPM_TOKEN: ${{ secrets.OPENAI_NPM_TOKEN || secrets.NPM_TOKEN }} From cf70deaba1426786aba9b938d280c61aeb516e34 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 19 Oct 2023 21:09:49 +0100 Subject: [PATCH 127/725] feat(api): add embeddings encoding_format (#390) --- src/resources/embeddings.ts | 6 ++++++ tests/api-resources/embeddings.test.ts | 1 + 2 files changed, 7 insertions(+) diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index 9be063552..2c3302c99 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -97,6 +97,12 @@ export interface EmbeddingCreateParams { */ model: (string & {}) | 'text-embedding-ada-002'; + /** + * The format to return the embeddings in. Can be either `float` or + * [`base64`](https://pypi.org/project/pybase64/). + */ + encoding_format?: 'float' | 'base64'; + /** * A unique identifier representing your end-user, which can help OpenAI to monitor * and detect abuse. diff --git a/tests/api-resources/embeddings.test.ts b/tests/api-resources/embeddings.test.ts index 1e2af9297..24cb19482 100644 --- a/tests/api-resources/embeddings.test.ts +++ b/tests/api-resources/embeddings.test.ts @@ -27,6 +27,7 @@ describe('resource embeddings', () => { const response = await openai.embeddings.create({ input: 'The quick brown fox jumped over the lazy dog', model: 'text-embedding-ada-002', + encoding_format: 'float', user: 'user-1234', }); }); From 2dd005c1c497605036d3524f19d130b3fc5f8d8b Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 19 Oct 2023 22:27:07 +0100 Subject: [PATCH 128/725] feat: handle 204 No Content gracefully (#391) --- src/core.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/core.ts b/src/core.ts index 9cd99639d..75cb120c6 100644 --- a/src/core.ts +++ b/src/core.ts @@ -49,6 +49,11 @@ async function defaultParseResponse(props: APIResponseProps): Promise { return Stream.fromSSEResponse(response, props.controller) as any; } + // fetch refuses to read the body when the status code is 204. + if (response.status === 204) { + return null as T; + } + const contentType = response.headers.get('content-type'); if (contentType?.includes('application/json')) { const json = await response.json(); From a8c5d822beca6302f0795b51254a4759c0c6240f Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sun, 22 Oct 2023 01:53:33 +0100 Subject: [PATCH 129/725] ci: reenable deno builds (#394) --- README.md | 6 + build-deno | 25 ++++ package.json | 3 +- scripts/denoify.ts | 229 ++++++++++++++++++++++++++++++++++++ scripts/git-publish-deno.sh | 63 ++++++++++ 5 files changed, 325 insertions(+), 1 deletion(-) create mode 100755 build-deno create mode 100644 scripts/denoify.ts create mode 100755 scripts/git-publish-deno.sh diff --git a/README.md b/README.md index 3ebda69ca..dbc3c698b 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,12 @@ npm install --save openai yarn add openai ``` +You can import in Deno via: + +```ts +import OpenAI from 'https://raw.githubusercontent.com/openai/openai-node/v4.12.4-deno/mod.ts'; +``` + ## Usage The full API of this library can be found in [api.md file](https://github.com/openai/openai-node/blob/master/api.md). The code below shows how to get started using the chat completions API. diff --git a/build-deno b/build-deno new file mode 100755 index 000000000..428ffa304 --- /dev/null +++ b/build-deno @@ -0,0 +1,25 @@ +#!/usr/bin/env bash + +set -exuo pipefail + +rm -rf deno; mkdir deno +cp -rp src/* README.md deno +rm deno/_shims/auto/*-node.ts +for dir in deno/_shims deno/_shims/auto; do + rm "${dir}"/*.{d.ts,js,mjs} + for file in "${dir}"/*-deno.ts; do + mv -- "$file" "${file%-deno.ts}.ts" + done +done +for file in LICENSE CHANGELOG.md; do + if [ -e "${file}" ]; then cp "${file}" deno; fi +done +npm exec ts-node -- scripts/denoify.ts +deno fmt deno +deno check deno/mod.ts +if [ -e deno_tests ]; then + deno test deno_tests --allow-env +fi + +# make sure that nothing crashes when we load the Deno module +(cd deno && deno run mod.ts) diff --git a/package.json b/package.json index 98531f013..d8b69f06a 100644 --- a/package.json +++ b/package.json @@ -83,7 +83,8 @@ "format": "prettier --write --cache --cache-strategy metadata . !dist", "tsn": "ts-node -r tsconfig-paths/register", "lint": "eslint --ext ts,js .", - "fix": "eslint --fix --ext ts,js ." + "fix": "eslint --fix --ext ts,js .", + "postpublish": "bash scripts/git-publish-deno.sh" }, "dependencies": { "@types/node": "^18.11.18", diff --git a/scripts/denoify.ts b/scripts/denoify.ts new file mode 100644 index 000000000..9922b7bf8 --- /dev/null +++ b/scripts/denoify.ts @@ -0,0 +1,229 @@ +import path from 'path'; +import * as tm from 'ts-morph'; +import { name as pkgName } from '../package.json'; +import fs from 'fs'; + +const rootDir = path.resolve(__dirname, '..'); +const denoDir = path.join(rootDir, 'deno'); +const tsConfigFilePath = path.join(rootDir, 'tsconfig.deno.json'); + +async function denoify() { + const project = new tm.Project({ tsConfigFilePath }); + + for (const file of project.getSourceFiles()) { + if (!file.getFilePath().startsWith(denoDir + '/')) continue; + + let addedBuffer = false, + addedProcess = false; + file.forEachDescendant((node) => { + switch (node.getKind()) { + case tm.ts.SyntaxKind.ExportDeclaration: { + const decl: tm.ExportDeclaration = node as any; + if (decl.isTypeOnly()) return; + for (const named of decl.getNamedExports()) { + // Convert `export { Foo } from './foo.ts'` + // to `export { type Foo } from './foo.ts'` + // if `./foo.ts` only exports types for `Foo` + if (!named.isTypeOnly() && !hasValueDeclarations(named)) { + named.replaceWithText(`type ${named.getText()}`); + } + } + break; + } + case tm.ts.SyntaxKind.ImportEqualsDeclaration: { + const decl: tm.ImportEqualsDeclaration = node as any; + if (decl.isTypeOnly()) return; + + const ref = decl.getModuleReference(); + if (!hasValueDeclarations(ref)) { + const params = isBuiltinType(ref.getType()) ? [] : ref.getType().getTypeArguments(); + if (params.length) { + const paramsStr = params.map((p: tm.TypeParameter) => p.getText()).join(', '); + const bindingsStr = params + .map((p: tm.TypeParameter) => p.getSymbol()?.getName() || p.getText()) + .join(', '); + decl.replaceWithText( + `export type ${decl.getName()}<${paramsStr}> = ${ref.getText()}<${bindingsStr}>`, + ); + } else { + decl.replaceWithText(`export type ${decl.getName()} = ${ref.getText()}`); + } + } + break; + } + case tm.ts.SyntaxKind.Identifier: { + const id = node as tm.Identifier; + if (!addedBuffer && id.getText() === 'Buffer') { + addedBuffer = true; + file?.addVariableStatement({ + declarations: [ + { + name: 'Buffer', + type: 'any', + }, + ], + hasDeclareKeyword: true, + }); + file?.addTypeAlias({ + name: 'Buffer', + type: 'any', + }); + } + if (!addedProcess && id.getText() === 'process') { + addedProcess = true; + file?.addVariableStatement({ + declarations: [ + { + name: 'process', + type: 'any', + }, + ], + hasDeclareKeyword: true, + }); + } + } + } + }); + } + + await project.save(); + + for (const file of project.getSourceFiles()) { + if (!file.getFilePath().startsWith(denoDir + '/')) continue; + for (const decl of [...file.getImportDeclarations(), ...file.getExportDeclarations()]) { + const moduleSpecifier = decl.getModuleSpecifier(); + if (!moduleSpecifier) continue; + let specifier = moduleSpecifier.getLiteralValue().replace(/^node:/, ''); + if (!specifier || specifier.startsWith('http')) continue; + + if (nodeStdModules.has(specifier)) { + // convert node builtins to deno.land/std + specifier = `https://deno.land/std@0.177.0/node/${specifier}.ts`; + } else if (specifier.startsWith(pkgName + '/')) { + // convert self-referencing module specifiers to relative paths + specifier = file.getRelativePathAsModuleSpecifierTo(denoDir + specifier.substring(pkgName.length)); + } else if (specifier === 'qs') { + decl.replaceWithText(`import { qs } from "https://deno.land/x/deno_qs@0.0.1/mod.ts"`); + continue; + } else if (!decl.isModuleSpecifierRelative()) { + specifier = `npm:${specifier}`; + } + + if (specifier.startsWith('./') || specifier.startsWith('../')) { + // there may be CJS directory module specifiers that implicitly resolve + // to /index.ts. Add an explicit /index.ts to the end + const sourceFile = decl.getModuleSpecifierSourceFile(); + if (sourceFile && /\/index\.ts$/.test(sourceFile.getFilePath()) && !/\/mod\.ts$/.test(specifier)) { + if (/\/index(\.ts)?$/.test(specifier)) { + specifier = specifier.replace(/\/index(\.ts)?$/, '/mod.ts'); + } else { + specifier += '/mod.ts'; + } + } + // add explicit .ts file extensions to relative module specifiers + specifier = specifier.replace(/(\.[^./]*)?$/, '.ts'); + } + moduleSpecifier.replaceWithText(JSON.stringify(specifier)); + } + } + + await project.save(); + + await Promise.all( + project.getSourceFiles().map(async (f) => { + const filePath = f.getFilePath(); + if (filePath.endsWith('index.ts')) { + const newPath = filePath.replace(/index\.ts$/, 'mod.ts'); + await fs.promises.rename(filePath, newPath); + } + }), + ); +} + +const nodeStdModules = new Set([ + 'assert', + 'assertion_error', + 'async_hooks', + 'buffer', + 'child_process', + 'cluster', + 'console', + 'constants', + 'crypto', + 'dgram', + 'diagnostics_channel', + 'dns', + 'domain', + 'events', + 'fs', + 'global', + 'http', + 'http2', + 'https', + 'inspector', + 'module_all', + 'module_esm', + 'module', + 'net', + 'os', + 'path', + 'perf_hooks', + 'process', + 'punycode', + 'querystring', + 'readline', + 'repl', + 'stream', + 'string_decoder', + 'sys', + 'timers', + 'tls', + 'tty', + 'upstream_modules', + 'url', + 'util', + 'v8', + 'vm', + 'wasi', + 'worker_threads', + 'zlib', +]); + +const typeDeclarationKinds = new Set([ + tm.ts.SyntaxKind.InterfaceDeclaration, + tm.ts.SyntaxKind.ModuleDeclaration, + tm.ts.SyntaxKind.TypeAliasDeclaration, +]); + +const builtinTypeNames = new Set(['Array', 'Set', 'Map', 'Record', 'Promise']); + +function isBuiltinType(type: tm.Type): boolean { + const symbol = type.getSymbol(); + return ( + symbol != null && + builtinTypeNames.has(symbol.getName()) && + symbol.getDeclarations().some((d) => d.getSourceFile().getFilePath().includes('node_modules/typescript')) + ); +} + +function hasValueDeclarations(nodes?: tm.Node): boolean; +function hasValueDeclarations(nodes?: tm.Node[]): boolean; +function hasValueDeclarations(nodes?: tm.Node | tm.Node[]): boolean { + if (nodes && !Array.isArray(nodes)) { + return ( + !isBuiltinType(nodes.getType()) && hasValueDeclarations(nodes.getType().getSymbol()?.getDeclarations()) + ); + } + return nodes ? + nodes.some((n) => { + const parent = n.getParent(); + return ( + !typeDeclarationKinds.has(n.getKind()) && + // sometimes the node will be the right hand side of a type alias + (!parent || !typeDeclarationKinds.has(parent.getKind())) + ); + }) + : false; +} + +denoify(); diff --git a/scripts/git-publish-deno.sh b/scripts/git-publish-deno.sh new file mode 100755 index 000000000..81e0d9544 --- /dev/null +++ b/scripts/git-publish-deno.sh @@ -0,0 +1,63 @@ +#!/usr/bin/env bash + +# This script pushes the contents of the `deno`` directory to the `deno` branch, +# and creates a `vx.x.x-deno` tag, so that Deno users can +# import OpenAI from "https://raw.githubusercontent.com/openai/openai-node/vx.x.x-deno/mod.ts" + +# It's also possible to publish to deno.land. You can do this by: +# - Creating a separate GitHub repo +# - Add the deno.land webhook to the repo as described at https://deno.com/add_module +# - Set the following environment variables when running this script: +# - DENO_PUSH_REMOTE_URL - the remote url of the separate GitHub repo +# - DENO_PUSH_BRANCH - the branch you want to push to in that repo (probably `main`) +# - DENO_PUSH_VERSION - defaults to version in package.json +# - DENO_PUSH_RELEASE_TAG - defaults to v$DENO_PUSH_VERSION-deno + +die () { + echo >&2 "$@" + exit 1 +} + +set -exuo pipefail + +# Allow caller to set the following environment variables, but provide defaults +# if unset +# : "${FOO:=bar}" sets FOO=bar unless it's set and non-empty +# https://stackoverflow.com/questions/307503/whats-a-concise-way-to-check-that-environment-variables-are-set-in-a-unix-shell +# https://www.gnu.org/software/bash/manual/html_node/Shell-Parameter-Expansion.html + +: "${DENO_PUSH_VERSION:=$(node -p 'require("./package.json").version')}" +: "${DENO_PUSH_BRANCH:=deno}" +: "${DENO_PUSH_REMOTE_URL:=$(git remote get-url origin)}" +: "${DENO_PUSH_RELEASE_TAG:="v$DENO_PUSH_VERSION-deno"}" + +if [ ! -e deno ]; then ./build; fi + +# We want to commit and push a branch where everything inside the deno +# directory is at root level in the branch. + +# We can do this by temporarily creating a git repository inside deno, +# committing files to the branch, and pushing it to the remote. + +cd deno +rm -rf .git +git init +git remote add origin "$DENO_PUSH_REMOTE_URL" +if git fetch origin "$DENO_PUSH_RELEASE_TAG"; then + die "Tag $DENO_PUSH_RELEASE_TAG already exists" +fi +if git fetch origin "$DENO_PUSH_BRANCH"; then + # the branch already exists on the remote; "check out" the branch without + # changing files in the working directory + git branch "$DENO_PUSH_BRANCH" -t origin/"$DENO_PUSH_BRANCH" + git symbolic-ref HEAD refs/heads/"$DENO_PUSH_BRANCH" + git reset +else + # the branch doesn't exist on the remote yet + git checkout -b "$DENO_PUSH_BRANCH" +fi +git add . +git commit -m "chore(deno): release $DENO_PUSH_VERSION" +git tag -a "$DENO_PUSH_RELEASE_TAG" -m "release $DENO_PUSH_VERSION" +git push --tags --set-upstream origin "$DENO_PUSH_BRANCH" +rm -rf .git From 05e2bf39a353166cc59633e98ab4270b9a43fd71 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sun, 22 Oct 2023 01:53:50 +0100 Subject: [PATCH 130/725] release: 4.13.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a9e8de513..4750060f4 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.12.4" + ".": "4.13.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 71d1f75d8..a84c16a20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 4.13.0 (2023-10-22) + +Full Changelog: [v4.12.4...v4.13.0](https://github.com/openai/openai-node/compare/v4.12.4...v4.13.0) + +### Features + +* **api:** add embeddings encoding_format ([#390](https://github.com/openai/openai-node/issues/390)) ([cf70dea](https://github.com/openai/openai-node/commit/cf70deaba1426786aba9b938d280c61aeb516e34)) +* handle 204 No Content gracefully ([#391](https://github.com/openai/openai-node/issues/391)) ([2dd005c](https://github.com/openai/openai-node/commit/2dd005c1c497605036d3524f19d130b3fc5f8d8b)) + ## 4.12.4 (2023-10-17) Full Changelog: [v4.12.3...v4.12.4](https://github.com/openai/openai-node/compare/v4.12.3...v4.12.4) diff --git a/package.json b/package.json index d8b69f06a..64da4e85d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.12.4", + "version": "4.13.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index d02576568..aa60823c4 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.12.4'; // x-release-please-version +export const VERSION = '4.13.0'; // x-release-please-version From cdee0770690d4b66b357d970827e9ba1597ffb89 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 24 Oct 2023 13:14:58 +0100 Subject: [PATCH 131/725] chore(docs): update deno version (#399) --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dbc3c698b..c54a8df75 100644 --- a/README.md +++ b/README.md @@ -18,10 +18,14 @@ yarn add openai You can import in Deno via: + + ```ts -import OpenAI from 'https://raw.githubusercontent.com/openai/openai-node/v4.12.4-deno/mod.ts'; +import OpenAI from 'https://raw.githubusercontent.com/openai/openai-node/v4.13.0-deno/mod.ts'; ``` + + ## Usage The full API of this library can be found in [api.md file](https://github.com/openai/openai-node/blob/master/api.md). The code below shows how to get started using the chat completions API. From 2bc14ce300ef020bc045199fe3d76dd352d78ef9 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 24 Oct 2023 16:29:38 +0100 Subject: [PATCH 132/725] feat(client): adjust retry behavior to be exponential backoff (#400) --- src/core.ts | 20 ++++++++------------ tests/index.test.ts | 4 ++-- 2 files changed, 10 insertions(+), 14 deletions(-) diff --git a/src/core.ts b/src/core.ts index 75cb120c6..4cf238457 100644 --- a/src/core.ts +++ b/src/core.ts @@ -27,8 +27,6 @@ export { type Uploadable, } from './uploads'; -const MAX_RETRIES = 2; - export type Fetch = (url: RequestInfo, init?: RequestInit) => Promise; type PromiseOrValue = T | Promise; @@ -162,7 +160,7 @@ export abstract class APIClient { constructor({ baseURL, - maxRetries, + maxRetries = 2, timeout = 600000, // 10 minutes httpAgent, fetch: overridenFetch, @@ -174,7 +172,7 @@ export abstract class APIClient { fetch: Fetch | undefined; }) { this.baseURL = baseURL; - this.maxRetries = validatePositiveInteger('maxRetries', maxRetries ?? MAX_RETRIES); + this.maxRetries = validatePositiveInteger('maxRetries', maxRetries); this.timeout = validatePositiveInteger('timeout', timeout); this.httpAgent = httpAgent; @@ -513,8 +511,6 @@ export abstract class APIClient { retriesRemaining: number, responseHeaders?: Headers | undefined, ): Promise { - retriesRemaining -= 1; - // About the Retry-After header: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Retry-After let timeoutMillis: number | undefined; const retryAfterHeader = responseHeaders?.['retry-after']; @@ -540,22 +536,22 @@ export abstract class APIClient { } await sleep(timeoutMillis); - return this.makeRequest(options, retriesRemaining); + return this.makeRequest(options, retriesRemaining - 1); } private calculateDefaultRetryTimeoutMillis(retriesRemaining: number, maxRetries: number): number { const initialRetryDelay = 0.5; - const maxRetryDelay = 2; + const maxRetryDelay = 8.0; const numRetries = maxRetries - retriesRemaining; // Apply exponential backoff, but not more than the max. - const sleepSeconds = Math.min(initialRetryDelay * Math.pow(numRetries - 1, 2), maxRetryDelay); + const sleepSeconds = Math.min(initialRetryDelay * Math.pow(2, numRetries), maxRetryDelay); - // Apply some jitter, plus-or-minus half a second. - const jitter = Math.random() - 0.5; + // Apply some jitter, take up to at most 25 percent of the retry time. + const jitter = 1 - Math.random() * 0.25; - return (sleepSeconds + jitter) * 1000; + return sleepSeconds * jitter * 1000; } private getUserAgent(): string { diff --git a/tests/index.test.ts b/tests/index.test.ts index 192d26c6c..f54ea5cfc 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -135,8 +135,8 @@ describe('instantiate client', () => { }); test('maxRetries option is correctly set', () => { - const client = new OpenAI({ maxRetries: 1, apiKey: 'My API Key' }); - expect(client.maxRetries).toEqual(1); + const client = new OpenAI({ maxRetries: 4, apiKey: 'My API Key' }); + expect(client.maxRetries).toEqual(4); // default const client2 = new OpenAI({ apiKey: 'My API Key' }); From 8025bfc352ef73c4a573eedf088a9367ce1821c1 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 24 Oct 2023 18:13:23 +0100 Subject: [PATCH 133/725] ci: add lint workflow (#401) --- .github/workflows/ci.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..a464b26b8 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,30 @@ +name: CI +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + lint: + name: lint + runs-on: ubuntu-latest + if: github.repository == 'openai/openai-node' + + steps: + - uses: actions/checkout@v3 + + - name: Set up Node + uses: actions/setup-node@v3 + with: + node-version: '16' + + - name: Install dependencies + run: | + yarn install + + - name: Check types + run: | + yarn build From 7cebba4e563848ff447f8cda79b82df43f3bc3e0 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 25 Oct 2023 17:42:05 +0100 Subject: [PATCH 134/725] release: 4.14.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4750060f4..898c7258c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.13.0" + ".": "4.14.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a84c16a20..46e2b5e87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.14.0 (2023-10-25) + +Full Changelog: [v4.13.0...v4.14.0](https://github.com/openai/openai-node/compare/v4.13.0...v4.14.0) + +### Features + +* **client:** adjust retry behavior to be exponential backoff ([#400](https://github.com/openai/openai-node/issues/400)) ([2bc14ce](https://github.com/openai/openai-node/commit/2bc14ce300ef020bc045199fe3d76dd352d78ef9)) + + +### Chores + +* **docs:** update deno version ([#399](https://github.com/openai/openai-node/issues/399)) ([cdee077](https://github.com/openai/openai-node/commit/cdee0770690d4b66b357d970827e9ba1597ffb89)) + ## 4.13.0 (2023-10-22) Full Changelog: [v4.12.4...v4.13.0](https://github.com/openai/openai-node/compare/v4.12.4...v4.13.0) diff --git a/package.json b/package.json index 64da4e85d..c4e9f1f8e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.13.0", + "version": "4.14.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index aa60823c4..ddc4bbe90 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.13.0'; // x-release-please-version +export const VERSION = '4.14.0'; // x-release-please-version From f706a4c930da33f337fe0c199b9dafcf348de136 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 25 Oct 2023 23:11:32 +0100 Subject: [PATCH 135/725] fix: typo in build script (#403) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c54a8df75..d96df389e 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://raw.githubusercontent.com/openai/openai-node/v4.13.0-deno/mod.ts'; +import OpenAI from 'https://raw.githubusercontent.com/openai/openai-node/v4.14.0-deno/mod.ts'; ``` From 9880794b8ecd08ac61b9b49e1b696bb7bd8e1032 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 27 Oct 2023 05:08:17 -0400 Subject: [PATCH 136/725] fix: deploy deno in a github workflow instead of postpublish step (#405) --- .github/workflows/create-releases.yml | 12 ++++++++++++ .github/workflows/publish-npm.yml | 10 ++++++++++ package.json | 3 +-- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create-releases.yml b/.github/workflows/create-releases.yml index 2a5f9d49f..75e63d626 100644 --- a/.github/workflows/create-releases.yml +++ b/.github/workflows/create-releases.yml @@ -26,6 +26,12 @@ jobs: with: node-version: '16' + - name: Set up Deno + if: ${{ steps.release.outputs.releases_created }} + uses: denoland/setup-deno@v1 + with: + deno-version: v1.x + - name: Install dependencies if: ${{ steps.release.outputs.releases_created }} run: | @@ -37,3 +43,9 @@ jobs: bash ./bin/publish-npm env: NPM_TOKEN: ${{ secrets.OPENAI_NPM_TOKEN || secrets.NPM_TOKEN }} + + - name: Publish to Deno + if: ${{ steps.release.outputs.releases_created }} + run: | + bash ./scripts/git-publish-deno.sh + env: {} diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml index 326067066..15f7d5af3 100644 --- a/.github/workflows/publish-npm.yml +++ b/.github/workflows/publish-npm.yml @@ -17,6 +17,11 @@ jobs: with: node-version: '16' + - name: Set up Deno + uses: denoland/setup-deno@v1 + with: + deno-version: v1.x + - name: Install dependencies run: | yarn install @@ -26,3 +31,8 @@ jobs: bash ./bin/publish-npm env: NPM_TOKEN: ${{ secrets.OPENAI_NPM_TOKEN || secrets.NPM_TOKEN }} + + - name: Publish to Deno + run: | + bash ./scripts/git-publish-deno.sh + env: {} diff --git a/package.json b/package.json index c4e9f1f8e..b9d0a67d8 100644 --- a/package.json +++ b/package.json @@ -83,8 +83,7 @@ "format": "prettier --write --cache --cache-strategy metadata . !dist", "tsn": "ts-node -r tsconfig-paths/register", "lint": "eslint --ext ts,js .", - "fix": "eslint --fix --ext ts,js .", - "postpublish": "bash scripts/git-publish-deno.sh" + "fix": "eslint --fix --ext ts,js ." }, "dependencies": { "@types/node": "^18.11.18", From 093a7dadb2ba2de2ec6f51d1c740632d4a5452cc Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 27 Oct 2023 14:42:20 -0700 Subject: [PATCH 137/725] chore(internal): update gitignore (#406) --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 314b24627..58b3944a1 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ codegen.log dist /deno /*.tgz +.idea/ From ee1f647db785fd2cc59e4a9e60f6150e9dec6aab Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 27 Oct 2023 14:42:39 -0700 Subject: [PATCH 138/725] release: 4.14.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 898c7258c..666e52c6f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.14.0" + ".": "4.14.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 46e2b5e87..e517e9327 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 4.14.1 (2023-10-27) + +Full Changelog: [v4.14.0...v4.14.1](https://github.com/openai/openai-node/compare/v4.14.0...v4.14.1) + +### Bug Fixes + +* deploy deno in a github workflow instead of postpublish step ([#405](https://github.com/openai/openai-node/issues/405)) ([3a6dba0](https://github.com/openai/openai-node/commit/3a6dba074258274bffcfe3a4260ca1b95bcd6bdc)) +* typo in build script ([#403](https://github.com/openai/openai-node/issues/403)) ([76c5c96](https://github.com/openai/openai-node/commit/76c5c96a359f750f58ea38b5d32365db7e34409a)) + + +### Chores + +* **internal:** update gitignore ([#406](https://github.com/openai/openai-node/issues/406)) ([986b0bb](https://github.com/openai/openai-node/commit/986b0bbac9f5ca43a0df6f29f2a468dd4223e053)) + ## 4.14.0 (2023-10-25) Full Changelog: [v4.13.0...v4.14.0](https://github.com/openai/openai-node/compare/v4.13.0...v4.14.0) diff --git a/package.json b/package.json index b9d0a67d8..687013f70 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.14.0", + "version": "4.14.1", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index ddc4bbe90..502ca7989 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.14.0'; // x-release-please-version +export const VERSION = '4.14.1'; // x-release-please-version From bdc83c1f47bce17ef9384b55424be3e53180b884 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 30 Oct 2023 08:21:35 -0700 Subject: [PATCH 139/725] chore(docs): update deno link (#407) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d96df389e..89dfc493b 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://raw.githubusercontent.com/openai/openai-node/v4.14.0-deno/mod.ts'; +import OpenAI from 'https://raw.githubusercontent.com/openai/openai-node/v4.14.1-deno/mod.ts'; ``` From 0e67361a5faa2bc1b2c0c3ff1de982a2e66ab0cc Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 30 Oct 2023 08:21:55 -0700 Subject: [PATCH 140/725] release: 4.14.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 666e52c6f..051881c70 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.14.1" + ".": "4.14.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e517e9327..3e1218ca1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.14.2 (2023-10-30) + +Full Changelog: [v4.14.1...v4.14.2](https://github.com/openai/openai-node/compare/v4.14.1...v4.14.2) + +### Chores + +* **docs:** update deno link ([#407](https://github.com/openai/openai-node/issues/407)) ([0328882](https://github.com/openai/openai-node/commit/0328882cccb3e5386283ffa5eb9cd8ad9442f3a0)) + ## 4.14.1 (2023-10-27) Full Changelog: [v4.14.0...v4.14.1](https://github.com/openai/openai-node/compare/v4.14.0...v4.14.1) diff --git a/package.json b/package.json index 687013f70..de0ed2c76 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.14.1", + "version": "4.14.2", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 502ca7989..25c2cc8b5 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.14.1'; // x-release-please-version +export const VERSION = '4.14.2'; // x-release-please-version From e4ea7a171a82019d9aa75f4bb111b31dd6afd3d7 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 30 Oct 2023 12:20:53 -0700 Subject: [PATCH 141/725] feat(beta): add streaming and function calling helpers (#409) --- README.md | 115 +- api.md | 11 + .../node-ts-cjs-auto/tests/test.ts | 88 +- examples/.gitignore | 2 + examples/function-call-diy.ts | 142 ++ examples/function-call-helpers-zod.ts | 112 + examples/function-call-helpers.ts | 110 + examples/function-call-stream-raw.ts | 185 ++ examples/package.json | 18 + examples/raw-response.ts | 2 +- examples/stream-to-client-browser.ts | 30 + examples/stream-to-client-express.ts | 52 + examples/stream-to-client-next.ts | 38 + examples/stream-to-client-raw.ts | 57 + examples/stream.ts | 24 + examples/tsconfig.json | 3 + helpers.md | 289 +++ src/index.ts | 3 + src/lib/AbstractChatCompletionRunner.ts | 488 ++++ src/lib/ChatCompletionRunFunctions.test.ts | 1987 +++++++++++++++++ src/lib/ChatCompletionRunner.ts | 53 + src/lib/ChatCompletionStream.ts | 311 +++ src/lib/ChatCompletionStreamingRunner.ts | 54 + src/lib/RunnableFunction.ts | 96 + src/lib/jsonschema.ts | 148 ++ src/resources/beta/beta.ts | 12 + src/resources/beta/chat/chat.ts | 12 + src/resources/beta/chat/completions.ts | 77 + src/resources/beta/chat/index.ts | 4 + src/resources/beta/index.ts | 4 + src/resources/index.ts | 1 + src/streaming.ts | 17 +- 32 files changed, 4538 insertions(+), 7 deletions(-) create mode 100644 examples/.gitignore create mode 100755 examples/function-call-diy.ts create mode 100755 examples/function-call-helpers-zod.ts create mode 100755 examples/function-call-helpers.ts create mode 100755 examples/function-call-stream-raw.ts create mode 100644 examples/package.json create mode 100755 examples/stream-to-client-browser.ts create mode 100755 examples/stream-to-client-express.ts create mode 100755 examples/stream-to-client-next.ts create mode 100755 examples/stream-to-client-raw.ts create mode 100644 examples/stream.ts create mode 100644 examples/tsconfig.json create mode 100644 helpers.md create mode 100644 src/lib/AbstractChatCompletionRunner.ts create mode 100644 src/lib/ChatCompletionRunFunctions.test.ts create mode 100644 src/lib/ChatCompletionRunner.ts create mode 100644 src/lib/ChatCompletionStream.ts create mode 100644 src/lib/ChatCompletionStreamingRunner.ts create mode 100644 src/lib/RunnableFunction.ts create mode 100644 src/lib/jsonschema.ts create mode 100644 src/resources/beta/beta.ts create mode 100644 src/resources/beta/chat/chat.ts create mode 100644 src/resources/beta/chat/completions.ts create mode 100644 src/resources/beta/chat/index.ts create mode 100644 src/resources/beta/index.ts diff --git a/README.md b/README.md index 89dfc493b..1493376ce 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://raw.githubusercontent.com/openai/openai-node/v4.14.1-deno/mod.ts'; +import OpenAI from 'https://raw.githubusercontent.com/openai/openai-node/v4.14.2-deno/mod.ts'; ``` @@ -102,6 +102,119 @@ Documentation for each method, request param, and response field are available i > [!IMPORTANT] > Previous versions of this SDK used a `Configuration` class. See the [v3 to v4 migration guide](https://github.com/openai/openai-node/discussions/217). +### Streaming responses + +This library provides several conveniences for streaming chat completions, for example: + +```ts +import OpenAI from 'openai'; + +const openai = new OpenAI(); + +async function main() { + const stream = await openai.beta.chat.completions.stream({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + stream: true, + }); + + stream.on('content', (delta, snapshot) => { + process.stdout.write(delta); + }); + + // or, equivalently: + for await (const part of stream) { + process.stdout.write(part.choices[0]?.delta?.content || ''); + } + + const chatCompletion = await stream.finalChatCompletion(); + console.log(chatCompletion); // {id: "…", choices: […], …} +} + +main(); +``` + +Streaming with `openai.beta.chat.completions.stream({…})` exposes +[various helpers for your convenience](helpers.md#events) including event handlers and promises. + +Alternatively, you can use `openai.chat.completions.create({ stream: true, … })` +which only returns an async iterable of the chunks in the stream and thus uses less memory +(it does not build up a final chat completion object for you). + +If you need to cancel a stream, you can `break` from a `for await` loop or call `stream.abort()`. + +### Automated function calls + +We provide a `openai.beta.chat.completions.runFunctions({…})` convenience helper for using function calls +with the `/chat/completions` endpoint which automatically calls the JavaScript functions you provide +and sends their results back to the `/chat/completions` endpoint, +looping as long as the model requests function calls. + +If you pass a `parse` function, it will automatically parse the `arguments` for you and returns any parsing errors to the model to attempt auto-recovery. Otherwise, the args will be passed to the function you provide as a string. + +If you pass `function_call: {name: …}` instead of `auto`, it returns immediately after calling that function (and only loops to auto-recover parsing errors). + +```ts +import OpenAI from 'openai'; + +const client = new OpenAI(); + +async function main() { + const runner = client.beta.chat.completions + .runFunctions({ + model: 'gpt-3.5-turbo', + messages: [{ role: 'user', content: 'How is the weather this week?' }], + functions: [ + { + function: getCurrentLocation, + parameters: { type: 'object', properties: {} }, + }, + { + function: getWeather, + parse: JSON.parse, // or use a validation library like zod for typesafe parsing. + parameters: { + type: 'object', + properties: { + location: { type: 'string' }, + }, + }, + }, + ], + }) + .on('message', (message) => console.log(message)); + + const finalContent = await runner.finalContent(); + console.log(); + console.log('Final content:', finalContent); +} + +async function getCurrentLocation() { + return 'Boston'; // Simulate lookup +} + +async function getWeather(args: { location: string }) { + const { location } = args; + // … do lookup … + return { temperature, precipitation }; +} + +main(); + +// {role: "user", content: "How's the weather this week?"} +// {role: "assistant", function_call: "getCurrentLocation", arguments: "{}"} +// {role: "function", name: "getCurrentLocation", content: "Boston"} +// {role: "assistant", function_call: "getWeather", arguments: '{"location": "Boston"}'} +// {role: "function", name: "getWeather", content: '{"temperature": "50degF", "preciptation": "high"}'} +// {role: "assistant", content: "It's looking cold and rainy - you might want to wear a jacket!"} +// +// Final content: "It's looking cold and rainy - you might want to wear a jacket!" +``` + +Like with `.stream()`, we provide a variety of [helpers and events](helpers.md#events). + +Read more about various examples such as with integrating with [zod](helpers.md#integrate-with-zod), +[next.js](helpers.md#integrate-wtih-next-js), and [proxying a stream to the browser](helpers.md#proxy-streaming to-a-browser). + ## File Uploads Request parameters that correspond to file uploads can be passed in many different forms: diff --git a/api.md b/api.md index 7285097f2..00ba41ec2 100644 --- a/api.md +++ b/api.md @@ -156,3 +156,14 @@ Methods: - client.fineTunes.list() -> FineTunesPage - client.fineTunes.cancel(fineTuneId) -> FineTune - client.fineTunes.listEvents(fineTuneId, { ...params }) -> FineTuneEventsListResponse + +# Beta + +## Chat + +### Completions + +Methods: + +- client.beta.chat.completions.runFunctions(body, options?) -> ChatCompletionRunner | ChatCompletionStreamingRunner +- client.beta.chat.completions.stream(body, options?) -> ChatCompletionStream diff --git a/ecosystem-tests/node-ts-cjs-auto/tests/test.ts b/ecosystem-tests/node-ts-cjs-auto/tests/test.ts index ea6d0a76b..b7ab308cb 100644 --- a/ecosystem-tests/node-ts-cjs-auto/tests/test.ts +++ b/ecosystem-tests/node-ts-cjs-auto/tests/test.ts @@ -1,4 +1,4 @@ -import OpenAI, { toFile } from 'openai'; +import OpenAI, { APIUserAbortError, toFile } from 'openai'; import { TranscriptionCreateParams } from 'openai/resources/audio/transcriptions'; import fetch from 'node-fetch'; import { File as FormDataFile, Blob as FormDataBlob } from 'formdata-node'; @@ -68,6 +68,92 @@ it(`streaming works`, async function () { expect(chunks.map((c) => c.choices[0]?.delta.content || '').join('')).toBeSimilarTo('This is a test', 10); }); +it(`ChatCompletionStream works`, async function () { + const chunks: OpenAI.Chat.ChatCompletionChunk[] = []; + const contents: [string, string][] = []; + const messages: OpenAI.Chat.ChatCompletionMessage[] = []; + const chatCompletions: OpenAI.Chat.ChatCompletion[] = []; + let finalContent: string | undefined; + let finalMessage: OpenAI.Chat.ChatCompletionMessage | undefined; + let finalChatCompletion: OpenAI.Chat.ChatCompletion | undefined; + + const stream = client.beta.chat.completions + .stream({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + }) + .on('chunk', (chunk) => chunks.push(chunk)) + .on('content', (delta, snapshot) => contents.push([delta, snapshot])) + .on('message', (message) => messages.push(message)) + .on('chatCompletion', (completion) => chatCompletions.push(completion)) + .on('finalContent', (content) => (finalContent = content)) + .on('finalMessage', (message) => (finalMessage = message)) + .on('finalChatCompletion', (completion) => (finalChatCompletion = completion)); + const content = await stream.finalContent(); + + expect(content).toBeSimilarTo('This is a test', 10); + expect(chunks.length).toBeGreaterThan(0); + expect(contents.length).toBeGreaterThan(0); + for (const chunk of chunks) { + expect(chunk.id).toEqual(finalChatCompletion?.id); + expect(chunk.created).toEqual(finalChatCompletion?.created); + expect(chunk.model).toEqual(finalChatCompletion?.model); + } + expect(finalContent).toEqual(content); + expect(contents.at(-1)?.[1]).toEqual(content); + expect(finalMessage?.content).toEqual(content); + expect(finalChatCompletion?.choices?.[0]?.message.content).toEqual(content); + expect(messages).toEqual([finalMessage]); + expect(chatCompletions).toEqual([finalChatCompletion]); + expect(await stream.finalContent()).toEqual(content); + expect(await stream.finalMessage()).toEqual(finalMessage); + expect(await stream.finalChatCompletion()).toEqual(finalChatCompletion); +}); + +it(`aborting ChatCompletionStream works`, async function () { + const chunks: OpenAI.Chat.ChatCompletionChunk[] = []; + const contents: [string, string][] = []; + const messages: OpenAI.Chat.ChatCompletionMessage[] = []; + const chatCompletions: OpenAI.Chat.ChatCompletion[] = []; + let finalContent: string | undefined; + let finalMessage: OpenAI.Chat.ChatCompletionMessage | undefined; + let finalChatCompletion: OpenAI.Chat.ChatCompletion | undefined; + let emittedError: any; + let caughtError: any; + const controller = new AbortController(); + const stream = client.beta.chat.completions + .stream( + { + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + }, + { signal: controller.signal }, + ) + .on('error', (e) => (emittedError = e)) + .on('chunk', (chunk) => chunks.push(chunk)) + .on('content', (delta, snapshot) => { + contents.push([delta, snapshot]); + controller.abort(); + }) + .on('message', (message) => messages.push(message)) + .on('chatCompletion', (completion) => chatCompletions.push(completion)) + .on('finalContent', (content) => (finalContent = content)) + .on('finalMessage', (message) => (finalMessage = message)) + .on('finalChatCompletion', (completion) => (finalChatCompletion = completion)); + try { + await stream.finalContent(); + } catch (error) { + caughtError = error; + } + expect(caughtError).toBeInstanceOf(APIUserAbortError); + expect(finalContent).toBeUndefined(); + expect(finalMessage).toBeUndefined(); + expect(finalChatCompletion).toBeUndefined(); + expect(chatCompletions).toEqual([]); + expect(chunks.length).toBeGreaterThan(0); + expect(contents.length).toBeGreaterThan(0); +}); + it('handles formdata-node File', async function () { const file = await fetch(url) .then((x) => x.arrayBuffer()) diff --git a/examples/.gitignore b/examples/.gitignore new file mode 100644 index 000000000..a8669b19e --- /dev/null +++ b/examples/.gitignore @@ -0,0 +1,2 @@ +yarn.lock +node_modules diff --git a/examples/function-call-diy.ts b/examples/function-call-diy.ts new file mode 100755 index 000000000..ce12431b0 --- /dev/null +++ b/examples/function-call-diy.ts @@ -0,0 +1,142 @@ +#!/usr/bin/env -S npm run tsn -T + +import OpenAI from 'openai'; +import { ChatCompletionMessage, ChatCompletionMessageParam } from 'openai/resources/chat'; + +// gets API Key from environment variable OPENAI_API_KEY +const openai = new OpenAI(); + +const functions: OpenAI.Chat.ChatCompletionCreateParams.Function[] = [ + { + name: 'list', + description: 'list queries books by genre, and returns a list of names of books', + parameters: { + type: 'object', + properties: { + genre: { type: 'string', enum: ['mystery', 'nonfiction', 'memoir', 'romance', 'historical'] }, + }, + }, + }, + { + name: 'search', + description: 'search queries books by their name and returns a list of book names and their ids', + parameters: { + type: 'object', + properties: { + name: { type: 'string' }, + }, + }, + }, + { + name: 'get', + description: + "get returns a book's detailed information based on the id of the book. Note that this does not accept names, and only IDs, which you can get by using search.", + parameters: { + type: 'object', + properties: { + id: { type: 'string' }, + }, + }, + }, +]; + +async function callFunction(function_call: ChatCompletionMessage.FunctionCall): Promise { + const args = JSON.parse(function_call.arguments!); + switch (function_call.name) { + case 'list': + return await list(args['genre']); + + case 'search': + return await search(args['name']); + + case 'get': + return await get(args['id']); + + default: + throw new Error('No function found'); + } +} + +async function main() { + const messages: ChatCompletionMessageParam[] = [ + { + role: 'system', + content: + 'Please use our book database, which you can access using functions to answer the following questions.', + }, + { + role: 'user', + content: + 'I really enjoyed reading To Kill a Mockingbird, could you recommend me a book that is similar and tell me why?', + }, + ]; + console.log(messages[0]); + console.log(messages[1]); + console.log(); + + while (true) { + const completion = await openai.chat.completions.create({ + model: 'gpt-3.5-turbo', + messages, + functions: functions, + }); + + const message = completion.choices[0]!.message; + messages.push(message); + console.log(message); + + // If there is no function call, we're done and can exit this loop + if (!message.function_call) { + return; + } + + // If there is a function call, we generate a new message with the role 'function'. + const result = await callFunction(message.function_call); + const newMessage = { + role: 'function' as const, + name: message.function_call.name!, + content: JSON.stringify(result), + }; + messages.push(newMessage); + + console.log(newMessage); + console.log(); + } +} + +const db = [ + { + id: 'a1', + name: 'To Kill a Mockingbird', + genre: 'historical', + description: `Compassionate, dramatic, and deeply moving, "To Kill A Mockingbird" takes readers to the roots of human behavior - to innocence and experience, kindness and cruelty, love and hatred, humor and pathos. Now with over 18 million copies in print and translated into forty languages, this regional story by a young Alabama woman claims universal appeal. Harper Lee always considered her book to be a simple love story. Today it is regarded as a masterpiece of American literature.`, + }, + { + id: 'a2', + name: 'All the Light We Cannot See', + genre: 'historical', + description: `In a mining town in Germany, Werner Pfennig, an orphan, grows up with his younger sister, enchanted by a crude radio they find that brings them news and stories from places they have never seen or imagined. Werner becomes an expert at building and fixing these crucial new instruments and is enlisted to use his talent to track down the resistance. Deftly interweaving the lives of Marie-Laure and Werner, Doerr illuminates the ways, against all odds, people try to be good to one another.`, + }, + { + id: 'a3', + name: 'Where the Crawdads Sing', + genre: 'historical', + description: `For years, rumors of the “Marsh Girl” haunted Barkley Cove, a quiet fishing village. Kya Clark is barefoot and wild; unfit for polite society. So in late 1969, when the popular Chase Andrews is found dead, locals immediately suspect her. + +But Kya is not what they say. A born naturalist with just one day of school, she takes life's lessons from the land, learning the real ways of the world from the dishonest signals of fireflies. But while she has the skills to live in solitude forever, the time comes when she yearns to be touched and loved. Drawn to two young men from town, who are each intrigued by her wild beauty, Kya opens herself to a new and startling world—until the unthinkable happens.`, + }, +]; + +async function list(genre: string) { + return db.filter((item) => item.genre === genre).map((item) => ({ name: item.name, id: item.id })); +} + +async function search(name: string) { + return db.filter((item) => item.name.includes(name)).map((item) => ({ name: item.name, id: item.id })); +} + +async function get(id: string) { + return db.find((item) => item.id === id)!; +} + +main(); diff --git a/examples/function-call-helpers-zod.ts b/examples/function-call-helpers-zod.ts new file mode 100755 index 000000000..f783aee08 --- /dev/null +++ b/examples/function-call-helpers-zod.ts @@ -0,0 +1,112 @@ +#!/usr/bin/env -S npm run tsn -T + +import OpenAI from 'openai'; +import { ZodSchema, z } from 'zod'; +import { zodToJsonSchema } from 'zod-to-json-schema'; + +const openai = new OpenAI(); + +const ListParams = z.object({ + genre: z.enum(['mystery', 'nonfiction', 'memoir', 'romance', 'historical']), +}); + +const SearchParams = z.object({ + name: z.string(), +}); + +const GetParams = z.object({ + id: z.string(), +}); + +const functions = [ + { + name: 'list', + description: 'list queries books by genre, and returns a list of names of books', + parameters: zodToJsonSchema(ListParams), + parse: zodParseJSON(ListParams), + function: list, + }, + { + name: 'search', + description: 'search queries books by their name and returns a list of book names and their ids', + parameters: zodToJsonSchema(SearchParams), + parse: zodParseJSON(SearchParams), + function: search, + }, + { + name: 'get', + description: + "get returns a book's detailed information based on the id of the book. Note that this does not accept names, and only IDs, which you can get by using search.", + parameters: zodToJsonSchema(GetParams), + parse: zodParseJSON(GetParams), + function: get, + }, +] as const; + +async function main() { + const runner = await openai.beta.chat.completions + .runFunctions({ + model: 'gpt-3.5-turbo', + messages: [ + { + role: 'system', + content: + 'Please use our book database, which you can access using functions to answer the following questions.', + }, + { + role: 'user', + content: + 'I really enjoyed reading To Kill a Mockingbird, could you recommend me a book that is similar and tell me why?', + }, + ], + functions, + }) + .on('message', (msg) => console.log(msg)) + .on('content', (diff) => process.stdout.write(diff)); + + const result = await runner.finalChatCompletion(); + console.log(result); + + console.log(); + console.log(runner.messages); +} + +const db = [ + { + id: 'a1', + name: 'To Kill a Mockingbird', + genre: 'historical', + description: `Compassionate, dramatic, and deeply moving, "To Kill A Mockingbird" takes readers to the roots of human behavior - to innocence and experience, kindness and cruelty, love and hatred, humor and pathos. Now with over 18 million copies in print and translated into forty languages, this regional story by a young Alabama woman claims universal appeal. Harper Lee always considered her book to be a simple love story. Today it is regarded as a masterpiece of American literature.`, + }, + { + id: 'a2', + name: 'All the Light We Cannot See', + genre: 'historical', + description: `In a mining town in Germany, Werner Pfennig, an orphan, grows up with his younger sister, enchanted by a crude radio they find that brings them news and stories from places they have never seen or imagined. Werner becomes an expert at building and fixing these crucial new instruments and is enlisted to use his talent to track down the resistance. Deftly interweaving the lives of Marie-Laure and Werner, Doerr illuminates the ways, against all odds, people try to be good to one another.`, + }, + { + id: 'a3', + name: 'Where the Crawdads Sing', + genre: 'historical', + description: `For years, rumors of the “Marsh Girl” haunted Barkley Cove, a quiet fishing village. Kya Clark is barefoot and wild; unfit for polite society. So in late 1969, when the popular Chase Andrews is found dead, locals immediately suspect her. +But Kya is not what they say. A born naturalist with just one day of school, she takes life's lessons from the land, learning the real ways of the world from the dishonest signals of fireflies. But while she has the skills to live in solitude forever, the time comes when she yearns to be touched and loved. Drawn to two young men from town, who are each intrigued by her wild beauty, Kya opens herself to a new and startling world—until the unthinkable happens.`, + }, +]; + +async function list({ genre }: z.infer) { + return db.filter((item) => item.genre === genre).map((item) => ({ name: item.name, id: item.id })); +} + +async function search({ name }: z.infer) { + return db.filter((item) => item.name.includes(name)).map((item) => ({ name: item.name, id: item.id })); +} + +async function get({ id }: z.infer) { + return db.find((item) => item.id === id)!; +} + +function zodParseJSON(schema: ZodSchema) { + return (input: string): T => schema.parse(JSON.parse(input)); +} + +main(); diff --git a/examples/function-call-helpers.ts b/examples/function-call-helpers.ts new file mode 100755 index 000000000..48e2afd62 --- /dev/null +++ b/examples/function-call-helpers.ts @@ -0,0 +1,110 @@ +#!/usr/bin/env -S npm run tsn -T + +import OpenAI from 'openai'; + +// gets API Key from environment variable OPENAI_API_KEY +const openai = new OpenAI(); + +const functions = [ + { + name: 'list', + description: 'list queries books by genre, and returns a list of names of books', + parameters: { + type: 'object', + properties: { + genre: { type: 'string', enum: ['mystery', 'nonfiction', 'memoir', 'romance', 'historical'] }, + }, + }, + function: list, + parse: JSON.parse, + }, + { + name: 'search', + description: 'search queries books by their name and returns a list of book names and their ids', + parameters: { + type: 'object', + properties: { + name: { type: 'string' }, + }, + }, + function: search, + parse: JSON.parse, + }, + { + name: 'get', + description: + "get returns a book's detailed information based on the id of the book. Note that this does not accept names, and only IDs, which you can get by using search.", + parameters: { + type: 'object', + properties: { + id: { type: 'string' }, + }, + }, + function: get, + parse: JSON.parse, + }, +]; + +async function main() { + const runner = await openai.beta.chat.completions + .runFunctions({ + model: 'gpt-3.5-turbo', + messages: [ + { + role: 'system', + content: + 'Please use our book database, which you can access using functions to answer the following questions.', + }, + { + role: 'user', + content: + 'I really enjoyed reading To Kill a Mockingbird, could you recommend me a book that is similar and tell me why?', + }, + ], + functions, + }) + .on('message', (msg) => console.log(msg)) + .on('content', (diff) => process.stdout.write(diff)); + + const result = await runner.finalChatCompletion(); + console.log(result); + + console.log(); + console.log(runner.messages); +} + +const db = [ + { + id: 'a1', + name: 'To Kill a Mockingbird', + genre: 'historical', + description: `Compassionate, dramatic, and deeply moving, "To Kill A Mockingbird" takes readers to the roots of human behavior - to innocence and experience, kindness and cruelty, love and hatred, humor and pathos. Now with over 18 million copies in print and translated into forty languages, this regional story by a young Alabama woman claims universal appeal. Harper Lee always considered her book to be a simple love story. Today it is regarded as a masterpiece of American literature.`, + }, + { + id: 'a2', + name: 'All the Light We Cannot See', + genre: 'historical', + description: `In a mining town in Germany, Werner Pfennig, an orphan, grows up with his younger sister, enchanted by a crude radio they find that brings them news and stories from places they have never seen or imagined. Werner becomes an expert at building and fixing these crucial new instruments and is enlisted to use his talent to track down the resistance. Deftly interweaving the lives of Marie-Laure and Werner, Doerr illuminates the ways, against all odds, people try to be good to one another.`, + }, + { + id: 'a3', + name: 'Where the Crawdads Sing', + genre: 'historical', + description: `For years, rumors of the “Marsh Girl” haunted Barkley Cove, a quiet fishing village. Kya Clark is barefoot and wild; unfit for polite society. So in late 1969, when the popular Chase Andrews is found dead, locals immediately suspect her. +But Kya is not what they say. A born naturalist with just one day of school, she takes life's lessons from the land, learning the real ways of the world from the dishonest signals of fireflies. But while she has the skills to live in solitude forever, the time comes when she yearns to be touched and loved. Drawn to two young men from town, who are each intrigued by her wild beauty, Kya opens herself to a new and startling world—until the unthinkable happens.`, + }, +]; + +async function list({ genre }: { genre: string }) { + return db.filter((item) => item.genre === genre).map((item) => ({ name: item.name, id: item.id })); +} + +async function search({ name }: { name: string }) { + return db.filter((item) => item.name.includes(name)).map((item) => ({ name: item.name, id: item.id })); +} + +async function get({ id }: { id: string }) { + return db.find((item) => item.id === id)!; +} + +main(); diff --git a/examples/function-call-stream-raw.ts b/examples/function-call-stream-raw.ts new file mode 100755 index 000000000..be4688aa7 --- /dev/null +++ b/examples/function-call-stream-raw.ts @@ -0,0 +1,185 @@ +#!/usr/bin/env -S npm run tsn -T + +import util from 'util'; +import OpenAI from 'openai'; +import { + ChatCompletionMessage, + ChatCompletionChunk, + ChatCompletionMessageParam, +} from 'openai/resources/chat'; + +// gets API Key from environment variable OPENAI_API_KEY +const openai = new OpenAI(); + +const functions: OpenAI.Chat.ChatCompletionCreateParams.Function[] = [ + { + name: 'list', + description: 'list queries books by genre, and returns a list of names of books', + parameters: { + type: 'object', + properties: { + genre: { type: 'string', enum: ['mystery', 'nonfiction', 'memoir', 'romance', 'historical'] }, + }, + }, + }, + { + name: 'search', + description: 'search queries books by their name and returns a list of book names and their ids', + parameters: { + type: 'object', + properties: { + name: { type: 'string' }, + }, + }, + }, + { + name: 'get', + description: + "get returns a book's detailed information based on the id of the book. Note that this does not accept names, and only IDs, which you can get by using search.", + parameters: { + type: 'object', + properties: { + id: { type: 'string' }, + }, + }, + }, +]; + +async function callFunction(function_call: ChatCompletionMessage.FunctionCall): Promise { + const args = JSON.parse(function_call.arguments!); + switch (function_call.name) { + case 'list': + return await list(args['genre']); + + case 'search': + return await search(args['name']); + + case 'get': + return await get(args['id']); + + default: + throw new Error('No function found'); + } +} + +async function main() { + const messages: ChatCompletionMessageParam[] = [ + { + role: 'system', + content: + 'Please use our book database, which you can access using functions to answer the following questions.', + }, + { + role: 'user', + content: + 'I really enjoyed reading To Kill a Mockingbird, could you recommend me a book that is similar and tell me why?', + }, + ]; + console.log(messages[0]); + console.log(messages[1]); + console.log(); + + while (true) { + const stream = await openai.chat.completions.create({ + model: 'gpt-3.5-turbo', + messages, + functions: functions, + stream: true, + }); + + // Since the stream returns chunks, we need to build up the ChatCompletionMessage object. + // We implement this logic in messageReducer, which coalesces deltas into the message. + // `lineRewriter()` allows us to rewrite the last output with new text, which is one + // way of forwarding the streamed output to a visual interface. + let writeLine = lineRewriter(); + let message = {} as ChatCompletionMessage; + for await (const chunk of stream) { + message = messageReducer(message, chunk); + writeLine(message); + } + console.log(); + messages.push(message); + + // If there is no function call, we're done and can exit this loop + if (!message.function_call) { + return; + } + + // If there is a function call, we generate a new message with the role 'function'. + const result = await callFunction(message.function_call); + const newMessage = { + role: 'function' as const, + name: message.function_call.name!, + content: JSON.stringify(result), + }; + messages.push(newMessage); + + console.log(newMessage); + console.log(); + } +} + +function messageReducer(previous: ChatCompletionMessage, item: ChatCompletionChunk): ChatCompletionMessage { + const reduce = (acc: any, delta: any) => { + acc = { ...acc }; + for (const [key, value] of Object.entries(delta)) { + if (acc[key] === undefined || acc[key] === null) { + acc[key] = value; + } else if (typeof acc[key] === 'string' && typeof value === 'string') { + (acc[key] as string) += value; + } else if (typeof acc[key] === 'object' && !Array.isArray(acc[key])) { + acc[key] = reduce(acc[key], value); + } + } + return acc; + }; + + return reduce(previous, item.choices[0]!.delta) as ChatCompletionMessage; +} + +function lineRewriter() { + let lastMessageLength = 0; + return function write(value: any) { + process.stdout.cursorTo(0); + process.stdout.moveCursor(0, -Math.floor((lastMessageLength - 1) / process.stdout.columns)); + lastMessageLength = util.formatWithOptions({ colors: false, breakLength: Infinity }, value).length; + process.stdout.write(util.formatWithOptions({ colors: true, breakLength: Infinity }, value)); + }; +} + +const db = [ + { + id: 'a1', + name: 'To Kill a Mockingbird', + genre: 'historical', + description: `Compassionate, dramatic, and deeply moving, "To Kill A Mockingbird" takes readers to the roots of human behavior - to innocence and experience, kindness and cruelty, love and hatred, humor and pathos. Now with over 18 million copies in print and translated into forty languages, this regional story by a young Alabama woman claims universal appeal. Harper Lee always considered her book to be a simple love story. Today it is regarded as a masterpiece of American literature.`, + }, + { + id: 'a2', + name: 'All the Light We Cannot See', + genre: 'historical', + description: `In a mining town in Germany, Werner Pfennig, an orphan, grows up with his younger sister, enchanted by a crude radio they find that brings them news and stories from places they have never seen or imagined. Werner becomes an expert at building and fixing these crucial new instruments and is enlisted to use his talent to track down the resistance. Deftly interweaving the lives of Marie-Laure and Werner, Doerr illuminates the ways, against all odds, people try to be good to one another.`, + }, + { + id: 'a3', + name: 'Where the Crawdads Sing', + genre: 'historical', + description: `For years, rumors of the “Marsh Girl” haunted Barkley Cove, a quiet fishing village. Kya Clark is barefoot and wild; unfit for polite society. So in late 1969, when the popular Chase Andrews is found dead, locals immediately suspect her. + +But Kya is not what they say. A born naturalist with just one day of school, she takes life's lessons from the land, learning the real ways of the world from the dishonest signals of fireflies. But while she has the skills to live in solitude forever, the time comes when she yearns to be touched and loved. Drawn to two young men from town, who are each intrigued by her wild beauty, Kya opens herself to a new and startling world—until the unthinkable happens.`, + }, +]; + +async function list(genre: string) { + return db.filter((item) => item.genre === genre).map((item) => ({ name: item.name, id: item.id })); +} + +async function search(name: string) { + return db.filter((item) => item.name.includes(name)).map((item) => ({ name: item.name, id: item.id })); +} + +async function get(id: string) { + return db.find((item) => item.id === id)!; +} + +main(); diff --git a/examples/package.json b/examples/package.json new file mode 100644 index 000000000..3b27b221f --- /dev/null +++ b/examples/package.json @@ -0,0 +1,18 @@ +{ + "name": "openai-examples", + "version": "1.0.0", + "description": "Usage examples for the OpenAI Node.js SDK.", + "main": "index.js", + "license": "MIT", + "private": true, + "dependencies": { + "express": "^4.18.2", + "next": "^13.5.5", + "openai": "file:..", + "zod-to-json-schema": "^3.21.4" + }, + "devDependencies": { + "@types/body-parser": "^1.19.3", + "@types/express": "^4.17.19" + } +} diff --git a/examples/raw-response.ts b/examples/raw-response.ts index e114f75d4..6b1df31e8 100644 --- a/examples/raw-response.ts +++ b/examples/raw-response.ts @@ -1,4 +1,4 @@ -#!/usr/bin/env yarn tsn -T +#!/usr/bin/env -S yarn tsn -T import OpenAI from 'openai'; diff --git a/examples/stream-to-client-browser.ts b/examples/stream-to-client-browser.ts new file mode 100755 index 000000000..4430ccc68 --- /dev/null +++ b/examples/stream-to-client-browser.ts @@ -0,0 +1,30 @@ +#!/usr/bin/env -S npm run tsn -T + +/** + * This file is intended be run from the command-line with Node + * for easy demo purposes, but simulating use in the browser. + * + * To run it in a browser application, copy/paste it into a frontend application, + * remove the 'node-fetch' import, and replace `process.stdout.write` with + * a console.log or UI display. + */ +import fetch from 'node-fetch'; +import { ChatCompletionStream } from 'openai/lib/ChatCompletionStream'; + +fetch('http://github.com/service/http://localhost:3000/', { + method: 'POST', + body: 'Tell me why dogs are better than cats', + headers: { 'Content-Type': 'text/plain' }, +}).then(async (res) => { + // @ts-ignore ReadableStream on different environments can be strange + const runner = ChatCompletionStream.fromReadableStream(res.body); + + runner.on('content', (delta, snapshot) => { + process.stdout.write(delta); + // or, in a browser, you might display like this: + // document.body.innerText += delta; // or: + // document.body.innerText = snapshot; + }); + + console.dir(await runner.finalChatCompletion(), { depth: null }); +}); diff --git a/examples/stream-to-client-express.ts b/examples/stream-to-client-express.ts new file mode 100755 index 000000000..f688f42e7 --- /dev/null +++ b/examples/stream-to-client-express.ts @@ -0,0 +1,52 @@ +#!/usr/bin/env -S npm run tsn -T + +// This file demonstrates how to stream from the server the chunks as +// a new-line separated JSON-encoded stream. + +import OpenAI from 'openai'; +import express, { Request, Response } from 'express'; + +const openai = new OpenAI(); +const app = express(); + +app.use(express.text()); + +// This endpoint can be called with: +// +// curl 127.0.0.1:3000 -N -X POST -H 'Content-Type: text/plain' \ +// --data 'Can you explain why dogs are better than cats?' +// +// Or consumed with fetch: +// +// fetch('http://github.com/service/http://localhost:3000/', { +// method: 'POST', +// body: 'Tell me why dogs are better than cats', +// }).then(async res => { +// const runner = ChatCompletionStreamingRunner.fromReadableStream(res) +// }) +// +// See examples/stream-to-client-browser.ts for a more complete example. +app.post('/', async (req: Request, res: Response) => { + try { + console.log('Received request:', req.body); + + const stream = openai.beta.chat.completions.stream({ + model: 'gpt-3.5-turbo', + stream: true, + messages: [{ role: 'user', content: req.body }], + }); + + res.header('Content-Type', 'text/plain'); + for await (const chunk of stream.toReadableStream()) { + res.write(chunk); + } + + res.end(); + } catch (e) { + console.error(e); + } +}); + +app.listen('3000', () => { + console.log('Started proxy express server'); +}); diff --git a/examples/stream-to-client-next.ts b/examples/stream-to-client-next.ts new file mode 100755 index 000000000..c5c1ff317 --- /dev/null +++ b/examples/stream-to-client-next.ts @@ -0,0 +1,38 @@ +import OpenAI from 'openai'; +import type { NextApiRequest, NextApiResponse } from 'next'; + +// This file demonstrates how to stream from a Next.JS server as +// a new-line separated JSON-encoded stream. This file cannot be run +// without Next.JS scaffolding. + +export const runtime = 'edge'; + +// This endpoint can be called with: +// +// curl 127.0.0.1:3000 -N -X POST -H 'Content-Type: text/plain' \ +// --data 'Can you explain why dogs are better than cats?' +// +// Or consumed with fetch: +// +// fetch('http://github.com/service/http://localhost:3000/', { +// method: 'POST', +// body: 'Tell me why dogs are better than cats', +// }).then(async res => { +// const runner = ChatCompletionStreamingRunner.fromReadableStream(res) +// }) +// +// See examples/stream-to-client-browser.ts for a more complete example. +export default async function handler(req: NextApiRequest, res: NextApiResponse) { + const openai = new OpenAI(); + + const stream = openai.beta.chat.completions.stream({ + model: 'gpt-3.5-turbo', + stream: true, + // @ts-ignore + messages: [{ role: 'user', content: await req.text() }], + }); + + return res.send(stream.toReadableStream()); + // @ts-ignore -- Or, for the app router: + return new Response(stream.toReadableStream()); +} diff --git a/examples/stream-to-client-raw.ts b/examples/stream-to-client-raw.ts new file mode 100755 index 000000000..4362f2dff --- /dev/null +++ b/examples/stream-to-client-raw.ts @@ -0,0 +1,57 @@ +#!/usr/bin/env -S npm run tsn -T + +// This file demonstrates how to stream from the server as a text/plain +// response with express and the stream async iterator. + +import OpenAI from 'openai'; +import express, { Request, Response } from 'express'; + +const openai = new OpenAI(); +const app = express(); + +app.use(express.text()); + +// This endpoint can be called with: +// +// curl 127.0.0.1:3000 -N -X POST -H 'Content-Type: text/plain' \ +// --data 'Can you explain why dogs are better than cats?' +// +// Or consumed with fetch: +// +// fetch('http://github.com/service/http://localhost:3000/', { +// method: 'POST', +// body: 'Tell me why dogs are better than cats', +// }).then(async res => { +// const decoder = new TextDecoder(); +// for await (const chunk of res.body) { +// console.log(`chunk: ${decoder.decode(chunk)}`); +// } +// }) +// +app.post('/', async (req: Request, res: Response) => { + try { + console.log('Received request:', req.body); + + const stream = await openai.chat.completions.create({ + model: 'gpt-3.5-turbo', + stream: true, + messages: [{ role: 'user', content: req.body }], + }); + + res.header('Content-Type', 'text/plain'); + + // Sends each content stream chunk-by-chunk, such that the client + // ultimately receives a single string. + for await (const chunk of stream) { + res.write(chunk.choices[0]?.delta.content || ''); + } + + res.end(); + } catch (e) { + console.error(e); + } +}); + +app.listen('3000', () => { + console.log('Started proxy express server'); +}); diff --git a/examples/stream.ts b/examples/stream.ts new file mode 100644 index 000000000..f3b712e8e --- /dev/null +++ b/examples/stream.ts @@ -0,0 +1,24 @@ +#!/usr/bin/env -S npm run tsn -T + +import OpenAI from 'openai'; + +const openai = new OpenAI(); + +async function main() { + const runner = await openai.beta.chat.completions + .stream({ + model: 'gpt-3.5-turbo', + messages: [{ role: 'user', content: 'Say this is a test' }], + }) + .on('message', (msg) => console.log(msg)) + .on('content', (diff) => process.stdout.write(diff)); + + for await (const chunk of runner) { + console.log('chunk', chunk); + } + + const result = await runner.finalChatCompletion(); + console.log(result); +} + +main(); diff --git a/examples/tsconfig.json b/examples/tsconfig.json new file mode 100644 index 000000000..6c3477462 --- /dev/null +++ b/examples/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "../tsconfig.json" +} diff --git a/helpers.md b/helpers.md new file mode 100644 index 000000000..1ae25ef82 --- /dev/null +++ b/helpers.md @@ -0,0 +1,289 @@ +# Chat Completion Helpers + +## Streaming Responses + +```ts +openai.chat.completions.stream({ stream?: false, … }, options?): ChatCompletionStreamingRunner +``` + +`openai.chat.completions.stream()` returns a `ChatCompletionStreamingRunner`, which emits events, has an async +iterator, and exposes a helper methods to accumulate chunks into a convenient shape and make it easy to reason +about the conversation. + +Alternatively, you can use `openai.chat.completions.create({ stream: true, … })` which returns an async +iteratable of the chunks in the stream and uses less memory (most notably, it does not accumulate a final chat +completion object for you). + +If you need to cancel a stream, you can `break` from a `for await` loop or call `stream.abort()`. + +See an example of streaming helpers in action in [`examples/stream.ts`](examples/stream.ts). + +## Automated Function Calls + +```ts +openai.chat.completions.runFunctions({ stream: false, … }, options?): ChatCompletionRunner +openai.chat.completions.runFunctions({ stream: true, … }, options?): ChatCompletionStreamingRunner +``` + +`openai.chat.completions.runFunctions()` returns either a Runner for automating function calls with chat +completions. The runner automatically calls the JavaScript functions you provide and sends their results back +to the API, looping as long as the model requests function calls. + +If you pass a `parse` function, it will automatically parse the `arguments` for you and returns any parsing +errors to the model to attempt auto-recovery. Otherwise, the args will be passed to the function you provide +as a string. + +```ts +client.chat.completions.runFunctions({ + model: 'gpt-3.5-turbo', + messages: [{ role: 'user', content: 'How's the weather this week?' }], + functions: [{ + function: getWeather as (args: { location: string, time: Date}) => any, + parse: parseFunction as (args: strings) => { location: string, time: Date }. + parameters: { + type: 'object', + properties: { + location: { type: 'string' }, + time: { type: 'string', format: 'date-time' }, + }, + }, + }], +}); +``` + + +If you pass `function_call: {name: …}` instead of `auto`, it returns immediately after calling that +function (and only loops to auto-recover parsing errors). + +By default, we run the loop up to five chat completions from the API. You can change this behavior by +adjusting `maxChatCompletions` in the request options object. Note that `max_tokens` is the limit per +chat completion request, not for the entire run functions call run. + +See an example of automated function calls in action in +[`examples/function-call-helpers.ts`](examples/function-call-helpers.ts). + +## Runner API + +### Events + +#### `.on('connect', () => …)` + +The first event that is fired when the connection with the OpenAI API is established. + +#### `.on('chunk', (chunk: ChatCompletionChunk, snapshot: ChatCompletionSnapshot) => …)` (with `stream`) + +The event fired when a chunk is received from the API. Not fired when it is not streaming. The snapshot +returns an accumulated `ChatCompletionSnapshot`, which has a similar shape to `ChatCompletion` with optional +fields and is built up from the chunks. + +#### `.on('chatCompletion', (completion: ChatCompletion) => …)` + +The event fired when a chat completion is returned or done being streamed by the API. + +#### `.on('message', (message: ChatCompletionMessage | ChatCompletionMessageParam) => …)` + +The event fired when a new message is either sent or received from the API. Does not fire for the messages +sent as the parameter to either `.runFunctions()` or `.stream()` + +#### `.on('content', (content: string) => …)` (without `stream`) + +The event fired when a message from the `assistant` is received from the API. + +#### `.on('content', (delta: string, snapshot: string) => …)` (with `stream`) + +The event fired when a chunk from the `assistant` is received from the API. The `delta` argument contains the +content of the chunk, while the `snapshot` returns the accumulated content for the current message. + +#### `.on('functionCall', (functionCall: ChatCompletionMessage.FunctionCall) => …)` + +The event fired when a function call is made by the assistant. + +#### `.on('functionCallResult', (content: string) => …)` + +The event fired when the function runner responds to the function call with `role: "function"`. The `content` of the +response is given as the first argument to the callback. + +#### `.on('finalChatCompletion', (completion: ChatCompletion) => …)` + +The event fired for the final chat completion. If the function call runner exceeds the number +`maxChatCompletions`, then the last chat completion is given. + +#### `.on('finalContent', (contentSnapshot: string) => …)` + +The event fired for the `content` of the last `role: "assistant"` message. Not fired if there is no `assistant` +message. + +#### `.on('finalMessage', (message: ChatCompletionMessage | ChatCompletionMessageParam) => …)` + +The event fired for the last message. + +#### `.on('finalFunctionCall', (functionCall: ChatCompletionMessage.FunctionCall) => …)` + +The event fired for the last message with a defined `function_call`. + +#### `.on('finalFunctionCallResult', (content: string) => …)` + +The event fired for the last message with a `role: "function"`. + +#### `.on('error', (error: OpenAIError) => …)` + +The event fired when an error is encountered outside of a `parse` function or an abort. + +#### `.on('abort', (error: APIUserAbortError) => …)` + +The event fired when the stream receives a signal to abort. + +#### `.on('totalUsage', (usage: CompletionUsage) => …)` (without `stream`, usage is not currently reported with `stream`) + +The event fired at the end, returning the total usage of the call. + +#### `.on('end', () => …)` + +The last event fired in the stream. + +### Methods + +#### `.abort()` + +Aborts the runner and the streaming request, equivalent to `.controller.abort()`. Calling `.abort()` on a +`ChatCompletionStreamingRunner` will also abort any in-flight network requests. + +#### `await .done()` + +An empty promise which resolves when the stream is done. + +#### `await .finalChatCompletion()` + +A promise which resolves with the final chat completion that was received from the API. Throws if the request +ends before a complete chat completion is returned. + +#### `await .allChatCompletions()` + +A promise which resolves with The array of all chat completions that were received from the API. + +#### `await .finalContent()` + +A promise which resolves with the `content` of the last `role: "assistant"` message. Throws if no such message +can be found. + +#### `await .finalMessage()` + +A promise which resolves with the last message. + +#### `await .finalFunctionCall()` + +A promise which resolves with the last message with a defined `function_call`. Throws if no such message is +found. + +#### `await .finalFunctionCallResult()` + +A promise which resolves with the last message with a `role: "function"`. Throws if no such message is found. + +#### `await .totalUsage()` (without `stream`, usage is not currently reported with `stream`) + +A promise which resolves with the total usage. + +### Fields + +#### `.messages` + +A mutable array of all messages in the conversation. + +#### `.controller` + +The underlying `AbortController` for the runner. + +## Examples + +### Abort on a function call + +If you have a function call flow which you intend to _end_ with a certain function call, then you can use the second +argument `runner` given to the function to either mutate `runner.messages` or call `runner.abort()`. + +```ts +import OpenAI from 'openai'; + +const client = new OpenAI(); + +async function main() { + const runner = client.chat.completions + .runFunctions({ + model: 'gpt-3.5-turbo', + messages: [{ role: 'user', content: "How's the weather this week in Los Angeles?" }], + functions: [ + { + function: function queryDatabase(props) { … }, + … + }, + { + function: function updateDatabase(props, runner) { + runner.abort() + }, + … + }, + ], + }) + .on('message', (message) => console.log(message)); + + const finalFunctionCall = await runner.finalFunctionCall(); + console.log('Final function call:', finalFunctionCall); +} + +main(); +``` + + +### Integrate with `zod` + +[`zod`](https://www.npmjs.com/package/zod) is a schema validation library which can help with validating the +assistant's response to make sure it conforms to a schema. Paired with [`zod-to-json-schema`](https://www.npmjs.com/package/zod-to-json-schema), the validation schema also acts as the `parameters` JSON Schema passed to the API. + +```ts +import OpenAI from 'openai'; +import { z } from 'zod'; +import { zodToJsonSchema } from 'zod-to-json-schema'; + +const client = new OpenAI(); + +async function main() { + const runner = client.chat.completions + .runFunctions({ + model: 'gpt-3.5-turbo', + messages: [{ role: 'user', content: "How's the weather this week in Los Angeles?" }], + functions: [ + { + function: getWeather, + parse: GetWeatherParameters.parse, + parameters: zodToJsonSchema(GetWeatherParameters), + }, + ], + }) + .on('message', (message) => console.log(message)); + + const finalContent = await runner.finalContent(); + console.log('Final content:', finalContent); +} + +const GetWeatherParameters = z.object({ + location: z.enum(['Boston', 'New York City', 'Los Angeles', 'San Francisco']), +}); + +async function getWeather(args: z.infer) { + const { location } = args; + // … do lookup … + return { temperature, precipitation }; +} + +main(); +``` + +See a more fully-fledged example in [`examples/function-call-helpers-zod.ts`](examples/function-call-helpers-zod.ts). + +### Integrate with Next.JS + +See an example of a Next.JS integration here [`examples/stream-to-client-next.ts`](examples/stream-to-client-next.ts). + +### Proxy Streaming to a Browser + +See an example of using express to stream to a browser here [`examples/stream-to-client-express.ts`](examples/stream-to-client-express.ts). + diff --git a/src/index.ts b/src/index.ts index 4c6d0ba7a..35587dda3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -148,6 +148,7 @@ export class OpenAI extends Core.APIClient { models: API.Models = new API.Models(this); fineTuning: API.FineTuning = new API.FineTuning(this); fineTunes: API.FineTunes = new API.FineTunes(this); + beta: API.Beta = new API.Beta(this); protected override defaultQuery(): Core.DefaultQuery | undefined { return this._options.defaultQuery; @@ -279,6 +280,8 @@ export namespace OpenAI { export import FineTuneListEventsParams = API.FineTuneListEventsParams; export import FineTuneListEventsParamsNonStreaming = API.FineTuneListEventsParamsNonStreaming; export import FineTuneListEventsParamsStreaming = API.FineTuneListEventsParamsStreaming; + + export import Beta = API.Beta; } export default OpenAI; diff --git a/src/lib/AbstractChatCompletionRunner.ts b/src/lib/AbstractChatCompletionRunner.ts new file mode 100644 index 000000000..c8ee555a3 --- /dev/null +++ b/src/lib/AbstractChatCompletionRunner.ts @@ -0,0 +1,488 @@ +import * as Core from 'openai/core'; +import { type CompletionUsage } from 'openai/resources/completions'; +import { + type Completions, + type ChatCompletion, + type ChatCompletionMessage, + type ChatCompletionMessageParam, + type ChatCompletionCreateParams, +} from 'openai/resources/chat/completions'; +import { APIUserAbortError, OpenAIError } from 'openai/error'; +import { + type RunnableFunction, + isRunnableFunctionWithParse, + type BaseFunctionsArgs, +} from './RunnableFunction'; +import { ChatCompletionFunctionRunnerParams } from './ChatCompletionRunner'; +import { ChatCompletionStreamingFunctionRunnerParams } from './ChatCompletionStreamingRunner'; + +export abstract class AbstractChatCompletionRunner< + Events extends CustomEvents = AbstractChatCompletionRunnerEvents, +> { + controller: AbortController = new AbortController(); + + #connectedPromise: Promise; + #resolveConnectedPromise: () => void = () => {}; + #rejectConnectedPromise: (error: OpenAIError) => void = () => {}; + + #endPromise: Promise; + #resolveEndPromise: () => void = () => {}; + #rejectEndPromise: (error: OpenAIError) => void = () => {}; + + #listeners: { [Event in keyof Events]?: ListenersForEvent } = {}; + + protected _chatCompletions: ChatCompletion[] = []; + messages: (ChatCompletionMessage | ChatCompletionMessageParam)[] = []; + + #ended = false; + #errored = false; + #aborted = false; + #catchingPromiseCreated = false; + + constructor() { + this.#connectedPromise = new Promise((resolve, reject) => { + this.#resolveConnectedPromise = resolve; + this.#rejectConnectedPromise = reject; + }); + + this.#endPromise = new Promise((resolve, reject) => { + this.#resolveEndPromise = resolve; + this.#rejectEndPromise = reject; + }); + + // Don't let these promises cause unhandled rejection errors. + // we will manually cause an unhandled rejection error later + // if the user hasn't registered any error listener or called + // any promise-returning method. + this.#connectedPromise.catch(() => {}); + this.#endPromise.catch(() => {}); + } + + protected _run(executor: () => Promise) { + // Unfortunately if we call `executor()` immediately we get runtime errors about + // references to `this` before the `super()` constructor call returns. + setTimeout(() => { + executor().then(() => { + this._emitFinal(); + this._emit('end'); + }, this.#handleError); + }, 0); + } + + protected _addChatCompletion(chatCompletion: ChatCompletion): ChatCompletion { + this._chatCompletions.push(chatCompletion); + this._emit('chatCompletion', chatCompletion); + const message = chatCompletion.choices[0]?.message; + if (message) this._addMessage(message); + return chatCompletion; + } + + protected _addMessage(message: ChatCompletionMessage | ChatCompletionMessageParam, emit = true) { + this.messages.push(message); + if (emit) { + this._emit('message', message); + if (message.role === 'function' && message.content) { + this._emit('functionCallResult', message.content); + } else if (message.function_call) { + this._emit('functionCall', message.function_call); + } + } + } + + protected _connected() { + if (this.ended) return; + this.#resolveConnectedPromise(); + this._emit('connect'); + } + + get ended(): boolean { + return this.#ended; + } + + get errored(): boolean { + return this.#errored; + } + + get aborted(): boolean { + return this.#aborted; + } + + abort() { + this.controller.abort(); + } + + /** + * Adds the listener function to the end of the listeners array for the event. + * No checks are made to see if the listener has already been added. Multiple calls passing + * the same combination of event and listener will result in the listener being added, and + * called, multiple times. + * @returns this ChatCompletionStream, so that calls can be chained + */ + on(event: Event, listener: ListenerForEvent): this { + const listeners: ListenersForEvent = + this.#listeners[event] || (this.#listeners[event] = []); + listeners.push({ listener }); + return this; + } + + /** + * Removes the specified listener from the listener array for the event. + * off() will remove, at most, one instance of a listener from the listener array. If any single + * listener has been added multiple times to the listener array for the specified event, then + * off() must be called multiple times to remove each instance. + * @returns this ChatCompletionStream, so that calls can be chained + */ + off(event: Event, listener: ListenerForEvent): this { + const listeners = this.#listeners[event]; + if (!listeners) return this; + const index = listeners.findIndex((l) => l.listener === listener); + if (index >= 0) listeners.splice(index, 1); + return this; + } + + /** + * Adds a one-time listener function for the event. The next time the event is triggered, + * this listener is removed and then invoked. + * @returns this ChatCompletionStream, so that calls can be chained + */ + once(event: Event, listener: ListenerForEvent): this { + const listeners: ListenersForEvent = + this.#listeners[event] || (this.#listeners[event] = []); + listeners.push({ listener, once: true }); + return this; + } + + /** + * This is similar to `.once()`, but returns a Promise that resolves the next time + * the event is triggered, instead of calling a listener callback. + * @returns a Promise that resolves the next time given event is triggered, + * or rejects if an error is emitted. (If you request the 'error' event, + * returns a promise that resolves with the error). + * + * Example: + * + * const message = await stream.emitted('message') // rejects if the stream errors + */ + emitted( + event: Event, + ): Promise< + EventParameters extends [infer Param] ? Param + : EventParameters extends [] ? void + : EventParameters + > { + return new Promise((resolve, reject) => { + this.#catchingPromiseCreated = true; + if (event !== 'error') this.once('error', reject); + this.once(event, resolve as any); + }); + } + + async done(): Promise { + this.#catchingPromiseCreated = true; + await this.#endPromise; + } + + /** + * @returns a promise that resolves with the final ChatCompletion, or rejects + * if an error occurred or the stream ended prematurely without producing a ChatCompletion. + */ + async finalChatCompletion(): Promise { + await this.done(); + const completion = this._chatCompletions[this._chatCompletions.length - 1]; + if (!completion) throw new OpenAIError('stream ended without producing a ChatCompletion'); + return completion; + } + + #getFinalContent(): string | null { + for (let i = this.messages.length - 1; i >= 0; i--) { + const message = this.messages[i]; + if (message?.role === 'assistant') return message.content; + } + return null; + } + + /** + * @returns a promise that resolves with the content of the final ChatCompletionMessage, or rejects + * if an error occurred or the stream ended prematurely without producing a ChatCompletionMessage. + */ + async finalContent(): Promise { + await this.done(); + return this.#getFinalContent(); + } + + /** + * @returns a promise that resolves with the the final ChatCompletionMessage, or rejects + * if an error occurred or the stream ended prematurely without producing a ChatCompletionMessage. + */ + async finalMessage(): Promise { + await this.done(); + const message = this.messages[this.messages.length - 1]; + if (!message) throw new OpenAIError('stream ended without producing a ChatCompletionMessage'); + return message; + } + + #getFinalFunctionCall(): ChatCompletionMessage.FunctionCall | undefined { + for (let i = this.messages.length - 1; i >= 0; i--) { + const message = this.messages[i]; + if (message?.function_call) return message.function_call; + } + } + + /** + * @returns a promise that resolves with the content of the final FunctionCall, or rejects + * if an error occurred or the stream ended prematurely without producing a ChatCompletionMessage. + */ + async finalFunctionCall(): Promise { + await this.done(); + return this.#getFinalFunctionCall(); + } + + #getFinalFunctionCallResult(): string | undefined { + for (let i = this.messages.length - 1; i >= 0; i--) { + const message = this.messages[i]; + if (message?.role === 'function' && message.content != null) return message.content; + } + } + + async finalFunctionCallResult(): Promise { + await this.done(); + return this.#getFinalFunctionCallResult(); + } + + #calculateTotalUsage(): CompletionUsage { + const total: CompletionUsage = { + completion_tokens: 0, + prompt_tokens: 0, + total_tokens: 0, + }; + for (const { usage } of this._chatCompletions) { + if (usage) { + total.completion_tokens += usage.completion_tokens; + total.prompt_tokens += usage.prompt_tokens; + total.total_tokens += usage.total_tokens; + } + } + return total; + } + + async totalUsage(): Promise { + await this.done(); + return this.#calculateTotalUsage(); + } + + allChatCompletions(): ChatCompletion[] { + return [...this._chatCompletions]; + } + + #handleError = (error: unknown) => { + this.#errored = true; + if (error instanceof Error && error.name === 'AbortError') { + error = new APIUserAbortError(); + } + if (error instanceof APIUserAbortError) { + this.#aborted = true; + this._emit('abort', error); + } + const openAIError: OpenAIError = + error instanceof OpenAIError ? error : ( + new OpenAIError(error instanceof Error ? error.message : String(error)) + ); + this._emit('error', openAIError); + }; + + protected _emit(event: Event, ...args: EventParameters) { + // make sure we don't emit any events after end + if (this.#ended) return; + + if (event === 'end') { + this.#ended = true; + this.#resolveEndPromise(); + } + + const listeners: ListenersForEvent | undefined = this.#listeners[event]; + if (listeners) { + this.#listeners[event] = listeners.filter((l) => !l.once) as any; + listeners.forEach(({ listener }: any) => listener(...args)); + } + + if (event === 'error') { + // NOTE: _emit('error', error) should only be called from #handleError(). + + const error = args[0] as OpenAIError; + if (!this.#catchingPromiseCreated && !listeners?.length) { + // Trigger an unhandled rejection if the user hasn't registered any error handlers. + // If you are seeing stack traces here, make sure to handle errors via either: + // - runner.on('error', () => ...) + // - await runner.done() + // - await runner.finalChatCompletion() + // - etc. + Promise.reject(error); + } + this.#rejectConnectedPromise(error); + this.#rejectEndPromise(error); + this._emit('end'); + } + } + + protected _emitFinal() { + const completion = this._chatCompletions[this._chatCompletions.length - 1]; + if (completion) this._emit('finalChatCompletion', completion); + const finalMessage = this.messages[this.messages.length - 1]; + if (finalMessage) this._emit('finalMessage', finalMessage); + const finalContent = this.#getFinalContent(); + if (finalContent) this._emit('finalContent', finalContent); + + const finalFunctionCall = this.#getFinalFunctionCall(); + if (finalFunctionCall) this._emit('finalFunctionCall', finalFunctionCall); + + const finalFunctionCallResult = this.#getFinalFunctionCallResult(); + if (finalFunctionCallResult != null) this._emit('finalFunctionCallResult', finalFunctionCallResult); + + if (this._chatCompletions.some((c) => c.usage)) { + this._emit('totalUsage', this.#calculateTotalUsage()); + } + } + + protected async _createChatCompletion( + completions: Completions, + params: ChatCompletionCreateParams, + options?: Core.RequestOptions, + ): Promise { + const signal = options?.signal; + if (signal) { + if (signal.aborted) this.controller.abort(); + signal.addEventListener('abort', () => this.controller.abort()); + } + const chatCompletion = await completions.create( + { ...params, stream: false }, + { ...options, signal: this.controller.signal }, + ); + this._connected(); + return this._addChatCompletion(chatCompletion); + } + + protected async _runChatCompletion( + completions: Completions, + params: ChatCompletionCreateParams, + options?: Core.RequestOptions, + ): Promise { + for (const message of params.messages) { + this._addMessage(message, false); + } + return await this._createChatCompletion(completions, params, options); + } + + protected async _runFunctions( + completions: Completions, + params: + | ChatCompletionFunctionRunnerParams + | ChatCompletionStreamingFunctionRunnerParams, + options?: Core.RequestOptions & { maxChatCompletions?: number }, + ) { + const { function_call = 'auto', stream, ...restParams } = params; + const isSingleFunctionCall = typeof function_call !== 'string' && function_call?.name; + + const functionsByName: Record> = {}; + for (const f of params.functions) { + functionsByName[f.name || f.function.name] = f; + } + + const functions: ChatCompletionCreateParams.Function[] = params.functions.map( + (f): ChatCompletionCreateParams.Function => ({ + name: f.name || f.function.name, + parameters: f.parameters as Record, + description: f.description, + }), + ); + + for (const message of params.messages) { + this._addMessage(message, false); + } + + for (let i = 0; i < (options?.maxChatCompletions ?? 5); ++i) { + const chatCompletion: ChatCompletion = await this._createChatCompletion( + completions, + { + ...restParams, + function_call, + functions, + messages: [...this.messages], + }, + options, + ); + const message = chatCompletion.choices[0]?.message; + if (!message) { + throw new OpenAIError(`missing message in ChatCompletion response`); + } + if (!message.function_call) return; + const { name, arguments: args } = message.function_call; + const fn = functionsByName[name]; + if (!fn || (typeof function_call !== 'string' && name !== function_call?.name)) { + this._addMessage({ + role: 'function', + name, + content: `Invalid function_call: ${JSON.stringify(name)}. Available options are: ${functions + .map((f) => JSON.stringify(f.name)) + .join(', ')}. Please try again`, + }); + if (isSingleFunctionCall) return; + continue; + } + let parsed; + try { + parsed = isRunnableFunctionWithParse(fn) ? await fn.parse(args) : args; + } catch (error) { + this._addMessage({ + role: 'function', + name, + content: error instanceof Error ? error.message : String(error), + }); + continue; + } + const rawContent = await (fn.function as any)(parsed as any, this); + const content = + typeof rawContent === 'string' ? rawContent + : rawContent === undefined ? 'undefined' + : JSON.stringify(rawContent); + this._addMessage({ role: 'function', name, content }); + + if (isSingleFunctionCall) return; + } + } +} + +type CustomEvents = { + [k in Event]: k extends keyof AbstractChatCompletionRunnerEvents ? AbstractChatCompletionRunnerEvents[k] + : (...args: any[]) => void; +}; + +type ListenerForEvent< + Events extends CustomEvents, + Event extends keyof Events, +> = Event extends keyof AbstractChatCompletionRunnerEvents ? AbstractChatCompletionRunnerEvents[Event] +: Events[Event]; + +type ListenersForEvent, Event extends keyof Events> = Array<{ + listener: ListenerForEvent; + once?: boolean; +}>; +type EventParameters, Event extends keyof Events> = Parameters< + ListenerForEvent +>; + +export interface AbstractChatCompletionRunnerEvents { + connect: () => void; + functionCall: (functionCall: ChatCompletionMessage.FunctionCall) => void; + message: (message: ChatCompletionMessage | ChatCompletionMessageParam) => void; + chatCompletion: (completion: ChatCompletion) => void; + finalContent: (contentSnapshot: string) => void; + finalMessage: (message: ChatCompletionMessage | ChatCompletionMessageParam) => void; + finalChatCompletion: (completion: ChatCompletion) => void; + finalFunctionCall: (functionCall: ChatCompletionMessage.FunctionCall) => void; + functionCallResult: (content: string) => void; + finalFunctionCallResult: (content: string) => void; + error: (error: OpenAIError) => void; + abort: (error: APIUserAbortError) => void; + end: () => void; + totalUsage: (usage: CompletionUsage) => void; +} diff --git a/src/lib/ChatCompletionRunFunctions.test.ts b/src/lib/ChatCompletionRunFunctions.test.ts new file mode 100644 index 000000000..677f9513e --- /dev/null +++ b/src/lib/ChatCompletionRunFunctions.test.ts @@ -0,0 +1,1987 @@ +import OpenAI from 'openai'; +import { OpenAIError } from 'openai/error'; +import { PassThrough } from 'stream'; +import { + ParsingFunction, + type ChatCompletionRunner, + type ChatCompletionFunctionRunnerParams, + ChatCompletionStreamingRunner, + type ChatCompletionStreamingFunctionRunnerParams, +} from 'openai/resources/beta/chat/completions'; + +import { type RequestInfo, type RequestInit } from 'openai/_shims/index'; +import { Response } from 'node-fetch'; + +type Fetch = (req: string | RequestInfo, init?: RequestInit) => Promise; + +/** + * Creates a mock `fetch` function and a `handleRequest` function for intercepting `fetch` calls. + * + * You call `handleRequest` with a callback function that handles the next `fetch` call. + * It returns a Promise that: + * - waits for the next call to `fetch` + * - calls the callback with the `fetch` arguments + * - resolves `fetch` with the callback output + */ +function mockFetch(): { fetch: Fetch; handleRequest: (handle: Fetch) => Promise } { + const fetchQueue: ((handler: typeof fetch) => void)[] = []; + const handlerQueue: Promise[] = []; + + const enqueueHandler = () => { + handlerQueue.push( + new Promise((resolve) => { + fetchQueue.push((handle: typeof fetch) => { + enqueueHandler(); + resolve(handle); + }); + }), + ); + }; + enqueueHandler(); + + async function fetch(req: string | RequestInfo, init?: RequestInit): Promise { + const handler = await handlerQueue.shift(); + if (!handler) throw new Error('expected handler to be defined'); + const signal = init?.signal; + if (!signal) return await handler(req, init); + return await Promise.race([ + handler(req, init), + new Promise((resolve, reject) => { + if (signal.aborted) { + // @ts-ignore does exist in Node + reject(new DOMException('The user aborted a request.', 'AbortError')); + return; + } + signal.addEventListener('abort', (e) => { + // @ts-ignore does exist in Node + reject(new DOMException('The user aborted a request.', 'AbortError')); + }); + }), + ]); + } + + function handleRequest(handle: typeof fetch): Promise { + return new Promise((resolve) => { + fetchQueue.shift()?.(async (req, init) => { + try { + return await handle(req, init); + } finally { + resolve(); + } + }); + }); + } + + return { fetch, handleRequest }; +} + +// mockChatCompletionFetch is like mockFetch, but with better a more convenient handleRequest to mock +// chat completion request/responses. +function mockChatCompletionFetch() { + const { fetch, handleRequest: handleRawRequest } = mockFetch(); + + function handleRequest( + handler: (body: ChatCompletionFunctionRunnerParams) => Promise, + ): Promise { + return handleRawRequest(async (req, init) => { + const rawBody = init?.body; + if (typeof rawBody !== 'string') throw new Error(`expected init.body to be a string`); + const body: ChatCompletionFunctionRunnerParams = JSON.parse(rawBody); + return new Response(JSON.stringify(await handler(body)), { + headers: { 'Content-Type': 'application/json' }, + }); + }); + } + return { fetch, handleRequest }; +} + +// mockStreamingChatCompletionFetch is like mockFetch, but with better a more convenient handleRequest to mock +// streaming chat completion request/responses. +function mockStreamingChatCompletionFetch() { + const { fetch, handleRequest: handleRawRequest } = mockFetch(); + + function handleRequest( + handler: ( + body: ChatCompletionStreamingFunctionRunnerParams, + ) => AsyncIterable, + ): Promise { + return handleRawRequest(async (req, init) => { + const rawBody = init?.body; + if (typeof rawBody !== 'string') throw new Error(`expected init.body to be a string`); + const body: ChatCompletionStreamingFunctionRunnerParams = JSON.parse(rawBody); + const stream = new PassThrough(); + (async () => { + for await (const chunk of handler(body)) { + stream.write(`data: ${JSON.stringify(chunk)}\n\n`); + } + stream.end(`data: [DONE]\n\n`); + })(); + return new Response(stream, { + headers: { + 'Content-Type': 'text/event-stream', + 'Transfer-Encoding': 'chunked', + }, + }); + }); + } + return { fetch, handleRequest }; +} + +// contentChoiceDeltas returns an async iterator which mocks a delta stream of a by splitting the +// argument into chunks separated by whitespace. +function* contentChoiceDeltas( + content: string, + { + index = 0, + role = 'assistant', + }: { index?: number; role?: NonNullable } = {}, +): Iterable { + const deltas = content.split(/\s+/g); + for (let i = 0; i < deltas.length; i++) { + yield { + index, + finish_reason: i === deltas.length - 1 ? 'stop' : null, + delta: { + role, + content: deltas[i] ? `${deltas[i]}${i === deltas.length - 1 ? '' : ' '}` : null, + }, + }; + } +} + +// functionCallDeltas returns an async iterator which mocks a delta stream of a functionCall by splitting +// the argument into chunks separated by whitespace. +function* functionCallDeltas( + args: string, + { + index = 0, + name, + role = 'assistant', + }: { + name: string; + index?: number; + role?: NonNullable; + }, +): Iterable { + const deltas = args.split(/\s+/g); + for (let i = 0; i < deltas.length; i++) { + yield { + index, + finish_reason: i === deltas.length - 1 ? 'function_call' : null, + delta: { + role, + function_call: { + arguments: `${deltas[i] || ''}${i === deltas.length - 1 ? '' : ' '}`, + ...(i === deltas.length - 1 ? { name } : null), + }, + }, + }; + } +} + +class RunnerListener { + readonly contents: string[] = []; + readonly messages: OpenAI.Chat.ChatCompletionMessage[] = []; + readonly chatCompletions: OpenAI.Chat.ChatCompletion[] = []; + readonly functionCalls: OpenAI.Chat.ChatCompletionMessage.FunctionCall[] = []; + readonly functionCallResults: string[] = []; + finalContent: string | null = null; + finalMessage: OpenAI.Chat.ChatCompletionMessage | undefined; + finalChatCompletion: OpenAI.Chat.ChatCompletion | undefined; + finalFunctionCall: OpenAI.Chat.ChatCompletionMessage.FunctionCall | undefined; + finalFunctionCallResult: string | undefined; + totalUsage: OpenAI.CompletionUsage | undefined; + error: OpenAIError | undefined; + gotConnect = false; + gotAbort = false; + gotEnd = false; + + onceMessageCallCount = 0; + + constructor(public runner: ChatCompletionRunner) { + runner + .on('connect', () => (this.gotConnect = true)) + .on('content', (content) => this.contents.push(content)) + .on('message', (message) => this.messages.push(message)) + .on('chatCompletion', (completion) => this.chatCompletions.push(completion)) + .on('functionCall', (functionCall) => this.functionCalls.push(functionCall)) + .on('functionCallResult', (result) => this.functionCallResults.push(result)) + .on('finalContent', (content) => (this.finalContent = content)) + .on('finalMessage', (message) => (this.finalMessage = message)) + .on('finalChatCompletion', (completion) => (this.finalChatCompletion = completion)) + .on('finalFunctionCall', (functionCall) => (this.finalFunctionCall = functionCall)) + .on('finalFunctionCallResult', (result) => (this.finalFunctionCallResult = result)) + .on('totalUsage', (usage) => (this.totalUsage = usage)) + .on('error', (error) => (this.error = error)) + .on('abort', () => (this.gotAbort = true)) + .on('end', () => (this.gotEnd = true)) + .once('message', () => this.onceMessageCallCount++); + } + + async sanityCheck({ error }: { error?: string } = {}) { + expect(this.onceMessageCallCount).toBeLessThanOrEqual(1); + expect(this.gotAbort).toEqual(this.runner.aborted); + if (this.runner.aborted) expect(this.runner.errored).toBe(true); + if (error) { + expect(this.error?.message).toEqual(error); + expect(this.runner.errored).toBe(true); + await expect(this.runner.finalChatCompletion()).rejects.toThrow(error); + await expect(this.runner.finalMessage()).rejects.toThrow(error); + await expect(this.runner.finalContent()).rejects.toThrow(error); + await expect(this.runner.finalFunctionCall()).rejects.toThrow(error); + await expect(this.runner.finalFunctionCallResult()).rejects.toThrow(error); + await expect(this.runner.totalUsage()).rejects.toThrow(error); + await expect(this.runner.done()).rejects.toThrow(error); + } else { + expect(this.error).toBeUndefined(); + expect(this.runner.errored).toBe(false); + } + + if (!this.gotConnect) { + expect(this.contents).toEqual([]); + expect(this.messages).toEqual([]); + expect(this.chatCompletions).toEqual([]); + expect(this.functionCalls).toEqual([]); + expect(this.functionCallResults).toEqual([]); + expect(this.finalContent).toBeUndefined(); + expect(this.finalMessage).toBeUndefined(); + expect(this.finalChatCompletion).toBeUndefined(); + expect(this.finalFunctionCall).toBeUndefined(); + expect(this.finalFunctionCallResult).toBeUndefined(); + expect(this.totalUsage).toBeUndefined(); + expect(this.gotEnd).toBe(true); + return; + } + + if (error) return; + + const expectedContents = this.messages + .filter((m) => m.role === 'assistant') + .map((m) => m.content) + .filter(Boolean); + expect(this.contents).toEqual(expectedContents); + expect(this.finalMessage).toEqual(this.messages[this.messages.length - 1]); + expect(await this.runner.finalMessage()).toEqual(this.finalMessage); + expect(this.finalContent).toEqual(expectedContents[expectedContents.length - 1] ?? null); + expect(await this.runner.finalContent()).toEqual(this.finalContent); + expect(this.finalChatCompletion).toEqual(this.chatCompletions[this.chatCompletions.length - 1]); + expect(await this.runner.finalChatCompletion()).toEqual(this.finalChatCompletion); + expect(this.finalFunctionCall).toEqual(this.functionCalls[this.functionCalls.length - 1]); + expect(await this.runner.finalFunctionCall()).toEqual(this.finalFunctionCall); + expect(this.finalFunctionCallResult).toEqual( + this.functionCallResults[this.functionCallResults.length - 1], + ); + expect(await this.runner.finalFunctionCallResult()).toEqual(this.finalFunctionCallResult); + expect(this.chatCompletions).toEqual(this.runner.allChatCompletions()); + expect(this.messages).toEqual(this.runner.messages.slice(-this.messages.length)); + if (this.chatCompletions.some((c) => c.usage)) { + const totalUsage: OpenAI.CompletionUsage = { + completion_tokens: 0, + prompt_tokens: 0, + total_tokens: 0, + }; + for (const { usage } of this.chatCompletions) { + if (usage) { + totalUsage.completion_tokens += usage.completion_tokens; + totalUsage.prompt_tokens += usage.prompt_tokens; + totalUsage.total_tokens += usage.total_tokens; + } + } + expect(this.totalUsage).toEqual(totalUsage); + expect(await this.runner.totalUsage()).toEqual(totalUsage); + } + + expect(this.gotEnd).toBe(true); + } +} + +class StreamingRunnerListener { + readonly eventChunks: OpenAI.Chat.ChatCompletionChunk[] = []; + readonly eventContents: [string, string][] = []; + readonly eventMessages: OpenAI.Chat.ChatCompletionMessage[] = []; + readonly eventChatCompletions: OpenAI.Chat.ChatCompletion[] = []; + readonly eventFunctionCalls: OpenAI.Chat.ChatCompletionMessage.FunctionCall[] = []; + readonly eventFunctionCallResults: string[] = []; + + finalContent: string | null = null; + finalMessage: OpenAI.Chat.ChatCompletionMessage | undefined; + finalChatCompletion: OpenAI.Chat.ChatCompletion | undefined; + finalFunctionCall: OpenAI.Chat.ChatCompletionMessage.FunctionCall | undefined; + finalFunctionCallResult: string | undefined; + error: OpenAIError | undefined; + gotConnect = false; + gotEnd = false; + + constructor(public runner: ChatCompletionStreamingRunner) { + runner + .on('connect', () => (this.gotConnect = true)) + .on('chunk', (chunk) => this.eventChunks.push(chunk)) + .on('content', (delta, snapshot) => this.eventContents.push([delta, snapshot])) + .on('message', (message) => this.eventMessages.push(message)) + .on('chatCompletion', (completion) => this.eventChatCompletions.push(completion)) + .on('functionCall', (functionCall) => this.eventFunctionCalls.push(functionCall)) + .on('functionCallResult', (result) => this.eventFunctionCallResults.push(result)) + .on('finalContent', (content) => (this.finalContent = content)) + .on('finalMessage', (message) => (this.finalMessage = message)) + .on('finalChatCompletion', (completion) => (this.finalChatCompletion = completion)) + .on('finalFunctionCall', (functionCall) => (this.finalFunctionCall = functionCall)) + .on('finalFunctionCallResult', (result) => (this.finalFunctionCallResult = result)) + .on('error', (error) => (this.error = error)) + .on('end', () => (this.gotEnd = true)); + } + + async sanityCheck({ error }: { error?: string } = {}) { + if (error) { + expect(this.error?.message).toEqual(error); + expect(this.runner.errored).toBe(true); + await expect(this.runner.finalChatCompletion()).rejects.toThrow(error); + await expect(this.runner.finalMessage()).rejects.toThrow(error); + await expect(this.runner.finalContent()).rejects.toThrow(error); + await expect(this.runner.finalFunctionCall()).rejects.toThrow(error); + await expect(this.runner.finalFunctionCallResult()).rejects.toThrow(error); + await expect(this.runner.done()).rejects.toThrow(error); + } else { + expect(this.error).toBeUndefined(); + expect(this.runner.errored).toBe(false); + } + + if (!this.gotConnect) { + expect(this.eventContents).toEqual([]); + expect(this.eventMessages).toEqual([]); + expect(this.eventChatCompletions).toEqual([]); + expect(this.eventFunctionCalls).toEqual([]); + expect(this.eventFunctionCallResults).toEqual([]); + expect(this.finalContent).toBeUndefined(); + expect(this.finalMessage).toBeUndefined(); + expect(this.finalChatCompletion).toBeUndefined(); + expect(this.finalFunctionCall).toBeUndefined(); + expect(this.finalFunctionCallResult).toBeUndefined(); + expect(this.gotEnd).toBe(true); + return; + } + + if (error) return; + + if (this.eventContents.length) expect(this.eventChunks.length).toBeGreaterThan(0); + expect(this.finalMessage).toEqual(this.eventMessages[this.eventMessages.length - 1]); + expect(await this.runner.finalMessage()).toEqual(this.finalMessage); + expect(this.finalContent).toEqual(this.eventContents[this.eventContents.length - 1]?.[1] ?? null); + expect(await this.runner.finalContent()).toEqual(this.finalContent); + expect(this.finalChatCompletion).toEqual(this.eventChatCompletions[this.eventChatCompletions.length - 1]); + expect(await this.runner.finalChatCompletion()).toEqual(this.finalChatCompletion); + expect(this.finalFunctionCall).toEqual(this.eventFunctionCalls[this.eventFunctionCalls.length - 1]); + expect(await this.runner.finalFunctionCall()).toEqual(this.finalFunctionCall); + expect(this.finalFunctionCallResult).toEqual( + this.eventFunctionCallResults[this.eventFunctionCallResults.length - 1], + ); + expect(await this.runner.finalFunctionCallResult()).toEqual(this.finalFunctionCallResult); + expect(this.eventChatCompletions).toEqual(this.runner.allChatCompletions()); + expect(this.eventMessages).toEqual(this.runner.messages.slice(-this.eventMessages.length)); + if (error) { + expect(this.error?.message).toEqual(error); + expect(this.runner.errored).toBe(true); + } else { + expect(this.error).toBeUndefined(); + expect(this.runner.errored).toBe(false); + } + expect(this.gotEnd).toBe(true); + } +} + +function _typeTests() { + const openai = new OpenAI(); + + openai.beta.chat.completions.runFunctions({ + messages: [ + { role: 'user', content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}' }, + ], + model: 'gpt-3.5-turbo', + functions: [ + { + name: 'numProperties', + function: (obj: object) => String(Object.keys(obj).length), + parameters: { type: 'object' }, + parse: (str: string): object => { + const result = JSON.parse(str); + if (!(result instanceof Object) || Array.isArray(result)) { + throw new Error('must be an object'); + } + return result; + }, + description: 'gets the number of properties on an object', + }, + { + function: (str: string) => String(str.length), + parameters: { type: 'string' }, + description: 'gets the length of a string', + }, + // @ts-expect-error function must accept string if parse is omitted + { + function: (obj: object) => String(Object.keys(obj).length), + parameters: { type: 'object' }, + description: 'gets the number of properties on an object', + }, + ], + }); + openai.beta.chat.completions.runFunctions({ + messages: [ + { role: 'user', content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}' }, + ], + model: 'gpt-3.5-turbo', + functions: [ + new ParsingFunction({ + name: 'numProperties', + // @ts-expect-error parse and function don't match + parse: (str: string) => str, + function: (obj: object) => String(Object.keys(obj).length), + parameters: { type: 'object' }, + description: 'gets the number of properties on an object', + }), + ], + }); + openai.beta.chat.completions.runFunctions({ + messages: [ + { role: 'user', content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}' }, + ], + model: 'gpt-3.5-turbo', + functions: [ + new ParsingFunction({ + name: 'numProperties', + parse: (str: string): object => { + const result = JSON.parse(str); + if (!(result instanceof Object) || Array.isArray(result)) { + throw new Error('must be an object'); + } + return result; + }, + function: (obj: object) => String(Object.keys(obj).length), + parameters: { type: 'object' }, + description: 'gets the number of properties on an object', + }), + new ParsingFunction({ + name: 'keys', + parse: (str: string): object => { + const result = JSON.parse(str); + if (!(result instanceof Object)) { + throw new Error('must be an Object'); + } + return result; + }, + function: (obj: object) => Object.keys(obj).join(', '), + parameters: { type: 'object' }, + description: 'gets the number of properties on an object', + }), + new ParsingFunction({ + name: 'len2', + // @ts-expect-error parse and function don't match + parse: (str: string) => str, + function: (obj: object) => String(Object.keys(obj).length), + parameters: { type: 'object' }, + description: 'gets the number of properties on an object', + }), + ], + }); + openai.beta.chat.completions.runFunctions({ + messages: [ + { role: 'user', content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}' }, + ], + model: 'gpt-3.5-turbo', + // @ts-ignore error occurs here in TS 4 + functions: [ + { + name: 'numProperties', + parse: (str: string): object => { + const result = JSON.parse(str); + if (!(result instanceof Object) || Array.isArray(result)) { + throw new Error('must be an object'); + } + return result; + }, + function: (obj: object) => String(Object.keys(obj).length), + parameters: { type: 'object' }, + description: 'gets the number of properties on an object', + }, + { + name: 'keys', + parse: (str: string): object => { + const result = JSON.parse(str); + if (!(result instanceof Object)) { + throw new Error('must be an Object'); + } + return result; + }, + function: (obj: object) => Object.keys(obj).join(', '), + parameters: { type: 'object' }, + description: 'gets the number of properties on an object', + }, + { + name: 'len2', + parse: (str: string) => str, + // @ts-ignore error occurs here in TS 5 + // function input doesn't match parse output + function: (obj: object) => String(Object.keys(obj).length), + parameters: { type: 'object' }, + description: 'gets the number of properties on an object', + }, + ] as const, + }); +} + +describe('resource completions', () => { + describe('runFunctions with stream: false', () => { + test('successful flow', async () => { + const { fetch, handleRequest } = mockChatCompletionFetch(); + + const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); + + const runner = openai.beta.chat.completions.runFunctions({ + messages: [{ role: 'user', content: 'tell me what the weather is like' }], + model: 'gpt-3.5-turbo', + functions: [ + { + function: function getWeather() { + return `it's raining`; + }, + parameters: {}, + description: 'gets the weather', + }, + ], + }); + const listener = new RunnerListener(runner); + + await Promise.all([ + handleRequest(async (request) => { + expect(request.messages).toEqual([{ role: 'user', content: 'tell me what the weather is like' }]); + return { + id: '1', + choices: [ + { + index: 0, + finish_reason: 'function_call', + message: { + role: 'assistant', + content: null, + function_call: { + arguments: '', + name: 'getWeather', + }, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + }), + handleRequest(async (request) => { + expect(request.messages).toEqual([ + { role: 'user', content: 'tell me what the weather is like' }, + { + role: 'assistant', + content: null, + function_call: { + arguments: '', + name: 'getWeather', + }, + }, + { + role: 'function', + content: `it's raining`, + name: 'getWeather', + }, + ]); + return { + id: '2', + choices: [ + { + index: 0, + finish_reason: 'stop', + message: { + role: 'assistant', + content: `it's raining`, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + }), + runner.done(), + ]); + + expect(listener.messages).toEqual([ + { role: 'user', content: 'tell me what the weather is like' }, + { role: 'assistant', content: null, function_call: { name: 'getWeather', arguments: '' } }, + { role: 'function', content: `it's raining`, name: 'getWeather' }, + { role: 'assistant', content: "it's raining" }, + ]); + expect(listener.functionCallResults).toEqual([`it's raining`]); + await listener.sanityCheck(); + }); + test('flow with abort', async () => { + const { fetch, handleRequest } = mockChatCompletionFetch(); + + const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); + + const controller = new AbortController(); + const runner = openai.beta.chat.completions.runFunctions( + { + messages: [{ role: 'user', content: 'tell me what the weather is like' }], + model: 'gpt-3.5-turbo', + functions: [ + { + function: function getWeather() { + return `it's raining`; + }, + parameters: {}, + description: 'gets the weather', + }, + ], + }, + { signal: controller.signal }, + ); + const listener = new RunnerListener(runner); + + await handleRequest(async (request) => { + expect(request.messages).toEqual([{ role: 'user', content: 'tell me what the weather is like' }]); + return { + id: '1', + choices: [ + { + index: 0, + finish_reason: 'function_call', + message: { + role: 'assistant', + content: null, + function_call: { + arguments: '', + name: 'getWeather', + }, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + }); + + controller.abort(); + + await runner.done().catch(() => {}); + + expect(listener.messages).toEqual([ + { role: 'user', content: 'tell me what the weather is like' }, + { role: 'assistant', content: null, function_call: { name: 'getWeather', arguments: '' } }, + { role: 'function', content: `it's raining`, name: 'getWeather' }, + ]); + expect(listener.functionCallResults).toEqual([`it's raining`]); + await listener.sanityCheck({ error: 'Request was aborted.' }); + expect(runner.aborted).toBe(true); + }); + test('successful flow with parse', async () => { + const { fetch, handleRequest } = mockChatCompletionFetch(); + + const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); + + const runner = openai.beta.chat.completions.runFunctions({ + messages: [ + { + role: 'user', + content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', + }, + ], + model: 'gpt-3.5-turbo', + functions: [ + new ParsingFunction({ + name: 'numProperties', + function: (obj: object) => String(Object.keys(obj).length), + parameters: { type: 'object' }, + parse: (str: string): object => { + const result = JSON.parse(str); + if (!(result instanceof Object) || Array.isArray(result)) { + throw new Error('must be an object'); + } + return result; + }, + description: 'gets the number of properties on an object', + }), + ], + }); + const listener = new RunnerListener(runner); + + await Promise.all([ + handleRequest(async (request) => { + expect(request.messages).toEqual([ + { + role: 'user', + content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', + }, + ]); + return { + id: '1', + choices: [ + { + index: 0, + finish_reason: 'function_call', + message: { + role: 'assistant', + content: null, + function_call: { + arguments: '{"a": 1, "b": 2, "c": 3}', + name: 'numProperties', + }, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + usage: { + completion_tokens: 5, + prompt_tokens: 20, + total_tokens: 25, + }, + }; + }), + + handleRequest(async (request) => { + expect(request.messages).toEqual([ + { + role: 'user', + content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', + }, + { + role: 'assistant', + content: null, + function_call: { + arguments: '{"a": 1, "b": 2, "c": 3}', + name: 'numProperties', + }, + }, + { + role: 'function', + content: '3', + name: 'numProperties', + }, + ]); + return { + id: '2', + choices: [ + { + index: 0, + finish_reason: 'stop', + message: { + role: 'assistant', + content: `there are 3 properties in {"a": 1, "b": 2, "c": 3}`, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + usage: { + completion_tokens: 10, + prompt_tokens: 25, + total_tokens: 35, + }, + }; + }), + + runner.done(), + ]); + + expect(listener.messages).toEqual([ + { + role: 'user', + content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', + }, + { + role: 'assistant', + content: null, + function_call: { name: 'numProperties', arguments: '{"a": 1, "b": 2, "c": 3}' }, + }, + { role: 'function', content: '3', name: 'numProperties' }, + { role: 'assistant', content: 'there are 3 properties in {"a": 1, "b": 2, "c": 3}' }, + ]); + expect(listener.functionCallResults).toEqual(['3']); + await listener.sanityCheck(); + }); + test('flow with parse error', async () => { + const { fetch, handleRequest } = mockChatCompletionFetch(); + + const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); + + const runner = openai.beta.chat.completions.runFunctions({ + messages: [ + { + role: 'user', + content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', + }, + ], + model: 'gpt-3.5-turbo', + functions: [ + new ParsingFunction({ + name: 'numProperties', + function: (obj: object) => String(Object.keys(obj).length), + parameters: { type: 'object' }, + parse: (str: string): object => { + const result = JSON.parse(str); + if (!(result instanceof Object) || Array.isArray(result)) { + throw new Error('must be an object'); + } + return result; + }, + description: 'gets the number of properties on an object', + }), + ], + }); + const listener = new RunnerListener(runner); + + await Promise.all([ + handleRequest(async (request) => { + expect(request.messages).toEqual([ + { + role: 'user', + content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', + }, + ]); + return { + id: '1', + choices: [ + { + index: 0, + finish_reason: 'function_call', + message: { + role: 'assistant', + content: null, + function_call: { + arguments: '[{"a": 1, "b": 2, "c": 3}]', + name: 'numProperties', + }, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + }), + handleRequest(async (request) => { + expect(request.messages).toEqual([ + { + role: 'user', + content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', + }, + { + role: 'assistant', + content: null, + function_call: { + arguments: '[{"a": 1, "b": 2, "c": 3}]', + name: 'numProperties', + }, + }, + { + role: 'function', + content: `must be an object`, + name: 'numProperties', + }, + ]); + return { + id: '2', + choices: [ + { + index: 0, + finish_reason: 'function_call', + message: { + role: 'assistant', + content: null, + function_call: { + arguments: '{"a": 1, "b": 2, "c": 3}', + name: 'numProperties', + }, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + }), + handleRequest(async (request) => { + expect(request.messages).toEqual([ + { + role: 'user', + content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', + }, + { + role: 'assistant', + content: null, + function_call: { + arguments: '[{"a": 1, "b": 2, "c": 3}]', + name: 'numProperties', + }, + }, + { + role: 'function', + content: `must be an object`, + name: 'numProperties', + }, + { + role: 'assistant', + content: null, + function_call: { + arguments: '{"a": 1, "b": 2, "c": 3}', + name: 'numProperties', + }, + }, + { + role: 'function', + content: '3', + name: 'numProperties', + }, + ]); + return { + id: '3', + choices: [ + { + index: 0, + finish_reason: 'stop', + message: { + role: 'assistant', + content: `there are 3 properties in {"a": 1, "b": 2, "c": 3}`, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + }), + runner.done(), + ]); + + expect(listener.messages).toEqual([ + { + role: 'user', + content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', + }, + { + role: 'assistant', + content: null, + function_call: { name: 'numProperties', arguments: '[{"a": 1, "b": 2, "c": 3}]' }, + }, + { role: 'function', content: `must be an object`, name: 'numProperties' }, + { + role: 'assistant', + content: null, + function_call: { name: 'numProperties', arguments: '{"a": 1, "b": 2, "c": 3}' }, + }, + { role: 'function', content: '3', name: 'numProperties' }, + { role: 'assistant', content: 'there are 3 properties in {"a": 1, "b": 2, "c": 3}' }, + ]); + expect(listener.functionCallResults).toEqual([`must be an object`, '3']); + await listener.sanityCheck(); + }); + test('single function call', async () => { + const { fetch, handleRequest } = mockChatCompletionFetch(); + + const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); + + const runner = openai.beta.chat.completions.runFunctions({ + messages: [{ role: 'user', content: 'tell me what the weather is like' }], + model: 'gpt-3.5-turbo', + function_call: { + name: 'getWeather', + }, + functions: [ + { + function: function getWeather() { + return `it's raining`; + }, + parameters: {}, + description: 'gets the weather', + }, + ], + }); + const listener = new RunnerListener(runner); + + await Promise.all([ + handleRequest(async (request) => { + expect(request.messages).toEqual([{ role: 'user', content: 'tell me what the weather is like' }]); + return { + id: '1', + choices: [ + { + index: 0, + finish_reason: 'function_call', + message: { + role: 'assistant', + content: null, + function_call: { + arguments: '', + name: 'getWeather', + }, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + }), + runner.done(), + ]); + + expect(listener.messages).toEqual([ + { role: 'user', content: 'tell me what the weather is like' }, + { role: 'assistant', content: null, function_call: { name: 'getWeather', arguments: '' } }, + { role: 'function', content: `it's raining`, name: 'getWeather' }, + ]); + expect(listener.functionCallResults).toEqual([`it's raining`]); + await listener.sanityCheck(); + }); + test('wrong function name', async () => { + const { fetch, handleRequest } = mockChatCompletionFetch(); + + const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); + + const runner = openai.beta.chat.completions.runFunctions({ + messages: [{ role: 'user', content: 'tell me what the weather is like' }], + model: 'gpt-3.5-turbo', + functions: [ + { + function: function getWeather() { + return `it's raining`; + }, + parameters: {}, + description: 'gets the weather', + }, + ], + }); + const listener = new RunnerListener(runner); + + await Promise.all([ + handleRequest(async (request) => { + expect(request.messages).toEqual([{ role: 'user', content: 'tell me what the weather is like' }]); + return { + id: '1', + choices: [ + { + index: 0, + finish_reason: 'function_call', + message: { + role: 'assistant', + content: null, + function_call: { + arguments: '', + name: 'get_weather', + }, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + }), + handleRequest(async (request) => { + expect(request.messages).toEqual([ + { role: 'user', content: 'tell me what the weather is like' }, + { + role: 'assistant', + content: null, + function_call: { + arguments: '', + name: 'get_weather', + }, + }, + { + role: 'function', + content: `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, + name: 'get_weather', + }, + ]); + return { + id: '2', + choices: [ + { + index: 0, + finish_reason: 'function_call', + message: { + role: 'assistant', + content: null, + function_call: { + arguments: '', + name: 'getWeather', + }, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + }), + handleRequest(async (request) => { + expect(request.messages).toEqual([ + { role: 'user', content: 'tell me what the weather is like' }, + { + role: 'assistant', + content: null, + function_call: { + arguments: '', + name: 'get_weather', + }, + }, + { + role: 'function', + content: `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, + name: 'get_weather', + }, + { + role: 'assistant', + content: null, + function_call: { + arguments: '', + name: 'getWeather', + }, + }, + { + role: 'function', + content: `it's raining`, + name: 'getWeather', + }, + ]); + return { + id: '3', + choices: [ + { + index: 0, + finish_reason: 'stop', + message: { + role: 'assistant', + content: `it's raining`, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + }), + runner.done(), + ]); + + expect(listener.messages).toEqual([ + { role: 'user', content: 'tell me what the weather is like' }, + { role: 'assistant', content: null, function_call: { name: 'get_weather', arguments: '' } }, + { + role: 'function', + content: `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, + name: 'get_weather', + }, + { role: 'assistant', content: null, function_call: { name: 'getWeather', arguments: '' } }, + { role: 'function', content: `it's raining`, name: 'getWeather' }, + { role: 'assistant', content: "it's raining" }, + ]); + expect(listener.functionCallResults).toEqual([ + `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, + `it's raining`, + ]); + await listener.sanityCheck(); + }); + test('wrong function name with single function call', async () => { + const { fetch, handleRequest } = mockChatCompletionFetch(); + + const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); + + const runner = openai.beta.chat.completions.runFunctions({ + messages: [{ role: 'user', content: 'tell me what the weather is like' }], + model: 'gpt-3.5-turbo', + function_call: { + name: 'getWeather', + }, + functions: [ + { + function: function getWeather() { + return `it's raining`; + }, + parameters: {}, + description: 'gets the weather', + }, + ], + }); + const listener = new RunnerListener(runner); + + await Promise.all([ + handleRequest(async (request) => { + expect(request.messages).toEqual([{ role: 'user', content: 'tell me what the weather is like' }]); + return { + id: '1', + choices: [ + { + index: 0, + finish_reason: 'function_call', + message: { + role: 'assistant', + content: null, + function_call: { + arguments: '', + name: 'get_weather', + }, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + }), + runner.done(), + ]); + + expect(listener.messages).toEqual([ + { role: 'user', content: 'tell me what the weather is like' }, + { role: 'assistant', content: null, function_call: { name: 'get_weather', arguments: '' } }, + { + role: 'function', + content: `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, + name: 'get_weather', + }, + ]); + expect(listener.functionCallResults).toEqual([ + `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, + ]); + await listener.sanityCheck(); + }); + }); + describe('runFunctions with stream: true', () => { + test('successful flow', async () => { + const { fetch, handleRequest } = mockStreamingChatCompletionFetch(); + + const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); + + const runner = openai.beta.chat.completions.runFunctions({ + stream: true, + messages: [{ role: 'user', content: 'tell me what the weather is like' }], + model: 'gpt-3.5-turbo', + functions: [ + { + function: function getWeather() { + return `it's raining`; + }, + parameters: {}, + description: 'gets the weather', + }, + ], + }); + const listener = new StreamingRunnerListener(runner); + + await Promise.all([ + handleRequest(async function* (request): AsyncIterable { + expect(request.messages).toEqual([{ role: 'user', content: 'tell me what the weather is like' }]); + yield { + id: '1', + choices: [ + { + index: 0, + finish_reason: 'function_call', + delta: { + role: 'assistant', + content: null, + function_call: { + arguments: '', + name: 'getWeather', + }, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion.chunk', + }; + }), + handleRequest(async function* (request): AsyncIterable { + expect(request.messages).toEqual([ + { role: 'user', content: 'tell me what the weather is like' }, + { + role: 'assistant', + content: null, + function_call: { + arguments: '', + name: 'getWeather', + }, + }, + { + role: 'function', + content: `it's raining`, + name: 'getWeather', + }, + ]); + for (const choice of contentChoiceDeltas(`it's raining`)) { + yield { + id: '2', + choices: [choice], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + } + }), + runner.done(), + ]); + + expect(listener.eventMessages).toEqual([ + { role: 'assistant', content: null, function_call: { name: 'getWeather', arguments: '' } }, + { role: 'function', content: `it's raining`, name: 'getWeather' }, + { role: 'assistant', content: "it's raining" }, + ]); + expect(listener.eventFunctionCallResults).toEqual([`it's raining`]); + await listener.sanityCheck(); + }); + test('flow with abort', async () => { + const { fetch, handleRequest } = mockStreamingChatCompletionFetch(); + + const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); + + const controller = new AbortController(); + const runner = openai.beta.chat.completions.runFunctions( + { + stream: true, + messages: [{ role: 'user', content: 'tell me what the weather is like' }], + model: 'gpt-3.5-turbo', + functions: [ + { + function: function getWeather() { + return `it's raining`; + }, + parameters: {}, + description: 'gets the weather', + }, + ], + }, + { signal: controller.signal }, + ); + runner.on('functionCallResult', () => controller.abort()); + const listener = new StreamingRunnerListener(runner); + + await handleRequest(async function* (request): AsyncIterable { + expect(request.messages).toEqual([{ role: 'user', content: 'tell me what the weather is like' }]); + yield { + id: '1', + choices: [ + { + index: 0, + finish_reason: 'function_call', + delta: { + role: 'assistant', + content: null, + function_call: { + arguments: '', + name: 'getWeather', + }, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + }); + + await runner.done().catch(() => {}); + + expect(listener.eventMessages).toEqual([ + { role: 'assistant', content: null, function_call: { name: 'getWeather', arguments: '' } }, + { role: 'function', content: `it's raining`, name: 'getWeather' }, + ]); + expect(listener.eventFunctionCallResults).toEqual([`it's raining`]); + await listener.sanityCheck({ error: 'Request was aborted.' }); + expect(runner.aborted).toBe(true); + }); + test('successful flow with parse', async () => { + const { fetch, handleRequest } = mockStreamingChatCompletionFetch(); + + const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); + + const runner = openai.beta.chat.completions.runFunctions({ + stream: true, + messages: [ + { + role: 'user', + content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', + }, + ], + model: 'gpt-3.5-turbo', + functions: [ + new ParsingFunction({ + name: 'numProperties', + function: (obj: object) => String(Object.keys(obj).length), + parameters: { type: 'object' }, + parse: (str: string): object => { + const result = JSON.parse(str); + if (!(result instanceof Object) || Array.isArray(result)) { + throw new Error('must be an object'); + } + return result; + }, + description: 'gets the number of properties on an object', + }), + ], + }); + const listener = new StreamingRunnerListener(runner); + + await Promise.all([ + handleRequest(async function* (request): AsyncIterable { + expect(request.messages).toEqual([ + { + role: 'user', + content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', + }, + ]); + yield { + id: '1', + choices: [ + { + index: 0, + finish_reason: 'function_call', + delta: { + role: 'assistant', + content: null, + function_call: { + arguments: '{"a": 1, "b": 2, "c": 3}', + name: 'numProperties', + }, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + }), + handleRequest(async function* (request): AsyncIterable { + expect(request.messages).toEqual([ + { + role: 'user', + content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', + }, + { + role: 'assistant', + content: null, + function_call: { + arguments: '{"a": 1, "b": 2, "c": 3}', + name: 'numProperties', + }, + }, + { + role: 'function', + content: '3', + name: 'numProperties', + }, + ]); + for (const choice of contentChoiceDeltas(`there are 3 properties in {"a": 1, "b": 2, "c": 3}`)) { + yield { + id: '2', + choices: [choice], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + } + }), + runner.done(), + ]); + + expect(listener.eventMessages).toEqual([ + { + role: 'assistant', + content: null, + function_call: { name: 'numProperties', arguments: '{"a": 1, "b": 2, "c": 3}' }, + }, + { role: 'function', content: '3', name: 'numProperties' }, + { role: 'assistant', content: 'there are 3 properties in {"a": 1, "b": 2, "c": 3}' }, + ]); + expect(listener.eventFunctionCallResults).toEqual(['3']); + await listener.sanityCheck(); + }); + test('flow with parse error', async () => { + const { fetch, handleRequest } = mockStreamingChatCompletionFetch(); + + const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); + + const runner = openai.beta.chat.completions.runFunctions({ + stream: true, + messages: [ + { + role: 'user', + content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', + }, + ], + model: 'gpt-3.5-turbo', + functions: [ + new ParsingFunction({ + name: 'numProperties', + function: (obj: object) => String(Object.keys(obj).length), + parameters: { type: 'object' }, + parse: (str: string): object => { + const result = JSON.parse(str); + if (!(result instanceof Object) || Array.isArray(result)) { + throw new Error('must be an object'); + } + return result; + }, + description: 'gets the number of properties on an object', + }), + ], + }); + const listener = new StreamingRunnerListener(runner); + + await Promise.all([ + handleRequest(async function* (request): AsyncIterable { + expect(request.messages).toEqual([ + { + role: 'user', + content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', + }, + ]); + for (const choice of functionCallDeltas('[{"a": 1, "b": 2, "c": 3}]', { name: 'numProperties' })) { + yield { + id: '1', + choices: [choice], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + } + }), + handleRequest(async function* (request): AsyncIterable { + expect(request.messages).toEqual([ + { + role: 'user', + content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', + }, + { + role: 'assistant', + content: null, + function_call: { + arguments: '[{"a": 1, "b": 2, "c": 3}]', + name: 'numProperties', + }, + }, + { + role: 'function', + content: `must be an object`, + name: 'numProperties', + }, + ]); + for (const choice of functionCallDeltas('{"a": 1, "b": 2, "c": 3}', { name: 'numProperties' })) { + yield { + id: '2', + choices: [choice], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + } + }), + handleRequest(async function* (request): AsyncIterable { + expect(request.messages).toEqual([ + { + role: 'user', + content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', + }, + { + role: 'assistant', + content: null, + function_call: { + arguments: '[{"a": 1, "b": 2, "c": 3}]', + name: 'numProperties', + }, + }, + { + role: 'function', + content: `must be an object`, + name: 'numProperties', + }, + { + role: 'assistant', + content: null, + function_call: { + arguments: '{"a": 1, "b": 2, "c": 3}', + name: 'numProperties', + }, + }, + { + role: 'function', + content: '3', + name: 'numProperties', + }, + ]); + for (const choice of contentChoiceDeltas(`there are 3 properties in {"a": 1, "b": 2, "c": 3}`)) { + yield { + id: '3', + choices: [choice], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + } + }), + runner.done(), + ]); + + expect(listener.eventMessages).toEqual([ + { + role: 'assistant', + content: null, + function_call: { name: 'numProperties', arguments: '[{"a": 1, "b": 2, "c": 3}]' }, + }, + { role: 'function', content: `must be an object`, name: 'numProperties' }, + { + role: 'assistant', + content: null, + function_call: { name: 'numProperties', arguments: '{"a": 1, "b": 2, "c": 3}' }, + }, + { role: 'function', content: '3', name: 'numProperties' }, + { role: 'assistant', content: 'there are 3 properties in {"a": 1, "b": 2, "c": 3}' }, + ]); + expect(listener.eventFunctionCallResults).toEqual([`must be an object`, '3']); + await listener.sanityCheck(); + }); + test('single function call', async () => { + const { fetch, handleRequest } = mockStreamingChatCompletionFetch(); + + const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); + + const runner = openai.beta.chat.completions.runFunctions({ + stream: true, + messages: [{ role: 'user', content: 'tell me what the weather is like' }], + model: 'gpt-3.5-turbo', + function_call: { + name: 'getWeather', + }, + functions: [ + { + function: function getWeather() { + return `it's raining`; + }, + parameters: {}, + description: 'gets the weather', + }, + ], + }); + const listener = new StreamingRunnerListener(runner); + + await Promise.all([ + handleRequest(async function* (request): AsyncIterable { + expect(request.messages).toEqual([{ role: 'user', content: 'tell me what the weather is like' }]); + yield { + id: '1', + choices: [ + { + index: 0, + finish_reason: 'function_call', + delta: { + role: 'assistant', + content: null, + function_call: { + arguments: '', + name: 'getWeather', + }, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + }), + runner.done(), + ]); + + expect(listener.eventMessages).toEqual([ + { role: 'assistant', content: null, function_call: { name: 'getWeather', arguments: '' } }, + { role: 'function', content: `it's raining`, name: 'getWeather' }, + ]); + expect(listener.eventFunctionCallResults).toEqual([`it's raining`]); + await listener.sanityCheck(); + }); + test('wrong function name', async () => { + const { fetch, handleRequest } = mockStreamingChatCompletionFetch(); + + const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); + + const runner = openai.beta.chat.completions.runFunctions({ + stream: true, + messages: [{ role: 'user', content: 'tell me what the weather is like' }], + model: 'gpt-3.5-turbo', + functions: [ + { + function: function getWeather() { + return `it's raining`; + }, + parameters: {}, + description: 'gets the weather', + }, + ], + }); + const listener = new StreamingRunnerListener(runner); + + await Promise.all([ + handleRequest(async function* (request): AsyncIterable { + expect(request.messages).toEqual([{ role: 'user', content: 'tell me what the weather is like' }]); + yield { + id: '1', + choices: [ + { + index: 0, + finish_reason: 'function_call', + delta: { + role: 'assistant', + content: null, + function_call: { + arguments: '', + name: 'get_weather', + }, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + }), + handleRequest(async function* (request): AsyncIterable { + expect(request.messages).toEqual([ + { role: 'user', content: 'tell me what the weather is like' }, + { + role: 'assistant', + content: null, + function_call: { + arguments: '', + name: 'get_weather', + }, + }, + { + role: 'function', + content: `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, + name: 'get_weather', + }, + ]); + yield { + id: '2', + choices: [ + { + index: 0, + finish_reason: 'function_call', + delta: { + role: 'assistant', + content: null, + function_call: { + arguments: '', + name: 'getWeather', + }, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + }), + handleRequest(async function* (request): AsyncIterable { + expect(request.messages).toEqual([ + { role: 'user', content: 'tell me what the weather is like' }, + { + role: 'assistant', + content: null, + function_call: { + arguments: '', + name: 'get_weather', + }, + }, + { + role: 'function', + content: `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, + name: 'get_weather', + }, + { + role: 'assistant', + content: null, + function_call: { + arguments: '', + name: 'getWeather', + }, + }, + { + role: 'function', + content: `it's raining`, + name: 'getWeather', + }, + ]); + for (const choice of contentChoiceDeltas(`it's raining`)) { + yield { + id: '3', + choices: [choice], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + } + }), + runner.done(), + ]); + + expect(listener.eventMessages).toEqual([ + { role: 'assistant', content: null, function_call: { name: 'get_weather', arguments: '' } }, + { + role: 'function', + content: `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, + name: 'get_weather', + }, + { role: 'assistant', content: null, function_call: { name: 'getWeather', arguments: '' } }, + { role: 'function', content: `it's raining`, name: 'getWeather' }, + { role: 'assistant', content: "it's raining" }, + ]); + expect(listener.eventFunctionCallResults).toEqual([ + `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, + `it's raining`, + ]); + await listener.sanityCheck(); + }); + test('wrong function name with single function call', async () => { + const { fetch, handleRequest } = mockStreamingChatCompletionFetch(); + + const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); + + const runner = openai.beta.chat.completions.runFunctions({ + stream: true, + messages: [{ role: 'user', content: 'tell me what the weather is like' }], + model: 'gpt-3.5-turbo', + function_call: { + name: 'getWeather', + }, + functions: [ + { + function: function getWeather() { + return `it's raining`; + }, + parameters: {}, + description: 'gets the weather', + }, + ], + }); + const listener = new StreamingRunnerListener(runner); + + await Promise.all([ + handleRequest(async function* (request): AsyncIterable { + expect(request.messages).toEqual([{ role: 'user', content: 'tell me what the weather is like' }]); + yield { + id: '1', + choices: [ + { + index: 0, + finish_reason: 'function_call', + delta: { + role: 'assistant', + content: null, + function_call: { + arguments: '', + name: 'get_weather', + }, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + }), + runner.done(), + ]); + + expect(listener.eventMessages).toEqual([ + { role: 'assistant', content: null, function_call: { name: 'get_weather', arguments: '' } }, + { + role: 'function', + content: `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, + name: 'get_weather', + }, + ]); + expect(listener.eventFunctionCallResults).toEqual([ + `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, + ]); + await listener.sanityCheck(); + }); + }); + describe('stream', () => { + test('successful flow', async () => { + const { fetch, handleRequest } = mockStreamingChatCompletionFetch(); + + const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); + + const runner = openai.beta.chat.completions.stream({ + stream: true, + messages: [{ role: 'user', content: 'tell me what the weather is like' }], + model: 'gpt-3.5-turbo', + }); + + const listener = new StreamingRunnerListener(runner); + + await Promise.all([ + handleRequest(async function* (request): AsyncIterable { + expect(request.messages).toEqual([{ role: 'user', content: 'tell me what the weather is like' }]); + for (const choice of contentChoiceDeltas(`The weather is great today!`)) { + yield { + id: '1', + choices: [choice], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + } + }), + runner.done(), + ]); + + expect(listener.finalMessage).toEqual({ role: 'assistant', content: 'The weather is great today!' }); + await listener.sanityCheck(); + }); + test('toReadableStream and fromReadableStream', async () => { + const { fetch, handleRequest } = mockStreamingChatCompletionFetch(); + + const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); + + const runner = openai.beta.chat.completions.stream({ + stream: true, + messages: [{ role: 'user', content: 'tell me what the weather is like' }], + model: 'gpt-3.5-turbo', + }); + + const proxied = ChatCompletionStreamingRunner.fromReadableStream(runner.toReadableStream()); + const listener = new StreamingRunnerListener(proxied); + + await Promise.all([ + handleRequest(async function* (request): AsyncIterable { + expect(request.messages).toEqual([{ role: 'user', content: 'tell me what the weather is like' }]); + for (const choice of contentChoiceDeltas(`The weather is great today!`)) { + yield { + id: '1', + choices: [choice], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + } + }), + proxied.done(), + ]); + + expect(listener.finalMessage).toEqual({ role: 'assistant', content: 'The weather is great today!' }); + await listener.sanityCheck(); + }); + }); +}); diff --git a/src/lib/ChatCompletionRunner.ts b/src/lib/ChatCompletionRunner.ts new file mode 100644 index 000000000..cb9bd4867 --- /dev/null +++ b/src/lib/ChatCompletionRunner.ts @@ -0,0 +1,53 @@ +import * as Core from 'openai/core'; +import { + type Completions, + type ChatCompletionMessage, + type ChatCompletionMessageParam, + type ChatCompletionCreateParams, + type ChatCompletionCreateParamsNonStreaming, +} from 'openai/resources/chat/completions'; +import { type RunnableFunctions, type BaseFunctionsArgs } from './RunnableFunction'; +import { + AbstractChatCompletionRunner, + AbstractChatCompletionRunnerEvents, +} from './AbstractChatCompletionRunner'; + +export interface ChatCompletionRunnerEvents extends AbstractChatCompletionRunnerEvents { + content: (content: string) => void; +} + +export type ChatCompletionFunctionRunnerParams = Omit< + ChatCompletionCreateParamsNonStreaming, + 'functions' +> & { + functions: RunnableFunctions; +}; + +export class ChatCompletionRunner extends AbstractChatCompletionRunner { + static runFunctions( + completions: Completions, + params: ChatCompletionFunctionRunnerParams, + options?: Core.RequestOptions & { maxChatCompletions?: number }, + ): ChatCompletionRunner { + const runner = new ChatCompletionRunner(); + runner._run(() => runner._runFunctions(completions, params, options)); + return runner; + } + + static createChatCompletion( + completions: Completions, + params: ChatCompletionCreateParams, + options?: Core.RequestOptions, + ): ChatCompletionRunner { + const runner = new ChatCompletionRunner(); + runner._run(() => runner._runChatCompletion(completions, params, options)); + return runner; + } + + override _addMessage(message: ChatCompletionMessage | ChatCompletionMessageParam) { + super._addMessage(message); + if (message.role === 'assistant' && message.content) { + this._emit('content', message.content); + } + } +} diff --git a/src/lib/ChatCompletionStream.ts b/src/lib/ChatCompletionStream.ts new file mode 100644 index 000000000..9b3e2a419 --- /dev/null +++ b/src/lib/ChatCompletionStream.ts @@ -0,0 +1,311 @@ +import * as Core from 'openai/core'; +import { OpenAIError, APIUserAbortError } from 'openai/error'; +import { + Completions, + type ChatCompletion, + type ChatCompletionChunk, + type ChatCompletionCreateParams, + type ChatCompletionCreateParamsStreaming, +} from 'openai/resources/chat/completions'; +import { + AbstractChatCompletionRunner, + type AbstractChatCompletionRunnerEvents, +} from './AbstractChatCompletionRunner'; +import { type ReadableStream } from 'openai/_shims/index'; +import { Stream } from 'openai/streaming'; + +export interface ChatCompletionStreamEvents extends AbstractChatCompletionRunnerEvents { + content: (contentDelta: string, contentSnapshot: string) => void; + chunk: (chunk: ChatCompletionChunk, snapshot: ChatCompletionSnapshot) => void; +} + +export type ChatCompletionStreamParams = ChatCompletionCreateParamsStreaming; + +export class ChatCompletionStream + extends AbstractChatCompletionRunner + implements AsyncIterable +{ + #currentChatCompletionSnapshot: ChatCompletionSnapshot | undefined; + + get currentChatCompletionSnapshot(): ChatCompletionSnapshot | undefined { + return this.#currentChatCompletionSnapshot; + } + + static fromReadableStream(stream: ReadableStream): ChatCompletionStream { + const runner = new ChatCompletionStream(); + runner._run(() => runner._fromReadableStream(stream)); + return runner; + } + + static createChatCompletion( + completions: Completions, + params: ChatCompletionCreateParams, + options?: Core.RequestOptions, + ): ChatCompletionStream { + const runner = new ChatCompletionStream(); + runner._run(() => runner._runChatCompletion(completions, params, options)); + return runner; + } + + #beginRequest() { + if (this.ended) return; + this.#currentChatCompletionSnapshot = undefined; + } + #addChunk(chunk: ChatCompletionChunk) { + if (this.ended) return; + const completion = this.#accumulateChatCompletion(chunk); + this._emit('chunk', chunk, completion); + const delta = chunk.choices[0]?.delta.content; + const snapshot = completion.choices[0]?.message; + if (delta != null && snapshot?.role === 'assistant' && snapshot?.content) { + this._emit('content', delta, snapshot.content); + } + } + #endRequest(): ChatCompletion { + if (this.ended) { + throw new OpenAIError(`stream has ended, this shouldn't happen`); + } + const snapshot = this.#currentChatCompletionSnapshot; + if (!snapshot) { + throw new OpenAIError(`request ended without sending any chunks`); + } + this.#currentChatCompletionSnapshot = undefined; + return finalizeChatCompletion(snapshot); + } + + protected override async _createChatCompletion( + completions: Completions, + params: ChatCompletionCreateParams, + options?: Core.RequestOptions, + ): Promise { + const signal = options?.signal; + if (signal) { + if (signal.aborted) this.controller.abort(); + signal.addEventListener('abort', () => this.controller.abort()); + } + this.#beginRequest(); + const stream = await completions.create( + { ...params, stream: true }, + { ...options, signal: this.controller.signal }, + ); + this._connected(); + for await (const chunk of stream) { + this.#addChunk(chunk); + } + if (stream.controller.signal?.aborted) { + throw new APIUserAbortError(); + } + return this._addChatCompletion(this.#endRequest()); + } + + protected async _fromReadableStream( + readableStream: ReadableStream, + options?: Core.RequestOptions, + ): Promise { + const signal = options?.signal; + if (signal) { + if (signal.aborted) this.controller.abort(); + signal.addEventListener('abort', () => this.controller.abort()); + } + this.#beginRequest(); + this._connected(); + const stream = Stream.fromReadableStream(readableStream, this.controller); + for await (const chunk of stream) { + this.#addChunk(chunk); + } + if (stream.controller.signal?.aborted) { + throw new APIUserAbortError(); + } + return this._addChatCompletion(this.#endRequest()); + } + + #accumulateChatCompletion(chunk: ChatCompletionChunk): ChatCompletionSnapshot { + let snapshot = this.#currentChatCompletionSnapshot; + if (!snapshot) { + const { choices, ...rest } = chunk; + this.#currentChatCompletionSnapshot = snapshot = { + ...rest, + choices: [], + }; + } + for (const { delta, finish_reason, index } of chunk.choices) { + let choice = snapshot.choices[index]; + if (!choice) snapshot.choices[index] = choice = { finish_reason, index, message: delta }; + else { + if (finish_reason) choice.finish_reason = finish_reason; + const { content, function_call, role } = delta; + if (content) choice.message.content = (choice.message.content || '') + content; + if (role) choice.message.role = role; + if (function_call) { + if (!choice.message.function_call) choice.message.function_call = function_call; + else { + if (function_call.arguments) + choice.message.function_call.arguments = + (choice.message.function_call.arguments || '') + function_call.arguments; + if (function_call.name) choice.message.function_call.name = function_call.name; + } + } + } + } + return snapshot; + } + + [Symbol.asyncIterator](): AsyncIterator { + const pushQueue: ChatCompletionChunk[] = []; + const readQueue: ((chunk: ChatCompletionChunk | undefined) => void)[] = []; + let done = false; + + this.on('chunk', (chunk) => { + const reader = readQueue.shift(); + if (reader) { + reader(chunk); + } else { + pushQueue.push(chunk); + } + }); + + this.on('end', () => { + done = true; + for (const reader of readQueue) { + reader(undefined); + } + readQueue.length = 0; + }); + + return { + next: async (): Promise> => { + if (!pushQueue.length) { + if (done) { + return { value: undefined, done: true }; + } + return new Promise((resolve) => readQueue.push(resolve)).then( + (chunk) => (chunk ? { value: chunk, done: false } : { value: undefined, done: true }), + ); + } + const chunk = pushQueue.shift()!; + return { value: chunk, done: false }; + }, + }; + } + + toReadableStream(): ReadableStream { + const stream = new Stream(this[Symbol.asyncIterator].bind(this), this.controller); + return stream.toReadableStream(); + } +} + +function finalizeChatCompletion(snapshot: ChatCompletionSnapshot): ChatCompletion { + const { id, choices, created, model } = snapshot; + return { + id, + choices: choices.map(({ message, finish_reason, index }): ChatCompletion.Choice => { + if (!finish_reason) throw new OpenAIError(`missing finish_reason for choice ${index}`); + const { content = null, function_call, role } = message; + if (!role) throw new OpenAIError(`missing role for choice ${index}`); + if (function_call) { + const { arguments: args, name } = function_call; + if (args == null) throw new OpenAIError(`missing function_call.arguments for choice ${index}`); + if (!name) throw new OpenAIError(`missing function_call.name for choice ${index}`); + return { message: { content, function_call: { arguments: args, name }, role }, finish_reason, index }; + } + return { message: { content: content, role }, finish_reason, index }; + }), + created, + model, + object: 'chat.completion', + }; +} + +/** + * Represents a streamed chunk of a chat completion response returned by model, + * based on the provided input. + */ +export interface ChatCompletionSnapshot { + /** + * A unique identifier for the chat completion. + */ + id: string; + + /** + * A list of chat completion choices. Can be more than one if `n` is greater + * than 1. + */ + choices: Array; + + /** + * The Unix timestamp (in seconds) of when the chat completion was created. + */ + created: number; + + /** + * The model to generate the completion. + */ + model: string; +} + +export namespace ChatCompletionSnapshot { + export interface Choice { + /** + * A chat completion delta generated by streamed model responses. + */ + message: Choice.Message; + + /** + * The reason the model stopped generating tokens. This will be `stop` if the model + * hit a natural stop point or a provided stop sequence, `length` if the maximum + * number of tokens specified in the request was reached, `content_filter` if + * content was omitted due to a flag from our content filters, or `function_call` + * if the model called a function. + */ + finish_reason: 'stop' | 'length' | 'function_call' | 'content_filter' | null; + + /** + * The index of the choice in the list of choices. + */ + index: number; + } + + export namespace Choice { + /** + * A chat completion delta generated by streamed model responses. + */ + export interface Message { + /** + * The contents of the chunk message. + */ + content?: string | null; + + /** + * The name and arguments of a function that should be called, as generated by the + * model. + */ + function_call?: Message.FunctionCall; + + /** + * The role of the author of this message. + */ + role?: 'system' | 'user' | 'assistant' | 'function'; + } + + export namespace Message { + /** + * The name and arguments of a function that should be called, as generated by the + * model. + */ + export interface FunctionCall { + /** + * The arguments to call the function with, as generated by the model in JSON + * format. Note that the model does not always generate valid JSON, and may + * hallucinate parameters not defined by your function schema. Validate the + * arguments in your code before calling your function. + */ + arguments?: string; + + /** + * The name of the function to call. + */ + name?: string; + } + } + } +} diff --git a/src/lib/ChatCompletionStreamingRunner.ts b/src/lib/ChatCompletionStreamingRunner.ts new file mode 100644 index 000000000..0057c7623 --- /dev/null +++ b/src/lib/ChatCompletionStreamingRunner.ts @@ -0,0 +1,54 @@ +import * as Core from 'openai/core'; +import { + Completions, + type ChatCompletionChunk, + type ChatCompletionCreateParams, + type ChatCompletionCreateParamsStreaming, +} from 'openai/resources/chat/completions'; +import { type AbstractChatCompletionRunnerEvents } from './AbstractChatCompletionRunner'; +import { type ReadableStream } from 'openai/_shims/index'; +import { type BaseFunctionsArgs, type RunnableFunctions } from './RunnableFunction'; +import { ChatCompletionSnapshot, ChatCompletionStream } from './ChatCompletionStream'; + +export interface ChatCompletionStreamEvents extends AbstractChatCompletionRunnerEvents { + content: (contentDelta: string, contentSnapshot: string) => void; + chunk: (chunk: ChatCompletionChunk, snapshot: ChatCompletionSnapshot) => void; +} + +export type ChatCompletionStreamingFunctionRunnerParams = Omit< + ChatCompletionCreateParamsStreaming, + 'functions' +> & { + functions: RunnableFunctions; +}; + +export class ChatCompletionStreamingRunner + extends ChatCompletionStream + implements AsyncIterable +{ + static override fromReadableStream(stream: ReadableStream): ChatCompletionStreamingRunner { + const runner = new ChatCompletionStreamingRunner(); + runner._run(() => runner._fromReadableStream(stream)); + return runner; + } + + static runFunctions( + completions: Completions, + params: ChatCompletionStreamingFunctionRunnerParams, + options?: Core.RequestOptions & { maxChatCompletions?: number }, + ): ChatCompletionStreamingRunner { + const runner = new ChatCompletionStreamingRunner(); + runner._run(() => runner._runFunctions(completions, params, options)); + return runner; + } + + static override createChatCompletion( + completions: Completions, + params: ChatCompletionCreateParams, + options?: Core.RequestOptions, + ): ChatCompletionStreamingRunner { + const runner = new ChatCompletionStreamingRunner(); + runner._run(() => runner._runChatCompletion(completions, params, options)); + return runner; + } +} diff --git a/src/lib/RunnableFunction.ts b/src/lib/RunnableFunction.ts new file mode 100644 index 000000000..1de9f04ca --- /dev/null +++ b/src/lib/RunnableFunction.ts @@ -0,0 +1,96 @@ +import { type ChatCompletionRunner } from './ChatCompletionRunner'; +import { type ChatCompletionStreamingRunner } from './ChatCompletionStreamingRunner'; +import { JSONSchema } from './jsonschema'; + +type PromiseOrValue = T | Promise; + +export type RunnableFunctionWithParse = { + /** + * @param args the return value from `parse`. + * @param runner the runner evaluating this callback. + * @returns a string to send back to OpenAI. + */ + function: ( + args: Args, + runner: ChatCompletionRunner | ChatCompletionStreamingRunner, + ) => PromiseOrValue; + /** + * @param input the raw args from the OpenAI function call. + * @returns the parsed arguments to pass to `function` + */ + parse: (input: string) => PromiseOrValue; + /** + * The parameters the function accepts, describes as a JSON Schema object. + */ + parameters: JSONSchema; + /** + * A description of what the function does, used by the model to choose when and how to call the function. + */ + description: string; + /** + * The name of the function to be called. Will default to function.name if omitted. + */ + name?: string | undefined; +}; + +export type RunnableFunctionWithoutParse = { + /** + * @param args the raw args from the OpenAI function call. + * @returns a string to send back to OpenAI + */ + function: ( + args: string, + runner: ChatCompletionRunner | ChatCompletionStreamingRunner, + ) => PromiseOrValue; + /** + * The parameters the function accepts, describes as a JSON Schema object. + */ + parameters: JSONSchema; + /** + * A description of what the function does, used by the model to choose when and how to call the function. + */ + description: string; + /** + * The name of the function to be called. Will default to function.name if omitted. + */ + name?: string | undefined; +}; + +export type RunnableFunction = + Args extends string ? RunnableFunctionWithoutParse + : Args extends object ? RunnableFunctionWithParse + : never; + +export function isRunnableFunctionWithParse( + fn: any, +): fn is RunnableFunctionWithParse { + return typeof (fn as any).parse === 'function'; +} + +export type BaseFunctionsArgs = readonly (object | string)[]; + +export type RunnableFunctions = + [any[]] extends [FunctionsArgs] ? readonly RunnableFunction[] + : { + [Index in keyof FunctionsArgs]: Index extends number ? RunnableFunction + : FunctionsArgs[Index]; + }; + +/** + * This is helper class for passing a `function` and `parse` where the `function` + * argument type matches the `parse` return type. + */ +export class ParsingFunction { + constructor(input: RunnableFunctionWithParse) { + this.function = input.function; + this.parse = input.parse; + this.parameters = input.parameters; + this.description = input.description; + this.name = input.name; + } + function: RunnableFunctionWithParse['function']; + parse: RunnableFunctionWithParse['parse']; + parameters: RunnableFunctionWithParse['parameters']; + description: RunnableFunctionWithParse['description']; + name?: RunnableFunctionWithParse['name']; +} diff --git a/src/lib/jsonschema.ts b/src/lib/jsonschema.ts new file mode 100644 index 000000000..636277705 --- /dev/null +++ b/src/lib/jsonschema.ts @@ -0,0 +1,148 @@ +// File mostly copied from @types/json-schema, but stripped down a bit for brevity +// https://github.com/DefinitelyTyped/DefinitelyTyped/blob/817274f3280152ba2929a6067c93df8b34c4c9aa/types/json-schema/index.d.ts +// +// ================================================================================================== +// JSON Schema Draft 07 +// ================================================================================================== +// https://tools.ietf.org/html/draft-handrews-json-schema-validation-01 +// -------------------------------------------------------------------------------------------------- + +/** + * Primitive type + * @see https://tools.ietf.org/html/draft-handrews-json-schema-validation-01#section-6.1.1 + */ +export type JSONSchemaTypeName = + | ({} & string) + | 'string' + | 'number' + | 'integer' + | 'boolean' + | 'object' + | 'array' + | 'null'; + +/** + * Primitive type + * @see https://tools.ietf.org/html/draft-handrews-json-schema-validation-01#section-6.1.1 + */ +export type JSONSchemaType = + | string // + | number + | boolean + | JSONSchemaObject + | JSONSchemaArray + | null; + +// Workaround for infinite type recursion +export interface JSONSchemaObject { + [key: string]: JSONSchemaType; +} + +// Workaround for infinite type recursion +// https://github.com/Microsoft/TypeScript/issues/3496#issuecomment-128553540 +export interface JSONSchemaArray extends Array {} + +/** + * Meta schema + * + * Recommended values: + * - 'http://json-schema.org/schema#' + * - 'http://json-schema.org/hyper-schema#' + * - 'http://json-schema.org/draft-07/schema#' + * - 'http://json-schema.org/draft-07/hyper-schema#' + * + * @see https://tools.ietf.org/html/draft-handrews-json-schema-validation-01#section-5 + */ +export type JSONSchemaVersion = string; + +/** + * JSON Schema v7 + * @see https://tools.ietf.org/html/draft-handrews-json-schema-validation-01 + */ +export type JSONSchemaDefinition = JSONSchema | boolean; +export interface JSONSchema { + $id?: string | undefined; + $comment?: string | undefined; + + /** + * @see https://tools.ietf.org/html/draft-handrews-json-schema-validation-01#section-6.1 + */ + type?: JSONSchemaTypeName | JSONSchemaTypeName[] | undefined; + enum?: JSONSchemaType[] | undefined; + const?: JSONSchemaType | undefined; + + /** + * @see https://tools.ietf.org/html/draft-handrews-json-schema-validation-01#section-6.2 + */ + multipleOf?: number | undefined; + maximum?: number | undefined; + exclusiveMaximum?: number | undefined; + minimum?: number | undefined; + exclusiveMinimum?: number | undefined; + + /** + * @see https://tools.ietf.org/html/draft-handrews-json-schema-validation-01#section-6.3 + */ + maxLength?: number | undefined; + minLength?: number | undefined; + pattern?: string | undefined; + + /** + * @see https://tools.ietf.org/html/draft-handrews-json-schema-validation-01#section-6.4 + */ + items?: JSONSchemaDefinition | JSONSchemaDefinition[] | undefined; + additionalItems?: JSONSchemaDefinition | undefined; + maxItems?: number | undefined; + minItems?: number | undefined; + uniqueItems?: boolean | undefined; + contains?: JSONSchemaDefinition | undefined; + + /** + * @see https://tools.ietf.org/html/draft-handrews-json-schema-validation-01#section-6.5 + */ + maxProperties?: number | undefined; + minProperties?: number | undefined; + required?: string[] | undefined; + properties?: + | { + [key: string]: JSONSchemaDefinition; + } + | undefined; + patternProperties?: + | { + [key: string]: JSONSchemaDefinition; + } + | undefined; + additionalProperties?: JSONSchemaDefinition | undefined; + propertyNames?: JSONSchemaDefinition | undefined; + + /** + * @see https://tools.ietf.org/html/draft-handrews-json-schema-validation-01#section-6.6 + */ + if?: JSONSchemaDefinition | undefined; + then?: JSONSchemaDefinition | undefined; + else?: JSONSchemaDefinition | undefined; + + /** + * @see https://tools.ietf.org/html/draft-handrews-json-schema-validation-01#section-6.7 + */ + allOf?: JSONSchemaDefinition[] | undefined; + anyOf?: JSONSchemaDefinition[] | undefined; + oneOf?: JSONSchemaDefinition[] | undefined; + not?: JSONSchemaDefinition | undefined; + + /** + * @see https://tools.ietf.org/html/draft-handrews-json-schema-validation-01#section-7 + */ + format?: string | undefined; + + /** + * @see https://tools.ietf.org/html/draft-handrews-json-schema-validation-01#section-10 + */ + title?: string | undefined; + description?: string | undefined; + default?: JSONSchemaType | undefined; + readOnly?: boolean | undefined; + writeOnly?: boolean | undefined; + examples?: JSONSchemaType | undefined; +} diff --git a/src/resources/beta/beta.ts b/src/resources/beta/beta.ts new file mode 100644 index 000000000..e76f34c83 --- /dev/null +++ b/src/resources/beta/beta.ts @@ -0,0 +1,12 @@ +// File generated from our OpenAPI spec by Stainless. + +import { APIResource } from 'openai/resource'; +import * as ChatAPI from 'openai/resources/beta/chat/chat'; + +export class Beta extends APIResource { + chat: ChatAPI.Chat = new ChatAPI.Chat(this.client); +} + +export namespace Beta { + export import Chat = ChatAPI.Chat; +} diff --git a/src/resources/beta/chat/chat.ts b/src/resources/beta/chat/chat.ts new file mode 100644 index 000000000..c871fab2f --- /dev/null +++ b/src/resources/beta/chat/chat.ts @@ -0,0 +1,12 @@ +// File generated from our OpenAPI spec by Stainless. + +import { APIResource } from 'openai/resource'; +import * as CompletionsAPI from 'openai/resources/beta/chat/completions'; + +export class Chat extends APIResource { + completions: CompletionsAPI.Completions = new CompletionsAPI.Completions(this.client); +} + +export namespace Chat { + export import Completions = CompletionsAPI.Completions; +} diff --git a/src/resources/beta/chat/completions.ts b/src/resources/beta/chat/completions.ts new file mode 100644 index 000000000..8bb23a789 --- /dev/null +++ b/src/resources/beta/chat/completions.ts @@ -0,0 +1,77 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; +import { ChatCompletionRunner, ChatCompletionFunctionRunnerParams } from 'openai/lib/ChatCompletionRunner'; +export { ChatCompletionRunner, ChatCompletionFunctionRunnerParams } from 'openai/lib/ChatCompletionRunner'; +import { + ChatCompletionStreamingRunner, + ChatCompletionStreamingFunctionRunnerParams, +} from 'openai/lib/ChatCompletionStreamingRunner'; +export { + ChatCompletionStreamingRunner, + ChatCompletionStreamingFunctionRunnerParams, +} from 'openai/lib/ChatCompletionStreamingRunner'; +import { BaseFunctionsArgs } from 'openai/lib/RunnableFunction'; +export { + RunnableFunction, + RunnableFunctions, + RunnableFunctionWithParse, + RunnableFunctionWithoutParse, + ParsingFunction, +} from 'openai/lib/RunnableFunction'; +import { ChatCompletionStream } from 'openai/lib/ChatCompletionStream'; +import { ChatCompletionCreateParamsStreaming } from 'openai/resources/chat/completions'; + +export class Completions extends APIResource { + /** + * A convenience helper for using function calls with the /chat/completions + * endpoint which automatically calls the JavaScript functions you provide and + * sends their results back to the /chat/completions endpoint, looping as long as + * the model requests function calls. + * + * For more details and examples, see + * [the docs](https://github.com/openai/openai-node#runFunctions) + */ + runFunctions( + body: ChatCompletionFunctionRunnerParams, + options?: Core.RequestOptions, + ): ChatCompletionRunner; + runFunctions( + body: ChatCompletionStreamingFunctionRunnerParams, + options?: Core.RequestOptions, + ): ChatCompletionStreamingRunner; + runFunctions( + body: + | ChatCompletionFunctionRunnerParams + | ChatCompletionStreamingFunctionRunnerParams, + options?: Core.RequestOptions, + ): ChatCompletionRunner | ChatCompletionStreamingRunner { + if (body.stream) { + return ChatCompletionStreamingRunner.runFunctions( + this.client.chat.completions, + body as ChatCompletionStreamingFunctionRunnerParams, + options, + ); + } + return ChatCompletionRunner.runFunctions( + this.client.chat.completions, + body as ChatCompletionFunctionRunnerParams, + options, + ); + } + + /** + * Creates a chat completion stream + */ + stream( + body: Omit & { stream?: true }, + options?: Core.RequestOptions, + ): ChatCompletionStream { + return ChatCompletionStream.createChatCompletion( + this.client.chat.completions, + { ...body, stream: true }, + options, + ); + } +} diff --git a/src/resources/beta/chat/index.ts b/src/resources/beta/chat/index.ts new file mode 100644 index 000000000..8d0ee40ae --- /dev/null +++ b/src/resources/beta/chat/index.ts @@ -0,0 +1,4 @@ +// File generated from our OpenAPI spec by Stainless. + +export { Chat } from './chat'; +export { Completions } from './completions'; diff --git a/src/resources/beta/index.ts b/src/resources/beta/index.ts new file mode 100644 index 000000000..9d8daa323 --- /dev/null +++ b/src/resources/beta/index.ts @@ -0,0 +1,4 @@ +// File generated from our OpenAPI spec by Stainless. + +export { Beta } from './beta'; +export { Chat } from './chat/index'; diff --git a/src/resources/index.ts b/src/resources/index.ts index 16ea95f8b..3f2d78020 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -2,6 +2,7 @@ export * from './chat/index'; export { Audio } from './audio/audio'; +export { Beta } from './beta/beta'; export { Completion, CompletionChoice, diff --git a/src/streaming.ts b/src/streaming.ts index 33f641888..4482b8d02 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -91,8 +91,10 @@ export class Stream implements AsyncIterable { return new Stream(iterator, controller); } - // Generates a Stream from a newline-separated ReadableStream where each item - // is a JSON Value. + /** + * Generates a Stream from a newline-separated ReadableStream + * where each item is a JSON value. + */ static fromReadableStream(readableStream: ReadableStream, controller: AbortController) { let consumed = false; @@ -140,6 +142,10 @@ export class Stream implements AsyncIterable { return this.iterator(); } + /** + * Splits the stream into two streams which can be + * independently read from at different speeds. + */ tee(): [Stream, Stream] { const left: Array>> = []; const right: Array>> = []; @@ -164,8 +170,11 @@ export class Stream implements AsyncIterable { ]; } - // Converts this stream to a newline-separated ReadableStream of JSON Stringified values in the stream - // which can be turned back into a Stream with Stream.fromReadableStream. + /** + * Converts this stream to a newline-separated ReadableStream of + * JSON stringified values in the stream + * which can be turned back into a Stream with `Stream.fromReadableStream()`. + */ toReadableStream(): ReadableStream { const self = this; let iter: AsyncIterator; From 4b28553fc609bc9aa4a1f642cbb2887c936a7d97 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 30 Oct 2023 16:34:44 -0700 Subject: [PATCH 142/725] feat: streaming improvements (#411) --- src/lib/ChatCompletionRunner.ts | 11 ----------- src/lib/ChatCompletionStream.ts | 24 ++++++++++++++++++++---- src/lib/ChatCompletionStreamingRunner.ts | 11 ----------- src/resources/beta/chat/completions.ts | 15 ++++----------- 4 files changed, 24 insertions(+), 37 deletions(-) diff --git a/src/lib/ChatCompletionRunner.ts b/src/lib/ChatCompletionRunner.ts index cb9bd4867..e2caf32eb 100644 --- a/src/lib/ChatCompletionRunner.ts +++ b/src/lib/ChatCompletionRunner.ts @@ -3,7 +3,6 @@ import { type Completions, type ChatCompletionMessage, type ChatCompletionMessageParam, - type ChatCompletionCreateParams, type ChatCompletionCreateParamsNonStreaming, } from 'openai/resources/chat/completions'; import { type RunnableFunctions, type BaseFunctionsArgs } from './RunnableFunction'; @@ -34,16 +33,6 @@ export class ChatCompletionRunner extends AbstractChatCompletionRunner runner._runChatCompletion(completions, params, options)); - return runner; - } - override _addMessage(message: ChatCompletionMessage | ChatCompletionMessageParam) { super._addMessage(message); if (message.role === 'assistant' && message.content) { diff --git a/src/lib/ChatCompletionStream.ts b/src/lib/ChatCompletionStream.ts index 9b3e2a419..4e68f660f 100644 --- a/src/lib/ChatCompletionStream.ts +++ b/src/lib/ChatCompletionStream.ts @@ -5,7 +5,7 @@ import { type ChatCompletion, type ChatCompletionChunk, type ChatCompletionCreateParams, - type ChatCompletionCreateParamsStreaming, + ChatCompletionCreateParamsBase, } from 'openai/resources/chat/completions'; import { AbstractChatCompletionRunner, @@ -19,7 +19,9 @@ export interface ChatCompletionStreamEvents extends AbstractChatCompletionRunner chunk: (chunk: ChatCompletionChunk, snapshot: ChatCompletionSnapshot) => void; } -export type ChatCompletionStreamParams = ChatCompletionCreateParamsStreaming; +export type ChatCompletionStreamParams = Omit & { + stream?: true; +}; export class ChatCompletionStream extends AbstractChatCompletionRunner @@ -31,6 +33,13 @@ export class ChatCompletionStream return this.#currentChatCompletionSnapshot; } + /** + * Intended for use on the frontend, consuming a stream produced with + * `.toReadableStream()` on the backend. + * + * Note that messages sent to the model do not appear in `.on('message')` + * in this context. + */ static fromReadableStream(stream: ReadableStream): ChatCompletionStream { const runner = new ChatCompletionStream(); runner._run(() => runner._fromReadableStream(stream)); @@ -39,11 +48,11 @@ export class ChatCompletionStream static createChatCompletion( completions: Completions, - params: ChatCompletionCreateParams, + params: ChatCompletionStreamParams, options?: Core.RequestOptions, ): ChatCompletionStream { const runner = new ChatCompletionStream(); - runner._run(() => runner._runChatCompletion(completions, params, options)); + runner._run(() => runner._runChatCompletion(completions, { ...params, stream: true }, options)); return runner; } @@ -110,8 +119,15 @@ export class ChatCompletionStream this.#beginRequest(); this._connected(); const stream = Stream.fromReadableStream(readableStream, this.controller); + let chatId; for await (const chunk of stream) { + if (chatId && chatId !== chunk.id) { + // A new request has been made. + this._addChatCompletion(this.#endRequest()); + } + this.#addChunk(chunk); + chatId = chunk.id; } if (stream.controller.signal?.aborted) { throw new APIUserAbortError(); diff --git a/src/lib/ChatCompletionStreamingRunner.ts b/src/lib/ChatCompletionStreamingRunner.ts index 0057c7623..1e5e09de6 100644 --- a/src/lib/ChatCompletionStreamingRunner.ts +++ b/src/lib/ChatCompletionStreamingRunner.ts @@ -2,7 +2,6 @@ import * as Core from 'openai/core'; import { Completions, type ChatCompletionChunk, - type ChatCompletionCreateParams, type ChatCompletionCreateParamsStreaming, } from 'openai/resources/chat/completions'; import { type AbstractChatCompletionRunnerEvents } from './AbstractChatCompletionRunner'; @@ -41,14 +40,4 @@ export class ChatCompletionStreamingRunner runner._run(() => runner._runFunctions(completions, params, options)); return runner; } - - static override createChatCompletion( - completions: Completions, - params: ChatCompletionCreateParams, - options?: Core.RequestOptions, - ): ChatCompletionStreamingRunner { - const runner = new ChatCompletionStreamingRunner(); - runner._run(() => runner._runChatCompletion(completions, params, options)); - return runner; - } } diff --git a/src/resources/beta/chat/completions.ts b/src/resources/beta/chat/completions.ts index 8bb23a789..24fe90a0a 100644 --- a/src/resources/beta/chat/completions.ts +++ b/src/resources/beta/chat/completions.ts @@ -20,8 +20,8 @@ export { RunnableFunctionWithoutParse, ParsingFunction, } from 'openai/lib/RunnableFunction'; -import { ChatCompletionStream } from 'openai/lib/ChatCompletionStream'; -import { ChatCompletionCreateParamsStreaming } from 'openai/resources/chat/completions'; +import { ChatCompletionStream, type ChatCompletionStreamParams } from 'openai/lib/ChatCompletionStream'; +export { ChatCompletionStream, type ChatCompletionStreamParams } from 'openai/lib/ChatCompletionStream'; export class Completions extends APIResource { /** @@ -64,14 +64,7 @@ export class Completions extends APIResource { /** * Creates a chat completion stream */ - stream( - body: Omit & { stream?: true }, - options?: Core.RequestOptions, - ): ChatCompletionStream { - return ChatCompletionStream.createChatCompletion( - this.client.chat.completions, - { ...body, stream: true }, - options, - ); + stream(body: ChatCompletionStreamParams, options?: Core.RequestOptions): ChatCompletionStream { + return ChatCompletionStream.createChatCompletion(this.client.chat.completions, body, options); } } From 647a41780c33ce6348d3b5d6e5f41d3667cc1b97 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 31 Oct 2023 16:23:11 +0000 Subject: [PATCH 143/725] feat(github): include a devcontainer setup (#413) --- .devcontainer/Dockerfile | 19 +++++++++++++++++++ .devcontainer/devcontainer.json | 20 ++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 .devcontainer/Dockerfile create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 000000000..d03365a2b --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,19 @@ +# syntax=docker/dockerfile:1 +FROM debian:bookworm-slim AS stainless + +RUN apt-get update && apt-get install -y \ + nodejs \ + npm \ + yarnpkg \ + && apt-get clean autoclean + +# Yarn +RUN ln -sf /usr/bin/yarnpkg /usr/bin/yarn + +WORKDIR /workspace + +COPY package.json yarn.lock /workspace/ + +RUN yarn install + +COPY . /workspace diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..d55fc4d67 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,20 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/debian +{ + "name": "Debian", + "build": { + "dockerfile": "Dockerfile" + } + + // Features to add to the dev container. More info: https://containers.dev/features. + // "features": {}, + + // Use 'forwardPorts' to make a list of ports inside the container available locally. + // "forwardPorts": [], + + // Configure tool-specific properties. + // "customizations": {}, + + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + // "remoteUser": "root" +} From d50a2162eb1de7dff9bad3e02ca7ec12bf46b6b8 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 3 Nov 2023 05:23:53 +0000 Subject: [PATCH 144/725] feat(client): allow binary returns (#416) --- src/core.ts | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/core.ts b/src/core.ts index 4cf238457..5ff672620 100644 --- a/src/core.ts +++ b/src/core.ts @@ -52,6 +52,10 @@ async function defaultParseResponse(props: APIResponseProps): Promise { return null as T; } + if (props.options.__binaryResponse) { + return response as unknown as T; + } + const contentType = response.headers.get('content-type'); if (contentType?.includes('application/json')) { const json = await response.json(); @@ -61,10 +65,11 @@ async function defaultParseResponse(props: APIResponseProps): Promise { return json as T; } - // TODO handle blob, arraybuffer, other content types, etc. const text = await response.text(); debug('response', response.status, response.url, response.headers, text); - return text as any as T; + + // TODO handle blob, arraybuffer, other content types, etc. + return text as unknown as T; } /** @@ -729,6 +734,8 @@ export type RequestOptions | Readable> httpAgent?: Agent; signal?: AbortSignal | undefined | null; idempotencyKey?: string; + + __binaryResponse?: boolean | undefined; }; // This is required so that we can determine if a given object matches the RequestOptions @@ -747,6 +754,8 @@ const requestOptionsKeys: KeysEnum = { httpAgent: true, signal: true, idempotencyKey: true, + + __binaryResponse: true, }; export const isRequestOptions = (obj: unknown): obj is RequestOptions | Readable> => { From 37b0a58db60a788874dbede14749408dcea165b6 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 3 Nov 2023 05:24:12 +0000 Subject: [PATCH 145/725] release: 4.15.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 11 +++++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 051881c70..79ae23c28 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.14.2" + ".": "4.15.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e1218ca1..353f4201f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 4.15.0 (2023-11-03) + +Full Changelog: [v4.14.2...v4.15.0](https://github.com/openai/openai-node/compare/v4.14.2...v4.15.0) + +### Features + +* **beta:** add streaming and function calling helpers ([#409](https://github.com/openai/openai-node/issues/409)) ([510c1f3](https://github.com/openai/openai-node/commit/510c1f325ee55197b4c2f434475128c265500746)) +* **client:** allow binary returns ([#416](https://github.com/openai/openai-node/issues/416)) ([02f7ad7](https://github.com/openai/openai-node/commit/02f7ad7f736751e0e7687e6744bae464d4e40b79)) +* **github:** include a devcontainer setup ([#413](https://github.com/openai/openai-node/issues/413)) ([fb2996f](https://github.com/openai/openai-node/commit/fb2996f0d291210878145aacf9b952f8133d9414)) +* streaming improvements ([#411](https://github.com/openai/openai-node/issues/411)) ([37b622c](https://github.com/openai/openai-node/commit/37b622c79ddbd6c286b730e740403c82b542e796)) + ## 4.14.2 (2023-10-30) Full Changelog: [v4.14.1...v4.14.2](https://github.com/openai/openai-node/compare/v4.14.1...v4.14.2) diff --git a/package.json b/package.json index de0ed2c76..807e27975 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.14.2", + "version": "4.15.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 25c2cc8b5..bba5677dc 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.14.2'; // x-release-please-version +export const VERSION = '4.15.0'; // x-release-please-version From 1ca982f192daf49e33b7acb5505ed26c9d891255 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sat, 4 Nov 2023 20:46:05 +0000 Subject: [PATCH 146/725] docs: document customizing fetch (#420) --- README.md | 41 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1493376ce..f88338db8 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://raw.githubusercontent.com/openai/openai-node/v4.14.2-deno/mod.ts'; +import OpenAI from 'https://raw.githubusercontent.com/openai/openai-node/v4.15.0-deno/mod.ts'; ``` @@ -395,6 +395,45 @@ console.log(raw.headers.get('X-My-Header')); console.log(chatCompletion.choices); ``` +## Customizing the fetch client + +By default, this library uses `node-fetch` in Node, and expects a global `fetch` function in other environments. + +If you would prefer to use a global, web-standards-compliant `fetch` function even in a Node environment, +(for example, if you are running Node with `--experimental-fetch` or using NextJS which polyfills with `undici`), +add the following import before your first import `from "OpenAI"`: + + +```ts +// Tell TypeScript and the package to use the global web fetch instead of node-fetch. +// Note, despite the name, this does not add any polyfills, but expects them to be provided if needed. +import "openai/shims/web"; +import OpenAI from "openai"; +``` + +To do the inverse, add `import "openai/shims/node"` (which does import polyfills). +This can also be useful if you are getting the wrong TypeScript types for `Response` - more details [here](https://github.com/openai/openai-node/src/_shims#readme). + +You may also provide a custom `fetch` function when instantiating the client, +which can be used to inspect or alter the `Request` or `Response` before/after each request: + +```ts +import { fetch } from 'undici'; // as one example +import OpenAI from 'openai'; + +const client = new OpenAI({ + fetch: (url: RequestInfo, init?: RequestInfo): Response => { + console.log('About to make request', url, init); + const response = await fetch(url, init); + console.log('Got response', response); + return response; + }, +}); +``` + +Note that if given a `DEBUG=true` environment variable, this library will log all requests and responses automatically. +This is intended for debugging purposes only and may change in the future without notice. + ## Configuring an HTTP(S) Agent (e.g., for proxies) By default, this library uses a stable agent for all http/https requests to reuse TCP connections, eliminating many TCP & TLS handshakes and shaving around 100ms off most requests. From 00d85f8bdd36b67341332cf2966d38ae9fb1daea Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sat, 4 Nov 2023 20:46:25 +0000 Subject: [PATCH 147/725] release: 4.15.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 79ae23c28..e5a652cc9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.15.0" + ".": "4.15.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 353f4201f..862072779 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.15.1 (2023-11-04) + +Full Changelog: [v4.15.0...v4.15.1](https://github.com/openai/openai-node/compare/v4.15.0...v4.15.1) + +### Documentation + +* document customizing fetch ([#420](https://github.com/openai/openai-node/issues/420)) ([1ca982f](https://github.com/openai/openai-node/commit/1ca982f192daf49e33b7acb5505ed26c9d891255)) + ## 4.15.0 (2023-11-03) Full Changelog: [v4.14.2...v4.15.0](https://github.com/openai/openai-node/compare/v4.14.2...v4.15.0) diff --git a/package.json b/package.json index 807e27975..3a151d484 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.15.0", + "version": "4.15.1", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index bba5677dc..ee8ab7a77 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.15.0'; // x-release-please-version +export const VERSION = '4.15.1'; // x-release-please-version From e5415a29ab447ced8535fafda7928b0a6748c8d1 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sat, 4 Nov 2023 23:02:44 +0000 Subject: [PATCH 148/725] docs: fix deno.land import (#423) --- README.md | 6 +----- scripts/git-publish-deno.sh | 19 +++++++++++++++---- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index f88338db8..8f9808973 100644 --- a/README.md +++ b/README.md @@ -18,14 +18,10 @@ yarn add openai You can import in Deno via: - - ```ts -import OpenAI from 'https://raw.githubusercontent.com/openai/openai-node/v4.15.0-deno/mod.ts'; +import OpenAI from 'https://deno.land/x/openai'; ``` - - ## Usage The full API of this library can be found in [api.md file](https://github.com/openai/openai-node/blob/master/api.md). The code below shows how to get started using the chat completions API. diff --git a/scripts/git-publish-deno.sh b/scripts/git-publish-deno.sh index 81e0d9544..77238067d 100755 --- a/scripts/git-publish-deno.sh +++ b/scripts/git-publish-deno.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash +set -exuo pipefail # This script pushes the contents of the `deno`` directory to the `deno` branch, # and creates a `vx.x.x-deno` tag, so that Deno users can @@ -10,6 +11,7 @@ # - Set the following environment variables when running this script: # - DENO_PUSH_REMOTE_URL - the remote url of the separate GitHub repo # - DENO_PUSH_BRANCH - the branch you want to push to in that repo (probably `main`) +# - DENO_MAIN_BRANCH - the branch you want as the main branch in that repo (probably `main`, sometimes `master`) # - DENO_PUSH_VERSION - defaults to version in package.json # - DENO_PUSH_RELEASE_TAG - defaults to v$DENO_PUSH_VERSION-deno @@ -18,8 +20,6 @@ die () { exit 1 } -set -exuo pipefail - # Allow caller to set the following environment variables, but provide defaults # if unset # : "${FOO:=bar}" sets FOO=bar unless it's set and non-empty @@ -28,8 +28,15 @@ set -exuo pipefail : "${DENO_PUSH_VERSION:=$(node -p 'require("./package.json").version')}" : "${DENO_PUSH_BRANCH:=deno}" +: "${DENO_MAIN_BRANCH:=main}" : "${DENO_PUSH_REMOTE_URL:=$(git remote get-url origin)}" -: "${DENO_PUSH_RELEASE_TAG:="v$DENO_PUSH_VERSION-deno"}" +: "${DENO_GIT_USER_NAME:="Stainless Bot"}" +: "${DENO_GIT_USER_NAME:="bot@stainlessapi.com"}" +if [[ $DENO_PUSH_BRANCH = "deno" ]]; then + : "${DENO_PUSH_RELEASE_TAG:="v$DENO_PUSH_VERSION-deno"}" +else + : "${DENO_PUSH_RELEASE_TAG:="v$DENO_PUSH_VERSION"}" +fi if [ ! -e deno ]; then ./build; fi @@ -41,7 +48,7 @@ if [ ! -e deno ]; then ./build; fi cd deno rm -rf .git -git init +git init -b "$DENO_MAIN_BRANCH" git remote add origin "$DENO_PUSH_REMOTE_URL" if git fetch origin "$DENO_PUSH_RELEASE_TAG"; then die "Tag $DENO_PUSH_RELEASE_TAG already exists" @@ -56,6 +63,10 @@ else # the branch doesn't exist on the remote yet git checkout -b "$DENO_PUSH_BRANCH" fi + +git config user.email "$DENO_GIT_USER_EMAIL" +git config user.name "$DENO_GIT_USER_NAME" + git add . git commit -m "chore(deno): release $DENO_PUSH_VERSION" git tag -a "$DENO_PUSH_RELEASE_TAG" -m "release $DENO_PUSH_VERSION" From 65938c35f326a33bc7fa72e8b4ff409191cc3d92 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sat, 4 Nov 2023 23:03:03 +0000 Subject: [PATCH 149/725] release: 4.15.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e5a652cc9..85b77e4e6 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.15.1" + ".": "4.15.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 862072779..559ee76d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.15.2 (2023-11-04) + +Full Changelog: [v4.15.1...v4.15.2](https://github.com/openai/openai-node/compare/v4.15.1...v4.15.2) + +### Documentation + +* fix deno.land import ([#423](https://github.com/openai/openai-node/issues/423)) ([e5415a2](https://github.com/openai/openai-node/commit/e5415a29ab447ced8535fafda7928b0a6748c8d1)) + ## 4.15.1 (2023-11-04) Full Changelog: [v4.15.0...v4.15.1](https://github.com/openai/openai-node/compare/v4.15.0...v4.15.1) diff --git a/package.json b/package.json index 3a151d484..8655de2c4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.15.1", + "version": "4.15.2", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index ee8ab7a77..1d1cd7337 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.15.1'; // x-release-please-version +export const VERSION = '4.15.2'; // x-release-please-version From d438ee1bf97fbc3a843dba71950a2ea6e731da8d Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sat, 4 Nov 2023 23:35:49 +0000 Subject: [PATCH 150/725] fix: improve deno releases (#425) --- build-deno | 21 ++++++++++++++++++++- scripts/git-publish-deno.sh | 2 +- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/build-deno b/build-deno index 428ffa304..77c5d20e7 100755 --- a/build-deno +++ b/build-deno @@ -3,7 +3,26 @@ set -exuo pipefail rm -rf deno; mkdir deno -cp -rp src/* README.md deno +cp -rp src/* deno + +cat << EOF > deno/README.md +# OpenAI Node API Library - Deno build + +This is a build produced from openai/openai-node - please go there to read the source, file issues, etc. + +Installation: + +\`\`\` +import OpenAI from "https://deno.land/x/openai"; +\`\`\` + +Note that in many Deno environments, you can also do this: + +\`\`\` +import OpenAI from "npm:openai"; +\`\`\` +EOF + rm deno/_shims/auto/*-node.ts for dir in deno/_shims deno/_shims/auto; do rm "${dir}"/*.{d.ts,js,mjs} diff --git a/scripts/git-publish-deno.sh b/scripts/git-publish-deno.sh index 77238067d..90855bfb8 100755 --- a/scripts/git-publish-deno.sh +++ b/scripts/git-publish-deno.sh @@ -31,7 +31,7 @@ die () { : "${DENO_MAIN_BRANCH:=main}" : "${DENO_PUSH_REMOTE_URL:=$(git remote get-url origin)}" : "${DENO_GIT_USER_NAME:="Stainless Bot"}" -: "${DENO_GIT_USER_NAME:="bot@stainlessapi.com"}" +: "${DENO_GIT_USER_EMAIL:="bot@stainlessapi.com"}" if [[ $DENO_PUSH_BRANCH = "deno" ]]; then : "${DENO_PUSH_RELEASE_TAG:="v$DENO_PUSH_VERSION-deno"}" else From e0138e8a5939f6fe53639df78cd541e4e20927ed Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sat, 4 Nov 2023 23:36:08 +0000 Subject: [PATCH 151/725] release: 4.15.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 85b77e4e6..0edf1b38d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.15.2" + ".": "4.15.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 559ee76d4..d3d2743e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.15.3 (2023-11-04) + +Full Changelog: [v4.15.2...v4.15.3](https://github.com/openai/openai-node/compare/v4.15.2...v4.15.3) + +### Bug Fixes + +* improve deno releases ([#425](https://github.com/openai/openai-node/issues/425)) ([19469f2](https://github.com/openai/openai-node/commit/19469f266ff69a4e549402188d9f6ad87f5a7778)) + ## 4.15.2 (2023-11-04) Full Changelog: [v4.15.1...v4.15.2](https://github.com/openai/openai-node/compare/v4.15.1...v4.15.2) diff --git a/package.json b/package.json index 8655de2c4..56e05885c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.15.2", + "version": "4.15.3", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 1d1cd7337..c6d048236 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.15.2'; // x-release-please-version +export const VERSION = '4.15.3'; // x-release-please-version From 78e9c14468673e81c11f40f2286667285b0f1ad4 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sun, 5 Nov 2023 14:15:04 +0000 Subject: [PATCH 152/725] docs(readme): remove redundant whitespace (#427) --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 8f9808973..9de4dccb7 100644 --- a/README.md +++ b/README.md @@ -38,8 +38,6 @@ async function main() { messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-3.5-turbo', }); - - console.log(chatCompletion.choices); } main(); @@ -261,7 +259,6 @@ async function main() { if (err instanceof OpenAI.APIError) { console.log(err.status); // 400 console.log(err.name); // BadRequestError - console.log(err.headers); // {server: 'nginx', ...} } else { throw err; @@ -388,7 +385,7 @@ const { data: chatCompletion, response: raw } = await openai.chat.completions .create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-3.5-turbo' }) .withResponse(); console.log(raw.headers.get('X-My-Header')); -console.log(chatCompletion.choices); +console.log(chatCompletion); ``` ## Customizing the fetch client From 1db5c29693b59cf952d8d684e3d99a347864a489 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sun, 5 Nov 2023 14:15:23 +0000 Subject: [PATCH 153/725] release: 4.15.4 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0edf1b38d..64b951803 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.15.3" + ".": "4.15.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d3d2743e7..9819c04b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.15.4 (2023-11-05) + +Full Changelog: [v4.15.3...v4.15.4](https://github.com/openai/openai-node/compare/v4.15.3...v4.15.4) + +### Documentation + +* **readme:** remove redundant whitespace ([#427](https://github.com/openai/openai-node/issues/427)) ([aa3a178](https://github.com/openai/openai-node/commit/aa3a1782914a4a285263e4d070bca73e72ed47ec)) + ## 4.15.3 (2023-11-04) Full Changelog: [v4.15.2...v4.15.3](https://github.com/openai/openai-node/compare/v4.15.2...v4.15.3) diff --git a/package.json b/package.json index 56e05885c..2b4f9c0a6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.15.3", + "version": "4.15.4", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index c6d048236..1f90232ea 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.15.3'; // x-release-please-version +export const VERSION = '4.15.4'; // x-release-please-version From 18b04e8bf872ea15cbbcd92a12282cbba873c677 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 6 Nov 2023 02:54:32 +0000 Subject: [PATCH 154/725] fix: improve deno readme (#429) --- build-deno | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/build-deno b/build-deno index 77c5d20e7..444794e89 100755 --- a/build-deno +++ b/build-deno @@ -5,20 +5,24 @@ set -exuo pipefail rm -rf deno; mkdir deno cp -rp src/* deno +PACKAGE_VERSION=$(node -p 'require("./package.json").version') + cat << EOF > deno/README.md # OpenAI Node API Library - Deno build -This is a build produced from openai/openai-node - please go there to read the source, file issues, etc. +This is a build produced from https://github.com/openai/openai-node - please go there to read the source and docs, file issues, etc. -Installation: +Usage: -\`\`\` -import OpenAI from "https://deno.land/x/openai"; +\`\`\`ts +import OpenAI from "https://deno.land/x/openai@$PACKAGE_VERSION/mod.ts"; + +const client = new OpenAI(); \`\`\` Note that in many Deno environments, you can also do this: -\`\`\` +\`\`\`ts import OpenAI from "npm:openai"; \`\`\` EOF From 6e630d6e0e5406201e110400aed9e4f414421497 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 6 Nov 2023 03:58:33 +0000 Subject: [PATCH 155/725] docs: update deno link in more places (#431) --- README.md | 6 +++++- build-deno | 8 ++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9de4dccb7..99dfc86f4 100644 --- a/README.md +++ b/README.md @@ -18,10 +18,14 @@ yarn add openai You can import in Deno via: + + ```ts -import OpenAI from 'https://deno.land/x/openai'; +import OpenAI from 'https://deno.land/x/openai@4.15.4/mod.ts'; ``` + + ## Usage The full API of this library can be found in [api.md file](https://github.com/openai/openai-node/blob/master/api.md). The code below shows how to get started using the chat completions API. diff --git a/build-deno b/build-deno index 444794e89..eab8fac43 100755 --- a/build-deno +++ b/build-deno @@ -5,17 +5,16 @@ set -exuo pipefail rm -rf deno; mkdir deno cp -rp src/* deno -PACKAGE_VERSION=$(node -p 'require("./package.json").version') - +# x-release-please-start-version cat << EOF > deno/README.md # OpenAI Node API Library - Deno build -This is a build produced from https://github.com/openai/openai-node - please go there to read the source and docs, file issues, etc. +This is a build produced from https://github.com/openai/openai-node – please go there to read the source and docs, file issues, etc. Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@$PACKAGE_VERSION/mod.ts"; +import OpenAI from "https://deno.land/x/openai@4.15.4/mod.ts"; const client = new OpenAI(); \`\`\` @@ -26,6 +25,7 @@ Note that in many Deno environments, you can also do this: import OpenAI from "npm:openai"; \`\`\` EOF +# x-release-please-end rm deno/_shims/auto/*-node.ts for dir in deno/_shims deno/_shims/auto; do From 1d08057e35d2ff3b38a510a93a33314c98b6f579 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 6 Nov 2023 06:25:15 +0000 Subject: [PATCH 156/725] docs: deno version (#432) --- build-deno | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-deno b/build-deno index eab8fac43..b02b01ae5 100755 --- a/build-deno +++ b/build-deno @@ -5,7 +5,8 @@ set -exuo pipefail rm -rf deno; mkdir deno cp -rp src/* deno -# x-release-please-start-version +PACKAGE_VERSION=$(node -p 'require("./package.json").version') + cat << EOF > deno/README.md # OpenAI Node API Library - Deno build @@ -14,7 +15,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@4.15.4/mod.ts"; +import OpenAI from "$(echo 'https://deno.land/x/openai@4.15.4/mod.ts' | sed -E s/@\.+\\//@"$PACKAGE_VERSION"\\//)"; const client = new OpenAI(); \`\`\` @@ -25,7 +26,6 @@ Note that in many Deno environments, you can also do this: import OpenAI from "npm:openai"; \`\`\` EOF -# x-release-please-end rm deno/_shims/auto/*-node.ts for dir in deno/_shims deno/_shims/auto; do From 84b43280089eacdf18f171723591856811beddce Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 6 Nov 2023 19:24:32 +0000 Subject: [PATCH 157/725] feat(api): releases from DevDay; assistants, multimodality, tools, dall-e-3, tts, and more (#433) --- .stats.yml | 2 +- README.md | 20 +- api.md | 125 +++- build-deno | 2 +- .../node-ts-cjs-auto/tests/test.ts | 8 +- examples/audio.ts | 35 ++ examples/tool-call-helpers.ts | 126 +++++ helpers.md | 41 +- src/index.ts | 14 + src/lib/AbstractChatCompletionRunner.ts | 264 +++++++-- src/lib/ChatCompletionRunFunctions.test.ts | 42 +- src/lib/ChatCompletionRunner.ts | 31 +- src/lib/ChatCompletionStream.ts | 130 ++++- src/lib/ChatCompletionStreamingRunner.ts | 24 +- src/lib/RunnableFunction.ts | 12 + src/lib/chatCompletionUtils.ts | 28 + src/pagination.ts | 4 +- src/resources/audio/audio.ts | 4 + src/resources/audio/index.ts | 1 + src/resources/audio/speech.ts | 49 ++ src/resources/audio/transcriptions.ts | 4 +- src/resources/audio/translations.ts | 4 +- src/resources/beta/assistants/assistants.ts | 470 +++++++++++++++ src/resources/beta/assistants/files.ts | 154 +++++ src/resources/beta/assistants/index.ts | 19 + src/resources/beta/beta.ts | 17 + src/resources/beta/chat/completions.ts | 43 +- src/resources/beta/index.ts | 17 + src/resources/beta/threads/index.ts | 31 + src/resources/beta/threads/messages/files.ts | 105 ++++ src/resources/beta/threads/messages/index.ts | 14 + .../beta/threads/messages/messages.ts | 343 +++++++++++ src/resources/beta/threads/runs/index.ts | 23 + src/resources/beta/threads/runs/runs.ts | 535 ++++++++++++++++++ src/resources/beta/threads/runs/steps.ts | 365 ++++++++++++ src/resources/beta/threads/threads.ts | 339 +++++++++++ src/resources/chat/chat.ts | 13 + src/resources/chat/completions.ts | 445 +++++++++++++-- src/resources/chat/index.ts | 13 + src/resources/completions.ts | 22 +- src/resources/edits.ts | 2 +- src/resources/embeddings.ts | 4 +- src/resources/files.ts | 80 ++- src/resources/fine-tunes.ts | 6 +- src/resources/fine-tuning/jobs.ts | 18 +- src/resources/images.ts | 51 +- src/resources/index.ts | 10 +- src/resources/models.ts | 2 +- tests/api-resources/audio/speech.test.ts | 20 + .../beta/assistants/assistants.test.ts | 109 ++++ .../beta/assistants/files.test.ts | 95 ++++ .../beta/chat/completions.test.ts | 10 + .../beta/threads/messages/files.test.ts | 68 +++ .../beta/threads/messages/messages.test.ts | 89 +++ .../beta/threads/runs/runs.test.ts | 131 +++++ .../beta/threads/runs/steps.test.ts | 61 ++ .../beta/threads/threads.test.ts | 98 ++++ tests/api-resources/chat/completions.test.ts | 17 +- tests/api-resources/completions.test.ts | 1 + tests/api-resources/files.test.ts | 11 +- tests/api-resources/fine-tuning/jobs.test.ts | 2 +- tests/api-resources/images.test.ts | 5 + 62 files changed, 4585 insertions(+), 243 deletions(-) create mode 100755 examples/audio.ts create mode 100755 examples/tool-call-helpers.ts create mode 100644 src/lib/chatCompletionUtils.ts create mode 100644 src/resources/audio/speech.ts create mode 100644 src/resources/beta/assistants/assistants.ts create mode 100644 src/resources/beta/assistants/files.ts create mode 100644 src/resources/beta/assistants/index.ts create mode 100644 src/resources/beta/threads/index.ts create mode 100644 src/resources/beta/threads/messages/files.ts create mode 100644 src/resources/beta/threads/messages/index.ts create mode 100644 src/resources/beta/threads/messages/messages.ts create mode 100644 src/resources/beta/threads/runs/index.ts create mode 100644 src/resources/beta/threads/runs/runs.ts create mode 100644 src/resources/beta/threads/runs/steps.ts create mode 100644 src/resources/beta/threads/threads.ts create mode 100644 tests/api-resources/audio/speech.test.ts create mode 100644 tests/api-resources/beta/assistants/assistants.test.ts create mode 100644 tests/api-resources/beta/assistants/files.test.ts create mode 100644 tests/api-resources/beta/chat/completions.test.ts create mode 100644 tests/api-resources/beta/threads/messages/files.test.ts create mode 100644 tests/api-resources/beta/threads/messages/messages.test.ts create mode 100644 tests/api-resources/beta/threads/runs/runs.test.ts create mode 100644 tests/api-resources/beta/threads/runs/steps.test.ts create mode 100644 tests/api-resources/beta/threads/threads.test.ts diff --git a/.stats.yml b/.stats.yml index f21eb8fef..03b0268ff 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1 +1 @@ -configured_endpoints: 28 +configured_endpoints: 57 diff --git a/README.md b/README.md index 99dfc86f4..2cbf9ce86 100644 --- a/README.md +++ b/README.md @@ -62,8 +62,8 @@ async function main() { messages: [{ role: 'user', content: 'Say this is a test' }], stream: true, }); - for await (const part of stream) { - process.stdout.write(part.choices[0]?.delta?.content || ''); + for await (const chunk of stream) { + process.stdout.write(chunk.choices[0]?.delta?.content || ''); } } @@ -121,8 +121,8 @@ async function main() { }); // or, equivalently: - for await (const part of stream) { - process.stdout.write(part.choices[0]?.delta?.content || ''); + for await (const chunk of stream) { + process.stdout.write(chunk.choices[0]?.delta?.content || ''); } const chatCompletion = await stream.finalChatCompletion(); @@ -143,14 +143,18 @@ If you need to cancel a stream, you can `break` from a `for await` loop or call ### Automated function calls -We provide a `openai.beta.chat.completions.runFunctions({…})` convenience helper for using function calls -with the `/chat/completions` endpoint which automatically calls the JavaScript functions you provide +We provide `openai.beta.chat.completions.runFunctions({…})` and `openai.beta.chat.completions.runTools({…})` +convenience helpers for using function calls with the `/chat/completions` endpoint +which automatically call the JavaScript functions you provide and sends their results back to the `/chat/completions` endpoint, looping as long as the model requests function calls. -If you pass a `parse` function, it will automatically parse the `arguments` for you and returns any parsing errors to the model to attempt auto-recovery. Otherwise, the args will be passed to the function you provide as a string. +If you pass a `parse` function, it will automatically parse the `arguments` for you +and returns any parsing errors to the model to attempt auto-recovery. +Otherwise, the args will be passed to the function you provide as a string. -If you pass `function_call: {name: …}` instead of `auto`, it returns immediately after calling that function (and only loops to auto-recover parsing errors). +If you pass `function_call: {name: …}` or `tool_call: {function: {name: …}}` instead of `auto`, +it returns immediately after calling that function (and only loops to auto-recover parsing errors). ```ts import OpenAI from 'openai'; diff --git a/api.md b/api.md index 00ba41ec2..5bcb1e18b 100644 --- a/api.md +++ b/api.md @@ -17,10 +17,23 @@ Methods: Types: - ChatCompletion +- ChatCompletionAssistantMessageParam - ChatCompletionChunk +- ChatCompletionContentPart +- ChatCompletionContentPartImage +- ChatCompletionContentPartText +- ChatCompletionFunctionCallOption +- ChatCompletionFunctionMessageParam - ChatCompletionMessage - ChatCompletionMessageParam +- ChatCompletionMessageToolCall +- ChatCompletionNamedToolChoice - ChatCompletionRole +- ChatCompletionSystemMessageParam +- ChatCompletionTool +- ChatCompletionToolChoiceOption +- ChatCompletionToolMessageParam +- ChatCompletionUserMessageParam - CreateChatCompletionRequestMessage Methods: @@ -60,7 +73,7 @@ Methods: - client.files.create({ ...params }) -> FileObject - client.files.retrieve(fileId) -> FileObject -- client.files.list() -> FileObjectsPage +- client.files.list({ ...params }) -> FileObjectsPage - client.files.del(fileId) -> FileDeleted - client.files.retrieveContent(fileId) -> string - client.files.waitForProcessing(id, { pollInterval = 5000, maxWait = 30 _ 60 _ 1000 }) -> Promise<FileObject> @@ -100,6 +113,12 @@ Methods: - client.audio.translations.create({ ...params }) -> Translation +## Speech + +Methods: + +- client.audio.speech.create({ ...params }) -> Response + # Moderations Types: @@ -166,4 +185,108 @@ Methods: Methods: - client.beta.chat.completions.runFunctions(body, options?) -> ChatCompletionRunner | ChatCompletionStreamingRunner +- client.beta.chat.completions.runTools(body, options?) -> ChatCompletionRunner | ChatCompletionStreamingRunner - client.beta.chat.completions.stream(body, options?) -> ChatCompletionStream + +## Assistants + +Types: + +- Assistant +- AsssitantDeleted + +Methods: + +- client.beta.assistants.create({ ...params }) -> Assistant +- client.beta.assistants.retrieve(assistantId) -> Assistant +- client.beta.assistants.update(assistantId, { ...params }) -> Assistant +- client.beta.assistants.list({ ...params }) -> AssistantsPage +- client.beta.assistants.del(assistantId) -> AsssitantDeleted + +### Files + +Types: + +- AssistantFile +- FileDeleteResponse + +Methods: + +- client.beta.assistants.files.create(assistantId, { ...params }) -> AssistantFile +- client.beta.assistants.files.retrieve(assistantId, fileId) -> AssistantFile +- client.beta.assistants.files.list(assistantId, { ...params }) -> AssistantFilesPage +- client.beta.assistants.files.del(assistantId, fileId) -> FileDeleteResponse + +## Threads + +Types: + +- Thread +- ThreadDeleted + +Methods: + +- client.beta.threads.create({ ...params }) -> Thread +- client.beta.threads.retrieve(threadId) -> Thread +- client.beta.threads.update(threadId, { ...params }) -> Thread +- client.beta.threads.del(threadId) -> ThreadDeleted +- client.beta.threads.createAndRun({ ...params }) -> Run + +### Runs + +Types: + +- RequiredActionFunctionToolCall +- Run + +Methods: + +- client.beta.threads.runs.create(threadId, { ...params }) -> Run +- client.beta.threads.runs.retrieve(threadId, runId) -> Run +- client.beta.threads.runs.update(threadId, runId, { ...params }) -> Run +- client.beta.threads.runs.list(threadId, { ...params }) -> RunsPage +- client.beta.threads.runs.cancel(threadId, runId) -> Run +- client.beta.threads.runs.submitToolOutputs(threadId, runId, { ...params }) -> Run + +#### Steps + +Types: + +- CodeToolCall +- FunctionToolCall +- MessageCreationStepDetails +- RetrievalToolCall +- RunStep +- ToolCallsStepDetails + +Methods: + +- client.beta.threads.runs.steps.retrieve(threadId, runId, stepId) -> RunStep +- client.beta.threads.runs.steps.list(threadId, runId, { ...params }) -> RunStepsPage + +### Messages + +Types: + +- MessageContentImageFile +- MessageContentText +- ThreadMessage +- ThreadMessageDeleted + +Methods: + +- client.beta.threads.messages.create(threadId, { ...params }) -> ThreadMessage +- client.beta.threads.messages.retrieve(threadId, messageId) -> ThreadMessage +- client.beta.threads.messages.update(threadId, messageId, { ...params }) -> ThreadMessage +- client.beta.threads.messages.list(threadId, { ...params }) -> ThreadMessagesPage + +#### Files + +Types: + +- MessageFile + +Methods: + +- client.beta.threads.messages.files.retrieve(threadId, messageId, fileId) -> MessageFile +- client.beta.threads.messages.files.list(threadId, messageId, { ...params }) -> MessageFilesPage diff --git a/build-deno b/build-deno index b02b01ae5..d7f6dc298 100755 --- a/build-deno +++ b/build-deno @@ -37,7 +37,7 @@ done for file in LICENSE CHANGELOG.md; do if [ -e "${file}" ]; then cp "${file}" deno; fi done -npm exec ts-node -- scripts/denoify.ts +npm exec ts-node -T -- scripts/denoify.ts deno fmt deno deno check deno/mod.ts if [ -e deno_tests ]; then diff --git a/ecosystem-tests/node-ts-cjs-auto/tests/test.ts b/ecosystem-tests/node-ts-cjs-auto/tests/test.ts index b7ab308cb..bc0cbbd8d 100644 --- a/ecosystem-tests/node-ts-cjs-auto/tests/test.ts +++ b/ecosystem-tests/node-ts-cjs-auto/tests/test.ts @@ -71,10 +71,10 @@ it(`streaming works`, async function () { it(`ChatCompletionStream works`, async function () { const chunks: OpenAI.Chat.ChatCompletionChunk[] = []; const contents: [string, string][] = []; - const messages: OpenAI.Chat.ChatCompletionMessage[] = []; + const messages: OpenAI.Chat.ChatCompletionMessageParam[] = []; const chatCompletions: OpenAI.Chat.ChatCompletion[] = []; let finalContent: string | undefined; - let finalMessage: OpenAI.Chat.ChatCompletionMessage | undefined; + let finalMessage: OpenAI.Chat.ChatCompletionMessageParam | undefined; let finalChatCompletion: OpenAI.Chat.ChatCompletion | undefined; const stream = client.beta.chat.completions @@ -113,10 +113,10 @@ it(`ChatCompletionStream works`, async function () { it(`aborting ChatCompletionStream works`, async function () { const chunks: OpenAI.Chat.ChatCompletionChunk[] = []; const contents: [string, string][] = []; - const messages: OpenAI.Chat.ChatCompletionMessage[] = []; + const messages: OpenAI.Chat.ChatCompletionMessageParam[] = []; const chatCompletions: OpenAI.Chat.ChatCompletion[] = []; let finalContent: string | undefined; - let finalMessage: OpenAI.Chat.ChatCompletionMessage | undefined; + let finalMessage: OpenAI.Chat.ChatCompletionMessageParam | undefined; let finalChatCompletion: OpenAI.Chat.ChatCompletion | undefined; let emittedError: any; let caughtError: any; diff --git a/examples/audio.ts b/examples/audio.ts new file mode 100755 index 000000000..e4ab930fd --- /dev/null +++ b/examples/audio.ts @@ -0,0 +1,35 @@ +#!/usr/bin/env -S npm run tsn -T + +import OpenAI, { toFile } from 'openai'; +import fs from 'fs/promises'; +import path from 'path'; + +// gets API Key from environment variable OPENAI_API_KEY +const openai = new OpenAI(); + +const speechFile = path.resolve(__dirname, './speech.mp3'); + +async function main() { + const mp3 = await openai.audio.speech.create({ + model: 'tts-1', + voice: 'alloy', + input: 'the quick brown fox jumped over the lazy dogs', + }); + + const buffer = Buffer.from(await mp3.arrayBuffer()); + await fs.writeFile(speechFile, buffer); + + const transcription = await openai.audio.transcriptions.create({ + file: await toFile(buffer, 'speech.mp3'), + model: 'whisper-1', + }); + console.log(transcription.text); + + const translation = await openai.audio.translations.create({ + file: await toFile(buffer, 'speech.mp3'), + model: 'whisper-1', + }); + console.log(translation.text); +} + +main(); diff --git a/examples/tool-call-helpers.ts b/examples/tool-call-helpers.ts new file mode 100755 index 000000000..e750b2ab9 --- /dev/null +++ b/examples/tool-call-helpers.ts @@ -0,0 +1,126 @@ +#!/usr/bin/env -S npm run tsn -T + +import OpenAI from 'openai'; +import { RunnableToolFunction } from 'openai/lib/RunnableFunction'; + +// gets API Key from environment variable OPENAI_API_KEY +const openai = new OpenAI(); + +const tools: RunnableToolFunction[] = [ + { + type: 'function', + function: { + name: 'list', + description: 'list queries books by genre, and returns a list of names of books', + parameters: { + type: 'object', + properties: { + genre: { type: 'string', enum: ['mystery', 'nonfiction', 'memoir', 'romance', 'historical'] }, + }, + }, + function: list, + parse: JSON.parse, + }, + } as RunnableToolFunction<{ genre: string }>, + { + type: 'function', + function: { + name: 'search', + description: 'search queries books by their name and returns a list of book names and their ids', + parameters: { + type: 'object', + properties: { + name: { type: 'string' }, + }, + }, + function: search, + parse: JSON.parse, + }, + } as RunnableToolFunction<{ name: string }>, + { + type: 'function', + function: { + name: 'get', + description: + "get returns a book's detailed information based on the id of the book. Note that this does not accept names, and only IDs, which you can get by using search.", + parameters: { + type: 'object', + properties: { + id: { type: 'string' }, + }, + }, + function: get, + parse: JSON.parse, + }, + } as RunnableToolFunction<{ id: string }>, +]; + +async function main() { + const runner = await openai.beta.chat.completions + .runTools({ + model: 'gpt-4-1106-preview', + stream: true, + tools, + messages: [ + { + role: 'system', + content: + 'Please use our book database, which you can access using functions to answer the following questions.', + }, + { + role: 'user', + content: + 'I really enjoyed reading To Kill a Mockingbird, could you recommend me a book that is similar and tell me why?', + }, + ], + }) + .on('message', (msg) => console.log('msg', msg)) + .on('functionCall', (functionCall) => console.log('functionCall', functionCall)) + .on('functionCallResult', (functionCallResult) => console.log('functionCallResult', functionCallResult)) + .on('content', (diff) => process.stdout.write(diff)); + + const result = await runner.finalChatCompletion(); + console.log(); + console.log('messages'); + console.log(runner.messages); + + console.log(); + console.log('final chat competion'); + console.dir(result, { depth: null }); +} + +const db = [ + { + id: 'a1', + name: 'To Kill a Mockingbird', + genre: 'historical', + description: `Compassionate, dramatic, and deeply moving, "To Kill A Mockingbird" takes readers to the roots of human behavior - to innocence and experience, kindness and cruelty, love and hatred, humor and pathos. Now with over 18 million copies in print and translated into forty languages, this regional story by a young Alabama woman claims universal appeal. Harper Lee always considered her book to be a simple love story. Today it is regarded as a masterpiece of American literature.`, + }, + { + id: 'a2', + name: 'All the Light We Cannot See', + genre: 'historical', + description: `In a mining town in Germany, Werner Pfennig, an orphan, grows up with his younger sister, enchanted by a crude radio they find that brings them news and stories from places they have never seen or imagined. Werner becomes an expert at building and fixing these crucial new instruments and is enlisted to use his talent to track down the resistance. Deftly interweaving the lives of Marie-Laure and Werner, Doerr illuminates the ways, against all odds, people try to be good to one another.`, + }, + { + id: 'a3', + name: 'Where the Crawdads Sing', + genre: 'historical', + description: `For years, rumors of the “Marsh Girl” haunted Barkley Cove, a quiet fishing village. Kya Clark is barefoot and wild; unfit for polite society. So in late 1969, when the popular Chase Andrews is found dead, locals immediately suspect her. +But Kya is not what they say. A born naturalist with just one day of school, she takes life's lessons from the land, learning the real ways of the world from the dishonest signals of fireflies. But while she has the skills to live in solitude forever, the time comes when she yearns to be touched and loved. Drawn to two young men from town, who are each intrigued by her wild beauty, Kya opens herself to a new and startling world—until the unthinkable happens.`, + }, +]; + +async function list({ genre }: { genre: string }) { + return db.filter((item) => item.genre === genre).map((item) => ({ name: item.name, id: item.id })); +} + +async function search({ name }: { name: string }) { + return db.filter((item) => item.name.includes(name)).map((item) => ({ name: item.name, id: item.id })); +} + +async function get({ id }: { id: string }) { + return db.find((item) => item.id === id)!; +} + +main(); diff --git a/helpers.md b/helpers.md index 1ae25ef82..4a987b347 100644 --- a/helpers.md +++ b/helpers.md @@ -7,7 +7,7 @@ openai.chat.completions.stream({ stream?: false, … }, options?): ChatCompletio ``` `openai.chat.completions.stream()` returns a `ChatCompletionStreamingRunner`, which emits events, has an async -iterator, and exposes a helper methods to accumulate chunks into a convenient shape and make it easy to reason +iterator, and exposes helper methods to accumulate chunks into a convenient shape and make it easy to reason about the conversation. Alternatively, you can use `openai.chat.completions.create({ stream: true, … })` which returns an async @@ -23,10 +23,14 @@ See an example of streaming helpers in action in [`examples/stream.ts`](examples ```ts openai.chat.completions.runFunctions({ stream: false, … }, options?): ChatCompletionRunner openai.chat.completions.runFunctions({ stream: true, … }, options?): ChatCompletionStreamingRunner + +openai.chat.completions.runTools({ stream: false, … }, options?): ChatCompletionRunner +openai.chat.completions.runTools({ stream: true, … }, options?): ChatCompletionStreamingRunner ``` -`openai.chat.completions.runFunctions()` returns either a Runner for automating function calls with chat -completions. The runner automatically calls the JavaScript functions you provide and sends their results back +`openai.chat.completions.runFunctions()` and `openai.chat.completions.runTools()` return a Runner +for automating function calls with chat completions. +The runner automatically calls the JavaScript functions you provide and sends their results back to the API, looping as long as the model requests function calls. If you pass a `parse` function, it will automatically parse the `arguments` for you and returns any parsing @@ -36,7 +40,7 @@ as a string. ```ts client.chat.completions.runFunctions({ model: 'gpt-3.5-turbo', - messages: [{ role: 'user', content: 'How's the weather this week?' }], + messages: [{ role: 'user', content: 'How is the weather this week?' }], functions: [{ function: getWeather as (args: { location: string, time: Date}) => any, parse: parseFunction as (args: strings) => { location: string, time: Date }. @@ -51,13 +55,34 @@ client.chat.completions.runFunctions({ }); ``` +```ts +client.chat.completions.runTools({ + model: 'gpt-3.5-turbo', + messages: [{ role: 'user', content: 'How is the weather this week?' }], + tools: [{ + type: 'function', + function: { + function: getWeather as (args: { location: string, time: Date}) => any, + parse: parseFunction as (args: strings) => { location: string, time: Date }, + parameters: { + type: 'object', + properties: { + location: { type: 'string' }, + time: { type: 'string', format: 'date-time' }, + }, + }, + } + }], +}); +``` + If you pass `function_call: {name: …}` instead of `auto`, it returns immediately after calling that function (and only loops to auto-recover parsing errors). -By default, we run the loop up to five chat completions from the API. You can change this behavior by +By default, we run the loop up to 10 chat completions from the API. You can change this behavior by adjusting `maxChatCompletions` in the request options object. Note that `max_tokens` is the limit per -chat completion request, not for the entire run functions call run. +chat completion request, not for the entire call run. See an example of automated function calls in action in [`examples/function-call-helpers.ts`](examples/function-call-helpers.ts). @@ -80,7 +105,7 @@ fields and is built up from the chunks. The event fired when a chat completion is returned or done being streamed by the API. -#### `.on('message', (message: ChatCompletionMessage | ChatCompletionMessageParam) => …)` +#### `.on('message', (message: ChatCompletionMessageParam) => …)` The event fired when a new message is either sent or received from the API. Does not fire for the messages sent as the parameter to either `.runFunctions()` or `.stream()` @@ -113,7 +138,7 @@ The event fired for the final chat completion. If the function call runner excee The event fired for the `content` of the last `role: "assistant"` message. Not fired if there is no `assistant` message. -#### `.on('finalMessage', (message: ChatCompletionMessage | ChatCompletionMessageParam) => …)` +#### `.on('finalMessage', (message: ChatCompletionMessage) => …)` The event fired for the last message. diff --git a/src/index.ts b/src/index.ts index 35587dda3..e213a00b6 100644 --- a/src/index.ts +++ b/src/index.ts @@ -226,10 +226,23 @@ export namespace OpenAI { export import Chat = API.Chat; export import ChatCompletion = API.ChatCompletion; + export import ChatCompletionAssistantMessageParam = API.ChatCompletionAssistantMessageParam; export import ChatCompletionChunk = API.ChatCompletionChunk; + export import ChatCompletionContentPart = API.ChatCompletionContentPart; + export import ChatCompletionContentPartImage = API.ChatCompletionContentPartImage; + export import ChatCompletionContentPartText = API.ChatCompletionContentPartText; + export import ChatCompletionFunctionCallOption = API.ChatCompletionFunctionCallOption; + export import ChatCompletionFunctionMessageParam = API.ChatCompletionFunctionMessageParam; export import ChatCompletionMessage = API.ChatCompletionMessage; export import ChatCompletionMessageParam = API.ChatCompletionMessageParam; + export import ChatCompletionMessageToolCall = API.ChatCompletionMessageToolCall; + export import ChatCompletionNamedToolChoice = API.ChatCompletionNamedToolChoice; export import ChatCompletionRole = API.ChatCompletionRole; + export import ChatCompletionSystemMessageParam = API.ChatCompletionSystemMessageParam; + export import ChatCompletionTool = API.ChatCompletionTool; + export import ChatCompletionToolChoiceOption = API.ChatCompletionToolChoiceOption; + export import ChatCompletionToolMessageParam = API.ChatCompletionToolMessageParam; + export import ChatCompletionUserMessageParam = API.ChatCompletionUserMessageParam; export import ChatCompletionCreateParams = API.ChatCompletionCreateParams; export import ChatCompletionCreateParamsNonStreaming = API.ChatCompletionCreateParamsNonStreaming; export import ChatCompletionCreateParamsStreaming = API.ChatCompletionCreateParamsStreaming; @@ -249,6 +262,7 @@ export namespace OpenAI { export import FileObject = API.FileObject; export import FileObjectsPage = API.FileObjectsPage; export import FileCreateParams = API.FileCreateParams; + export import FileListParams = API.FileListParams; export import Images = API.Images; export import Image = API.Image; diff --git a/src/lib/AbstractChatCompletionRunner.ts b/src/lib/AbstractChatCompletionRunner.ts index c8ee555a3..c8be63ab3 100644 --- a/src/lib/AbstractChatCompletionRunner.ts +++ b/src/lib/AbstractChatCompletionRunner.ts @@ -6,6 +6,8 @@ import { type ChatCompletionMessage, type ChatCompletionMessageParam, type ChatCompletionCreateParams, + type ChatCompletionAssistantMessageParam, + type ChatCompletionTool, } from 'openai/resources/chat/completions'; import { APIUserAbortError, OpenAIError } from 'openai/error'; import { @@ -13,8 +15,18 @@ import { isRunnableFunctionWithParse, type BaseFunctionsArgs, } from './RunnableFunction'; -import { ChatCompletionFunctionRunnerParams } from './ChatCompletionRunner'; -import { ChatCompletionStreamingFunctionRunnerParams } from './ChatCompletionStreamingRunner'; +import { ChatCompletionFunctionRunnerParams, ChatCompletionToolRunnerParams } from './ChatCompletionRunner'; +import { + ChatCompletionStreamingFunctionRunnerParams, + ChatCompletionStreamingToolRunnerParams, +} from './ChatCompletionStreamingRunner'; +import { isAssistantMessage, isFunctionMessage, isToolMessage } from './chatCompletionUtils'; + +const DEFAULT_MAX_CHAT_COMPLETIONS = 10; +export interface RunnerOptions extends Core.RequestOptions { + /** How many requests to make before canceling. Default 10. */ + maxChatCompletions?: number; +} export abstract class AbstractChatCompletionRunner< Events extends CustomEvents = AbstractChatCompletionRunnerEvents, @@ -32,7 +44,7 @@ export abstract class AbstractChatCompletionRunner< #listeners: { [Event in keyof Events]?: ListenersForEvent } = {}; protected _chatCompletions: ChatCompletion[] = []; - messages: (ChatCompletionMessage | ChatCompletionMessageParam)[] = []; + messages: ChatCompletionMessageParam[] = []; #ended = false; #errored = false; @@ -73,18 +85,25 @@ export abstract class AbstractChatCompletionRunner< this._chatCompletions.push(chatCompletion); this._emit('chatCompletion', chatCompletion); const message = chatCompletion.choices[0]?.message; - if (message) this._addMessage(message); + if (message) this._addMessage(message as ChatCompletionMessageParam); return chatCompletion; } - protected _addMessage(message: ChatCompletionMessage | ChatCompletionMessageParam, emit = true) { + protected _addMessage(message: ChatCompletionMessageParam, emit = true) { this.messages.push(message); if (emit) { this._emit('message', message); - if (message.role === 'function' && message.content) { - this._emit('functionCallResult', message.content); - } else if (message.function_call) { + if ((isFunctionMessage(message) || isToolMessage(message)) && message.content) { + // Note, this assumes that {role: 'tool', content: …} is always the result of a call of tool of type=function. + this._emit('functionCallResult', message.content as string); + } else if (isAssistantMessage(message) && message.function_call) { this._emit('functionCall', message.function_call); + } else if (isAssistantMessage(message) && message.tool_calls) { + for (const tool_call of message.tool_calls) { + if (tool_call.type === 'function') { + this._emit('functionCall', tool_call.function); + } + } } } } @@ -194,11 +213,7 @@ export abstract class AbstractChatCompletionRunner< } #getFinalContent(): string | null { - for (let i = this.messages.length - 1; i >= 0; i--) { - const message = this.messages[i]; - if (message?.role === 'assistant') return message.content; - } - return null; + return this.#getFinalMessage().content; } /** @@ -210,21 +225,32 @@ export abstract class AbstractChatCompletionRunner< return this.#getFinalContent(); } + #getFinalMessage(): ChatCompletionAssistantMessageParam { + let i = this.messages.length; + while (i-- > 0) { + const message = this.messages[i]; + if (isAssistantMessage(message)) { + return message; + } + } + throw new OpenAIError('stream ended without producing a ChatCompletionMessage with role=assistant'); + } + /** - * @returns a promise that resolves with the the final ChatCompletionMessage, or rejects - * if an error occurred or the stream ended prematurely without producing a ChatCompletionMessage. + * @returns a promise that resolves with the the final assistant ChatCompletionMessage response, + * or rejects if an error occurred or the stream ended prematurely without producing a ChatCompletionMessage. */ async finalMessage(): Promise { await this.done(); - const message = this.messages[this.messages.length - 1]; - if (!message) throw new OpenAIError('stream ended without producing a ChatCompletionMessage'); - return message; + return this.#getFinalMessage(); } #getFinalFunctionCall(): ChatCompletionMessage.FunctionCall | undefined { for (let i = this.messages.length - 1; i >= 0; i--) { const message = this.messages[i]; - if (message?.function_call) return message.function_call; + if (isAssistantMessage(message) && message?.function_call) { + return message.function_call; + } } } @@ -240,7 +266,9 @@ export abstract class AbstractChatCompletionRunner< #getFinalFunctionCallResult(): string | undefined { for (let i = this.messages.length - 1; i >= 0; i--) { const message = this.messages[i]; - if (message?.role === 'function' && message.content != null) return message.content; + if (isFunctionMessage(message) && message.content != null) { + return message.content as string; + } } } @@ -281,13 +309,18 @@ export abstract class AbstractChatCompletionRunner< } if (error instanceof APIUserAbortError) { this.#aborted = true; - this._emit('abort', error); + return this._emit('abort', error); } - const openAIError: OpenAIError = - error instanceof OpenAIError ? error : ( - new OpenAIError(error instanceof Error ? error.message : String(error)) - ); - this._emit('error', openAIError); + if (error instanceof OpenAIError) { + return this._emit('error', error); + } + if (error instanceof Error) { + const openAIError: OpenAIError = new OpenAIError(error.message); + // @ts-ignore + openAIError.cause = error; + return this._emit('error', openAIError); + } + return this._emit('error', new OpenAIError(String(error))); }; protected _emit(event: Event, ...args: EventParameters) { @@ -305,6 +338,17 @@ export abstract class AbstractChatCompletionRunner< listeners.forEach(({ listener }: any) => listener(...args)); } + if (event === 'abort') { + const error = args[0] as APIUserAbortError; + if (!this.#catchingPromiseCreated && !listeners?.length) { + Promise.reject(error); + } + this.#rejectConnectedPromise(error); + this.#rejectEndPromise(error); + this._emit('end'); + return; + } + if (event === 'error') { // NOTE: _emit('error', error) should only be called from #handleError(). @@ -343,6 +387,14 @@ export abstract class AbstractChatCompletionRunner< } } + #validateParams(params: ChatCompletionCreateParams): void { + if (params.n != null && params.n > 1) { + throw new OpenAIError( + 'ChatCompletion convenience helpers only support n=1 at this time. To use n>1, please use chat.completions.create() directly.', + ); + } + } + protected async _createChatCompletion( completions: Completions, params: ChatCompletionCreateParams, @@ -353,6 +405,8 @@ export abstract class AbstractChatCompletionRunner< if (signal.aborted) this.controller.abort(); signal.addEventListener('abort', () => this.controller.abort()); } + this.#validateParams(params); + const chatCompletion = await completions.create( { ...params, stream: false }, { ...options, signal: this.controller.signal }, @@ -377,10 +431,12 @@ export abstract class AbstractChatCompletionRunner< params: | ChatCompletionFunctionRunnerParams | ChatCompletionStreamingFunctionRunnerParams, - options?: Core.RequestOptions & { maxChatCompletions?: number }, + options?: RunnerOptions, ) { + const role = 'function' as const; const { function_call = 'auto', stream, ...restParams } = params; - const isSingleFunctionCall = typeof function_call !== 'string' && function_call?.name; + const singleFunctionToCall = typeof function_call !== 'string' && function_call?.name; + const { maxChatCompletions = DEFAULT_MAX_CHAT_COMPLETIONS } = options || {}; const functionsByName: Record> = {}; for (const f of params.functions) { @@ -399,7 +455,7 @@ export abstract class AbstractChatCompletionRunner< this._addMessage(message, false); } - for (let i = 0; i < (options?.maxChatCompletions ?? 5); ++i) { + for (let i = 0; i < maxChatCompletions; ++i) { const chatCompletion: ChatCompletion = await this._createChatCompletion( completions, { @@ -417,37 +473,147 @@ export abstract class AbstractChatCompletionRunner< if (!message.function_call) return; const { name, arguments: args } = message.function_call; const fn = functionsByName[name]; - if (!fn || (typeof function_call !== 'string' && name !== function_call?.name)) { - this._addMessage({ - role: 'function', - name, - content: `Invalid function_call: ${JSON.stringify(name)}. Available options are: ${functions - .map((f) => JSON.stringify(f.name)) - .join(', ')}. Please try again`, - }); - if (isSingleFunctionCall) return; + if (!fn) { + const content = `Invalid function_call: ${JSON.stringify(name)}. Available options are: ${functions + .map((f) => JSON.stringify(f.name)) + .join(', ')}. Please try again`; + + this._addMessage({ role, name, content }); + continue; + } else if (singleFunctionToCall && singleFunctionToCall !== name) { + const content = `Invalid function_call: ${JSON.stringify(name)}. ${JSON.stringify( + singleFunctionToCall, + )} requested. Please try again`; + + this._addMessage({ role, name, content }); continue; } + let parsed; try { parsed = isRunnableFunctionWithParse(fn) ? await fn.parse(args) : args; } catch (error) { this._addMessage({ - role: 'function', + role, name, content: error instanceof Error ? error.message : String(error), }); continue; } - const rawContent = await (fn.function as any)(parsed as any, this); - const content = - typeof rawContent === 'string' ? rawContent - : rawContent === undefined ? 'undefined' - : JSON.stringify(rawContent); - this._addMessage({ role: 'function', name, content }); - - if (isSingleFunctionCall) return; + + // @ts-expect-error it can't rule out `never` type. + const rawContent = await fn.function(parsed, this); + const content = this.#stringifyFunctionCallResult(rawContent); + + this._addMessage({ role, name, content }); + + if (singleFunctionToCall) return; + } + } + + protected async _runTools( + completions: Completions, + params: + | ChatCompletionToolRunnerParams + | ChatCompletionStreamingToolRunnerParams, + options?: RunnerOptions, + ) { + const role = 'tool' as const; + const { tool_choice = 'auto', stream, ...restParams } = params; + const singleFunctionToCall = typeof tool_choice !== 'string' && tool_choice?.function?.name; + const { maxChatCompletions = DEFAULT_MAX_CHAT_COMPLETIONS } = options || {}; + + const functionsByName: Record> = {}; + for (const f of params.tools) { + if (f.type === 'function') { + functionsByName[f.function.name || f.function.function.name] = f.function; + } } + + const tools: ChatCompletionTool[] = + 'tools' in params ? + params.tools.map((t) => + t.type === 'function' ? + { + type: 'function', + function: { + name: t.function.name || t.function.function.name, + parameters: t.function.parameters as Record, + description: t.function.description, + }, + } + : (t as unknown as ChatCompletionTool), + ) + : (undefined as any); + + for (const message of params.messages) { + this._addMessage(message, false); + } + + for (let i = 0; i < maxChatCompletions; ++i) { + const chatCompletion: ChatCompletion = await this._createChatCompletion( + completions, + { + ...restParams, + tool_choice, + tools, + messages: [...this.messages], + }, + options, + ); + const message = chatCompletion.choices[0]?.message; + if (!message) { + throw new OpenAIError(`missing message in ChatCompletion response`); + } + if (!message.tool_calls) return; + + for (const tool_call of message.tool_calls) { + if (tool_call.type !== 'function') continue; + const tool_call_id = tool_call.id; + const { name, arguments: args } = tool_call.function; + const fn = functionsByName[name]; + + if (!fn) { + const content = `Invalid tool_call: ${JSON.stringify(name)}. Available options are: ${tools + .map((f) => JSON.stringify(f.function.name)) + .join(', ')}. Please try again`; + + this._addMessage({ role, tool_call_id, content }); + continue; + } else if (singleFunctionToCall && singleFunctionToCall !== name) { + const content = `Invalid tool_call: ${JSON.stringify(name)}. ${JSON.stringify( + singleFunctionToCall, + )} requested. Please try again`; + + this._addMessage({ role, tool_call_id, content }); + continue; + } + + let parsed; + try { + parsed = isRunnableFunctionWithParse(fn) ? await fn.parse(args) : args; + } catch (error) { + const content = error instanceof Error ? error.message : String(error); + this._addMessage({ role, tool_call_id, content }); + continue; + } + + // @ts-expect-error it can't rule out `never` type. + const rawContent = await fn.function(parsed, this); + const content = this.#stringifyFunctionCallResult(rawContent); + this._addMessage({ role, tool_call_id, content }); + + if (singleFunctionToCall) return; + } + } + } + + #stringifyFunctionCallResult(rawContent: unknown): string { + return ( + typeof rawContent === 'string' ? rawContent + : rawContent === undefined ? 'undefined' + : JSON.stringify(rawContent) + ); } } @@ -473,10 +639,10 @@ type EventParameters, Event extends keyof Event export interface AbstractChatCompletionRunnerEvents { connect: () => void; functionCall: (functionCall: ChatCompletionMessage.FunctionCall) => void; - message: (message: ChatCompletionMessage | ChatCompletionMessageParam) => void; + message: (message: ChatCompletionMessageParam) => void; chatCompletion: (completion: ChatCompletion) => void; finalContent: (contentSnapshot: string) => void; - finalMessage: (message: ChatCompletionMessage | ChatCompletionMessageParam) => void; + finalMessage: (message: ChatCompletionMessageParam) => void; finalChatCompletion: (completion: ChatCompletion) => void; finalFunctionCall: (functionCall: ChatCompletionMessage.FunctionCall) => void; functionCallResult: (content: string) => void; diff --git a/src/lib/ChatCompletionRunFunctions.test.ts b/src/lib/ChatCompletionRunFunctions.test.ts index 677f9513e..71a99b366 100644 --- a/src/lib/ChatCompletionRunFunctions.test.ts +++ b/src/lib/ChatCompletionRunFunctions.test.ts @@ -8,9 +8,11 @@ import { ChatCompletionStreamingRunner, type ChatCompletionStreamingFunctionRunnerParams, } from 'openai/resources/beta/chat/completions'; +import type { ChatCompletionMessageParam } from 'openai/resources/chat/completions'; import { type RequestInfo, type RequestInit } from 'openai/_shims/index'; import { Response } from 'node-fetch'; +import { isAssistantMessage } from './chatCompletionUtils'; type Fetch = (req: string | RequestInfo, init?: RequestInit) => Promise; @@ -181,12 +183,12 @@ function* functionCallDeltas( class RunnerListener { readonly contents: string[] = []; - readonly messages: OpenAI.Chat.ChatCompletionMessage[] = []; + readonly messages: ChatCompletionMessageParam[] = []; readonly chatCompletions: OpenAI.Chat.ChatCompletion[] = []; readonly functionCalls: OpenAI.Chat.ChatCompletionMessage.FunctionCall[] = []; readonly functionCallResults: string[] = []; finalContent: string | null = null; - finalMessage: OpenAI.Chat.ChatCompletionMessage | undefined; + finalMessage: ChatCompletionMessageParam | undefined; finalChatCompletion: OpenAI.Chat.ChatCompletion | undefined; finalFunctionCall: OpenAI.Chat.ChatCompletionMessage.FunctionCall | undefined; finalFunctionCallResult: string | undefined; @@ -256,8 +258,8 @@ class RunnerListener { if (error) return; const expectedContents = this.messages - .filter((m) => m.role === 'assistant') - .map((m) => m.content) + .filter(isAssistantMessage) + .map((m) => m.content as string) .filter(Boolean); expect(this.contents).toEqual(expectedContents); expect(this.finalMessage).toEqual(this.messages[this.messages.length - 1]); @@ -298,13 +300,13 @@ class RunnerListener { class StreamingRunnerListener { readonly eventChunks: OpenAI.Chat.ChatCompletionChunk[] = []; readonly eventContents: [string, string][] = []; - readonly eventMessages: OpenAI.Chat.ChatCompletionMessage[] = []; + readonly eventMessages: ChatCompletionMessageParam[] = []; readonly eventChatCompletions: OpenAI.Chat.ChatCompletion[] = []; readonly eventFunctionCalls: OpenAI.Chat.ChatCompletionMessage.FunctionCall[] = []; readonly eventFunctionCallResults: string[] = []; finalContent: string | null = null; - finalMessage: OpenAI.Chat.ChatCompletionMessage | undefined; + finalMessage: ChatCompletionMessageParam | undefined; finalChatCompletion: OpenAI.Chat.ChatCompletion | undefined; finalFunctionCall: OpenAI.Chat.ChatCompletionMessage.FunctionCall | undefined; finalFunctionCallResult: string | undefined; @@ -1326,7 +1328,7 @@ describe('resource completions', () => { choices: [choice], created: Math.floor(Date.now() / 1000), model: 'gpt-3.5-turbo', - object: 'chat.completion', + object: 'chat.completion.chunk', }; } }), @@ -1387,7 +1389,7 @@ describe('resource completions', () => { ], created: Math.floor(Date.now() / 1000), model: 'gpt-3.5-turbo', - object: 'chat.completion', + object: 'chat.completion.chunk', }; }); @@ -1459,7 +1461,7 @@ describe('resource completions', () => { ], created: Math.floor(Date.now() / 1000), model: 'gpt-3.5-turbo', - object: 'chat.completion', + object: 'chat.completion.chunk', }; }), handleRequest(async function* (request): AsyncIterable { @@ -1488,7 +1490,7 @@ describe('resource completions', () => { choices: [choice], created: Math.floor(Date.now() / 1000), model: 'gpt-3.5-turbo', - object: 'chat.completion', + object: 'chat.completion.chunk', }; } }), @@ -1553,7 +1555,7 @@ describe('resource completions', () => { choices: [choice], created: Math.floor(Date.now() / 1000), model: 'gpt-3.5-turbo', - object: 'chat.completion', + object: 'chat.completion.chunk', }; } }), @@ -1583,7 +1585,7 @@ describe('resource completions', () => { choices: [choice], created: Math.floor(Date.now() / 1000), model: 'gpt-3.5-turbo', - object: 'chat.completion', + object: 'chat.completion.chunk', }; } }), @@ -1626,7 +1628,7 @@ describe('resource completions', () => { choices: [choice], created: Math.floor(Date.now() / 1000), model: 'gpt-3.5-turbo', - object: 'chat.completion', + object: 'chat.completion.chunk', }; } }), @@ -1696,7 +1698,7 @@ describe('resource completions', () => { ], created: Math.floor(Date.now() / 1000), model: 'gpt-3.5-turbo', - object: 'chat.completion', + object: 'chat.completion.chunk', }; }), runner.done(), @@ -1751,7 +1753,7 @@ describe('resource completions', () => { ], created: Math.floor(Date.now() / 1000), model: 'gpt-3.5-turbo', - object: 'chat.completion', + object: 'chat.completion.chunk', }; }), handleRequest(async function* (request): AsyncIterable { @@ -1789,7 +1791,7 @@ describe('resource completions', () => { ], created: Math.floor(Date.now() / 1000), model: 'gpt-3.5-turbo', - object: 'chat.completion', + object: 'chat.completion.chunk', }; }), handleRequest(async function* (request): AsyncIterable { @@ -1828,7 +1830,7 @@ describe('resource completions', () => { choices: [choice], created: Math.floor(Date.now() / 1000), model: 'gpt-3.5-turbo', - object: 'chat.completion', + object: 'chat.completion.chunk', }; } }), @@ -1897,7 +1899,7 @@ describe('resource completions', () => { ], created: Math.floor(Date.now() / 1000), model: 'gpt-3.5-turbo', - object: 'chat.completion', + object: 'chat.completion.chunk', }; }), runner.done(), @@ -1940,7 +1942,7 @@ describe('resource completions', () => { choices: [choice], created: Math.floor(Date.now() / 1000), model: 'gpt-3.5-turbo', - object: 'chat.completion', + object: 'chat.completion.chunk', }; } }), @@ -1973,7 +1975,7 @@ describe('resource completions', () => { choices: [choice], created: Math.floor(Date.now() / 1000), model: 'gpt-3.5-turbo', - object: 'chat.completion', + object: 'chat.completion.chunk', }; } }), diff --git a/src/lib/ChatCompletionRunner.ts b/src/lib/ChatCompletionRunner.ts index e2caf32eb..4a7ca18a6 100644 --- a/src/lib/ChatCompletionRunner.ts +++ b/src/lib/ChatCompletionRunner.ts @@ -1,15 +1,15 @@ -import * as Core from 'openai/core'; import { type Completions, - type ChatCompletionMessage, type ChatCompletionMessageParam, type ChatCompletionCreateParamsNonStreaming, } from 'openai/resources/chat/completions'; -import { type RunnableFunctions, type BaseFunctionsArgs } from './RunnableFunction'; +import { type RunnableFunctions, type BaseFunctionsArgs, RunnableTools } from './RunnableFunction'; import { AbstractChatCompletionRunner, AbstractChatCompletionRunnerEvents, + RunnerOptions, } from './AbstractChatCompletionRunner'; +import { isAssistantMessage } from './chatCompletionUtils'; export interface ChatCompletionRunnerEvents extends AbstractChatCompletionRunnerEvents { content: (content: string) => void; @@ -22,21 +22,38 @@ export type ChatCompletionFunctionRunnerParams; }; +export type ChatCompletionToolRunnerParams = Omit< + ChatCompletionCreateParamsNonStreaming, + 'tools' +> & { + tools: RunnableTools; +}; + export class ChatCompletionRunner extends AbstractChatCompletionRunner { static runFunctions( completions: Completions, params: ChatCompletionFunctionRunnerParams, - options?: Core.RequestOptions & { maxChatCompletions?: number }, + options?: RunnerOptions, ): ChatCompletionRunner { const runner = new ChatCompletionRunner(); runner._run(() => runner._runFunctions(completions, params, options)); return runner; } - override _addMessage(message: ChatCompletionMessage | ChatCompletionMessageParam) { + static runTools( + completions: Completions, + params: ChatCompletionToolRunnerParams, + options?: RunnerOptions, + ): ChatCompletionRunner { + const runner = new ChatCompletionRunner(); + runner._run(() => runner._runTools(completions, params, options)); + return runner; + } + + override _addMessage(message: ChatCompletionMessageParam) { super._addMessage(message); - if (message.role === 'assistant' && message.content) { - this._emit('content', message.content); + if (isAssistantMessage(message) && message.content) { + this._emit('content', message.content as string); } } } diff --git a/src/lib/ChatCompletionStream.ts b/src/lib/ChatCompletionStream.ts index 4e68f660f..1f14c8e33 100644 --- a/src/lib/ChatCompletionStream.ts +++ b/src/lib/ChatCompletionStream.ts @@ -5,7 +5,7 @@ import { type ChatCompletion, type ChatCompletionChunk, type ChatCompletionCreateParams, - ChatCompletionCreateParamsBase, + type ChatCompletionCreateParamsBase, } from 'openai/resources/chat/completions'; import { AbstractChatCompletionRunner, @@ -64,7 +64,7 @@ export class ChatCompletionStream if (this.ended) return; const completion = this.#accumulateChatCompletion(chunk); this._emit('chunk', chunk, completion); - const delta = chunk.choices[0]?.delta.content; + const delta = chunk.choices[0]?.delta?.content; const snapshot = completion.choices[0]?.message; if (delta != null && snapshot?.role === 'assistant' && snapshot?.content) { this._emit('content', delta, snapshot.content); @@ -137,31 +137,53 @@ export class ChatCompletionStream #accumulateChatCompletion(chunk: ChatCompletionChunk): ChatCompletionSnapshot { let snapshot = this.#currentChatCompletionSnapshot; + const { choices, ...rest } = chunk; if (!snapshot) { - const { choices, ...rest } = chunk; - this.#currentChatCompletionSnapshot = snapshot = { + snapshot = this.#currentChatCompletionSnapshot = { ...rest, choices: [], }; + } else { + Object.assign(snapshot, rest); } - for (const { delta, finish_reason, index } of chunk.choices) { + + for (const { delta, finish_reason, index, ...other } of chunk.choices) { let choice = snapshot.choices[index]; - if (!choice) snapshot.choices[index] = choice = { finish_reason, index, message: delta }; - else { - if (finish_reason) choice.finish_reason = finish_reason; - const { content, function_call, role } = delta; - if (content) choice.message.content = (choice.message.content || '') + content; - if (role) choice.message.role = role; - if (function_call) { - if (!choice.message.function_call) choice.message.function_call = function_call; - else { - if (function_call.arguments) - choice.message.function_call.arguments = - (choice.message.function_call.arguments || '') + function_call.arguments; - if (function_call.name) choice.message.function_call.name = function_call.name; + if (!choice) { + snapshot.choices[index] = { finish_reason, index, message: delta, ...other }; + continue; + } + + if (finish_reason) choice.finish_reason = finish_reason; + Object.assign(choice, other); + + if (!delta) continue; // Shouldn't happen; just in case. + const { content, function_call, role, tool_calls } = delta; + + if (content) choice.message.content = (choice.message.content || '') + content; + if (role) choice.message.role = role; + if (function_call) { + if (!choice.message.function_call) { + choice.message.function_call = function_call; + } else { + if (function_call.name) choice.message.function_call.name = function_call.name; + if (function_call.arguments) { + choice.message.function_call.arguments ??= ''; + choice.message.function_call.arguments += function_call.arguments; } } } + if (tool_calls) { + if (!choice.message.tool_calls) choice.message.tool_calls = []; + for (const { index, id, type, function: fn } of tool_calls) { + const tool_call = (choice.message.tool_calls[index] ??= {}); + if (id) tool_call.id = id; + if (type) tool_call.type = type; + if (fn) tool_call.function ??= { arguments: '' }; + if (fn?.name) tool_call.function!.name = fn.name; + if (fn?.arguments) tool_call.function!.arguments += fn.arguments; + } + } } return snapshot; } @@ -216,7 +238,8 @@ function finalizeChatCompletion(snapshot: ChatCompletionSnapshot): ChatCompletio id, choices: choices.map(({ message, finish_reason, index }): ChatCompletion.Choice => { if (!finish_reason) throw new OpenAIError(`missing finish_reason for choice ${index}`); - const { content = null, function_call, role } = message; + const { content = null, function_call, tool_calls } = message; + const role = message.role as 'assistant'; // this is what we expect; in theory it could be different which would make our types a slight lie but would be fine. if (!role) throw new OpenAIError(`missing role for choice ${index}`); if (function_call) { const { arguments: args, name } = function_call; @@ -224,6 +247,34 @@ function finalizeChatCompletion(snapshot: ChatCompletionSnapshot): ChatCompletio if (!name) throw new OpenAIError(`missing function_call.name for choice ${index}`); return { message: { content, function_call: { arguments: args, name }, role }, finish_reason, index }; } + if (tool_calls) { + return { + index, + finish_reason, + message: { + role, + content, + tool_calls: tool_calls.map((tool_call, i) => { + const { function: fn, type, id } = tool_call; + const { arguments: args, name } = fn || {}; + if (id == null) + throw new OpenAIError(`missing choices[${index}].tool_calls[${i}].id\n${str(snapshot)}`); + if (type == null) + throw new OpenAIError(`missing choices[${index}].tool_calls[${i}].type\n${str(snapshot)}`); + if (name == null) + throw new OpenAIError( + `missing choices[${index}].tool_calls[${i}].function.name\n${str(snapshot)}`, + ); + if (args == null) + throw new OpenAIError( + `missing choices[${index}].tool_calls[${i}].function.arguments\n${str(snapshot)}`, + ); + + return { id, type, function: { name, arguments: args } }; + }), + }, + }; + } return { message: { content: content, role }, finish_reason, index }; }), created, @@ -232,6 +283,10 @@ function finalizeChatCompletion(snapshot: ChatCompletionSnapshot): ChatCompletio }; } +function str(x: unknown) { + return JSON.stringify(x); +} + /** * Represents a streamed chunk of a chat completion response returned by model, * based on the provided input. @@ -273,7 +328,7 @@ export namespace ChatCompletionSnapshot { * content was omitted due to a flag from our content filters, or `function_call` * if the model called a function. */ - finish_reason: 'stop' | 'length' | 'function_call' | 'content_filter' | null; + finish_reason: ChatCompletion.Choice['finish_reason'] | null; /** * The index of the choice in the list of choices. @@ -297,13 +352,46 @@ export namespace ChatCompletionSnapshot { */ function_call?: Message.FunctionCall; + tool_calls?: Array; + /** * The role of the author of this message. */ - role?: 'system' | 'user' | 'assistant' | 'function'; + role?: 'system' | 'user' | 'assistant' | 'function' | 'tool'; } export namespace Message { + export interface ToolCall { + /** + * The ID of the tool call. + */ + id?: string; + + function?: ToolCall.Function; + + /** + * The type of the tool. + */ + type?: 'function'; + } + + export namespace ToolCall { + export interface Function { + /** + * The arguments to call the function with, as generated by the model in JSON + * format. Note that the model does not always generate valid JSON, and may + * hallucinate parameters not defined by your function schema. Validate the + * arguments in your code before calling your function. + */ + arguments?: string; + + /** + * The name of the function to call. + */ + name?: string; + } + } + /** * The name and arguments of a function that should be called, as generated by the * model. diff --git a/src/lib/ChatCompletionStreamingRunner.ts b/src/lib/ChatCompletionStreamingRunner.ts index 1e5e09de6..8ea911ea0 100644 --- a/src/lib/ChatCompletionStreamingRunner.ts +++ b/src/lib/ChatCompletionStreamingRunner.ts @@ -1,12 +1,11 @@ -import * as Core from 'openai/core'; import { Completions, type ChatCompletionChunk, type ChatCompletionCreateParamsStreaming, } from 'openai/resources/chat/completions'; -import { type AbstractChatCompletionRunnerEvents } from './AbstractChatCompletionRunner'; +import { RunnerOptions, type AbstractChatCompletionRunnerEvents } from './AbstractChatCompletionRunner'; import { type ReadableStream } from 'openai/_shims/index'; -import { type BaseFunctionsArgs, type RunnableFunctions } from './RunnableFunction'; +import { RunnableTools, type BaseFunctionsArgs, type RunnableFunctions } from './RunnableFunction'; import { ChatCompletionSnapshot, ChatCompletionStream } from './ChatCompletionStream'; export interface ChatCompletionStreamEvents extends AbstractChatCompletionRunnerEvents { @@ -21,6 +20,13 @@ export type ChatCompletionStreamingFunctionRunnerParams; }; +export type ChatCompletionStreamingToolRunnerParams = Omit< + ChatCompletionCreateParamsStreaming, + 'tools' +> & { + tools: RunnableTools; +}; + export class ChatCompletionStreamingRunner extends ChatCompletionStream implements AsyncIterable @@ -34,10 +40,20 @@ export class ChatCompletionStreamingRunner static runFunctions( completions: Completions, params: ChatCompletionStreamingFunctionRunnerParams, - options?: Core.RequestOptions & { maxChatCompletions?: number }, + options?: RunnerOptions, ): ChatCompletionStreamingRunner { const runner = new ChatCompletionStreamingRunner(); runner._run(() => runner._runFunctions(completions, params, options)); return runner; } + + static runTools( + completions: Completions, + params: ChatCompletionStreamingToolRunnerParams, + options?: RunnerOptions, + ): ChatCompletionStreamingRunner { + const runner = new ChatCompletionStreamingRunner(); + runner._run(() => runner._runTools(completions, params, options)); + return runner; + } } diff --git a/src/lib/RunnableFunction.ts b/src/lib/RunnableFunction.ts index 1de9f04ca..5c6845cab 100644 --- a/src/lib/RunnableFunction.ts +++ b/src/lib/RunnableFunction.ts @@ -61,6 +61,11 @@ export type RunnableFunction = : Args extends object ? RunnableFunctionWithParse : never; +export type RunnableToolFunction = { + type: 'function'; + function: RunnableFunction; +}; + export function isRunnableFunctionWithParse( fn: any, ): fn is RunnableFunctionWithParse { @@ -76,6 +81,13 @@ export type RunnableFunctions = : FunctionsArgs[Index]; }; +export type RunnableTools = + [any[]] extends [FunctionsArgs] ? readonly RunnableToolFunction[] + : { + [Index in keyof FunctionsArgs]: Index extends number ? RunnableToolFunction + : FunctionsArgs[Index]; + }; + /** * This is helper class for passing a `function` and `parse` where the `function` * argument type matches the `parse` return type. diff --git a/src/lib/chatCompletionUtils.ts b/src/lib/chatCompletionUtils.ts new file mode 100644 index 000000000..a0d9099de --- /dev/null +++ b/src/lib/chatCompletionUtils.ts @@ -0,0 +1,28 @@ +import { + type ChatCompletionAssistantMessageParam, + type ChatCompletionFunctionMessageParam, + type ChatCompletionMessageParam, + type ChatCompletionToolMessageParam, +} from 'openai/resources'; + +export const isAssistantMessage = ( + message: ChatCompletionMessageParam | null | undefined, +): message is ChatCompletionAssistantMessageParam => { + return message?.role === 'assistant'; +}; + +export const isFunctionMessage = ( + message: ChatCompletionMessageParam | null | undefined, +): message is ChatCompletionFunctionMessageParam => { + return message?.role === 'function'; +}; + +export const isToolMessage = ( + message: ChatCompletionMessageParam | null | undefined, +): message is ChatCompletionToolMessageParam => { + return message?.role === 'tool'; +}; + +export function isPresent(obj: T | null | undefined): obj is T { + return obj != null; +} diff --git a/src/pagination.ts b/src/pagination.ts index a52b55f5b..af6cd964e 100644 --- a/src/pagination.ts +++ b/src/pagination.ts @@ -5,7 +5,7 @@ import { AbstractPage, Response, APIClient, FinalRequestOptions, PageInfo } from export interface PageResponse { data: Array; - object: string; + object: 'list'; } /** @@ -14,7 +14,7 @@ export interface PageResponse { export class Page extends AbstractPage implements PageResponse { data: Array; - object: string; + object: 'list'; constructor(client: APIClient, response: Response, body: PageResponse, options: FinalRequestOptions) { super(client, response, body, options); diff --git a/src/resources/audio/audio.ts b/src/resources/audio/audio.ts index 74b1c841c..ee8c28c6b 100644 --- a/src/resources/audio/audio.ts +++ b/src/resources/audio/audio.ts @@ -1,12 +1,14 @@ // File generated from our OpenAPI spec by Stainless. import { APIResource } from 'openai/resource'; +import * as SpeechAPI from 'openai/resources/audio/speech'; import * as TranscriptionsAPI from 'openai/resources/audio/transcriptions'; import * as TranslationsAPI from 'openai/resources/audio/translations'; export class Audio extends APIResource { transcriptions: TranscriptionsAPI.Transcriptions = new TranscriptionsAPI.Transcriptions(this.client); translations: TranslationsAPI.Translations = new TranslationsAPI.Translations(this.client); + speech: SpeechAPI.Speech = new SpeechAPI.Speech(this.client); } export namespace Audio { @@ -16,4 +18,6 @@ export namespace Audio { export import Translations = TranslationsAPI.Translations; export import Translation = TranslationsAPI.Translation; export import TranslationCreateParams = TranslationsAPI.TranslationCreateParams; + export import Speech = SpeechAPI.Speech; + export import SpeechCreateParams = SpeechAPI.SpeechCreateParams; } diff --git a/src/resources/audio/index.ts b/src/resources/audio/index.ts index e04c978aa..17c81d3bb 100644 --- a/src/resources/audio/index.ts +++ b/src/resources/audio/index.ts @@ -1,5 +1,6 @@ // File generated from our OpenAPI spec by Stainless. export { Audio } from './audio'; +export { SpeechCreateParams, Speech } from './speech'; export { Transcription, TranscriptionCreateParams, Transcriptions } from './transcriptions'; export { Translation, TranslationCreateParams, Translations } from './translations'; diff --git a/src/resources/audio/speech.ts b/src/resources/audio/speech.ts new file mode 100644 index 000000000..c8199e746 --- /dev/null +++ b/src/resources/audio/speech.ts @@ -0,0 +1,49 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; +import { type Response } from 'openai/_shims/index'; +import * as SpeechAPI from 'openai/resources/audio/speech'; + +export class Speech extends APIResource { + /** + * Generates audio from the input text. + */ + create(body: SpeechCreateParams, options?: Core.RequestOptions): Core.APIPromise { + return this.post('/audio/speech', { body, ...options, __binaryResponse: true }); + } +} + +export interface SpeechCreateParams { + /** + * The text to generate audio for. The maximum length is 4096 characters. + */ + input: string; + + /** + * One of the available [TTS models](https://platform.openai.com/docs/models/tts): + * `tts-1` or `tts-1-hd` + */ + model: (string & {}) | 'tts-1' | 'tts-1-hd'; + + /** + * The voice to use when generating the audio. Supported voices are `alloy`, + * `echo`, `fable`, `onyx`, `nova`, and `shimmer`. + */ + voice: 'alloy' | 'echo' | 'fable' | 'onyx' | 'nova' | 'shimmer'; + + /** + * The format to audio in. Supported formats are `mp3`, `opus`, `aac`, and `flac`. + */ + response_format?: 'mp3' | 'opus' | 'aac' | 'flac'; + + /** + * The speed of the generated audio. Select a value from `0.25` to `4.0`. `1.0` is + * the default. + */ + speed?: number; +} + +export namespace Speech { + export import SpeechCreateParams = SpeechAPI.SpeechCreateParams; +} diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index 253ae33d5..feb37df09 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -46,8 +46,8 @@ export interface TranscriptionCreateParams { prompt?: string; /** - * The format of the transcript output, in one of these options: json, text, srt, - * verbose_json, or vtt. + * The format of the transcript output, in one of these options: `json`, `text`, + * `srt`, `verbose_json`, or `vtt`. */ response_format?: 'json' | 'text' | 'srt' | 'verbose_json' | 'vtt'; diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index 5ac8d7d88..58e3ab7e7 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -39,8 +39,8 @@ export interface TranslationCreateParams { prompt?: string; /** - * The format of the transcript output, in one of these options: json, text, srt, - * verbose_json, or vtt. + * The format of the transcript output, in one of these options: `json`, `text`, + * `srt`, `verbose_json`, or `vtt`. */ response_format?: string; diff --git a/src/resources/beta/assistants/assistants.ts b/src/resources/beta/assistants/assistants.ts new file mode 100644 index 000000000..a9cfea61a --- /dev/null +++ b/src/resources/beta/assistants/assistants.ts @@ -0,0 +1,470 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; +import { isRequestOptions } from 'openai/core'; +import * as AssistantsAPI from 'openai/resources/beta/assistants/assistants'; +import * as FilesAPI from 'openai/resources/beta/assistants/files'; +import { CursorPage, type CursorPageParams } from 'openai/pagination'; + +export class Assistants extends APIResource { + files: FilesAPI.Files = new FilesAPI.Files(this.client); + + /** + * Create an Assistant with a model and instructions. + */ + create(body: AssistantCreateParams, options?: Core.RequestOptions): Core.APIPromise { + return this.post('/assistants', { + body, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * Retrieves an Assistant. + */ + retrieve(assistantId: string, options?: Core.RequestOptions): Core.APIPromise { + return this.get(`/assistants/${assistantId}`, { + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * Modifies an Assistant. + */ + update( + assistantId: string, + body: AssistantUpdateParams, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this.post(`/assistants/${assistantId}`, { + body, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * Returns a list of Assistants. + */ + list( + query?: AssistantListParams, + options?: Core.RequestOptions, + ): Core.PagePromise; + list(options?: Core.RequestOptions): Core.PagePromise; + list( + query: AssistantListParams | Core.RequestOptions = {}, + options?: Core.RequestOptions, + ): Core.PagePromise { + if (isRequestOptions(query)) { + return this.list({}, query); + } + return this.getAPIList('/assistants', AssistantsPage, { + query, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * Delete an Assistant. + */ + del(assistantId: string, options?: Core.RequestOptions): Core.APIPromise { + return this.delete(`/assistants/${assistantId}`, { + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } +} + +export class AssistantsPage extends CursorPage {} + +/** + * Represents an `Assistant` that can call the model and use tools. + */ +export interface Assistant { + /** + * The identifier, which can be referenced in API endpoints. + */ + id: string; + + /** + * The Unix timestamp (in seconds) for when the Assistant was created. + */ + created_at: number; + + /** + * The description of the Assistant. The maximum length is 512 characters. + */ + description: string | null; + + /** + * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs + * attached to this Assistant. There can be a maximum of 20 files attached to the + * Assistant. Files are ordered by their creation date in ascending order. + */ + file_ids: Array; + + /** + * The system instructions that the Assistant uses. The maximum length is 32768 + * characters. + */ + instructions: string | null; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata: unknown | null; + + /** + * ID of the model to use. You can use the + * [List models](https://platform.openai.com/docs/api-reference/models/list) API to + * see all of your available models, or see our + * [Model overview](https://platform.openai.com/docs/models/overview) for + * descriptions of them. + */ + model: string; + + /** + * The name of the Assistant. The maximum length is 256 characters. + */ + name: string | null; + + /** + * The object type, which is always `assistant`. + */ + object: 'assistant'; + + /** + * A list of tool enabled on the Assistant. There can be a maximum of 128 tools per + * assistant. Tools can be of types `code_interpreter`, `retrieval`, or `function`. + */ + tools: Array; +} + +export namespace Assistant { + export interface CodeInterpreter { + /** + * The type of tool being defined: `code_interpreter` + */ + type: 'code_interpreter'; + } + + export interface Retreival { + /** + * The type of tool being defined: `retreival` + */ + type: 'retreival'; + } + + export interface Function { + /** + * The function definition. + */ + function: Function.Function; + + /** + * The type of tool being defined: `function` + */ + type: 'function'; + } + + export namespace Function { + /** + * The function definition. + */ + export interface Function { + /** + * A description of what the function does, used by the model to choose when and + * how to call the function. + */ + description: string; + + /** + * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain + * underscores and dashes, with a maximum length of 64. + */ + name: string; + + /** + * The parameters the functions accepts, described as a JSON Schema object. See the + * [guide](https://platform.openai.com/docs/guides/gpt/function-calling) for + * examples, and the + * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for + * documentation about the format. + * + * To describe a function that accepts no parameters, provide the value + * `{"type": "object", "properties": {}}`. + */ + parameters: Record; + } + } +} + +export interface AsssitantDeleted { + id: string; + + deleted: boolean; + + object: 'assistant.deleted'; +} + +export interface AssistantCreateParams { + /** + * ID of the model to use. You can use the + * [List models](https://platform.openai.com/docs/api-reference/models/list) API to + * see all of your available models, or see our + * [Model overview](https://platform.openai.com/docs/models/overview) for + * descriptions of them. + */ + model: string; + + /** + * The description of the Assistant. The maximum length is 512 characters. + */ + description?: string | null; + + /** + * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs + * attached to this Assistant. There can be a maximum of 20 files attached to the + * Assistant. Files are ordered by their creation date in ascending order. + */ + file_ids?: Array; + + /** + * The system instructions that the Assistant uses. The maximum length is 32768 + * characters. + */ + instructions?: string | null; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + + /** + * The name of the Assistant. The maximum length is 256 characters. + */ + name?: string | null; + + /** + * A list of tool enabled on the Assistant. There can be a maximum of 128 tools per + * assistant. Tools can be of types `code_interpreter`, `retrieval`, or `function`. + */ + tools?: Array< + | AssistantCreateParams.AssistantToolsCode + | AssistantCreateParams.AssistantToolsRetrieval + | AssistantCreateParams.AssistantToolsFunction + >; +} + +export namespace AssistantCreateParams { + export interface AssistantToolsCode { + /** + * The type of tool being defined: `code_interpreter` + */ + type: 'code_interpreter'; + } + + export interface AssistantToolsRetrieval { + /** + * The type of tool being defined: `retreival` + */ + type: 'retreival'; + } + + export interface AssistantToolsFunction { + /** + * The function definition. + */ + function: AssistantToolsFunction.Function; + + /** + * The type of tool being defined: `function` + */ + type: 'function'; + } + + export namespace AssistantToolsFunction { + /** + * The function definition. + */ + export interface Function { + /** + * A description of what the function does, used by the model to choose when and + * how to call the function. + */ + description: string; + + /** + * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain + * underscores and dashes, with a maximum length of 64. + */ + name: string; + + /** + * The parameters the functions accepts, described as a JSON Schema object. See the + * [guide](https://platform.openai.com/docs/guides/gpt/function-calling) for + * examples, and the + * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for + * documentation about the format. + * + * To describe a function that accepts no parameters, provide the value + * `{"type": "object", "properties": {}}`. + */ + parameters: Record; + } + } +} + +export interface AssistantUpdateParams { + /** + * The description of the Assistant. The maximum length is 512 characters. + */ + description?: string | null; + + /** + * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs + * attached to this Assistant. There can be a maximum of 20 files attached to the + * Assistant. Files are ordered by their creation date in ascending order. If a + * file was previosuly attached to the list but does not show up in the list, it + * will be deleted from the assistant. + */ + file_ids?: Array; + + /** + * The system instructions that the Assistant uses. The maximum length is 32768 + * characters. + */ + instructions?: string | null; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + + /** + * ID of the model to use. You can use the + * [List models](https://platform.openai.com/docs/api-reference/models/list) API to + * see all of your available models, or see our + * [Model overview](https://platform.openai.com/docs/models/overview) for + * descriptions of them. + */ + model?: string; + + /** + * The name of the Assistant. The maximum length is 256 characters. + */ + name?: string | null; + + /** + * A list of tool enabled on the Assistant. There can be a maximum of 128 tools per + * assistant. Tools can be of types `code_interpreter`, `retrieval`, or `function`. + */ + tools?: Array< + | AssistantUpdateParams.AssistantToolsCode + | AssistantUpdateParams.AssistantToolsRetrieval + | AssistantUpdateParams.AssistantToolsFunction + >; +} + +export namespace AssistantUpdateParams { + export interface AssistantToolsCode { + /** + * The type of tool being defined: `code_interpreter` + */ + type: 'code_interpreter'; + } + + export interface AssistantToolsRetrieval { + /** + * The type of tool being defined: `retreival` + */ + type: 'retreival'; + } + + export interface AssistantToolsFunction { + /** + * The function definition. + */ + function: AssistantToolsFunction.Function; + + /** + * The type of tool being defined: `function` + */ + type: 'function'; + } + + export namespace AssistantToolsFunction { + /** + * The function definition. + */ + export interface Function { + /** + * A description of what the function does, used by the model to choose when and + * how to call the function. + */ + description: string; + + /** + * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain + * underscores and dashes, with a maximum length of 64. + */ + name: string; + + /** + * The parameters the functions accepts, described as a JSON Schema object. See the + * [guide](https://platform.openai.com/docs/guides/gpt/function-calling) for + * examples, and the + * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for + * documentation about the format. + * + * To describe a function that accepts no parameters, provide the value + * `{"type": "object", "properties": {}}`. + */ + parameters: Record; + } + } +} + +export interface AssistantListParams extends CursorPageParams { + /** + * A cursor for use in pagination. `before` is an object ID that defines your place + * in the list. For instance, if you make a list request and receive 100 objects, + * ending with obj_foo, your subsequent call can include before=obj_foo in order to + * fetch the previous page of the list. + */ + before?: string; + + /** + * Sort order by the `created_at` timestamp of the objects. `asc` for ascending + * order and `desc` for descending order. + */ + order?: 'asc' | 'desc'; +} + +export namespace Assistants { + export import Assistant = AssistantsAPI.Assistant; + export import AsssitantDeleted = AssistantsAPI.AsssitantDeleted; + export import AssistantsPage = AssistantsAPI.AssistantsPage; + export import AssistantCreateParams = AssistantsAPI.AssistantCreateParams; + export import AssistantUpdateParams = AssistantsAPI.AssistantUpdateParams; + export import AssistantListParams = AssistantsAPI.AssistantListParams; + export import Files = FilesAPI.Files; + export import AssistantFile = FilesAPI.AssistantFile; + export import FileDeleteResponse = FilesAPI.FileDeleteResponse; + export import AssistantFilesPage = FilesAPI.AssistantFilesPage; + export import FileCreateParams = FilesAPI.FileCreateParams; + export import FileListParams = FilesAPI.FileListParams; +} diff --git a/src/resources/beta/assistants/files.ts b/src/resources/beta/assistants/files.ts new file mode 100644 index 000000000..d913146ea --- /dev/null +++ b/src/resources/beta/assistants/files.ts @@ -0,0 +1,154 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; +import { isRequestOptions } from 'openai/core'; +import * as FilesAPI from 'openai/resources/beta/assistants/files'; +import { CursorPage, type CursorPageParams } from 'openai/pagination'; + +export class Files extends APIResource { + /** + * Create an Assistant File by attaching a + * [File](https://platform.openai.com/docs/api-reference/files) to an + * [Assistant](https://platform.openai.com/docs/api-reference/assistants). + */ + create( + assistantId: string, + body: FileCreateParams, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this.post(`/assistants/${assistantId}/files`, { + body, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * Retrieves an AssistantFile. + */ + retrieve( + assistantId: string, + fileId: string, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this.get(`/assistants/${assistantId}/files/${fileId}`, { + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * Returns a list of Assistant Files. + */ + list( + assistantId: string, + query?: FileListParams, + options?: Core.RequestOptions, + ): Core.PagePromise; + list( + assistantId: string, + options?: Core.RequestOptions, + ): Core.PagePromise; + list( + assistantId: string, + query: FileListParams | Core.RequestOptions = {}, + options?: Core.RequestOptions, + ): Core.PagePromise { + if (isRequestOptions(query)) { + return this.list(assistantId, {}, query); + } + return this.getAPIList(`/assistants/${assistantId}/files`, AssistantFilesPage, { + query, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * Delete an Assistant File. + */ + del( + assistantId: string, + fileId: string, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this.delete(`/assistants/${assistantId}/files/${fileId}`, { + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } +} + +export class AssistantFilesPage extends CursorPage {} + +/** + * A list of [Files](https://platform.openai.com/docs/api-reference/files) attached + * to an `Assistant`. + */ +export interface AssistantFile { + /** + * The identifier, which can be referenced in API endpoints. + */ + id: string; + + /** + * The Assistant ID that the File is attached to. + */ + assistant_id: string; + + /** + * The Unix timestamp (in seconds) for when the Assistant File was created. + */ + created_at: number; + + /** + * The object type, which is always `assistant.file`. + */ + object: 'assistant.file'; +} + +/** + * Deletes the association between the Assistant and the File, but does not delete + * the [File](https://platform.openai.com/docs/api-reference/files) object itself. + */ +export interface FileDeleteResponse { + id: string; + + deleted: boolean; + + object: 'assistant.file.deleted'; +} + +export interface FileCreateParams { + /** + * A [File](https://platform.openai.com/docs/api-reference/files) ID (with + * `purpose="assistants"`) that the Assistant should use. Useful for tools like + * `retrieval` and `code_interpreter` that can access files. + */ + file_id: string; +} + +export interface FileListParams extends CursorPageParams { + /** + * A cursor for use in pagination. `before` is an object ID that defines your place + * in the list. For instance, if you make a list request and receive 100 objects, + * ending with obj_foo, your subsequent call can include before=obj_foo in order to + * fetch the previous page of the list. + */ + before?: string; + + /** + * Sort order by the `created_at` timestamp of the objects. `asc` for ascending + * order and `desc` for descending order. + */ + order?: 'asc' | 'desc'; +} + +export namespace Files { + export import AssistantFile = FilesAPI.AssistantFile; + export import FileDeleteResponse = FilesAPI.FileDeleteResponse; + export import AssistantFilesPage = FilesAPI.AssistantFilesPage; + export import FileCreateParams = FilesAPI.FileCreateParams; + export import FileListParams = FilesAPI.FileListParams; +} diff --git a/src/resources/beta/assistants/index.ts b/src/resources/beta/assistants/index.ts new file mode 100644 index 000000000..7455e48e6 --- /dev/null +++ b/src/resources/beta/assistants/index.ts @@ -0,0 +1,19 @@ +// File generated from our OpenAPI spec by Stainless. + +export { + Assistant, + AsssitantDeleted, + AssistantCreateParams, + AssistantUpdateParams, + AssistantListParams, + AssistantsPage, + Assistants, +} from './assistants'; +export { + AssistantFile, + FileDeleteResponse, + FileCreateParams, + FileListParams, + AssistantFilesPage, + Files, +} from './files'; diff --git a/src/resources/beta/beta.ts b/src/resources/beta/beta.ts index e76f34c83..a9505a17d 100644 --- a/src/resources/beta/beta.ts +++ b/src/resources/beta/beta.ts @@ -1,12 +1,29 @@ // File generated from our OpenAPI spec by Stainless. import { APIResource } from 'openai/resource'; +import * as AssistantsAPI from 'openai/resources/beta/assistants/assistants'; import * as ChatAPI from 'openai/resources/beta/chat/chat'; +import * as ThreadsAPI from 'openai/resources/beta/threads/threads'; export class Beta extends APIResource { chat: ChatAPI.Chat = new ChatAPI.Chat(this.client); + assistants: AssistantsAPI.Assistants = new AssistantsAPI.Assistants(this.client); + threads: ThreadsAPI.Threads = new ThreadsAPI.Threads(this.client); } export namespace Beta { export import Chat = ChatAPI.Chat; + export import Assistants = AssistantsAPI.Assistants; + export import Assistant = AssistantsAPI.Assistant; + export import AsssitantDeleted = AssistantsAPI.AsssitantDeleted; + export import AssistantsPage = AssistantsAPI.AssistantsPage; + export import AssistantCreateParams = AssistantsAPI.AssistantCreateParams; + export import AssistantUpdateParams = AssistantsAPI.AssistantUpdateParams; + export import AssistantListParams = AssistantsAPI.AssistantListParams; + export import Threads = ThreadsAPI.Threads; + export import Thread = ThreadsAPI.Thread; + export import ThreadDeleted = ThreadsAPI.ThreadDeleted; + export import ThreadCreateParams = ThreadsAPI.ThreadCreateParams; + export import ThreadUpdateParams = ThreadsAPI.ThreadUpdateParams; + export import ThreadCreateAndRunParams = ThreadsAPI.ThreadCreateAndRunParams; } diff --git a/src/resources/beta/chat/completions.ts b/src/resources/beta/chat/completions.ts index 24fe90a0a..1164b787f 100644 --- a/src/resources/beta/chat/completions.ts +++ b/src/resources/beta/chat/completions.ts @@ -20,6 +20,10 @@ export { RunnableFunctionWithoutParse, ParsingFunction, } from 'openai/lib/RunnableFunction'; +import { ChatCompletionToolRunnerParams } from 'openai/lib/ChatCompletionRunner'; +export { ChatCompletionToolRunnerParams } from 'openai/lib/ChatCompletionRunner'; +import { ChatCompletionStreamingToolRunnerParams } from 'openai/lib/ChatCompletionStreamingRunner'; +export { ChatCompletionStreamingToolRunnerParams } from 'openai/lib/ChatCompletionStreamingRunner'; import { ChatCompletionStream, type ChatCompletionStreamParams } from 'openai/lib/ChatCompletionStream'; export { ChatCompletionStream, type ChatCompletionStreamParams } from 'openai/lib/ChatCompletionStream'; @@ -31,7 +35,7 @@ export class Completions extends APIResource { * the model requests function calls. * * For more details and examples, see - * [the docs](https://github.com/openai/openai-node#runFunctions) + * [the docs](https://github.com/openai/openai-node#automated-function-calls) */ runFunctions( body: ChatCompletionFunctionRunnerParams, @@ -61,6 +65,43 @@ export class Completions extends APIResource { ); } + /** + * A convenience helper for using tool calls with the /chat/completions endpoint + * which automatically calls the JavaScript functions you provide and sends their + * results back to the /chat/completions endpoint, looping as long as the model + * requests function calls. + * + * For more details and examples, see + * [the docs](https://github.com/openai/openai-node#automated-function-calls) + */ + runTools( + body: ChatCompletionToolRunnerParams, + options?: Core.RequestOptions, + ): ChatCompletionRunner; + runTools( + body: ChatCompletionStreamingToolRunnerParams, + options?: Core.RequestOptions, + ): ChatCompletionStreamingRunner; + runTools( + body: + | ChatCompletionToolRunnerParams + | ChatCompletionStreamingToolRunnerParams, + options?: Core.RequestOptions, + ): ChatCompletionRunner | ChatCompletionStreamingRunner { + if (body.stream) { + return ChatCompletionStreamingRunner.runTools( + this.client.chat.completions, + body as ChatCompletionStreamingToolRunnerParams, + options, + ); + } + return ChatCompletionRunner.runTools( + this.client.chat.completions, + body as ChatCompletionToolRunnerParams, + options, + ); + } + /** * Creates a chat completion stream */ diff --git a/src/resources/beta/index.ts b/src/resources/beta/index.ts index 9d8daa323..1383aa2b8 100644 --- a/src/resources/beta/index.ts +++ b/src/resources/beta/index.ts @@ -1,4 +1,21 @@ // File generated from our OpenAPI spec by Stainless. +export { + Assistant, + AsssitantDeleted, + AssistantCreateParams, + AssistantUpdateParams, + AssistantListParams, + AssistantsPage, + Assistants, +} from './assistants/index'; export { Beta } from './beta'; export { Chat } from './chat/index'; +export { + Thread, + ThreadDeleted, + ThreadCreateParams, + ThreadUpdateParams, + ThreadCreateAndRunParams, + Threads, +} from './threads/index'; diff --git a/src/resources/beta/threads/index.ts b/src/resources/beta/threads/index.ts new file mode 100644 index 000000000..53e26a5c6 --- /dev/null +++ b/src/resources/beta/threads/index.ts @@ -0,0 +1,31 @@ +// File generated from our OpenAPI spec by Stainless. + +export { + MessageContentImageFile, + MessageContentText, + ThreadMessage, + ThreadMessageDeleted, + MessageCreateParams, + MessageUpdateParams, + MessageListParams, + ThreadMessagesPage, + Messages, +} from './messages/index'; +export { + RequiredActionFunctionToolCall, + Run, + RunCreateParams, + RunUpdateParams, + RunListParams, + RunSubmitToolOutputsParams, + RunsPage, + Runs, +} from './runs/index'; +export { + Thread, + ThreadDeleted, + ThreadCreateParams, + ThreadUpdateParams, + ThreadCreateAndRunParams, + Threads, +} from './threads'; diff --git a/src/resources/beta/threads/messages/files.ts b/src/resources/beta/threads/messages/files.ts new file mode 100644 index 000000000..f55cd780c --- /dev/null +++ b/src/resources/beta/threads/messages/files.ts @@ -0,0 +1,105 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; +import { isRequestOptions } from 'openai/core'; +import * as FilesAPI from 'openai/resources/beta/threads/messages/files'; +import { CursorPage, type CursorPageParams } from 'openai/pagination'; + +export class Files extends APIResource { + /** + * Retrieves a Message File. + */ + retrieve( + threadId: string, + messageId: string, + fileId: string, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this.get(`/threads/${threadId}/messages/${messageId}/files/${fileId}`, { + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * Returns a list of Message Files. + */ + list( + threadId: string, + messageId: string, + query?: FileListParams, + options?: Core.RequestOptions, + ): Core.PagePromise; + list( + threadId: string, + messageId: string, + options?: Core.RequestOptions, + ): Core.PagePromise; + list( + threadId: string, + messageId: string, + query: FileListParams | Core.RequestOptions = {}, + options?: Core.RequestOptions, + ): Core.PagePromise { + if (isRequestOptions(query)) { + return this.list(threadId, messageId, {}, query); + } + return this.getAPIList(`/threads/${threadId}/messages/${messageId}/files`, MessageFilesPage, { + query, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } +} + +export class MessageFilesPage extends CursorPage {} + +/** + * A list of Files attached to a `Message`. + */ +export interface MessageFile { + /** + * The identifier, which can be referenced in API endpoints. + */ + id: string; + + /** + * The Unix timestamp (in seconds) for when the Message File was created. + */ + created_at: number; + + /** + * The ID of the [Message](https://platform.openai.com/docs/api-reference/messages) + * that the [File](https://platform.openai.com/docs/api-reference/files) is + * attached to. + */ + message_id: string; + + /** + * The object type, which is always `thread.message.file`. + */ + object: 'thread.message.file'; +} + +export interface FileListParams extends CursorPageParams { + /** + * A cursor for use in pagination. `before` is an object ID that defines your place + * in the list. For instance, if you make a list request and receive 100 objects, + * ending with obj_foo, your subsequent call can include before=obj_foo in order to + * fetch the previous page of the list. + */ + before?: string; + + /** + * Sort order by the `created_at` timestamp of the objects. `asc` for ascending + * order and `desc` for descending order. + */ + order?: 'asc' | 'desc'; +} + +export namespace Files { + export import MessageFile = FilesAPI.MessageFile; + export import MessageFilesPage = FilesAPI.MessageFilesPage; + export import FileListParams = FilesAPI.FileListParams; +} diff --git a/src/resources/beta/threads/messages/index.ts b/src/resources/beta/threads/messages/index.ts new file mode 100644 index 000000000..cde22c2a9 --- /dev/null +++ b/src/resources/beta/threads/messages/index.ts @@ -0,0 +1,14 @@ +// File generated from our OpenAPI spec by Stainless. + +export { + MessageContentImageFile, + MessageContentText, + ThreadMessage, + ThreadMessageDeleted, + MessageCreateParams, + MessageUpdateParams, + MessageListParams, + ThreadMessagesPage, + Messages, +} from './messages'; +export { MessageFile, FileListParams, MessageFilesPage, Files } from './files'; diff --git a/src/resources/beta/threads/messages/messages.ts b/src/resources/beta/threads/messages/messages.ts new file mode 100644 index 000000000..ec99a10f9 --- /dev/null +++ b/src/resources/beta/threads/messages/messages.ts @@ -0,0 +1,343 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; +import { isRequestOptions } from 'openai/core'; +import * as MessagesAPI from 'openai/resources/beta/threads/messages/messages'; +import * as FilesAPI from 'openai/resources/beta/threads/messages/files'; +import { CursorPage, type CursorPageParams } from 'openai/pagination'; + +export class Messages extends APIResource { + files: FilesAPI.Files = new FilesAPI.Files(this.client); + + /** + * Create a Message. + */ + create( + threadId: string, + body: MessageCreateParams, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this.post(`/threads/${threadId}/messages`, { + body, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * Retrieve a Message. + */ + retrieve( + threadId: string, + messageId: string, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this.get(`/threads/${threadId}/messages/${messageId}`, { + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * Modifies a Message. + */ + update( + threadId: string, + messageId: string, + body: MessageUpdateParams, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this.post(`/threads/${threadId}/messages/${messageId}`, { + body, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * Returns a list of Messages for a given Thread. + */ + list( + threadId: string, + query?: MessageListParams, + options?: Core.RequestOptions, + ): Core.PagePromise; + list(threadId: string, options?: Core.RequestOptions): Core.PagePromise; + list( + threadId: string, + query: MessageListParams | Core.RequestOptions = {}, + options?: Core.RequestOptions, + ): Core.PagePromise { + if (isRequestOptions(query)) { + return this.list(threadId, {}, query); + } + return this.getAPIList(`/threads/${threadId}/messages`, ThreadMessagesPage, { + query, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } +} + +export class ThreadMessagesPage extends CursorPage {} + +/** + * References an image [File](https://platform.openai.com/docs/api-reference/files) + * in the content of a Message. + */ +export interface MessageContentImageFile { + image_file: MessageContentImageFile.ImageFile; + + /** + * Will always be `image_file`. + */ + type: 'image_file'; +} + +export namespace MessageContentImageFile { + export interface ImageFile { + /** + * The [File](https://platform.openai.com/docs/api-reference/files) ID of the image + * in the Message content. + */ + file_id: string; + } +} + +/** + * The text content that is part of a Message. + */ +export interface MessageContentText { + text: MessageContentText.Text; + + /** + * Will always be `text`. + */ + type: 'text'; +} + +export namespace MessageContentText { + export interface Text { + annotations: Array; + + /** + * The data that makes up the text. + */ + value: string; + } + + export namespace Text { + /** + * A citation within the Message that points to a specific quote from a specific + * File associated with the Assistant or the Message. Generated when the Assistant + * uses the "retrieval" tool to search files. + */ + export interface FileCitation { + end_index: number; + + file_citation: FileCitation.FileCitation; + + start_index: number; + + /** + * The text in the Message content that needs to be replaced. + */ + text: string; + + /** + * Will always be `file_citation`. + */ + type: 'file_citation'; + } + + export namespace FileCitation { + export interface FileCitation { + /** + * The ID of the specific File the citation is from. + */ + file_id: string; + + /** + * The specific quote in the File. + */ + quote: string; + } + } + + /** + * A URL for the File that's generated when the Assistant used the + * `code_interpreter` tool to generate a File. + */ + export interface FilePath { + end_index: number; + + file_path: FilePath.FilePath; + + start_index: number; + + /** + * The text in the Message content that needs to be replaced. + */ + text: string; + + /** + * Will always be `file_path`. + */ + type: 'file_path'; + } + + export namespace FilePath { + export interface FilePath { + /** + * The ID of the File that was generated. + */ + file_id: string; + } + } + } +} + +/** + * Represents a Message within a + * [Thread](https://platform.openai.com/docs/api-reference/threads). + */ +export interface ThreadMessage { + /** + * The identifier, which can be referenced in API endpoints. + */ + id: string; + + /** + * If applicable, the ID of the + * [Assistant](https://platform.openai.com/docs/api-reference/assistants) that + * authored this Message. + */ + assistant_id: string | null; + + /** + * The content of the Message in array of text and/or images. + */ + content: Array; + + /** + * The Unix timestamp (in seconds) for when the Message was created. + */ + created_at: number; + + /** + * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs that + * the Assistant should use. Useful for tools like retrieval and code_interpreter + * that can access files. A maximum of 10 files can be attached to a Message. + */ + file_ids: Array; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata: unknown | null; + + /** + * The object type, which is always `thread.message`. + */ + object: 'thread.message'; + + /** + * The entity that produced the Message. One of `user` or `assistant`. + */ + role: 'user' | 'assistant'; + + /** + * If applicable, the ID of the + * [Run](https://platform.openai.com/docs/api-reference/runs) associated with the + * authoring of this Message. + */ + run_id: string | null; + + /** + * The [Thread](https://platform.openai.com/docs/api-reference/threads) ID that + * this Message belongs to. + */ + thread_id: string; +} + +export interface ThreadMessageDeleted { + id: string; + + deleted: boolean; + + object: 'thread.message.deleted'; +} + +export interface MessageCreateParams { + /** + * The content of the Message. + */ + content: string; + + /** + * The role of the entity that is creating the Message. Currently only `user` is + * supported. + */ + role: 'user'; + + /** + * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that + * the Message should use. There can be a maximum of 10 files attached to a + * Message. Useful for tools like `retrieval` and `code_interpreter` that can + * access and use files. + */ + file_ids?: Array; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; +} + +export interface MessageUpdateParams { + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; +} + +export interface MessageListParams extends CursorPageParams { + /** + * A cursor for use in pagination. `before` is an object ID that defines your place + * in the list. For instance, if you make a list request and receive 100 objects, + * ending with obj_foo, your subsequent call can include before=obj_foo in order to + * fetch the previous page of the list. + */ + before?: string; + + /** + * Sort order by the `created_at` timestamp of the objects. `asc` for ascending + * order and `desc` for descending order. + */ + order?: 'asc' | 'desc'; +} + +export namespace Messages { + export import MessageContentImageFile = MessagesAPI.MessageContentImageFile; + export import MessageContentText = MessagesAPI.MessageContentText; + export import ThreadMessage = MessagesAPI.ThreadMessage; + export import ThreadMessageDeleted = MessagesAPI.ThreadMessageDeleted; + export import ThreadMessagesPage = MessagesAPI.ThreadMessagesPage; + export import MessageCreateParams = MessagesAPI.MessageCreateParams; + export import MessageUpdateParams = MessagesAPI.MessageUpdateParams; + export import MessageListParams = MessagesAPI.MessageListParams; + export import Files = FilesAPI.Files; + export import MessageFile = FilesAPI.MessageFile; + export import MessageFilesPage = FilesAPI.MessageFilesPage; + export import FileListParams = FilesAPI.FileListParams; +} diff --git a/src/resources/beta/threads/runs/index.ts b/src/resources/beta/threads/runs/index.ts new file mode 100644 index 000000000..a2261f961 --- /dev/null +++ b/src/resources/beta/threads/runs/index.ts @@ -0,0 +1,23 @@ +// File generated from our OpenAPI spec by Stainless. + +export { + CodeToolCall, + FunctionToolCall, + MessageCreationStepDetails, + RetrievalToolCall, + RunStep, + ToolCallsStepDetails, + StepListParams, + RunStepsPage, + Steps, +} from './steps'; +export { + RequiredActionFunctionToolCall, + Run, + RunCreateParams, + RunUpdateParams, + RunListParams, + RunSubmitToolOutputsParams, + RunsPage, + Runs, +} from './runs'; diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts new file mode 100644 index 000000000..e81b09a90 --- /dev/null +++ b/src/resources/beta/threads/runs/runs.ts @@ -0,0 +1,535 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; +import { isRequestOptions } from 'openai/core'; +import * as RunsAPI from 'openai/resources/beta/threads/runs/runs'; +import * as StepsAPI from 'openai/resources/beta/threads/runs/steps'; +import { CursorPage, type CursorPageParams } from 'openai/pagination'; + +export class Runs extends APIResource { + steps: StepsAPI.Steps = new StepsAPI.Steps(this.client); + + /** + * Create a Run. + */ + create(threadId: string, body: RunCreateParams, options?: Core.RequestOptions): Core.APIPromise { + return this.post(`/threads/${threadId}/runs`, { + body, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * Retrieves a Run. + */ + retrieve(threadId: string, runId: string, options?: Core.RequestOptions): Core.APIPromise { + return this.get(`/threads/${threadId}/runs/${runId}`, { + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * Modifies a Run. + */ + update( + threadId: string, + runId: string, + body: RunUpdateParams, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this.post(`/threads/${threadId}/runs/${runId}`, { + body, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * Returns a list of Runs belonging to a Thread. + */ + list( + threadId: string, + query?: RunListParams, + options?: Core.RequestOptions, + ): Core.PagePromise; + list(threadId: string, options?: Core.RequestOptions): Core.PagePromise; + list( + threadId: string, + query: RunListParams | Core.RequestOptions = {}, + options?: Core.RequestOptions, + ): Core.PagePromise { + if (isRequestOptions(query)) { + return this.list(threadId, {}, query); + } + return this.getAPIList(`/threads/${threadId}/runs`, RunsPage, { + query, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * Cancels a Run that is `in_progress`. + */ + cancel(threadId: string, runId: string, options?: Core.RequestOptions): Core.APIPromise { + return this.post(`/threads/${threadId}/runs/${runId}/cancel`, { + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * When a Run has the `status: "requires_action"` and `required_action.type` is + * `submit_tool_outputs`, this endpoint can be used to submit the outputs from the + * tool calls once they're all completed. All outputs must be submitted in a single + * request. + */ + submitToolOutputs( + threadId: string, + runId: string, + body: RunSubmitToolOutputsParams, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this.post(`/threads/${threadId}/runs/${runId}/submit_tool_outputs`, { + body, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } +} + +export class RunsPage extends CursorPage {} + +/** + * Tool call objects + */ +export interface RequiredActionFunctionToolCall { + /** + * The ID of the tool call. This ID must be referenced when you submit the tool + * outputs in using the + * [Submit tool outputs to Run](https://platform.openai.com/docs/api-reference/runs/submitToolOutputs) + * endpoint. + */ + id: string; + + /** + * The function definition. + */ + function: RequiredActionFunctionToolCall.Function; + + /** + * The type of tool call the output is required for. For now, this is always + * `function`. + */ + type: 'function'; +} + +export namespace RequiredActionFunctionToolCall { + /** + * The function definition. + */ + export interface Function { + /** + * The arguments that the model expects you to pass to the function. + */ + arguments: string; + + /** + * The name of the function. + */ + name: string; + } +} + +/** + * Represents an execution Run on a + * [Thread](https://platform.openai.com/docs/api-reference/threads). + */ +export interface Run { + /** + * The identifier, which can be referenced in API endpoints. + */ + id: string; + + /** + * The ID of the + * [Assistant](https://platform.openai.com/docs/api-reference/assistants) used for + * execution of this Run. + */ + assistant_id: string; + + /** + * The Unix timestamp (in seconds) for when the Run was cancelled. + */ + cancelled_at: number | null; + + /** + * The Unix timestamp (in seconds) for when the Run was completed. + */ + completed_at: number | null; + + /** + * The Unix timestamp (in seconds) for when the Run was created. + */ + created_at: number; + + /** + * The Unix timestamp (in seconds) for when the Run will expire. + */ + expires_at: number; + + /** + * The Unix timestamp (in seconds) for when the Run failed. + */ + failed_at: number | null; + + /** + * The list of [File](https://platform.openai.com/docs/api-reference/files) IDs the + * [Assistant](https://platform.openai.com/docs/api-reference/assistants) used for + * this Run. + */ + file_ids: Array; + + /** + * The instructions that the + * [Assistant](https://platform.openai.com/docs/api-reference/assistants) used for + * this run. + */ + instructions: string; + + /** + * The last error associated with this Run. Will be `null` if there are no errors. + */ + last_error: Run.LastError | null; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata: unknown | null; + + /** + * The model that the + * [Assistant](https://platform.openai.com/docs/api-reference/assistants) used for + * this Run. + */ + model: string; + + /** + * The object type, which is always `assistant.run`. + */ + object: 'assistant.run'; + + /** + * Details on the action required to continue the Run. Will be `null` if no action + * is required. + */ + required_action: Run.RequiredAction | null; + + /** + * The Unix timestamp (in seconds) for when the Run was started. + */ + started_at: number | null; + + /** + * The status of the run, which can be either `queued`, `in_progress`, + * `requires_action`, `cancelling`, `cancelled`, `failed`, `completed`, or + * `expired`. + */ + status: + | 'queued' + | 'in_progress' + | 'requires_action' + | 'cancelling' + | 'cancelled' + | 'failed' + | 'completed' + | 'expired'; + + /** + * The ID of the [Thread](https://platform.openai.com/docs/api-reference/threads) + * that was executed on as a part of this Run. + */ + thread_id: string; + + /** + * The list of tools that the + * [Assistant](https://platform.openai.com/docs/api-reference/assistants) used for + * this Run. + */ + tools: Array; +} + +export namespace Run { + /** + * The last error associated with this Run. Will be `null` if there are no errors. + */ + export interface LastError { + /** + * One of `server_error` or `rate_limit_exceeded`. + */ + code: 'server_error' | 'rate_limit_exceeded'; + + /** + * A human-readable description of the error. + */ + message: string; + } + + /** + * Details on the action required to continue the Run. Will be `null` if no action + * is required. + */ + export interface RequiredAction { + /** + * Details on the tool outputs needed for this Run to continue. + */ + submit_tool_outputs: RequiredAction.SubmitToolOutputs; + + /** + * For now, this is always `submit_tool_outputs`. + */ + type: 'submit_tool_outputs'; + } + + export namespace RequiredAction { + /** + * Details on the tool outputs needed for this Run to continue. + */ + export interface SubmitToolOutputs { + /** + * A list of the relevant tool calls. + */ + tool_calls: Array; + } + } + + export interface AssistantToolsCode { + /** + * The type of tool being defined: `code_interpreter` + */ + type: 'code_interpreter'; + } + + export interface AssistantToolsRetrieval { + /** + * The type of tool being defined: `retreival` + */ + type: 'retreival'; + } + + export interface AssistantToolsFunction { + /** + * The function definition. + */ + function: AssistantToolsFunction.Function; + + /** + * The type of tool being defined: `function` + */ + type: 'function'; + } + + export namespace AssistantToolsFunction { + /** + * The function definition. + */ + export interface Function { + /** + * A description of what the function does, used by the model to choose when and + * how to call the function. + */ + description: string; + + /** + * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain + * underscores and dashes, with a maximum length of 64. + */ + name: string; + + /** + * The parameters the functions accepts, described as a JSON Schema object. See the + * [guide](https://platform.openai.com/docs/guides/gpt/function-calling) for + * examples, and the + * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for + * documentation about the format. + * + * To describe a function that accepts no parameters, provide the value + * `{"type": "object", "properties": {}}`. + */ + parameters: Record; + } + } +} + +export interface RunCreateParams { + /** + * The ID of the + * [Assistant](https://platform.openai.com/docs/api-reference/assistants) to use to + * execute this Run. + */ + assistant_id: string; + + /** + * Override the default system message of the Assistant. This is useful for + * modifying the behavior on a per-run basis. + */ + instructions?: string | null; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + + /** + * The ID of the [Model](https://platform.openai.com/docs/api-reference/models) to + * be used to execute this Run. If a value is provided here, it will override the + * model associated with the Assistant. If not, the model associated with the + * Assistant will be used. + */ + model?: string | null; + + /** + * Override the tools the Assistant can use for this Run. This is useful for + * modifying the behavior on a per-run basis. + */ + tools?: Array< + | RunCreateParams.AssistantToolsCode + | RunCreateParams.AssistantToolsRetrieval + | RunCreateParams.AssistantToolsFunction + > | null; +} + +export namespace RunCreateParams { + export interface AssistantToolsCode { + /** + * The type of tool being defined: `code_interpreter` + */ + type: 'code_interpreter'; + } + + export interface AssistantToolsRetrieval { + /** + * The type of tool being defined: `retreival` + */ + type: 'retreival'; + } + + export interface AssistantToolsFunction { + /** + * The function definition. + */ + function: AssistantToolsFunction.Function; + + /** + * The type of tool being defined: `function` + */ + type: 'function'; + } + + export namespace AssistantToolsFunction { + /** + * The function definition. + */ + export interface Function { + /** + * A description of what the function does, used by the model to choose when and + * how to call the function. + */ + description: string; + + /** + * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain + * underscores and dashes, with a maximum length of 64. + */ + name: string; + + /** + * The parameters the functions accepts, described as a JSON Schema object. See the + * [guide](https://platform.openai.com/docs/guides/gpt/function-calling) for + * examples, and the + * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for + * documentation about the format. + * + * To describe a function that accepts no parameters, provide the value + * `{"type": "object", "properties": {}}`. + */ + parameters: Record; + } + } +} + +export interface RunUpdateParams { + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; +} + +export interface RunListParams extends CursorPageParams { + /** + * A cursor for use in pagination. `before` is an object ID that defines your place + * in the list. For instance, if you make a list request and receive 100 objects, + * ending with obj_foo, your subsequent call can include before=obj_foo in order to + * fetch the previous page of the list. + */ + before?: string; + + /** + * Sort order by the `created_at` timestamp of the objects. `asc` for ascending + * order and `desc` for descending order. + */ + order?: 'asc' | 'desc'; +} + +export interface RunSubmitToolOutputsParams { + /** + * A list of tools for which the outputs are being submitted. + */ + tool_outputs: Array; +} + +export namespace RunSubmitToolOutputsParams { + export interface ToolOutput { + /** + * The output of the tool call to be submitted to continue the Run. + */ + output?: string; + + /** + * The ID of the tool call in the `required_action` object within the Run object + * the output is being submitted for. + */ + tool_call_id?: string; + } +} + +export namespace Runs { + export import RequiredActionFunctionToolCall = RunsAPI.RequiredActionFunctionToolCall; + export import Run = RunsAPI.Run; + export import RunsPage = RunsAPI.RunsPage; + export import RunCreateParams = RunsAPI.RunCreateParams; + export import RunUpdateParams = RunsAPI.RunUpdateParams; + export import RunListParams = RunsAPI.RunListParams; + export import RunSubmitToolOutputsParams = RunsAPI.RunSubmitToolOutputsParams; + export import Steps = StepsAPI.Steps; + export import CodeToolCall = StepsAPI.CodeToolCall; + export import FunctionToolCall = StepsAPI.FunctionToolCall; + export import MessageCreationStepDetails = StepsAPI.MessageCreationStepDetails; + export import RetrievalToolCall = StepsAPI.RetrievalToolCall; + export import RunStep = StepsAPI.RunStep; + export import ToolCallsStepDetails = StepsAPI.ToolCallsStepDetails; + export import RunStepsPage = StepsAPI.RunStepsPage; + export import StepListParams = StepsAPI.StepListParams; +} diff --git a/src/resources/beta/threads/runs/steps.ts b/src/resources/beta/threads/runs/steps.ts new file mode 100644 index 000000000..94745f875 --- /dev/null +++ b/src/resources/beta/threads/runs/steps.ts @@ -0,0 +1,365 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; +import { isRequestOptions } from 'openai/core'; +import * as StepsAPI from 'openai/resources/beta/threads/runs/steps'; +import { CursorPage, type CursorPageParams } from 'openai/pagination'; + +export class Steps extends APIResource { + /** + * Retrieves a Run Step. + */ + retrieve( + threadId: string, + runId: string, + stepId: string, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this.get(`/threads/${threadId}/runs/${runId}/steps/${stepId}`, { + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * Returns a list of Run Steps belonging to a Run. + */ + list( + threadId: string, + runId: string, + query?: StepListParams, + options?: Core.RequestOptions, + ): Core.PagePromise; + list( + threadId: string, + runId: string, + options?: Core.RequestOptions, + ): Core.PagePromise; + list( + threadId: string, + runId: string, + query: StepListParams | Core.RequestOptions = {}, + options?: Core.RequestOptions, + ): Core.PagePromise { + if (isRequestOptions(query)) { + return this.list(threadId, runId, {}, query); + } + return this.getAPIList(`/threads/${threadId}/runs/${runId}/steps`, RunStepsPage, { + query, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } +} + +export class RunStepsPage extends CursorPage {} + +/** + * Details of the Code Interpreter tool call the Run Step was involved in. + */ +export interface CodeToolCall { + /** + * The ID of the tool call. + */ + id: string; + + /** + * The code interpreter tool call definition. + */ + code_interpreter: CodeToolCall.CodeInterpreter; + + /** + * The type of tool call. This is always going to be `code_interpreter` for this + * type of tool call. + */ + type: 'code_interpreter'; +} + +export namespace CodeToolCall { + /** + * The code interpreter tool call definition. + */ + export interface CodeInterpreter { + /** + * The input to the Code Interpreter tool call. + */ + input: string; + + /** + * The outputs from the Code Interpreter tool call. Code Interpreter can output one + * or more items, including text (`logs`) or images (`image`). Each of these are + * represented by a different object type. + */ + outputs: Array; + } + + export namespace CodeInterpreter { + /** + * Text output from the Code Interpreter tool call as part of a Run Step. + */ + export interface Logs { + /** + * The text output from the Code Interpreter tool call. + */ + logs: string; + + /** + * Will always be `logs`. + */ + type: 'logs'; + } + + export interface Image { + image: Image.Image; + + /** + * Will always be `image`. + */ + type: 'image'; + } + + export namespace Image { + export interface Image { + /** + * The [File](https://platform.openai.com/docs/api-reference/files) ID of the + * image. + */ + file_id: string; + } + } + } +} + +export interface FunctionToolCall { + /** + * The ID of the tool call object. + */ + id: string; + + /** + * The definition of the function that was called. + */ + function: FunctionToolCall.Function; + + /** + * The type of tool call. This is always going to be `function` for this type of + * tool call. + */ + type: 'function'; +} + +export namespace FunctionToolCall { + /** + * The definition of the function that was called. + */ + export interface Function { + /** + * The arguments passed to the function. + */ + arguments: string; + + /** + * The name of the function. + */ + name: string; + + /** + * The output of the function. This will be `null` if the outputs have not been + * [submitted](https://platform.openai.com/docs/api-reference/runs/submitToolOutputs) + * yet. + */ + output: string | null; + } +} + +/** + * Details of the Message creation activity that the Run Step was involved in. + */ +export interface MessageCreationStepDetails { + message_creation: MessageCreationStepDetails.MessageCreation; + + /** + * Will always be `message_creation``. + */ + type: 'message_creation'; +} + +export namespace MessageCreationStepDetails { + export interface MessageCreation { + /** + * The ID of the Message that was created by this Run Step. + */ + message_id: string; + } +} + +export interface RetrievalToolCall { + /** + * The ID of the tool call object. + */ + id: string; + + /** + * For now, this is always going to be an empty object. + */ + retrieval: unknown; + + /** + * The type of tool call. This is always going to be `retrieval` for this type of + * tool call. + */ + type: 'retrieval'; +} + +/** + * Represents a Step in execution of a Run. + */ +export interface RunStep { + /** + * The identifier of the run step, which can be referenced in API endpoints. + */ + id: string; + + /** + * The ID of the + * [Assistant](https://platform.openai.com/docs/api-reference/assistants) + * associated with the Run Step. + */ + assistant_id: string; + + /** + * The Unix timestamp (in seconds) for when the Run Step was cancelled. + */ + cancelled_at: number | null; + + /** + * The Unix timestamp (in seconds) for when the Run Step was completed. + */ + completed_at: number | null; + + /** + * The Unix timestamp (in seconds) for when the Run Step was created. + */ + created_at: number; + + /** + * The Unix timestamp (in seconds) for when the Run Step expired. A step is + * considered expired if the parent Run is expired. + */ + expired_at: number | null; + + /** + * The Unix timestamp (in seconds) for when the Run Step failed. + */ + failed_at: number | null; + + /** + * The last error associated with this Run Step. Will be `null` if there are no + * errors. + */ + last_error: RunStep.LastError | null; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata: unknown | null; + + /** + * The object type, which is always `assistant.run.step``. + */ + object: 'assistant.run.step'; + + /** + * The ID of the [Run](https://platform.openai.com/docs/api-reference/runs) that + * this Run Step is a part of. + */ + run_id: string; + + /** + * The status of the run, which can be either `in_progress`, `cancelled`, `failed`, + * `completed`, or `expired`. + */ + status: 'in_progress' | 'cancelled' | 'failed' | 'completed' | 'expired'; + + /** + * The details of the activity the Run Step was involved in. + */ + step_details: MessageCreationStepDetails | ToolCallsStepDetails; + + /** + * The ID of the [Thread](https://platform.openai.com/docs/api-reference/threads) + * that was Run. + */ + thread_id: string; + + /** + * The type of Run Step, which can be either `message_creation` or `tool_calls`. + */ + type: 'message_creation' | 'tool_calls'; +} + +export namespace RunStep { + /** + * The last error associated with this Run Step. Will be `null` if there are no + * errors. + */ + export interface LastError { + /** + * One of `server_error` or `rate_limit_exceeded`. + */ + code: 'server_error' | 'rate_limit_exceeded'; + + /** + * A human-readable description of the error. + */ + message: string; + } +} + +/** + * Details of the Tool Call activity that the Run Step was involved in. + */ +export interface ToolCallsStepDetails { + /** + * An array of tool calls the Run Step was involved in. These can be associated + * with one of three types of tools: `code_interpreter`, `retrieval`, or + * `function`. + */ + tool_calls: Array; + + /** + * Will always be `tool_calls`. + */ + type: 'tool_calls'; +} + +export interface StepListParams extends CursorPageParams { + /** + * A cursor for use in pagination. `before` is an object ID that defines your place + * in the list. For instance, if you make a list request and receive 100 objects, + * ending with obj_foo, your subsequent call can include before=obj_foo in order to + * fetch the previous page of the list. + */ + before?: string; + + /** + * Sort order by the `created_at` timestamp of the objects. `asc` for ascending + * order and `desc` for descending order. + */ + order?: 'asc' | 'desc'; +} + +export namespace Steps { + export import CodeToolCall = StepsAPI.CodeToolCall; + export import FunctionToolCall = StepsAPI.FunctionToolCall; + export import MessageCreationStepDetails = StepsAPI.MessageCreationStepDetails; + export import RetrievalToolCall = StepsAPI.RetrievalToolCall; + export import RunStep = StepsAPI.RunStep; + export import ToolCallsStepDetails = StepsAPI.ToolCallsStepDetails; + export import RunStepsPage = StepsAPI.RunStepsPage; + export import StepListParams = StepsAPI.StepListParams; +} diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts new file mode 100644 index 000000000..cb49cd230 --- /dev/null +++ b/src/resources/beta/threads/threads.ts @@ -0,0 +1,339 @@ +// File generated from our OpenAPI spec by Stainless. + +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; +import * as ThreadsAPI from 'openai/resources/beta/threads/threads'; +import * as MessagesAPI from 'openai/resources/beta/threads/messages/messages'; +import * as RunsAPI from 'openai/resources/beta/threads/runs/runs'; + +export class Threads extends APIResource { + runs: RunsAPI.Runs = new RunsAPI.Runs(this.client); + messages: MessagesAPI.Messages = new MessagesAPI.Messages(this.client); + + /** + * Create a Thread. + */ + create(body: ThreadCreateParams, options?: Core.RequestOptions): Core.APIPromise { + return this.post('/threads', { + body, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * Retrieves a Thread. + */ + retrieve(threadId: string, options?: Core.RequestOptions): Core.APIPromise { + return this.get(`/threads/${threadId}`, { + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * Modifies a Thread. + */ + update(threadId: string, body: ThreadUpdateParams, options?: Core.RequestOptions): Core.APIPromise { + return this.post(`/threads/${threadId}`, { + body, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * Delete a Thread. + */ + del(threadId: string, options?: Core.RequestOptions): Core.APIPromise { + return this.delete(`/threads/${threadId}`, { + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } + + /** + * Create a Thread and Run it in one request. + */ + createAndRun(body: ThreadCreateAndRunParams, options?: Core.RequestOptions): Core.APIPromise { + return this.post('/threads/runs', { + body, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + }); + } +} + +/** + * Represents a Thread that contains + * [Messages](https://platform.openai.com/docs/api-reference/messages). + */ +export interface Thread { + /** + * The identifier, which can be referenced in API endpoints. + */ + id: string; + + /** + * The Unix timestamp (in seconds) for when the Thread was created. + */ + created_at: number; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata: unknown | null; + + /** + * The object type, which is always `thread`. + */ + object: 'thread'; +} + +export interface ThreadDeleted { + id: string; + + deleted: boolean; + + object: 'thread.deleted'; +} + +export interface ThreadCreateParams { + /** + * A list of [Messages](https://platform.openai.com/docs/api-reference/messages) to + * start the Thread with. + */ + messages?: Array; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; +} + +export namespace ThreadCreateParams { + export interface Message { + /** + * The content of the Message. + */ + content: string; + + /** + * The role of the entity that is creating the Message. Currently only `user` is + * supported. + */ + role: 'user'; + + /** + * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that + * the Message should use. There can be a maximum of 10 files attached to a + * Message. Useful for tools like `retrieval` and `code_interpreter` that can + * access and use files. + */ + file_ids?: Array; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + } +} + +export interface ThreadUpdateParams { + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; +} + +export interface ThreadCreateAndRunParams { + /** + * The ID of the + * [Assistant](https://platform.openai.com/docs/api-reference/assistants) to use to + * execute this Run. + */ + assistant_id: string; + + /** + * Override the default system message of the Assistant. This is useful for + * modifying the behavior on a per-run basis. + */ + instructions?: string | null; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + + /** + * The ID of the [Model](https://platform.openai.com/docs/api-reference/models) to + * be used to execute this Run. If a value is provided here, it will override the + * model associated with the Assistant. If not, the model associated with the + * Assistant will be used. + */ + model?: string | null; + + /** + * If no Thread is provided, an empty Thread will be created. + */ + thread?: ThreadCreateAndRunParams.Thread; + + /** + * Override the tools the Assistant can use for this Run. This is useful for + * modifying the behavior on a per-run basis. + */ + tools?: Array< + | ThreadCreateAndRunParams.AssistantToolsCode + | ThreadCreateAndRunParams.AssistantToolsRetrieval + | ThreadCreateAndRunParams.AssistantToolsFunction + > | null; +} + +export namespace ThreadCreateAndRunParams { + /** + * If no Thread is provided, an empty Thread will be created. + */ + export interface Thread { + /** + * A list of [Messages](https://platform.openai.com/docs/api-reference/messages) to + * start the Thread with. + */ + messages?: Array; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + } + + export namespace Thread { + export interface Message { + /** + * The content of the Message. + */ + content: string; + + /** + * The role of the entity that is creating the Message. Currently only `user` is + * supported. + */ + role: 'user'; + + /** + * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that + * the Message should use. There can be a maximum of 10 files attached to a + * Message. Useful for tools like `retrieval` and `code_interpreter` that can + * access and use files. + */ + file_ids?: Array; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + } + } + + export interface AssistantToolsCode { + /** + * The type of tool being defined: `code_interpreter` + */ + type: 'code_interpreter'; + } + + export interface AssistantToolsRetrieval { + /** + * The type of tool being defined: `retreival` + */ + type: 'retreival'; + } + + export interface AssistantToolsFunction { + /** + * The function definition. + */ + function: AssistantToolsFunction.Function; + + /** + * The type of tool being defined: `function` + */ + type: 'function'; + } + + export namespace AssistantToolsFunction { + /** + * The function definition. + */ + export interface Function { + /** + * A description of what the function does, used by the model to choose when and + * how to call the function. + */ + description: string; + + /** + * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain + * underscores and dashes, with a maximum length of 64. + */ + name: string; + + /** + * The parameters the functions accepts, described as a JSON Schema object. See the + * [guide](https://platform.openai.com/docs/guides/gpt/function-calling) for + * examples, and the + * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for + * documentation about the format. + * + * To describe a function that accepts no parameters, provide the value + * `{"type": "object", "properties": {}}`. + */ + parameters: Record; + } + } +} + +export namespace Threads { + export import Thread = ThreadsAPI.Thread; + export import ThreadDeleted = ThreadsAPI.ThreadDeleted; + export import ThreadCreateParams = ThreadsAPI.ThreadCreateParams; + export import ThreadUpdateParams = ThreadsAPI.ThreadUpdateParams; + export import ThreadCreateAndRunParams = ThreadsAPI.ThreadCreateAndRunParams; + export import Runs = RunsAPI.Runs; + export import RequiredActionFunctionToolCall = RunsAPI.RequiredActionFunctionToolCall; + export import Run = RunsAPI.Run; + export import RunsPage = RunsAPI.RunsPage; + export import RunCreateParams = RunsAPI.RunCreateParams; + export import RunUpdateParams = RunsAPI.RunUpdateParams; + export import RunListParams = RunsAPI.RunListParams; + export import RunSubmitToolOutputsParams = RunsAPI.RunSubmitToolOutputsParams; + export import Messages = MessagesAPI.Messages; + export import MessageContentImageFile = MessagesAPI.MessageContentImageFile; + export import MessageContentText = MessagesAPI.MessageContentText; + export import ThreadMessage = MessagesAPI.ThreadMessage; + export import ThreadMessageDeleted = MessagesAPI.ThreadMessageDeleted; + export import ThreadMessagesPage = MessagesAPI.ThreadMessagesPage; + export import MessageCreateParams = MessagesAPI.MessageCreateParams; + export import MessageUpdateParams = MessagesAPI.MessageUpdateParams; + export import MessageListParams = MessagesAPI.MessageListParams; +} diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 35011c7a5..007c9271a 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -10,10 +10,23 @@ export class Chat extends APIResource { export namespace Chat { export import Completions = CompletionsAPI.Completions; export import ChatCompletion = CompletionsAPI.ChatCompletion; + export import ChatCompletionAssistantMessageParam = CompletionsAPI.ChatCompletionAssistantMessageParam; export import ChatCompletionChunk = CompletionsAPI.ChatCompletionChunk; + export import ChatCompletionContentPart = CompletionsAPI.ChatCompletionContentPart; + export import ChatCompletionContentPartImage = CompletionsAPI.ChatCompletionContentPartImage; + export import ChatCompletionContentPartText = CompletionsAPI.ChatCompletionContentPartText; + export import ChatCompletionFunctionCallOption = CompletionsAPI.ChatCompletionFunctionCallOption; + export import ChatCompletionFunctionMessageParam = CompletionsAPI.ChatCompletionFunctionMessageParam; export import ChatCompletionMessage = CompletionsAPI.ChatCompletionMessage; export import ChatCompletionMessageParam = CompletionsAPI.ChatCompletionMessageParam; + export import ChatCompletionMessageToolCall = CompletionsAPI.ChatCompletionMessageToolCall; + export import ChatCompletionNamedToolChoice = CompletionsAPI.ChatCompletionNamedToolChoice; export import ChatCompletionRole = CompletionsAPI.ChatCompletionRole; + export import ChatCompletionSystemMessageParam = CompletionsAPI.ChatCompletionSystemMessageParam; + export import ChatCompletionTool = CompletionsAPI.ChatCompletionTool; + export import ChatCompletionToolChoiceOption = CompletionsAPI.ChatCompletionToolChoiceOption; + export import ChatCompletionToolMessageParam = CompletionsAPI.ChatCompletionToolMessageParam; + export import ChatCompletionUserMessageParam = CompletionsAPI.ChatCompletionUserMessageParam; /** * @deprecated ChatCompletionMessageParam should be used instead */ diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index a5be20771..b81da9fa3 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -62,7 +62,15 @@ export interface ChatCompletion { /** * The object type, which is always `chat.completion`. */ - object: string; + object: 'chat.completion'; + + /** + * This fingerprint represents the backend configuration that the model runs with. + * + * Can be used in conjunction with the `seed` request parameter to understand when + * backend changes have been made that might impact determinism. + */ + system_fingerprint?: string; /** * Usage statistics for the completion request. @@ -76,10 +84,11 @@ export namespace ChatCompletion { * The reason the model stopped generating tokens. This will be `stop` if the model * hit a natural stop point or a provided stop sequence, `length` if the maximum * number of tokens specified in the request was reached, `content_filter` if - * content was omitted due to a flag from our content filters, or `function_call` - * if the model called a function. + * content was omitted due to a flag from our content filters, `tool_calls` if the + * model called a tool, or `function_call` (deprecated) if the model called a + * function. */ - finish_reason: 'stop' | 'length' | 'function_call' | 'content_filter'; + finish_reason: 'stop' | 'length' | 'tool_calls' | 'content_filter' | 'function_call'; /** * The index of the choice in the list of choices. @@ -93,6 +102,50 @@ export namespace ChatCompletion { } } +export interface ChatCompletionAssistantMessageParam { + /** + * The contents of the assistant message. + */ + content: string | null; + + /** + * The role of the messages author, in this case `assistant`. + */ + role: 'assistant'; + + /** + * Deprecated and replaced by `tool_calls`. The name and arguments of a function + * that should be called, as generated by the model. + */ + function_call?: ChatCompletionAssistantMessageParam.FunctionCall; + + /** + * The tool calls generated by the model, such as function calls. + */ + tool_calls?: Array; +} + +export namespace ChatCompletionAssistantMessageParam { + /** + * Deprecated and replaced by `tool_calls`. The name and arguments of a function + * that should be called, as generated by the model. + */ + export interface FunctionCall { + /** + * The arguments to call the function with, as generated by the model in JSON + * format. Note that the model does not always generate valid JSON, and may + * hallucinate parameters not defined by your function schema. Validate the + * arguments in your code before calling your function. + */ + arguments: string; + + /** + * The name of the function to call. + */ + name: string; + } +} + /** * Represents a streamed chunk of a chat completion response returned by model, * based on the provided input. @@ -123,7 +176,7 @@ export interface ChatCompletionChunk { /** * The object type, which is always `chat.completion.chunk`. */ - object: string; + object: 'chat.completion.chunk'; } export namespace ChatCompletionChunk { @@ -137,10 +190,11 @@ export namespace ChatCompletionChunk { * The reason the model stopped generating tokens. This will be `stop` if the model * hit a natural stop point or a provided stop sequence, `length` if the maximum * number of tokens specified in the request was reached, `content_filter` if - * content was omitted due to a flag from our content filters, or `function_call` - * if the model called a function. + * content was omitted due to a flag from our content filters, `tool_calls` if the + * model called a tool, or `function_call` (deprecated) if the model called a + * function. */ - finish_reason: 'stop' | 'length' | 'function_call' | 'content_filter' | null; + finish_reason: 'stop' | 'length' | 'tool_calls' | 'content_filter' | 'function_call' | null; /** * The index of the choice in the list of choices. @@ -159,21 +213,23 @@ export namespace ChatCompletionChunk { content?: string | null; /** - * The name and arguments of a function that should be called, as generated by the - * model. + * Deprecated and replaced by `tool_calls`. The name and arguments of a function + * that should be called, as generated by the model. */ function_call?: Delta.FunctionCall; /** * The role of the author of this message. */ - role?: ChatCompletionsAPI.ChatCompletionRole; + role?: 'system' | 'user' | 'assistant' | 'tool'; + + tool_calls?: Array; } export namespace Delta { /** - * The name and arguments of a function that should be called, as generated by the - * model. + * Deprecated and replaced by `tool_calls`. The name and arguments of a function + * that should be called, as generated by the model. */ export interface FunctionCall { /** @@ -189,10 +245,108 @@ export namespace ChatCompletionChunk { */ name?: string; } + + export interface ToolCall { + index: number; + + /** + * The ID of the tool call. + */ + id?: string; + + function?: ToolCall.Function; + + /** + * The type of the tool. Currently, only `function` is supported. + */ + type?: 'function'; + } + + export namespace ToolCall { + export interface Function { + /** + * The arguments to call the function with, as generated by the model in JSON + * format. Note that the model does not always generate valid JSON, and may + * hallucinate parameters not defined by your function schema. Validate the + * arguments in your code before calling your function. + */ + arguments?: string; + + /** + * The name of the function to call. + */ + name?: string; + } + } } } } +export type ChatCompletionContentPart = ChatCompletionContentPartText | ChatCompletionContentPartImage; + +export interface ChatCompletionContentPartImage { + image_url: ChatCompletionContentPartImage.ImageURL; + + /** + * The type of the content part. + */ + type: 'image_url'; +} + +export namespace ChatCompletionContentPartImage { + export interface ImageURL { + /** + * Specifies the detail level of the image. + */ + detail?: 'auto' | 'low' | 'high'; + + /** + * Either a URL of the image or the base64 encoded image data. + */ + url?: string; + } +} + +export interface ChatCompletionContentPartText { + /** + * The text content. + */ + text: string; + + /** + * The type of the content part. + */ + type: 'text'; +} + +/** + * Specifying a particular function via `{"name": "my_function"}` forces the model + * to call that function. + */ +export interface ChatCompletionFunctionCallOption { + /** + * The name of the function to call. + */ + name: string; +} + +export interface ChatCompletionFunctionMessageParam { + /** + * The return value from the function call, to return to the model. + */ + content: string | null; + + /** + * The name of the function to call. + */ + name: string; + + /** + * The role of the messages author, in this case `function`. + */ + role: 'function'; +} + /** * A chat completion message generated by the model. */ @@ -205,19 +359,24 @@ export interface ChatCompletionMessage { /** * The role of the author of this message. */ - role: ChatCompletionRole; + role: 'assistant'; /** - * The name and arguments of a function that should be called, as generated by the - * model. + * Deprecated and replaced by `tool_calls`. The name and arguments of a function + * that should be called, as generated by the model. */ function_call?: ChatCompletionMessage.FunctionCall; + + /** + * The tool calls generated by the model, such as function calls. + */ + tool_calls?: Array; } export namespace ChatCompletionMessage { /** - * The name and arguments of a function that should be called, as generated by the - * model. + * Deprecated and replaced by `tool_calls`. The name and arguments of a function + * that should be called, as generated by the model. */ export interface FunctionCall { /** @@ -235,40 +394,35 @@ export namespace ChatCompletionMessage { } } -export interface ChatCompletionMessageParam { - /** - * The contents of the message. `content` is required for all messages, and may be - * null for assistant messages with function calls. - */ - content: string | null; +export type ChatCompletionMessageParam = + | ChatCompletionSystemMessageParam + | ChatCompletionUserMessageParam + | ChatCompletionAssistantMessageParam + | ChatCompletionToolMessageParam + | ChatCompletionFunctionMessageParam; +export interface ChatCompletionMessageToolCall { /** - * The role of the messages author. One of `system`, `user`, `assistant`, or - * `function`. + * The ID of the tool call. */ - role: 'system' | 'user' | 'assistant' | 'function'; + id: string; /** - * The name and arguments of a function that should be called, as generated by the - * model. + * The function that the model called. */ - function_call?: ChatCompletionMessageParam.FunctionCall; + function: ChatCompletionMessageToolCall.Function; /** - * The name of the author of this message. `name` is required if role is - * `function`, and it should be the name of the function whose response is in the - * `content`. May contain a-z, A-Z, 0-9, and underscores, with a maximum length of - * 64 characters. + * The type of the tool. Currently, only `function` is supported. */ - name?: string; + type: 'function'; } -export namespace ChatCompletionMessageParam { +export namespace ChatCompletionMessageToolCall { /** - * The name and arguments of a function that should be called, as generated by the - * model. + * The function that the model called. */ - export interface FunctionCall { + export interface Function { /** * The arguments to call the function with, as generated by the model in JSON * format. Note that the model does not always generate valid JSON, and may @@ -285,9 +439,122 @@ export namespace ChatCompletionMessageParam { } /** - * The role of the author of this message. + * Specifies a tool the model should use. Use to force the model to call a specific + * function. + */ +export interface ChatCompletionNamedToolChoice { + function?: ChatCompletionNamedToolChoice.Function; + + /** + * The type of the tool. Currently, only `function` is supported. + */ + type?: 'function'; +} + +export namespace ChatCompletionNamedToolChoice { + export interface Function { + /** + * The name of the function to call. + */ + name: string; + } +} + +/** + * The role of the author of a message */ -export type ChatCompletionRole = 'system' | 'user' | 'assistant' | 'function'; +export type ChatCompletionRole = 'system' | 'user' | 'assistant' | 'tool' | 'function'; + +export interface ChatCompletionSystemMessageParam { + /** + * The contents of the system message. + */ + content: string | null; + + /** + * The role of the messages author, in this case `system`. + */ + role: 'system'; +} + +export interface ChatCompletionTool { + function: ChatCompletionTool.Function; + + /** + * The type of the tool. Currently, only `function` is supported. + */ + type: 'function'; +} + +export namespace ChatCompletionTool { + export interface Function { + /** + * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain + * underscores and dashes, with a maximum length of 64. + */ + name: string; + + /** + * The parameters the functions accepts, described as a JSON Schema object. See the + * [guide](https://platform.openai.com/docs/guides/gpt/function-calling) for + * examples, and the + * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for + * documentation about the format. + * + * To describe a function that accepts no parameters, provide the value + * `{"type": "object", "properties": {}}`. + */ + parameters: Record; + + /** + * A description of what the function does, used by the model to choose when and + * how to call the function. + */ + description?: string; + } +} + +/** + * Controls which (if any) function is called by the model. `none` means the model + * will not call a function and instead generates a message. `auto` means the model + * can pick between generating a message or calling a function. Specifying a + * particular function via + * `{"type: "function", "function": {"name": "my_function"}}` forces the model to + * call that function. + * + * `none` is the default when no functions are present. `auto` is the default if + * functions are present. + */ +export type ChatCompletionToolChoiceOption = 'none' | 'auto' | ChatCompletionNamedToolChoice; + +export interface ChatCompletionToolMessageParam { + /** + * The contents of the tool message. + */ + content: string | null; + + /** + * The role of the messages author, in this case `tool`. + */ + role: 'tool'; + + /** + * Tool call that this message is responding to. + */ + tool_call_id: string; +} + +export interface ChatCompletionUserMessageParam { + /** + * The contents of the user message. + */ + content: string | Array | null; + + /** + * The role of the messages author, in this case `user`. + */ + role: 'user'; +} /** * @deprecated ChatCompletionMessageParam should be used instead @@ -334,16 +601,22 @@ export interface ChatCompletionCreateParamsBase { frequency_penalty?: number | null; /** - * Controls how the model calls functions. "none" means the model will not call a - * function and instead generates a message. "auto" means the model can pick - * between generating a message or calling a function. Specifying a particular - * function via `{"name": "my_function"}` forces the model to call that function. - * "none" is the default when no functions are present. "auto" is the default if + * Deprecated in favor of `tool_choice`. + * + * Controls which (if any) function is called by the model. `none` means the model + * will not call a function and instead generates a message. `auto` means the model + * can pick between generating a message or calling a function. Specifying a + * particular function via `{"name": "my_function"}` forces the model to call that + * function. + * + * `none` is the default when no functions are present. `auto`` is the default if * functions are present. */ - function_call?: 'none' | 'auto' | ChatCompletionCreateParams.FunctionCallOption; + function_call?: 'none' | 'auto' | ChatCompletionFunctionCallOption; /** + * Deprecated in favor of `tools`. + * * A list of functions the model may generate JSON inputs for. */ functions?: Array; @@ -351,7 +624,7 @@ export interface ChatCompletionCreateParamsBase { /** * Modify the likelihood of specified tokens appearing in the completion. * - * Accepts a json object that maps tokens (specified by their token ID in the + * Accepts a JSON object that maps tokens (specified by their token ID in the * tokenizer) to an associated bias value from -100 to 100. Mathematically, the * bias is added to the logits generated by the model prior to sampling. The exact * effect will vary per model, but values between -1 and 1 should decrease or @@ -384,6 +657,21 @@ export interface ChatCompletionCreateParamsBase { */ presence_penalty?: number | null; + /** + * An object specifying the format that the model must output. Used to enable JSON + * mode. + */ + response_format?: ChatCompletionCreateParams.ResponseFormat; + + /** + * This feature is in Beta. If specified, our system will make a best effort to + * sample deterministically, such that repeated requests with the same `seed` and + * parameters should return the same result. Determinism is not guaranteed, and you + * should refer to the `system_fingerprint` response parameter to monitor changes + * in the backend. + */ + seed?: number | null; + /** * Up to 4 sequences where the API will stop generating further tokens. */ @@ -408,6 +696,26 @@ export interface ChatCompletionCreateParamsBase { */ temperature?: number | null; + /** + * Controls which (if any) function is called by the model. `none` means the model + * will not call a function and instead generates a message. `auto` means the model + * can pick between generating a message or calling a function. Specifying a + * particular function via + * `{"type: "function", "function": {"name": "my_function"}}` forces the model to + * call that function. + * + * `none` is the default when no functions are present. `auto` is the default if + * functions are present. + */ + tool_choice?: ChatCompletionToolChoiceOption; + + /** + * A list of tools the model may call. Currently, only functions are supported as a + * tool. Use this to provide a list of functions the model may generate JSON inputs + * for. + */ + tools?: Array; + /** * An alternative to sampling with temperature, called nucleus sampling, where the * model considers the results of the tokens with top_p probability mass. So 0.1 @@ -426,13 +734,6 @@ export interface ChatCompletionCreateParamsBase { } export namespace ChatCompletionCreateParams { - export interface FunctionCallOption { - /** - * The name of the function to call. - */ - name: string; - } - export interface Function { /** * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain @@ -459,6 +760,27 @@ export namespace ChatCompletionCreateParams { description?: string; } + /** + * An object specifying the format that the model must output. Used to enable JSON + * mode. + */ + export interface ResponseFormat { + /** + * Setting to `json_object` enables JSON mode. This guarantees that the message the + * model generates is valid JSON. + * + * Note that your system prompt must still instruct the model to produce JSON, and + * to help ensure you don't forget, the API will throw an error if the string + * `JSON` does not appear in your system message. Also note that the message + * content may be partial (i.e. cut off) if `finish_reason="length"`, which + * indicates the generation exceeded `max_tokens` or the conversation exceeded the + * max context length. + * + * Must be one of `text` or `json_object`. + */ + type?: 'text' | 'json_object'; + } + export type ChatCompletionCreateParamsNonStreaming = ChatCompletionsAPI.ChatCompletionCreateParamsNonStreaming; export type ChatCompletionCreateParamsStreaming = ChatCompletionsAPI.ChatCompletionCreateParamsStreaming; @@ -505,10 +827,23 @@ export type CompletionCreateParamsStreaming = ChatCompletionCreateParamsStreamin export namespace Completions { export import ChatCompletion = ChatCompletionsAPI.ChatCompletion; + export import ChatCompletionAssistantMessageParam = ChatCompletionsAPI.ChatCompletionAssistantMessageParam; export import ChatCompletionChunk = ChatCompletionsAPI.ChatCompletionChunk; + export import ChatCompletionContentPart = ChatCompletionsAPI.ChatCompletionContentPart; + export import ChatCompletionContentPartImage = ChatCompletionsAPI.ChatCompletionContentPartImage; + export import ChatCompletionContentPartText = ChatCompletionsAPI.ChatCompletionContentPartText; + export import ChatCompletionFunctionCallOption = ChatCompletionsAPI.ChatCompletionFunctionCallOption; + export import ChatCompletionFunctionMessageParam = ChatCompletionsAPI.ChatCompletionFunctionMessageParam; export import ChatCompletionMessage = ChatCompletionsAPI.ChatCompletionMessage; export import ChatCompletionMessageParam = ChatCompletionsAPI.ChatCompletionMessageParam; + export import ChatCompletionMessageToolCall = ChatCompletionsAPI.ChatCompletionMessageToolCall; + export import ChatCompletionNamedToolChoice = ChatCompletionsAPI.ChatCompletionNamedToolChoice; export import ChatCompletionRole = ChatCompletionsAPI.ChatCompletionRole; + export import ChatCompletionSystemMessageParam = ChatCompletionsAPI.ChatCompletionSystemMessageParam; + export import ChatCompletionTool = ChatCompletionsAPI.ChatCompletionTool; + export import ChatCompletionToolChoiceOption = ChatCompletionsAPI.ChatCompletionToolChoiceOption; + export import ChatCompletionToolMessageParam = ChatCompletionsAPI.ChatCompletionToolMessageParam; + export import ChatCompletionUserMessageParam = ChatCompletionsAPI.ChatCompletionUserMessageParam; /** * @deprecated ChatCompletionMessageParam should be used instead */ diff --git a/src/resources/chat/index.ts b/src/resources/chat/index.ts index 32dea91fe..ea9fe29bd 100644 --- a/src/resources/chat/index.ts +++ b/src/resources/chat/index.ts @@ -3,10 +3,23 @@ export { Chat } from './chat'; export { ChatCompletion, + ChatCompletionAssistantMessageParam, ChatCompletionChunk, + ChatCompletionContentPart, + ChatCompletionContentPartImage, + ChatCompletionContentPartText, + ChatCompletionFunctionCallOption, + ChatCompletionFunctionMessageParam, ChatCompletionMessage, ChatCompletionMessageParam, + ChatCompletionMessageToolCall, + ChatCompletionNamedToolChoice, ChatCompletionRole, + ChatCompletionSystemMessageParam, + ChatCompletionTool, + ChatCompletionToolChoiceOption, + ChatCompletionToolMessageParam, + ChatCompletionUserMessageParam, CreateChatCompletionRequestMessage, ChatCompletionCreateParams, CompletionCreateParams, diff --git a/src/resources/completions.ts b/src/resources/completions.ts index 9ec1469dd..c314e7cf8 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -57,7 +57,15 @@ export interface Completion { /** * The object type, which is always "text_completion" */ - object: string; + object: 'text_completion'; + + /** + * This fingerprint represents the backend configuration that the model runs with. + * + * Can be used in conjunction with the `seed` request parameter to understand when + * backend changes have been made that might impact determinism. + */ + system_fingerprint?: string; /** * Usage statistics for the completion request. @@ -176,7 +184,7 @@ export interface CompletionCreateParamsBase { /** * Modify the likelihood of specified tokens appearing in the completion. * - * Accepts a json object that maps tokens (specified by their token ID in the GPT + * Accepts a JSON object that maps tokens (specified by their token ID in the GPT * tokenizer) to an associated bias value from -100 to 100. You can use this * [tokenizer tool](/tokenizer?view=bpe) (which works for both GPT-2 and GPT-3) to * convert text to token IDs. Mathematically, the bias is added to the logits @@ -228,6 +236,16 @@ export interface CompletionCreateParamsBase { */ presence_penalty?: number | null; + /** + * If specified, our system will make a best effort to sample deterministically, + * such that repeated requests with the same `seed` and parameters should return + * the same result. + * + * Determinism is not guaranteed, and you should refer to the `system_fingerprint` + * response parameter to monitor changes in the backend. + */ + seed?: number | null; + /** * Up to 4 sequences where the API will stop generating further tokens. The * returned text will not contain the stop sequence. diff --git a/src/resources/edits.ts b/src/resources/edits.ts index 300f7a7aa..a6512a1e9 100644 --- a/src/resources/edits.ts +++ b/src/resources/edits.ts @@ -32,7 +32,7 @@ export interface Edit { /** * The object type, which is always `edit`. */ - object: string; + object: 'edit'; /** * Usage statistics for the completion request. diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index 2c3302c99..219a05b1f 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -30,7 +30,7 @@ export interface CreateEmbeddingResponse { /** * The object type, which is always "embedding". */ - object: string; + object: 'embedding'; /** * The usage information for the request. @@ -74,7 +74,7 @@ export interface Embedding { /** * The object type, which is always "embedding". */ - object: string; + object: 'embedding'; } export interface EmbeddingCreateParams { diff --git a/src/resources/files.ts b/src/resources/files.ts index bd684179a..52eb39b7c 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -2,6 +2,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; +import { isRequestOptions } from 'openai/core'; import { sleep } from 'openai/core'; import { APIConnectionTimeoutError } from 'openai/error'; import * as FilesAPI from 'openai/resources/files'; @@ -10,10 +11,16 @@ import { Page } from 'openai/pagination'; export class Files extends APIResource { /** - * Upload a file that can be used across various endpoints/features. Currently, the - * size of all the files uploaded by one organization can be up to 1 GB. Please - * [contact us](https://help.openai.com/) if you need to increase the storage - * limit. + * Upload a file that can be used across various endpoints/features. The size of + * all the files uploaded by one organization can be up to 100 GB. + * + * The size of individual files for can be a maximum of 512MB. See the + * [Assistants Tools guide](https://platform.openai.com/docs/assistants/tools) to + * learn more about the types of files supported. The Fine-tuning API only supports + * `.jsonl` files. + * + * Please [contact us](https://help.openai.com/) if you need to increase these + * storage limits. */ create(body: FileCreateParams, options?: Core.RequestOptions): Core.APIPromise { return this.post('/files', multipartFormRequestOptions({ body, ...options })); @@ -29,8 +36,16 @@ export class Files extends APIResource { /** * Returns a list of files that belong to the user's organization. */ - list(options?: Core.RequestOptions): Core.PagePromise { - return this.getAPIList('/files', FileObjectsPage, options); + list(query?: FileListParams, options?: Core.RequestOptions): Core.PagePromise; + list(options?: Core.RequestOptions): Core.PagePromise; + list( + query: FileListParams | Core.RequestOptions = {}, + options?: Core.RequestOptions, + ): Core.PagePromise { + if (isRequestOptions(query)) { + return this.list({}, query); + } + return this.getAPIList('/files', FileObjectsPage, { query, ...options }); } /** @@ -89,7 +104,7 @@ export interface FileDeleted { deleted: boolean; - object: string; + object: 'file'; } /** @@ -97,53 +112,52 @@ export interface FileDeleted { */ export interface FileObject { /** - * The file identifier, which can be referenced in the API endpoints. + * The File identifier, which can be referenced in the API endpoints. */ id: string; /** - * The size of the file in bytes. + * The size of the file, in bytes. */ bytes: number; /** - * The Unix timestamp (in seconds) for when the file was created. + * The Unix timestamp (in seconds) for when the File was created. */ created_at: number; /** - * The name of the file. + * The name of the File. */ filename: string; /** - * The object type, which is always "file". + * The object type, which is always `file`. */ - object: string; + object: 'file'; /** - * The intended purpose of the file. Currently, only "fine-tune" is supported. + * The intended purpose of the File. Supported values are `fine-tune`, + * `fine-tune-results`, `assistants`, and `assistants_output`. */ - purpose: string; + purpose: 'fine-tune' | 'fine-tune-results' | 'assistants' | 'assistants_output'; /** - * The current status of the file, which can be either `uploaded`, `processed`, - * `pending`, `error`, `deleting` or `deleted`. + * Deprecated. The current status of the File, which can be either `uploaded`, + * `processed`, or `error`. */ - status?: string; + status: 'uploaded' | 'processed' | 'error'; /** - * Additional details about the status of the file. If the file is in the `error` - * state, this will include a message describing the error. + * Deprecated. For details on why a fine-tuning training file failed validation, + * see the `error` field on `fine_tuning.job`. */ - status_details?: string | null; + status_details?: string; } export interface FileCreateParams { /** - * The file object (not file name) to be uploaded. - * - * If the `purpose` is set to "fine-tune", the file will be used for fine-tuning. + * The File object (not file name) to be uploaded. */ file: Uploadable; @@ -151,11 +165,20 @@ export interface FileCreateParams { * The intended purpose of the uploaded file. * * Use "fine-tune" for - * [fine-tuning](https://platform.openai.com/docs/api-reference/fine-tuning). This - * allows us to validate the format of the uploaded file is correct for - * fine-tuning. + * [Fine-tuning](https://platform.openai.com/docs/api-reference/fine-tuning) and + * "assistants" for + * [Assistants](https://platform.openai.com/docs/api-reference/assistants) and + * [Messages](https://platform.openai.com/docs/api-reference/messages). This allows + * us to validate the format of the uploaded file is correct for fine-tuning. + */ + purpose: 'fine-tune' | 'assistants'; +} + +export interface FileListParams { + /** + * Only return files with the given purpose. */ - purpose: string; + purpose?: string; } export namespace Files { @@ -164,4 +187,5 @@ export namespace Files { export import FileObject = FilesAPI.FileObject; export import FileObjectsPage = FilesAPI.FileObjectsPage; export import FileCreateParams = FilesAPI.FileCreateParams; + export import FileListParams = FilesAPI.FileListParams; } diff --git a/src/resources/fine-tunes.ts b/src/resources/fine-tunes.ts index 99f90d17f..59551452f 100644 --- a/src/resources/fine-tunes.ts +++ b/src/resources/fine-tunes.ts @@ -116,7 +116,7 @@ export interface FineTune { /** * The object type, which is always "fine-tune". */ - object: string; + object: 'fine-tune'; /** * The organization that owns the fine-tuning job. @@ -212,13 +212,13 @@ export interface FineTuneEvent { message: string; - object: string; + object: 'fine-tune-event'; } export interface FineTuneEventsListResponse { data: Array; - object: string; + object: 'list'; } export interface FineTuneCreateParams { diff --git a/src/resources/fine-tuning/jobs.ts b/src/resources/fine-tuning/jobs.ts index d616ce452..ad5ef3e0b 100644 --- a/src/resources/fine-tuning/jobs.ts +++ b/src/resources/fine-tuning/jobs.ts @@ -132,7 +132,7 @@ export interface FineTuningJob { /** * The object type, which is always "fine_tuning.job". */ - object: string; + object: 'fine_tuning.job'; /** * The organization that owns the fine-tuning job. @@ -150,7 +150,7 @@ export interface FineTuningJob { * The current status of the fine-tuning job, which can be either * `validating_files`, `queued`, `running`, `succeeded`, `failed`, or `cancelled`. */ - status: string; + status: 'validating_files' | 'queued' | 'running' | 'succeeded' | 'failed' | 'cancelled'; /** * The total number of billable tokens processed by this fine-tuning job. The value @@ -223,7 +223,7 @@ export interface FineTuningJobEvent { message: string; - object: string; + object: 'fine_tuning.job.event'; } export interface JobCreateParams { @@ -283,6 +283,18 @@ export namespace JobCreateParams { * The hyperparameters used for the fine-tuning job. */ export interface Hyperparameters { + /** + * Number of examples in each batch. A larger batch size means that model + * parameters are updated less frequently, but with lower variance. + */ + batch_size?: 'auto' | number; + + /** + * Scaling factor for the learning rate. A smaller learning rate may be useful to + * avoid overfitting. + */ + learning_rate_multiplier?: 'auto' | number; + /** * The number of epochs to train the model for. An epoch refers to one full cycle * through the training dataset. diff --git a/src/resources/images.ts b/src/resources/images.ts index 019371b98..36744cb38 100644 --- a/src/resources/images.ts +++ b/src/resources/images.ts @@ -41,6 +41,12 @@ export interface Image { */ b64_json?: string; + /** + * The prompt that was used to generate the image, if there was any revision to the + * prompt. + */ + revised_prompt?: string; + /** * The URL of the generated image, if `response_format` is `url` (default). */ @@ -61,7 +67,14 @@ export interface ImageCreateVariationParams { image: Uploadable; /** - * The number of images to generate. Must be between 1 and 10. + * The model to use for image generation. Only `dall-e-2` is supported at this + * time. + */ + model?: (string & {}) | 'dall-e-2' | null; + + /** + * The number of images to generate. Must be between 1 and 10. For `dall-e-3`, only + * `n=1` is supported. */ n?: number | null; @@ -105,6 +118,12 @@ export interface ImageEditParams { */ mask?: Uploadable; + /** + * The model to use for image generation. Only `dall-e-2` is supported at this + * time. + */ + model?: (string & {}) | 'dall-e-2' | null; + /** * The number of images to generate. Must be between 1 and 10. */ @@ -133,15 +152,28 @@ export interface ImageEditParams { export interface ImageGenerateParams { /** * A text description of the desired image(s). The maximum length is 1000 - * characters. + * characters for `dall-e-2` and 4000 characters for `dall-e-3`. */ prompt: string; /** - * The number of images to generate. Must be between 1 and 10. + * The model to use for image generation. + */ + model?: (string & {}) | 'dall-e-2' | 'dall-e-3' | null; + + /** + * The number of images to generate. Must be between 1 and 10. For `dall-e-3`, only + * `n=1` is supported. */ n?: number | null; + /** + * The quality of the image that will be generated. `hd` creates images with finer + * details and greater consistency across the image. This param is only supported + * for `dall-e-3`. + */ + quality?: 'standard' | 'hd'; + /** * The format in which the generated images are returned. Must be one of `url` or * `b64_json`. @@ -150,9 +182,18 @@ export interface ImageGenerateParams { /** * The size of the generated images. Must be one of `256x256`, `512x512`, or - * `1024x1024`. + * `1024x1024` for `dall-e-2`. Must be one of `1024x1024`, `1792x1024`, or + * `1024x1792` for `dall-e-3` models. */ - size?: '256x256' | '512x512' | '1024x1024' | null; + size?: '256x256' | '512x512' | '1024x1024' | '1792x1024' | '1024x1792' | null; + + /** + * The style of the generated images. Must be one of `vivid` or `natural`. Vivid + * causes the model to lean towards generating hyper-real and dramatic images. + * Natural causes the model to produce more natural, less hyper-real looking + * images. This param is only supported for `dall-e-3`. + */ + style?: 'vivid' | 'natural' | null; /** * A unique identifier representing your end-user, which can help OpenAI to monitor diff --git a/src/resources/index.ts b/src/resources/index.ts index 3f2d78020..67a4ed227 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -14,7 +14,15 @@ export { } from './completions'; export { CreateEmbeddingResponse, Embedding, EmbeddingCreateParams, Embeddings } from './embeddings'; export { Edit, EditCreateParams, Edits } from './edits'; -export { FileContent, FileDeleted, FileObject, FileCreateParams, FileObjectsPage, Files } from './files'; +export { + FileContent, + FileDeleted, + FileObject, + FileCreateParams, + FileListParams, + FileObjectsPage, + Files, +} from './files'; export { FineTune, FineTuneEvent, diff --git a/src/resources/models.ts b/src/resources/models.ts index e1906db5d..4954ab4dd 100644 --- a/src/resources/models.ts +++ b/src/resources/models.ts @@ -53,7 +53,7 @@ export interface Model { /** * The object type, which is always "model". */ - object: string; + object: 'model'; /** * The organization that owns the model. diff --git a/tests/api-resources/audio/speech.test.ts b/tests/api-resources/audio/speech.test.ts new file mode 100644 index 000000000..0d7ecd887 --- /dev/null +++ b/tests/api-resources/audio/speech.test.ts @@ -0,0 +1,20 @@ +// File generated from our OpenAPI spec by Stainless. + +import OpenAI from 'openai'; + +const openai = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('resource speech', () => { + test('create: required and optional params', async () => { + const response = await openai.audio.speech.create({ + input: 'string', + model: 'string', + voice: 'alloy', + response_format: 'mp3', + speed: 0.25, + }); + }); +}); diff --git a/tests/api-resources/beta/assistants/assistants.test.ts b/tests/api-resources/beta/assistants/assistants.test.ts new file mode 100644 index 000000000..60ca0a6e2 --- /dev/null +++ b/tests/api-resources/beta/assistants/assistants.test.ts @@ -0,0 +1,109 @@ +// File generated from our OpenAPI spec by Stainless. + +import OpenAI from 'openai'; +import { Response } from 'node-fetch'; + +const openai = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('resource assistants', () => { + test('create: only required params', async () => { + const responsePromise = openai.beta.assistants.create({ model: 'string' }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('create: required and optional params', async () => { + const response = await openai.beta.assistants.create({ + model: 'string', + description: 'string', + file_ids: ['string', 'string', 'string'], + instructions: 'string', + metadata: {}, + name: 'string', + tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], + }); + }); + + test('retrieve', async () => { + const responsePromise = openai.beta.assistants.retrieve('string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('retrieve: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.assistants.retrieve('string', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('update', async () => { + const responsePromise = openai.beta.assistants.update('string', {}); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('list', async () => { + const responsePromise = openai.beta.assistants.list(); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('list: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect(openai.beta.assistants.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( + OpenAI.NotFoundError, + ); + }); + + test('list: request options and params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.assistants.list( + { after: 'string', before: 'string', limit: 0, order: 'asc' }, + { path: '/_stainless_unknown_path' }, + ), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('del', async () => { + const responsePromise = openai.beta.assistants.del('string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('del: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect(openai.beta.assistants.del('string', { path: '/_stainless_unknown_path' })).rejects.toThrow( + OpenAI.NotFoundError, + ); + }); +}); diff --git a/tests/api-resources/beta/assistants/files.test.ts b/tests/api-resources/beta/assistants/files.test.ts new file mode 100644 index 000000000..b06cac855 --- /dev/null +++ b/tests/api-resources/beta/assistants/files.test.ts @@ -0,0 +1,95 @@ +// File generated from our OpenAPI spec by Stainless. + +import OpenAI from 'openai'; +import { Response } from 'node-fetch'; + +const openai = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('resource files', () => { + test('create: only required params', async () => { + const responsePromise = openai.beta.assistants.files.create('file-AF1WoRqd3aJAHsqc9NY7iL8F', { + file_id: 'string', + }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('create: required and optional params', async () => { + const response = await openai.beta.assistants.files.create('file-AF1WoRqd3aJAHsqc9NY7iL8F', { + file_id: 'string', + }); + }); + + test('retrieve', async () => { + const responsePromise = openai.beta.assistants.files.retrieve('string', 'string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('retrieve: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.assistants.files.retrieve('string', 'string', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('list', async () => { + const responsePromise = openai.beta.assistants.files.list('string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('list: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.assistants.files.list('string', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('list: request options and params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.assistants.files.list( + 'string', + { after: 'string', before: 'string', limit: 0, order: 'asc' }, + { path: '/_stainless_unknown_path' }, + ), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('del', async () => { + const responsePromise = openai.beta.assistants.files.del('string', 'string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('del: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.assistants.files.del('string', 'string', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); +}); diff --git a/tests/api-resources/beta/chat/completions.test.ts b/tests/api-resources/beta/chat/completions.test.ts new file mode 100644 index 000000000..a8d0b400e --- /dev/null +++ b/tests/api-resources/beta/chat/completions.test.ts @@ -0,0 +1,10 @@ +// File generated from our OpenAPI spec by Stainless. + +import OpenAI from 'openai'; + +const openai = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('resource completions', () => {}); diff --git a/tests/api-resources/beta/threads/messages/files.test.ts b/tests/api-resources/beta/threads/messages/files.test.ts new file mode 100644 index 000000000..501ed8311 --- /dev/null +++ b/tests/api-resources/beta/threads/messages/files.test.ts @@ -0,0 +1,68 @@ +// File generated from our OpenAPI spec by Stainless. + +import OpenAI from 'openai'; +import { Response } from 'node-fetch'; + +const openai = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('resource files', () => { + test('retrieve', async () => { + const responsePromise = openai.beta.threads.messages.files.retrieve( + 'thread_AF1WoRqd3aJAHsqc9NY7iL8F', + 'msg_AF1WoRqd3aJAHsqc9NY7iL8F', + 'file-AF1WoRqd3aJAHsqc9NY7iL8F', + ); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('retrieve: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.threads.messages.files.retrieve( + 'thread_AF1WoRqd3aJAHsqc9NY7iL8F', + 'msg_AF1WoRqd3aJAHsqc9NY7iL8F', + 'file-AF1WoRqd3aJAHsqc9NY7iL8F', + { path: '/_stainless_unknown_path' }, + ), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('list', async () => { + const responsePromise = openai.beta.threads.messages.files.list('string', 'string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('list: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.threads.messages.files.list('string', 'string', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('list: request options and params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.threads.messages.files.list( + 'string', + 'string', + { after: 'string', before: 'string', limit: 0, order: 'asc' }, + { path: '/_stainless_unknown_path' }, + ), + ).rejects.toThrow(OpenAI.NotFoundError); + }); +}); diff --git a/tests/api-resources/beta/threads/messages/messages.test.ts b/tests/api-resources/beta/threads/messages/messages.test.ts new file mode 100644 index 000000000..35538efb9 --- /dev/null +++ b/tests/api-resources/beta/threads/messages/messages.test.ts @@ -0,0 +1,89 @@ +// File generated from our OpenAPI spec by Stainless. + +import OpenAI from 'openai'; +import { Response } from 'node-fetch'; + +const openai = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('resource messages', () => { + test('create: only required params', async () => { + const responsePromise = openai.beta.threads.messages.create('string', { content: 'x', role: 'user' }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('create: required and optional params', async () => { + const response = await openai.beta.threads.messages.create('string', { + content: 'x', + role: 'user', + file_ids: ['string'], + metadata: {}, + }); + }); + + test('retrieve', async () => { + const responsePromise = openai.beta.threads.messages.retrieve('string', 'string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('retrieve: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.threads.messages.retrieve('string', 'string', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('update', async () => { + const responsePromise = openai.beta.threads.messages.update('string', 'string', {}); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('list', async () => { + const responsePromise = openai.beta.threads.messages.list('string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('list: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.threads.messages.list('string', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('list: request options and params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.threads.messages.list( + 'string', + { after: 'string', before: 'string', limit: 0, order: 'asc' }, + { path: '/_stainless_unknown_path' }, + ), + ).rejects.toThrow(OpenAI.NotFoundError); + }); +}); diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts new file mode 100644 index 000000000..0705ac528 --- /dev/null +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -0,0 +1,131 @@ +// File generated from our OpenAPI spec by Stainless. + +import OpenAI from 'openai'; +import { Response } from 'node-fetch'; + +const openai = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('resource runs', () => { + test('create: only required params', async () => { + const responsePromise = openai.beta.threads.runs.create('string', { assistant_id: 'string' }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('create: required and optional params', async () => { + const response = await openai.beta.threads.runs.create('string', { + assistant_id: 'string', + instructions: 'string', + metadata: {}, + model: 'string', + tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], + }); + }); + + test('retrieve', async () => { + const responsePromise = openai.beta.threads.runs.retrieve('string', 'string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('retrieve: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.threads.runs.retrieve('string', 'string', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('update', async () => { + const responsePromise = openai.beta.threads.runs.update('string', 'string', {}); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('list', async () => { + const responsePromise = openai.beta.threads.runs.list('string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('list: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.threads.runs.list('string', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('list: request options and params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.threads.runs.list( + 'string', + { after: 'string', before: 'string', limit: 0, order: 'asc' }, + { path: '/_stainless_unknown_path' }, + ), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('cancel', async () => { + const responsePromise = openai.beta.threads.runs.cancel('string', 'string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('cancel: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.threads.runs.cancel('string', 'string', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('submitToolOutputs: only required params', async () => { + const responsePromise = openai.beta.threads.runs.submitToolOutputs('string', 'string', { + tool_outputs: [{}, {}, {}], + }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('submitToolOutputs: required and optional params', async () => { + const response = await openai.beta.threads.runs.submitToolOutputs('string', 'string', { + tool_outputs: [ + { tool_call_id: 'string', output: 'string' }, + { tool_call_id: 'string', output: 'string' }, + { tool_call_id: 'string', output: 'string' }, + ], + }); + }); +}); diff --git a/tests/api-resources/beta/threads/runs/steps.test.ts b/tests/api-resources/beta/threads/runs/steps.test.ts new file mode 100644 index 000000000..76eec269a --- /dev/null +++ b/tests/api-resources/beta/threads/runs/steps.test.ts @@ -0,0 +1,61 @@ +// File generated from our OpenAPI spec by Stainless. + +import OpenAI from 'openai'; +import { Response } from 'node-fetch'; + +const openai = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('resource steps', () => { + test('retrieve', async () => { + const responsePromise = openai.beta.threads.runs.steps.retrieve('string', 'string', 'string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('retrieve: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.threads.runs.steps.retrieve('string', 'string', 'string', { + path: '/_stainless_unknown_path', + }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('list', async () => { + const responsePromise = openai.beta.threads.runs.steps.list('string', 'string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('list: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.threads.runs.steps.list('string', 'string', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('list: request options and params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.threads.runs.steps.list( + 'string', + 'string', + { after: 'string', before: 'string', limit: 0, order: 'asc' }, + { path: '/_stainless_unknown_path' }, + ), + ).rejects.toThrow(OpenAI.NotFoundError); + }); +}); diff --git a/tests/api-resources/beta/threads/threads.test.ts b/tests/api-resources/beta/threads/threads.test.ts new file mode 100644 index 000000000..4ca2247dd --- /dev/null +++ b/tests/api-resources/beta/threads/threads.test.ts @@ -0,0 +1,98 @@ +// File generated from our OpenAPI spec by Stainless. + +import OpenAI from 'openai'; +import { Response } from 'node-fetch'; + +const openai = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('resource threads', () => { + test('create', async () => { + const responsePromise = openai.beta.threads.create({}); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('retrieve', async () => { + const responsePromise = openai.beta.threads.retrieve('string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('retrieve: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.threads.retrieve('string', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('update', async () => { + const responsePromise = openai.beta.threads.update('string', {}); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('del', async () => { + const responsePromise = openai.beta.threads.del('string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('del: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect(openai.beta.threads.del('string', { path: '/_stainless_unknown_path' })).rejects.toThrow( + OpenAI.NotFoundError, + ); + }); + + test('createAndRun: only required params', async () => { + const responsePromise = openai.beta.threads.createAndRun({ assistant_id: 'string' }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('createAndRun: required and optional params', async () => { + const response = await openai.beta.threads.createAndRun({ + assistant_id: 'string', + instructions: 'string', + metadata: {}, + model: 'string', + thread: { + messages: [ + { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, + { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, + { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, + ], + metadata: {}, + }, + tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], + }); + }); +}); diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 4a5616cae..b4eb00dfd 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -25,14 +25,7 @@ describe('resource completions', () => { test('create: required and optional params', async () => { const response = await openai.chat.completions.create({ - messages: [ - { - content: 'string', - function_call: { arguments: 'string', name: 'string' }, - name: 'string', - role: 'system', - }, - ], + messages: [{ content: 'string', role: 'system' }], model: 'gpt-3.5-turbo', frequency_penalty: -2, function_call: 'none', @@ -41,9 +34,17 @@ describe('resource completions', () => { max_tokens: 0, n: 1, presence_penalty: -2, + response_format: { type: 'json_object' }, + seed: -9223372036854776000, stop: 'string', stream: false, temperature: 1, + tool_choice: 'none', + tools: [ + { type: 'function', function: { description: 'string', name: 'string', parameters: { foo: 'bar' } } }, + { type: 'function', function: { description: 'string', name: 'string', parameters: { foo: 'bar' } } }, + { type: 'function', function: { description: 'string', name: 'string', parameters: { foo: 'bar' } } }, + ], top_p: 1, user: 'user-1234', }); diff --git a/tests/api-resources/completions.test.ts b/tests/api-resources/completions.test.ts index b3f083727..85fc68498 100644 --- a/tests/api-resources/completions.test.ts +++ b/tests/api-resources/completions.test.ts @@ -32,6 +32,7 @@ describe('resource completions', () => { max_tokens: 16, n: 1, presence_penalty: -2, + seed: -9223372036854776000, stop: '\n', stream: false, suffix: 'test.', diff --git a/tests/api-resources/files.test.ts b/tests/api-resources/files.test.ts index dc8a6da00..a84a2aba7 100644 --- a/tests/api-resources/files.test.ts +++ b/tests/api-resources/files.test.ts @@ -12,7 +12,7 @@ describe('resource files', () => { test('create: only required params', async () => { const responsePromise = openai.files.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), - purpose: 'string', + purpose: 'fine-tune', }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); @@ -26,7 +26,7 @@ describe('resource files', () => { test('create: required and optional params', async () => { const response = await openai.files.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), - purpose: 'string', + purpose: 'fine-tune', }); }); @@ -66,6 +66,13 @@ describe('resource files', () => { ); }); + test('list: request options and params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.files.list({ purpose: 'string' }, { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + test('del', async () => { const responsePromise = openai.files.del('string'); const rawResponse = await responsePromise.asResponse(); diff --git a/tests/api-resources/fine-tuning/jobs.test.ts b/tests/api-resources/fine-tuning/jobs.test.ts index 9bcb4b085..22f457303 100644 --- a/tests/api-resources/fine-tuning/jobs.test.ts +++ b/tests/api-resources/fine-tuning/jobs.test.ts @@ -27,7 +27,7 @@ describe('resource jobs', () => { const response = await openai.fineTuning.jobs.create({ model: 'gpt-3.5-turbo', training_file: 'file-abc123', - hyperparameters: { n_epochs: 'auto' }, + hyperparameters: { batch_size: 'auto', learning_rate_multiplier: 'auto', n_epochs: 'auto' }, suffix: 'x', validation_file: 'file-abc123', }); diff --git a/tests/api-resources/images.test.ts b/tests/api-resources/images.test.ts index c9291b258..418a55eb0 100644 --- a/tests/api-resources/images.test.ts +++ b/tests/api-resources/images.test.ts @@ -25,6 +25,7 @@ describe('resource images', () => { test('createVariation: required and optional params', async () => { const response = await openai.images.createVariation({ image: await toFile(Buffer.from('# my file contents'), 'README.md'), + model: 'dall-e-2', n: 1, response_format: 'url', size: '1024x1024', @@ -51,6 +52,7 @@ describe('resource images', () => { image: await toFile(Buffer.from('# my file contents'), 'README.md'), prompt: 'A cute baby sea otter wearing a beret', mask: await toFile(Buffer.from('# my file contents'), 'README.md'), + model: 'dall-e-2', n: 1, response_format: 'url', size: '1024x1024', @@ -72,9 +74,12 @@ describe('resource images', () => { test('generate: required and optional params', async () => { const response = await openai.images.generate({ prompt: 'A cute baby sea otter', + model: 'dall-e-3', n: 1, + quality: 'standard', response_format: 'url', size: '1024x1024', + style: 'vivid', user: 'user-1234', }); }); From d4d46873ce3bf9193c8328cc019057fbb124f783 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 6 Nov 2023 19:24:52 +0000 Subject: [PATCH 158/725] release: 4.16.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 19 +++++++++++++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 22 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 64b951803..31b940b8e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.15.4" + ".": "4.16.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9819c04b6..93b586e31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## 4.16.0 (2023-11-06) + +Full Changelog: [v4.15.4...v4.16.0](https://github.com/openai/openai-node/compare/v4.15.4...v4.16.0) + +### Features + +* **api:** releases from DevDay; assistants, multimodality, tools, dall-e-3, tts, and more ([#433](https://github.com/openai/openai-node/issues/433)) ([fb92f5e](https://github.com/openai/openai-node/commit/fb92f5e6e3b6e7969b3d91f4ccdaef87e5fea0a4)) + + +### Bug Fixes + +* improve deno readme ([#429](https://github.com/openai/openai-node/issues/429)) ([871ceac](https://github.com/openai/openai-node/commit/871ceac2b37f53f7fc7c0163454115c709cd7ced)) + + +### Documentation + +* deno version ([#432](https://github.com/openai/openai-node/issues/432)) ([74bf336](https://github.com/openai/openai-node/commit/74bf3364379fd23252fde01401c44b2fa796cba4)) +* update deno link in more places ([#431](https://github.com/openai/openai-node/issues/431)) ([5da63d4](https://github.com/openai/openai-node/commit/5da63d4a9143c0ab493b742f7fde22b01a372844)) + ## 4.15.4 (2023-11-05) Full Changelog: [v4.15.3...v4.15.4](https://github.com/openai/openai-node/compare/v4.15.3...v4.15.4) diff --git a/package.json b/package.json index 2b4f9c0a6..9e1aa9f8a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.15.4", + "version": "4.16.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 1f90232ea..3832c72ab 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.15.4'; // x-release-please-version +export const VERSION = '4.16.0'; // x-release-please-version From 02619e46b1221f2f7da633aac3e7cc596d1c75a8 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 6 Nov 2023 20:37:50 +0000 Subject: [PATCH 159/725] docs(api): improve docstrings (#435) --- README.md | 2 +- build-deno | 2 +- src/resources/beta/assistants/assistants.ts | 54 ++++++------ src/resources/beta/assistants/files.ts | 18 ++-- src/resources/beta/threads/messages/files.ts | 10 +-- .../beta/threads/messages/messages.ts | 72 ++++++++-------- src/resources/beta/threads/runs/runs.ts | 82 +++++++++---------- src/resources/beta/threads/runs/steps.ts | 64 +++++++-------- src/resources/beta/threads/threads.ts | 58 ++++++------- src/resources/files.ts | 10 +-- 10 files changed, 186 insertions(+), 186 deletions(-) diff --git a/README.md b/README.md index 2cbf9ce86..813036a12 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@4.15.4/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@4.16.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index d7f6dc298..55e4d51bd 100755 --- a/build-deno +++ b/build-deno @@ -15,7 +15,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "$(echo 'https://deno.land/x/openai@4.15.4/mod.ts' | sed -E s/@\.+\\//@"$PACKAGE_VERSION"\\//)"; +import OpenAI from "$(echo 'https://deno.land/x/openai@4.16.0/mod.ts' | sed -E s/@\.+\\//@"$PACKAGE_VERSION"\\//)"; const client = new OpenAI(); \`\`\` diff --git a/src/resources/beta/assistants/assistants.ts b/src/resources/beta/assistants/assistants.ts index a9cfea61a..8a3d1c8b7 100644 --- a/src/resources/beta/assistants/assistants.ts +++ b/src/resources/beta/assistants/assistants.ts @@ -11,7 +11,7 @@ export class Assistants extends APIResource { files: FilesAPI.Files = new FilesAPI.Files(this.client); /** - * Create an Assistant with a model and instructions. + * Create an assistant with a model and instructions. */ create(body: AssistantCreateParams, options?: Core.RequestOptions): Core.APIPromise { return this.post('/assistants', { @@ -22,7 +22,7 @@ export class Assistants extends APIResource { } /** - * Retrieves an Assistant. + * Retrieves an assistant. */ retrieve(assistantId: string, options?: Core.RequestOptions): Core.APIPromise { return this.get(`/assistants/${assistantId}`, { @@ -32,7 +32,7 @@ export class Assistants extends APIResource { } /** - * Modifies an Assistant. + * Modifies an assistant. */ update( assistantId: string, @@ -47,7 +47,7 @@ export class Assistants extends APIResource { } /** - * Returns a list of Assistants. + * Returns a list of assistants. */ list( query?: AssistantListParams, @@ -69,7 +69,7 @@ export class Assistants extends APIResource { } /** - * Delete an Assistant. + * Delete an assistant. */ del(assistantId: string, options?: Core.RequestOptions): Core.APIPromise { return this.delete(`/assistants/${assistantId}`, { @@ -82,7 +82,7 @@ export class Assistants extends APIResource { export class AssistantsPage extends CursorPage {} /** - * Represents an `Assistant` that can call the model and use tools. + * Represents an `assistant` that can call the model and use tools. */ export interface Assistant { /** @@ -91,24 +91,24 @@ export interface Assistant { id: string; /** - * The Unix timestamp (in seconds) for when the Assistant was created. + * The Unix timestamp (in seconds) for when the assistant was created. */ created_at: number; /** - * The description of the Assistant. The maximum length is 512 characters. + * The description of the assistant. The maximum length is 512 characters. */ description: string | null; /** - * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs - * attached to this Assistant. There can be a maximum of 20 files attached to the - * Assistant. Files are ordered by their creation date in ascending order. + * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs + * attached to this assistant. There can be a maximum of 20 files attached to the + * assistant. Files are ordered by their creation date in ascending order. */ file_ids: Array; /** - * The system instructions that the Assistant uses. The maximum length is 32768 + * The system instructions that the assistant uses. The maximum length is 32768 * characters. */ instructions: string | null; @@ -131,7 +131,7 @@ export interface Assistant { model: string; /** - * The name of the Assistant. The maximum length is 256 characters. + * The name of the assistant. The maximum length is 256 characters. */ name: string | null; @@ -141,7 +141,7 @@ export interface Assistant { object: 'assistant'; /** - * A list of tool enabled on the Assistant. There can be a maximum of 128 tools per + * A list of tool enabled on the assistant. There can be a maximum of 128 tools per * assistant. Tools can be of types `code_interpreter`, `retrieval`, or `function`. */ tools: Array; @@ -225,19 +225,19 @@ export interface AssistantCreateParams { model: string; /** - * The description of the Assistant. The maximum length is 512 characters. + * The description of the assistant. The maximum length is 512 characters. */ description?: string | null; /** - * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs - * attached to this Assistant. There can be a maximum of 20 files attached to the - * Assistant. Files are ordered by their creation date in ascending order. + * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs + * attached to this assistant. There can be a maximum of 20 files attached to the + * assistant. Files are ordered by their creation date in ascending order. */ file_ids?: Array; /** - * The system instructions that the Assistant uses. The maximum length is 32768 + * The system instructions that the assistant uses. The maximum length is 32768 * characters. */ instructions?: string | null; @@ -251,12 +251,12 @@ export interface AssistantCreateParams { metadata?: unknown | null; /** - * The name of the Assistant. The maximum length is 256 characters. + * The name of the assistant. The maximum length is 256 characters. */ name?: string | null; /** - * A list of tool enabled on the Assistant. There can be a maximum of 128 tools per + * A list of tool enabled on the assistant. There can be a maximum of 128 tools per * assistant. Tools can be of types `code_interpreter`, `retrieval`, or `function`. */ tools?: Array< @@ -327,21 +327,21 @@ export namespace AssistantCreateParams { export interface AssistantUpdateParams { /** - * The description of the Assistant. The maximum length is 512 characters. + * The description of the assistant. The maximum length is 512 characters. */ description?: string | null; /** * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs - * attached to this Assistant. There can be a maximum of 20 files attached to the - * Assistant. Files are ordered by their creation date in ascending order. If a + * attached to this assistant. There can be a maximum of 20 files attached to the + * assistant. Files are ordered by their creation date in ascending order. If a * file was previosuly attached to the list but does not show up in the list, it * will be deleted from the assistant. */ file_ids?: Array; /** - * The system instructions that the Assistant uses. The maximum length is 32768 + * The system instructions that the assistant uses. The maximum length is 32768 * characters. */ instructions?: string | null; @@ -364,12 +364,12 @@ export interface AssistantUpdateParams { model?: string; /** - * The name of the Assistant. The maximum length is 256 characters. + * The name of the assistant. The maximum length is 256 characters. */ name?: string | null; /** - * A list of tool enabled on the Assistant. There can be a maximum of 128 tools per + * A list of tool enabled on the assistant. There can be a maximum of 128 tools per * assistant. Tools can be of types `code_interpreter`, `retrieval`, or `function`. */ tools?: Array< diff --git a/src/resources/beta/assistants/files.ts b/src/resources/beta/assistants/files.ts index d913146ea..7733cff9a 100644 --- a/src/resources/beta/assistants/files.ts +++ b/src/resources/beta/assistants/files.ts @@ -8,9 +8,9 @@ import { CursorPage, type CursorPageParams } from 'openai/pagination'; export class Files extends APIResource { /** - * Create an Assistant File by attaching a + * Create an assistant file by attaching a * [File](https://platform.openai.com/docs/api-reference/files) to an - * [Assistant](https://platform.openai.com/docs/api-reference/assistants). + * [assistant](https://platform.openai.com/docs/api-reference/assistants). */ create( assistantId: string, @@ -39,7 +39,7 @@ export class Files extends APIResource { } /** - * Returns a list of Assistant Files. + * Returns a list of assistant files. */ list( assistantId: string, @@ -66,7 +66,7 @@ export class Files extends APIResource { } /** - * Delete an Assistant File. + * Delete an assistant file. */ del( assistantId: string, @@ -84,7 +84,7 @@ export class AssistantFilesPage extends CursorPage {} /** * A list of [Files](https://platform.openai.com/docs/api-reference/files) attached - * to an `Assistant`. + * to an `assistant`. */ export interface AssistantFile { /** @@ -93,12 +93,12 @@ export interface AssistantFile { id: string; /** - * The Assistant ID that the File is attached to. + * The assistant ID that the file is attached to. */ assistant_id: string; /** - * The Unix timestamp (in seconds) for when the Assistant File was created. + * The Unix timestamp (in seconds) for when the assistant file was created. */ created_at: number; @@ -109,7 +109,7 @@ export interface AssistantFile { } /** - * Deletes the association between the Assistant and the File, but does not delete + * Deletes the association between the assistant and the file, but does not delete * the [File](https://platform.openai.com/docs/api-reference/files) object itself. */ export interface FileDeleteResponse { @@ -123,7 +123,7 @@ export interface FileDeleteResponse { export interface FileCreateParams { /** * A [File](https://platform.openai.com/docs/api-reference/files) ID (with - * `purpose="assistants"`) that the Assistant should use. Useful for tools like + * `purpose="assistants"`) that the assistant should use. Useful for tools like * `retrieval` and `code_interpreter` that can access files. */ file_id: string; diff --git a/src/resources/beta/threads/messages/files.ts b/src/resources/beta/threads/messages/files.ts index f55cd780c..4bbc06538 100644 --- a/src/resources/beta/threads/messages/files.ts +++ b/src/resources/beta/threads/messages/files.ts @@ -8,7 +8,7 @@ import { CursorPage, type CursorPageParams } from 'openai/pagination'; export class Files extends APIResource { /** - * Retrieves a Message File. + * Retrieves a message file. */ retrieve( threadId: string, @@ -23,7 +23,7 @@ export class Files extends APIResource { } /** - * Returns a list of Message Files. + * Returns a list of message files. */ list( threadId: string, @@ -56,7 +56,7 @@ export class Files extends APIResource { export class MessageFilesPage extends CursorPage {} /** - * A list of Files attached to a `Message`. + * A list of files attached to a `message`. */ export interface MessageFile { /** @@ -65,12 +65,12 @@ export interface MessageFile { id: string; /** - * The Unix timestamp (in seconds) for when the Message File was created. + * The Unix timestamp (in seconds) for when the message file was created. */ created_at: number; /** - * The ID of the [Message](https://platform.openai.com/docs/api-reference/messages) + * The ID of the [message](https://platform.openai.com/docs/api-reference/messages) * that the [File](https://platform.openai.com/docs/api-reference/files) is * attached to. */ diff --git a/src/resources/beta/threads/messages/messages.ts b/src/resources/beta/threads/messages/messages.ts index ec99a10f9..cf7bf35e5 100644 --- a/src/resources/beta/threads/messages/messages.ts +++ b/src/resources/beta/threads/messages/messages.ts @@ -11,7 +11,7 @@ export class Messages extends APIResource { files: FilesAPI.Files = new FilesAPI.Files(this.client); /** - * Create a Message. + * Create a message. */ create( threadId: string, @@ -26,7 +26,7 @@ export class Messages extends APIResource { } /** - * Retrieve a Message. + * Retrieve a message. */ retrieve( threadId: string, @@ -40,7 +40,7 @@ export class Messages extends APIResource { } /** - * Modifies a Message. + * Modifies a message. */ update( threadId: string, @@ -56,7 +56,7 @@ export class Messages extends APIResource { } /** - * Returns a list of Messages for a given Thread. + * Returns a list of messages for a given thread. */ list( threadId: string, @@ -84,13 +84,13 @@ export class ThreadMessagesPage extends CursorPage {} /** * References an image [File](https://platform.openai.com/docs/api-reference/files) - * in the content of a Message. + * in the content of a message. */ export interface MessageContentImageFile { image_file: MessageContentImageFile.ImageFile; /** - * Will always be `image_file`. + * Always `image_file`. */ type: 'image_file'; } @@ -99,20 +99,20 @@ export namespace MessageContentImageFile { export interface ImageFile { /** * The [File](https://platform.openai.com/docs/api-reference/files) ID of the image - * in the Message content. + * in the message content. */ file_id: string; } } /** - * The text content that is part of a Message. + * The text content that is part of a message. */ export interface MessageContentText { text: MessageContentText.Text; /** - * Will always be `text`. + * Always `text`. */ type: 'text'; } @@ -129,8 +129,8 @@ export namespace MessageContentText { export namespace Text { /** - * A citation within the Message that points to a specific quote from a specific - * File associated with the Assistant or the Message. Generated when the Assistant + * A citation within the message that points to a specific quote from a specific + * File associated with the assistant or the message. Generated when the assistant * uses the "retrieval" tool to search files. */ export interface FileCitation { @@ -141,12 +141,12 @@ export namespace MessageContentText { start_index: number; /** - * The text in the Message content that needs to be replaced. + * The text in the message content that needs to be replaced. */ text: string; /** - * Will always be `file_citation`. + * Always `file_citation`. */ type: 'file_citation'; } @@ -159,15 +159,15 @@ export namespace MessageContentText { file_id: string; /** - * The specific quote in the File. + * The specific quote in the file. */ quote: string; } } /** - * A URL for the File that's generated when the Assistant used the - * `code_interpreter` tool to generate a File. + * A URL for the file that's generated when the assistant used the + * `code_interpreter` tool to generate a file. */ export interface FilePath { end_index: number; @@ -177,12 +177,12 @@ export namespace MessageContentText { start_index: number; /** - * The text in the Message content that needs to be replaced. + * The text in the message content that needs to be replaced. */ text: string; /** - * Will always be `file_path`. + * Always `file_path`. */ type: 'file_path'; } @@ -190,7 +190,7 @@ export namespace MessageContentText { export namespace FilePath { export interface FilePath { /** - * The ID of the File that was generated. + * The ID of the file that was generated. */ file_id: string; } @@ -199,8 +199,8 @@ export namespace MessageContentText { } /** - * Represents a Message within a - * [Thread](https://platform.openai.com/docs/api-reference/threads). + * Represents a message within a + * [thread](https://platform.openai.com/docs/api-reference/threads). */ export interface ThreadMessage { /** @@ -210,25 +210,25 @@ export interface ThreadMessage { /** * If applicable, the ID of the - * [Assistant](https://platform.openai.com/docs/api-reference/assistants) that - * authored this Message. + * [assistant](https://platform.openai.com/docs/api-reference/assistants) that + * authored this message. */ assistant_id: string | null; /** - * The content of the Message in array of text and/or images. + * The content of the message in array of text and/or images. */ content: Array; /** - * The Unix timestamp (in seconds) for when the Message was created. + * The Unix timestamp (in seconds) for when the message was created. */ created_at: number; /** * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs that - * the Assistant should use. Useful for tools like retrieval and code_interpreter - * that can access files. A maximum of 10 files can be attached to a Message. + * the assistant should use. Useful for tools like retrieval and code_interpreter + * that can access files. A maximum of 10 files can be attached to a message. */ file_ids: Array; @@ -246,20 +246,20 @@ export interface ThreadMessage { object: 'thread.message'; /** - * The entity that produced the Message. One of `user` or `assistant`. + * The entity that produced the message. One of `user` or `assistant`. */ role: 'user' | 'assistant'; /** * If applicable, the ID of the - * [Run](https://platform.openai.com/docs/api-reference/runs) associated with the - * authoring of this Message. + * [run](https://platform.openai.com/docs/api-reference/runs) associated with the + * authoring of this message. */ run_id: string | null; /** - * The [Thread](https://platform.openai.com/docs/api-reference/threads) ID that - * this Message belongs to. + * The [thread](https://platform.openai.com/docs/api-reference/threads) ID that + * this message belongs to. */ thread_id: string; } @@ -274,20 +274,20 @@ export interface ThreadMessageDeleted { export interface MessageCreateParams { /** - * The content of the Message. + * The content of the message. */ content: string; /** - * The role of the entity that is creating the Message. Currently only `user` is + * The role of the entity that is creating the message. Currently only `user` is * supported. */ role: 'user'; /** * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that - * the Message should use. There can be a maximum of 10 files attached to a - * Message. Useful for tools like `retrieval` and `code_interpreter` that can + * the message should use. There can be a maximum of 10 files attached to a + * message. Useful for tools like `retrieval` and `code_interpreter` that can * access and use files. */ file_ids?: Array; diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index e81b09a90..ffbd287bf 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -11,7 +11,7 @@ export class Runs extends APIResource { steps: StepsAPI.Steps = new StepsAPI.Steps(this.client); /** - * Create a Run. + * Create a run. */ create(threadId: string, body: RunCreateParams, options?: Core.RequestOptions): Core.APIPromise { return this.post(`/threads/${threadId}/runs`, { @@ -22,7 +22,7 @@ export class Runs extends APIResource { } /** - * Retrieves a Run. + * Retrieves a run. */ retrieve(threadId: string, runId: string, options?: Core.RequestOptions): Core.APIPromise { return this.get(`/threads/${threadId}/runs/${runId}`, { @@ -32,7 +32,7 @@ export class Runs extends APIResource { } /** - * Modifies a Run. + * Modifies a run. */ update( threadId: string, @@ -48,7 +48,7 @@ export class Runs extends APIResource { } /** - * Returns a list of Runs belonging to a Thread. + * Returns a list of runs belonging to a thread. */ list( threadId: string, @@ -72,7 +72,7 @@ export class Runs extends APIResource { } /** - * Cancels a Run that is `in_progress`. + * Cancels a run that is `in_progress`. */ cancel(threadId: string, runId: string, options?: Core.RequestOptions): Core.APIPromise { return this.post(`/threads/${threadId}/runs/${runId}/cancel`, { @@ -82,7 +82,7 @@ export class Runs extends APIResource { } /** - * When a Run has the `status: "requires_action"` and `required_action.type` is + * When a run has the `status: "requires_action"` and `required_action.type` is * `submit_tool_outputs`, this endpoint can be used to submit the outputs from the * tool calls once they're all completed. All outputs must be submitted in a single * request. @@ -110,7 +110,7 @@ export interface RequiredActionFunctionToolCall { /** * The ID of the tool call. This ID must be referenced when you submit the tool * outputs in using the - * [Submit tool outputs to Run](https://platform.openai.com/docs/api-reference/runs/submitToolOutputs) + * [Submit tool outputs to run](https://platform.openai.com/docs/api-reference/runs/submitToolOutputs) * endpoint. */ id: string; @@ -145,8 +145,8 @@ export namespace RequiredActionFunctionToolCall { } /** - * Represents an execution Run on a - * [Thread](https://platform.openai.com/docs/api-reference/threads). + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). */ export interface Run { /** @@ -156,52 +156,52 @@ export interface Run { /** * The ID of the - * [Assistant](https://platform.openai.com/docs/api-reference/assistants) used for - * execution of this Run. + * [assistant](https://platform.openai.com/docs/api-reference/assistants) used for + * execution of this run. */ assistant_id: string; /** - * The Unix timestamp (in seconds) for when the Run was cancelled. + * The Unix timestamp (in seconds) for when the run was cancelled. */ cancelled_at: number | null; /** - * The Unix timestamp (in seconds) for when the Run was completed. + * The Unix timestamp (in seconds) for when the run was completed. */ completed_at: number | null; /** - * The Unix timestamp (in seconds) for when the Run was created. + * The Unix timestamp (in seconds) for when the run was created. */ created_at: number; /** - * The Unix timestamp (in seconds) for when the Run will expire. + * The Unix timestamp (in seconds) for when the run will expire. */ expires_at: number; /** - * The Unix timestamp (in seconds) for when the Run failed. + * The Unix timestamp (in seconds) for when the run failed. */ failed_at: number | null; /** * The list of [File](https://platform.openai.com/docs/api-reference/files) IDs the - * [Assistant](https://platform.openai.com/docs/api-reference/assistants) used for - * this Run. + * [assistant](https://platform.openai.com/docs/api-reference/assistants) used for + * this run. */ file_ids: Array; /** * The instructions that the - * [Assistant](https://platform.openai.com/docs/api-reference/assistants) used for + * [assistant](https://platform.openai.com/docs/api-reference/assistants) used for * this run. */ instructions: string; /** - * The last error associated with this Run. Will be `null` if there are no errors. + * The last error associated with this run. Will be `null` if there are no errors. */ last_error: Run.LastError | null; @@ -215,8 +215,8 @@ export interface Run { /** * The model that the - * [Assistant](https://platform.openai.com/docs/api-reference/assistants) used for - * this Run. + * [assistant](https://platform.openai.com/docs/api-reference/assistants) used for + * this run. */ model: string; @@ -226,13 +226,13 @@ export interface Run { object: 'assistant.run'; /** - * Details on the action required to continue the Run. Will be `null` if no action + * Details on the action required to continue the run. Will be `null` if no action * is required. */ required_action: Run.RequiredAction | null; /** - * The Unix timestamp (in seconds) for when the Run was started. + * The Unix timestamp (in seconds) for when the run was started. */ started_at: number | null; @@ -252,22 +252,22 @@ export interface Run { | 'expired'; /** - * The ID of the [Thread](https://platform.openai.com/docs/api-reference/threads) - * that was executed on as a part of this Run. + * The ID of the [thread](https://platform.openai.com/docs/api-reference/threads) + * that was executed on as a part of this run. */ thread_id: string; /** * The list of tools that the - * [Assistant](https://platform.openai.com/docs/api-reference/assistants) used for - * this Run. + * [assistant](https://platform.openai.com/docs/api-reference/assistants) used for + * this run. */ tools: Array; } export namespace Run { /** - * The last error associated with this Run. Will be `null` if there are no errors. + * The last error associated with this run. Will be `null` if there are no errors. */ export interface LastError { /** @@ -282,12 +282,12 @@ export namespace Run { } /** - * Details on the action required to continue the Run. Will be `null` if no action + * Details on the action required to continue the run. Will be `null` if no action * is required. */ export interface RequiredAction { /** - * Details on the tool outputs needed for this Run to continue. + * Details on the tool outputs needed for this run to continue. */ submit_tool_outputs: RequiredAction.SubmitToolOutputs; @@ -299,7 +299,7 @@ export namespace Run { export namespace RequiredAction { /** - * Details on the tool outputs needed for this Run to continue. + * Details on the tool outputs needed for this run to continue. */ export interface SubmitToolOutputs { /** @@ -370,13 +370,13 @@ export namespace Run { export interface RunCreateParams { /** * The ID of the - * [Assistant](https://platform.openai.com/docs/api-reference/assistants) to use to - * execute this Run. + * [assistant](https://platform.openai.com/docs/api-reference/assistants) to use to + * execute this run. */ assistant_id: string; /** - * Override the default system message of the Assistant. This is useful for + * Override the default system message of the assistant. This is useful for * modifying the behavior on a per-run basis. */ instructions?: string | null; @@ -391,14 +391,14 @@ export interface RunCreateParams { /** * The ID of the [Model](https://platform.openai.com/docs/api-reference/models) to - * be used to execute this Run. If a value is provided here, it will override the - * model associated with the Assistant. If not, the model associated with the - * Assistant will be used. + * be used to execute this run. If a value is provided here, it will override the + * model associated with the assistant. If not, the model associated with the + * assistant will be used. */ model?: string | null; /** - * Override the tools the Assistant can use for this Run. This is useful for + * Override the tools the assistant can use for this run. This is useful for * modifying the behavior on a per-run basis. */ tools?: Array< @@ -503,12 +503,12 @@ export interface RunSubmitToolOutputsParams { export namespace RunSubmitToolOutputsParams { export interface ToolOutput { /** - * The output of the tool call to be submitted to continue the Run. + * The output of the tool call to be submitted to continue the run. */ output?: string; /** - * The ID of the tool call in the `required_action` object within the Run object + * The ID of the tool call in the `required_action` object within the run object * the output is being submitted for. */ tool_call_id?: string; diff --git a/src/resources/beta/threads/runs/steps.ts b/src/resources/beta/threads/runs/steps.ts index 94745f875..6819aa269 100644 --- a/src/resources/beta/threads/runs/steps.ts +++ b/src/resources/beta/threads/runs/steps.ts @@ -8,7 +8,7 @@ import { CursorPage, type CursorPageParams } from 'openai/pagination'; export class Steps extends APIResource { /** - * Retrieves a Run Step. + * Retrieves a run step. */ retrieve( threadId: string, @@ -23,7 +23,7 @@ export class Steps extends APIResource { } /** - * Returns a list of Run Steps belonging to a Run. + * Returns a list of run steps belonging to a run. */ list( threadId: string, @@ -56,7 +56,7 @@ export class Steps extends APIResource { export class RunStepsPage extends CursorPage {} /** - * Details of the Code Interpreter tool call the Run Step was involved in. + * Details of the Code Interpreter tool call the run step was involved in. */ export interface CodeToolCall { /** @@ -65,7 +65,7 @@ export interface CodeToolCall { id: string; /** - * The code interpreter tool call definition. + * The Code Interpreter tool call definition. */ code_interpreter: CodeToolCall.CodeInterpreter; @@ -78,7 +78,7 @@ export interface CodeToolCall { export namespace CodeToolCall { /** - * The code interpreter tool call definition. + * The Code Interpreter tool call definition. */ export interface CodeInterpreter { /** @@ -96,7 +96,7 @@ export namespace CodeToolCall { export namespace CodeInterpreter { /** - * Text output from the Code Interpreter tool call as part of a Run Step. + * Text output from the Code Interpreter tool call as part of a run step. */ export interface Logs { /** @@ -105,7 +105,7 @@ export namespace CodeToolCall { logs: string; /** - * Will always be `logs`. + * Always `logs`. */ type: 'logs'; } @@ -114,7 +114,7 @@ export namespace CodeToolCall { image: Image.Image; /** - * Will always be `image`. + * Always `image`. */ type: 'image'; } @@ -122,7 +122,7 @@ export namespace CodeToolCall { export namespace Image { export interface Image { /** - * The [File](https://platform.openai.com/docs/api-reference/files) ID of the + * The [file](https://platform.openai.com/docs/api-reference/files) ID of the * image. */ file_id: string; @@ -174,13 +174,13 @@ export namespace FunctionToolCall { } /** - * Details of the Message creation activity that the Run Step was involved in. + * Details of the message creation by the run step. */ export interface MessageCreationStepDetails { message_creation: MessageCreationStepDetails.MessageCreation; /** - * Will always be `message_creation``. + * Always `message_creation``. */ type: 'message_creation'; } @@ -188,7 +188,7 @@ export interface MessageCreationStepDetails { export namespace MessageCreationStepDetails { export interface MessageCreation { /** - * The ID of the Message that was created by this Run Step. + * The ID of the message that was created by this run step. */ message_id: string; } @@ -213,7 +213,7 @@ export interface RetrievalToolCall { } /** - * Represents a Step in execution of a Run. + * Represents a step in execution of a run. */ export interface RunStep { /** @@ -223,39 +223,39 @@ export interface RunStep { /** * The ID of the - * [Assistant](https://platform.openai.com/docs/api-reference/assistants) - * associated with the Run Step. + * [assistant](https://platform.openai.com/docs/api-reference/assistants) + * associated with the run step. */ assistant_id: string; /** - * The Unix timestamp (in seconds) for when the Run Step was cancelled. + * The Unix timestamp (in seconds) for when the run step was cancelled. */ cancelled_at: number | null; /** - * The Unix timestamp (in seconds) for when the Run Step was completed. + * The Unix timestamp (in seconds) for when the run step completed. */ completed_at: number | null; /** - * The Unix timestamp (in seconds) for when the Run Step was created. + * The Unix timestamp (in seconds) for when the run step was created. */ created_at: number; /** - * The Unix timestamp (in seconds) for when the Run Step expired. A step is - * considered expired if the parent Run is expired. + * The Unix timestamp (in seconds) for when the run step expired. A step is + * considered expired if the parent run is expired. */ expired_at: number | null; /** - * The Unix timestamp (in seconds) for when the Run Step failed. + * The Unix timestamp (in seconds) for when the run step failed. */ failed_at: number | null; /** - * The last error associated with this Run Step. Will be `null` if there are no + * The last error associated with this run step. Will be `null` if there are no * errors. */ last_error: RunStep.LastError | null; @@ -274,8 +274,8 @@ export interface RunStep { object: 'assistant.run.step'; /** - * The ID of the [Run](https://platform.openai.com/docs/api-reference/runs) that - * this Run Step is a part of. + * The ID of the [run](https://platform.openai.com/docs/api-reference/runs) that + * this run step is a part of. */ run_id: string; @@ -286,25 +286,25 @@ export interface RunStep { status: 'in_progress' | 'cancelled' | 'failed' | 'completed' | 'expired'; /** - * The details of the activity the Run Step was involved in. + * The details of the run step. */ step_details: MessageCreationStepDetails | ToolCallsStepDetails; /** - * The ID of the [Thread](https://platform.openai.com/docs/api-reference/threads) - * that was Run. + * The ID of the [thread](https://platform.openai.com/docs/api-reference/threads) + * that was run. */ thread_id: string; /** - * The type of Run Step, which can be either `message_creation` or `tool_calls`. + * The type of run step, which can be either `message_creation` or `tool_calls`. */ type: 'message_creation' | 'tool_calls'; } export namespace RunStep { /** - * The last error associated with this Run Step. Will be `null` if there are no + * The last error associated with this run step. Will be `null` if there are no * errors. */ export interface LastError { @@ -321,18 +321,18 @@ export namespace RunStep { } /** - * Details of the Tool Call activity that the Run Step was involved in. + * Details of the tool call. */ export interface ToolCallsStepDetails { /** - * An array of tool calls the Run Step was involved in. These can be associated + * An array of tool calls the run step was involved in. These can be associated * with one of three types of tools: `code_interpreter`, `retrieval`, or * `function`. */ tool_calls: Array; /** - * Will always be `tool_calls`. + * Always `tool_calls`. */ type: 'tool_calls'; } diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index cb49cd230..5bf84ee1f 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -11,7 +11,7 @@ export class Threads extends APIResource { messages: MessagesAPI.Messages = new MessagesAPI.Messages(this.client); /** - * Create a Thread. + * Create a thread. */ create(body: ThreadCreateParams, options?: Core.RequestOptions): Core.APIPromise { return this.post('/threads', { @@ -22,7 +22,7 @@ export class Threads extends APIResource { } /** - * Retrieves a Thread. + * Retrieves a thread. */ retrieve(threadId: string, options?: Core.RequestOptions): Core.APIPromise { return this.get(`/threads/${threadId}`, { @@ -32,7 +32,7 @@ export class Threads extends APIResource { } /** - * Modifies a Thread. + * Modifies a thread. */ update(threadId: string, body: ThreadUpdateParams, options?: Core.RequestOptions): Core.APIPromise { return this.post(`/threads/${threadId}`, { @@ -43,7 +43,7 @@ export class Threads extends APIResource { } /** - * Delete a Thread. + * Delete a thread. */ del(threadId: string, options?: Core.RequestOptions): Core.APIPromise { return this.delete(`/threads/${threadId}`, { @@ -53,7 +53,7 @@ export class Threads extends APIResource { } /** - * Create a Thread and Run it in one request. + * Create a thread and run it in one request. */ createAndRun(body: ThreadCreateAndRunParams, options?: Core.RequestOptions): Core.APIPromise { return this.post('/threads/runs', { @@ -65,8 +65,8 @@ export class Threads extends APIResource { } /** - * Represents a Thread that contains - * [Messages](https://platform.openai.com/docs/api-reference/messages). + * Represents a thread that contains + * [messages](https://platform.openai.com/docs/api-reference/messages). */ export interface Thread { /** @@ -75,7 +75,7 @@ export interface Thread { id: string; /** - * The Unix timestamp (in seconds) for when the Thread was created. + * The Unix timestamp (in seconds) for when the thread was created. */ created_at: number; @@ -103,8 +103,8 @@ export interface ThreadDeleted { export interface ThreadCreateParams { /** - * A list of [Messages](https://platform.openai.com/docs/api-reference/messages) to - * start the Thread with. + * A list of [messages](https://platform.openai.com/docs/api-reference/messages) to + * start the thread with. */ messages?: Array; @@ -120,20 +120,20 @@ export interface ThreadCreateParams { export namespace ThreadCreateParams { export interface Message { /** - * The content of the Message. + * The content of the message. */ content: string; /** - * The role of the entity that is creating the Message. Currently only `user` is + * The role of the entity that is creating the message. Currently only `user` is * supported. */ role: 'user'; /** * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that - * the Message should use. There can be a maximum of 10 files attached to a - * Message. Useful for tools like `retrieval` and `code_interpreter` that can + * the message should use. There can be a maximum of 10 files attached to a + * message. Useful for tools like `retrieval` and `code_interpreter` that can * access and use files. */ file_ids?: Array; @@ -161,13 +161,13 @@ export interface ThreadUpdateParams { export interface ThreadCreateAndRunParams { /** * The ID of the - * [Assistant](https://platform.openai.com/docs/api-reference/assistants) to use to - * execute this Run. + * [assistant](https://platform.openai.com/docs/api-reference/assistants) to use to + * execute this run. */ assistant_id: string; /** - * Override the default system message of the Assistant. This is useful for + * Override the default system message of the assistant. This is useful for * modifying the behavior on a per-run basis. */ instructions?: string | null; @@ -182,19 +182,19 @@ export interface ThreadCreateAndRunParams { /** * The ID of the [Model](https://platform.openai.com/docs/api-reference/models) to - * be used to execute this Run. If a value is provided here, it will override the - * model associated with the Assistant. If not, the model associated with the - * Assistant will be used. + * be used to execute this run. If a value is provided here, it will override the + * model associated with the assistant. If not, the model associated with the + * assistant will be used. */ model?: string | null; /** - * If no Thread is provided, an empty Thread will be created. + * If no thread is provided, an empty thread will be created. */ thread?: ThreadCreateAndRunParams.Thread; /** - * Override the tools the Assistant can use for this Run. This is useful for + * Override the tools the assistant can use for this run. This is useful for * modifying the behavior on a per-run basis. */ tools?: Array< @@ -206,12 +206,12 @@ export interface ThreadCreateAndRunParams { export namespace ThreadCreateAndRunParams { /** - * If no Thread is provided, an empty Thread will be created. + * If no thread is provided, an empty thread will be created. */ export interface Thread { /** - * A list of [Messages](https://platform.openai.com/docs/api-reference/messages) to - * start the Thread with. + * A list of [messages](https://platform.openai.com/docs/api-reference/messages) to + * start the thread with. */ messages?: Array; @@ -227,20 +227,20 @@ export namespace ThreadCreateAndRunParams { export namespace Thread { export interface Message { /** - * The content of the Message. + * The content of the message. */ content: string; /** - * The role of the entity that is creating the Message. Currently only `user` is + * The role of the entity that is creating the message. Currently only `user` is * supported. */ role: 'user'; /** * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that - * the Message should use. There can be a maximum of 10 files attached to a - * Message. Useful for tools like `retrieval` and `code_interpreter` that can + * the message should use. There can be a maximum of 10 files attached to a + * message. Useful for tools like `retrieval` and `code_interpreter` that can * access and use files. */ file_ids?: Array; diff --git a/src/resources/files.ts b/src/resources/files.ts index 52eb39b7c..78acc40ed 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -112,7 +112,7 @@ export interface FileDeleted { */ export interface FileObject { /** - * The File identifier, which can be referenced in the API endpoints. + * The file identifier, which can be referenced in the API endpoints. */ id: string; @@ -122,12 +122,12 @@ export interface FileObject { bytes: number; /** - * The Unix timestamp (in seconds) for when the File was created. + * The Unix timestamp (in seconds) for when the file was created. */ created_at: number; /** - * The name of the File. + * The name of the file. */ filename: string; @@ -137,13 +137,13 @@ export interface FileObject { object: 'file'; /** - * The intended purpose of the File. Supported values are `fine-tune`, + * The intended purpose of the file. Supported values are `fine-tune`, * `fine-tune-results`, `assistants`, and `assistants_output`. */ purpose: 'fine-tune' | 'fine-tune-results' | 'assistants' | 'assistants_output'; /** - * Deprecated. The current status of the File, which can be either `uploaded`, + * Deprecated. The current status of the file, which can be either `uploaded`, * `processed`, or `error`. */ status: 'uploaded' | 'processed' | 'error'; From 2a397dbbe67c1ed3eba6fccb93dc2df48b9c7a16 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 6 Nov 2023 21:54:54 +0000 Subject: [PATCH 160/725] fix(api): retreival -> retrieval (#437) --- src/resources/beta/assistants/assistants.ts | 16 ++++++++-------- src/resources/beta/threads/runs/runs.ts | 8 ++++---- src/resources/beta/threads/threads.ts | 4 ++-- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/resources/beta/assistants/assistants.ts b/src/resources/beta/assistants/assistants.ts index 8a3d1c8b7..ec627bab4 100644 --- a/src/resources/beta/assistants/assistants.ts +++ b/src/resources/beta/assistants/assistants.ts @@ -144,7 +144,7 @@ export interface Assistant { * A list of tool enabled on the assistant. There can be a maximum of 128 tools per * assistant. Tools can be of types `code_interpreter`, `retrieval`, or `function`. */ - tools: Array; + tools: Array; } export namespace Assistant { @@ -155,11 +155,11 @@ export namespace Assistant { type: 'code_interpreter'; } - export interface Retreival { + export interface Retrieval { /** - * The type of tool being defined: `retreival` + * The type of tool being defined: `retrieval` */ - type: 'retreival'; + type: 'retrieval'; } export interface Function { @@ -276,9 +276,9 @@ export namespace AssistantCreateParams { export interface AssistantToolsRetrieval { /** - * The type of tool being defined: `retreival` + * The type of tool being defined: `retrieval` */ - type: 'retreival'; + type: 'retrieval'; } export interface AssistantToolsFunction { @@ -389,9 +389,9 @@ export namespace AssistantUpdateParams { export interface AssistantToolsRetrieval { /** - * The type of tool being defined: `retreival` + * The type of tool being defined: `retrieval` */ - type: 'retreival'; + type: 'retrieval'; } export interface AssistantToolsFunction { diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index ffbd287bf..7d92c66bd 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -318,9 +318,9 @@ export namespace Run { export interface AssistantToolsRetrieval { /** - * The type of tool being defined: `retreival` + * The type of tool being defined: `retrieval` */ - type: 'retreival'; + type: 'retrieval'; } export interface AssistantToolsFunction { @@ -418,9 +418,9 @@ export namespace RunCreateParams { export interface AssistantToolsRetrieval { /** - * The type of tool being defined: `retreival` + * The type of tool being defined: `retrieval` */ - type: 'retreival'; + type: 'retrieval'; } export interface AssistantToolsFunction { diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 5bf84ee1f..ccc94fb65 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -264,9 +264,9 @@ export namespace ThreadCreateAndRunParams { export interface AssistantToolsRetrieval { /** - * The type of tool being defined: `retreival` + * The type of tool being defined: `retrieval` */ - type: 'retreival'; + type: 'retrieval'; } export interface AssistantToolsFunction { From 2242688f14d5ab7dbf312d92a99fa4a7394907dc Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 6 Nov 2023 21:55:13 +0000 Subject: [PATCH 161/725] release: 4.16.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 31b940b8e..c39b54f82 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.16.0" + ".": "4.16.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 93b586e31..1462582cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.16.1 (2023-11-06) + +Full Changelog: [v4.16.0...v4.16.1](https://github.com/openai/openai-node/compare/v4.16.0...v4.16.1) + +### Bug Fixes + +* **api:** retreival -> retrieval ([#437](https://github.com/openai/openai-node/issues/437)) ([b4bd3ee](https://github.com/openai/openai-node/commit/b4bd3eefdd3903abcc57c431382cc2124d39307b)) + + +### Documentation + +* **api:** improve docstrings ([#435](https://github.com/openai/openai-node/issues/435)) ([ee8b24c](https://github.com/openai/openai-node/commit/ee8b24c70a5ccb944e02ff2201668d6bc2b597b3)) + ## 4.16.0 (2023-11-06) Full Changelog: [v4.15.4...v4.16.0](https://github.com/openai/openai-node/compare/v4.15.4...v4.16.0) diff --git a/package.json b/package.json index 9e1aa9f8a..4794f1d26 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.16.0", + "version": "4.16.1", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 3832c72ab..df01ae30a 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.16.0'; // x-release-please-version +export const VERSION = '4.16.1'; // x-release-please-version From 411c88e4d8275e6d19f90ac5152c8533b0f17769 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 7 Nov 2023 02:10:33 +0000 Subject: [PATCH 162/725] docs: update deno deploy link to include v (#441) --- README.md | 2 +- build-deno | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 813036a12..db98927a3 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@4.16.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.16.1/mod.ts'; ``` diff --git a/build-deno b/build-deno index 55e4d51bd..c29faef64 100755 --- a/build-deno +++ b/build-deno @@ -15,7 +15,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "$(echo 'https://deno.land/x/openai@4.16.0/mod.ts' | sed -E s/@\.+\\//@"$PACKAGE_VERSION"\\//)"; +import OpenAI from "$(echo 'https://deno.land/x/openai@v4.16.1/mod.ts' | sed -E s/@\.+\\//@"$PACKAGE_VERSION"\\//)"; const client = new OpenAI(); \`\`\` From 8ec983ba4d9b1cc7a3af701f2c678c7984240631 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 7 Nov 2023 09:38:16 +0000 Subject: [PATCH 163/725] ci: try to fix deno version replacing (#449) --- release-please-config.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/release-please-config.json b/release-please-config.json index 26eb693f3..3e05bee84 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -59,6 +59,8 @@ ], "release-type": "node", "extra-files": [ - "src/version.ts" + "src/version.ts", + "README.md", + "bin/build-deno" ] } From 85a71cafa9c93a76a79e4ad09c54bfefe1958166 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 7 Nov 2023 13:04:15 +0000 Subject: [PATCH 164/725] fix: asssitant_deleted -> assistant_deleted (#452) --- api.md | 4 ++-- src/resources/beta/assistants/assistants.ts | 6 +++--- src/resources/beta/assistants/index.ts | 2 +- src/resources/beta/beta.ts | 2 +- src/resources/beta/index.ts | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/api.md b/api.md index 5bcb1e18b..60b04de22 100644 --- a/api.md +++ b/api.md @@ -193,7 +193,7 @@ Methods: Types: - Assistant -- AsssitantDeleted +- AssistantDeleted Methods: @@ -201,7 +201,7 @@ Methods: - client.beta.assistants.retrieve(assistantId) -> Assistant - client.beta.assistants.update(assistantId, { ...params }) -> Assistant - client.beta.assistants.list({ ...params }) -> AssistantsPage -- client.beta.assistants.del(assistantId) -> AsssitantDeleted +- client.beta.assistants.del(assistantId) -> AssistantDeleted ### Files diff --git a/src/resources/beta/assistants/assistants.ts b/src/resources/beta/assistants/assistants.ts index ec627bab4..89095daa7 100644 --- a/src/resources/beta/assistants/assistants.ts +++ b/src/resources/beta/assistants/assistants.ts @@ -71,7 +71,7 @@ export class Assistants extends APIResource { /** * Delete an assistant. */ - del(assistantId: string, options?: Core.RequestOptions): Core.APIPromise { + del(assistantId: string, options?: Core.RequestOptions): Core.APIPromise { return this.delete(`/assistants/${assistantId}`, { ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, @@ -206,7 +206,7 @@ export namespace Assistant { } } -export interface AsssitantDeleted { +export interface AssistantDeleted { id: string; deleted: boolean; @@ -456,7 +456,7 @@ export interface AssistantListParams extends CursorPageParams { export namespace Assistants { export import Assistant = AssistantsAPI.Assistant; - export import AsssitantDeleted = AssistantsAPI.AsssitantDeleted; + export import AssistantDeleted = AssistantsAPI.AssistantDeleted; export import AssistantsPage = AssistantsAPI.AssistantsPage; export import AssistantCreateParams = AssistantsAPI.AssistantCreateParams; export import AssistantUpdateParams = AssistantsAPI.AssistantUpdateParams; diff --git a/src/resources/beta/assistants/index.ts b/src/resources/beta/assistants/index.ts index 7455e48e6..5236bc8de 100644 --- a/src/resources/beta/assistants/index.ts +++ b/src/resources/beta/assistants/index.ts @@ -2,7 +2,7 @@ export { Assistant, - AsssitantDeleted, + AssistantDeleted, AssistantCreateParams, AssistantUpdateParams, AssistantListParams, diff --git a/src/resources/beta/beta.ts b/src/resources/beta/beta.ts index a9505a17d..ed721d8f8 100644 --- a/src/resources/beta/beta.ts +++ b/src/resources/beta/beta.ts @@ -15,7 +15,7 @@ export namespace Beta { export import Chat = ChatAPI.Chat; export import Assistants = AssistantsAPI.Assistants; export import Assistant = AssistantsAPI.Assistant; - export import AsssitantDeleted = AssistantsAPI.AsssitantDeleted; + export import AssistantDeleted = AssistantsAPI.AssistantDeleted; export import AssistantsPage = AssistantsAPI.AssistantsPage; export import AssistantCreateParams = AssistantsAPI.AssistantCreateParams; export import AssistantUpdateParams = AssistantsAPI.AssistantUpdateParams; diff --git a/src/resources/beta/index.ts b/src/resources/beta/index.ts index 1383aa2b8..4ed7e84b1 100644 --- a/src/resources/beta/index.ts +++ b/src/resources/beta/index.ts @@ -2,7 +2,7 @@ export { Assistant, - AsssitantDeleted, + AssistantDeleted, AssistantCreateParams, AssistantUpdateParams, AssistantListParams, From 886531263d97ab4c54bc05b59789c2021277a776 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 7 Nov 2023 16:51:38 +0000 Subject: [PATCH 165/725] chore(internal): fix typo in comment (#456) --- ecosystem-tests/node-ts-esm/tests/test-esnext.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/ecosystem-tests/node-ts-esm/tests/test-esnext.ts b/ecosystem-tests/node-ts-esm/tests/test-esnext.ts index 7fafdae10..d3b77971e 100644 --- a/ecosystem-tests/node-ts-esm/tests/test-esnext.ts +++ b/ecosystem-tests/node-ts-esm/tests/test-esnext.ts @@ -1,5 +1,3 @@ -// shouldn't need extension, but Jest's ESM module resolution is broken -// however, using .mjs doesn't set the right typings with "moduleResolution": "node"...argh import 'openai/shims/node.mjs'; import OpenAI from 'openai'; import { distance } from 'fastest-levenshtein'; From acb859746e94f11e1adaeff7248bb34d51172728 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 7 Nov 2023 17:35:27 +0000 Subject: [PATCH 166/725] chore(docs): fix github links (#457) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index db98927a3..36ba61bb5 100644 --- a/README.md +++ b/README.md @@ -413,7 +413,7 @@ import OpenAI from "openai"; ``` To do the inverse, add `import "openai/shims/node"` (which does import polyfills). -This can also be useful if you are getting the wrong TypeScript types for `Response` - more details [here](https://github.com/openai/openai-node/src/_shims#readme). +This can also be useful if you are getting the wrong TypeScript types for `Response` - more details [here](https://github.com/openai/openai-node/tree/master/src/_shims#readme). You may also provide a custom `fetch` function when instantiating the client, which can be used to inspect or alter the `Request` or `Response` before/after each request: From 4402f0efd23bf1b85d09dbde9ac5d5d0ef8225d6 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 7 Nov 2023 17:43:33 +0000 Subject: [PATCH 167/725] fix(types): ensure all code paths return a value (#458) --- src/lib/AbstractChatCompletionRunner.ts | 4 ++++ tsconfig.json | 1 + 2 files changed, 5 insertions(+) diff --git a/src/lib/AbstractChatCompletionRunner.ts b/src/lib/AbstractChatCompletionRunner.ts index c8be63ab3..60b1e5602 100644 --- a/src/lib/AbstractChatCompletionRunner.ts +++ b/src/lib/AbstractChatCompletionRunner.ts @@ -252,6 +252,8 @@ export abstract class AbstractChatCompletionRunner< return message.function_call; } } + + return; } /** @@ -270,6 +272,8 @@ export abstract class AbstractChatCompletionRunner< return message.content as string; } } + + return; } async finalFunctionCallResult(): Promise { diff --git a/tsconfig.json b/tsconfig.json index 4bc150677..9908b2c80 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -27,6 +27,7 @@ "strictBindCallApply": true, "strictPropertyInitialization": true, "noImplicitThis": true, + "noImplicitReturns": true, "alwaysStrict": true, "exactOptionalPropertyTypes": true, "noUncheckedIndexedAccess": true, From 5d50c4e18f4ba00bfaf4709348c4742101a96785 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 8 Nov 2023 11:58:57 +0000 Subject: [PATCH 168/725] fix(api): accidentally required params, add new models & other fixes (#463) - Mark chat completion image url as required - Add system_fingerprint to chat completions --- src/resources/beta/threads/threads.ts | 11 +++++++- src/resources/chat/completions.ts | 18 ++++++++++--- .../beta/threads/threads.test.ts | 26 ++++++++++++++++++- 3 files changed, 49 insertions(+), 6 deletions(-) diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index ccc94fb65..641f48738 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -2,6 +2,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; +import { isRequestOptions } from 'openai/core'; import * as ThreadsAPI from 'openai/resources/beta/threads/threads'; import * as MessagesAPI from 'openai/resources/beta/threads/messages/messages'; import * as RunsAPI from 'openai/resources/beta/threads/runs/runs'; @@ -13,7 +14,15 @@ export class Threads extends APIResource { /** * Create a thread. */ - create(body: ThreadCreateParams, options?: Core.RequestOptions): Core.APIPromise { + create(body?: ThreadCreateParams, options?: Core.RequestOptions): Core.APIPromise; + create(options?: Core.RequestOptions): Core.APIPromise; + create( + body: ThreadCreateParams | Core.RequestOptions = {}, + options?: Core.RequestOptions, + ): Core.APIPromise { + if (isRequestOptions(body)) { + return this.create({}, body); + } return this.post('/threads', { body, ...options, diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index b81da9fa3..412688dfa 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -177,6 +177,14 @@ export interface ChatCompletionChunk { * The object type, which is always `chat.completion.chunk`. */ object: 'chat.completion.chunk'; + + /** + * This fingerprint represents the backend configuration that the model runs with. + * + * Can be used in conjunction with the `seed` request parameter to understand when + * backend changes have been made that might impact determinism. + */ + system_fingerprint?: string; } export namespace ChatCompletionChunk { @@ -296,14 +304,14 @@ export interface ChatCompletionContentPartImage { export namespace ChatCompletionContentPartImage { export interface ImageURL { /** - * Specifies the detail level of the image. + * Either a URL of the image or the base64 encoded image data. */ - detail?: 'auto' | 'low' | 'high'; + url: string; /** - * Either a URL of the image or the base64 encoded image data. + * Specifies the detail level of the image. */ - url?: string; + detail?: 'auto' | 'low' | 'high'; } } @@ -579,6 +587,8 @@ export interface ChatCompletionCreateParamsBase { */ model: | (string & {}) + | 'gpt-4-1106-preview' + | 'gpt-4-vision-preview' | 'gpt-4' | 'gpt-4-0314' | 'gpt-4-0613' diff --git a/tests/api-resources/beta/threads/threads.test.ts b/tests/api-resources/beta/threads/threads.test.ts index 4ca2247dd..fc9fef723 100644 --- a/tests/api-resources/beta/threads/threads.test.ts +++ b/tests/api-resources/beta/threads/threads.test.ts @@ -10,7 +10,7 @@ const openai = new OpenAI({ describe('resource threads', () => { test('create', async () => { - const responsePromise = openai.beta.threads.create({}); + const responsePromise = openai.beta.threads.create(); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -20,6 +20,30 @@ describe('resource threads', () => { expect(dataAndResponse.response).toBe(rawResponse); }); + test('create: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect(openai.beta.threads.create({ path: '/_stainless_unknown_path' })).rejects.toThrow( + OpenAI.NotFoundError, + ); + }); + + test('create: request options and params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.threads.create( + { + messages: [ + { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, + { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, + { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, + ], + metadata: {}, + }, + { path: '/_stainless_unknown_path' }, + ), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + test('retrieve', async () => { const responsePromise = openai.beta.threads.retrieve('string'); const rawResponse = await responsePromise.asResponse(); From 99bee97a842d77ec01d8d8f4b6b04d62848e9a2c Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 8 Nov 2023 19:16:23 +0000 Subject: [PATCH 169/725] fix(api): update embedding response object type (#466) --- src/resources/embeddings.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index 219a05b1f..93637821d 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -28,9 +28,9 @@ export interface CreateEmbeddingResponse { model: string; /** - * The object type, which is always "embedding". + * The object type, which is always "list". */ - object: 'embedding'; + object: 'list'; /** * The usage information for the request. From 12a0de1b41e262110f33835606864ff60fb826e3 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 8 Nov 2023 19:16:45 +0000 Subject: [PATCH 170/725] release: 4.16.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 22 ++++++++++++++++++++++ README.md | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 26 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c39b54f82..75bc0882e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.16.1" + ".": "4.16.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 1462582cc..48849f082 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## 4.16.2 (2023-11-08) + +Full Changelog: [v4.16.1...v4.16.2](https://github.com/openai/openai-node/compare/v4.16.1...v4.16.2) + +### Bug Fixes + +* **api:** accidentally required params, add new models & other fixes ([#463](https://github.com/openai/openai-node/issues/463)) ([1cb403e](https://github.com/openai/openai-node/commit/1cb403e4ccde61bb1613d362f6bdbca8b1681e00)) +* **api:** update embedding response object type ([#466](https://github.com/openai/openai-node/issues/466)) ([53b7e25](https://github.com/openai/openai-node/commit/53b7e2539cca0b272be96136c123d2b33745e7f6)) +* asssitant_deleted -> assistant_deleted ([#452](https://github.com/openai/openai-node/issues/452)) ([ef89bd7](https://github.com/openai/openai-node/commit/ef89bd74d85c833bf7de500eecd1b092a0ad3f37)) +* **types:** ensure all code paths return a value ([#458](https://github.com/openai/openai-node/issues/458)) ([19402c3](https://github.com/openai/openai-node/commit/19402c365572a99cbee58bcd34a9942e741269bf)) + + +### Chores + +* **docs:** fix github links ([#457](https://github.com/openai/openai-node/issues/457)) ([6b9b94e](https://github.com/openai/openai-node/commit/6b9b94e4e123349a908b708cd574ff107f40a8e1)) +* **internal:** fix typo in comment ([#456](https://github.com/openai/openai-node/issues/456)) ([fe24342](https://github.com/openai/openai-node/commit/fe2434284a91d424510873a18079b8870469c672)) + + +### Documentation + +* update deno deploy link to include v ([#441](https://github.com/openai/openai-node/issues/441)) ([47b13aa](https://github.com/openai/openai-node/commit/47b13aaa6fac86fffabee1f752ee6d2efc3def9b)) + ## 4.16.1 (2023-11-06) Full Changelog: [v4.16.0...v4.16.1](https://github.com/openai/openai-node/compare/v4.16.0...v4.16.1) diff --git a/README.md b/README.md index 36ba61bb5..0c5e67295 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.16.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.16.2/mod.ts'; ``` diff --git a/package.json b/package.json index 4794f1d26..23a2f4ae3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.16.1", + "version": "4.16.2", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index df01ae30a..d45bb2fdf 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.16.1'; // x-release-please-version +export const VERSION = '4.16.2'; // x-release-please-version From df2727a216095d49b6ba3fc52cc2b361742ef1f3 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 8 Nov 2023 19:51:26 +0000 Subject: [PATCH 171/725] feat(api): unify function types (#467) Also fixes an enum `assistant.run.step` -> `thread.run.step` --- api.md | 7 ++ build-deno | 2 +- src/index.ts | 3 + src/resources/beta/assistants/assistants.ts | 109 +------------------- src/resources/beta/threads/runs/runs.ts | 77 +------------- src/resources/beta/threads/runs/steps.ts | 8 +- src/resources/beta/threads/threads.ts | 37 +------ src/resources/chat/completions.ts | 72 +++++-------- src/resources/index.ts | 1 + src/resources/shared.ts | 39 +++++++ 10 files changed, 93 insertions(+), 262 deletions(-) create mode 100644 src/resources/shared.ts diff --git a/api.md b/api.md index 60b04de22..0ea5eae95 100644 --- a/api.md +++ b/api.md @@ -1,3 +1,10 @@ +# Shared + +Types: + +- FunctionObject +- FunctionParameters + # Completions Types: diff --git a/build-deno b/build-deno index c29faef64..c6c34389e 100755 --- a/build-deno +++ b/build-deno @@ -15,7 +15,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "$(echo 'https://deno.land/x/openai@v4.16.1/mod.ts' | sed -E s/@\.+\\//@"$PACKAGE_VERSION"\\//)"; +import OpenAI from "$(echo 'https://deno.land/x/openai@v4.16.2/mod.ts' | sed -E s/@\.+\\//@"$PACKAGE_VERSION"\\//)"; const client = new OpenAI(); \`\`\` diff --git a/src/index.ts b/src/index.ts index e213a00b6..152ee3b03 100644 --- a/src/index.ts +++ b/src/index.ts @@ -296,6 +296,9 @@ export namespace OpenAI { export import FineTuneListEventsParamsStreaming = API.FineTuneListEventsParamsStreaming; export import Beta = API.Beta; + + export import FunctionObject = API.FunctionObject; + export import FunctionParameters = API.FunctionParameters; } export default OpenAI; diff --git a/src/resources/beta/assistants/assistants.ts b/src/resources/beta/assistants/assistants.ts index 89095daa7..949d305af 100644 --- a/src/resources/beta/assistants/assistants.ts +++ b/src/resources/beta/assistants/assistants.ts @@ -4,6 +4,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; import { isRequestOptions } from 'openai/core'; import * as AssistantsAPI from 'openai/resources/beta/assistants/assistants'; +import * as Shared from 'openai/resources/shared'; import * as FilesAPI from 'openai/resources/beta/assistants/files'; import { CursorPage, type CursorPageParams } from 'openai/pagination'; @@ -163,47 +164,13 @@ export namespace Assistant { } export interface Function { - /** - * The function definition. - */ - function: Function.Function; + function: Shared.FunctionObject; /** * The type of tool being defined: `function` */ type: 'function'; } - - export namespace Function { - /** - * The function definition. - */ - export interface Function { - /** - * A description of what the function does, used by the model to choose when and - * how to call the function. - */ - description: string; - - /** - * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain - * underscores and dashes, with a maximum length of 64. - */ - name: string; - - /** - * The parameters the functions accepts, described as a JSON Schema object. See the - * [guide](https://platform.openai.com/docs/guides/gpt/function-calling) for - * examples, and the - * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for - * documentation about the format. - * - * To describe a function that accepts no parameters, provide the value - * `{"type": "object", "properties": {}}`. - */ - parameters: Record; - } - } } export interface AssistantDeleted { @@ -282,47 +249,13 @@ export namespace AssistantCreateParams { } export interface AssistantToolsFunction { - /** - * The function definition. - */ - function: AssistantToolsFunction.Function; + function: Shared.FunctionObject; /** * The type of tool being defined: `function` */ type: 'function'; } - - export namespace AssistantToolsFunction { - /** - * The function definition. - */ - export interface Function { - /** - * A description of what the function does, used by the model to choose when and - * how to call the function. - */ - description: string; - - /** - * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain - * underscores and dashes, with a maximum length of 64. - */ - name: string; - - /** - * The parameters the functions accepts, described as a JSON Schema object. See the - * [guide](https://platform.openai.com/docs/guides/gpt/function-calling) for - * examples, and the - * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for - * documentation about the format. - * - * To describe a function that accepts no parameters, provide the value - * `{"type": "object", "properties": {}}`. - */ - parameters: Record; - } - } } export interface AssistantUpdateParams { @@ -395,47 +328,13 @@ export namespace AssistantUpdateParams { } export interface AssistantToolsFunction { - /** - * The function definition. - */ - function: AssistantToolsFunction.Function; + function: Shared.FunctionObject; /** * The type of tool being defined: `function` */ type: 'function'; } - - export namespace AssistantToolsFunction { - /** - * The function definition. - */ - export interface Function { - /** - * A description of what the function does, used by the model to choose when and - * how to call the function. - */ - description: string; - - /** - * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain - * underscores and dashes, with a maximum length of 64. - */ - name: string; - - /** - * The parameters the functions accepts, described as a JSON Schema object. See the - * [guide](https://platform.openai.com/docs/guides/gpt/function-calling) for - * examples, and the - * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for - * documentation about the format. - * - * To describe a function that accepts no parameters, provide the value - * `{"type": "object", "properties": {}}`. - */ - parameters: Record; - } - } } export interface AssistantListParams extends CursorPageParams { diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 7d92c66bd..4579214a2 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -4,6 +4,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; import { isRequestOptions } from 'openai/core'; import * as RunsAPI from 'openai/resources/beta/threads/runs/runs'; +import * as Shared from 'openai/resources/shared'; import * as StepsAPI from 'openai/resources/beta/threads/runs/steps'; import { CursorPage, type CursorPageParams } from 'openai/pagination'; @@ -221,9 +222,9 @@ export interface Run { model: string; /** - * The object type, which is always `assistant.run`. + * The object type, which is always `thread.run`. */ - object: 'assistant.run'; + object: 'thread.run'; /** * Details on the action required to continue the run. Will be `null` if no action @@ -324,47 +325,13 @@ export namespace Run { } export interface AssistantToolsFunction { - /** - * The function definition. - */ - function: AssistantToolsFunction.Function; + function: Shared.FunctionObject; /** * The type of tool being defined: `function` */ type: 'function'; } - - export namespace AssistantToolsFunction { - /** - * The function definition. - */ - export interface Function { - /** - * A description of what the function does, used by the model to choose when and - * how to call the function. - */ - description: string; - - /** - * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain - * underscores and dashes, with a maximum length of 64. - */ - name: string; - - /** - * The parameters the functions accepts, described as a JSON Schema object. See the - * [guide](https://platform.openai.com/docs/guides/gpt/function-calling) for - * examples, and the - * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for - * documentation about the format. - * - * To describe a function that accepts no parameters, provide the value - * `{"type": "object", "properties": {}}`. - */ - parameters: Record; - } - } } export interface RunCreateParams { @@ -424,47 +391,13 @@ export namespace RunCreateParams { } export interface AssistantToolsFunction { - /** - * The function definition. - */ - function: AssistantToolsFunction.Function; + function: Shared.FunctionObject; /** * The type of tool being defined: `function` */ type: 'function'; } - - export namespace AssistantToolsFunction { - /** - * The function definition. - */ - export interface Function { - /** - * A description of what the function does, used by the model to choose when and - * how to call the function. - */ - description: string; - - /** - * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain - * underscores and dashes, with a maximum length of 64. - */ - name: string; - - /** - * The parameters the functions accepts, described as a JSON Schema object. See the - * [guide](https://platform.openai.com/docs/guides/gpt/function-calling) for - * examples, and the - * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for - * documentation about the format. - * - * To describe a function that accepts no parameters, provide the value - * `{"type": "object", "properties": {}}`. - */ - parameters: Record; - } - } } export interface RunUpdateParams { diff --git a/src/resources/beta/threads/runs/steps.ts b/src/resources/beta/threads/runs/steps.ts index 6819aa269..6f3b5624a 100644 --- a/src/resources/beta/threads/runs/steps.ts +++ b/src/resources/beta/threads/runs/steps.ts @@ -269,9 +269,9 @@ export interface RunStep { metadata: unknown | null; /** - * The object type, which is always `assistant.run.step``. + * The object type, which is always `thread.run.step``. */ - object: 'assistant.run.step'; + object: 'thread.run.step'; /** * The ID of the [run](https://platform.openai.com/docs/api-reference/runs) that @@ -280,8 +280,8 @@ export interface RunStep { run_id: string; /** - * The status of the run, which can be either `in_progress`, `cancelled`, `failed`, - * `completed`, or `expired`. + * The status of the run step, which can be either `in_progress`, `cancelled`, + * `failed`, `completed`, or `expired`. */ status: 'in_progress' | 'cancelled' | 'failed' | 'completed' | 'expired'; diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 641f48738..0d72b2311 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -4,6 +4,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; import { isRequestOptions } from 'openai/core'; import * as ThreadsAPI from 'openai/resources/beta/threads/threads'; +import * as Shared from 'openai/resources/shared'; import * as MessagesAPI from 'openai/resources/beta/threads/messages/messages'; import * as RunsAPI from 'openai/resources/beta/threads/runs/runs'; @@ -279,47 +280,13 @@ export namespace ThreadCreateAndRunParams { } export interface AssistantToolsFunction { - /** - * The function definition. - */ - function: AssistantToolsFunction.Function; + function: Shared.FunctionObject; /** * The type of tool being defined: `function` */ type: 'function'; } - - export namespace AssistantToolsFunction { - /** - * The function definition. - */ - export interface Function { - /** - * A description of what the function does, used by the model to choose when and - * how to call the function. - */ - description: string; - - /** - * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain - * underscores and dashes, with a maximum length of 64. - */ - name: string; - - /** - * The parameters the functions accepts, described as a JSON Schema object. See the - * [guide](https://platform.openai.com/docs/guides/gpt/function-calling) for - * examples, and the - * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for - * documentation about the format. - * - * To describe a function that accepts no parameters, provide the value - * `{"type": "object", "properties": {}}`. - */ - parameters: Record; - } - } } export namespace Threads { diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 412688dfa..38a27de67 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -5,6 +5,7 @@ import { APIPromise } from 'openai/core'; import { APIResource } from 'openai/resource'; import * as ChatCompletionsAPI from 'openai/resources/chat/completions'; import * as CompletionsAPI from 'openai/resources/completions'; +import * as Shared from 'openai/resources/shared'; import { Stream } from 'openai/streaming'; export class Completions extends APIResource { @@ -180,7 +181,6 @@ export interface ChatCompletionChunk { /** * This fingerprint represents the backend configuration that the model runs with. - * * Can be used in conjunction with the `seed` request parameter to understand when * backend changes have been made that might impact determinism. */ @@ -486,7 +486,7 @@ export interface ChatCompletionSystemMessageParam { } export interface ChatCompletionTool { - function: ChatCompletionTool.Function; + function: Shared.FunctionObject; /** * The type of the tool. Currently, only `function` is supported. @@ -494,34 +494,6 @@ export interface ChatCompletionTool { type: 'function'; } -export namespace ChatCompletionTool { - export interface Function { - /** - * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain - * underscores and dashes, with a maximum length of 64. - */ - name: string; - - /** - * The parameters the functions accepts, described as a JSON Schema object. See the - * [guide](https://platform.openai.com/docs/guides/gpt/function-calling) for - * examples, and the - * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for - * documentation about the format. - * - * To describe a function that accepts no parameters, provide the value - * `{"type": "object", "properties": {}}`. - */ - parameters: Record; - - /** - * A description of what the function does, used by the model to choose when and - * how to call the function. - */ - description?: string; - } -} - /** * Controls which (if any) function is called by the model. `none` means the model * will not call a function and instead generates a message. `auto` means the model @@ -668,8 +640,18 @@ export interface ChatCompletionCreateParamsBase { presence_penalty?: number | null; /** - * An object specifying the format that the model must output. Used to enable JSON - * mode. + * An object specifying the format that the model must output. + * + * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * message the model generates is valid JSON. + * + * **Important:** when using JSON mode, you **must** also instruct the model to + * produce JSON yourself via a system or user message. Without this, the model may + * generate an unending stream of whitespace until the generation reaches the token + * limit, resulting in increased latency and appearance of a "stuck" request. Also + * note that the message content may be partially cut off if + * `finish_reason="length"`, which indicates the generation exceeded `max_tokens` + * or the conversation exceeded the max context length. */ response_format?: ChatCompletionCreateParams.ResponseFormat; @@ -761,7 +743,7 @@ export namespace ChatCompletionCreateParams { * To describe a function that accepts no parameters, provide the value * `{"type": "object", "properties": {}}`. */ - parameters: Record; + parameters: Shared.FunctionParameters; /** * A description of what the function does, used by the model to choose when and @@ -771,21 +753,21 @@ export namespace ChatCompletionCreateParams { } /** - * An object specifying the format that the model must output. Used to enable JSON - * mode. + * An object specifying the format that the model must output. + * + * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * message the model generates is valid JSON. + * + * **Important:** when using JSON mode, you **must** also instruct the model to + * produce JSON yourself via a system or user message. Without this, the model may + * generate an unending stream of whitespace until the generation reaches the token + * limit, resulting in increased latency and appearance of a "stuck" request. Also + * note that the message content may be partially cut off if + * `finish_reason="length"`, which indicates the generation exceeded `max_tokens` + * or the conversation exceeded the max context length. */ export interface ResponseFormat { /** - * Setting to `json_object` enables JSON mode. This guarantees that the message the - * model generates is valid JSON. - * - * Note that your system prompt must still instruct the model to produce JSON, and - * to help ensure you don't forget, the API will throw an error if the string - * `JSON` does not appear in your system message. Also note that the message - * content may be partial (i.e. cut off) if `finish_reason="length"`, which - * indicates the generation exceeded `max_tokens` or the conversation exceeded the - * max context length. - * * Must be one of `text` or `json_object`. */ type?: 'text' | 'json_object'; diff --git a/src/resources/index.ts b/src/resources/index.ts index 67a4ed227..3bc17fdc2 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -1,6 +1,7 @@ // File generated from our OpenAPI spec by Stainless. export * from './chat/index'; +export * from './shared'; export { Audio } from './audio/audio'; export { Beta } from './beta/beta'; export { diff --git a/src/resources/shared.ts b/src/resources/shared.ts new file mode 100644 index 000000000..873278df5 --- /dev/null +++ b/src/resources/shared.ts @@ -0,0 +1,39 @@ +// File generated from our OpenAPI spec by Stainless. + +export interface FunctionObject { + /** + * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain + * underscores and dashes, with a maximum length of 64. + */ + name: string; + + /** + * The parameters the functions accepts, described as a JSON Schema object. See the + * [guide](https://platform.openai.com/docs/guides/gpt/function-calling) for + * examples, and the + * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for + * documentation about the format. + * + * To describe a function that accepts no parameters, provide the value + * `{"type": "object", "properties": {}}`. + */ + parameters: FunctionParameters; + + /** + * A description of what the function does, used by the model to choose when and + * how to call the function. + */ + description?: string; +} + +/** + * The parameters the functions accepts, described as a JSON Schema object. See the + * [guide](https://platform.openai.com/docs/guides/gpt/function-calling) for + * examples, and the + * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for + * documentation about the format. + * + * To describe a function that accepts no parameters, provide the value + * `{"type": "object", "properties": {}}`. + */ +export type FunctionParameters = Record; From cd8d64831c47d01998c34635a5ee0bc87c5d44f3 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 8 Nov 2023 22:15:56 +0000 Subject: [PATCH 172/725] refactor(api): rename FunctionObject to FunctionDefinition (#470) --- api.md | 2 +- src/index.ts | 2 +- src/resources/beta/assistants/assistants.ts | 6 +++--- src/resources/beta/threads/runs/runs.ts | 4 ++-- src/resources/beta/threads/threads.ts | 2 +- src/resources/chat/completions.ts | 2 +- src/resources/shared.ts | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/api.md b/api.md index 0ea5eae95..67ff66dec 100644 --- a/api.md +++ b/api.md @@ -2,7 +2,7 @@ Types: -- FunctionObject +- FunctionDefinition - FunctionParameters # Completions diff --git a/src/index.ts b/src/index.ts index 152ee3b03..d91a608cb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -297,7 +297,7 @@ export namespace OpenAI { export import Beta = API.Beta; - export import FunctionObject = API.FunctionObject; + export import FunctionDefinition = API.FunctionDefinition; export import FunctionParameters = API.FunctionParameters; } diff --git a/src/resources/beta/assistants/assistants.ts b/src/resources/beta/assistants/assistants.ts index 949d305af..052a3d666 100644 --- a/src/resources/beta/assistants/assistants.ts +++ b/src/resources/beta/assistants/assistants.ts @@ -164,7 +164,7 @@ export namespace Assistant { } export interface Function { - function: Shared.FunctionObject; + function: Shared.FunctionDefinition; /** * The type of tool being defined: `function` @@ -249,7 +249,7 @@ export namespace AssistantCreateParams { } export interface AssistantToolsFunction { - function: Shared.FunctionObject; + function: Shared.FunctionDefinition; /** * The type of tool being defined: `function` @@ -328,7 +328,7 @@ export namespace AssistantUpdateParams { } export interface AssistantToolsFunction { - function: Shared.FunctionObject; + function: Shared.FunctionDefinition; /** * The type of tool being defined: `function` diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 4579214a2..c2fc93a3c 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -325,7 +325,7 @@ export namespace Run { } export interface AssistantToolsFunction { - function: Shared.FunctionObject; + function: Shared.FunctionDefinition; /** * The type of tool being defined: `function` @@ -391,7 +391,7 @@ export namespace RunCreateParams { } export interface AssistantToolsFunction { - function: Shared.FunctionObject; + function: Shared.FunctionDefinition; /** * The type of tool being defined: `function` diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 0d72b2311..c147cefad 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -280,7 +280,7 @@ export namespace ThreadCreateAndRunParams { } export interface AssistantToolsFunction { - function: Shared.FunctionObject; + function: Shared.FunctionDefinition; /** * The type of tool being defined: `function` diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 38a27de67..232dc9c8a 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -486,7 +486,7 @@ export interface ChatCompletionSystemMessageParam { } export interface ChatCompletionTool { - function: Shared.FunctionObject; + function: Shared.FunctionDefinition; /** * The type of the tool. Currently, only `function` is supported. diff --git a/src/resources/shared.ts b/src/resources/shared.ts index 873278df5..d8d9bd0c8 100644 --- a/src/resources/shared.ts +++ b/src/resources/shared.ts @@ -1,6 +1,6 @@ // File generated from our OpenAPI spec by Stainless. -export interface FunctionObject { +export interface FunctionDefinition { /** * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain * underscores and dashes, with a maximum length of 64. From 96b037a875c2be0ab537eb5341742da133420840 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 8 Nov 2023 22:16:19 +0000 Subject: [PATCH 173/725] release: 4.17.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 17 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 75bc0882e..ac650bfe5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.16.2" + ".": "4.17.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 48849f082..de140b63d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.17.0 (2023-11-08) + +Full Changelog: [v4.16.2...v4.17.0](https://github.com/openai/openai-node/compare/v4.16.2...v4.17.0) + +### Features + +* **api:** unify function types ([#467](https://github.com/openai/openai-node/issues/467)) ([d51cd94](https://github.com/openai/openai-node/commit/d51cd94b3103219789447e2e9afc4762ae672e5a)) + + +### Refactors + +* **api:** rename FunctionObject to FunctionDefinition ([#470](https://github.com/openai/openai-node/issues/470)) ([f3990c7](https://github.com/openai/openai-node/commit/f3990c779e596309b62f41d7a1253d8629aca3bf)) + ## 4.16.2 (2023-11-08) Full Changelog: [v4.16.1...v4.16.2](https://github.com/openai/openai-node/compare/v4.16.1...v4.16.2) diff --git a/README.md b/README.md index 0c5e67295..f174ec4ff 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.16.2/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.17.0/mod.ts'; ``` diff --git a/package.json b/package.json index 23a2f4ae3..0ddfa10f3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.16.2", + "version": "4.17.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index d45bb2fdf..c75285419 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.16.2'; // x-release-please-version +export const VERSION = '4.17.0'; // x-release-please-version From 7c7bfc2fad5a786c9172110e90c9566a943e49f9 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 9 Nov 2023 16:12:26 +0000 Subject: [PATCH 174/725] refactor(client): deprecate files.retrieveContent in favour of files.content (#474) The latter supports binary response types more elegantly. --- api.md | 1 + build-deno | 2 +- src/resources/files.ts | 10 ++++++++++ tests/api-resources/files.test.ts | 7 +++++++ 4 files changed, 19 insertions(+), 1 deletion(-) diff --git a/api.md b/api.md index 67ff66dec..b8da4cf0c 100644 --- a/api.md +++ b/api.md @@ -82,6 +82,7 @@ Methods: - client.files.retrieve(fileId) -> FileObject - client.files.list({ ...params }) -> FileObjectsPage - client.files.del(fileId) -> FileDeleted +- client.files.content(fileId) -> Response - client.files.retrieveContent(fileId) -> string - client.files.waitForProcessing(id, { pollInterval = 5000, maxWait = 30 _ 60 _ 1000 }) -> Promise<FileObject> diff --git a/build-deno b/build-deno index c6c34389e..e179de38e 100755 --- a/build-deno +++ b/build-deno @@ -15,7 +15,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "$(echo 'https://deno.land/x/openai@v4.16.2/mod.ts' | sed -E s/@\.+\\//@"$PACKAGE_VERSION"\\//)"; +import OpenAI from "$(echo 'https://deno.land/x/openai@v4.17.0/mod.ts' | sed -E s/@\.+\\//@"$PACKAGE_VERSION"\\//)"; const client = new OpenAI(); \`\`\` diff --git a/src/resources/files.ts b/src/resources/files.ts index 78acc40ed..4dda2f7ba 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -3,6 +3,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; import { isRequestOptions } from 'openai/core'; +import { type Response } from 'openai/_shims/index'; import { sleep } from 'openai/core'; import { APIConnectionTimeoutError } from 'openai/error'; import * as FilesAPI from 'openai/resources/files'; @@ -58,6 +59,15 @@ export class Files extends APIResource { /** * Returns the contents of the specified file. */ + content(fileId: string, options?: Core.RequestOptions): Core.APIPromise { + return this.get(`/files/${fileId}/content`, { ...options, __binaryResponse: true }); + } + + /** + * Returns the contents of the specified file. + * + * @deprecated The `.content()` method should be used instead + */ retrieveContent(fileId: string, options?: Core.RequestOptions): Core.APIPromise { return this.get(`/files/${fileId}/content`, { ...options, diff --git a/tests/api-resources/files.test.ts b/tests/api-resources/files.test.ts index a84a2aba7..9e6373aba 100644 --- a/tests/api-resources/files.test.ts +++ b/tests/api-resources/files.test.ts @@ -91,6 +91,13 @@ describe('resource files', () => { ); }); + test('content: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect(openai.files.content('string', { path: '/_stainless_unknown_path' })).rejects.toThrow( + OpenAI.NotFoundError, + ); + }); + test('retrieveContent', async () => { const responsePromise = openai.files.retrieveContent('string'); const rawResponse = await responsePromise.asResponse(); From 0532117c38b9e3f158f77c8a43d1e2eaf43a5ecf Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 9 Nov 2023 16:12:49 +0000 Subject: [PATCH 175/725] release: 4.17.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ac650bfe5..b7d9bba0f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.17.0" + ".": "4.17.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index de140b63d..798a6a4e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.17.1 (2023-11-09) + +Full Changelog: [v4.17.0...v4.17.1](https://github.com/openai/openai-node/compare/v4.17.0...v4.17.1) + +### Refactors + +* **client:** deprecate files.retrieveContent in favour of files.content ([#474](https://github.com/openai/openai-node/issues/474)) ([7c7bfc2](https://github.com/openai/openai-node/commit/7c7bfc2fad5a786c9172110e90c9566a943e49f9)) + ## 4.17.0 (2023-11-08) Full Changelog: [v4.16.2...v4.17.0](https://github.com/openai/openai-node/compare/v4.16.2...v4.17.0) diff --git a/README.md b/README.md index f174ec4ff..f05f11b8e 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.17.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.17.1/mod.ts'; ``` diff --git a/package.json b/package.json index 0ddfa10f3..ca8e904f6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.17.0", + "version": "4.17.1", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index c75285419..008e616ef 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.17.0'; // x-release-please-version +export const VERSION = '4.17.1'; // x-release-please-version From 69913f3a4b0123394029759375445dae7b4f15ab Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 9 Nov 2023 22:49:09 +0000 Subject: [PATCH 176/725] chore(internal): bump deno version number (#478) --- build-deno | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-deno b/build-deno index e179de38e..73c0accbe 100755 --- a/build-deno +++ b/build-deno @@ -15,7 +15,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "$(echo 'https://deno.land/x/openai@v4.17.0/mod.ts' | sed -E s/@\.+\\//@"$PACKAGE_VERSION"\\//)"; +import OpenAI from "$(echo 'https://deno.land/x/openai@v4.17.1/mod.ts' | sed -E s/@\.+\\//@"$PACKAGE_VERSION"\\//)"; const client = new OpenAI(); \`\`\` From 488d7317320c9cdd3a196d793b62df030de718eb Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 9 Nov 2023 22:49:31 +0000 Subject: [PATCH 177/725] release: 4.17.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b7d9bba0f..ca5caaea6 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.17.1" + ".": "4.17.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 798a6a4e1..536302812 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.17.2 (2023-11-09) + +Full Changelog: [v4.17.1...v4.17.2](https://github.com/openai/openai-node/compare/v4.17.1...v4.17.2) + +### Chores + +* **internal:** bump deno version number ([#478](https://github.com/openai/openai-node/issues/478)) ([69913f3](https://github.com/openai/openai-node/commit/69913f3a4b0123394029759375445dae7b4f15ab)) + ## 4.17.1 (2023-11-09) Full Changelog: [v4.17.0...v4.17.1](https://github.com/openai/openai-node/compare/v4.17.0...v4.17.1) diff --git a/README.md b/README.md index f05f11b8e..3012b66e4 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.17.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.17.2/mod.ts'; ``` diff --git a/package.json b/package.json index ca8e904f6..7ea418a1d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.17.1", + "version": "4.17.2", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 008e616ef..bc296d3e6 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.17.1'; // x-release-please-version +export const VERSION = '4.17.2'; // x-release-please-version From d0e2c77f1754de40d0b2a0d4fd75cd138add96a0 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 9 Nov 2023 23:47:53 +0000 Subject: [PATCH 178/725] ci: fix deno version bump (#480) --- build-deno | 8 ++++---- release-please-config.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build-deno b/build-deno index 73c0accbe..656f4f111 100755 --- a/build-deno +++ b/build-deno @@ -5,8 +5,7 @@ set -exuo pipefail rm -rf deno; mkdir deno cp -rp src/* deno -PACKAGE_VERSION=$(node -p 'require("./package.json").version') - +# x-release-please-start-version cat << EOF > deno/README.md # OpenAI Node API Library - Deno build @@ -15,17 +14,18 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "$(echo 'https://deno.land/x/openai@v4.17.1/mod.ts' | sed -E s/@\.+\\//@"$PACKAGE_VERSION"\\//)"; +import OpenAI from "https://deno.land/x/openai@v4.17.2/mod.ts"; const client = new OpenAI(); \`\`\` -Note that in many Deno environments, you can also do this: +Note that in most Deno environments, you can also do this: \`\`\`ts import OpenAI from "npm:openai"; \`\`\` EOF +# x-release-please-end rm deno/_shims/auto/*-node.ts for dir in deno/_shims deno/_shims/auto; do diff --git a/release-please-config.json b/release-please-config.json index 3e05bee84..2708cc2b7 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -61,6 +61,6 @@ "extra-files": [ "src/version.ts", "README.md", - "bin/build-deno" + "build-deno" ] } From d2d0ce57f9ebba801b8ee00ddd3d908af4be7d2d Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 9 Nov 2023 23:48:14 +0000 Subject: [PATCH 179/725] release: 4.17.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 4 ++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ca5caaea6..0225b1cf9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.17.2" + ".": "4.17.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 536302812..57bf0198e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 4.17.3 (2023-11-09) + +Full Changelog: [v4.17.2...v4.17.3](https://github.com/openai/openai-node/compare/v4.17.2...v4.17.3) + ## 4.17.2 (2023-11-09) Full Changelog: [v4.17.1...v4.17.2](https://github.com/openai/openai-node/compare/v4.17.1...v4.17.2) diff --git a/README.md b/README.md index 3012b66e4..491e66184 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.17.2/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.17.3/mod.ts'; ``` diff --git a/build-deno b/build-deno index 656f4f111..61a9cae37 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.17.2/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.17.3/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 7ea418a1d..acf20ddc4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.17.2", + "version": "4.17.3", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index bc296d3e6..7bb919088 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.17.2'; // x-release-please-version +export const VERSION = '4.17.3'; // x-release-please-version From 3013e8c73a61a397a418ca75b996f0a7dd03a744 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 10 Nov 2023 12:50:33 +0000 Subject: [PATCH 180/725] chore(internal): update jest config (#482) --- jest.config.js | 7 ++++++- src/lib/ChatCompletionRunFunctions.test.ts | 7 +++++-- tests/api-resources/audio/speech.test.ts | 3 ++- tests/api-resources/beta/chat/completions.test.ts | 10 ---------- 4 files changed, 13 insertions(+), 14 deletions(-) delete mode 100644 tests/api-resources/beta/chat/completions.test.ts diff --git a/jest.config.js b/jest.config.js index f304b9822..5fc957640 100644 --- a/jest.config.js +++ b/jest.config.js @@ -7,5 +7,10 @@ module.exports = { '^openai/_shims/auto/(.*)$': '/src/_shims/auto/$1-node', '^openai/(.*)$': '/src/$1', }, - modulePathIgnorePatterns: ['/ecosystem-tests/', '/dist/', '/deno_tests/'], + modulePathIgnorePatterns: [ + '/ecosystem-tests/', + '/dist/', + '/deno/', + '/deno_tests/', + ], }; diff --git a/src/lib/ChatCompletionRunFunctions.test.ts b/src/lib/ChatCompletionRunFunctions.test.ts index 71a99b366..a930515c4 100644 --- a/src/lib/ChatCompletionRunFunctions.test.ts +++ b/src/lib/ChatCompletionRunFunctions.test.ts @@ -530,7 +530,8 @@ function _typeTests() { } describe('resource completions', () => { - describe('runFunctions with stream: false', () => { + // TODO: re-enable + describe.skip('runFunctions with stream: false', () => { test('successful flow', async () => { const { fetch, handleRequest } = mockChatCompletionFetch(); @@ -1259,7 +1260,9 @@ describe('resource completions', () => { await listener.sanityCheck(); }); }); - describe('runFunctions with stream: true', () => { + + // TODO: re-enable + describe.skip('runFunctions with stream: true', () => { test('successful flow', async () => { const { fetch, handleRequest } = mockStreamingChatCompletionFetch(); diff --git a/tests/api-resources/audio/speech.test.ts b/tests/api-resources/audio/speech.test.ts index 0d7ecd887..02e542206 100644 --- a/tests/api-resources/audio/speech.test.ts +++ b/tests/api-resources/audio/speech.test.ts @@ -8,7 +8,8 @@ const openai = new OpenAI({ }); describe('resource speech', () => { - test('create: required and optional params', async () => { + // Mocked tests are currently broken + test.skip('create: required and optional params', async () => { const response = await openai.audio.speech.create({ input: 'string', model: 'string', diff --git a/tests/api-resources/beta/chat/completions.test.ts b/tests/api-resources/beta/chat/completions.test.ts deleted file mode 100644 index a8d0b400e..000000000 --- a/tests/api-resources/beta/chat/completions.test.ts +++ /dev/null @@ -1,10 +0,0 @@ -// File generated from our OpenAPI spec by Stainless. - -import OpenAI from 'openai'; - -const openai = new OpenAI({ - apiKey: 'My API Key', - baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', -}); - -describe('resource completions', () => {}); From b8441a7d72574d0e3f4865567b808702728dd625 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 10 Nov 2023 12:50:55 +0000 Subject: [PATCH 181/725] release: 4.17.4 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0225b1cf9..974b2af40 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.17.3" + ".": "4.17.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 57bf0198e..f0c22ec76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.17.4 (2023-11-10) + +Full Changelog: [v4.17.3...v4.17.4](https://github.com/openai/openai-node/compare/v4.17.3...v4.17.4) + +### Chores + +* **internal:** update jest config ([#482](https://github.com/openai/openai-node/issues/482)) ([3013e8c](https://github.com/openai/openai-node/commit/3013e8c73a61a397a418ca75b996f0a7dd03a744)) + ## 4.17.3 (2023-11-09) Full Changelog: [v4.17.2...v4.17.3](https://github.com/openai/openai-node/compare/v4.17.2...v4.17.3) diff --git a/README.md b/README.md index 491e66184..14e84034d 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.17.3/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.17.4/mod.ts'; ``` diff --git a/build-deno b/build-deno index 61a9cae37..0bc8c2f2b 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.17.3/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.17.4/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index acf20ddc4..fc268a9db 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.17.3", + "version": "4.17.4", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 7bb919088..29726d568 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.17.3'; // x-release-please-version +export const VERSION = '4.17.4'; // x-release-please-version From 71a300034b123eb45a5ee99b86d58d5717a57481 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 13 Nov 2023 19:14:46 +0000 Subject: [PATCH 182/725] chore: fix typo in docs and add request header for function calls (#494) --- README.md | 2 +- examples/tool-call-helpers.ts | 2 +- src/lib/ChatCompletionStream.ts | 8 +++++++- src/lib/ChatCompletionStreamingRunner.ts | 14 ++++++++++++-- 4 files changed, 21 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 14e84034d..80419523c 100644 --- a/README.md +++ b/README.md @@ -153,7 +153,7 @@ If you pass a `parse` function, it will automatically parse the `arguments` for and returns any parsing errors to the model to attempt auto-recovery. Otherwise, the args will be passed to the function you provide as a string. -If you pass `function_call: {name: …}` or `tool_call: {function: {name: …}}` instead of `auto`, +If you pass `function_call: {name: …}` or `tool_choice: {function: {name: …}}` instead of `auto`, it returns immediately after calling that function (and only loops to auto-recover parsing errors). ```ts diff --git a/examples/tool-call-helpers.ts b/examples/tool-call-helpers.ts index e750b2ab9..d87e3c3e6 100755 --- a/examples/tool-call-helpers.ts +++ b/examples/tool-call-helpers.ts @@ -85,7 +85,7 @@ async function main() { console.log(runner.messages); console.log(); - console.log('final chat competion'); + console.log('final chat completion'); console.dir(result, { depth: null }); } diff --git a/src/lib/ChatCompletionStream.ts b/src/lib/ChatCompletionStream.ts index 1f14c8e33..b4534639f 100644 --- a/src/lib/ChatCompletionStream.ts +++ b/src/lib/ChatCompletionStream.ts @@ -52,7 +52,13 @@ export class ChatCompletionStream options?: Core.RequestOptions, ): ChatCompletionStream { const runner = new ChatCompletionStream(); - runner._run(() => runner._runChatCompletion(completions, { ...params, stream: true }, options)); + runner._run(() => + runner._runChatCompletion( + completions, + { ...params, stream: true }, + { ...options, headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'stream' } }, + ), + ); return runner; } diff --git a/src/lib/ChatCompletionStreamingRunner.ts b/src/lib/ChatCompletionStreamingRunner.ts index 8ea911ea0..a2da456e6 100644 --- a/src/lib/ChatCompletionStreamingRunner.ts +++ b/src/lib/ChatCompletionStreamingRunner.ts @@ -43,7 +43,12 @@ export class ChatCompletionStreamingRunner options?: RunnerOptions, ): ChatCompletionStreamingRunner { const runner = new ChatCompletionStreamingRunner(); - runner._run(() => runner._runFunctions(completions, params, options)); + runner._run(() => + runner._runFunctions(completions, params, { + ...options, + headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'runFunctions' }, + }), + ); return runner; } @@ -53,7 +58,12 @@ export class ChatCompletionStreamingRunner options?: RunnerOptions, ): ChatCompletionStreamingRunner { const runner = new ChatCompletionStreamingRunner(); - runner._run(() => runner._runTools(completions, params, options)); + runner._run(() => + runner._runTools(completions, params, { + ...options, + headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'runTools' }, + }), + ); return runner; } } From 7dd4557c6ab3a6eeb212c013ebc1090ffd15b47f Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 13 Nov 2023 19:15:08 +0000 Subject: [PATCH 183/725] release: 4.17.5 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 974b2af40..960471fc1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.17.4" + ".": "4.17.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f0c22ec76..fa1bd5fe6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.17.5 (2023-11-13) + +Full Changelog: [v4.17.4...v4.17.5](https://github.com/openai/openai-node/compare/v4.17.4...v4.17.5) + +### Chores + +* fix typo in docs and add request header for function calls ([#494](https://github.com/openai/openai-node/issues/494)) ([22ce244](https://github.com/openai/openai-node/commit/22ce2443a77f10988b3215bd81ba17d4eda4b10e)) + ## 4.17.4 (2023-11-10) Full Changelog: [v4.17.3...v4.17.4](https://github.com/openai/openai-node/compare/v4.17.3...v4.17.4) diff --git a/README.md b/README.md index 80419523c..f5af0041c 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.17.4/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.17.5/mod.ts'; ``` diff --git a/build-deno b/build-deno index 0bc8c2f2b..31b392df9 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.17.4/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.17.5/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index fc268a9db..9a9483d54 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.17.4", + "version": "4.17.5", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 29726d568..73e2476b6 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.17.4'; // x-release-please-version +export const VERSION = '4.17.5'; // x-release-please-version From 206a43baa7186d55031113eda7a1ca1e7a3453a1 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 14 Nov 2023 03:47:43 +0000 Subject: [PATCH 184/725] feat(api): add gpt-3.5-turbo-1106 (#496) --- src/resources/chat/completions.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 232dc9c8a..57aa68ff4 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -567,6 +567,7 @@ export interface ChatCompletionCreateParamsBase { | 'gpt-4-32k' | 'gpt-4-32k-0314' | 'gpt-4-32k-0613' + | 'gpt-3.5-turbo-1106' | 'gpt-3.5-turbo' | 'gpt-3.5-turbo-16k' | 'gpt-3.5-turbo-0301' From 09127e8425bb07ea0f9e6a80470edef6a87dcea7 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 14 Nov 2023 03:48:04 +0000 Subject: [PATCH 185/725] release: 4.18.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 960471fc1..e8eb8d5a8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.17.5" + ".": "4.18.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index fa1bd5fe6..f9f8fde66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.18.0 (2023-11-14) + +Full Changelog: [v4.17.5...v4.18.0](https://github.com/openai/openai-node/compare/v4.17.5...v4.18.0) + +### Features + +* **api:** add gpt-3.5-turbo-1106 ([#496](https://github.com/openai/openai-node/issues/496)) ([45f7672](https://github.com/openai/openai-node/commit/45f7672ccf4856ac309b08c6c96f0e73ab48b525)) + ## 4.17.5 (2023-11-13) Full Changelog: [v4.17.4...v4.17.5](https://github.com/openai/openai-node/compare/v4.17.4...v4.17.5) diff --git a/README.md b/README.md index f5af0041c..a59301184 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.17.5/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.18.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index 31b392df9..e2c39cb96 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.17.5/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.18.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 9a9483d54..f6acf66ef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.17.5", + "version": "4.18.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 73e2476b6..bb65b9738 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.17.5'; // x-release-please-version +export const VERSION = '4.18.0'; // x-release-please-version From bdb79f9ed2ad4fdebae3c42cdad97f2ffa109589 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 15 Nov 2023 12:59:47 +0000 Subject: [PATCH 186/725] feat(api): updates (#501) --- src/core.ts | 21 ------------------- src/resource.ts | 19 +++-------------- src/resources/audio/audio.ts | 6 +++--- src/resources/audio/speech.ts | 2 +- src/resources/audio/transcriptions.ts | 2 +- src/resources/audio/translations.ts | 2 +- src/resources/beta/assistants/assistants.ts | 12 +++++------ src/resources/beta/assistants/files.ts | 8 +++---- src/resources/beta/beta.ts | 6 +++--- src/resources/beta/chat/chat.ts | 2 +- src/resources/beta/chat/completions.ts | 10 ++++----- src/resources/beta/threads/messages/files.ts | 4 ++-- .../beta/threads/messages/messages.ts | 10 ++++----- src/resources/beta/threads/runs/runs.ts | 14 ++++++------- src/resources/beta/threads/runs/steps.ts | 4 ++-- src/resources/beta/threads/threads.ts | 14 ++++++------- src/resources/chat/chat.ts | 2 +- src/resources/chat/completions.ts | 2 +- src/resources/completions.ts | 2 +- src/resources/edits.ts | 2 +- src/resources/embeddings.ts | 2 +- src/resources/files.ts | 12 +++++------ src/resources/fine-tunes.ts | 10 ++++----- src/resources/fine-tuning/fine-tuning.ts | 2 +- src/resources/fine-tuning/jobs.ts | 10 ++++----- src/resources/images.ts | 6 +++--- src/resources/models.ts | 6 +++--- src/resources/moderations.ts | 2 +- 28 files changed, 80 insertions(+), 114 deletions(-) diff --git a/src/core.ts b/src/core.ts index 5ff672620..70b8e679c 100644 --- a/src/core.ts +++ b/src/core.ts @@ -564,27 +564,6 @@ export abstract class APIClient { } } -export class APIResource { - protected client: APIClient; - constructor(client: APIClient) { - this.client = client; - - this.get = client.get.bind(client); - this.post = client.post.bind(client); - this.patch = client.patch.bind(client); - this.put = client.put.bind(client); - this.delete = client.delete.bind(client); - this.getAPIList = client.getAPIList.bind(client); - } - - protected get: APIClient['get']; - protected post: APIClient['post']; - protected patch: APIClient['patch']; - protected put: APIClient['put']; - protected delete: APIClient['delete']; - protected getAPIList: APIClient['getAPIList']; -} - export type PageInfo = { url: URL } | { params: Record | null }; export abstract class AbstractPage implements AsyncIterable { diff --git a/src/resource.ts b/src/resource.ts index 9c58ae78b..0bf87cf33 100644 --- a/src/resource.ts +++ b/src/resource.ts @@ -3,22 +3,9 @@ import type { OpenAI } from './index'; export class APIResource { - protected client: OpenAI; - constructor(client: OpenAI) { - this.client = client; + protected _client: OpenAI; - this.get = client.get.bind(client); - this.post = client.post.bind(client); - this.patch = client.patch.bind(client); - this.put = client.put.bind(client); - this.delete = client.delete.bind(client); - this.getAPIList = client.getAPIList.bind(client); + constructor(client: OpenAI) { + this._client = client; } - - protected get: OpenAI['get']; - protected post: OpenAI['post']; - protected patch: OpenAI['patch']; - protected put: OpenAI['put']; - protected delete: OpenAI['delete']; - protected getAPIList: OpenAI['getAPIList']; } diff --git a/src/resources/audio/audio.ts b/src/resources/audio/audio.ts index ee8c28c6b..960577b0d 100644 --- a/src/resources/audio/audio.ts +++ b/src/resources/audio/audio.ts @@ -6,9 +6,9 @@ import * as TranscriptionsAPI from 'openai/resources/audio/transcriptions'; import * as TranslationsAPI from 'openai/resources/audio/translations'; export class Audio extends APIResource { - transcriptions: TranscriptionsAPI.Transcriptions = new TranscriptionsAPI.Transcriptions(this.client); - translations: TranslationsAPI.Translations = new TranslationsAPI.Translations(this.client); - speech: SpeechAPI.Speech = new SpeechAPI.Speech(this.client); + transcriptions: TranscriptionsAPI.Transcriptions = new TranscriptionsAPI.Transcriptions(this._client); + translations: TranslationsAPI.Translations = new TranslationsAPI.Translations(this._client); + speech: SpeechAPI.Speech = new SpeechAPI.Speech(this._client); } export namespace Audio { diff --git a/src/resources/audio/speech.ts b/src/resources/audio/speech.ts index c8199e746..89e426847 100644 --- a/src/resources/audio/speech.ts +++ b/src/resources/audio/speech.ts @@ -10,7 +10,7 @@ export class Speech extends APIResource { * Generates audio from the input text. */ create(body: SpeechCreateParams, options?: Core.RequestOptions): Core.APIPromise { - return this.post('/audio/speech', { body, ...options, __binaryResponse: true }); + return this._client.post('/audio/speech', { body, ...options, __binaryResponse: true }); } } diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index feb37df09..aaf62bd29 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -10,7 +10,7 @@ export class Transcriptions extends APIResource { * Transcribes audio into the input language. */ create(body: TranscriptionCreateParams, options?: Core.RequestOptions): Core.APIPromise { - return this.post('/audio/transcriptions', multipartFormRequestOptions({ body, ...options })); + return this._client.post('/audio/transcriptions', multipartFormRequestOptions({ body, ...options })); } } diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index 58e3ab7e7..54583ce1f 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -10,7 +10,7 @@ export class Translations extends APIResource { * Translates audio into English. */ create(body: TranslationCreateParams, options?: Core.RequestOptions): Core.APIPromise { - return this.post('/audio/translations', multipartFormRequestOptions({ body, ...options })); + return this._client.post('/audio/translations', multipartFormRequestOptions({ body, ...options })); } } diff --git a/src/resources/beta/assistants/assistants.ts b/src/resources/beta/assistants/assistants.ts index 052a3d666..3b13a84bb 100644 --- a/src/resources/beta/assistants/assistants.ts +++ b/src/resources/beta/assistants/assistants.ts @@ -9,13 +9,13 @@ import * as FilesAPI from 'openai/resources/beta/assistants/files'; import { CursorPage, type CursorPageParams } from 'openai/pagination'; export class Assistants extends APIResource { - files: FilesAPI.Files = new FilesAPI.Files(this.client); + files: FilesAPI.Files = new FilesAPI.Files(this._client); /** * Create an assistant with a model and instructions. */ create(body: AssistantCreateParams, options?: Core.RequestOptions): Core.APIPromise { - return this.post('/assistants', { + return this._client.post('/assistants', { body, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, @@ -26,7 +26,7 @@ export class Assistants extends APIResource { * Retrieves an assistant. */ retrieve(assistantId: string, options?: Core.RequestOptions): Core.APIPromise { - return this.get(`/assistants/${assistantId}`, { + return this._client.get(`/assistants/${assistantId}`, { ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, }); @@ -40,7 +40,7 @@ export class Assistants extends APIResource { body: AssistantUpdateParams, options?: Core.RequestOptions, ): Core.APIPromise { - return this.post(`/assistants/${assistantId}`, { + return this._client.post(`/assistants/${assistantId}`, { body, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, @@ -62,7 +62,7 @@ export class Assistants extends APIResource { if (isRequestOptions(query)) { return this.list({}, query); } - return this.getAPIList('/assistants', AssistantsPage, { + return this._client.getAPIList('/assistants', AssistantsPage, { query, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, @@ -73,7 +73,7 @@ export class Assistants extends APIResource { * Delete an assistant. */ del(assistantId: string, options?: Core.RequestOptions): Core.APIPromise { - return this.delete(`/assistants/${assistantId}`, { + return this._client.delete(`/assistants/${assistantId}`, { ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, }); diff --git a/src/resources/beta/assistants/files.ts b/src/resources/beta/assistants/files.ts index 7733cff9a..7de700e50 100644 --- a/src/resources/beta/assistants/files.ts +++ b/src/resources/beta/assistants/files.ts @@ -17,7 +17,7 @@ export class Files extends APIResource { body: FileCreateParams, options?: Core.RequestOptions, ): Core.APIPromise { - return this.post(`/assistants/${assistantId}/files`, { + return this._client.post(`/assistants/${assistantId}/files`, { body, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, @@ -32,7 +32,7 @@ export class Files extends APIResource { fileId: string, options?: Core.RequestOptions, ): Core.APIPromise { - return this.get(`/assistants/${assistantId}/files/${fileId}`, { + return this._client.get(`/assistants/${assistantId}/files/${fileId}`, { ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, }); @@ -58,7 +58,7 @@ export class Files extends APIResource { if (isRequestOptions(query)) { return this.list(assistantId, {}, query); } - return this.getAPIList(`/assistants/${assistantId}/files`, AssistantFilesPage, { + return this._client.getAPIList(`/assistants/${assistantId}/files`, AssistantFilesPage, { query, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, @@ -73,7 +73,7 @@ export class Files extends APIResource { fileId: string, options?: Core.RequestOptions, ): Core.APIPromise { - return this.delete(`/assistants/${assistantId}/files/${fileId}`, { + return this._client.delete(`/assistants/${assistantId}/files/${fileId}`, { ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, }); diff --git a/src/resources/beta/beta.ts b/src/resources/beta/beta.ts index ed721d8f8..5fd99990d 100644 --- a/src/resources/beta/beta.ts +++ b/src/resources/beta/beta.ts @@ -6,9 +6,9 @@ import * as ChatAPI from 'openai/resources/beta/chat/chat'; import * as ThreadsAPI from 'openai/resources/beta/threads/threads'; export class Beta extends APIResource { - chat: ChatAPI.Chat = new ChatAPI.Chat(this.client); - assistants: AssistantsAPI.Assistants = new AssistantsAPI.Assistants(this.client); - threads: ThreadsAPI.Threads = new ThreadsAPI.Threads(this.client); + chat: ChatAPI.Chat = new ChatAPI.Chat(this._client); + assistants: AssistantsAPI.Assistants = new AssistantsAPI.Assistants(this._client); + threads: ThreadsAPI.Threads = new ThreadsAPI.Threads(this._client); } export namespace Beta { diff --git a/src/resources/beta/chat/chat.ts b/src/resources/beta/chat/chat.ts index c871fab2f..a9cadc681 100644 --- a/src/resources/beta/chat/chat.ts +++ b/src/resources/beta/chat/chat.ts @@ -4,7 +4,7 @@ import { APIResource } from 'openai/resource'; import * as CompletionsAPI from 'openai/resources/beta/chat/completions'; export class Chat extends APIResource { - completions: CompletionsAPI.Completions = new CompletionsAPI.Completions(this.client); + completions: CompletionsAPI.Completions = new CompletionsAPI.Completions(this._client); } export namespace Chat { diff --git a/src/resources/beta/chat/completions.ts b/src/resources/beta/chat/completions.ts index 1164b787f..f4904acb7 100644 --- a/src/resources/beta/chat/completions.ts +++ b/src/resources/beta/chat/completions.ts @@ -53,13 +53,13 @@ export class Completions extends APIResource { ): ChatCompletionRunner | ChatCompletionStreamingRunner { if (body.stream) { return ChatCompletionStreamingRunner.runFunctions( - this.client.chat.completions, + this._client.chat.completions, body as ChatCompletionStreamingFunctionRunnerParams, options, ); } return ChatCompletionRunner.runFunctions( - this.client.chat.completions, + this._client.chat.completions, body as ChatCompletionFunctionRunnerParams, options, ); @@ -90,13 +90,13 @@ export class Completions extends APIResource { ): ChatCompletionRunner | ChatCompletionStreamingRunner { if (body.stream) { return ChatCompletionStreamingRunner.runTools( - this.client.chat.completions, + this._client.chat.completions, body as ChatCompletionStreamingToolRunnerParams, options, ); } return ChatCompletionRunner.runTools( - this.client.chat.completions, + this._client.chat.completions, body as ChatCompletionToolRunnerParams, options, ); @@ -106,6 +106,6 @@ export class Completions extends APIResource { * Creates a chat completion stream */ stream(body: ChatCompletionStreamParams, options?: Core.RequestOptions): ChatCompletionStream { - return ChatCompletionStream.createChatCompletion(this.client.chat.completions, body, options); + return ChatCompletionStream.createChatCompletion(this._client.chat.completions, body, options); } } diff --git a/src/resources/beta/threads/messages/files.ts b/src/resources/beta/threads/messages/files.ts index 4bbc06538..72c01bb97 100644 --- a/src/resources/beta/threads/messages/files.ts +++ b/src/resources/beta/threads/messages/files.ts @@ -16,7 +16,7 @@ export class Files extends APIResource { fileId: string, options?: Core.RequestOptions, ): Core.APIPromise { - return this.get(`/threads/${threadId}/messages/${messageId}/files/${fileId}`, { + return this._client.get(`/threads/${threadId}/messages/${messageId}/files/${fileId}`, { ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, }); @@ -45,7 +45,7 @@ export class Files extends APIResource { if (isRequestOptions(query)) { return this.list(threadId, messageId, {}, query); } - return this.getAPIList(`/threads/${threadId}/messages/${messageId}/files`, MessageFilesPage, { + return this._client.getAPIList(`/threads/${threadId}/messages/${messageId}/files`, MessageFilesPage, { query, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, diff --git a/src/resources/beta/threads/messages/messages.ts b/src/resources/beta/threads/messages/messages.ts index cf7bf35e5..40b436829 100644 --- a/src/resources/beta/threads/messages/messages.ts +++ b/src/resources/beta/threads/messages/messages.ts @@ -8,7 +8,7 @@ import * as FilesAPI from 'openai/resources/beta/threads/messages/files'; import { CursorPage, type CursorPageParams } from 'openai/pagination'; export class Messages extends APIResource { - files: FilesAPI.Files = new FilesAPI.Files(this.client); + files: FilesAPI.Files = new FilesAPI.Files(this._client); /** * Create a message. @@ -18,7 +18,7 @@ export class Messages extends APIResource { body: MessageCreateParams, options?: Core.RequestOptions, ): Core.APIPromise { - return this.post(`/threads/${threadId}/messages`, { + return this._client.post(`/threads/${threadId}/messages`, { body, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, @@ -33,7 +33,7 @@ export class Messages extends APIResource { messageId: string, options?: Core.RequestOptions, ): Core.APIPromise { - return this.get(`/threads/${threadId}/messages/${messageId}`, { + return this._client.get(`/threads/${threadId}/messages/${messageId}`, { ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, }); @@ -48,7 +48,7 @@ export class Messages extends APIResource { body: MessageUpdateParams, options?: Core.RequestOptions, ): Core.APIPromise { - return this.post(`/threads/${threadId}/messages/${messageId}`, { + return this._client.post(`/threads/${threadId}/messages/${messageId}`, { body, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, @@ -72,7 +72,7 @@ export class Messages extends APIResource { if (isRequestOptions(query)) { return this.list(threadId, {}, query); } - return this.getAPIList(`/threads/${threadId}/messages`, ThreadMessagesPage, { + return this._client.getAPIList(`/threads/${threadId}/messages`, ThreadMessagesPage, { query, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index c2fc93a3c..f59fdff3f 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -9,13 +9,13 @@ import * as StepsAPI from 'openai/resources/beta/threads/runs/steps'; import { CursorPage, type CursorPageParams } from 'openai/pagination'; export class Runs extends APIResource { - steps: StepsAPI.Steps = new StepsAPI.Steps(this.client); + steps: StepsAPI.Steps = new StepsAPI.Steps(this._client); /** * Create a run. */ create(threadId: string, body: RunCreateParams, options?: Core.RequestOptions): Core.APIPromise { - return this.post(`/threads/${threadId}/runs`, { + return this._client.post(`/threads/${threadId}/runs`, { body, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, @@ -26,7 +26,7 @@ export class Runs extends APIResource { * Retrieves a run. */ retrieve(threadId: string, runId: string, options?: Core.RequestOptions): Core.APIPromise { - return this.get(`/threads/${threadId}/runs/${runId}`, { + return this._client.get(`/threads/${threadId}/runs/${runId}`, { ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, }); @@ -41,7 +41,7 @@ export class Runs extends APIResource { body: RunUpdateParams, options?: Core.RequestOptions, ): Core.APIPromise { - return this.post(`/threads/${threadId}/runs/${runId}`, { + return this._client.post(`/threads/${threadId}/runs/${runId}`, { body, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, @@ -65,7 +65,7 @@ export class Runs extends APIResource { if (isRequestOptions(query)) { return this.list(threadId, {}, query); } - return this.getAPIList(`/threads/${threadId}/runs`, RunsPage, { + return this._client.getAPIList(`/threads/${threadId}/runs`, RunsPage, { query, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, @@ -76,7 +76,7 @@ export class Runs extends APIResource { * Cancels a run that is `in_progress`. */ cancel(threadId: string, runId: string, options?: Core.RequestOptions): Core.APIPromise { - return this.post(`/threads/${threadId}/runs/${runId}/cancel`, { + return this._client.post(`/threads/${threadId}/runs/${runId}/cancel`, { ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, }); @@ -94,7 +94,7 @@ export class Runs extends APIResource { body: RunSubmitToolOutputsParams, options?: Core.RequestOptions, ): Core.APIPromise { - return this.post(`/threads/${threadId}/runs/${runId}/submit_tool_outputs`, { + return this._client.post(`/threads/${threadId}/runs/${runId}/submit_tool_outputs`, { body, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, diff --git a/src/resources/beta/threads/runs/steps.ts b/src/resources/beta/threads/runs/steps.ts index 6f3b5624a..9a335a1aa 100644 --- a/src/resources/beta/threads/runs/steps.ts +++ b/src/resources/beta/threads/runs/steps.ts @@ -16,7 +16,7 @@ export class Steps extends APIResource { stepId: string, options?: Core.RequestOptions, ): Core.APIPromise { - return this.get(`/threads/${threadId}/runs/${runId}/steps/${stepId}`, { + return this._client.get(`/threads/${threadId}/runs/${runId}/steps/${stepId}`, { ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, }); @@ -45,7 +45,7 @@ export class Steps extends APIResource { if (isRequestOptions(query)) { return this.list(threadId, runId, {}, query); } - return this.getAPIList(`/threads/${threadId}/runs/${runId}/steps`, RunStepsPage, { + return this._client.getAPIList(`/threads/${threadId}/runs/${runId}/steps`, RunStepsPage, { query, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index c147cefad..8bbe1804f 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -9,8 +9,8 @@ import * as MessagesAPI from 'openai/resources/beta/threads/messages/messages'; import * as RunsAPI from 'openai/resources/beta/threads/runs/runs'; export class Threads extends APIResource { - runs: RunsAPI.Runs = new RunsAPI.Runs(this.client); - messages: MessagesAPI.Messages = new MessagesAPI.Messages(this.client); + runs: RunsAPI.Runs = new RunsAPI.Runs(this._client); + messages: MessagesAPI.Messages = new MessagesAPI.Messages(this._client); /** * Create a thread. @@ -24,7 +24,7 @@ export class Threads extends APIResource { if (isRequestOptions(body)) { return this.create({}, body); } - return this.post('/threads', { + return this._client.post('/threads', { body, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, @@ -35,7 +35,7 @@ export class Threads extends APIResource { * Retrieves a thread. */ retrieve(threadId: string, options?: Core.RequestOptions): Core.APIPromise { - return this.get(`/threads/${threadId}`, { + return this._client.get(`/threads/${threadId}`, { ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, }); @@ -45,7 +45,7 @@ export class Threads extends APIResource { * Modifies a thread. */ update(threadId: string, body: ThreadUpdateParams, options?: Core.RequestOptions): Core.APIPromise { - return this.post(`/threads/${threadId}`, { + return this._client.post(`/threads/${threadId}`, { body, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, @@ -56,7 +56,7 @@ export class Threads extends APIResource { * Delete a thread. */ del(threadId: string, options?: Core.RequestOptions): Core.APIPromise { - return this.delete(`/threads/${threadId}`, { + return this._client.delete(`/threads/${threadId}`, { ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, }); @@ -66,7 +66,7 @@ export class Threads extends APIResource { * Create a thread and run it in one request. */ createAndRun(body: ThreadCreateAndRunParams, options?: Core.RequestOptions): Core.APIPromise { - return this.post('/threads/runs', { + return this._client.post('/threads/runs', { body, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 007c9271a..63e857e9b 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -4,7 +4,7 @@ import { APIResource } from 'openai/resource'; import * as CompletionsAPI from 'openai/resources/chat/completions'; export class Chat extends APIResource { - completions: CompletionsAPI.Completions = new CompletionsAPI.Completions(this.client); + completions: CompletionsAPI.Completions = new CompletionsAPI.Completions(this._client); } export namespace Chat { diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 57aa68ff4..3f83a7dd4 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -28,7 +28,7 @@ export class Completions extends APIResource { body: ChatCompletionCreateParams, options?: Core.RequestOptions, ): APIPromise | APIPromise> { - return this.post('/chat/completions', { body, ...options, stream: body.stream ?? false }) as + return this._client.post('/chat/completions', { body, ...options, stream: body.stream ?? false }) as | APIPromise | APIPromise>; } diff --git a/src/resources/completions.ts b/src/resources/completions.ts index c314e7cf8..0bee93131 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -23,7 +23,7 @@ export class Completions extends APIResource { body: CompletionCreateParams, options?: Core.RequestOptions, ): APIPromise | APIPromise> { - return this.post('/completions', { body, ...options, stream: body.stream ?? false }) as + return this._client.post('/completions', { body, ...options, stream: body.stream ?? false }) as | APIPromise | APIPromise>; } diff --git a/src/resources/edits.ts b/src/resources/edits.ts index a6512a1e9..0b7b4802b 100644 --- a/src/resources/edits.ts +++ b/src/resources/edits.ts @@ -14,7 +14,7 @@ export class Edits extends APIResource { * https://openai.com/blog/gpt-4-api-general-availability#deprecation-of-the-edits-api */ create(body: EditCreateParams, options?: Core.RequestOptions): Core.APIPromise { - return this.post('/edits', { body, ...options }); + return this._client.post('/edits', { body, ...options }); } } diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index 93637821d..7ace4589d 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -12,7 +12,7 @@ export class Embeddings extends APIResource { body: EmbeddingCreateParams, options?: Core.RequestOptions, ): Core.APIPromise { - return this.post('/embeddings', { body, ...options }); + return this._client.post('/embeddings', { body, ...options }); } } diff --git a/src/resources/files.ts b/src/resources/files.ts index 4dda2f7ba..8e3a759d9 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -24,14 +24,14 @@ export class Files extends APIResource { * storage limits. */ create(body: FileCreateParams, options?: Core.RequestOptions): Core.APIPromise { - return this.post('/files', multipartFormRequestOptions({ body, ...options })); + return this._client.post('/files', multipartFormRequestOptions({ body, ...options })); } /** * Returns information about a specific file. */ retrieve(fileId: string, options?: Core.RequestOptions): Core.APIPromise { - return this.get(`/files/${fileId}`, options); + return this._client.get(`/files/${fileId}`, options); } /** @@ -46,21 +46,21 @@ export class Files extends APIResource { if (isRequestOptions(query)) { return this.list({}, query); } - return this.getAPIList('/files', FileObjectsPage, { query, ...options }); + return this._client.getAPIList('/files', FileObjectsPage, { query, ...options }); } /** * Delete a file. */ del(fileId: string, options?: Core.RequestOptions): Core.APIPromise { - return this.delete(`/files/${fileId}`, options); + return this._client.delete(`/files/${fileId}`, options); } /** * Returns the contents of the specified file. */ content(fileId: string, options?: Core.RequestOptions): Core.APIPromise { - return this.get(`/files/${fileId}/content`, { ...options, __binaryResponse: true }); + return this._client.get(`/files/${fileId}/content`, { ...options, __binaryResponse: true }); } /** @@ -69,7 +69,7 @@ export class Files extends APIResource { * @deprecated The `.content()` method should be used instead */ retrieveContent(fileId: string, options?: Core.RequestOptions): Core.APIPromise { - return this.get(`/files/${fileId}/content`, { + return this._client.get(`/files/${fileId}/content`, { ...options, headers: { Accept: 'application/json', ...options?.headers }, }); diff --git a/src/resources/fine-tunes.ts b/src/resources/fine-tunes.ts index 59551452f..8e8193720 100644 --- a/src/resources/fine-tunes.ts +++ b/src/resources/fine-tunes.ts @@ -18,7 +18,7 @@ export class FineTunes extends APIResource { * [Learn more about fine-tuning](https://platform.openai.com/docs/guides/legacy-fine-tuning) */ create(body: FineTuneCreateParams, options?: Core.RequestOptions): Core.APIPromise { - return this.post('/fine-tunes', { body, ...options }); + return this._client.post('/fine-tunes', { body, ...options }); } /** @@ -27,21 +27,21 @@ export class FineTunes extends APIResource { * [Learn more about fine-tuning](https://platform.openai.com/docs/guides/legacy-fine-tuning) */ retrieve(fineTuneId: string, options?: Core.RequestOptions): Core.APIPromise { - return this.get(`/fine-tunes/${fineTuneId}`, options); + return this._client.get(`/fine-tunes/${fineTuneId}`, options); } /** * List your organization's fine-tuning jobs */ list(options?: Core.RequestOptions): Core.PagePromise { - return this.getAPIList('/fine-tunes', FineTunesPage, options); + return this._client.getAPIList('/fine-tunes', FineTunesPage, options); } /** * Immediately cancel a fine-tune job. */ cancel(fineTuneId: string, options?: Core.RequestOptions): Core.APIPromise { - return this.post(`/fine-tunes/${fineTuneId}/cancel`, options); + return this._client.post(`/fine-tunes/${fineTuneId}/cancel`, options); } /** @@ -67,7 +67,7 @@ export class FineTunes extends APIResource { query?: FineTuneListEventsParams | undefined, options?: Core.RequestOptions, ): APIPromise | APIPromise> { - return this.get(`/fine-tunes/${fineTuneId}/events`, { + return this._client.get(`/fine-tunes/${fineTuneId}/events`, { query, timeout: 86400000, ...options, diff --git a/src/resources/fine-tuning/fine-tuning.ts b/src/resources/fine-tuning/fine-tuning.ts index 3c0a5a852..5d2d27ac3 100644 --- a/src/resources/fine-tuning/fine-tuning.ts +++ b/src/resources/fine-tuning/fine-tuning.ts @@ -4,7 +4,7 @@ import { APIResource } from 'openai/resource'; import * as JobsAPI from 'openai/resources/fine-tuning/jobs'; export class FineTuning extends APIResource { - jobs: JobsAPI.Jobs = new JobsAPI.Jobs(this.client); + jobs: JobsAPI.Jobs = new JobsAPI.Jobs(this._client); } export namespace FineTuning { diff --git a/src/resources/fine-tuning/jobs.ts b/src/resources/fine-tuning/jobs.ts index ad5ef3e0b..9e013b27a 100644 --- a/src/resources/fine-tuning/jobs.ts +++ b/src/resources/fine-tuning/jobs.ts @@ -16,7 +16,7 @@ export class Jobs extends APIResource { * [Learn more about fine-tuning](https://platform.openai.com/docs/guides/fine-tuning) */ create(body: JobCreateParams, options?: Core.RequestOptions): Core.APIPromise { - return this.post('/fine_tuning/jobs', { body, ...options }); + return this._client.post('/fine_tuning/jobs', { body, ...options }); } /** @@ -25,7 +25,7 @@ export class Jobs extends APIResource { * [Learn more about fine-tuning](https://platform.openai.com/docs/guides/fine-tuning) */ retrieve(fineTuningJobId: string, options?: Core.RequestOptions): Core.APIPromise { - return this.get(`/fine_tuning/jobs/${fineTuningJobId}`, options); + return this._client.get(`/fine_tuning/jobs/${fineTuningJobId}`, options); } /** @@ -43,14 +43,14 @@ export class Jobs extends APIResource { if (isRequestOptions(query)) { return this.list({}, query); } - return this.getAPIList('/fine_tuning/jobs', FineTuningJobsPage, { query, ...options }); + return this._client.getAPIList('/fine_tuning/jobs', FineTuningJobsPage, { query, ...options }); } /** * Immediately cancel a fine-tune job. */ cancel(fineTuningJobId: string, options?: Core.RequestOptions): Core.APIPromise { - return this.post(`/fine_tuning/jobs/${fineTuningJobId}/cancel`, options); + return this._client.post(`/fine_tuning/jobs/${fineTuningJobId}/cancel`, options); } /** @@ -73,7 +73,7 @@ export class Jobs extends APIResource { if (isRequestOptions(query)) { return this.listEvents(fineTuningJobId, {}, query); } - return this.getAPIList(`/fine_tuning/jobs/${fineTuningJobId}/events`, FineTuningJobEventsPage, { + return this._client.getAPIList(`/fine_tuning/jobs/${fineTuningJobId}/events`, FineTuningJobEventsPage, { query, ...options, }); diff --git a/src/resources/images.ts b/src/resources/images.ts index 36744cb38..4bc654903 100644 --- a/src/resources/images.ts +++ b/src/resources/images.ts @@ -13,21 +13,21 @@ export class Images extends APIResource { body: ImageCreateVariationParams, options?: Core.RequestOptions, ): Core.APIPromise { - return this.post('/images/variations', multipartFormRequestOptions({ body, ...options })); + return this._client.post('/images/variations', multipartFormRequestOptions({ body, ...options })); } /** * Creates an edited or extended image given an original image and a prompt. */ edit(body: ImageEditParams, options?: Core.RequestOptions): Core.APIPromise { - return this.post('/images/edits', multipartFormRequestOptions({ body, ...options })); + return this._client.post('/images/edits', multipartFormRequestOptions({ body, ...options })); } /** * Creates an image given a prompt. */ generate(body: ImageGenerateParams, options?: Core.RequestOptions): Core.APIPromise { - return this.post('/images/generations', { body, ...options }); + return this._client.post('/images/generations', { body, ...options }); } } diff --git a/src/resources/models.ts b/src/resources/models.ts index 4954ab4dd..6c6c3379c 100644 --- a/src/resources/models.ts +++ b/src/resources/models.ts @@ -11,7 +11,7 @@ export class Models extends APIResource { * the owner and permissioning. */ retrieve(model: string, options?: Core.RequestOptions): Core.APIPromise { - return this.get(`/models/${model}`, options); + return this._client.get(`/models/${model}`, options); } /** @@ -19,7 +19,7 @@ export class Models extends APIResource { * one such as the owner and availability. */ list(options?: Core.RequestOptions): Core.PagePromise { - return this.getAPIList('/models', ModelsPage, options); + return this._client.getAPIList('/models', ModelsPage, options); } /** @@ -27,7 +27,7 @@ export class Models extends APIResource { * delete a model. */ del(model: string, options?: Core.RequestOptions): Core.APIPromise { - return this.delete(`/models/${model}`, options); + return this._client.delete(`/models/${model}`, options); } } diff --git a/src/resources/moderations.ts b/src/resources/moderations.ts index 21603ceea..5beda53ac 100644 --- a/src/resources/moderations.ts +++ b/src/resources/moderations.ts @@ -12,7 +12,7 @@ export class Moderations extends APIResource { body: ModerationCreateParams, options?: Core.RequestOptions, ): Core.APIPromise { - return this.post('/moderations', { body, ...options }); + return this._client.post('/moderations', { body, ...options }); } } From 049ce6fa66ebe9a6aa0d64dead1e5fd8c3da1083 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 15 Nov 2023 13:00:12 +0000 Subject: [PATCH 187/725] release: 4.19.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e8eb8d5a8..bdabf6962 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.18.0" + ".": "4.19.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f9f8fde66..5e1a0dd4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.19.0 (2023-11-15) + +Full Changelog: [v4.18.0...v4.19.0](https://github.com/openai/openai-node/compare/v4.18.0...v4.19.0) + +### Features + +* **api:** updates ([#501](https://github.com/openai/openai-node/issues/501)) ([944d58e](https://github.com/openai/openai-node/commit/944d58e5fc46f1a0671aaa2b809d28e67edf6023)) + ## 4.18.0 (2023-11-14) Full Changelog: [v4.17.5...v4.18.0](https://github.com/openai/openai-node/compare/v4.17.5...v4.18.0) diff --git a/README.md b/README.md index a59301184..45d7ba986 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.18.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.19.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index e2c39cb96..db5036e82 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.18.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.19.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index f6acf66ef..1cf242179 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.18.0", + "version": "4.19.0", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index bb65b9738..afe91b0bb 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.18.0'; // x-release-please-version +export const VERSION = '4.19.0'; // x-release-please-version From 7659ab31650eb178c74272c3ae8dbf1e10b30e5d Mon Sep 17 00:00:00 2001 From: Atty Eleti Date: Sat, 18 Nov 2023 18:21:53 -0800 Subject: [PATCH 188/725] [github] Add a manual workflow to publish openai-deno-build --- .github/workflows/publish-deno.yml | 43 ++++++++++++++++++++++++++++++ .github/workflows/publish-npm.yml | 11 +------- 2 files changed, 44 insertions(+), 10 deletions(-) create mode 100644 .github/workflows/publish-deno.yml diff --git a/.github/workflows/publish-deno.yml b/.github/workflows/publish-deno.yml new file mode 100644 index 000000000..df361c7ce --- /dev/null +++ b/.github/workflows/publish-deno.yml @@ -0,0 +1,43 @@ +# workflow for re-running publishing to Deno in case it fails for some reason +# you can run this workflow by navigating to https://www.github.com/openai/openai-node/actions/workflows/publish-deno.yml +name: Publish Deno +on: + workflow_dispatch: + +jobs: + publish: + name: publish + runs-on: ubuntu-latest + environment: publish + + steps: + - uses: actions/checkout@v3 + + - name: Set up Node + uses: actions/setup-node@v3 + with: + node-version: '16' + + - name: Set up Deno + uses: denoland/setup-deno@v1 + with: + deno-version: v1.x + + - name: Install dependencies + run: | + yarn install + + - name: Generate a token + id: generate_token + uses: actions/create-github-app-token@v1 + with: + app-id: ${{ secrets.APP_ID }} + private-key: ${{ secrets.APP_PRIVATE_KEY }} + + - name: Publish to Deno + run: | + bash ./scripts/git-publish-deno.sh + env: + GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} + DENO_PUSH_REMOTE_URL: git@github.com:openai/openai-deno-build.git + DENO_PUSH_BRANCH: main diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml index 15f7d5af3..f4e38daca 100644 --- a/.github/workflows/publish-npm.yml +++ b/.github/workflows/publish-npm.yml @@ -8,6 +8,7 @@ jobs: publish: name: publish runs-on: ubuntu-latest + environment: publish steps: - uses: actions/checkout@v3 @@ -17,11 +18,6 @@ jobs: with: node-version: '16' - - name: Set up Deno - uses: denoland/setup-deno@v1 - with: - deno-version: v1.x - - name: Install dependencies run: | yarn install @@ -31,8 +27,3 @@ jobs: bash ./bin/publish-npm env: NPM_TOKEN: ${{ secrets.OPENAI_NPM_TOKEN || secrets.NPM_TOKEN }} - - - name: Publish to Deno - run: | - bash ./scripts/git-publish-deno.sh - env: {} From 4346ba66bcde749e4a7aaf24774895a76676833d Mon Sep 17 00:00:00 2001 From: Atty Eleti Date: Sat, 18 Nov 2023 21:29:23 -0800 Subject: [PATCH 189/725] Update script --- .github/workflows/publish-deno.yml | 19 ++++++++++--------- scripts/git-publish-deno.sh | 2 +- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/publish-deno.yml b/.github/workflows/publish-deno.yml index df361c7ce..1b264b39e 100644 --- a/.github/workflows/publish-deno.yml +++ b/.github/workflows/publish-deno.yml @@ -11,6 +11,15 @@ jobs: environment: publish steps: + - name: Generate a token + id: generate_token + uses: actions/create-github-app-token@v1 + with: + app-id: ${{ secrets.APP_ID }} + private-key: ${{ secrets.APP_PRIVATE_KEY }} + owner: 'openai' + repositories: 'openai-node,openai-deno-build' + - uses: actions/checkout@v3 - name: Set up Node @@ -27,17 +36,9 @@ jobs: run: | yarn install - - name: Generate a token - id: generate_token - uses: actions/create-github-app-token@v1 - with: - app-id: ${{ secrets.APP_ID }} - private-key: ${{ secrets.APP_PRIVATE_KEY }} - - name: Publish to Deno run: | bash ./scripts/git-publish-deno.sh env: - GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} - DENO_PUSH_REMOTE_URL: git@github.com:openai/openai-deno-build.git + DENO_PUSH_REMOTE_URL: https://username:${{ steps.generate_token.outputs.token }}@github.com/openai/openai-deno-build.git DENO_PUSH_BRANCH: main diff --git a/scripts/git-publish-deno.sh b/scripts/git-publish-deno.sh index 90855bfb8..4098994f3 100755 --- a/scripts/git-publish-deno.sh +++ b/scripts/git-publish-deno.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -exuo pipefail -# This script pushes the contents of the `deno`` directory to the `deno` branch, +# This script pushes the contents of the `deno` directory to the `deno` branch, # and creates a `vx.x.x-deno` tag, so that Deno users can # import OpenAI from "https://raw.githubusercontent.com/openai/openai-node/vx.x.x-deno/mod.ts" From aad59361fd379021d17fae46b03574523638b98a Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 20 Nov 2023 17:08:05 -0500 Subject: [PATCH 190/725] ci: improve deno release setup (#519) --- .github/workflows/create-releases.yml | 13 ++++++++++++- .github/workflows/publish-deno.yml | 4 ++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.github/workflows/create-releases.yml b/.github/workflows/create-releases.yml index 75e63d626..0378cb827 100644 --- a/.github/workflows/create-releases.yml +++ b/.github/workflows/create-releases.yml @@ -20,6 +20,15 @@ jobs: repo: ${{ github.event.repository.full_name }} stainless-api-key: ${{ secrets.STAINLESS_API_KEY }} + - name: Generate a token + id: generate_token + uses: actions/create-github-app-token@v1 + with: + app-id: ${{ secrets.APP_ID }} + private-key: ${{ secrets.APP_PRIVATE_KEY }} + owner: 'openai' + repositories: 'openai-node,openai-deno-build' + - name: Set up Node if: ${{ steps.release.outputs.releases_created }} uses: actions/setup-node@v3 @@ -48,4 +57,6 @@ jobs: if: ${{ steps.release.outputs.releases_created }} run: | bash ./scripts/git-publish-deno.sh - env: {} + env: + DENO_PUSH_REMOTE_URL: https://username:${{ steps.generate_token.outputs.token }}@github.com/openai/openai-deno-build.git + DENO_PUSH_BRANCH: main diff --git a/.github/workflows/publish-deno.yml b/.github/workflows/publish-deno.yml index 1b264b39e..b14b3fcc8 100644 --- a/.github/workflows/publish-deno.yml +++ b/.github/workflows/publish-deno.yml @@ -11,6 +11,8 @@ jobs: environment: publish steps: + - uses: actions/checkout@v3 + - name: Generate a token id: generate_token uses: actions/create-github-app-token@v1 @@ -20,8 +22,6 @@ jobs: owner: 'openai' repositories: 'openai-node,openai-deno-build' - - uses: actions/checkout@v3 - - name: Set up Node uses: actions/setup-node@v3 with: From 12dca25f83912b035224e34a8b23434df9010fcd Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 20 Nov 2023 17:08:28 -0500 Subject: [PATCH 191/725] release: 4.19.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 4 ++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bdabf6962..07aa952c2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.19.0" + ".": "4.19.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e1a0dd4c..d88ec3f5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 4.19.1 (2023-11-20) + +Full Changelog: [v4.19.0...v4.19.1](https://github.com/openai/openai-node/compare/v4.19.0...v4.19.1) + ## 4.19.0 (2023-11-15) Full Changelog: [v4.18.0...v4.19.0](https://github.com/openai/openai-node/compare/v4.18.0...v4.19.0) diff --git a/README.md b/README.md index 45d7ba986..1434126e7 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.19.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.19.1/mod.ts'; ``` diff --git a/build-deno b/build-deno index db5036e82..8f91b48fe 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.19.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.19.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 1cf242179..6600364aa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.19.0", + "version": "4.19.1", "description": "Client library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index afe91b0bb..5673c14ed 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.19.0'; // x-release-please-version +export const VERSION = '4.19.1'; // x-release-please-version From 51926d7a0092744e49de39f4988feddf313adafa Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 21 Nov 2023 14:22:02 -0500 Subject: [PATCH 192/725] feat: allow installing package directly from github (#522) --- package.json | 79 +++++++++++++++--------------- scripts/make-dist-package-json.cjs | 1 + yarn.lock | 15 ++++-- 3 files changed, 53 insertions(+), 42 deletions(-) diff --git a/package.json b/package.json index 6600364aa..36db4724f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "openai", "version": "4.19.1", - "description": "Client library for the OpenAI API", + "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", "main": "dist/index.js", @@ -9,6 +9,45 @@ "repository": "github:openai/openai-node", "license": "Apache-2.0", "private": false, + "scripts": { + "test": "bin/check-test-server && yarn jest", + "build": "bash ./build", + "prepack": "echo 'to pack, run yarn build && (cd dist; yarn pack)' && exit 1", + "prepublishOnly": "echo 'to publish, run yarn build && (cd dist; yarn publish)' && exit 1", + "format": "prettier --write --cache --cache-strategy metadata . !dist", + "prepare": "npm run build", + "tsn": "ts-node -r tsconfig-paths/register", + "lint": "eslint --ext ts,js .", + "fix": "eslint --fix --ext ts,js ." + }, + "dependencies": { + "@types/node": "^18.11.18", + "@types/node-fetch": "^2.6.4", + "abort-controller": "^3.0.0", + "agentkeepalive": "^4.2.1", + "digest-fetch": "^1.3.0", + "form-data-encoder": "1.7.2", + "formdata-node": "^4.3.2", + "node-fetch": "^2.6.7", + "web-streams-polyfill": "^3.2.1" + }, + "devDependencies": { + "@types/jest": "^29.4.0", + "@typescript-eslint/eslint-plugin": "^6.7.0", + "@typescript-eslint/parser": "^6.7.0", + "eslint": "^8.49.0", + "eslint-plugin-prettier": "^4.0.0", + "eslint-plugin-unused-imports": "^2.0.0", + "jest": "^29.4.0", + "openai": "file:.", + "prettier": "rattrayalex/prettier#postfix-ternaries", + "ts-jest": "^29.1.0", + "ts-morph": "^19.0.0", + "ts-node": "^10.5.0", + "tsc-multi": "^1.1.0", + "tsconfig-paths": "^4.0.0", + "typescript": "^4.8.2" + }, "sideEffects": [ "./_shims/index.js", "./_shims/index.mjs", @@ -75,43 +114,5 @@ "default": "./dist/*.mjs" } }, - "scripts": { - "test": "bin/check-test-server && yarn jest", - "build": "bash ./build", - "prepack": "echo 'to pack, run yarn build && (cd dist; yarn pack)' && exit 1", - "prepublishOnly": "echo 'to publish, run yarn build && (cd dist; yarn publish)' && exit 1", - "format": "prettier --write --cache --cache-strategy metadata . !dist", - "tsn": "ts-node -r tsconfig-paths/register", - "lint": "eslint --ext ts,js .", - "fix": "eslint --fix --ext ts,js ." - }, - "dependencies": { - "@types/node": "^18.11.18", - "@types/node-fetch": "^2.6.4", - "abort-controller": "^3.0.0", - "agentkeepalive": "^4.2.1", - "digest-fetch": "^1.3.0", - "form-data-encoder": "1.7.2", - "formdata-node": "^4.3.2", - "node-fetch": "^2.6.7", - "web-streams-polyfill": "^3.2.1" - }, - "devDependencies": { - "@types/jest": "^29.4.0", - "@typescript-eslint/eslint-plugin": "^6.7.0", - "@typescript-eslint/parser": "^6.7.0", - "eslint": "^8.49.0", - "eslint-plugin-prettier": "^4.0.0", - "eslint-plugin-unused-imports": "^2.0.0", - "jest": "^29.4.0", - "openai": "link:.", - "prettier": "rattrayalex/prettier#postfix-ternaries", - "ts-jest": "^29.1.0", - "ts-morph": "^19.0.0", - "ts-node": "^10.5.0", - "tsc-multi": "^1.1.0", - "tsconfig-paths": "^4.0.0", - "typescript": "^4.8.2" - }, "bin": "./bin/cli" } diff --git a/scripts/make-dist-package-json.cjs b/scripts/make-dist-package-json.cjs index 8c5889fa8..b0ee528a3 100644 --- a/scripts/make-dist-package-json.cjs +++ b/scripts/make-dist-package-json.cjs @@ -16,5 +16,6 @@ for (const key of ['types', 'main', 'module']) { delete pkgJson.devDependencies; delete pkgJson.scripts.prepack; delete pkgJson.scripts.prepublishOnly; +delete pkgJson.scripts.postinstall; console.log(JSON.stringify(pkgJson, null, 2)); diff --git a/yarn.lock b/yarn.lock index d01ab81de..6c1f3ddbb 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3062,9 +3062,18 @@ onetime@^5.1.2: dependencies: mimic-fn "^2.1.0" -"openai@link:.": - version "0.0.0" - uid "" +"openai@file:.": + version "4.19.1" + dependencies: + "@types/node" "^18.11.18" + "@types/node-fetch" "^2.6.4" + abort-controller "^3.0.0" + agentkeepalive "^4.2.1" + digest-fetch "^1.3.0" + form-data-encoder "1.7.2" + formdata-node "^4.3.2" + node-fetch "^2.6.7" + web-streams-polyfill "^3.2.1" optionator@^0.9.3: version "0.9.3" From d09411ebaa28d6610e1b880d03339d520b4a1833 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 21 Nov 2023 15:15:48 -0500 Subject: [PATCH 193/725] chore(internal): don't call prepare in dist (#525) --- scripts/make-dist-package-json.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make-dist-package-json.cjs b/scripts/make-dist-package-json.cjs index b0ee528a3..def768ed0 100644 --- a/scripts/make-dist-package-json.cjs +++ b/scripts/make-dist-package-json.cjs @@ -16,6 +16,6 @@ for (const key of ['types', 'main', 'module']) { delete pkgJson.devDependencies; delete pkgJson.scripts.prepack; delete pkgJson.scripts.prepublishOnly; -delete pkgJson.scripts.postinstall; +delete pkgJson.scripts.prepare; console.log(JSON.stringify(pkgJson, null, 2)); From 873d34b37885f02d00ae7cf51fc14c95ce467e06 Mon Sep 17 00:00:00 2001 From: Logan Kilpatrick Date: Wed, 22 Nov 2023 09:13:53 -0600 Subject: [PATCH 194/725] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1434126e7..167c89873 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ import OpenAI from 'https://deno.land/x/openai@v4.19.1/mod.ts'; ## Usage -The full API of this library can be found in [api.md file](https://github.com/openai/openai-node/blob/master/api.md). The code below shows how to get started using the chat completions API. +The full API of this library can be found in [api.md file](api.md) along with many [code examples](https://github.com/openai/openai-node/tree/master/examples). The code below shows how to get started using the chat completions API. ```js import OpenAI from 'openai'; @@ -215,7 +215,7 @@ main(); Like with `.stream()`, we provide a variety of [helpers and events](helpers.md#events). Read more about various examples such as with integrating with [zod](helpers.md#integrate-with-zod), -[next.js](helpers.md#integrate-wtih-next-js), and [proxying a stream to the browser](helpers.md#proxy-streaming to-a-browser). +[next.js](helpers.md#integrate-wtih-next-js), and [proxying a stream to the browser](helpers.md#proxy-streaming-to-a-browser). ## File Uploads From e15c34ce4419a93b8d3a28e22ed491ce82ac3d89 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 22 Nov 2023 11:17:34 -0500 Subject: [PATCH 195/725] release: 4.20.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 07aa952c2..fd68703c5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.19.1" + ".": "4.20.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d88ec3f5c..2e1282079 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.20.0 (2023-11-22) + +Full Changelog: [v4.19.1...v4.20.0](https://github.com/openai/openai-node/compare/v4.19.1...v4.20.0) + +### Features + +* allow installing package directly from github ([#522](https://github.com/openai/openai-node/issues/522)) ([51926d7](https://github.com/openai/openai-node/commit/51926d7a0092744e49de39f4988feddf313adafa)) + + +### Chores + +* **internal:** don't call prepare in dist ([#525](https://github.com/openai/openai-node/issues/525)) ([d09411e](https://github.com/openai/openai-node/commit/d09411ebaa28d6610e1b880d03339d520b4a1833)) + ## 4.19.1 (2023-11-20) Full Changelog: [v4.19.0...v4.19.1](https://github.com/openai/openai-node/compare/v4.19.0...v4.19.1) diff --git a/README.md b/README.md index 1434126e7..d94e078d5 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.19.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.20.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index 8f91b48fe..4d09c455a 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.19.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.20.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 36db4724f..c36545437 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.19.1", + "version": "4.20.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 5673c14ed..2963d8825 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.19.1'; // x-release-please-version +export const VERSION = '4.20.0'; // x-release-please-version From b393b2c530255bce01e11c4e5280a8369aeafdb3 Mon Sep 17 00:00:00 2001 From: Atty Eleti Date: Mon, 27 Nov 2023 13:52:22 -0800 Subject: [PATCH 196/725] [github] Update Node version to 18 in workflows --- .github/workflows/ci.yml | 2 +- .github/workflows/create-releases.yml | 2 +- .github/workflows/publish-deno.yml | 2 +- .github/workflows/publish-npm.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a464b26b8..b342025cc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Node uses: actions/setup-node@v3 with: - node-version: '16' + node-version: '18' - name: Install dependencies run: | diff --git a/.github/workflows/create-releases.yml b/.github/workflows/create-releases.yml index 0378cb827..edd154553 100644 --- a/.github/workflows/create-releases.yml +++ b/.github/workflows/create-releases.yml @@ -33,7 +33,7 @@ jobs: if: ${{ steps.release.outputs.releases_created }} uses: actions/setup-node@v3 with: - node-version: '16' + node-version: '18' - name: Set up Deno if: ${{ steps.release.outputs.releases_created }} diff --git a/.github/workflows/publish-deno.yml b/.github/workflows/publish-deno.yml index b14b3fcc8..f68e6152f 100644 --- a/.github/workflows/publish-deno.yml +++ b/.github/workflows/publish-deno.yml @@ -25,7 +25,7 @@ jobs: - name: Set up Node uses: actions/setup-node@v3 with: - node-version: '16' + node-version: '18' - name: Set up Deno uses: denoland/setup-deno@v1 diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml index f4e38daca..2258ec560 100644 --- a/.github/workflows/publish-npm.yml +++ b/.github/workflows/publish-npm.yml @@ -16,7 +16,7 @@ jobs: - name: Set up Node uses: actions/setup-node@v3 with: - node-version: '16' + node-version: '18' - name: Install dependencies run: | From b3036a1549d094f1c66cf6018e527df5de7051e1 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 22 Nov 2023 17:42:13 -0500 Subject: [PATCH 197/725] docs(readme): fix typo and add examples link (#529) --- yarn.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn.lock b/yarn.lock index 6c1f3ddbb..f64db8cd5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3063,7 +3063,7 @@ onetime@^5.1.2: mimic-fn "^2.1.0" "openai@file:.": - version "4.19.1" + version "4.20.0" dependencies: "@types/node" "^18.11.18" "@types/node-fetch" "^2.6.4" From b7f33127147f478fdd81fe1bffdb89f698342265 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 24 Nov 2023 10:07:47 -0500 Subject: [PATCH 198/725] chore(internal): remove file import and conditionally run prepare (#533) --- package.json | 7 +++++-- yarn.lock | 13 ------------- 2 files changed, 5 insertions(+), 15 deletions(-) diff --git a/package.json b/package.json index c36545437..bc88fa747 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "prepack": "echo 'to pack, run yarn build && (cd dist; yarn pack)' && exit 1", "prepublishOnly": "echo 'to publish, run yarn build && (cd dist; yarn publish)' && exit 1", "format": "prettier --write --cache --cache-strategy metadata . !dist", - "prepare": "npm run build", + "prepare": "if [ $(basename $(dirname $PWD)) = 'node_modules' ]; then npm run build; fi", "tsn": "ts-node -r tsconfig-paths/register", "lint": "eslint --ext ts,js .", "fix": "eslint --fix --ext ts,js ." @@ -39,7 +39,6 @@ "eslint-plugin-prettier": "^4.0.0", "eslint-plugin-unused-imports": "^2.0.0", "jest": "^29.4.0", - "openai": "file:.", "prettier": "rattrayalex/prettier#postfix-ternaries", "ts-jest": "^29.1.0", "ts-morph": "^19.0.0", @@ -56,6 +55,10 @@ "./shims/web.js", "./shims/web.mjs" ], + "imports": { + "openai": ".", + "openai/*": "./src/*" + }, "exports": { "./_shims/auto/*": { "deno": { diff --git a/yarn.lock b/yarn.lock index f64db8cd5..4ddf947ac 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3062,19 +3062,6 @@ onetime@^5.1.2: dependencies: mimic-fn "^2.1.0" -"openai@file:.": - version "4.20.0" - dependencies: - "@types/node" "^18.11.18" - "@types/node-fetch" "^2.6.4" - abort-controller "^3.0.0" - agentkeepalive "^4.2.1" - digest-fetch "^1.3.0" - form-data-encoder "1.7.2" - formdata-node "^4.3.2" - node-fetch "^2.6.7" - web-streams-polyfill "^3.2.1" - optionator@^0.9.3: version "0.9.3" resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" From 4c17e7fb34942b9eb7c43d539d4c75805f17509a Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 24 Nov 2023 10:08:11 -0500 Subject: [PATCH 199/725] release: 4.20.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index fd68703c5..1c21a9343 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.20.0" + ".": "4.20.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e1282079..331e2bd37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.20.1 (2023-11-24) + +Full Changelog: [v4.20.0...v4.20.1](https://github.com/openai/openai-node/compare/v4.20.0...v4.20.1) + +### Chores + +* **internal:** remove file import and conditionally run prepare ([#533](https://github.com/openai/openai-node/issues/533)) ([48cb729](https://github.com/openai/openai-node/commit/48cb729bfc484ce3d04273be417b307a0d20644f)) + + +### Documentation + +* **readme:** fix typo and add examples link ([#529](https://github.com/openai/openai-node/issues/529)) ([cf959b1](https://github.com/openai/openai-node/commit/cf959b17db0a4f8dd7eb59add333c4a461b02459)) + ## 4.20.0 (2023-11-22) Full Changelog: [v4.19.1...v4.20.0](https://github.com/openai/openai-node/compare/v4.19.1...v4.20.0) diff --git a/README.md b/README.md index 5c318b169..4c5c6666a 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.20.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.20.1/mod.ts'; ``` diff --git a/build-deno b/build-deno index 4d09c455a..610d47c27 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.20.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.20.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index bc88fa747..2e8317c67 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.20.0", + "version": "4.20.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 2963d8825..fb0af904c 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.20.0'; // x-release-please-version +export const VERSION = '4.20.1'; // x-release-please-version From f2f75d025ea6ee0bdf245c04ac29f79ed71014dc Mon Sep 17 00:00:00 2001 From: Atty Eleti Date: Tue, 28 Nov 2023 15:03:04 -0800 Subject: [PATCH 200/725] Update CODEOWNERS to use @sdks-team --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index db2021c5c..3ce5f8d00 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @schnerd @athyuttamre @logankilpatrick # Should probably replace with a team alias soon +* @openai/sdks-team From ab8b73bdfb95f1c3b9c98240e7f8f73ec28bafad Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 28 Nov 2023 18:33:57 -0500 Subject: [PATCH 201/725] fix: prevent 400 when using runTools/runFunctions with Azure OpenAI API (#544) --- src/lib/AbstractChatCompletionRunner.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/AbstractChatCompletionRunner.ts b/src/lib/AbstractChatCompletionRunner.ts index 60b1e5602..a485c487d 100644 --- a/src/lib/AbstractChatCompletionRunner.ts +++ b/src/lib/AbstractChatCompletionRunner.ts @@ -90,7 +90,11 @@ export abstract class AbstractChatCompletionRunner< } protected _addMessage(message: ChatCompletionMessageParam, emit = true) { + // @ts-expect-error this works around a bug in the Azure OpenAI API in which `content` is missing instead of null. + if (!('content' in message)) message.content = null; + this.messages.push(message); + if (emit) { this._emit('message', message); if ((isFunctionMessage(message) || isToolMessage(message)) && message.content) { From 4bb14cf47c4ff615d8edf3de87cef61250ef5355 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 30 Nov 2023 08:20:13 -0500 Subject: [PATCH 202/725] docs(readme): update example snippets (#546) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4c5c6666a..2a23c32de 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ The full API of this library can be found in [api.md file](api.md) along with ma import OpenAI from 'openai'; const openai = new OpenAI({ - apiKey: 'My API Key', // defaults to process.env["OPENAI_API_KEY"] + apiKey: process.env['OPENAI_API_KEY'], // This is the default and can be omitted }); async function main() { @@ -81,7 +81,7 @@ This library includes TypeScript definitions for all request params and response import OpenAI from 'openai'; const openai = new OpenAI({ - apiKey: 'My API Key', // defaults to process.env["OPENAI_API_KEY"] + apiKey: process.env['OPENAI_API_KEY'], // This is the default and can be omitted }); async function main() { From eb82824f89c31d752cdb4f198716a199e3b6eafd Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 30 Nov 2023 11:54:12 -0500 Subject: [PATCH 203/725] feat(client): support reading the base url from an env variable (#547) --- src/index.ts | 13 ++++++++----- tests/index.test.ts | 15 +++++++++++++++ 2 files changed, 23 insertions(+), 5 deletions(-) diff --git a/src/index.ts b/src/index.ts index d91a608cb..71c1678b9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -20,8 +20,10 @@ export interface ClientOptions { /** * Override the default base URL for the API, e.g., "https://api.example.com/v2/" + * + * Defaults to process.env['OPENAI_BASE_URL']. */ - baseURL?: string; + baseURL?: string | null | undefined; /** * The maximum amount of time (in milliseconds) that the client should wait for a response @@ -89,9 +91,9 @@ export class OpenAI extends Core.APIClient { /** * API Client for interfacing with the OpenAI API. * - * @param {string} [opts.apiKey==process.env['OPENAI_API_KEY'] ?? undefined] - * @param {string | null} [opts.organization==process.env['OPENAI_ORG_ID'] ?? null] - * @param {string} [opts.baseURL] - Override the default base URL for the API. + * @param {string} [opts.apiKey=process.env['OPENAI_API_KEY'] ?? undefined] + * @param {string | null} [opts.organization=process.env['OPENAI_ORG_ID'] ?? null] + * @param {string} [opts.baseURL=process.env['OPENAI_BASE_URL'] ?? https://api.openai.com/v1] - Override the default base URL for the API. * @param {number} [opts.timeout=10 minutes] - The maximum amount of time (in milliseconds) the client will wait for a response before timing out. * @param {number} [opts.httpAgent] - An HTTP agent used to manage HTTP(s) connections. * @param {Core.Fetch} [opts.fetch] - Specify a custom `fetch` function implementation. @@ -101,6 +103,7 @@ export class OpenAI extends Core.APIClient { * @param {boolean} [opts.dangerouslyAllowBrowser=false] - By default, client-side use of this library is not allowed, as it risks exposing your secret API credentials to attackers. */ constructor({ + baseURL = Core.readEnv('OPENAI_BASE_URL'), apiKey = Core.readEnv('OPENAI_API_KEY'), organization = Core.readEnv('OPENAI_ORG_ID') ?? null, ...opts @@ -115,7 +118,7 @@ export class OpenAI extends Core.APIClient { apiKey, organization, ...opts, - baseURL: opts.baseURL ?? `https://api.openai.com/v1`, + baseURL: baseURL ?? `https://api.openai.com/v1`, }; if (!options.dangerouslyAllowBrowser && Core.isRunningInBrowser()) { diff --git a/tests/index.test.ts b/tests/index.test.ts index f54ea5cfc..78847568d 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -132,6 +132,21 @@ describe('instantiate client', () => { const client = new OpenAI({ baseURL: 'http://localhost:5000/custom/path', apiKey: 'My API Key' }); expect(client.buildURL('/foo', null)).toEqual('http://localhost:5000/custom/path/foo'); }); + + afterEach(() => { + process.env['SINK_BASE_URL'] = undefined; + }); + + test('explicit option', () => { + const client = new OpenAI({ baseURL: 'https://example.com/', apiKey: 'My API Key' }); + expect(client.baseURL).toEqual('https://example.com/'); + }); + + test('env variable', () => { + process.env['OPENAI_BASE_URL'] = 'https://example.com/from_env'; + const client = new OpenAI({ apiKey: 'My API Key' }); + expect(client.baseURL).toEqual('https://example.com/from_env'); + }); }); test('maxRetries option is correctly set', () => { From 90b1af07b925f304043ce91fa713cd7904bf1571 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 4 Dec 2023 05:45:16 -0500 Subject: [PATCH 204/725] ci: ensure PR titles use conventional commits (#551) --- .github/workflows/lint-pr.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/lint-pr.yml diff --git a/.github/workflows/lint-pr.yml b/.github/workflows/lint-pr.yml new file mode 100644 index 000000000..a83e64a67 --- /dev/null +++ b/.github/workflows/lint-pr.yml @@ -0,0 +1,21 @@ +name: "Lint PR" + +on: + pull_request_target: + types: + - opened + - edited + - synchronize + +permissions: + pull-requests: read + +jobs: + pr_title: + name: Validate PR title + runs-on: ubuntu-latest + if: github.ref == 'refs/heads/master' && github.repository == 'openai/openai-node' + steps: + - uses: amannn/action-semantic-pull-request@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From b9eae15ea4d02990ccde941df026338b6f6dbf50 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 6 Dec 2023 01:03:59 +0000 Subject: [PATCH 205/725] ci: remove PR title linter (#554) --- .github/workflows/lint-pr.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/workflows/lint-pr.yml diff --git a/.github/workflows/lint-pr.yml b/.github/workflows/lint-pr.yml deleted file mode 100644 index a83e64a67..000000000 --- a/.github/workflows/lint-pr.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: "Lint PR" - -on: - pull_request_target: - types: - - opened - - edited - - synchronize - -permissions: - pull-requests: read - -jobs: - pr_title: - name: Validate PR title - runs-on: ubuntu-latest - if: github.ref == 'refs/heads/master' && github.repository == 'openai/openai-node' - steps: - - uses: amannn/action-semantic-pull-request@v5 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From ce6b9a3b5328be4a2fcd79a06ae7013354a8c4b5 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 11 Dec 2023 21:15:54 +0000 Subject: [PATCH 206/725] build: specify `packageManager: yarn` (#561) --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 2e8317c67..0d66b7365 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,7 @@ "type": "commonjs", "repository": "github:openai/openai-node", "license": "Apache-2.0", + "packageManager": "yarn@1.22.21", "private": false, "scripts": { "test": "bin/check-test-server && yarn jest", From c8040e833f56c266aa8d6b558ff43fbf18f23722 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 11 Dec 2023 23:00:49 +0000 Subject: [PATCH 207/725] fix: correct some runTools behavior and deprecate runFunctions (#562) --- examples/tool-call-helpers-zod.ts | 144 ++ examples/tool-call-helpers.ts | 7 + examples/tool-calls-stream.ts | 251 ++++ helpers.md | 62 +- src/lib/AbstractChatCompletionRunner.ts | 32 +- src/lib/ChatCompletionRunFunctions.test.ts | 1386 ++++++++++++-------- src/lib/ChatCompletionRunner.ts | 13 +- src/lib/ChatCompletionStreamingRunner.ts | 23 +- src/lib/RunnableFunction.ts | 40 +- src/resources/beta/chat/completions.ts | 9 +- 10 files changed, 1336 insertions(+), 631 deletions(-) create mode 100755 examples/tool-call-helpers-zod.ts create mode 100755 examples/tool-calls-stream.ts diff --git a/examples/tool-call-helpers-zod.ts b/examples/tool-call-helpers-zod.ts new file mode 100755 index 000000000..e02c743be --- /dev/null +++ b/examples/tool-call-helpers-zod.ts @@ -0,0 +1,144 @@ +#!/usr/bin/env -S npm run tsn -T + +import OpenAI from 'openai'; +import { RunnableToolFunctionWithParse } from 'openai/lib/RunnableFunction'; +import { JSONSchema } from 'openai/lib/jsonschema'; +import { ZodSchema, z } from 'zod'; +import { zodToJsonSchema } from 'zod-to-json-schema'; + +// gets API Key from environment variable OPENAI_API_KEY +const openai = new OpenAI(); + +// Define your functions, alongside zod schemas. + +const ListParams = z.object({ + genre: z.enum(['mystery', 'nonfiction', 'memoir', 'romance', 'historical']), +}); +type ListParams = z.infer; +async function listBooks({ genre }: ListParams) { + return db.filter((item) => item.genre === genre).map((item) => ({ name: item.name, id: item.id })); +} + +const SearchParams = z.object({ + name: z.string(), +}); +type SearchParams = z.infer; +async function searchBooks({ name }: SearchParams) { + return db.filter((item) => item.name.includes(name)).map((item) => ({ name: item.name, id: item.id })); +} + +const GetParams = z.object({ + id: z.string(), +}); +type GetParams = z.infer; +async function getBook({ id }: GetParams) { + return db.find((item) => item.id === id)!; +} + +async function main() { + const runner = await openai.beta.chat.completions + .runTools({ + model: 'gpt-4-1106-preview', + stream: true, + tools: [ + zodFunction({ + function: listBooks, + schema: ListParams, + description: 'List queries books by genre, and returns a list of names of books', + }), + zodFunction({ + function: searchBooks, + schema: SearchParams, + description: 'Search queries books by their name and returns a list of book names and their ids', + }), + zodFunction({ + function: getBook, + schema: GetParams, + description: + "Get returns a book's detailed information based on the id of the book. Note that this does not accept names, and only IDs, which you can get by using search.", + }), + ], + messages: [ + { + role: 'system', + content: + 'Please use our book database, which you can access using functions to answer the following questions.', + }, + { + role: 'user', + content: + 'I really enjoyed reading To Kill a Mockingbird, could you recommend me a book that is similar and tell me why?', + }, + ], + }) + .on('message', (msg) => console.log('msg', msg)) + .on('functionCall', (functionCall) => console.log('functionCall', functionCall)) + .on('functionCallResult', (functionCallResult) => console.log('functionCallResult', functionCallResult)) + .on('content', (diff) => process.stdout.write(diff)); + + const result = await runner.finalChatCompletion(); + console.log(); + console.log('messages'); + console.log(runner.messages); + + console.log(); + console.log('final chat completion'); + console.dir(result, { depth: null }); +} + +const db = [ + { + id: 'a1', + name: 'To Kill a Mockingbird', + genre: 'historical', + description: `Compassionate, dramatic, and deeply moving, "To Kill A Mockingbird" takes readers to the roots of human behavior - to innocence and experience, kindness and cruelty, love and hatred, humor and pathos. Now with over 18 million copies in print and translated into forty languages, this regional story by a young Alabama woman claims universal appeal. Harper Lee always considered her book to be a simple love story. Today it is regarded as a masterpiece of American literature.`, + }, + { + id: 'a2', + name: 'All the Light We Cannot See', + genre: 'historical', + description: `In a mining town in Germany, Werner Pfennig, an orphan, grows up with his younger sister, enchanted by a crude radio they find that brings them news and stories from places they have never seen or imagined. Werner becomes an expert at building and fixing these crucial new instruments and is enlisted to use his talent to track down the resistance. Deftly interweaving the lives of Marie-Laure and Werner, Doerr illuminates the ways, against all odds, people try to be good to one another.`, + }, + { + id: 'a3', + name: 'Where the Crawdads Sing', + genre: 'historical', + description: `For years, rumors of the “Marsh Girl” haunted Barkley Cove, a quiet fishing village. Kya Clark is barefoot and wild; unfit for polite society. So in late 1969, when the popular Chase Andrews is found dead, locals immediately suspect her. +But Kya is not what they say. A born naturalist with just one day of school, she takes life's lessons from the land, learning the real ways of the world from the dishonest signals of fireflies. But while she has the skills to live in solitude forever, the time comes when she yearns to be touched and loved. Drawn to two young men from town, who are each intrigued by her wild beauty, Kya opens herself to a new and startling world—until the unthinkable happens.`, + }, +]; + +/** + * A generic utility function that returns a RunnableFunction + * you can pass to `.runTools()`, + * with a fully validated, typesafe parameters schema. + * + * You are encouraged to copy/paste this into your codebase! + */ +function zodFunction({ + function: fn, + schema, + description = '', + name, +}: { + function: (args: T) => Promise; + schema: ZodSchema; + description?: string; + name?: string; +}): RunnableToolFunctionWithParse { + return { + type: 'function', + function: { + function: fn, + name: name ?? fn.name, + description: description, + parameters: zodToJsonSchema(schema) as JSONSchema, + parse(input: string): T { + const obj = JSON.parse(input); + return schema.parse(obj); + }, + }, + }; +} + +main(); diff --git a/examples/tool-call-helpers.ts b/examples/tool-call-helpers.ts index d87e3c3e6..21b86f8fb 100755 --- a/examples/tool-call-helpers.ts +++ b/examples/tool-call-helpers.ts @@ -6,6 +6,13 @@ import { RunnableToolFunction } from 'openai/lib/RunnableFunction'; // gets API Key from environment variable OPENAI_API_KEY const openai = new OpenAI(); +/** + * Note, this will automatically ensure the model returns valid JSON, + * but won't ensure it conforms to your schema. + * + * For that functionality, please see the `tool-call-helpers-zod.ts` example, + * which shows a fully typesafe, schema-validating version. + */ const tools: RunnableToolFunction[] = [ { type: 'function', diff --git a/examples/tool-calls-stream.ts b/examples/tool-calls-stream.ts new file mode 100755 index 000000000..924e6b7cf --- /dev/null +++ b/examples/tool-calls-stream.ts @@ -0,0 +1,251 @@ +#!/usr/bin/env -S npm run tsn -T + +// +// +// +// +// +// +// Note: this file is provided for completeness, +// but much more convenient ways of streaming tool calls are available +// with the `.stream()` and `.runTools()` helpers. +// +// See the `tool-call-helpers.ts` and `stream.ts` examples for usage, +// or the README for documentation. +// +// +// +// +// +// + +import util from 'util'; +import OpenAI from 'openai'; +import { + ChatCompletionMessage, + ChatCompletionChunk, + ChatCompletionMessageParam, +} from 'openai/resources/chat'; + +// gets API Key from environment variable OPENAI_API_KEY +const openai = new OpenAI(); + +const tools: OpenAI.Chat.Completions.ChatCompletionTool[] = [ + { + type: 'function', + function: { + name: 'list', + description: 'list queries books by genre, and returns a list of names of books', + parameters: { + type: 'object', + properties: { + genre: { type: 'string', enum: ['mystery', 'nonfiction', 'memoir', 'romance', 'historical'] }, + }, + }, + }, + }, + { + type: 'function', + function: { + name: 'search', + description: 'search queries books by their name and returns a list of book names and their ids', + parameters: { + type: 'object', + properties: { + name: { type: 'string' }, + }, + }, + }, + }, + { + type: 'function', + function: { + name: 'get', + description: + "get returns a book's detailed information based on the id of the book. Note that this does not accept names, and only IDs, which you can get by using search.", + parameters: { + type: 'object', + properties: { + id: { type: 'string' }, + }, + }, + }, + }, +]; + +async function callTool(tool_call: OpenAI.Chat.Completions.ChatCompletionMessageToolCall): Promise { + if (tool_call.type !== 'function') throw new Error('Unexpected tool_call type:' + tool_call.type); + const args = JSON.parse(tool_call.function.arguments); + switch (tool_call.function.name) { + case 'list': + return await list(args['genre']); + + case 'search': + return await search(args['name']); + + case 'get': + return await get(args['id']); + + default: + throw new Error('No function found'); + } +} + +async function main() { + const messages: ChatCompletionMessageParam[] = [ + { + role: 'system', + content: + 'Please use our book database, which you can access using functions to answer the following questions.', + }, + { + role: 'user', + content: + 'I really enjoyed reading To Kill a Mockingbird, could you recommend me a book that is similar and tell me why?', + }, + ]; + console.log(messages[0]); + console.log(); + console.log(messages[1]); + console.log(); + + while (true) { + const stream = await openai.chat.completions.create({ + model: 'gpt-3.5-turbo', + messages, + tools: tools, + stream: true, + }); + + // Since the stream returns chunks, we need to build up the ChatCompletionMessage object. + // We implement this logic in messageReducer, which coalesces deltas into the message. + // `lineRewriter()` allows us to rewrite the last output with new text, which is one + // way of forwarding the streamed output to a visual interface. + let writeLine = lineRewriter(); + let message = {} as ChatCompletionMessage; + for await (const chunk of stream) { + message = messageReducer(message, chunk); + writeLine(message); + } + console.log(); + messages.push(message); + + // If there are no tool calls, we're done and can exit this loop + if (!message.tool_calls) { + return; + } + + // If there are tool calls, we generate a new message with the role 'tool' for each tool call. + for (const toolCall of message.tool_calls) { + const result = await callTool(toolCall); + const newMessage = { + tool_call_id: toolCall.id, + role: 'tool' as const, + name: toolCall.function.name, + content: JSON.stringify(result), + }; + console.log(newMessage); + messages.push(newMessage); + } + console.log(); + } +} + +function messageReducer(previous: ChatCompletionMessage, item: ChatCompletionChunk): ChatCompletionMessage { + const reduce = (acc: any, delta: ChatCompletionChunk.Choice.Delta) => { + acc = { ...acc }; + for (const [key, value] of Object.entries(delta)) { + if (acc[key] === undefined || acc[key] === null) { + acc[key] = value; + // OpenAI.Chat.Completions.ChatCompletionMessageToolCall does not have a key, .index + if (Array.isArray(acc[key])) { + for (const arr of acc[key]) { + delete arr.index; + } + } + } else if (typeof acc[key] === 'string' && typeof value === 'string') { + acc[key] += value; + } else if (typeof acc[key] === 'number' && typeof value === 'number') { + acc[key] = value; + } else if (Array.isArray(acc[key]) && Array.isArray(value)) { + const accArray = acc[key]; + for (let i = 0; i < value.length; i++) { + const { index, ...chunkTool } = value[i]; + if (index - accArray.length > 1) { + throw new Error( + `Error: An array has an empty value when tool_calls are constructed. tool_calls: ${accArray}; tool: ${value}`, + ); + } + accArray[index] = reduce(accArray[index], chunkTool); + } + } else if (typeof acc[key] === 'object' && typeof value === 'object') { + acc[key] = reduce(acc[key], value); + } + } + return acc; + }; + return reduce(previous, item.choices[0]!.delta) as ChatCompletionMessage; +} + +function lineRewriter() { + let lastMessageLines = 0; + return function write(value: any) { + process.stdout.cursorTo(0); + process.stdout.moveCursor(0, -lastMessageLines); + + // calculate where to move cursor back for the next move. + const text = util.formatWithOptions({ colors: false, breakLength: Infinity, depth: 4 }, value); + const __LINE_BREAK_PLACE_HOLDER__ = '__LINE_BREAK_PLACE_HOLDER__'; + const lines = text + // @ts-ignore-error this requires es2021 + .replaceAll('\\n', __LINE_BREAK_PLACE_HOLDER__) + .split('\n') + // @ts-ignore-error this requires es2021 + .map((line: string) => line.replaceAll(__LINE_BREAK_PLACE_HOLDER__, '\\n')); + lastMessageLines = -1; + for (const line of lines) { + const lineLength = line.length; + lastMessageLines += Math.ceil(lineLength / process.stdout.columns); + } + lastMessageLines = Math.max(lastMessageLines, 0); + + process.stdout.clearScreenDown(); + process.stdout.write(util.formatWithOptions({ colors: true, breakLength: Infinity, depth: 4 }, value)); + }; +} +const db: { id: string; name: string; genre: string; description: string }[] = [ + { + id: 'a1', + name: 'To Kill a Mockingbird', + genre: 'historical', + description: `Compassionate, dramatic, and deeply moving, "To Kill A Mockingbird" takes readers to the roots of human behavior - to innocence and experience, kindness and cruelty, love and hatred, humor and pathos. Now with over 18 million copies in print and translated into forty languages, this regional story by a young Alabama woman claims universal appeal. Harper Lee always considered her book to be a simple love story. Today it is regarded as a masterpiece of American literature.`, + }, + { + id: 'a2', + name: 'All the Light We Cannot See', + genre: 'historical', + description: `In a mining town in Germany, Werner Pfennig, an orphan, grows up with his younger sister, enchanted by a crude radio they find that brings them news and stories from places they have never seen or imagined. Werner becomes an expert at building and fixing these crucial new instruments and is enlisted to use his talent to track down the resistance. Deftly interweaving the lives of Marie-Laure and Werner, Doerr illuminates the ways, against all odds, people try to be good to one another.`, + }, + { + id: 'a3', + name: 'Where the Crawdads Sing', + genre: 'historical', + description: `For years, rumors of the “Marsh Girl” haunted Barkley Cove, a quiet fishing village. Kya Clark is barefoot and wild; unfit for polite society. So in late 1969, when the popular Chase Andrews is found dead, locals immediately suspect her. + +But Kya is not what they say. A born naturalist with just one day of school, she takes life's lessons from the land, learning the real ways of the world from the dishonest signals of fireflies. But while she has the skills to live in solitude forever, the time comes when she yearns to be touched and loved. Drawn to two young men from town, who are each intrigued by her wild beauty, Kya opens herself to a new and startling world—until the unthinkable happens.`, + }, +]; + +async function list(genre: string) { + return db.filter((item) => item.genre === genre).map((item) => ({ name: item.name, id: item.id })); +} + +async function search(name: string) { + return db.filter((item) => item.name.includes(name)).map((item) => ({ name: item.name, id: item.id })); +} + +async function get(id: string) { + return db.find((item) => item.id === id)!; +} + +main(); diff --git a/helpers.md b/helpers.md index 4a987b347..859d45ab0 100644 --- a/helpers.md +++ b/helpers.md @@ -21,14 +21,11 @@ See an example of streaming helpers in action in [`examples/stream.ts`](examples ## Automated Function Calls ```ts -openai.chat.completions.runFunctions({ stream: false, … }, options?): ChatCompletionRunner -openai.chat.completions.runFunctions({ stream: true, … }, options?): ChatCompletionStreamingRunner - openai.chat.completions.runTools({ stream: false, … }, options?): ChatCompletionRunner openai.chat.completions.runTools({ stream: true, … }, options?): ChatCompletionStreamingRunner ``` -`openai.chat.completions.runFunctions()` and `openai.chat.completions.runTools()` return a Runner +`openai.chat.completions.runTools()` returns a Runner for automating function calls with chat completions. The runner automatically calls the JavaScript functions you provide and sends their results back to the API, looping as long as the model requests function calls. @@ -37,24 +34,6 @@ If you pass a `parse` function, it will automatically parse the `arguments` for errors to the model to attempt auto-recovery. Otherwise, the args will be passed to the function you provide as a string. -```ts -client.chat.completions.runFunctions({ - model: 'gpt-3.5-turbo', - messages: [{ role: 'user', content: 'How is the weather this week?' }], - functions: [{ - function: getWeather as (args: { location: string, time: Date}) => any, - parse: parseFunction as (args: strings) => { location: string, time: Date }. - parameters: { - type: 'object', - properties: { - location: { type: 'string' }, - time: { type: 'string', format: 'date-time' }, - }, - }, - }], -}); -``` - ```ts client.chat.completions.runTools({ model: 'gpt-3.5-turbo', @@ -76,7 +55,6 @@ client.chat.completions.runTools({ }); ``` - If you pass `function_call: {name: …}` instead of `auto`, it returns immediately after calling that function (and only loops to auto-recover parsing errors). @@ -87,6 +65,8 @@ chat completion request, not for the entire call run. See an example of automated function calls in action in [`examples/function-call-helpers.ts`](examples/function-call-helpers.ts). +Note, `runFunctions` was also previously available, but has been deprecated in favor of `runTools`. + ## Runner API ### Events @@ -108,7 +88,7 @@ The event fired when a chat completion is returned or done being streamed by the #### `.on('message', (message: ChatCompletionMessageParam) => …)` The event fired when a new message is either sent or received from the API. Does not fire for the messages -sent as the parameter to either `.runFunctions()` or `.stream()` +sent as the parameter to either `.runTools()` or `.stream()` #### `.on('content', (content: string) => …)` (without `stream`) @@ -232,19 +212,18 @@ const client = new OpenAI(); async function main() { const runner = client.chat.completions - .runFunctions({ + .runTools({ model: 'gpt-3.5-turbo', messages: [{ role: 'user', content: "How's the weather this week in Los Angeles?" }], - functions: [ + tools: [ { - function: function queryDatabase(props) { … }, - … - }, - { - function: function updateDatabase(props, runner) { - runner.abort() - }, - … + type: 'function', + function: { + function: function updateDatabase(props, runner) { + runner.abort() + }, + … + } }, ], }) @@ -272,15 +251,18 @@ const client = new OpenAI(); async function main() { const runner = client.chat.completions - .runFunctions({ + .runTools({ model: 'gpt-3.5-turbo', messages: [{ role: 'user', content: "How's the weather this week in Los Angeles?" }], - functions: [ + tools: [ { - function: getWeather, - parse: GetWeatherParameters.parse, - parameters: zodToJsonSchema(GetWeatherParameters), - }, + type: 'function', + function: { + function: getWeather, + parse: GetWeatherParameters.parse, + parameters: zodToJsonSchema(GetWeatherParameters), + } + } ], }) .on('message', (message) => console.log(message)); diff --git a/src/lib/AbstractChatCompletionRunner.ts b/src/lib/AbstractChatCompletionRunner.ts index a485c487d..1f089d477 100644 --- a/src/lib/AbstractChatCompletionRunner.ts +++ b/src/lib/AbstractChatCompletionRunner.ts @@ -255,6 +255,9 @@ export abstract class AbstractChatCompletionRunner< if (isAssistantMessage(message) && message?.function_call) { return message.function_call; } + if (isAssistantMessage(message) && message?.tool_calls?.length) { + return message.tool_calls.at(-1)?.function; + } } return; @@ -273,7 +276,18 @@ export abstract class AbstractChatCompletionRunner< for (let i = this.messages.length - 1; i >= 0; i--) { const message = this.messages[i]; if (isFunctionMessage(message) && message.content != null) { - return message.content as string; + return message.content; + } + if ( + isToolMessage(message) && + message.content != null && + this.messages.some( + (x) => + x.role === 'assistant' && + x.tool_calls?.some((y) => y.type === 'function' && y.id === message.tool_call_id), + ) + ) { + return message.content; } } @@ -333,7 +347,9 @@ export abstract class AbstractChatCompletionRunner< protected _emit(event: Event, ...args: EventParameters) { // make sure we don't emit any events after end - if (this.#ended) return; + if (this.#ended) { + return; + } if (event === 'end') { this.#ended = true; @@ -379,7 +395,7 @@ export abstract class AbstractChatCompletionRunner< protected _emitFinal() { const completion = this._chatCompletions[this._chatCompletions.length - 1]; if (completion) this._emit('finalChatCompletion', completion); - const finalMessage = this.messages[this.messages.length - 1]; + const finalMessage = this.#getFinalMessage(); if (finalMessage) this._emit('finalMessage', finalMessage); const finalContent = this.#getFinalContent(); if (finalContent) this._emit('finalContent', finalContent); @@ -573,7 +589,9 @@ export abstract class AbstractChatCompletionRunner< if (!message) { throw new OpenAIError(`missing message in ChatCompletion response`); } - if (!message.tool_calls) return; + if (!message.tool_calls) { + return; + } for (const tool_call of message.tool_calls) { if (tool_call.type !== 'function') continue; @@ -611,9 +629,13 @@ export abstract class AbstractChatCompletionRunner< const content = this.#stringifyFunctionCallResult(rawContent); this._addMessage({ role, tool_call_id, content }); - if (singleFunctionToCall) return; + if (singleFunctionToCall) { + return; + } } } + + return; } #stringifyFunctionCallResult(rawContent: unknown): string { diff --git a/src/lib/ChatCompletionRunFunctions.test.ts b/src/lib/ChatCompletionRunFunctions.test.ts index a930515c4..2a5e91dcc 100644 --- a/src/lib/ChatCompletionRunFunctions.test.ts +++ b/src/lib/ChatCompletionRunFunctions.test.ts @@ -2,7 +2,7 @@ import OpenAI from 'openai'; import { OpenAIError } from 'openai/error'; import { PassThrough } from 'stream'; import { - ParsingFunction, + ParsingToolFunction, type ChatCompletionRunner, type ChatCompletionFunctionRunnerParams, ChatCompletionStreamingRunner, @@ -63,10 +63,13 @@ function mockFetch(): { fetch: Fetch; handleRequest: (handle: Fetch) => Promise< } function handleRequest(handle: typeof fetch): Promise { - return new Promise((resolve) => { + return new Promise((resolve, reject) => { fetchQueue.shift()?.(async (req, init) => { try { return await handle(req, init); + } catch (err) { + reject(err); + return err as any; } finally { resolve(); } @@ -157,10 +160,12 @@ function* functionCallDeltas( args: string, { index = 0, + id = '123', name, role = 'assistant', }: { name: string; + id?: string; index?: number; role?: NonNullable; }, @@ -172,10 +177,17 @@ function* functionCallDeltas( finish_reason: i === deltas.length - 1 ? 'function_call' : null, delta: { role, - function_call: { - arguments: `${deltas[i] || ''}${i === deltas.length - 1 ? '' : ' '}`, - ...(i === deltas.length - 1 ? { name } : null), - }, + tool_calls: [ + { + type: 'function', + index: 0, + id, + function: { + arguments: `${deltas[i] || ''}${i === deltas.length - 1 ? '' : ' '}`, + ...(i === deltas.length - 1 ? { name } : null), + }, + }, + ], }, }; } @@ -215,7 +227,7 @@ class RunnerListener { .on('finalFunctionCallResult', (result) => (this.finalFunctionCallResult = result)) .on('totalUsage', (usage) => (this.totalUsage = usage)) .on('error', (error) => (this.error = error)) - .on('abort', () => (this.gotAbort = true)) + .on('abort', (error) => ((this.error = error), (this.gotAbort = true))) .on('end', () => (this.gotEnd = true)) .once('message', () => this.onceMessageCallCount++); } @@ -262,7 +274,7 @@ class RunnerListener { .map((m) => m.content as string) .filter(Boolean); expect(this.contents).toEqual(expectedContents); - expect(this.finalMessage).toEqual(this.messages[this.messages.length - 1]); + expect(this.finalMessage).toEqual([...this.messages].reverse().find((x) => x.role === 'assistant')); expect(await this.runner.finalMessage()).toEqual(this.finalMessage); expect(this.finalContent).toEqual(expectedContents[expectedContents.length - 1] ?? null); expect(await this.runner.finalContent()).toEqual(this.finalContent); @@ -329,6 +341,7 @@ class StreamingRunnerListener { .on('finalFunctionCall', (functionCall) => (this.finalFunctionCall = functionCall)) .on('finalFunctionCallResult', (result) => (this.finalFunctionCallResult = result)) .on('error', (error) => (this.error = error)) + .on('abort', (abort) => (this.error = abort)) .on('end', () => (this.gotEnd = true)); } @@ -365,7 +378,7 @@ class StreamingRunnerListener { if (error) return; if (this.eventContents.length) expect(this.eventChunks.length).toBeGreaterThan(0); - expect(this.finalMessage).toEqual(this.eventMessages[this.eventMessages.length - 1]); + expect(this.finalMessage).toEqual([...this.eventMessages].reverse().find((x) => x.role === 'assistant')); expect(await this.runner.finalMessage()).toEqual(this.finalMessage); expect(this.finalContent).toEqual(this.eventContents[this.eventContents.length - 1]?.[1] ?? null); expect(await this.runner.finalContent()).toEqual(this.finalContent); @@ -393,45 +406,54 @@ class StreamingRunnerListener { function _typeTests() { const openai = new OpenAI(); - openai.beta.chat.completions.runFunctions({ + openai.beta.chat.completions.runTools({ messages: [ { role: 'user', content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}' }, ], model: 'gpt-3.5-turbo', - functions: [ + tools: [ { - name: 'numProperties', - function: (obj: object) => String(Object.keys(obj).length), - parameters: { type: 'object' }, - parse: (str: string): object => { - const result = JSON.parse(str); - if (!(result instanceof Object) || Array.isArray(result)) { - throw new Error('must be an object'); - } - return result; + type: 'function', + function: { + name: 'numProperties', + function: (obj: object) => String(Object.keys(obj).length), + parameters: { type: 'object' }, + parse: (str: string): object => { + const result = JSON.parse(str); + if (!(result instanceof Object) || Array.isArray(result)) { + throw new Error('must be an object'); + } + return result; + }, + description: 'gets the number of properties on an object', }, - description: 'gets the number of properties on an object', }, { - function: (str: string) => String(str.length), - parameters: { type: 'string' }, - description: 'gets the length of a string', + type: 'function', + function: { + function: (str: string) => String(str.length), + parameters: { type: 'string' }, + description: 'gets the length of a string', + }, }, - // @ts-expect-error function must accept string if parse is omitted { - function: (obj: object) => String(Object.keys(obj).length), - parameters: { type: 'object' }, - description: 'gets the number of properties on an object', + type: 'function', + // @ts-expect-error function must accept string if parse is omitted + function: { + function: (obj: object) => String(Object.keys(obj).length), + parameters: { type: 'object' }, + description: 'gets the number of properties on an object', + }, }, ], }); - openai.beta.chat.completions.runFunctions({ + openai.beta.chat.completions.runTools({ messages: [ { role: 'user', content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}' }, ], model: 'gpt-3.5-turbo', - functions: [ - new ParsingFunction({ + tools: [ + new ParsingToolFunction({ name: 'numProperties', // @ts-expect-error parse and function don't match parse: (str: string) => str, @@ -441,13 +463,13 @@ function _typeTests() { }), ], }); - openai.beta.chat.completions.runFunctions({ + openai.beta.chat.completions.runTools({ messages: [ { role: 'user', content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}' }, ], model: 'gpt-3.5-turbo', - functions: [ - new ParsingFunction({ + tools: [ + new ParsingToolFunction({ name: 'numProperties', parse: (str: string): object => { const result = JSON.parse(str); @@ -460,7 +482,7 @@ function _typeTests() { parameters: { type: 'object' }, description: 'gets the number of properties on an object', }), - new ParsingFunction({ + new ParsingToolFunction({ name: 'keys', parse: (str: string): object => { const result = JSON.parse(str); @@ -473,7 +495,7 @@ function _typeTests() { parameters: { type: 'object' }, description: 'gets the number of properties on an object', }), - new ParsingFunction({ + new ParsingToolFunction({ name: 'len2', // @ts-expect-error parse and function don't match parse: (str: string) => str, @@ -483,140 +505,177 @@ function _typeTests() { }), ], }); - openai.beta.chat.completions.runFunctions({ + openai.beta.chat.completions.runTools({ messages: [ { role: 'user', content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}' }, ], model: 'gpt-3.5-turbo', // @ts-ignore error occurs here in TS 4 - functions: [ + tools: [ { - name: 'numProperties', - parse: (str: string): object => { - const result = JSON.parse(str); - if (!(result instanceof Object) || Array.isArray(result)) { - throw new Error('must be an object'); - } - return result; + type: 'function', + function: { + name: 'numProperties', + parse: (str: string): object => { + const result = JSON.parse(str); + if (!(result instanceof Object) || Array.isArray(result)) { + throw new Error('must be an object'); + } + return result; + }, + function: (obj: object) => String(Object.keys(obj).length), + parameters: { type: 'object' }, + description: 'gets the number of properties on an object', }, - function: (obj: object) => String(Object.keys(obj).length), - parameters: { type: 'object' }, - description: 'gets the number of properties on an object', }, { - name: 'keys', - parse: (str: string): object => { - const result = JSON.parse(str); - if (!(result instanceof Object)) { - throw new Error('must be an Object'); - } - return result; + type: 'function', + function: { + name: 'keys', + parse: (str: string): object => { + const result = JSON.parse(str); + if (!(result instanceof Object)) { + throw new Error('must be an Object'); + } + return result; + }, + function: (obj: object) => Object.keys(obj).join(', '), + parameters: { type: 'object' }, + description: 'gets the number of properties on an object', }, - function: (obj: object) => Object.keys(obj).join(', '), - parameters: { type: 'object' }, - description: 'gets the number of properties on an object', }, { - name: 'len2', - parse: (str: string) => str, - // @ts-ignore error occurs here in TS 5 - // function input doesn't match parse output - function: (obj: object) => String(Object.keys(obj).length), - parameters: { type: 'object' }, - description: 'gets the number of properties on an object', + type: 'function', + function: { + name: 'len2', + parse: (str: string) => str, + // @ts-ignore error occurs here in TS 5 + // function input doesn't match parse output + function: (obj: object) => String(Object.keys(obj).length), + parameters: { type: 'object' }, + description: 'gets the number of properties on an object', + }, }, ] as const, }); } describe('resource completions', () => { - // TODO: re-enable - describe.skip('runFunctions with stream: false', () => { + describe('runTools with stream: false', () => { test('successful flow', async () => { const { fetch, handleRequest } = mockChatCompletionFetch(); const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); - const runner = openai.beta.chat.completions.runFunctions({ + const runner = openai.beta.chat.completions.runTools({ messages: [{ role: 'user', content: 'tell me what the weather is like' }], model: 'gpt-3.5-turbo', - functions: [ + tools: [ { - function: function getWeather() { - return `it's raining`; + type: 'function', + function: { + function: function getWeather() { + return `it's raining`; + }, + parameters: {}, + description: 'gets the weather', }, - parameters: {}, - description: 'gets the weather', }, ], }); const listener = new RunnerListener(runner); - await Promise.all([ - handleRequest(async (request) => { - expect(request.messages).toEqual([{ role: 'user', content: 'tell me what the weather is like' }]); - return { - id: '1', - choices: [ - { - index: 0, - finish_reason: 'function_call', - message: { - role: 'assistant', - content: null, - function_call: { - arguments: '', - name: 'getWeather', - }, - }, - }, - ], - created: Math.floor(Date.now() / 1000), - model: 'gpt-3.5-turbo', - object: 'chat.completion', - }; - }), - handleRequest(async (request) => { - expect(request.messages).toEqual([ - { role: 'user', content: 'tell me what the weather is like' }, + await handleRequest(async (request) => { + expect(request.messages).toEqual([{ role: 'user', content: 'tell me what the weather is like' }]); + return { + id: '1', + choices: [ { - role: 'assistant', - content: null, - function_call: { - arguments: '', - name: 'getWeather', + index: 0, + finish_reason: 'function_call', + message: { + role: 'assistant', + content: null, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '', + name: 'getWeather', + }, + }, + ], }, }, - { - role: 'function', - content: `it's raining`, - name: 'getWeather', - }, - ]); - return { - id: '2', - choices: [ + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + }); + + await handleRequest(async (request) => { + expect(request.messages).toEqual([ + { role: 'user', content: 'tell me what the weather is like' }, + { + role: 'assistant', + content: null, + tool_calls: [ { - index: 0, - finish_reason: 'stop', - message: { - role: 'assistant', - content: `it's raining`, + type: 'function', + id: '123', + function: { + arguments: '', + name: 'getWeather', }, }, ], - created: Math.floor(Date.now() / 1000), - model: 'gpt-3.5-turbo', - object: 'chat.completion', - }; - }), - runner.done(), - ]); + }, + { + role: 'tool', + content: `it's raining`, + tool_call_id: '123', + }, + ]); + + return { + id: '2', + choices: [ + { + index: 0, + finish_reason: 'stop', + message: { + role: 'assistant', + content: `it's raining`, + }, + }, + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + }; + }); + + await runner.done(); expect(listener.messages).toEqual([ { role: 'user', content: 'tell me what the weather is like' }, - { role: 'assistant', content: null, function_call: { name: 'getWeather', arguments: '' } }, - { role: 'function', content: `it's raining`, name: 'getWeather' }, + { + role: 'assistant', + content: null, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '', + name: 'getWeather', + }, + }, + ], + }, + { role: 'tool', content: `it's raining`, tool_call_id: '123' }, { role: 'assistant', content: "it's raining" }, ]); expect(listener.functionCallResults).toEqual([`it's raining`]); @@ -628,17 +687,20 @@ describe('resource completions', () => { const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); const controller = new AbortController(); - const runner = openai.beta.chat.completions.runFunctions( + const runner = openai.beta.chat.completions.runTools( { messages: [{ role: 'user', content: 'tell me what the weather is like' }], model: 'gpt-3.5-turbo', - functions: [ + tools: [ { - function: function getWeather() { - return `it's raining`; + type: 'function', + function: { + function: function getWeather() { + return `it's raining`; + }, + parameters: {}, + description: 'gets the weather', }, - parameters: {}, - description: 'gets the weather', }, ], }, @@ -657,10 +719,16 @@ describe('resource completions', () => { message: { role: 'assistant', content: null, - function_call: { - arguments: '', - name: 'getWeather', - }, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '', + name: 'getWeather', + }, + }, + ], }, }, ], @@ -676,8 +744,21 @@ describe('resource completions', () => { expect(listener.messages).toEqual([ { role: 'user', content: 'tell me what the weather is like' }, - { role: 'assistant', content: null, function_call: { name: 'getWeather', arguments: '' } }, - { role: 'function', content: `it's raining`, name: 'getWeather' }, + { + role: 'assistant', + content: null, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '', + name: 'getWeather', + }, + }, + ], + }, + { role: 'tool', content: `it's raining`, tool_call_id: '123' }, ]); expect(listener.functionCallResults).toEqual([`it's raining`]); await listener.sanityCheck({ error: 'Request was aborted.' }); @@ -688,7 +769,7 @@ describe('resource completions', () => { const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); - const runner = openai.beta.chat.completions.runFunctions({ + const runner = openai.beta.chat.completions.runTools({ messages: [ { role: 'user', @@ -696,8 +777,8 @@ describe('resource completions', () => { }, ], model: 'gpt-3.5-turbo', - functions: [ - new ParsingFunction({ + tools: [ + new ParsingToolFunction({ name: 'numProperties', function: (obj: object) => String(Object.keys(obj).length), parameters: { type: 'object' }, @@ -714,86 +795,96 @@ describe('resource completions', () => { }); const listener = new RunnerListener(runner); - await Promise.all([ - handleRequest(async (request) => { - expect(request.messages).toEqual([ + await handleRequest(async (request) => { + expect(request.messages).toEqual([ + { + role: 'user', + content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', + }, + ]); + return { + id: '1', + choices: [ { - role: 'user', - content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', - }, - ]); - return { - id: '1', - choices: [ - { - index: 0, - finish_reason: 'function_call', - message: { - role: 'assistant', - content: null, - function_call: { - arguments: '{"a": 1, "b": 2, "c": 3}', - name: 'numProperties', + index: 0, + finish_reason: 'function_call', + message: { + role: 'assistant', + content: null, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '{"a": 1, "b": 2, "c": 3}', + name: 'numProperties', + }, }, - }, + ], }, - ], - created: Math.floor(Date.now() / 1000), - model: 'gpt-3.5-turbo', - object: 'chat.completion', - usage: { - completion_tokens: 5, - prompt_tokens: 20, - total_tokens: 25, }, - }; - }), + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + usage: { + completion_tokens: 5, + prompt_tokens: 20, + total_tokens: 25, + }, + }; + }); - handleRequest(async (request) => { - expect(request.messages).toEqual([ - { - role: 'user', - content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', - }, - { - role: 'assistant', - content: null, - function_call: { - arguments: '{"a": 1, "b": 2, "c": 3}', - name: 'numProperties', - }, - }, - { - role: 'function', - content: '3', - name: 'numProperties', - }, - ]); - return { - id: '2', - choices: [ + await handleRequest(async (request) => { + expect(request.messages).toEqual([ + { + role: 'user', + content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', + }, + { + role: 'assistant', + content: null, + tool_calls: [ { - index: 0, - finish_reason: 'stop', - message: { - role: 'assistant', - content: `there are 3 properties in {"a": 1, "b": 2, "c": 3}`, + type: 'function', + id: '123', + function: { + arguments: '{"a": 1, "b": 2, "c": 3}', + name: 'numProperties', }, }, ], - created: Math.floor(Date.now() / 1000), - model: 'gpt-3.5-turbo', - object: 'chat.completion', - usage: { - completion_tokens: 10, - prompt_tokens: 25, - total_tokens: 35, + }, + { + role: 'tool', + content: '3', + tool_call_id: '123', + }, + ]); + return { + id: '2', + choices: [ + { + index: 0, + finish_reason: 'stop', + message: { + role: 'assistant', + content: `there are 3 properties in {"a": 1, "b": 2, "c": 3}`, + }, }, - }; - }), + ], + created: Math.floor(Date.now() / 1000), + model: 'gpt-3.5-turbo', + object: 'chat.completion', + usage: { + completion_tokens: 10, + prompt_tokens: 25, + total_tokens: 35, + }, + }; + }); - runner.done(), - ]); + await runner.done(); expect(listener.messages).toEqual([ { @@ -803,9 +894,15 @@ describe('resource completions', () => { { role: 'assistant', content: null, - function_call: { name: 'numProperties', arguments: '{"a": 1, "b": 2, "c": 3}' }, + tool_calls: [ + { + type: 'function', + id: '123', + function: { name: 'numProperties', arguments: '{"a": 1, "b": 2, "c": 3}' }, + }, + ], }, - { role: 'function', content: '3', name: 'numProperties' }, + { role: 'tool', content: '3', tool_call_id: '123' }, { role: 'assistant', content: 'there are 3 properties in {"a": 1, "b": 2, "c": 3}' }, ]); expect(listener.functionCallResults).toEqual(['3']); @@ -816,7 +913,7 @@ describe('resource completions', () => { const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); - const runner = openai.beta.chat.completions.runFunctions({ + const runner = openai.beta.chat.completions.runTools({ messages: [ { role: 'user', @@ -824,8 +921,8 @@ describe('resource completions', () => { }, ], model: 'gpt-3.5-turbo', - functions: [ - new ParsingFunction({ + tools: [ + new ParsingToolFunction({ name: 'numProperties', function: (obj: object) => String(Object.keys(obj).length), parameters: { type: 'object' }, @@ -859,10 +956,16 @@ describe('resource completions', () => { message: { role: 'assistant', content: null, - function_call: { - arguments: '[{"a": 1, "b": 2, "c": 3}]', - name: 'numProperties', - }, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '[{"a": 1, "b": 2, "c": 3}]', + name: 'numProperties', + }, + }, + ], }, }, ], @@ -880,15 +983,21 @@ describe('resource completions', () => { { role: 'assistant', content: null, - function_call: { - arguments: '[{"a": 1, "b": 2, "c": 3}]', - name: 'numProperties', - }, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '[{"a": 1, "b": 2, "c": 3}]', + name: 'numProperties', + }, + }, + ], }, { - role: 'function', + role: 'tool', content: `must be an object`, - name: 'numProperties', + tool_call_id: '123', }, ]); return { @@ -900,10 +1009,16 @@ describe('resource completions', () => { message: { role: 'assistant', content: null, - function_call: { - arguments: '{"a": 1, "b": 2, "c": 3}', - name: 'numProperties', - }, + tool_calls: [ + { + type: 'function', + id: '1234', + function: { + arguments: '{"a": 1, "b": 2, "c": 3}', + name: 'numProperties', + }, + }, + ], }, }, ], @@ -921,28 +1036,40 @@ describe('resource completions', () => { { role: 'assistant', content: null, - function_call: { - arguments: '[{"a": 1, "b": 2, "c": 3}]', - name: 'numProperties', - }, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '[{"a": 1, "b": 2, "c": 3}]', + name: 'numProperties', + }, + }, + ], }, { - role: 'function', + role: 'tool', content: `must be an object`, - name: 'numProperties', + tool_call_id: '123', }, { role: 'assistant', content: null, - function_call: { - arguments: '{"a": 1, "b": 2, "c": 3}', - name: 'numProperties', - }, + tool_calls: [ + { + type: 'function', + id: '1234', + function: { + arguments: '{"a": 1, "b": 2, "c": 3}', + name: 'numProperties', + }, + }, + ], }, { - role: 'function', + role: 'tool', content: '3', - name: 'numProperties', + tool_call_id: '1234', }, ]); return { @@ -973,15 +1100,27 @@ describe('resource completions', () => { { role: 'assistant', content: null, - function_call: { name: 'numProperties', arguments: '[{"a": 1, "b": 2, "c": 3}]' }, + tool_calls: [ + { + type: 'function', + id: '123', + function: { name: 'numProperties', arguments: '[{"a": 1, "b": 2, "c": 3}]' }, + }, + ], }, - { role: 'function', content: `must be an object`, name: 'numProperties' }, + { role: 'tool', content: `must be an object`, tool_call_id: '123' }, { role: 'assistant', content: null, - function_call: { name: 'numProperties', arguments: '{"a": 1, "b": 2, "c": 3}' }, + tool_calls: [ + { + type: 'function', + id: '1234', + function: { name: 'numProperties', arguments: '{"a": 1, "b": 2, "c": 3}' }, + }, + ], }, - { role: 'function', content: '3', name: 'numProperties' }, + { role: 'tool', content: '3', tool_call_id: '1234' }, { role: 'assistant', content: 'there are 3 properties in {"a": 1, "b": 2, "c": 3}' }, ]); expect(listener.functionCallResults).toEqual([`must be an object`, '3']); @@ -992,19 +1131,25 @@ describe('resource completions', () => { const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); - const runner = openai.beta.chat.completions.runFunctions({ + const runner = openai.beta.chat.completions.runTools({ messages: [{ role: 'user', content: 'tell me what the weather is like' }], model: 'gpt-3.5-turbo', - function_call: { - name: 'getWeather', + tool_choice: { + type: 'function', + function: { + name: 'getWeather', + }, }, - functions: [ + tools: [ { - function: function getWeather() { - return `it's raining`; + type: 'function', + function: { + function: function getWeather() { + return `it's raining`; + }, + parameters: {}, + description: 'gets the weather', }, - parameters: {}, - description: 'gets the weather', }, ], }); @@ -1022,10 +1167,16 @@ describe('resource completions', () => { message: { role: 'assistant', content: null, - function_call: { - arguments: '', - name: 'getWeather', - }, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '', + name: 'getWeather', + }, + }, + ], }, }, ], @@ -1039,8 +1190,21 @@ describe('resource completions', () => { expect(listener.messages).toEqual([ { role: 'user', content: 'tell me what the weather is like' }, - { role: 'assistant', content: null, function_call: { name: 'getWeather', arguments: '' } }, - { role: 'function', content: `it's raining`, name: 'getWeather' }, + { + role: 'assistant', + content: null, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '', + name: 'getWeather', + }, + }, + ], + }, + { role: 'tool', content: `it's raining`, tool_call_id: '123' }, ]); expect(listener.functionCallResults).toEqual([`it's raining`]); await listener.sanityCheck(); @@ -1050,16 +1214,19 @@ describe('resource completions', () => { const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); - const runner = openai.beta.chat.completions.runFunctions({ + const runner = openai.beta.chat.completions.runTools({ messages: [{ role: 'user', content: 'tell me what the weather is like' }], model: 'gpt-3.5-turbo', - functions: [ + tools: [ { - function: function getWeather() { - return `it's raining`; + type: 'function', + function: { + function: function getWeather() { + return `it's raining`; + }, + parameters: {}, + description: 'gets the weather', }, - parameters: {}, - description: 'gets the weather', }, ], }); @@ -1077,10 +1244,16 @@ describe('resource completions', () => { message: { role: 'assistant', content: null, - function_call: { - arguments: '', - name: 'get_weather', - }, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '', + name: 'get_weather', + }, + }, + ], }, }, ], @@ -1095,15 +1268,21 @@ describe('resource completions', () => { { role: 'assistant', content: null, - function_call: { - arguments: '', - name: 'get_weather', - }, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '', + name: 'get_weather', + }, + }, + ], }, { - role: 'function', - content: `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, - name: 'get_weather', + role: 'tool', + content: `Invalid tool_call: "get_weather". Available options are: "getWeather". Please try again`, + tool_call_id: '123', }, ]); return { @@ -1115,10 +1294,16 @@ describe('resource completions', () => { message: { role: 'assistant', content: null, - function_call: { - arguments: '', - name: 'getWeather', - }, + tool_calls: [ + { + type: 'function', + id: '1234', + function: { + arguments: '', + name: 'getWeather', + }, + }, + ], }, }, ], @@ -1133,28 +1318,40 @@ describe('resource completions', () => { { role: 'assistant', content: null, - function_call: { - arguments: '', - name: 'get_weather', - }, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '', + name: 'get_weather', + }, + }, + ], }, { - role: 'function', - content: `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, - name: 'get_weather', + role: 'tool', + content: `Invalid tool_call: "get_weather". Available options are: "getWeather". Please try again`, + tool_call_id: '123', }, { role: 'assistant', - content: null, - function_call: { - arguments: '', - name: 'getWeather', - }, + content: null, + tool_calls: [ + { + type: 'function', + id: '1234', + function: { + arguments: '', + name: 'getWeather', + }, + }, + ], }, { - role: 'function', + role: 'tool', content: `it's raining`, - name: 'getWeather', + tool_call_id: '1234', }, ]); return { @@ -1179,106 +1376,52 @@ describe('resource completions', () => { expect(listener.messages).toEqual([ { role: 'user', content: 'tell me what the weather is like' }, - { role: 'assistant', content: null, function_call: { name: 'get_weather', arguments: '' } }, { - role: 'function', - content: `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, - name: 'get_weather', + role: 'assistant', + content: null, + tool_calls: [{ type: 'function', id: '123', function: { name: 'get_weather', arguments: '' } }], }, - { role: 'assistant', content: null, function_call: { name: 'getWeather', arguments: '' } }, - { role: 'function', content: `it's raining`, name: 'getWeather' }, - { role: 'assistant', content: "it's raining" }, - ]); - expect(listener.functionCallResults).toEqual([ - `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, - `it's raining`, - ]); - await listener.sanityCheck(); - }); - test('wrong function name with single function call', async () => { - const { fetch, handleRequest } = mockChatCompletionFetch(); - - const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); - - const runner = openai.beta.chat.completions.runFunctions({ - messages: [{ role: 'user', content: 'tell me what the weather is like' }], - model: 'gpt-3.5-turbo', - function_call: { - name: 'getWeather', + { + role: 'tool', + content: `Invalid tool_call: "get_weather". Available options are: "getWeather". Please try again`, + tool_call_id: '123', }, - functions: [ - { - function: function getWeather() { - return `it's raining`; - }, - parameters: {}, - description: 'gets the weather', - }, - ], - }); - const listener = new RunnerListener(runner); - - await Promise.all([ - handleRequest(async (request) => { - expect(request.messages).toEqual([{ role: 'user', content: 'tell me what the weather is like' }]); - return { - id: '1', - choices: [ - { - index: 0, - finish_reason: 'function_call', - message: { - role: 'assistant', - content: null, - function_call: { - arguments: '', - name: 'get_weather', - }, - }, - }, - ], - created: Math.floor(Date.now() / 1000), - model: 'gpt-3.5-turbo', - object: 'chat.completion', - }; - }), - runner.done(), - ]); - - expect(listener.messages).toEqual([ - { role: 'user', content: 'tell me what the weather is like' }, - { role: 'assistant', content: null, function_call: { name: 'get_weather', arguments: '' } }, { - role: 'function', - content: `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, - name: 'get_weather', + role: 'assistant', + content: null, + tool_calls: [{ type: 'function', id: '1234', function: { name: 'getWeather', arguments: '' } }], }, + { role: 'tool', content: `it's raining`, tool_call_id: '1234' }, + { role: 'assistant', content: "it's raining" }, ]); expect(listener.functionCallResults).toEqual([ - `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, + `Invalid tool_call: "get_weather". Available options are: "getWeather". Please try again`, + `it's raining`, ]); await listener.sanityCheck(); }); }); - // TODO: re-enable - describe.skip('runFunctions with stream: true', () => { + describe('runTools with stream: true', () => { test('successful flow', async () => { const { fetch, handleRequest } = mockStreamingChatCompletionFetch(); const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); - const runner = openai.beta.chat.completions.runFunctions({ + const runner = openai.beta.chat.completions.runTools({ stream: true, messages: [{ role: 'user', content: 'tell me what the weather is like' }], model: 'gpt-3.5-turbo', - functions: [ + tools: [ { - function: function getWeather() { - return `it's raining`; + type: 'function', + function: { + function: function getWeather() { + return `it's raining`; + }, + parameters: {}, + description: 'gets the weather', }, - parameters: {}, - description: 'gets the weather', }, ], }); @@ -1296,10 +1439,17 @@ describe('resource completions', () => { delta: { role: 'assistant', content: null, - function_call: { - arguments: '', - name: 'getWeather', - }, + tool_calls: [ + { + type: 'function', + index: 0, + id: '123', + function: { + arguments: '', + name: 'getWeather', + }, + }, + ], }, }, ], @@ -1314,15 +1464,21 @@ describe('resource completions', () => { { role: 'assistant', content: null, - function_call: { - arguments: '', - name: 'getWeather', - }, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '', + name: 'getWeather', + }, + }, + ], }, { - role: 'function', + role: 'tool', content: `it's raining`, - name: 'getWeather', + tool_call_id: '123', }, ]); for (const choice of contentChoiceDeltas(`it's raining`)) { @@ -1339,8 +1495,21 @@ describe('resource completions', () => { ]); expect(listener.eventMessages).toEqual([ - { role: 'assistant', content: null, function_call: { name: 'getWeather', arguments: '' } }, - { role: 'function', content: `it's raining`, name: 'getWeather' }, + { + role: 'assistant', + content: null, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '', + name: 'getWeather', + }, + }, + ], + }, + { role: 'tool', content: `it's raining`, tool_call_id: '123' }, { role: 'assistant', content: "it's raining" }, ]); expect(listener.eventFunctionCallResults).toEqual([`it's raining`]); @@ -1352,18 +1521,21 @@ describe('resource completions', () => { const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); const controller = new AbortController(); - const runner = openai.beta.chat.completions.runFunctions( + const runner = openai.beta.chat.completions.runTools( { stream: true, messages: [{ role: 'user', content: 'tell me what the weather is like' }], model: 'gpt-3.5-turbo', - functions: [ + tools: [ { - function: function getWeather() { - return `it's raining`; + type: 'function', + function: { + function: function getWeather() { + return `it's raining`; + }, + parameters: {}, + description: 'gets the weather', }, - parameters: {}, - description: 'gets the weather', }, ], }, @@ -1383,10 +1555,17 @@ describe('resource completions', () => { delta: { role: 'assistant', content: null, - function_call: { - arguments: '', - name: 'getWeather', - }, + tool_calls: [ + { + type: 'function', + index: 0, + id: '123', + function: { + arguments: '', + name: 'getWeather', + }, + }, + ], }, }, ], @@ -1399,8 +1578,21 @@ describe('resource completions', () => { await runner.done().catch(() => {}); expect(listener.eventMessages).toEqual([ - { role: 'assistant', content: null, function_call: { name: 'getWeather', arguments: '' } }, - { role: 'function', content: `it's raining`, name: 'getWeather' }, + { + role: 'assistant', + content: null, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '', + name: 'getWeather', + }, + }, + ], + }, + { role: 'tool', content: `it's raining`, tool_call_id: '123' }, ]); expect(listener.eventFunctionCallResults).toEqual([`it's raining`]); await listener.sanityCheck({ error: 'Request was aborted.' }); @@ -1411,7 +1603,7 @@ describe('resource completions', () => { const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); - const runner = openai.beta.chat.completions.runFunctions({ + const runner = openai.beta.chat.completions.runTools({ stream: true, messages: [ { @@ -1420,8 +1612,8 @@ describe('resource completions', () => { }, ], model: 'gpt-3.5-turbo', - functions: [ - new ParsingFunction({ + tools: [ + new ParsingToolFunction({ name: 'numProperties', function: (obj: object) => String(Object.keys(obj).length), parameters: { type: 'object' }, @@ -1455,10 +1647,17 @@ describe('resource completions', () => { delta: { role: 'assistant', content: null, - function_call: { - arguments: '{"a": 1, "b": 2, "c": 3}', - name: 'numProperties', - }, + tool_calls: [ + { + type: 'function', + id: '123', + index: 0, + function: { + arguments: '{"a": 1, "b": 2, "c": 3}', + name: 'numProperties', + }, + }, + ], }, }, ], @@ -1476,15 +1675,21 @@ describe('resource completions', () => { { role: 'assistant', content: null, - function_call: { - arguments: '{"a": 1, "b": 2, "c": 3}', - name: 'numProperties', - }, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '{"a": 1, "b": 2, "c": 3}', + name: 'numProperties', + }, + }, + ], }, { - role: 'function', + role: 'tool', content: '3', - name: 'numProperties', + tool_call_id: '123', }, ]); for (const choice of contentChoiceDeltas(`there are 3 properties in {"a": 1, "b": 2, "c": 3}`)) { @@ -1504,9 +1709,15 @@ describe('resource completions', () => { { role: 'assistant', content: null, - function_call: { name: 'numProperties', arguments: '{"a": 1, "b": 2, "c": 3}' }, + tool_calls: [ + { + type: 'function', + id: '123', + function: { name: 'numProperties', arguments: '{"a": 1, "b": 2, "c": 3}' }, + }, + ], }, - { role: 'function', content: '3', name: 'numProperties' }, + { role: 'tool', content: '3', tool_call_id: '123' }, { role: 'assistant', content: 'there are 3 properties in {"a": 1, "b": 2, "c": 3}' }, ]); expect(listener.eventFunctionCallResults).toEqual(['3']); @@ -1517,7 +1728,7 @@ describe('resource completions', () => { const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); - const runner = openai.beta.chat.completions.runFunctions({ + const runner = openai.beta.chat.completions.runTools({ stream: true, messages: [ { @@ -1526,8 +1737,8 @@ describe('resource completions', () => { }, ], model: 'gpt-3.5-turbo', - functions: [ - new ParsingFunction({ + tools: [ + new ParsingToolFunction({ name: 'numProperties', function: (obj: object) => String(Object.keys(obj).length), parameters: { type: 'object' }, @@ -1552,7 +1763,10 @@ describe('resource completions', () => { content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', }, ]); - for (const choice of functionCallDeltas('[{"a": 1, "b": 2, "c": 3}]', { name: 'numProperties' })) { + for (const choice of functionCallDeltas('[{"a": 1, "b": 2, "c": 3}]', { + name: 'numProperties', + id: '123', + })) { yield { id: '1', choices: [choice], @@ -1571,18 +1785,27 @@ describe('resource completions', () => { { role: 'assistant', content: null, - function_call: { - arguments: '[{"a": 1, "b": 2, "c": 3}]', - name: 'numProperties', - }, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '[{"a": 1, "b": 2, "c": 3}]', + name: 'numProperties', + }, + }, + ], }, { - role: 'function', + role: 'tool', content: `must be an object`, - name: 'numProperties', + tool_call_id: '123', }, ]); - for (const choice of functionCallDeltas('{"a": 1, "b": 2, "c": 3}', { name: 'numProperties' })) { + for (const choice of functionCallDeltas('{"a": 1, "b": 2, "c": 3}', { + name: 'numProperties', + id: '1234', + })) { yield { id: '2', choices: [choice], @@ -1601,28 +1824,40 @@ describe('resource completions', () => { { role: 'assistant', content: null, - function_call: { - arguments: '[{"a": 1, "b": 2, "c": 3}]', - name: 'numProperties', - }, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '[{"a": 1, "b": 2, "c": 3}]', + name: 'numProperties', + }, + }, + ], }, { - role: 'function', + role: 'tool', content: `must be an object`, - name: 'numProperties', + tool_call_id: '123', }, { role: 'assistant', content: null, - function_call: { - arguments: '{"a": 1, "b": 2, "c": 3}', - name: 'numProperties', - }, + tool_calls: [ + { + type: 'function', + id: '1234', + function: { + arguments: '{"a": 1, "b": 2, "c": 3}', + name: 'numProperties', + }, + }, + ], }, { - role: 'function', + role: 'tool', content: '3', - name: 'numProperties', + tool_call_id: '1234', }, ]); for (const choice of contentChoiceDeltas(`there are 3 properties in {"a": 1, "b": 2, "c": 3}`)) { @@ -1642,15 +1877,27 @@ describe('resource completions', () => { { role: 'assistant', content: null, - function_call: { name: 'numProperties', arguments: '[{"a": 1, "b": 2, "c": 3}]' }, + tool_calls: [ + { + type: 'function', + id: '123', + function: { name: 'numProperties', arguments: '[{"a": 1, "b": 2, "c": 3}]' }, + }, + ], }, - { role: 'function', content: `must be an object`, name: 'numProperties' }, + { role: 'tool', content: `must be an object`, tool_call_id: '123' }, { role: 'assistant', content: null, - function_call: { name: 'numProperties', arguments: '{"a": 1, "b": 2, "c": 3}' }, + tool_calls: [ + { + type: 'function', + id: '1234', + function: { name: 'numProperties', arguments: '{"a": 1, "b": 2, "c": 3}' }, + }, + ], }, - { role: 'function', content: '3', name: 'numProperties' }, + { role: 'tool', content: '3', tool_call_id: '1234' }, { role: 'assistant', content: 'there are 3 properties in {"a": 1, "b": 2, "c": 3}' }, ]); expect(listener.eventFunctionCallResults).toEqual([`must be an object`, '3']); @@ -1661,20 +1908,26 @@ describe('resource completions', () => { const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); - const runner = openai.beta.chat.completions.runFunctions({ + const runner = openai.beta.chat.completions.runTools({ stream: true, messages: [{ role: 'user', content: 'tell me what the weather is like' }], model: 'gpt-3.5-turbo', - function_call: { - name: 'getWeather', + tool_choice: { + type: 'function', + function: { + name: 'getWeather', + }, }, - functions: [ + tools: [ { - function: function getWeather() { - return `it's raining`; + type: 'function', + function: { + function: function getWeather() { + return `it's raining`; + }, + parameters: {}, + description: 'gets the weather', }, - parameters: {}, - description: 'gets the weather', }, ], }); @@ -1692,10 +1945,17 @@ describe('resource completions', () => { delta: { role: 'assistant', content: null, - function_call: { - arguments: '', - name: 'getWeather', - }, + tool_calls: [ + { + type: 'function', + index: 0, + id: '123', + function: { + arguments: '', + name: 'getWeather', + }, + }, + ], }, }, ], @@ -1708,8 +1968,21 @@ describe('resource completions', () => { ]); expect(listener.eventMessages).toEqual([ - { role: 'assistant', content: null, function_call: { name: 'getWeather', arguments: '' } }, - { role: 'function', content: `it's raining`, name: 'getWeather' }, + { + role: 'assistant', + content: null, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '', + name: 'getWeather', + }, + }, + ], + }, + { role: 'tool', tool_call_id: '123', content: `it's raining` }, ]); expect(listener.eventFunctionCallResults).toEqual([`it's raining`]); await listener.sanityCheck(); @@ -1719,17 +1992,20 @@ describe('resource completions', () => { const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); - const runner = openai.beta.chat.completions.runFunctions({ + const runner = openai.beta.chat.completions.runTools({ stream: true, messages: [{ role: 'user', content: 'tell me what the weather is like' }], model: 'gpt-3.5-turbo', - functions: [ + tools: [ { - function: function getWeather() { - return `it's raining`; + type: 'function', + function: { + function: function getWeather() { + return `it's raining`; + }, + parameters: {}, + description: 'gets the weather', }, - parameters: {}, - description: 'gets the weather', }, ], }); @@ -1747,10 +2023,17 @@ describe('resource completions', () => { delta: { role: 'assistant', content: null, - function_call: { - arguments: '', - name: 'get_weather', - }, + tool_calls: [ + { + type: 'function', + index: 0, + id: '123', + function: { + arguments: '', + name: 'get_weather', + }, + }, + ], }, }, ], @@ -1765,15 +2048,21 @@ describe('resource completions', () => { { role: 'assistant', content: null, - function_call: { - arguments: '', - name: 'get_weather', - }, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '', + name: 'get_weather', + }, + }, + ], }, { - role: 'function', - content: `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, - name: 'get_weather', + role: 'tool', + content: `Invalid tool_call: "get_weather". Available options are: "getWeather". Please try again`, + tool_call_id: '123', }, ]); yield { @@ -1785,10 +2074,17 @@ describe('resource completions', () => { delta: { role: 'assistant', content: null, - function_call: { - arguments: '', - name: 'getWeather', - }, + tool_calls: [ + { + type: 'function', + index: 0, + id: '1234', + function: { + arguments: '', + name: 'getWeather', + }, + }, + ], }, }, ], @@ -1803,28 +2099,40 @@ describe('resource completions', () => { { role: 'assistant', content: null, - function_call: { - arguments: '', - name: 'get_weather', - }, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '', + name: 'get_weather', + }, + }, + ], }, { - role: 'function', - content: `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, - name: 'get_weather', + role: 'tool', + content: `Invalid tool_call: "get_weather". Available options are: "getWeather". Please try again`, + tool_call_id: '123', }, { role: 'assistant', content: null, - function_call: { - arguments: '', - name: 'getWeather', - }, + tool_calls: [ + { + type: 'function', + id: '1234', + function: { + arguments: '', + name: 'getWeather', + }, + }, + ], }, { - role: 'function', + role: 'tool', content: `it's raining`, - name: 'getWeather', + tool_call_id: '1234', }, ]); for (const choice of contentChoiceDeltas(`it's raining`)) { @@ -1841,83 +2149,45 @@ describe('resource completions', () => { ]); expect(listener.eventMessages).toEqual([ - { role: 'assistant', content: null, function_call: { name: 'get_weather', arguments: '' } }, { - role: 'function', - content: `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, - name: 'get_weather', + role: 'assistant', + content: null, + tool_calls: [ + { + type: 'function', + id: '123', + function: { + arguments: '', + name: 'get_weather', + }, + }, + ], }, - { role: 'assistant', content: null, function_call: { name: 'getWeather', arguments: '' } }, - { role: 'function', content: `it's raining`, name: 'getWeather' }, - { role: 'assistant', content: "it's raining" }, - ]); - expect(listener.eventFunctionCallResults).toEqual([ - `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, - `it's raining`, - ]); - await listener.sanityCheck(); - }); - test('wrong function name with single function call', async () => { - const { fetch, handleRequest } = mockStreamingChatCompletionFetch(); - - const openai = new OpenAI({ apiKey: 'something1234', baseURL: 'http://127.0.0.1:4010/', fetch }); - - const runner = openai.beta.chat.completions.runFunctions({ - stream: true, - messages: [{ role: 'user', content: 'tell me what the weather is like' }], - model: 'gpt-3.5-turbo', - function_call: { - name: 'getWeather', + { + role: 'tool', + content: `Invalid tool_call: "get_weather". Available options are: "getWeather". Please try again`, + tool_call_id: '123', }, - functions: [ - { - function: function getWeather() { - return `it's raining`; - }, - parameters: {}, - description: 'gets the weather', - }, - ], - }); - const listener = new StreamingRunnerListener(runner); - - await Promise.all([ - handleRequest(async function* (request): AsyncIterable { - expect(request.messages).toEqual([{ role: 'user', content: 'tell me what the weather is like' }]); - yield { - id: '1', - choices: [ - { - index: 0, - finish_reason: 'function_call', - delta: { - role: 'assistant', - content: null, - function_call: { - arguments: '', - name: 'get_weather', - }, - }, - }, - ], - created: Math.floor(Date.now() / 1000), - model: 'gpt-3.5-turbo', - object: 'chat.completion.chunk', - }; - }), - runner.done(), - ]); - - expect(listener.eventMessages).toEqual([ - { role: 'assistant', content: null, function_call: { name: 'get_weather', arguments: '' } }, { - role: 'function', - content: `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, - name: 'get_weather', + role: 'assistant', + content: null, + tool_calls: [ + { + type: 'function', + id: '1234', + function: { + arguments: '', + name: 'getWeather', + }, + }, + ], }, + { role: 'tool', content: `it's raining`, tool_call_id: '1234' }, + { role: 'assistant', content: "it's raining" }, ]); expect(listener.eventFunctionCallResults).toEqual([ - `Invalid function_call: "get_weather". Available options are: "getWeather". Please try again`, + `Invalid tool_call: "get_weather". Available options are: "getWeather". Please try again`, + `it's raining`, ]); await listener.sanityCheck(); }); diff --git a/src/lib/ChatCompletionRunner.ts b/src/lib/ChatCompletionRunner.ts index 4a7ca18a6..a110f0192 100644 --- a/src/lib/ChatCompletionRunner.ts +++ b/src/lib/ChatCompletionRunner.ts @@ -30,13 +30,18 @@ export type ChatCompletionToolRunnerParams { + /** @deprecated - please use `runTools` instead. */ static runFunctions( completions: Completions, params: ChatCompletionFunctionRunnerParams, options?: RunnerOptions, ): ChatCompletionRunner { const runner = new ChatCompletionRunner(); - runner._run(() => runner._runFunctions(completions, params, options)); + const opts = { + ...options, + headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'runFunctions' }, + }; + runner._run(() => runner._runFunctions(completions, params, opts)); return runner; } @@ -46,7 +51,11 @@ export class ChatCompletionRunner extends AbstractChatCompletionRunner runner._runTools(completions, params, options)); + const opts = { + ...options, + headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'runTools' }, + }; + runner._run(() => runner._runTools(completions, params, opts)); return runner; } diff --git a/src/lib/ChatCompletionStreamingRunner.ts b/src/lib/ChatCompletionStreamingRunner.ts index a2da456e6..cf58c5270 100644 --- a/src/lib/ChatCompletionStreamingRunner.ts +++ b/src/lib/ChatCompletionStreamingRunner.ts @@ -37,18 +37,18 @@ export class ChatCompletionStreamingRunner return runner; } + /** @deprecated - please use `runTools` instead. */ static runFunctions( completions: Completions, params: ChatCompletionStreamingFunctionRunnerParams, options?: RunnerOptions, ): ChatCompletionStreamingRunner { const runner = new ChatCompletionStreamingRunner(); - runner._run(() => - runner._runFunctions(completions, params, { - ...options, - headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'runFunctions' }, - }), - ); + const opts = { + ...options, + headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'runFunctions' }, + }; + runner._run(() => runner._runFunctions(completions, params, opts)); return runner; } @@ -58,12 +58,11 @@ export class ChatCompletionStreamingRunner options?: RunnerOptions, ): ChatCompletionStreamingRunner { const runner = new ChatCompletionStreamingRunner(); - runner._run(() => - runner._runTools(completions, params, { - ...options, - headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'runTools' }, - }), - ); + const opts = { + ...options, + headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'runTools' }, + }; + runner._run(() => runner._runTools(completions, params, opts)); return runner; } } diff --git a/src/lib/RunnableFunction.ts b/src/lib/RunnableFunction.ts index 5c6845cab..96ca06c86 100644 --- a/src/lib/RunnableFunction.ts +++ b/src/lib/RunnableFunction.ts @@ -61,9 +61,18 @@ export type RunnableFunction = : Args extends object ? RunnableFunctionWithParse : never; -export type RunnableToolFunction = { +export type RunnableToolFunction = + Args extends string ? RunnableToolFunctionWithoutParse + : Args extends object ? RunnableToolFunctionWithParse + : never; + +export type RunnableToolFunctionWithoutParse = { + type: 'function'; + function: RunnableFunctionWithoutParse; +}; +export type RunnableToolFunctionWithParse = { type: 'function'; - function: RunnableFunction; + function: RunnableFunctionWithParse; }; export function isRunnableFunctionWithParse( @@ -91,8 +100,16 @@ export type RunnableTools = /** * This is helper class for passing a `function` and `parse` where the `function` * argument type matches the `parse` return type. + * + * @deprecated - please use ParsingToolFunction instead. */ export class ParsingFunction { + function: RunnableFunctionWithParse['function']; + parse: RunnableFunctionWithParse['parse']; + parameters: RunnableFunctionWithParse['parameters']; + description: RunnableFunctionWithParse['description']; + name?: RunnableFunctionWithParse['name']; + constructor(input: RunnableFunctionWithParse) { this.function = input.function; this.parse = input.parse; @@ -100,9 +117,18 @@ export class ParsingFunction { this.description = input.description; this.name = input.name; } - function: RunnableFunctionWithParse['function']; - parse: RunnableFunctionWithParse['parse']; - parameters: RunnableFunctionWithParse['parameters']; - description: RunnableFunctionWithParse['description']; - name?: RunnableFunctionWithParse['name']; +} + +/** + * This is helper class for passing a `function` and `parse` where the `function` + * argument type matches the `parse` return type. + */ +export class ParsingToolFunction { + type: 'function'; + function: RunnableFunctionWithParse; + + constructor(input: RunnableFunctionWithParse) { + this.type = 'function'; + this.function = input; + } } diff --git a/src/resources/beta/chat/completions.ts b/src/resources/beta/chat/completions.ts index f4904acb7..e7f89f5cf 100644 --- a/src/resources/beta/chat/completions.ts +++ b/src/resources/beta/chat/completions.ts @@ -19,6 +19,7 @@ export { RunnableFunctionWithParse, RunnableFunctionWithoutParse, ParsingFunction, + ParsingToolFunction, } from 'openai/lib/RunnableFunction'; import { ChatCompletionToolRunnerParams } from 'openai/lib/ChatCompletionRunner'; export { ChatCompletionToolRunnerParams } from 'openai/lib/ChatCompletionRunner'; @@ -29,13 +30,7 @@ export { ChatCompletionStream, type ChatCompletionStreamParams } from 'openai/li export class Completions extends APIResource { /** - * A convenience helper for using function calls with the /chat/completions - * endpoint which automatically calls the JavaScript functions you provide and - * sends their results back to the /chat/completions endpoint, looping as long as - * the model requests function calls. - * - * For more details and examples, see - * [the docs](https://github.com/openai/openai-node#automated-function-calls) + * @deprecated - use `runTools` instead. */ runFunctions( body: ChatCompletionFunctionRunnerParams, From 545053858e754b6989d69cf792eb581f5d53f860 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 11 Dec 2023 23:01:12 +0000 Subject: [PATCH 208/725] release: 4.21.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 24 ++++++++++++++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 29 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1c21a9343..4bb7e5af3 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.20.1" + ".": "4.21.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 331e2bd37..77ab63845 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## 4.21.0 (2023-12-11) + +Full Changelog: [v4.20.1...v4.21.0](https://github.com/openai/openai-node/compare/v4.20.1...v4.21.0) + +### Features + +* **client:** support reading the base url from an env variable ([#547](https://github.com/openai/openai-node/issues/547)) ([06fb68d](https://github.com/openai/openai-node/commit/06fb68de1ff80983e349b6715d1037e2072c8dd4)) + + +### Bug Fixes + +* correct some runTools behavior and deprecate runFunctions ([#562](https://github.com/openai/openai-node/issues/562)) ([f5cdd0f](https://github.com/openai/openai-node/commit/f5cdd0f704d3d075cdfc5bc2df1f7a8bae5cd9f1)) +* prevent 400 when using runTools/runFunctions with Azure OpenAI API ([#544](https://github.com/openai/openai-node/issues/544)) ([735d9b8](https://github.com/openai/openai-node/commit/735d9b86acdc067e1ee6ebe1ea50de2955431050)) + + +### Documentation + +* **readme:** update example snippets ([#546](https://github.com/openai/openai-node/issues/546)) ([566d290](https://github.com/openai/openai-node/commit/566d290006920f536788bb77f4d24a6906e2971f)) + + +### Build System + +* specify `packageManager: yarn` ([#561](https://github.com/openai/openai-node/issues/561)) ([935b898](https://github.com/openai/openai-node/commit/935b8983c74f7b03b67d22f4d194989838f963f3)) + ## 4.20.1 (2023-11-24) Full Changelog: [v4.20.0...v4.20.1](https://github.com/openai/openai-node/compare/v4.20.0...v4.20.1) diff --git a/README.md b/README.md index 2a23c32de..a52e2f884 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.20.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.21.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index 610d47c27..2f788d175 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.20.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.21.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 0d66b7365..8b62a945c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.20.1", + "version": "4.21.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index fb0af904c..ae187947c 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.20.1'; // x-release-please-version +export const VERSION = '4.21.0'; // x-release-please-version From 068bd133c40370285da669f3705e7215c024dd3a Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 14 Dec 2023 12:45:33 -0500 Subject: [PATCH 209/725] chore: update prettier (#567) --- .prettierrc | 6 - .prettierrc.json | 7 + package.json | 6 +- src/error.ts | 3 +- src/lib/AbstractChatCompletionRunner.ts | 8 +- src/streaming.ts | 5 +- src/uploads.ts | 5 +- tests/index.test.ts | 4 +- yarn.lock | 1107 ++++------------------- 9 files changed, 224 insertions(+), 927 deletions(-) delete mode 100644 .prettierrc create mode 100644 .prettierrc.json diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index 6f72f437c..000000000 --- a/.prettierrc +++ /dev/null @@ -1,6 +0,0 @@ -{ - "arrowParens": "always", - "trailingComma": "all", - "singleQuote": true, - "printWidth": 110 -} diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 000000000..af75adaf6 --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,7 @@ +{ + "arrowParens": "always", + "experimentalTernaries": true, + "printWidth": 110, + "singleQuote": true, + "trailingComma": "all" +} diff --git a/package.json b/package.json index 8b62a945c..4a7b239a0 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "build": "bash ./build", "prepack": "echo 'to pack, run yarn build && (cd dist; yarn pack)' && exit 1", "prepublishOnly": "echo 'to publish, run yarn build && (cd dist; yarn publish)' && exit 1", - "format": "prettier --write --cache --cache-strategy metadata . !dist", + "format": "prettier --write --cache --cache-strategy metadata . !dist", "prepare": "if [ $(basename $(dirname $PWD)) = 'node_modules' ]; then npm run build; fi", "tsn": "ts-node -r tsconfig-paths/register", "lint": "eslint --ext ts,js .", @@ -37,10 +37,10 @@ "@typescript-eslint/eslint-plugin": "^6.7.0", "@typescript-eslint/parser": "^6.7.0", "eslint": "^8.49.0", - "eslint-plugin-prettier": "^4.0.0", + "eslint-plugin-prettier": "^5.0.0", "eslint-plugin-unused-imports": "^2.0.0", "jest": "^29.4.0", - "prettier": "rattrayalex/prettier#postfix-ternaries", + "prettier": "^3.0.0", "ts-jest": "^29.1.0", "ts-morph": "^19.0.0", "ts-node": "^10.5.0", diff --git a/src/error.ts b/src/error.ts index 33bc5f06c..fd7477ad2 100644 --- a/src/error.ts +++ b/src/error.ts @@ -33,7 +33,8 @@ export class APIError extends OpenAIError { private static makeMessage(status: number | undefined, error: any, message: string | undefined) { const msg = error?.message ? - typeof error.message === 'string' ? error.message + typeof error.message === 'string' ? + error.message : JSON.stringify(error.message) : error ? JSON.stringify(error) : message; diff --git a/src/lib/AbstractChatCompletionRunner.ts b/src/lib/AbstractChatCompletionRunner.ts index 1f089d477..817a853b0 100644 --- a/src/lib/AbstractChatCompletionRunner.ts +++ b/src/lib/AbstractChatCompletionRunner.ts @@ -652,10 +652,10 @@ type CustomEvents = { : (...args: any[]) => void; }; -type ListenerForEvent< - Events extends CustomEvents, - Event extends keyof Events, -> = Event extends keyof AbstractChatCompletionRunnerEvents ? AbstractChatCompletionRunnerEvents[Event] +type ListenerForEvent, Event extends keyof Events> = Event extends ( + keyof AbstractChatCompletionRunnerEvents +) ? + AbstractChatCompletionRunnerEvents[Event] : Events[Event]; type ListenersForEvent, Event extends keyof Events> = Array<{ diff --git a/src/streaming.ts b/src/streaming.ts index 4482b8d02..d1ee70c2e 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -14,7 +14,10 @@ type ServerSentEvent = { export class Stream implements AsyncIterable { controller: AbortController; - constructor(private iterator: () => AsyncIterator, controller: AbortController) { + constructor( + private iterator: () => AsyncIterator, + controller: AbortController, + ) { this.controller = controller; } diff --git a/src/uploads.ts b/src/uploads.ts index 301d770e3..bc2afefa2 100644 --- a/src/uploads.ts +++ b/src/uploads.ts @@ -146,9 +146,8 @@ async function getBytes(value: ToFileInput): Promise> { } } else { throw new Error( - `Unexpected data type: ${typeof value}; constructor: ${ - value?.constructor?.name - }; props: ${propsForError(value)}`, + `Unexpected data type: ${typeof value}; constructor: ${value?.constructor + ?.name}; props: ${propsForError(value)}`, ); } diff --git a/tests/index.test.ts b/tests/index.test.ts index 78847568d..538f7dfc9 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -194,8 +194,8 @@ describe('retries', () => { let count = 0; const testFetch = async (url: RequestInfo, { signal }: RequestInit = {}): Promise => { if (!count++) - return new Promise((resolve, reject) => - signal?.addEventListener('abort', () => reject(new Error('timed out'))), + return new Promise( + (resolve, reject) => signal?.addEventListener('abort', () => reject(new Error('timed out'))), ); return new Response(JSON.stringify({ a: 1 }), { headers: { 'Content-Type': 'application/json' } }); }; diff --git a/yarn.lock b/yarn.lock index 4ddf947ac..14831c768 100644 --- a/yarn.lock +++ b/yarn.lock @@ -15,20 +15,6 @@ "@jridgewell/gen-mapping" "^0.1.0" "@jridgewell/trace-mapping" "^0.3.9" -"@angular/compiler@12.2.16": - version "12.2.16" - resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-12.2.16.tgz#1aa9b3fbd3fe900118ab371d30c090fbc137a15f" - integrity sha512-nsYEw+yu8QyeqPf9nAmG419i1mtGM4v8+U+S3eQHQFXTgJzLymMykWHYu2ETdjUpNSLK6xcIQDBWtWnWSfJjAA== - dependencies: - tslib "^2.2.0" - -"@babel/code-frame@7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" - integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== - dependencies: - "@babel/highlight" "^7.18.6" - "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7": version "7.16.7" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789" @@ -153,11 +139,6 @@ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== -"@babel/helper-validator-identifier@^7.18.6": - version "7.19.1" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" - integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== - "@babel/helper-validator-option@^7.16.7": version "7.16.7" resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23" @@ -181,20 +162,6 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/highlight@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" - integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== - dependencies: - "@babel/helper-validator-identifier" "^7.18.6" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@babel/parser@7.20.7": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.7.tgz#66fe23b3c8569220817d5feb8b9dcdc95bb4f71b" - integrity sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg== - "@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.7", "@babel/parser@^7.17.10": version "7.17.10" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.17.10.tgz#873b16db82a8909e0fbd7f115772f4b739f6ce78" @@ -385,42 +352,6 @@ resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.50.0.tgz#9e93b850f0f3fa35f5fa59adfd03adae8488e484" integrity sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ== -"@glimmer/env@0.1.7": - version "0.1.7" - resolved "https://registry.yarnpkg.com/@glimmer/env/-/env-0.1.7.tgz#fd2d2b55a9029c6b37a6c935e8c8871ae70dfa07" - integrity sha512-JKF/a9I9jw6fGoz8kA7LEQslrwJ5jms5CXhu/aqkBWk+PmZ6pTl8mlb/eJ/5ujBGTiQzBhy5AIWF712iA+4/mw== - -"@glimmer/interfaces@0.84.2": - version "0.84.2" - resolved "https://registry.yarnpkg.com/@glimmer/interfaces/-/interfaces-0.84.2.tgz#764cf92c954adcd1a851e5dc68ec1f6b654dc3bd" - integrity sha512-tMZxQpOddUVmHEOuripkNqVR7ba0K4doiYnFd4WyswqoHPlxqpBujbIamQ+bWCWEF0U4yxsXKa31ekS/JHkiBQ== - dependencies: - "@simple-dom/interface" "^1.4.0" - -"@glimmer/syntax@0.84.2": - version "0.84.2" - resolved "https://registry.yarnpkg.com/@glimmer/syntax/-/syntax-0.84.2.tgz#a3f65e51eec20f6adb79c6159d1ad1166fa5bccd" - integrity sha512-SPBd1tpIR9XeaXsXsMRCnKz63eLnIZ0d5G9QC4zIBFBC3pQdtG0F5kWeuRVCdfTIFuR+5WBMfk5jvg+3gbQhjg== - dependencies: - "@glimmer/interfaces" "0.84.2" - "@glimmer/util" "0.84.2" - "@handlebars/parser" "~2.0.0" - simple-html-tokenizer "^0.5.11" - -"@glimmer/util@0.84.2": - version "0.84.2" - resolved "https://registry.yarnpkg.com/@glimmer/util/-/util-0.84.2.tgz#2711ba40f25f44b2ea309cad49f5c2622c6211bc" - integrity sha512-VbhzE2s4rmU+qJF3gGBTL1IDjq+/G2Th51XErS8MQVMCmE4CU2pdwSzec8PyOowqCGUOrVIWuMzEI6VoPM4L4w== - dependencies: - "@glimmer/env" "0.1.7" - "@glimmer/interfaces" "0.84.2" - "@simple-dom/interface" "^1.4.0" - -"@handlebars/parser@~2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@handlebars/parser/-/parser-2.0.0.tgz#5e8b7298f31ff8f7b260e6b7363c7e9ceed7d9c5" - integrity sha512-EP9uEDZv/L5Qh9IWuMUGJRfwhXJ4h1dqKTT4/3+tY0eu7sPis7xh23j61SYUnNF4vqCQvvUXpDo9Bh/+q1zASA== - "@humanwhocodes/config-array@^0.11.11": version "0.11.11" resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.11.tgz#88a04c570dbbc7dd943e4712429c3df09bc32844" @@ -440,11 +371,6 @@ resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== -"@iarna/toml@2.2.5": - version "2.2.5" - resolved "https://registry.yarnpkg.com/@iarna/toml/-/toml-2.2.5.tgz#b32366c89b43c6f8cefbdefac778b9c828e3ba8c" - integrity sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg== - "@istanbuljs/load-nyc-config@^1.0.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" @@ -723,10 +649,17 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" -"@simple-dom/interface@^1.4.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@simple-dom/interface/-/interface-1.4.0.tgz#e8feea579232017f89b0138e2726facda6fbb71f" - integrity sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA== +"@pkgr/utils@^2.4.2": + version "2.4.2" + resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.4.2.tgz#9e638bbe9a6a6f165580dc943f138fd3309a2cbc" + integrity sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw== + dependencies: + cross-spawn "^7.0.3" + fast-glob "^3.3.0" + is-glob "^4.0.3" + open "^9.1.0" + picocolors "^1.0.0" + tslib "^2.6.0" "@sinclair/typebox@^0.25.16": version "0.25.24" @@ -867,11 +800,6 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.18.tgz#8dfb97f0da23c2293e554c5a50d61ef134d7697f" integrity sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA== -"@types/parse-json@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" - integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== - "@types/prettier@^2.1.5": version "2.6.0" resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.6.0.tgz#efcbd41937f9ae7434c714ab698604822d890759" @@ -887,11 +815,6 @@ resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== -"@types/unist@^2.0.0", "@types/unist@^2.0.2": - version "2.0.6" - resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" - integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== - "@types/yargs-parser@*": version "21.0.0" resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" @@ -950,29 +873,11 @@ debug "^4.3.4" ts-api-utils "^1.0.1" -"@typescript-eslint/types@5.45.0": - version "5.45.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.45.0.tgz#794760b9037ee4154c09549ef5a96599621109c5" - integrity sha512-QQij+u/vgskA66azc9dCmx+rev79PzX8uDHpsqSjEFtfF2gBUTRCpvYMh2gw2ghkJabNkPlSUCimsyBEQZd1DA== - "@typescript-eslint/types@6.7.3": version "6.7.3" resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.7.3.tgz#0402b5628a63f24f2dc9d4a678e9a92cc50ea3e9" integrity sha512-4g+de6roB2NFcfkZb439tigpAMnvEIg3rIjWQ+EM7IBaYt/CdJt6em9BJ4h4UpdgaBWdmx2iWsafHTrqmgIPNw== -"@typescript-eslint/typescript-estree@5.45.0": - version "5.45.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.45.0.tgz#f70a0d646d7f38c0dfd6936a5e171a77f1e5291d" - integrity sha512-maRhLGSzqUpFcZgXxg1qc/+H0bT36lHK4APhp0AEUVrpSwXiRAomm/JGjSG+kNUio5kAa3uekCYu/47cnGn5EQ== - dependencies: - "@typescript-eslint/types" "5.45.0" - "@typescript-eslint/visitor-keys" "5.45.0" - debug "^4.3.4" - globby "^11.1.0" - is-glob "^4.0.3" - semver "^7.3.7" - tsutils "^3.21.0" - "@typescript-eslint/typescript-estree@6.7.3": version "6.7.3" resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.7.3.tgz#ec5bb7ab4d3566818abaf0e4a8fa1958561b7279" @@ -999,14 +904,6 @@ "@typescript-eslint/typescript-estree" "6.7.3" semver "^7.5.4" -"@typescript-eslint/visitor-keys@5.45.0": - version "5.45.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.45.0.tgz#e0d160e9e7fdb7f8da697a5b78e7a14a22a70528" - integrity sha512-jc6Eccbn2RtQPr1s7th6jJWQHBHI6GBVQkCHoJFQ5UreaKm59Vxw+ynQUPPY2u2Amquc+7tmEoC2G52ApsGNNg== - dependencies: - "@typescript-eslint/types" "5.45.0" - eslint-visitor-keys "^3.3.0" - "@typescript-eslint/visitor-keys@6.7.3": version "6.7.3" resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.7.3.tgz#83809631ca12909bd2083558d2f93f5747deebb2" @@ -1022,7 +919,7 @@ abort-controller@^3.0.0: dependencies: event-target-shim "^5.0.0" -acorn-jsx@5.3.2, acorn-jsx@^5.3.2: +acorn-jsx@^5.3.2: version "5.3.2" resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== @@ -1032,21 +929,11 @@ acorn-walk@^8.1.1: resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== -acorn@8.8.1: - version "8.8.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73" - integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA== - acorn@^8.4.1: version "8.7.0" resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.0.tgz#90951fde0f8f09df93549481e5fc141445b791cf" integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ== -acorn@^8.8.0: - version "8.8.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8" - integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== - acorn@^8.9.0: version "8.10.0" resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5" @@ -1079,21 +966,6 @@ ajv@^6.12.4: json-schema-traverse "^0.4.1" uri-js "^4.2.2" -angular-estree-parser@2.5.1: - version "2.5.1" - resolved "https://registry.yarnpkg.com/angular-estree-parser/-/angular-estree-parser-2.5.1.tgz#a08791f64f1a9453ecb99be5379f7f282e46c6ca" - integrity sha512-QP+1HEp9sUV3/ADU02IRc+Vn9vvWZS2rRkxiXCpSpZZx3BqcYTm2Eg/gWwLG3H9XASXnf9i1KyNOIYyRy5Ja+w== - dependencies: - lines-and-columns "^1.1.6" - tslib "^2.0.3" - -angular-html-parser@1.8.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/angular-html-parser/-/angular-html-parser-1.8.0.tgz#bd315b74e8069135a046902078c73d959d1cc51c" - integrity sha512-n5ZowjJJs1OPG3DHDSyUXZvscQzy7uQG227ncL1NzbJEPzfb2XtBZ9qT0PW7cbD7MViho3ijawXoRLCM0ih1rw== - dependencies: - tslib "^1.9.3" - ansi-escapes@^4.2.1: version "4.3.2" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" @@ -1106,11 +978,6 @@ ansi-regex@^5.0.1: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== -ansi-regex@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" - integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== - ansi-styles@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" @@ -1225,11 +1092,6 @@ babel-preset-jest@^29.5.0: babel-plugin-jest-hoist "^29.5.0" babel-preset-current-node-syntax "^1.0.0" -bail@^1.0.0: - version "1.0.5" - resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776" - integrity sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ== - balanced-match@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" @@ -1240,6 +1102,18 @@ base-64@^0.1.0: resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb" integrity sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA== +big-integer@^1.6.44: + version "1.6.52" + resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.52.tgz#60a887f3047614a8e1bffe5d7173490a97dc8c85" + integrity sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg== + +bplist-parser@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.2.0.tgz#43a9d183e5bf9d545200ceac3e712f79ebbe8d0e" + integrity sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw== + dependencies: + big-integer "^1.6.44" + brace-expansion@^1.1.7: version "1.1.11" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" @@ -1292,37 +1166,34 @@ buffer-from@^1.0.0: resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== +bundle-name@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bundle-name/-/bundle-name-3.0.0.tgz#ba59bcc9ac785fb67ccdbf104a2bf60c099f0e1a" + integrity sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw== + dependencies: + run-applescript "^5.0.0" + callsites@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== -camelcase@6.3.0, camelcase@^6.2.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" - integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== - camelcase@^5.3.1: version "5.3.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== +camelcase@^6.2.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + caniuse-lite@^1.0.30001332: version "1.0.30001338" resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001338.tgz#b5dd7a7941a51a16480bdf6ff82bded1628eec0d" integrity sha512-1gLHWyfVoRDsHieO+CaeYe7jSo/MT7D7lhaXUiwwbuR5BwQxORs0f1tAwUSQr3YbxRXJvxHM/PA5FfPQRnsPeQ== -ccount@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.1.0.tgz#246687debb6014735131be8abab2d93898f8d043" - integrity sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg== - -chalk@5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.0.1.tgz#ca57d71e82bb534a296df63bbacc4a1c22b2a4b6" - integrity sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w== - -chalk@^2.0.0, chalk@^2.4.1: +chalk@^2.0.0: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== @@ -1344,39 +1215,16 @@ char-regex@^1.0.2: resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== -character-entities-legacy@^1.0.0: - version "1.1.4" - resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1" - integrity sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA== - -character-entities@^1.0.0: - version "1.2.4" - resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.4.tgz#e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b" - integrity sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw== - -character-reference-invalid@^1.0.0: - version "1.1.4" - resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560" - integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg== - charenc@0.0.2: version "0.0.2" resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA== -ci-info@3.3.0, ci-info@^3.2.0: +ci-info@^3.2.0: version "3.3.0" resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.3.0.tgz#b4ed1fb6818dea4803a55c623041f9165d2066b2" integrity sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw== -cjk-regex@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/cjk-regex/-/cjk-regex-2.0.1.tgz#98cca187aa67931db14f0d9dde556150c8116d95" - integrity sha512-4YTL4Zxzy33EhD2YMBQg6qavT+3OrYYu45RHcLANXhbVTXmVcwNQIv0vL1TUWjOS7bH0n0dVcGAdJAGzWSAa3A== - dependencies: - regexp-util "^1.2.1" - unicode-regex "^2.0.0" - cjs-module-lexer@^1.0.0: version "1.2.2" resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" @@ -1405,11 +1253,6 @@ cliui@^8.0.1: strip-ansi "^6.0.1" wrap-ansi "^7.0.0" -clone@^1.0.2: - version "1.0.4" - resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" - integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== - co@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" @@ -1420,11 +1263,6 @@ code-block-writer@^12.0.0: resolved "https://registry.yarnpkg.com/code-block-writer/-/code-block-writer-12.0.0.tgz#4dd58946eb4234105aff7f0035977b2afdc2a770" integrity sha512-q4dMFMlXtKR3XNBHyMHt/3pwYNA69EDk00lloMOaaUMKPUXBw6lpXtbu3MMVG6/uOihGnRDOlkyqsONEUj60+w== -collapse-white-space@1.0.6, collapse-white-space@^1.0.2: - version "1.0.6" - resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.6.tgz#e63629c0016665792060dbbeb79c42239d2c5287" - integrity sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ== - collect-v8-coverage@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" @@ -1461,16 +1299,6 @@ combined-stream@^1.0.8: dependencies: delayed-stream "~1.0.0" -commander@^2.19.0: - version "2.20.3" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" - integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== - -commondir@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" - integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== - concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" @@ -1488,17 +1316,6 @@ convert-source-map@^2.0.0: resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== -cosmiconfig@7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d" - integrity sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ== - dependencies: - "@types/parse-json" "^4.0.0" - import-fresh "^3.2.1" - parse-json "^5.0.0" - path-type "^4.0.0" - yaml "^1.10.0" - create-require@^1.1.0: version "1.1.1" resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" @@ -1518,16 +1335,6 @@ crypt@0.0.2: resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow== -css-units-list@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/css-units-list/-/css-units-list-1.1.0.tgz#46cfb7022c9eb626d9a62589372b8439e1ddb91e" - integrity sha512-WnbCcmr1rHeUb5JbpIWyBjH0HiW6RIZRujOzVvwyE2aZGqtjLFUfiqB9nYmAPlYHNgvqvjhX8YeJv0uF25QoHg== - -dashify@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/dashify/-/dashify-2.0.0.tgz#fff270ca2868ca427fee571de35691d6e437a648" - integrity sha512-hpA5C/YrPjucXypHPPc0oJ1l9Hf6wWbiOL7Ik42cxnsUOhWiCB/fylKbKqqJalW9FgkNQCw16YO8uW9Hs0Iy1A== - debug@^4.1.0: version "4.3.3" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" @@ -1557,12 +1364,28 @@ deepmerge@^4.2.2: resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== -defaults@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" - integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== +default-browser-id@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/default-browser-id/-/default-browser-id-3.0.0.tgz#bee7bbbef1f4e75d31f98f4d3f1556a14cea790c" + integrity sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA== dependencies: - clone "^1.0.2" + bplist-parser "^0.2.0" + untildify "^4.0.0" + +default-browser@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/default-browser/-/default-browser-4.0.0.tgz#53c9894f8810bf86696de117a6ce9085a3cbc7da" + integrity sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA== + dependencies: + bundle-name "^3.0.0" + default-browser-id "^3.0.0" + execa "^7.1.1" + titleize "^3.0.0" + +define-lazy-prop@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz#dbb19adfb746d7fc6d734a06b72f4a00d021255f" + integrity sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg== delayed-stream@~1.0.0: version "1.0.0" @@ -1584,11 +1407,6 @@ diff-sequences@^29.4.3: resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.4.3.tgz#9314bc1fabe09267ffeca9cbafc457d8499a13f2" integrity sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA== -diff@5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" - integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== - diff@^4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" @@ -1616,21 +1434,6 @@ doctrine@^3.0.0: dependencies: esutils "^2.0.2" -editorconfig-to-prettier@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/editorconfig-to-prettier/-/editorconfig-to-prettier-0.2.0.tgz#db4f4e96796c746673c863ccac881377ea83dbe8" - integrity sha512-tOcbAuPyYE9zOA1HF2xI9Xqm2TW7BE9E2lhwbz69ngtaJrBWQwL6akzyWA+UPx8jRss91KXMChyjHNpqaYFWuQ== - -editorconfig@0.15.3: - version "0.15.3" - resolved "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.15.3.tgz#bef84c4e75fb8dcb0ce5cee8efd51c15999befc5" - integrity sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g== - dependencies: - commander "^2.19.0" - lru-cache "^4.1.5" - semver "^5.6.0" - sigmund "^1.0.1" - electron-to-chromium@^1.4.118: version "1.4.137" resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.137.tgz#186180a45617283f1c012284458510cd99d6787f" @@ -1646,11 +1449,6 @@ emoji-regex@^8.0.0: resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== -emoji-regex@^9.2.2: - version "9.2.2" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" - integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== - error-ex@^1.3.1: version "1.3.2" resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" @@ -1663,11 +1461,6 @@ escalade@^3.1.1: resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== -escape-string-regexp@5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz#4683126b500b61762f2dbebace1806e8be31b1c8" - integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw== - escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" @@ -1683,12 +1476,13 @@ escape-string-regexp@^4.0.0: resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== -eslint-plugin-prettier@^4.0.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz#651cbb88b1dab98bfd42f017a12fa6b2d993f94b" - integrity sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ== +eslint-plugin-prettier@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.0.1.tgz#a3b399f04378f79f066379f544e42d6b73f11515" + integrity sha512-m3u5RnR56asrwV/lDC4GHorlW75DsFfmUcjfCYylTUs85dBRnB7VM6xG8eCMJdeDRnppzmxZVf1GEPJvl1JmNg== dependencies: prettier-linter-helpers "^1.0.0" + synckit "^0.8.5" eslint-plugin-unused-imports@^2.0.0: version "2.0.0" @@ -1763,15 +1557,6 @@ eslint@^8.49.0: strip-ansi "^6.0.1" text-table "^0.2.0" -espree@9.4.1: - version "9.4.1" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.1.tgz#51d6092615567a2c2cff7833445e37c28c0065bd" - integrity sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg== - dependencies: - acorn "^8.8.0" - acorn-jsx "^5.3.2" - eslint-visitor-keys "^3.3.0" - espree@^9.6.0, espree@^9.6.1: version "9.6.1" resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" @@ -1805,7 +1590,7 @@ estraverse@^5.1.0, estraverse@^5.2.0: resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== -esutils@2.0.3, esutils@^2.0.2: +esutils@^2.0.2: version "2.0.3" resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== @@ -1830,6 +1615,21 @@ execa@^5.0.0: signal-exit "^3.0.3" strip-final-newline "^2.0.0" +execa@^7.1.1: + version "7.2.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-7.2.0.tgz#657e75ba984f42a70f38928cedc87d6f2d4fe4e9" + integrity sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.1" + human-signals "^4.3.0" + is-stream "^3.0.0" + merge-stream "^2.0.0" + npm-run-path "^5.1.0" + onetime "^6.0.0" + signal-exit "^3.0.7" + strip-final-newline "^3.0.0" + exit@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" @@ -1846,11 +1646,6 @@ expect@^29.0.0, expect@^29.5.0: jest-message-util "^29.5.0" jest-util "^29.5.0" -extend@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" - integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== - fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" @@ -1861,7 +1656,7 @@ fast-diff@^1.1.2: resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.3.0.tgz#ece407fa550a64d638536cd727e129c61616e0f0" integrity sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw== -fast-glob@3.2.12, fast-glob@^3.2.12: +fast-glob@^3.2.12: version "3.2.12" resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== @@ -1883,7 +1678,18 @@ fast-glob@^3.2.9: merge2 "^1.3.0" micromatch "^4.0.4" -fast-json-stable-stringify@2.1.0, fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: +fast-glob@^3.3.0: + version "3.3.2" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== @@ -1907,7 +1713,7 @@ fb-watchman@^2.0.0: dependencies: bser "2.1.1" -file-entry-cache@6.0.1, file-entry-cache@^6.0.1: +file-entry-cache@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== @@ -1921,20 +1727,6 @@ fill-range@^7.0.1: dependencies: to-regex-range "^5.0.1" -find-cache-dir@3.3.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" - integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== - dependencies: - commondir "^1.0.1" - make-dir "^3.0.2" - pkg-dir "^4.1.0" - -find-parent-dir@0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.1.tgz#c5c385b96858c3351f95d446cab866cbf9f11125" - integrity sha512-o4UcykWV/XN9wm+jMEtWLPlV8RXCZnMhQI6F6OdHeSez7iiJWePw8ijOlskJZMsaQoGR/b7dH6lO02HhaTN7+A== - find-up@^4.0.0, find-up@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" @@ -1964,16 +1756,6 @@ flatted@^3.1.0: resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== -flatten@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.3.tgz#c1283ac9f27b368abc1e36d1ff7b04501a30356b" - integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg== - -flow-parser@0.180.0: - version "0.180.0" - resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.180.0.tgz#05d49a88715ceca0457607499a018e2bf5908d72" - integrity sha512-kkzsuGAhckWgn/G+JfCyEa6BYslGrjlH4CJL0LZhdn9of9ukvi7SzVQSFsrEhuhh/zQUghfUEoaeZy1wjQXpUg== - form-data-encoder@1.7.2: version "1.7.2" resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-1.7.2.tgz#1f1ae3dccf58ed4690b86d87e4f57c654fbab040" @@ -2026,12 +1808,12 @@ get-package-type@^0.1.0: resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== -get-stdin@8.0.0, get-stdin@^8.0.0: +get-stdin@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53" integrity sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg== -get-stream@^6.0.0: +get-stream@^6.0.0, get-stream@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== @@ -2108,11 +1890,6 @@ graphemer@^1.4.0: resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== -graphql@15.6.1: - version "15.6.1" - resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.6.1.tgz#9125bdf057553525da251e19e96dab3d3855ddfc" - integrity sha512-3i5lu0z6dRvJ48QP9kFxBkJ7h4Kso7PS8eahyTFz5Jm6CvQfLtNIE8LX9N6JLnXTuwR+sIYnXzaWp6anOg0QQw== - has-flag@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" @@ -2130,36 +1907,21 @@ has@^1.0.3: dependencies: function-bind "^1.1.1" -html-element-attributes@3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/html-element-attributes/-/html-element-attributes-3.1.0.tgz#07869037b9020bec3bb1897263e97dd65829d15b" - integrity sha512-cHM9qM06tyWHwvGqDqVEBwoYtGgyq7X/GQt3dor38M1hYMZw1yVadaDQrwwQer6NefiYAoHaqFARI8ETMCAOYA== - html-escaper@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== -html-styles@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/html-styles/-/html-styles-1.0.0.tgz#a18061fd651f99c6b75c45c8e0549a3bc3e01a75" - integrity sha512-cDl5dcj73oI4Hy0DSUNh54CAwslNLJRCCoO+RNkVo+sBrjA/0+7E/xzvj3zH/GxbbBLGJhE0hBe1eg+0FINC6w== - -html-tag-names@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/html-tag-names/-/html-tag-names-2.0.1.tgz#5626263e7d7b15789fa35a9f816234156901adc6" - integrity sha512-PX8KyLG7dwsjis3NPj1u+/EJf2CgH2d+qzekQpnlCOPQ6Uu6T8+F2ZqQg+wtsP+WKhxK3QMN9Garcwr7fCRhxA== - -html-void-elements@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-2.0.1.tgz#29459b8b05c200b6c5ee98743c41b979d577549f" - integrity sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A== - human-signals@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== +human-signals@^4.3.0: + version "4.3.1" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-4.3.1.tgz#ab7f811e851fca97ffbd2c1fe9a958964de321b2" + integrity sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ== + humanize-ms@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" @@ -2167,11 +1929,6 @@ humanize-ms@^1.2.1: dependencies: ms "^2.0.0" -ignore@5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" - integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== - ignore@^5.2.0, ignore@^5.2.4: version "5.2.4" resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" @@ -2203,11 +1960,6 @@ indent-string@^4.0.0: resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== -indexes-of@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" - integrity sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA== - inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" @@ -2216,34 +1968,16 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.0, inherits@^2.0.3: +inherits@2, inherits@^2.0.3: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== -is-alphabetical@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d" - integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg== - -is-alphanumerical@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf" - integrity sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A== - dependencies: - is-alphabetical "^1.0.0" - is-decimal "^1.0.0" - is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= -is-buffer@^2.0.0: - version "2.0.5" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" - integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== - is-buffer@~1.1.6: version "1.1.6" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" @@ -2256,17 +1990,15 @@ is-core-module@^2.8.1: dependencies: has "^1.0.3" -is-core-module@^2.9.0: - version "2.11.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" - integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== - dependencies: - has "^1.0.3" +is-docker@^2.0.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== -is-decimal@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5" - integrity sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw== +is-docker@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-3.0.0.tgz#90093aa3106277d8a77a5910dbae71747e15a200" + integrity sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ== is-extglob@^2.1.1: version "2.1.1" @@ -2278,11 +2010,6 @@ is-fullwidth-code-point@^3.0.0: resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== -is-fullwidth-code-point@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz#fae3167c729e7463f8461ce512b080a49268aa88" - integrity sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ== - is-generator-fn@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" @@ -2295,10 +2022,12 @@ is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: dependencies: is-extglob "^2.1.1" -is-hexadecimal@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7" - integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw== +is-inside-container@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-inside-container/-/is-inside-container-1.0.0.tgz#e81fba699662eb31dbdaf26766a61d4814717ea4" + integrity sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA== + dependencies: + is-docker "^3.0.0" is-number@^7.0.0: version "7.0.0" @@ -2310,25 +2039,22 @@ is-path-inside@^3.0.3: resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== -is-plain-obj@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" - integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== - is-stream@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== -is-whitespace-character@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz#0858edd94a95594c7c9dd0b5c174ec6e45ee4aa7" - integrity sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w== +is-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" + integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== -is-word-character@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-word-character/-/is-word-character-1.0.4.tgz#ce0e73216f98599060592f62ff31354ddbeb0230" - integrity sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA== +is-wsl@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== + dependencies: + is-docker "^2.0.0" isexe@^2.0.0: version "2.0.0" @@ -2467,13 +2193,6 @@ jest-diff@^29.5.0: jest-get-type "^29.4.3" pretty-format "^29.5.0" -jest-docblock@28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-28.1.1.tgz#6f515c3bf841516d82ecd57a62eed9204c2f42a8" - integrity sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA== - dependencies: - detect-newline "^3.0.0" - jest-docblock@^29.4.3: version "29.4.3" resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-29.4.3.tgz#90505aa89514a1c7dceeac1123df79e414636ea8" @@ -2785,7 +2504,7 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== -json5@2.2.1, json5@^2.2.1: +json5@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== @@ -2800,16 +2519,6 @@ kleur@^3.0.3: resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== -leven@4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/leven/-/leven-4.0.0.tgz#b9c39c803f835950fabef9e122a9b47b95708710" - integrity sha512-puehA3YKku3osqPlNuzGDUHq8WpwXupUg1V6NXdV38G+gr+gkBwFC8g1b/+YcIvp8gnqVIus+eJCH/eGsRmJNw== - -leven@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" - integrity sha512-nvVPLpIHUxCUoRLrFqTgSxXJ614d8AgQoWl7zPe/2VadE8+1dpU3LBhowRuBAcuwruWtOdD8oYC9jDNJjXDPyA== - leven@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" @@ -2823,21 +2532,11 @@ levn@^0.4.1: prelude-ls "^1.2.1" type-check "~0.4.0" -lines-and-columns@2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-2.0.3.tgz#b2f0badedb556b747020ab8ea7f0373e22efac1b" - integrity sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w== - lines-and-columns@^1.1.6: version "1.2.4" resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== -linguist-languages@7.21.0: - version "7.21.0" - resolved "https://registry.yarnpkg.com/linguist-languages/-/linguist-languages-7.21.0.tgz#da0184f622367cb092f1f8ba435937a85534f675" - integrity sha512-KrWJJbFOvlDhjlt5OhUipVlXg+plUfRurICAyij1ZVxQcqPt/zeReb9KiUVdGUwwhS/2KS9h3TbyfYLA5MDlxQ== - locate-path@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" @@ -2862,14 +2561,6 @@ lodash.merge@^4.6.2: resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== -lru-cache@^4.1.5: - version "4.1.5" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" - integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== - dependencies: - pseudomap "^1.0.2" - yallist "^2.1.2" - lru-cache@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" @@ -2877,7 +2568,7 @@ lru-cache@^6.0.0: dependencies: yallist "^4.0.0" -make-dir@^3.0.0, make-dir@^3.0.2: +make-dir@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== @@ -2896,18 +2587,6 @@ makeerror@1.0.12: dependencies: tmpl "1.0.5" -map-age-cleaner@^0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" - integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== - dependencies: - p-defer "^1.0.0" - -markdown-escapes@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/markdown-escapes/-/markdown-escapes-1.0.4.tgz#c95415ef451499d7602b91095f3c8e8975f78535" - integrity sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg== - md5@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" @@ -2917,14 +2596,6 @@ md5@^2.3.0: crypt "0.0.2" is-buffer "~1.1.6" -mem@9.0.2: - version "9.0.2" - resolved "https://registry.yarnpkg.com/mem/-/mem-9.0.2.tgz#bbc2d40be045afe30749681e8f5d554cee0c0354" - integrity sha512-F2t4YIv9XQUBHt6AOJ0y7lSmP1+cY7Fm1DRh9GClTGzKST7UWLMx6ly9WZdLH/G/ppM5RL4MlQfRT71ri9t19A== - dependencies: - map-age-cleaner "^0.1.3" - mimic-fn "^4.0.0" - merge-stream@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" @@ -2935,12 +2606,7 @@ merge2@^1.3.0, merge2@^1.4.1: resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== -meriyah@4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/meriyah/-/meriyah-4.2.1.tgz#2a5c9ac2f4a16673afa31af1266ce491a8973bb4" - integrity sha512-Uv5sWsmjFNC6IszEmHo5bzJLL+kqjQ/VrEj9Agqsqtx7B6dcxHnHLew1ioJD19HNXrxrRZltPi+NVh12I8RLXA== - -micromatch@4.0.5, micromatch@^4.0.4: +micromatch@^4.0.4: version "4.0.5" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== @@ -2984,7 +2650,7 @@ minimatch@^7.4.3: dependencies: brace-expansion "^2.0.1" -minimist@1.2.6, minimist@^1.2.6: +minimist@^1.2.6: version "1.2.6" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== @@ -3004,11 +2670,6 @@ ms@^2.0.0: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== -n-readlines@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/n-readlines/-/n-readlines-1.0.1.tgz#bbb7364d38bc31a170a199f986fcacfa76b95f6e" - integrity sha512-z4SyAIVgMy7CkgsoNw7YVz40v0g4+WWvvqy8+ZdHrCtgevcEO758WQyrYcw3XPxcLxF+//RszTz/rO48nzD0wQ== - natural-compare@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" @@ -3048,6 +2709,13 @@ npm-run-path@^4.0.1: dependencies: path-key "^3.0.0" +npm-run-path@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.1.0.tgz#bc62f7f3f6952d9894bd08944ba011a6ee7b7e00" + integrity sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q== + dependencies: + path-key "^4.0.0" + once@^1.3.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" @@ -3062,6 +2730,23 @@ onetime@^5.1.2: dependencies: mimic-fn "^2.1.0" +onetime@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4" + integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== + dependencies: + mimic-fn "^4.0.0" + +open@^9.1.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/open/-/open-9.1.0.tgz#684934359c90ad25742f5a26151970ff8c6c80b6" + integrity sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg== + dependencies: + default-browser "^4.0.0" + define-lazy-prop "^3.0.0" + is-inside-container "^1.0.0" + is-wsl "^2.2.0" + optionator@^0.9.3: version "0.9.3" resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" @@ -3074,11 +2759,6 @@ optionator@^0.9.3: prelude-ls "^1.2.1" type-check "^0.4.0" -outdent@0.8.0: - version "0.8.0" - resolved "https://registry.yarnpkg.com/outdent/-/outdent-0.8.0.tgz#2ebc3e77bf49912543f1008100ff8e7f44428eb0" - integrity sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A== - p-all@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/p-all/-/p-all-3.0.0.tgz#077c023c37e75e760193badab2bad3ccd5782bfb" @@ -3086,11 +2766,6 @@ p-all@^3.0.0: dependencies: p-map "^4.0.0" -p-defer@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" - integrity sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw== - p-limit@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" @@ -3138,19 +2813,7 @@ parent-module@^1.0.0: dependencies: callsites "^3.0.0" -parse-entities@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-2.0.0.tgz#53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8" - integrity sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ== - dependencies: - character-entities "^1.0.0" - character-entities-legacy "^1.0.0" - character-reference-invalid "^1.0.0" - is-alphanumerical "^1.0.0" - is-decimal "^1.0.0" - is-hexadecimal "^1.0.0" - -parse-json@^5.0.0, parse-json@^5.2.0: +parse-json@^5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== @@ -3160,10 +2823,6 @@ parse-json@^5.0.0, parse-json@^5.2.0: json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" -parse-srcset@ikatyang/parse-srcset#54eb9c1cb21db5c62b4d0e275d7249516df6f0ee: - version "1.0.2" - resolved "https://codeload.github.com/ikatyang/parse-srcset/tar.gz/54eb9c1cb21db5c62b4d0e275d7249516df6f0ee" - path-browserify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" @@ -3184,6 +2843,11 @@ path-key@^3.0.0, path-key@^3.1.0: resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== +path-key@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" + integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== + path-parse@^1.0.7: version "1.0.7" resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" @@ -3194,11 +2858,6 @@ path-type@^4.0.0: resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== -picocolors@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f" - integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA== - picocolors@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" @@ -3214,65 +2873,13 @@ pirates@^4.0.4: resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== -pkg-dir@^4.1.0, pkg-dir@^4.2.0: +pkg-dir@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== dependencies: find-up "^4.0.0" -please-upgrade-node@3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" - integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== - dependencies: - semver-compare "^1.0.0" - -postcss-less@3.1.4: - version "3.1.4" - resolved "https://registry.yarnpkg.com/postcss-less/-/postcss-less-3.1.4.tgz#369f58642b5928ef898ffbc1a6e93c958304c5ad" - integrity sha512-7TvleQWNM2QLcHqvudt3VYjULVB49uiW6XzEUFmvwHzvsOEF5MwBrIXZDJQvJNFGjJQTzSzZnDoCJ8h/ljyGXA== - dependencies: - postcss "^7.0.14" - -postcss-media-query-parser@0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244" - integrity sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig== - -postcss-scss@2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-2.1.1.tgz#ec3a75fa29a55e016b90bf3269026c53c1d2b383" - integrity sha512-jQmGnj0hSGLd9RscFw9LyuSVAa5Bl1/KBPqG1NQw9w8ND55nY4ZEsdlVuYJvLPpV+y0nwTV5v/4rHPzZRihQbA== - dependencies: - postcss "^7.0.6" - -postcss-selector-parser@2.2.3: - version "2.2.3" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90" - integrity sha512-3pqyakeGhrO0BQ5+/tGTfvi5IAUAhHRayGK8WFSu06aEv2BmHoXw/Mhb+w7VY5HERIuC+QoUI7wgrCcq2hqCVA== - dependencies: - flatten "^1.0.2" - indexes-of "^1.0.1" - uniq "^1.0.1" - -postcss-values-parser@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz#da8b472d901da1e205b47bdc98637b9e9e550e5f" - integrity sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg== - dependencies: - flatten "^1.0.2" - indexes-of "^1.0.1" - uniq "^1.0.1" - -postcss@^7.0.14, postcss@^7.0.6: - version "7.0.39" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.39.tgz#9624375d965630e2e1f2c02a935c82a59cb48309" - integrity sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA== - dependencies: - picocolors "^0.2.1" - source-map "^0.6.1" - prelude-ls@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" @@ -3285,80 +2892,10 @@ prettier-linter-helpers@^1.0.0: dependencies: fast-diff "^1.1.2" -prettier@rattrayalex/prettier#postfix-ternaries: - version "2.9.0-dev" - resolved "https://codeload.github.com/rattrayalex/prettier/tar.gz/ec73d020c586dbc1ca4f6fbd7b612541a9a8002e" - dependencies: - "@angular/compiler" "12.2.16" - "@babel/code-frame" "7.18.6" - "@babel/parser" "7.20.7" - "@glimmer/syntax" "0.84.2" - "@iarna/toml" "2.2.5" - "@typescript-eslint/typescript-estree" "5.45.0" - acorn "8.8.1" - acorn-jsx "5.3.2" - angular-estree-parser "2.5.1" - angular-html-parser "1.8.0" - camelcase "6.3.0" - chalk "5.0.1" - ci-info "3.3.0" - cjk-regex "2.0.1" - collapse-white-space "1.0.6" - cosmiconfig "7.0.1" - css-units-list "1.1.0" - dashify "2.0.0" - diff "5.0.0" - editorconfig "0.15.3" - editorconfig-to-prettier "0.2.0" - escape-string-regexp "5.0.0" - espree "9.4.1" - esutils "2.0.3" - fast-glob "3.2.12" - fast-json-stable-stringify "2.1.0" - file-entry-cache "6.0.1" - find-cache-dir "3.3.2" - find-parent-dir "0.3.1" - flow-parser "0.180.0" - get-stdin "8.0.0" - graphql "15.6.1" - html-element-attributes "3.1.0" - html-styles "1.0.0" - html-tag-names "2.0.1" - html-void-elements "2.0.1" - ignore "5.2.0" - jest-docblock "28.1.1" - json5 "2.2.1" - leven "4.0.0" - lines-and-columns "2.0.3" - linguist-languages "7.21.0" - mem "9.0.2" - meriyah "4.2.1" - micromatch "4.0.5" - minimist "1.2.6" - n-readlines "1.0.1" - outdent "0.8.0" - parse-srcset ikatyang/parse-srcset#54eb9c1cb21db5c62b4d0e275d7249516df6f0ee - please-upgrade-node "3.2.0" - postcss-less "3.1.4" - postcss-media-query-parser "0.2.3" - postcss-scss "2.1.1" - postcss-selector-parser "2.2.3" - postcss-values-parser "2.0.1" - regexp-util "1.2.2" - remark-footnotes "2.0.0" - remark-math "3.0.1" - remark-parse "8.0.3" - resolve "1.22.1" - sdbm "2.0.0" - semver "7.3.7" - string-width "5.0.1" - strip-ansi "7.0.1" - typescript "4.9.3" - unicode-regex "3.0.0" - unified "9.2.1" - vnopts "1.0.2" - wcwidth "1.0.1" - yaml-unist-parser "1.3.1" +prettier@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.1.1.tgz#6ba9f23165d690b6cbdaa88cb0807278f7019848" + integrity sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw== pretty-format@^29.0.0, pretty-format@^29.5.0: version "29.5.0" @@ -3377,11 +2914,6 @@ prompts@^2.0.1: kleur "^3.0.3" sisteransi "^1.0.5" -pseudomap@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" - integrity sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ== - punycode@^2.1.0: version "2.3.0" resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" @@ -3411,50 +2943,6 @@ readable-stream@^3.4.0: string_decoder "^1.1.1" util-deprecate "^1.0.1" -regexp-util@1.2.2, regexp-util@^1.2.0, regexp-util@^1.2.1: - version "1.2.2" - resolved "https://registry.yarnpkg.com/regexp-util/-/regexp-util-1.2.2.tgz#5cf599134921eb0d776e41d41e9c0da33f0fa2fc" - integrity sha512-5/rl2UD18oAlLQEIuKBeiSIOp1hb5wCXcakl5yvHxlY1wyWI4D5cUKKzCibBeu741PA9JKvZhMqbkDQqPusX3w== - dependencies: - tslib "^1.9.0" - -remark-footnotes@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/remark-footnotes/-/remark-footnotes-2.0.0.tgz#9001c4c2ffebba55695d2dd80ffb8b82f7e6303f" - integrity sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ== - -remark-math@3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/remark-math/-/remark-math-3.0.1.tgz#85a02a15b15cad34b89a27244d4887b3a95185bb" - integrity sha512-epT77R/HK0x7NqrWHdSV75uNLwn8g9qTyMqCRCDujL0vj/6T6+yhdrR7mjELWtkse+Fw02kijAaBuVcHBor1+Q== - -remark-parse@8.0.3: - version "8.0.3" - resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-8.0.3.tgz#9c62aa3b35b79a486454c690472906075f40c7e1" - integrity sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q== - dependencies: - ccount "^1.0.0" - collapse-white-space "^1.0.2" - is-alphabetical "^1.0.0" - is-decimal "^1.0.0" - is-whitespace-character "^1.0.0" - is-word-character "^1.0.0" - markdown-escapes "^1.0.0" - parse-entities "^2.0.0" - repeat-string "^1.5.4" - state-toggle "^1.0.0" - trim "0.0.1" - trim-trailing-lines "^1.0.0" - unherit "^1.0.4" - unist-util-remove-position "^2.0.0" - vfile-location "^3.0.0" - xtend "^4.0.1" - -repeat-string@^1.5.4: - version "1.6.1" - resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" - integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== - require-directory@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" @@ -3482,15 +2970,6 @@ resolve.exports@^2.0.0: resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800" integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== -resolve@1.22.1: - version "1.22.1" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" - integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== - dependencies: - is-core-module "^2.9.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - resolve@^1.20.0: version "1.22.0" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198" @@ -3512,6 +2991,13 @@ rimraf@^3.0.2: dependencies: glob "^7.1.3" +run-applescript@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/run-applescript/-/run-applescript-5.0.0.tgz#e11e1c932e055d5c6b40d98374e0268d9b11899c" + integrity sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg== + dependencies: + execa "^5.0.0" + run-parallel@^1.1.9: version "1.2.0" resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" @@ -3529,34 +3015,19 @@ safe-buffer@~5.2.0: resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== -sdbm@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/sdbm/-/sdbm-2.0.0.tgz#23828c1195e341d0f5810c59dfa60d86278f8718" - integrity sha512-dspMGxvHiwSTgyrmm90jHQV2sDqK46ssbDK+bQAlJ5aRuPo3C7So108V6rCuCDbm1CrNWuPeMpmTNQKPl7vO+A== - -semver-compare@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" - integrity sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow== - -semver@7.3.7, semver@7.x, semver@^7.3.5: +semver@7.x, semver@^7.3.5: version "7.3.7" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== dependencies: lru-cache "^6.0.0" -semver@^5.6.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - semver@^6.0.0, semver@^6.3.0: version "6.3.0" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== -semver@^7.3.7, semver@^7.5.4: +semver@^7.5.4: version "7.5.4" resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== @@ -3575,21 +3046,11 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -sigmund@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" - integrity sha512-fCvEXfh6NWpm+YSuY2bpXb/VIihqWA6hLsgboC+0nl71Q7N7o2eaCW8mJa/NLvQhs6jpd3VZV4UiUQlV6+lc8g== - signal-exit@^3.0.3, signal-exit@^3.0.7: version "3.0.7" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== -simple-html-tokenizer@^0.5.11: - version "0.5.11" - resolved "https://registry.yarnpkg.com/simple-html-tokenizer/-/simple-html-tokenizer-0.5.11.tgz#4c5186083c164ba22a7b477b7687ac056ad6b1d9" - integrity sha512-C2WEK/Z3HoSFbYq8tI7ni3eOo/NneSPRoPpcM7WdLjFOArFuyXEjAoCdOC3DgMfRyziZQ1hCNR4mrNdWEvD0og== - sisteransi@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" @@ -3625,11 +3086,6 @@ stack-utils@^2.0.3: dependencies: escape-string-regexp "^2.0.0" -state-toggle@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.3.tgz#e123b16a88e143139b09c6852221bc9815917dfe" - integrity sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ== - string-length@^4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" @@ -3645,15 +3101,6 @@ string-to-stream@^3.0.1: dependencies: readable-stream "^3.4.0" -string-width@5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.0.1.tgz#0d8158335a6cfd8eb95da9b6b262ce314a036ffd" - integrity sha512-5ohWO/M4//8lErlUUtrFy3b11GtNOuMOU0ysKCDXFcfXuuvUXu95akgj/i8ofmaGdN0hCqyl6uu9i8dS/mQp5g== - dependencies: - emoji-regex "^9.2.2" - is-fullwidth-code-point "^4.0.0" - strip-ansi "^7.0.1" - string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" @@ -3670,13 +3117,6 @@ string_decoder@^1.1.1: dependencies: safe-buffer "~5.2.0" -strip-ansi@7.0.1, strip-ansi@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.0.1.tgz#61740a08ce36b61e50e65653f07060d000975fb2" - integrity sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw== - dependencies: - ansi-regex "^6.0.1" - strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" @@ -3699,6 +3139,11 @@ strip-final-newline@^2.0.0: resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== +strip-final-newline@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" + integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== + strip-json-comments@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" @@ -3735,6 +3180,14 @@ supports-preserve-symlinks-flag@^1.0.0: resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== +synckit@^0.8.5: + version "0.8.6" + resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.8.6.tgz#b69b7fbce3917c2673cbdc0d87fb324db4a5b409" + integrity sha512-laHF2savN6sMeHCjLRkheIU4wo3Zg9Ln5YOjOo7sZ5dVQW8yF5pPE5SIw1dsPhq3TRp1jisKRCdPhfs/1WMqDA== + dependencies: + "@pkgr/utils" "^2.4.2" + tslib "^2.6.2" + test-exclude@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" @@ -3749,6 +3202,11 @@ text-table@^0.2.0: resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== +titleize@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/titleize/-/titleize-3.0.0.tgz#71c12eb7fdd2558aa8a44b0be83b8a76694acd53" + integrity sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ== + tmpl@1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" @@ -3771,21 +3229,6 @@ tr46@~0.0.3: resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= -trim-trailing-lines@^1.0.0: - version "1.1.4" - resolved "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz#bd4abbec7cc880462f10b2c8b5ce1d8d1ec7c2c0" - integrity sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ== - -trim@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" - integrity sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ== - -trough@^1.0.0: - version "1.0.5" - resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406" - integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA== - ts-api-utils@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.0.3.tgz#f12c1c781d04427313dbac808f453f050e54a331" @@ -3857,27 +3300,15 @@ tsconfig-paths@^4.0.0: minimist "^1.2.6" strip-bom "^3.0.0" -tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3: - version "1.14.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - -tslib@^2.0.3, tslib@^2.2.0: - version "2.4.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e" - integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA== - tslib@^2.5.0: version "2.6.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.0.tgz#b295854684dbda164e181d259a22cd779dcd7bc3" integrity sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA== -tsutils@^3.21.0: - version "3.21.0" - resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" - integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== - dependencies: - tslib "^1.8.1" +tslib@^2.6.0, tslib@^2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" + integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" @@ -3901,90 +3332,15 @@ type-fest@^0.21.3: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== -typescript@4.9.3: - version "4.9.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.3.tgz#3aea307c1746b8c384435d8ac36b8a2e580d85db" - integrity sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA== - typescript@^4.8.2: version "4.9.5" resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== -unherit@^1.0.4: - version "1.1.3" - resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.3.tgz#6c9b503f2b41b262330c80e91c8614abdaa69c22" - integrity sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ== - dependencies: - inherits "^2.0.0" - xtend "^4.0.0" - -unicode-regex@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/unicode-regex/-/unicode-regex-3.0.0.tgz#0c20df914c6da0412b3714cd300726e0f7f24698" - integrity sha512-WiDJdORsqgxkZrjC8WsIP573130HNn7KsB0IDnUccW2BG2b19QQNloNhVe6DKk3Aef0UcoIHhNVj7IkkcYWrNw== - dependencies: - regexp-util "^1.2.0" - -unicode-regex@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-regex/-/unicode-regex-2.0.0.tgz#ef8f6642c37dddcaa0c09af5b9456aabf6b436a3" - integrity sha512-5nbEG2YU7loyTvPABaKb+8B0u8L7vWCsVmCSsiaO249ZdMKlvrXlxR2ex4TUVAdzv/Cne/TdoXSSaJArGXaleQ== - dependencies: - regexp-util "^1.2.0" - -unified@9.2.1: - version "9.2.1" - resolved "https://registry.yarnpkg.com/unified/-/unified-9.2.1.tgz#ae18d5674c114021bfdbdf73865ca60f410215a3" - integrity sha512-juWjuI8Z4xFg8pJbnEZ41b5xjGUWGHqXALmBZ3FC3WX0PIx1CZBIIJ6mXbYMcf6Yw4Fi0rFUTA1cdz/BglbOhA== - dependencies: - bail "^1.0.0" - extend "^3.0.0" - is-buffer "^2.0.0" - is-plain-obj "^2.0.0" - trough "^1.0.0" - vfile "^4.0.0" - -uniq@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" - integrity sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA== - -unist-util-is@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.1.0.tgz#976e5f462a7a5de73d94b706bac1b90671b57797" - integrity sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg== - -unist-util-remove-position@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz#5d19ca79fdba712301999b2b73553ca8f3b352cc" - integrity sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA== - dependencies: - unist-util-visit "^2.0.0" - -unist-util-stringify-position@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz#cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da" - integrity sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g== - dependencies: - "@types/unist" "^2.0.2" - -unist-util-visit-parents@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz#65a6ce698f78a6b0f56aa0e88f13801886cdaef6" - integrity sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg== - dependencies: - "@types/unist" "^2.0.0" - unist-util-is "^4.0.0" - -unist-util-visit@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-2.0.3.tgz#c3703893146df47203bb8a9795af47d7b971208c" - integrity sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q== - dependencies: - "@types/unist" "^2.0.0" - unist-util-is "^4.0.0" - unist-util-visit-parents "^3.0.0" +untildify@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b" + integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw== uri-js@^4.2.2: version "4.4.1" @@ -4012,38 +3368,6 @@ v8-to-istanbul@^9.0.1: "@types/istanbul-lib-coverage" "^2.0.1" convert-source-map "^1.6.0" -vfile-location@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-3.2.0.tgz#d8e41fbcbd406063669ebf6c33d56ae8721d0f3c" - integrity sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA== - -vfile-message@^2.0.0: - version "2.0.4" - resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-2.0.4.tgz#5b43b88171d409eae58477d13f23dd41d52c371a" - integrity sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ== - dependencies: - "@types/unist" "^2.0.0" - unist-util-stringify-position "^2.0.0" - -vfile@^4.0.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/vfile/-/vfile-4.2.1.tgz#03f1dce28fc625c625bc6514350fbdb00fa9e624" - integrity sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA== - dependencies: - "@types/unist" "^2.0.0" - is-buffer "^2.0.0" - unist-util-stringify-position "^2.0.0" - vfile-message "^2.0.0" - -vnopts@1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/vnopts/-/vnopts-1.0.2.tgz#f6a331473de0179d1679112cc090572b695202f7" - integrity sha512-d2rr2EFhAGHnTlURu49G7GWmiJV80HbAnkYdD9IFAtfhmxC+kSWEaZ6ZF064DJFTv9lQZQV1vuLTntyQpoanGQ== - dependencies: - chalk "^2.4.1" - leven "^2.1.0" - tslib "^1.9.3" - walker@^1.0.8: version "1.0.8" resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" @@ -4051,13 +3375,6 @@ walker@^1.0.8: dependencies: makeerror "1.0.12" -wcwidth@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" - integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== - dependencies: - defaults "^1.0.3" - web-streams-polyfill@4.0.0-beta.1: version "4.0.0-beta.1" resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.1.tgz#3b19b9817374b7cee06d374ba7eeb3aeb80e8c95" @@ -4110,40 +3427,16 @@ write-file-atomic@^4.0.2: imurmurhash "^0.1.4" signal-exit "^3.0.7" -xtend@^4.0.0, xtend@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - y18n@^5.0.5: version "5.0.8" resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== -yallist@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" - integrity sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A== - yallist@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== -yaml-unist-parser@1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/yaml-unist-parser/-/yaml-unist-parser-1.3.1.tgz#4305a54d8f8750dfff782bb998ff93d0da538d1a" - integrity sha512-4aHBMpYcnByF8l2OKj5hlBJlxSYIMON8Z1Hm57ymbBL4omXMlGgY+pEf4Di6h2qNT8ZG8seTVvAQYNOa7CZ9eA== - dependencies: - lines-and-columns "^1.1.6" - tslib "^1.10.0" - yaml "^1.10.0" - -yaml@^1.10.0: - version "1.10.2" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" - integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== - yargs-parser@^21.0.0: version "21.0.1" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.1.tgz#0267f286c877a4f0f728fceb6f8a3e4cb95c6e35" From c4fadb4513fc2e35cf0e4b9512ec39a6bd0e42dd Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 14 Dec 2023 22:04:05 -0500 Subject: [PATCH 210/725] feat(api): add optional `name` argument + improve docs (#569) --- src/lib/AbstractChatCompletionRunner.ts | 8 +- src/resources/audio/speech.ts | 4 +- src/resources/chat/completions.ts | 91 ++++++++++++------- src/resources/completions.ts | 4 +- src/resources/embeddings.ts | 3 +- src/resources/files.ts | 6 +- src/resources/shared.ts | 28 +++--- .../beta/assistants/files.test.ts | 8 +- .../beta/threads/messages/files.test.ts | 15 ++- tests/api-resources/chat/completions.test.ts | 2 +- 10 files changed, 91 insertions(+), 78 deletions(-) diff --git a/src/lib/AbstractChatCompletionRunner.ts b/src/lib/AbstractChatCompletionRunner.ts index 817a853b0..8a8f4670d 100644 --- a/src/lib/AbstractChatCompletionRunner.ts +++ b/src/lib/AbstractChatCompletionRunner.ts @@ -6,7 +6,6 @@ import { type ChatCompletionMessage, type ChatCompletionMessageParam, type ChatCompletionCreateParams, - type ChatCompletionAssistantMessageParam, type ChatCompletionTool, } from 'openai/resources/chat/completions'; import { APIUserAbortError, OpenAIError } from 'openai/error'; @@ -90,7 +89,6 @@ export abstract class AbstractChatCompletionRunner< } protected _addMessage(message: ChatCompletionMessageParam, emit = true) { - // @ts-expect-error this works around a bug in the Azure OpenAI API in which `content` is missing instead of null. if (!('content' in message)) message.content = null; this.messages.push(message); @@ -217,7 +215,7 @@ export abstract class AbstractChatCompletionRunner< } #getFinalContent(): string | null { - return this.#getFinalMessage().content; + return this.#getFinalMessage().content ?? null; } /** @@ -229,12 +227,12 @@ export abstract class AbstractChatCompletionRunner< return this.#getFinalContent(); } - #getFinalMessage(): ChatCompletionAssistantMessageParam { + #getFinalMessage(): ChatCompletionMessage { let i = this.messages.length; while (i-- > 0) { const message = this.messages[i]; if (isAssistantMessage(message)) { - return message; + return { ...message, content: message.content ?? null }; } } throw new OpenAIError('stream ended without producing a ChatCompletionMessage with role=assistant'); diff --git a/src/resources/audio/speech.ts b/src/resources/audio/speech.ts index 89e426847..faa281686 100644 --- a/src/resources/audio/speech.ts +++ b/src/resources/audio/speech.ts @@ -28,7 +28,9 @@ export interface SpeechCreateParams { /** * The voice to use when generating the audio. Supported voices are `alloy`, - * `echo`, `fable`, `onyx`, `nova`, and `shimmer`. + * `echo`, `fable`, `onyx`, `nova`, and `shimmer`. Previews of the voices are + * available in the + * [Text to speech guide](https://platform.openai.com/docs/guides/text-to-speech/voice-options). */ voice: 'alloy' | 'echo' | 'fable' | 'onyx' | 'nova' | 'shimmer'; diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 3f83a7dd4..759c6e7c3 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -105,14 +105,15 @@ export namespace ChatCompletion { export interface ChatCompletionAssistantMessageParam { /** - * The contents of the assistant message. + * The role of the messages author, in this case `assistant`. */ - content: string | null; + role: 'assistant'; /** - * The role of the messages author, in this case `assistant`. + * The contents of the assistant message. Required unless `tool_calls` or + * `function_call` is specified. */ - role: 'assistant'; + content?: string | null; /** * Deprecated and replaced by `tool_calls`. The name and arguments of a function @@ -120,6 +121,12 @@ export interface ChatCompletionAssistantMessageParam { */ function_call?: ChatCompletionAssistantMessageParam.FunctionCall; + /** + * An optional name for the participant. Provides the model information to + * differentiate between participants of the same role. + */ + name?: string; + /** * The tool calls generated by the model, such as function calls. */ @@ -309,7 +316,8 @@ export namespace ChatCompletionContentPartImage { url: string; /** - * Specifies the detail level of the image. + * Specifies the detail level of the image. Learn more in the + * [Vision guide](https://platform.openai.com/docs/guides/vision/low-or-high-fidelity-image-understanding). */ detail?: 'auto' | 'low' | 'high'; } @@ -340,9 +348,9 @@ export interface ChatCompletionFunctionCallOption { export interface ChatCompletionFunctionMessageParam { /** - * The return value from the function call, to return to the model. + * The contents of the function message. */ - content: string | null; + content: string; /** * The name of the function to call. @@ -451,12 +459,12 @@ export namespace ChatCompletionMessageToolCall { * function. */ export interface ChatCompletionNamedToolChoice { - function?: ChatCompletionNamedToolChoice.Function; + function: ChatCompletionNamedToolChoice.Function; /** * The type of the tool. Currently, only `function` is supported. */ - type?: 'function'; + type: 'function'; } export namespace ChatCompletionNamedToolChoice { @@ -477,12 +485,18 @@ export interface ChatCompletionSystemMessageParam { /** * The contents of the system message. */ - content: string | null; + content: string; /** * The role of the messages author, in this case `system`. */ role: 'system'; + + /** + * An optional name for the participant. Provides the model information to + * differentiate between participants of the same role. + */ + name?: string; } export interface ChatCompletionTool { @@ -511,7 +525,7 @@ export interface ChatCompletionToolMessageParam { /** * The contents of the tool message. */ - content: string | null; + content: string; /** * The role of the messages author, in this case `tool`. @@ -528,12 +542,18 @@ export interface ChatCompletionUserMessageParam { /** * The contents of the user message. */ - content: string | Array | null; + content: string | Array; /** * The role of the messages author, in this case `user`. */ role: 'user'; + + /** + * An optional name for the participant. Provides the model information to + * differentiate between participants of the same role. + */ + name?: string; } /** @@ -567,11 +587,11 @@ export interface ChatCompletionCreateParamsBase { | 'gpt-4-32k' | 'gpt-4-32k-0314' | 'gpt-4-32k-0613' - | 'gpt-3.5-turbo-1106' | 'gpt-3.5-turbo' | 'gpt-3.5-turbo-16k' | 'gpt-3.5-turbo-0301' | 'gpt-3.5-turbo-0613' + | 'gpt-3.5-turbo-1106' | 'gpt-3.5-turbo-16k-0613'; /** @@ -579,7 +599,7 @@ export interface ChatCompletionCreateParamsBase { * existing frequency in the text so far, decreasing the model's likelihood to * repeat the same line verbatim. * - * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/gpt/parameter-details) + * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation/parameter-details) */ frequency_penalty?: number | null; @@ -627,7 +647,9 @@ export interface ChatCompletionCreateParamsBase { max_tokens?: number | null; /** - * How many chat completion choices to generate for each input message. + * How many chat completion choices to generate for each input message. Note that + * you will be charged based on the number of generated tokens across all of the + * choices. Keep `n` as `1` to minimize costs. */ n?: number | null; @@ -636,7 +658,7 @@ export interface ChatCompletionCreateParamsBase { * whether they appear in the text so far, increasing the model's likelihood to * talk about new topics. * - * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/gpt/parameter-details) + * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation/parameter-details) */ presence_penalty?: number | null; @@ -649,10 +671,10 @@ export interface ChatCompletionCreateParamsBase { * **Important:** when using JSON mode, you **must** also instruct the model to * produce JSON yourself via a system or user message. Without this, the model may * generate an unending stream of whitespace until the generation reaches the token - * limit, resulting in increased latency and appearance of a "stuck" request. Also - * note that the message content may be partially cut off if - * `finish_reason="length"`, which indicates the generation exceeded `max_tokens` - * or the conversation exceeded the max context length. + * limit, resulting in a long-running and seemingly "stuck" request. Also note that + * the message content may be partially cut off if `finish_reason="length"`, which + * indicates the generation exceeded `max_tokens` or the conversation exceeded the + * max context length. */ response_format?: ChatCompletionCreateParams.ResponseFormat; @@ -734,23 +756,22 @@ export namespace ChatCompletionCreateParams { */ name: string; + /** + * A description of what the function does, used by the model to choose when and + * how to call the function. + */ + description?: string; + /** * The parameters the functions accepts, described as a JSON Schema object. See the - * [guide](https://platform.openai.com/docs/guides/gpt/function-calling) for - * examples, and the + * [guide](https://platform.openai.com/docs/guides/text-generation/function-calling) + * for examples, and the * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for * documentation about the format. * - * To describe a function that accepts no parameters, provide the value - * `{"type": "object", "properties": {}}`. - */ - parameters: Shared.FunctionParameters; - - /** - * A description of what the function does, used by the model to choose when and - * how to call the function. + * Omitting `parameters` defines a function with an empty parameter list. */ - description?: string; + parameters?: Shared.FunctionParameters; } /** @@ -762,10 +783,10 @@ export namespace ChatCompletionCreateParams { * **Important:** when using JSON mode, you **must** also instruct the model to * produce JSON yourself via a system or user message. Without this, the model may * generate an unending stream of whitespace until the generation reaches the token - * limit, resulting in increased latency and appearance of a "stuck" request. Also - * note that the message content may be partially cut off if - * `finish_reason="length"`, which indicates the generation exceeded `max_tokens` - * or the conversation exceeded the max context length. + * limit, resulting in a long-running and seemingly "stuck" request. Also note that + * the message content may be partially cut off if `finish_reason="length"`, which + * indicates the generation exceeded `max_tokens` or the conversation exceeded the + * max context length. */ export interface ResponseFormat { /** diff --git a/src/resources/completions.ts b/src/resources/completions.ts index 0bee93131..f33624e73 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -177,7 +177,7 @@ export interface CompletionCreateParamsBase { * existing frequency in the text so far, decreasing the model's likelihood to * repeat the same line verbatim. * - * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/gpt/parameter-details) + * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation/parameter-details) */ frequency_penalty?: number | null; @@ -232,7 +232,7 @@ export interface CompletionCreateParamsBase { * whether they appear in the text so far, increasing the model's likelihood to * talk about new topics. * - * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/gpt/parameter-details) + * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation/parameter-details) */ presence_penalty?: number | null; diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index 7ace4589d..318a45275 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -82,7 +82,8 @@ export interface EmbeddingCreateParams { * Input text to embed, encoded as a string or array of tokens. To embed multiple * inputs in a single request, pass an array of strings or array of token arrays. * The input must not exceed the max input tokens for the model (8192 tokens for - * `text-embedding-ada-002`) and cannot be an empty string. + * `text-embedding-ada-002`), cannot be an empty string, and any array must be 2048 + * dimensions or less. * [Example Python code](https://cookbook.openai.com/examples/how_to_count_tokens_with_tiktoken) * for counting tokens. */ diff --git a/src/resources/files.ts b/src/resources/files.ts index 8e3a759d9..ea3f3b9c1 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -12,10 +12,10 @@ import { Page } from 'openai/pagination'; export class Files extends APIResource { /** - * Upload a file that can be used across various endpoints/features. The size of - * all the files uploaded by one organization can be up to 100 GB. + * Upload a file that can be used across various endpoints. The size of all the + * files uploaded by one organization can be up to 100 GB. * - * The size of individual files for can be a maximum of 512MB. See the + * The size of individual files can be a maximum of 512 MB. See the * [Assistants Tools guide](https://platform.openai.com/docs/assistants/tools) to * learn more about the types of files supported. The Fine-tuning API only supports * `.jsonl` files. diff --git a/src/resources/shared.ts b/src/resources/shared.ts index d8d9bd0c8..05ab66383 100644 --- a/src/resources/shared.ts +++ b/src/resources/shared.ts @@ -7,33 +7,31 @@ export interface FunctionDefinition { */ name: string; + /** + * A description of what the function does, used by the model to choose when and + * how to call the function. + */ + description?: string; + /** * The parameters the functions accepts, described as a JSON Schema object. See the - * [guide](https://platform.openai.com/docs/guides/gpt/function-calling) for - * examples, and the + * [guide](https://platform.openai.com/docs/guides/text-generation/function-calling) + * for examples, and the * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for * documentation about the format. * - * To describe a function that accepts no parameters, provide the value - * `{"type": "object", "properties": {}}`. + * Omitting `parameters` defines a function with an empty parameter list. */ - parameters: FunctionParameters; - - /** - * A description of what the function does, used by the model to choose when and - * how to call the function. - */ - description?: string; + parameters?: FunctionParameters; } /** * The parameters the functions accepts, described as a JSON Schema object. See the - * [guide](https://platform.openai.com/docs/guides/gpt/function-calling) for - * examples, and the + * [guide](https://platform.openai.com/docs/guides/text-generation/function-calling) + * for examples, and the * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for * documentation about the format. * - * To describe a function that accepts no parameters, provide the value - * `{"type": "object", "properties": {}}`. + * Omitting `parameters` defines a function with an empty parameter list. */ export type FunctionParameters = Record; diff --git a/tests/api-resources/beta/assistants/files.test.ts b/tests/api-resources/beta/assistants/files.test.ts index b06cac855..8db328442 100644 --- a/tests/api-resources/beta/assistants/files.test.ts +++ b/tests/api-resources/beta/assistants/files.test.ts @@ -10,9 +10,7 @@ const openai = new OpenAI({ describe('resource files', () => { test('create: only required params', async () => { - const responsePromise = openai.beta.assistants.files.create('file-AF1WoRqd3aJAHsqc9NY7iL8F', { - file_id: 'string', - }); + const responsePromise = openai.beta.assistants.files.create('file-abc123', { file_id: 'string' }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -23,9 +21,7 @@ describe('resource files', () => { }); test('create: required and optional params', async () => { - const response = await openai.beta.assistants.files.create('file-AF1WoRqd3aJAHsqc9NY7iL8F', { - file_id: 'string', - }); + const response = await openai.beta.assistants.files.create('file-abc123', { file_id: 'string' }); }); test('retrieve', async () => { diff --git a/tests/api-resources/beta/threads/messages/files.test.ts b/tests/api-resources/beta/threads/messages/files.test.ts index 501ed8311..b4a00a868 100644 --- a/tests/api-resources/beta/threads/messages/files.test.ts +++ b/tests/api-resources/beta/threads/messages/files.test.ts @@ -11,9 +11,9 @@ const openai = new OpenAI({ describe('resource files', () => { test('retrieve', async () => { const responsePromise = openai.beta.threads.messages.files.retrieve( - 'thread_AF1WoRqd3aJAHsqc9NY7iL8F', - 'msg_AF1WoRqd3aJAHsqc9NY7iL8F', - 'file-AF1WoRqd3aJAHsqc9NY7iL8F', + 'thread_abc123', + 'msg_abc123', + 'file-abc123', ); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); @@ -27,12 +27,9 @@ describe('resource files', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.messages.files.retrieve( - 'thread_AF1WoRqd3aJAHsqc9NY7iL8F', - 'msg_AF1WoRqd3aJAHsqc9NY7iL8F', - 'file-AF1WoRqd3aJAHsqc9NY7iL8F', - { path: '/_stainless_unknown_path' }, - ), + openai.beta.threads.messages.files.retrieve('thread_abc123', 'msg_abc123', 'file-abc123', { + path: '/_stainless_unknown_path', + }), ).rejects.toThrow(OpenAI.NotFoundError); }); diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index b4eb00dfd..15b815a51 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -25,7 +25,7 @@ describe('resource completions', () => { test('create: required and optional params', async () => { const response = await openai.chat.completions.create({ - messages: [{ content: 'string', role: 'system' }], + messages: [{ content: 'string', role: 'system', name: 'string' }], model: 'gpt-3.5-turbo', frequency_penalty: -2, function_call: 'none', From f82691a7f647f1010d3a7f5b32be05f97ed00bbf Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 14 Dec 2023 22:04:29 -0500 Subject: [PATCH 211/725] release: 4.22.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4bb7e5af3..60136e2f7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.21.0" + ".": "4.22.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 77ab63845..892c40d2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.22.0 (2023-12-15) + +Full Changelog: [v4.21.0...v4.22.0](https://github.com/openai/openai-node/compare/v4.21.0...v4.22.0) + +### Features + +* **api:** add optional `name` argument + improve docs ([#569](https://github.com/openai/openai-node/issues/569)) ([3b68ace](https://github.com/openai/openai-node/commit/3b68ace533976aedbf642d9b018d0de8d9a8bb88)) + + +### Chores + +* update prettier ([#567](https://github.com/openai/openai-node/issues/567)) ([83dec2a](https://github.com/openai/openai-node/commit/83dec2af62c481d7de16d8a3644aa239ded9e30c)) + ## 4.21.0 (2023-12-11) Full Changelog: [v4.20.1...v4.21.0](https://github.com/openai/openai-node/compare/v4.20.1...v4.21.0) diff --git a/README.md b/README.md index a52e2f884..62ff186fb 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.21.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.22.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index 2f788d175..02f3be058 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.21.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.22.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 4a7b239a0..1acd1c3bd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.21.0", + "version": "4.22.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index ae187947c..18a082ece 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.21.0'; // x-release-please-version +export const VERSION = '4.22.0'; // x-release-please-version From ae2dd768ea2ffb20439dd2e17dd9d5c0942e796a Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 15 Dec 2023 01:01:34 -0500 Subject: [PATCH 212/725] docs: replace runFunctions with runTools in readme (#570) --- README.md | 44 ++++++++++++++++++++++++++------------------ 1 file changed, 26 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 62ff186fb..f7bdf2370 100644 --- a/README.md +++ b/README.md @@ -143,17 +143,17 @@ If you need to cancel a stream, you can `break` from a `for await` loop or call ### Automated function calls -We provide `openai.beta.chat.completions.runFunctions({…})` and `openai.beta.chat.completions.runTools({…})` -convenience helpers for using function calls with the `/chat/completions` endpoint +We provide the `openai.beta.chat.completions.runTools({…})` +convenience helper for using function tool calls with the `/chat/completions` endpoint which automatically call the JavaScript functions you provide and sends their results back to the `/chat/completions` endpoint, -looping as long as the model requests function calls. +looping as long as the model requests tool calls. If you pass a `parse` function, it will automatically parse the `arguments` for you and returns any parsing errors to the model to attempt auto-recovery. Otherwise, the args will be passed to the function you provide as a string. -If you pass `function_call: {name: …}` or `tool_choice: {function: {name: …}}` instead of `auto`, +If you pass `tool_choice: {function: {name: …}}` instead of `auto`, it returns immediately after calling that function (and only loops to auto-recover parsing errors). ```ts @@ -163,21 +163,27 @@ const client = new OpenAI(); async function main() { const runner = client.beta.chat.completions - .runFunctions({ + .runTools({ model: 'gpt-3.5-turbo', messages: [{ role: 'user', content: 'How is the weather this week?' }], - functions: [ + tools: [ { - function: getCurrentLocation, - parameters: { type: 'object', properties: {} }, + type: 'function', + function: { + function: getCurrentLocation, + parameters: { type: 'object', properties: {} }, + }, }, { - function: getWeather, - parse: JSON.parse, // or use a validation library like zod for typesafe parsing. - parameters: { - type: 'object', - properties: { - location: { type: 'string' }, + type: 'function', + function: { + function: getWeather, + parse: JSON.parse, // or use a validation library like zod for typesafe parsing. + parameters: { + type: 'object', + properties: { + location: { type: 'string' }, + }, }, }, }, @@ -203,10 +209,10 @@ async function getWeather(args: { location: string }) { main(); // {role: "user", content: "How's the weather this week?"} -// {role: "assistant", function_call: "getCurrentLocation", arguments: "{}"} -// {role: "function", name: "getCurrentLocation", content: "Boston"} -// {role: "assistant", function_call: "getWeather", arguments: '{"location": "Boston"}'} -// {role: "function", name: "getWeather", content: '{"temperature": "50degF", "preciptation": "high"}'} +// {role: "assistant", tool_calls: [{type: "function", function: {name: "getCurrentLocation", arguments: "{}"}, id: "123"} +// {role: "tool", name: "getCurrentLocation", content: "Boston", tool_call_id: "123"} +// {role: "assistant", tool_calls: [{type: "function", function: {name: "getWeather", arguments: '{"location": "Boston"}'}, id: "1234"}]} +// {role: "tool", name: "getWeather", content: '{"temperature": "50degF", "preciptation": "high"}', tool_call_id: "1234"} // {role: "assistant", content: "It's looking cold and rainy - you might want to wear a jacket!"} // // Final content: "It's looking cold and rainy - you might want to wear a jacket!" @@ -214,6 +220,8 @@ main(); Like with `.stream()`, we provide a variety of [helpers and events](helpers.md#events). +Note that `runFunctions` was previously available as well, but has been deprecated in favor of `runTools`. + Read more about various examples such as with integrating with [zod](helpers.md#integrate-with-zod), [next.js](helpers.md#integrate-wtih-next-js), and [proxying a stream to the browser](helpers.md#proxy-streaming-to-a-browser). From effebe2a297db1929aba341666697bfec4db04d6 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 15 Dec 2023 11:52:23 -0500 Subject: [PATCH 213/725] chore: update dependencies (#572) --- package.json | 4 ++-- yarn.lock | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 1acd1c3bd..a01b893c4 100644 --- a/package.json +++ b/package.json @@ -37,8 +37,8 @@ "@typescript-eslint/eslint-plugin": "^6.7.0", "@typescript-eslint/parser": "^6.7.0", "eslint": "^8.49.0", - "eslint-plugin-prettier": "^5.0.0", - "eslint-plugin-unused-imports": "^2.0.0", + "eslint-plugin-prettier": "^5.0.1", + "eslint-plugin-unused-imports": "^3.0.0", "jest": "^29.4.0", "prettier": "^3.0.0", "ts-jest": "^29.1.0", diff --git a/yarn.lock b/yarn.lock index 14831c768..090849a83 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1476,7 +1476,7 @@ escape-string-regexp@^4.0.0: resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== -eslint-plugin-prettier@^5.0.0: +eslint-plugin-prettier@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.0.1.tgz#a3b399f04378f79f066379f544e42d6b73f11515" integrity sha512-m3u5RnR56asrwV/lDC4GHorlW75DsFfmUcjfCYylTUs85dBRnB7VM6xG8eCMJdeDRnppzmxZVf1GEPJvl1JmNg== @@ -1484,10 +1484,10 @@ eslint-plugin-prettier@^5.0.0: prettier-linter-helpers "^1.0.0" synckit "^0.8.5" -eslint-plugin-unused-imports@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-unused-imports/-/eslint-plugin-unused-imports-2.0.0.tgz#d8db8c4d0cfa0637a8b51ce3fd7d1b6bc3f08520" - integrity sha512-3APeS/tQlTrFa167ThtP0Zm0vctjr4M44HMpeg1P4bK6wItarumq0Ma82xorMKdFsWpphQBlRPzw/pxiVELX1A== +eslint-plugin-unused-imports@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-unused-imports/-/eslint-plugin-unused-imports-3.0.0.tgz#d25175b0072ff16a91892c3aa72a09ca3a9e69e7" + integrity sha512-sduiswLJfZHeeBJ+MQaG+xYzSWdRXoSw61DpU13mzWumCkR0ufD0HmO4kdNokjrkluMHpj/7PJeN35pgbhW3kw== dependencies: eslint-rule-composer "^0.3.0" From 65e671557876f96bd2f89b6dd20c920e279ce782 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 15 Dec 2023 11:52:48 -0500 Subject: [PATCH 214/725] release: 4.22.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 60136e2f7..907c917d6 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.22.0" + ".": "4.22.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 892c40d2c..cf7376a89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.22.1 (2023-12-15) + +Full Changelog: [v4.22.0...v4.22.1](https://github.com/openai/openai-node/compare/v4.22.0...v4.22.1) + +### Chores + +* update dependencies ([#572](https://github.com/openai/openai-node/issues/572)) ([a51e620](https://github.com/openai/openai-node/commit/a51e62065224a516b17dd850ae564f5436d8db52)) + + +### Documentation + +* replace runFunctions with runTools in readme ([#570](https://github.com/openai/openai-node/issues/570)) ([c3b9ad5](https://github.com/openai/openai-node/commit/c3b9ad58e5f74d3339889aeb1d758c8c18f54de7)) + ## 4.22.0 (2023-12-15) Full Changelog: [v4.21.0...v4.22.0](https://github.com/openai/openai-node/compare/v4.21.0...v4.22.0) diff --git a/README.md b/README.md index f7bdf2370..3ca8c9be2 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.22.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.22.1/mod.ts'; ``` diff --git a/build-deno b/build-deno index 02f3be058..83408c99a 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.22.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.22.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index a01b893c4..3b43de465 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.22.0", + "version": "4.22.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 18a082ece..f1bd8fe60 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.22.0'; // x-release-please-version +export const VERSION = '4.22.1'; // x-release-please-version From 465236d9a0046f911e85461e3cbad27853c31007 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sat, 16 Dec 2023 19:39:07 -0500 Subject: [PATCH 215/725] chore(ci): run release workflow once per day (#574) --- .github/workflows/create-releases.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/create-releases.yml b/.github/workflows/create-releases.yml index edd154553..716282b08 100644 --- a/.github/workflows/create-releases.yml +++ b/.github/workflows/create-releases.yml @@ -1,5 +1,7 @@ name: Create releases on: + schedule: + - cron: '0 5 * * *' # every day at 5am UTC push: branches: - master From f1852f6d016919938117445d9ad8c65472b91996 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sat, 16 Dec 2023 19:47:08 -0500 Subject: [PATCH 216/725] feat(api): add token logprobs to chat completions (#576) --- api.md | 1 + examples/logprobs.ts | 23 ++++ src/index.ts | 1 + src/lib/ChatCompletionRunFunctions.test.ts | 15 +++ src/lib/ChatCompletionStream.ts | 30 ++++- src/resources/beta/threads/runs/steps.ts | 4 +- src/resources/chat/chat.ts | 1 + src/resources/chat/completions.ts | 110 ++++++++++++++++++- src/resources/chat/index.ts | 1 + src/resources/completions.ts | 11 +- src/resources/files.ts | 3 +- tests/api-resources/chat/completions.test.ts | 2 + 12 files changed, 184 insertions(+), 18 deletions(-) create mode 100755 examples/logprobs.ts diff --git a/api.md b/api.md index b8da4cf0c..82ffae114 100644 --- a/api.md +++ b/api.md @@ -37,6 +37,7 @@ Types: - ChatCompletionNamedToolChoice - ChatCompletionRole - ChatCompletionSystemMessageParam +- ChatCompletionTokenLogprob - ChatCompletionTool - ChatCompletionToolChoiceOption - ChatCompletionToolMessageParam diff --git a/examples/logprobs.ts b/examples/logprobs.ts new file mode 100755 index 000000000..5a4daf7de --- /dev/null +++ b/examples/logprobs.ts @@ -0,0 +1,23 @@ +#!/usr/bin/env -S npm run tsn -T + +import OpenAI from 'openai'; + +// gets API Key from environment variable OPENAI_API_KEY +const openai = new OpenAI(); + +async function main() { + const stream = await openai.beta.chat.completions + .stream({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + stream: true, + logprobs: true, + }) + .on('logprob', (logprob) => { + console.log(logprob); + }); + + console.dir(await stream.finalChatCompletion(), { depth: null }); +} + +main(); diff --git a/src/index.ts b/src/index.ts index 71c1678b9..a03531dbe 100644 --- a/src/index.ts +++ b/src/index.ts @@ -242,6 +242,7 @@ export namespace OpenAI { export import ChatCompletionNamedToolChoice = API.ChatCompletionNamedToolChoice; export import ChatCompletionRole = API.ChatCompletionRole; export import ChatCompletionSystemMessageParam = API.ChatCompletionSystemMessageParam; + export import ChatCompletionTokenLogprob = API.ChatCompletionTokenLogprob; export import ChatCompletionTool = API.ChatCompletionTool; export import ChatCompletionToolChoiceOption = API.ChatCompletionToolChoiceOption; export import ChatCompletionToolMessageParam = API.ChatCompletionToolMessageParam; diff --git a/src/lib/ChatCompletionRunFunctions.test.ts b/src/lib/ChatCompletionRunFunctions.test.ts index 2a5e91dcc..bb360b217 100644 --- a/src/lib/ChatCompletionRunFunctions.test.ts +++ b/src/lib/ChatCompletionRunFunctions.test.ts @@ -146,6 +146,7 @@ function* contentChoiceDeltas( yield { index, finish_reason: i === deltas.length - 1 ? 'stop' : null, + logprobs: null, delta: { role, content: deltas[i] ? `${deltas[i]}${i === deltas.length - 1 ? '' : ' '}` : null, @@ -593,6 +594,7 @@ describe('resource completions', () => { { index: 0, finish_reason: 'function_call', + logprobs: null, message: { role: 'assistant', content: null, @@ -645,6 +647,7 @@ describe('resource completions', () => { { index: 0, finish_reason: 'stop', + logprobs: null, message: { role: 'assistant', content: `it's raining`, @@ -716,6 +719,7 @@ describe('resource completions', () => { { index: 0, finish_reason: 'function_call', + logprobs: null, message: { role: 'assistant', content: null, @@ -808,6 +812,7 @@ describe('resource completions', () => { { index: 0, finish_reason: 'function_call', + logprobs: null, message: { role: 'assistant', content: null, @@ -867,6 +872,7 @@ describe('resource completions', () => { { index: 0, finish_reason: 'stop', + logprobs: null, message: { role: 'assistant', content: `there are 3 properties in {"a": 1, "b": 2, "c": 3}`, @@ -953,6 +959,7 @@ describe('resource completions', () => { { index: 0, finish_reason: 'function_call', + logprobs: null, message: { role: 'assistant', content: null, @@ -1006,6 +1013,7 @@ describe('resource completions', () => { { index: 0, finish_reason: 'function_call', + logprobs: null, message: { role: 'assistant', content: null, @@ -1078,6 +1086,7 @@ describe('resource completions', () => { { index: 0, finish_reason: 'stop', + logprobs: null, message: { role: 'assistant', content: `there are 3 properties in {"a": 1, "b": 2, "c": 3}`, @@ -1164,6 +1173,7 @@ describe('resource completions', () => { { index: 0, finish_reason: 'function_call', + logprobs: null, message: { role: 'assistant', content: null, @@ -1241,6 +1251,7 @@ describe('resource completions', () => { { index: 0, finish_reason: 'function_call', + logprobs: null, message: { role: 'assistant', content: null, @@ -1291,6 +1302,7 @@ describe('resource completions', () => { { index: 0, finish_reason: 'function_call', + logprobs: null, message: { role: 'assistant', content: null, @@ -1360,6 +1372,7 @@ describe('resource completions', () => { { index: 0, finish_reason: 'stop', + logprobs: null, message: { role: 'assistant', content: `it's raining`, @@ -1436,6 +1449,7 @@ describe('resource completions', () => { { index: 0, finish_reason: 'function_call', + logprobs: null, delta: { role: 'assistant', content: null, @@ -2071,6 +2085,7 @@ describe('resource completions', () => { { index: 0, finish_reason: 'function_call', + logprobs: null, delta: { role: 'assistant', content: null, diff --git a/src/lib/ChatCompletionStream.ts b/src/lib/ChatCompletionStream.ts index b4534639f..c5b3efa6a 100644 --- a/src/lib/ChatCompletionStream.ts +++ b/src/lib/ChatCompletionStream.ts @@ -153,13 +153,22 @@ export class ChatCompletionStream Object.assign(snapshot, rest); } - for (const { delta, finish_reason, index, ...other } of chunk.choices) { + for (const { delta, finish_reason, index, logprobs = null, ...other } of chunk.choices) { let choice = snapshot.choices[index]; if (!choice) { - snapshot.choices[index] = { finish_reason, index, message: delta, ...other }; + snapshot.choices[index] = { finish_reason, index, message: delta, logprobs, ...other }; continue; } + if (logprobs) { + if (!choice.logprobs) { + choice.logprobs = logprobs; + } else if (logprobs.content) { + choice.logprobs.content ??= []; + choice.logprobs.content.push(...logprobs.content); + } + } + if (finish_reason) choice.finish_reason = finish_reason; Object.assign(choice, other); @@ -242,7 +251,7 @@ function finalizeChatCompletion(snapshot: ChatCompletionSnapshot): ChatCompletio const { id, choices, created, model } = snapshot; return { id, - choices: choices.map(({ message, finish_reason, index }): ChatCompletion.Choice => { + choices: choices.map(({ message, finish_reason, index, logprobs }): ChatCompletion.Choice => { if (!finish_reason) throw new OpenAIError(`missing finish_reason for choice ${index}`); const { content = null, function_call, tool_calls } = message; const role = message.role as 'assistant'; // this is what we expect; in theory it could be different which would make our types a slight lie but would be fine. @@ -251,12 +260,18 @@ function finalizeChatCompletion(snapshot: ChatCompletionSnapshot): ChatCompletio const { arguments: args, name } = function_call; if (args == null) throw new OpenAIError(`missing function_call.arguments for choice ${index}`); if (!name) throw new OpenAIError(`missing function_call.name for choice ${index}`); - return { message: { content, function_call: { arguments: args, name }, role }, finish_reason, index }; + return { + message: { content, function_call: { arguments: args, name }, role }, + finish_reason, + index, + logprobs, + }; } if (tool_calls) { return { index, finish_reason, + logprobs, message: { role, content, @@ -281,7 +296,7 @@ function finalizeChatCompletion(snapshot: ChatCompletionSnapshot): ChatCompletio }, }; } - return { message: { content: content, role }, finish_reason, index }; + return { message: { content: content, role }, finish_reason, index, logprobs }; }), created, model, @@ -336,6 +351,11 @@ export namespace ChatCompletionSnapshot { */ finish_reason: ChatCompletion.Choice['finish_reason'] | null; + /** + * Log probability information for the choice. + */ + logprobs: ChatCompletion.Choice.Logprobs | null; + /** * The index of the choice in the list of choices. */ diff --git a/src/resources/beta/threads/runs/steps.ts b/src/resources/beta/threads/runs/steps.ts index 9a335a1aa..618237c74 100644 --- a/src/resources/beta/threads/runs/steps.ts +++ b/src/resources/beta/threads/runs/steps.ts @@ -180,7 +180,7 @@ export interface MessageCreationStepDetails { message_creation: MessageCreationStepDetails.MessageCreation; /** - * Always `message_creation``. + * Always `message_creation`. */ type: 'message_creation'; } @@ -269,7 +269,7 @@ export interface RunStep { metadata: unknown | null; /** - * The object type, which is always `thread.run.step``. + * The object type, which is always `thread.run.step`. */ object: 'thread.run.step'; diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 63e857e9b..07c7700dc 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -23,6 +23,7 @@ export namespace Chat { export import ChatCompletionNamedToolChoice = CompletionsAPI.ChatCompletionNamedToolChoice; export import ChatCompletionRole = CompletionsAPI.ChatCompletionRole; export import ChatCompletionSystemMessageParam = CompletionsAPI.ChatCompletionSystemMessageParam; + export import ChatCompletionTokenLogprob = CompletionsAPI.ChatCompletionTokenLogprob; export import ChatCompletionTool = CompletionsAPI.ChatCompletionTool; export import ChatCompletionToolChoiceOption = CompletionsAPI.ChatCompletionToolChoiceOption; export import ChatCompletionToolMessageParam = CompletionsAPI.ChatCompletionToolMessageParam; diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 759c6e7c3..fce37ca53 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -96,11 +96,28 @@ export namespace ChatCompletion { */ index: number; + /** + * Log probability information for the choice. + */ + logprobs: Choice.Logprobs | null; + /** * A chat completion message generated by the model. */ message: ChatCompletionsAPI.ChatCompletionMessage; } + + export namespace Choice { + /** + * Log probability information for the choice. + */ + export interface Logprobs { + /** + * A list of message content tokens with log probability information. + */ + content: Array | null; + } + } } export interface ChatCompletionAssistantMessageParam { @@ -215,6 +232,11 @@ export namespace ChatCompletionChunk { * The index of the choice in the list of choices. */ index: number; + + /** + * Log probability information for the choice. + */ + logprobs?: Choice.Logprobs | null; } export namespace Choice { @@ -294,6 +316,16 @@ export namespace ChatCompletionChunk { } } } + + /** + * Log probability information for the choice. + */ + export interface Logprobs { + /** + * A list of message content tokens with log probability information. + */ + content: Array | null; + } } } @@ -350,7 +382,7 @@ export interface ChatCompletionFunctionMessageParam { /** * The contents of the function message. */ - content: string; + content: string | null; /** * The name of the function to call. @@ -499,6 +531,55 @@ export interface ChatCompletionSystemMessageParam { name?: string; } +export interface ChatCompletionTokenLogprob { + /** + * The token. + */ + token: string; + + /** + * A list of integers representing the UTF-8 bytes representation of the token. + * Useful in instances where characters are represented by multiple tokens and + * their byte representations must be combined to generate the correct text + * representation. Can be `null` if there is no bytes representation for the token. + */ + bytes: Array | null; + + /** + * The log probability of this token. + */ + logprob: number; + + /** + * List of the most likely tokens and their log probability, at this token + * position. In rare cases, there may be fewer than the number of requested + * `top_logprobs` returned. + */ + top_logprobs: Array; +} + +export namespace ChatCompletionTokenLogprob { + export interface TopLogprob { + /** + * The token. + */ + token: string; + + /** + * A list of integers representing the UTF-8 bytes representation of the token. + * Useful in instances where characters are represented by multiple tokens and + * their byte representations must be combined to generate the correct text + * representation. Can be `null` if there is no bytes representation for the token. + */ + bytes: Array | null; + + /** + * The log probability of this token. + */ + logprob: number; + } +} + export interface ChatCompletionTool { function: Shared.FunctionDefinition; @@ -612,7 +693,7 @@ export interface ChatCompletionCreateParamsBase { * particular function via `{"name": "my_function"}` forces the model to call that * function. * - * `none` is the default when no functions are present. `auto`` is the default if + * `none` is the default when no functions are present. `auto` is the default if * functions are present. */ function_call?: 'none' | 'auto' | ChatCompletionFunctionCallOption; @@ -637,7 +718,16 @@ export interface ChatCompletionCreateParamsBase { logit_bias?: Record | null; /** - * The maximum number of [tokens](/tokenizer) to generate in the chat completion. + * Whether to return log probabilities of the output tokens or not. If true, + * returns the log probabilities of each output token returned in the `content` of + * `message`. This option is currently not available on the `gpt-4-vision-preview` + * model. + */ + logprobs?: boolean | null; + + /** + * The maximum number of [tokens](/tokenizer) that can be generated in the chat + * completion. * * The total length of input tokens and generated tokens is limited by the model's * context length. @@ -663,7 +753,8 @@ export interface ChatCompletionCreateParamsBase { presence_penalty?: number | null; /** - * An object specifying the format that the model must output. + * An object specifying the format that the model must output. Compatible with + * `gpt-4-1106-preview` and `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -731,6 +822,13 @@ export interface ChatCompletionCreateParamsBase { */ tools?: Array; + /** + * An integer between 0 and 5 specifying the number of most likely tokens to return + * at each token position, each with an associated log probability. `logprobs` must + * be set to `true` if this parameter is used. + */ + top_logprobs?: number | null; + /** * An alternative to sampling with temperature, called nucleus sampling, where the * model considers the results of the tokens with top_p probability mass. So 0.1 @@ -775,7 +873,8 @@ export namespace ChatCompletionCreateParams { } /** - * An object specifying the format that the model must output. + * An object specifying the format that the model must output. Compatible with + * `gpt-4-1106-preview` and `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -854,6 +953,7 @@ export namespace Completions { export import ChatCompletionNamedToolChoice = ChatCompletionsAPI.ChatCompletionNamedToolChoice; export import ChatCompletionRole = ChatCompletionsAPI.ChatCompletionRole; export import ChatCompletionSystemMessageParam = ChatCompletionsAPI.ChatCompletionSystemMessageParam; + export import ChatCompletionTokenLogprob = ChatCompletionsAPI.ChatCompletionTokenLogprob; export import ChatCompletionTool = ChatCompletionsAPI.ChatCompletionTool; export import ChatCompletionToolChoiceOption = ChatCompletionsAPI.ChatCompletionToolChoiceOption; export import ChatCompletionToolMessageParam = ChatCompletionsAPI.ChatCompletionToolMessageParam; diff --git a/src/resources/chat/index.ts b/src/resources/chat/index.ts index ea9fe29bd..b8b69e453 100644 --- a/src/resources/chat/index.ts +++ b/src/resources/chat/index.ts @@ -16,6 +16,7 @@ export { ChatCompletionNamedToolChoice, ChatCompletionRole, ChatCompletionSystemMessageParam, + ChatCompletionTokenLogprob, ChatCompletionTool, ChatCompletionToolChoiceOption, ChatCompletionToolMessageParam, diff --git a/src/resources/completions.ts b/src/resources/completions.ts index f33624e73..00769fdbb 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -199,17 +199,18 @@ export interface CompletionCreateParamsBase { logit_bias?: Record | null; /** - * Include the log probabilities on the `logprobs` most likely tokens, as well the - * chosen tokens. For example, if `logprobs` is 5, the API will return a list of - * the 5 most likely tokens. The API will always return the `logprob` of the - * sampled token, so there may be up to `logprobs+1` elements in the response. + * Include the log probabilities on the `logprobs` most likely output tokens, as + * well the chosen tokens. For example, if `logprobs` is 5, the API will return a + * list of the 5 most likely tokens. The API will always return the `logprob` of + * the sampled token, so there may be up to `logprobs+1` elements in the response. * * The maximum value for `logprobs` is 5. */ logprobs?: number | null; /** - * The maximum number of [tokens](/tokenizer) to generate in the completion. + * The maximum number of [tokens](/tokenizer) that can be generated in the + * completion. * * The token count of your prompt plus `max_tokens` cannot exceed the model's * context length. diff --git a/src/resources/files.ts b/src/resources/files.ts index ea3f3b9c1..db8f3a66a 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -15,7 +15,8 @@ export class Files extends APIResource { * Upload a file that can be used across various endpoints. The size of all the * files uploaded by one organization can be up to 100 GB. * - * The size of individual files can be a maximum of 512 MB. See the + * The size of individual files can be a maximum of 512 MB or 2 million tokens for + * Assistants. See the * [Assistants Tools guide](https://platform.openai.com/docs/assistants/tools) to * learn more about the types of files supported. The Fine-tuning API only supports * `.jsonl` files. diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 15b815a51..49f3562b0 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -31,6 +31,7 @@ describe('resource completions', () => { function_call: 'none', functions: [{ description: 'string', name: 'string', parameters: { foo: 'bar' } }], logit_bias: { foo: 0 }, + logprobs: true, max_tokens: 0, n: 1, presence_penalty: -2, @@ -45,6 +46,7 @@ describe('resource completions', () => { { type: 'function', function: { description: 'string', name: 'string', parameters: { foo: 'bar' } } }, { type: 'function', function: { description: 'string', name: 'string', parameters: { foo: 'bar' } } }, ], + top_logprobs: 0, top_p: 1, user: 'user-1234', }); From 03c60b8c0f8472746f65edd46c03933f5ae2df12 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sat, 16 Dec 2023 19:47:33 -0500 Subject: [PATCH 217/725] release: 4.23.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 907c917d6..6d801fc26 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.22.1" + ".": "4.23.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index cf7376a89..55b732140 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.23.0 (2023-12-17) + +Full Changelog: [v4.22.1...v4.23.0](https://github.com/openai/openai-node/compare/v4.22.1...v4.23.0) + +### Features + +* **api:** add token logprobs to chat completions ([#576](https://github.com/openai/openai-node/issues/576)) ([8d4292e](https://github.com/openai/openai-node/commit/8d4292e6358920b2c9d8df49c6a154231c468512)) + + +### Chores + +* **ci:** run release workflow once per day ([#574](https://github.com/openai/openai-node/issues/574)) ([529f09f](https://github.com/openai/openai-node/commit/529f09f827a675d6e851590acff4e6f4f2af2d26)) + ## 4.22.1 (2023-12-15) Full Changelog: [v4.22.0...v4.22.1](https://github.com/openai/openai-node/compare/v4.22.0...v4.22.1) diff --git a/README.md b/README.md index 3ca8c9be2..ad15ca661 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.22.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.23.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index 83408c99a..a0c261716 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.22.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.23.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 3b43de465..8400df396 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.22.1", + "version": "4.23.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index f1bd8fe60..a7fe7a1ba 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.22.1'; // x-release-please-version +export const VERSION = '4.23.0'; // x-release-please-version From 1db10bb801e2cc2b169cdb72cd7d12136c893730 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sun, 17 Dec 2023 15:18:26 -0500 Subject: [PATCH 218/725] chore(deps): update dependency ts-jest to v29.1.1 (#578) --- yarn.lock | 122 ++++++++++++++++++++++++++++++++---------------------- 1 file changed, 73 insertions(+), 49 deletions(-) diff --git a/yarn.lock b/yarn.lock index 090849a83..46db0f7e4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -510,12 +510,12 @@ strip-ansi "^6.0.0" v8-to-istanbul "^9.0.1" -"@jest/schemas@^29.4.3": - version "29.4.3" - resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.4.3.tgz#39cf1b8469afc40b6f5a2baaa146e332c4151788" - integrity sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg== +"@jest/schemas@^29.4.3", "@jest/schemas@^29.6.3": + version "29.6.3" + resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03" + integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== dependencies: - "@sinclair/typebox" "^0.25.16" + "@sinclair/typebox" "^0.27.8" "@jest/source-map@^29.4.3": version "29.4.3" @@ -567,12 +567,12 @@ slash "^3.0.0" write-file-atomic "^4.0.2" -"@jest/types@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.5.0.tgz#f59ef9b031ced83047c67032700d8c807d6e1593" - integrity sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog== +"@jest/types@^29.5.0", "@jest/types@^29.6.3": + version "29.6.3" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59" + integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== dependencies: - "@jest/schemas" "^29.4.3" + "@jest/schemas" "^29.6.3" "@types/istanbul-lib-coverage" "^2.0.0" "@types/istanbul-reports" "^3.0.0" "@types/node" "*" @@ -661,10 +661,10 @@ picocolors "^1.0.0" tslib "^2.6.0" -"@sinclair/typebox@^0.25.16": - version "0.25.24" - resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.25.24.tgz#8c7688559979f7079aacaf31aa881c3aa410b718" - integrity sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ== +"@sinclair/typebox@^0.27.8": + version "0.27.8" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" + integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== "@sinonjs/commons@^3.0.0": version "3.0.0" @@ -750,22 +750,27 @@ dependencies: "@types/node" "*" -"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": + version "2.0.6" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz#7739c232a1fee9b4d3ce8985f314c0c6d33549d7" + integrity sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w== + +"@types/istanbul-lib-coverage@^2.0.1": version "2.0.4" resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== "@types/istanbul-lib-report@*": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" - integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== + version "3.0.3" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz#53047614ae72e19fc0401d872de3ae2b4ce350bf" + integrity sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA== dependencies: "@types/istanbul-lib-coverage" "*" "@types/istanbul-reports@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" - integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== + version "3.0.4" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz#0f03e3d2f670fbdac586e34b433783070cc16f54" + integrity sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ== dependencies: "@types/istanbul-lib-report" "*" @@ -791,9 +796,11 @@ form-data "^3.0.0" "@types/node@*": - version "17.0.21" - resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.21.tgz#864b987c0c68d07b4345845c3e63b75edd143644" - integrity sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ== + version "20.10.4" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.10.4.tgz#b246fd84d55d5b1b71bf51f964bd514409347198" + integrity sha512-D08YG6rr8X90YB56tSIuBaddy/UXAA9RKJoFvrsnogAum/0pmjkgi4+2nx96A330FmioegBWmEYQ+syqCFaveg== + dependencies: + undici-types "~5.26.4" "@types/node@^18.11.18": version "18.11.18" @@ -816,14 +823,14 @@ integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== "@types/yargs-parser@*": - version "21.0.0" - resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" - integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== + version "21.0.3" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz#815e30b786d2e8f0dcd85fd5bcf5e1a04d008f15" + integrity sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ== "@types/yargs@^17.0.8": - version "17.0.10" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.10.tgz#591522fce85d8739bca7b8bb90d048e4478d186a" - integrity sha512-gmEaFwpj/7f/ROdtIlci1R1VYU1J4j95m8T+Tj3iBgiBFKg1foE/PSl93bBd5T9LDXNPo8UlNN6W0qwD8O5OaA== + version "17.0.32" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.32.tgz#030774723a2f7faafebf645f4e5a48371dca6229" + integrity sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog== dependencies: "@types/yargs-parser" "*" @@ -1221,9 +1228,9 @@ charenc@0.0.2: integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA== ci-info@^3.2.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.3.0.tgz#b4ed1fb6818dea4803a55c623041f9165d2066b2" - integrity sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw== + version "3.9.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" + integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== cjs-module-lexer@^1.0.0: version "1.2.2" @@ -1881,9 +1888,9 @@ globby@^11.1.0: slash "^3.0.0" graceful-fs@^4.2.9: - version "4.2.10" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" - integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== graphemer@^1.4.0: version "1.4.0" @@ -2406,7 +2413,19 @@ jest-snapshot@^29.5.0: pretty-format "^29.5.0" semver "^7.3.5" -jest-util@^29.0.0, jest-util@^29.5.0: +jest-util@^29.0.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc" + integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA== + dependencies: + "@jest/types" "^29.6.3" + "@types/node" "*" + chalk "^4.0.0" + ci-info "^3.2.0" + graceful-fs "^4.2.9" + picomatch "^2.2.3" + +jest-util@^29.5.0: version "29.5.0" resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.5.0.tgz#24a4d3d92fc39ce90425311b23c27a6e0ef16b8f" integrity sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ== @@ -2554,7 +2573,7 @@ locate-path@^6.0.0: lodash.memoize@4.x: version "4.1.2" resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" - integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= + integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== lodash.merge@^4.6.2: version "4.6.2" @@ -3015,19 +3034,19 @@ safe-buffer@~5.2.0: resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== -semver@7.x, semver@^7.3.5: +semver@^6.0.0, semver@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + +semver@^7.3.5: version "7.3.7" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== dependencies: lru-cache "^6.0.0" -semver@^6.0.0, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -semver@^7.5.4: +semver@^7.5.3, semver@^7.5.4: version "7.5.4" resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== @@ -3235,9 +3254,9 @@ ts-api-utils@^1.0.1: integrity sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg== ts-jest@^29.1.0: - version "29.1.0" - resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.0.tgz#4a9db4104a49b76d2b368ea775b6c9535c603891" - integrity sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA== + version "29.1.1" + resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.1.tgz#f58fe62c63caf7bfcc5cc6472082f79180f0815b" + integrity sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA== dependencies: bs-logger "0.x" fast-json-stable-stringify "2.x" @@ -3245,7 +3264,7 @@ ts-jest@^29.1.0: json5 "^2.2.3" lodash.memoize "4.x" make-error "1.x" - semver "7.x" + semver "^7.5.3" yargs-parser "^21.0.1" ts-morph@^19.0.0: @@ -3337,6 +3356,11 @@ typescript@^4.8.2: resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== +undici-types@~5.26.4: + version "5.26.5" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" + integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== + untildify@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b" From 9df1f43ba492dadb918522d23cc2ebe862aa887d Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sun, 17 Dec 2023 15:40:52 -0500 Subject: [PATCH 219/725] chore(deps): update dependency start-server-and-test to v2.0.3 (#580) --- .../cloudflare-worker/package-lock.json | 53 +++++++++++-------- .../ts-browser-webpack/package-lock.json | 41 +++++++------- ecosystem-tests/vercel-edge/package-lock.json | 53 +++++++++++-------- 3 files changed, 81 insertions(+), 66 deletions(-) diff --git a/ecosystem-tests/cloudflare-worker/package-lock.json b/ecosystem-tests/cloudflare-worker/package-lock.json index a69eb8a68..14e48cf91 100644 --- a/ecosystem-tests/cloudflare-worker/package-lock.json +++ b/ecosystem-tests/cloudflare-worker/package-lock.json @@ -1758,13 +1758,14 @@ "dev": true }, "node_modules/axios": { - "version": "0.27.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", - "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", + "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", "dev": true, "dependencies": { - "follow-redirects": "^1.14.9", - "form-data": "^4.0.0" + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" } }, "node_modules/babel-jest": { @@ -2692,9 +2693,9 @@ } }, "node_modules/follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "version": "1.15.3", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz", + "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==", "dev": true, "funding": [ { @@ -3785,9 +3786,9 @@ } }, "node_modules/joi": { - "version": "17.10.0", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.10.0.tgz", - "integrity": "sha512-hrazgRSlhzacZ69LdcKfhi3Vu13z2yFfoAzmEov3yFIJlatTdVGUW6vle1zjH8qkzdCn/qGw8rapjqsObbYXAg==", + "version": "17.11.0", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.11.0.tgz", + "integrity": "sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==", "dev": true, "dependencies": { "@hapi/hoek": "^9.0.0", @@ -4554,6 +4555,12 @@ "node": ">= 6" } }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "dev": true + }, "node_modules/ps-tree": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz", @@ -4947,9 +4954,9 @@ } }, "node_modules/start-server-and-test": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-2.0.0.tgz", - "integrity": "sha512-UqKLw0mJbfrsG1jcRLTUlvuRi9sjNuUiDOLI42r7R5fA9dsFoywAy9DoLXNYys9B886E4RCKb+qM1Gzu96h7DQ==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-2.0.3.tgz", + "integrity": "sha512-QsVObjfjFZKJE6CS6bSKNwWZCKBG6975/jKRPPGFfFh+yOQglSeGXiNWjzgQNXdphcBI9nXbyso9tPfX4YAUhg==", "dev": true, "dependencies": { "arg": "^5.0.2", @@ -4959,7 +4966,7 @@ "execa": "5.1.1", "lazy-ass": "1.6.0", "ps-tree": "1.2.0", - "wait-on": "7.0.1" + "wait-on": "7.2.0" }, "bin": { "server-test": "src/bin/start.js", @@ -4967,7 +4974,7 @@ "start-test": "src/bin/start.js" }, "engines": { - "node": ">=6" + "node": ">=16" } }, "node_modules/stoppable": { @@ -5372,16 +5379,16 @@ "dev": true }, "node_modules/wait-on": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-7.0.1.tgz", - "integrity": "sha512-9AnJE9qTjRQOlTZIldAaf/da2eW0eSRSgcqq85mXQja/DW3MriHxkpODDSUEg+Gri/rKEcXUZHe+cevvYItaog==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-7.2.0.tgz", + "integrity": "sha512-wCQcHkRazgjG5XoAq9jbTMLpNIjoSlZslrJ2+N9MxDsGEv1HnFoVjOCexL0ESva7Y9cu350j+DWADdk54s4AFQ==", "dev": true, "dependencies": { - "axios": "^0.27.2", - "joi": "^17.7.0", + "axios": "^1.6.1", + "joi": "^17.11.0", "lodash": "^4.17.21", - "minimist": "^1.2.7", - "rxjs": "^7.8.0" + "minimist": "^1.2.8", + "rxjs": "^7.8.1" }, "bin": { "wait-on": "bin/wait-on" diff --git a/ecosystem-tests/ts-browser-webpack/package-lock.json b/ecosystem-tests/ts-browser-webpack/package-lock.json index 2b539a595..e4e175121 100644 --- a/ecosystem-tests/ts-browser-webpack/package-lock.json +++ b/ecosystem-tests/ts-browser-webpack/package-lock.json @@ -1174,13 +1174,14 @@ "dev": true }, "node_modules/axios": { - "version": "0.27.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", - "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", + "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", "dev": true, "dependencies": { - "follow-redirects": "^1.14.9", - "form-data": "^4.0.0" + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" } }, "node_modules/axios/node_modules/form-data": { @@ -4345,9 +4346,9 @@ } }, "node_modules/joi": { - "version": "17.10.0", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.10.0.tgz", - "integrity": "sha512-hrazgRSlhzacZ69LdcKfhi3Vu13z2yFfoAzmEov3yFIJlatTdVGUW6vle1zjH8qkzdCn/qGw8rapjqsObbYXAg==", + "version": "17.11.0", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.11.0.tgz", + "integrity": "sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==", "dev": true, "dependencies": { "@hapi/hoek": "^9.0.0", @@ -6164,9 +6165,9 @@ } }, "node_modules/start-server-and-test": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-2.0.0.tgz", - "integrity": "sha512-UqKLw0mJbfrsG1jcRLTUlvuRi9sjNuUiDOLI42r7R5fA9dsFoywAy9DoLXNYys9B886E4RCKb+qM1Gzu96h7DQ==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-2.0.3.tgz", + "integrity": "sha512-QsVObjfjFZKJE6CS6bSKNwWZCKBG6975/jKRPPGFfFh+yOQglSeGXiNWjzgQNXdphcBI9nXbyso9tPfX4YAUhg==", "dev": true, "dependencies": { "arg": "^5.0.2", @@ -6176,7 +6177,7 @@ "execa": "5.1.1", "lazy-ass": "1.6.0", "ps-tree": "1.2.0", - "wait-on": "7.0.1" + "wait-on": "7.2.0" }, "bin": { "server-test": "src/bin/start.js", @@ -6184,7 +6185,7 @@ "start-test": "src/bin/start.js" }, "engines": { - "node": ">=6" + "node": ">=16" } }, "node_modules/statuses": { @@ -6829,16 +6830,16 @@ } }, "node_modules/wait-on": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-7.0.1.tgz", - "integrity": "sha512-9AnJE9qTjRQOlTZIldAaf/da2eW0eSRSgcqq85mXQja/DW3MriHxkpODDSUEg+Gri/rKEcXUZHe+cevvYItaog==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-7.2.0.tgz", + "integrity": "sha512-wCQcHkRazgjG5XoAq9jbTMLpNIjoSlZslrJ2+N9MxDsGEv1HnFoVjOCexL0ESva7Y9cu350j+DWADdk54s4AFQ==", "dev": true, "dependencies": { - "axios": "^0.27.2", - "joi": "^17.7.0", + "axios": "^1.6.1", + "joi": "^17.11.0", "lodash": "^4.17.21", - "minimist": "^1.2.7", - "rxjs": "^7.8.0" + "minimist": "^1.2.8", + "rxjs": "^7.8.1" }, "bin": { "wait-on": "bin/wait-on" diff --git a/ecosystem-tests/vercel-edge/package-lock.json b/ecosystem-tests/vercel-edge/package-lock.json index 4f6397e72..e270944f2 100644 --- a/ecosystem-tests/vercel-edge/package-lock.json +++ b/ecosystem-tests/vercel-edge/package-lock.json @@ -2283,13 +2283,14 @@ "dev": true }, "node_modules/axios": { - "version": "0.27.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", - "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", + "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", "dev": true, "dependencies": { - "follow-redirects": "^1.14.9", - "form-data": "^4.0.0" + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" } }, "node_modules/axios/node_modules/form-data": { @@ -3553,9 +3554,9 @@ } }, "node_modules/follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "version": "1.15.3", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz", + "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==", "dev": true, "funding": [ { @@ -4647,9 +4648,9 @@ } }, "node_modules/joi": { - "version": "17.10.1", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.10.1.tgz", - "integrity": "sha512-vIiDxQKmRidUVp8KngT8MZSOcmRVm2zV7jbMjNYWuHcJWI0bUck3nRTGQjhpPlQenIQIBC5Vp9AhcnHbWQqafw==", + "version": "17.11.0", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.11.0.tgz", + "integrity": "sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==", "dev": true, "dependencies": { "@hapi/hoek": "^9.0.0", @@ -5483,6 +5484,12 @@ "node": ">= 6" } }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "dev": true + }, "node_modules/ps-tree": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz", @@ -5905,9 +5912,9 @@ } }, "node_modules/start-server-and-test": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-2.0.0.tgz", - "integrity": "sha512-UqKLw0mJbfrsG1jcRLTUlvuRi9sjNuUiDOLI42r7R5fA9dsFoywAy9DoLXNYys9B886E4RCKb+qM1Gzu96h7DQ==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-2.0.3.tgz", + "integrity": "sha512-QsVObjfjFZKJE6CS6bSKNwWZCKBG6975/jKRPPGFfFh+yOQglSeGXiNWjzgQNXdphcBI9nXbyso9tPfX4YAUhg==", "dev": true, "dependencies": { "arg": "^5.0.2", @@ -5917,7 +5924,7 @@ "execa": "5.1.1", "lazy-ass": "1.6.0", "ps-tree": "1.2.0", - "wait-on": "7.0.1" + "wait-on": "7.2.0" }, "bin": { "server-test": "src/bin/start.js", @@ -5925,7 +5932,7 @@ "start-test": "src/bin/start.js" }, "engines": { - "node": ">=6" + "node": ">=16" } }, "node_modules/start-server-and-test/node_modules/arg": { @@ -6502,16 +6509,16 @@ } }, "node_modules/wait-on": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-7.0.1.tgz", - "integrity": "sha512-9AnJE9qTjRQOlTZIldAaf/da2eW0eSRSgcqq85mXQja/DW3MriHxkpODDSUEg+Gri/rKEcXUZHe+cevvYItaog==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-7.2.0.tgz", + "integrity": "sha512-wCQcHkRazgjG5XoAq9jbTMLpNIjoSlZslrJ2+N9MxDsGEv1HnFoVjOCexL0ESva7Y9cu350j+DWADdk54s4AFQ==", "dev": true, "dependencies": { - "axios": "^0.27.2", - "joi": "^17.7.0", + "axios": "^1.6.1", + "joi": "^17.11.0", "lodash": "^4.17.21", - "minimist": "^1.2.7", - "rxjs": "^7.8.0" + "minimist": "^1.2.8", + "rxjs": "^7.8.1" }, "bin": { "wait-on": "bin/wait-on" From 7e9522aad80d4cfe60437bbc8b754e9f44da296e Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 18 Dec 2023 09:54:55 -0500 Subject: [PATCH 220/725] chore(internal): update deps (#581) --- ecosystem-tests/ts-browser-webpack/package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ecosystem-tests/ts-browser-webpack/package-lock.json b/ecosystem-tests/ts-browser-webpack/package-lock.json index e4e175121..b8f507e9b 100644 --- a/ecosystem-tests/ts-browser-webpack/package-lock.json +++ b/ecosystem-tests/ts-browser-webpack/package-lock.json @@ -3784,9 +3784,9 @@ } }, "node_modules/html-webpack-plugin": { - "version": "5.5.3", - "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.3.tgz", - "integrity": "sha512-6YrDKTuqaP/TquFH7h4srYWsZx+x6k6+FbsTm0ziCwGHDP78Unr1r9F/H4+sGmMbX08GQcJ+K64x55b+7VM/jg==", + "version": "5.5.4", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.4.tgz", + "integrity": "sha512-3wNSaVVxdxcu0jd4FpQFoICdqgxs4zIQQvj+2yQKFfBOnLETQ6X5CDWdeasuGlSsooFlMkEioWDTqBv1wvw5Iw==", "dev": true, "dependencies": { "@types/html-minifier-terser": "^6.0.0", From 161f65751c67c34b8c4be610b3f47a8ca1007684 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 18 Dec 2023 10:59:35 -0500 Subject: [PATCH 221/725] chore(deps): update jest (#582) --- .../cloudflare-worker/package-lock.json | 599 +++---- .../node-ts-cjs-web/package-lock.json | 543 +++--- ecosystem-tests/node-ts-cjs/package-lock.json | 543 +++--- .../node-ts-esm-auto/package-lock.json | 603 +++---- .../node-ts-esm-web/package-lock.json | 603 +++---- ecosystem-tests/node-ts-esm/package-lock.json | 603 +++---- .../node-ts4.5-jest27/package-lock.json | 12 +- .../node-ts4.5-jest27/package.json | 2 +- ecosystem-tests/vercel-edge/package-lock.json | 599 +++---- yarn.lock | 1504 ++++++++--------- 10 files changed, 2830 insertions(+), 2781 deletions(-) diff --git a/ecosystem-tests/cloudflare-worker/package-lock.json b/ecosystem-tests/cloudflare-worker/package-lock.json index 14e48cf91..7e86792db 100644 --- a/ecosystem-tests/cloudflare-worker/package-lock.json +++ b/ecosystem-tests/cloudflare-worker/package-lock.json @@ -490,9 +490,9 @@ } }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", - "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -592,9 +592,9 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", - "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", + "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -1183,16 +1183,16 @@ } }, "node_modules/@jest/console": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.6.4.tgz", - "integrity": "sha512-wNK6gC0Ha9QeEPSkeJedQuTQqxZYnDPuDcDhVuVatRvMkL4D0VTvFVZj+Yuh6caG2aOfzkUZ36KtCmLNtR02hw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0" }, "engines": { @@ -1200,15 +1200,15 @@ } }, "node_modules/@jest/core": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.6.4.tgz", - "integrity": "sha512-U/vq5ccNTSVgYH7mHnodHmCffGWHJnz/E1BEWlLuK5pM4FZmGfBn/nrJGLjUsSmyx3otCeqc1T31F4y08AMDLg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", - "@jest/reporters": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", @@ -1216,21 +1216,21 @@ "ci-info": "^3.2.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.6.3", - "jest-config": "^29.6.4", - "jest-haste-map": "^29.6.4", - "jest-message-util": "^29.6.3", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-resolve-dependencies": "^29.6.4", - "jest-runner": "^29.6.4", - "jest-runtime": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", - "jest-watcher": "^29.6.4", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", "micromatch": "^4.0.4", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, @@ -1247,37 +1247,37 @@ } }, "node_modules/@jest/environment": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.6.4.tgz", - "integrity": "sha512-sQ0SULEjA1XUTHmkBRl7A1dyITM9yb1yb3ZNKPX3KlTd6IG7mWUe3e2yfExtC2Zz1Q+mMckOLHmL/qLiuQJrBQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", "dev": true, "dependencies": { - "@jest/fake-timers": "^29.6.4", + "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.6.3" + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.6.4.tgz", - "integrity": "sha512-Warhsa7d23+3X5bLbrbYvaehcgX5TLYhI03JKoedTiI8uJU4IhqYBWF7OSSgUyz4IgLpUYPkK0AehA5/fRclAA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", "dev": true, "dependencies": { - "expect": "^29.6.4", - "jest-snapshot": "^29.6.4" + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect-utils": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.6.4.tgz", - "integrity": "sha512-FEhkJhqtvBwgSpiTrocquJCdXPsyvNKcl/n7A3u7X4pVoF4bswm11c9d4AV+kfq2Gpv/mM8x7E7DsRvH+djkrg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", "dev": true, "dependencies": { "jest-get-type": "^29.6.3" @@ -1287,47 +1287,47 @@ } }, "node_modules/@jest/fake-timers": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.6.4.tgz", - "integrity": "sha512-6UkCwzoBK60edXIIWb0/KWkuj7R7Qq91vVInOe3De6DSpaEiqjKcJw4F7XUet24Wupahj9J6PlR09JqJ5ySDHw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@sinonjs/fake-timers": "^10.0.2", "@types/node": "*", - "jest-message-util": "^29.6.3", - "jest-mock": "^29.6.3", - "jest-util": "^29.6.3" + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/globals": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.6.4.tgz", - "integrity": "sha512-wVIn5bdtjlChhXAzVXavcY/3PEjf4VqM174BM3eGL5kMxLiZD5CLnbmkEyA1Dwh9q8XjP6E8RwjBsY/iCWrWsA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/expect": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", "@jest/types": "^29.6.3", - "jest-mock": "^29.6.3" + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/reporters": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.6.4.tgz", - "integrity": "sha512-sxUjWxm7QdchdrD3NfWKrL8FBsortZeibSJv4XLjESOOjSUOkjQcb0ZHJwfhEGIvBvTluTzfG2yZWZhkrXJu8g==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", "dev": true, "dependencies": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@jridgewell/trace-mapping": "^0.3.18", "@types/node": "*", @@ -1341,9 +1341,9 @@ "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", - "jest-worker": "^29.6.4", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "slash": "^3.0.0", "string-length": "^4.0.1", "strip-ansi": "^6.0.0", @@ -1388,12 +1388,12 @@ } }, "node_modules/@jest/test-result": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.6.4.tgz", - "integrity": "sha512-uQ1C0AUEN90/dsyEirgMLlouROgSY+Wc/JanVVk0OiUKa5UFh7sJpMEM3aoUBAz2BRNvUJ8j3d294WFuRxSyOQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", + "@jest/console": "^29.7.0", "@jest/types": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" @@ -1403,14 +1403,14 @@ } }, "node_modules/@jest/test-sequencer": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.6.4.tgz", - "integrity": "sha512-E84M6LbpcRq3fT4ckfKs9ryVanwkaIB0Ws9bw3/yP4seRLg/VaCZ/LgW0MCq5wwk4/iP/qnilD41aj2fsw2RMg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", "dev": true, "dependencies": { - "@jest/test-result": "^29.6.4", + "@jest/test-result": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "slash": "^3.0.0" }, "engines": { @@ -1418,9 +1418,9 @@ } }, "node_modules/@jest/transform": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.6.4.tgz", - "integrity": "sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", @@ -1431,9 +1431,9 @@ "convert-source-map": "^2.0.0", "fast-json-stable-stringify": "^2.1.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", @@ -1595,9 +1595,9 @@ } }, "node_modules/@types/graceful-fs": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", - "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", "dev": true, "dependencies": { "@types/node": "*" @@ -1634,9 +1634,9 @@ "dev": true }, "node_modules/@types/stack-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", "dev": true }, "node_modules/@types/yargs": { @@ -1769,12 +1769,12 @@ } }, "node_modules/babel-jest": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.6.4.tgz", - "integrity": "sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", "dev": true, "dependencies": { - "@jest/transform": "^29.6.4", + "@jest/transform": "^29.7.0", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", "babel-preset-jest": "^29.6.3", @@ -2287,6 +2287,27 @@ "node": ">= 0.6" } }, + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, "node_modules/cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", @@ -2600,16 +2621,16 @@ } }, "node_modules/expect": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.6.4.tgz", - "integrity": "sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", "dev": true, "dependencies": { - "@jest/expect-utils": "^29.6.4", + "@jest/expect-utils": "^29.7.0", "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3" + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2770,10 +2791,13 @@ } }, "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/gensync": { "version": "1.0.0-beta.2", @@ -2889,18 +2913,6 @@ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -2910,6 +2922,18 @@ "node": ">=8" } }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", @@ -3020,12 +3044,12 @@ } }, "node_modules/is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", "dev": true, "dependencies": { - "has": "^1.0.3" + "hasown": "^2.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -3107,9 +3131,9 @@ } }, "node_modules/istanbul-lib-instrument": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.0.tgz", - "integrity": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz", + "integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==", "dev": true, "dependencies": { "@babel/core": "^7.12.3", @@ -3197,15 +3221,15 @@ } }, "node_modules/jest": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.6.4.tgz", - "integrity": "sha512-tEFhVQFF/bzoYV1YuGyzLPZ6vlPrdfvDmmAxudA1dLEuiztqg2Rkx20vkKY32xiDROcD2KXlgZ7Cu8RPeEHRKw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, "dependencies": { - "@jest/core": "^29.6.4", + "@jest/core": "^29.7.0", "@jest/types": "^29.6.3", "import-local": "^3.0.2", - "jest-cli": "^29.6.4" + "jest-cli": "^29.7.0" }, "bin": { "jest": "bin/jest.js" @@ -3223,13 +3247,13 @@ } }, "node_modules/jest-changed-files": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.6.3.tgz", - "integrity": "sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", "dev": true, "dependencies": { "execa": "^5.0.0", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "p-limit": "^3.1.0" }, "engines": { @@ -3237,28 +3261,28 @@ } }, "node_modules/jest-circus": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.6.4.tgz", - "integrity": "sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/expect": "^29.6.4", - "@jest/test-result": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", "dedent": "^1.0.0", "is-generator-fn": "^2.0.0", - "jest-each": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-runtime": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", "p-limit": "^3.1.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "pure-rand": "^6.0.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" @@ -3268,22 +3292,21 @@ } }, "node_modules/jest-cli": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.6.4.tgz", - "integrity": "sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", "dev": true, "dependencies": { - "@jest/core": "^29.6.4", - "@jest/test-result": "^29.6.4", + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "chalk": "^4.0.0", + "create-jest": "^29.7.0", "exit": "^0.1.2", - "graceful-fs": "^4.2.9", "import-local": "^3.0.2", - "jest-config": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", - "prompts": "^2.0.1", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "yargs": "^17.3.1" }, "bin": { @@ -3302,31 +3325,31 @@ } }, "node_modules/jest-config": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.6.4.tgz", - "integrity": "sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.6.4", + "@jest/test-sequencer": "^29.7.0", "@jest/types": "^29.6.3", - "babel-jest": "^29.6.4", + "babel-jest": "^29.7.0", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-circus": "^29.6.4", - "jest-environment-node": "^29.6.4", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", "jest-get-type": "^29.6.3", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-runner": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "micromatch": "^4.0.4", "parse-json": "^5.2.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, @@ -3347,24 +3370,24 @@ } }, "node_modules/jest-diff": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.4.tgz", - "integrity": "sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, "dependencies": { "chalk": "^4.0.0", "diff-sequences": "^29.6.3", "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-docblock": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.6.3.tgz", - "integrity": "sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", "dev": true, "dependencies": { "detect-newline": "^3.0.0" @@ -3374,33 +3397,33 @@ } }, "node_modules/jest-each": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.6.3.tgz", - "integrity": "sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "chalk": "^4.0.0", "jest-get-type": "^29.6.3", - "jest-util": "^29.6.3", - "pretty-format": "^29.6.3" + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-environment-node": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.4.tgz", - "integrity": "sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/fake-timers": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.6.3", - "jest-util": "^29.6.3" + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -3416,9 +3439,9 @@ } }, "node_modules/jest-haste-map": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.4.tgz", - "integrity": "sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -3428,8 +3451,8 @@ "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", "jest-regex-util": "^29.6.3", - "jest-util": "^29.6.3", - "jest-worker": "^29.6.4", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "micromatch": "^4.0.4", "walker": "^1.0.8" }, @@ -3441,37 +3464,37 @@ } }, "node_modules/jest-leak-detector": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.6.3.tgz", - "integrity": "sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", "dev": true, "dependencies": { "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.6.4.tgz", - "integrity": "sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "jest-diff": "^29.6.4", + "jest-diff": "^29.7.0", "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-message-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.6.3.tgz", - "integrity": "sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", "dev": true, "dependencies": { "@babel/code-frame": "^7.12.13", @@ -3480,7 +3503,7 @@ "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, @@ -3489,14 +3512,14 @@ } }, "node_modules/jest-mock": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.6.3.tgz", - "integrity": "sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", - "jest-util": "^29.6.3" + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -3529,17 +3552,17 @@ } }, "node_modules/jest-resolve": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.4.tgz", - "integrity": "sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", "dev": true, "dependencies": { "chalk": "^4.0.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "resolve": "^1.20.0", "resolve.exports": "^2.0.0", "slash": "^3.0.0" @@ -3549,43 +3572,43 @@ } }, "node_modules/jest-resolve-dependencies": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.4.tgz", - "integrity": "sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", "dev": true, "dependencies": { "jest-regex-util": "^29.6.3", - "jest-snapshot": "^29.6.4" + "jest-snapshot": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-runner": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.6.4.tgz", - "integrity": "sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", - "@jest/environment": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.13.1", "graceful-fs": "^4.2.9", - "jest-docblock": "^29.6.3", - "jest-environment-node": "^29.6.4", - "jest-haste-map": "^29.6.4", - "jest-leak-detector": "^29.6.3", - "jest-message-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-runtime": "^29.6.4", - "jest-util": "^29.6.3", - "jest-watcher": "^29.6.4", - "jest-worker": "^29.6.4", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", "p-limit": "^3.1.0", "source-map-support": "0.5.13" }, @@ -3594,17 +3617,17 @@ } }, "node_modules/jest-runtime": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.6.4.tgz", - "integrity": "sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/fake-timers": "^29.6.4", - "@jest/globals": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", "@jest/source-map": "^29.6.3", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", @@ -3612,13 +3635,13 @@ "collect-v8-coverage": "^1.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-mock": "^29.6.3", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0", "strip-bom": "^4.0.0" }, @@ -3627,9 +3650,9 @@ } }, "node_modules/jest-snapshot": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.6.4.tgz", - "integrity": "sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", @@ -3637,20 +3660,20 @@ "@babel/plugin-syntax-jsx": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^29.6.4", + "expect": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-diff": "^29.6.4", + "jest-diff": "^29.7.0", "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "natural-compare": "^1.4.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "semver": "^7.5.3" }, "engines": { @@ -3691,9 +3714,9 @@ "dev": true }, "node_modules/jest-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.3.tgz", - "integrity": "sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -3708,9 +3731,9 @@ } }, "node_modules/jest-validate": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.3.tgz", - "integrity": "sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -3718,7 +3741,7 @@ "chalk": "^4.0.0", "jest-get-type": "^29.6.3", "leven": "^3.1.0", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -3737,18 +3760,18 @@ } }, "node_modules/jest-watcher": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.6.4.tgz", - "integrity": "sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", "dev": true, "dependencies": { - "@jest/test-result": "^29.6.4", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.13.1", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "string-length": "^4.0.1" }, "engines": { @@ -3756,13 +3779,13 @@ } }, "node_modules/jest-worker": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", - "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, "dependencies": { "@types/node": "*", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, @@ -4511,9 +4534,9 @@ } }, "node_modules/pretty-format": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.3.tgz", - "integrity": "sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { "@jest/schemas": "^29.6.3", @@ -4587,9 +4610,9 @@ } }, "node_modules/pure-rand": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", - "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", + "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", "dev": true, "funding": [ { @@ -4668,9 +4691,9 @@ } }, "node_modules/resolve": { - "version": "1.22.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", - "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", "dev": true, "dependencies": { "is-core-module": "^2.13.0", @@ -5359,25 +5382,19 @@ "dev": true }, "node_modules/v8-to-istanbul": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", - "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", + "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", "dev": true, "dependencies": { "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" + "convert-source-map": "^2.0.0" }, "engines": { "node": ">=10.12.0" } }, - "node_modules/v8-to-istanbul/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, "node_modules/wait-on": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-7.2.0.tgz", diff --git a/ecosystem-tests/node-ts-cjs-web/package-lock.json b/ecosystem-tests/node-ts-cjs-web/package-lock.json index 29122bccf..cd721ae53 100644 --- a/ecosystem-tests/node-ts-cjs-web/package-lock.json +++ b/ecosystem-tests/node-ts-cjs-web/package-lock.json @@ -496,9 +496,9 @@ } }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", - "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -598,9 +598,9 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", - "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", + "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -693,16 +693,16 @@ } }, "node_modules/@jest/console": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.6.4.tgz", - "integrity": "sha512-wNK6gC0Ha9QeEPSkeJedQuTQqxZYnDPuDcDhVuVatRvMkL4D0VTvFVZj+Yuh6caG2aOfzkUZ36KtCmLNtR02hw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0" }, "engines": { @@ -710,15 +710,15 @@ } }, "node_modules/@jest/core": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.6.4.tgz", - "integrity": "sha512-U/vq5ccNTSVgYH7mHnodHmCffGWHJnz/E1BEWlLuK5pM4FZmGfBn/nrJGLjUsSmyx3otCeqc1T31F4y08AMDLg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", - "@jest/reporters": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", @@ -726,21 +726,21 @@ "ci-info": "^3.2.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.6.3", - "jest-config": "^29.6.4", - "jest-haste-map": "^29.6.4", - "jest-message-util": "^29.6.3", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-resolve-dependencies": "^29.6.4", - "jest-runner": "^29.6.4", - "jest-runtime": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", - "jest-watcher": "^29.6.4", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", "micromatch": "^4.0.4", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, @@ -772,22 +772,22 @@ } }, "node_modules/@jest/expect": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.6.4.tgz", - "integrity": "sha512-Warhsa7d23+3X5bLbrbYvaehcgX5TLYhI03JKoedTiI8uJU4IhqYBWF7OSSgUyz4IgLpUYPkK0AehA5/fRclAA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", "dev": true, "dependencies": { - "expect": "^29.6.4", - "jest-snapshot": "^29.6.4" + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect-utils": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.6.4.tgz", - "integrity": "sha512-FEhkJhqtvBwgSpiTrocquJCdXPsyvNKcl/n7A3u7X4pVoF4bswm11c9d4AV+kfq2Gpv/mM8x7E7DsRvH+djkrg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", "dev": true, "dependencies": { "jest-get-type": "^29.6.3" @@ -814,30 +814,30 @@ } }, "node_modules/@jest/globals": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.6.4.tgz", - "integrity": "sha512-wVIn5bdtjlChhXAzVXavcY/3PEjf4VqM174BM3eGL5kMxLiZD5CLnbmkEyA1Dwh9q8XjP6E8RwjBsY/iCWrWsA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/expect": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", "@jest/types": "^29.6.3", - "jest-mock": "^29.6.3" + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/reporters": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.6.4.tgz", - "integrity": "sha512-sxUjWxm7QdchdrD3NfWKrL8FBsortZeibSJv4XLjESOOjSUOkjQcb0ZHJwfhEGIvBvTluTzfG2yZWZhkrXJu8g==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", "dev": true, "dependencies": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@jridgewell/trace-mapping": "^0.3.18", "@types/node": "*", @@ -851,9 +851,9 @@ "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", - "jest-worker": "^29.6.4", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "slash": "^3.0.0", "string-length": "^4.0.1", "strip-ansi": "^6.0.0", @@ -898,12 +898,12 @@ } }, "node_modules/@jest/test-result": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.6.4.tgz", - "integrity": "sha512-uQ1C0AUEN90/dsyEirgMLlouROgSY+Wc/JanVVk0OiUKa5UFh7sJpMEM3aoUBAz2BRNvUJ8j3d294WFuRxSyOQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", + "@jest/console": "^29.7.0", "@jest/types": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" @@ -913,14 +913,14 @@ } }, "node_modules/@jest/test-sequencer": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.6.4.tgz", - "integrity": "sha512-E84M6LbpcRq3fT4ckfKs9ryVanwkaIB0Ws9bw3/yP4seRLg/VaCZ/LgW0MCq5wwk4/iP/qnilD41aj2fsw2RMg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", "dev": true, "dependencies": { - "@jest/test-result": "^29.6.4", + "@jest/test-result": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "slash": "^3.0.0" }, "engines": { @@ -928,9 +928,9 @@ } }, "node_modules/@jest/transform": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.6.4.tgz", - "integrity": "sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", @@ -941,9 +941,9 @@ "convert-source-map": "^2.0.0", "fast-json-stable-stringify": "^2.1.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", @@ -1093,9 +1093,9 @@ } }, "node_modules/@types/graceful-fs": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", - "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", "dev": true, "dependencies": { "@types/node": "*" @@ -1296,12 +1296,12 @@ "dev": true }, "node_modules/babel-jest": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.6.4.tgz", - "integrity": "sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", "dev": true, "dependencies": { - "@jest/transform": "^29.6.4", + "@jest/transform": "^29.7.0", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", "babel-preset-jest": "^29.6.3", @@ -1645,6 +1645,27 @@ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "dev": true }, + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, "node_modules/cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", @@ -1973,16 +1994,16 @@ } }, "node_modules/expect": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.6.4.tgz", - "integrity": "sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", "dev": true, "dependencies": { - "@jest/expect-utils": "^29.6.4", + "@jest/expect-utils": "^29.7.0", "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3" + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2127,10 +2148,13 @@ } }, "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/gensync": { "version": "1.0.0-beta.2", @@ -2206,18 +2230,6 @@ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -2227,6 +2239,18 @@ "node": ">=8" } }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/html-encoding-sniffer": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", @@ -2344,12 +2368,12 @@ "dev": true }, "node_modules/is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", "dev": true, "dependencies": { - "has": "^1.0.3" + "hasown": "^2.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -2416,9 +2440,9 @@ } }, "node_modules/istanbul-lib-instrument": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.0.tgz", - "integrity": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz", + "integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==", "dev": true, "dependencies": { "@babel/core": "^7.12.3", @@ -2506,15 +2530,15 @@ } }, "node_modules/jest": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.6.4.tgz", - "integrity": "sha512-tEFhVQFF/bzoYV1YuGyzLPZ6vlPrdfvDmmAxudA1dLEuiztqg2Rkx20vkKY32xiDROcD2KXlgZ7Cu8RPeEHRKw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, "dependencies": { - "@jest/core": "^29.6.4", + "@jest/core": "^29.7.0", "@jest/types": "^29.6.3", "import-local": "^3.0.2", - "jest-cli": "^29.6.4" + "jest-cli": "^29.7.0" }, "bin": { "jest": "bin/jest.js" @@ -2532,13 +2556,13 @@ } }, "node_modules/jest-changed-files": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.6.3.tgz", - "integrity": "sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", "dev": true, "dependencies": { "execa": "^5.0.0", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "p-limit": "^3.1.0" }, "engines": { @@ -2546,28 +2570,28 @@ } }, "node_modules/jest-circus": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.6.4.tgz", - "integrity": "sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/expect": "^29.6.4", - "@jest/test-result": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", "dedent": "^1.0.0", "is-generator-fn": "^2.0.0", - "jest-each": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-runtime": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", "p-limit": "^3.1.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "pure-rand": "^6.0.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" @@ -2577,22 +2601,21 @@ } }, "node_modules/jest-cli": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.6.4.tgz", - "integrity": "sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", "dev": true, "dependencies": { - "@jest/core": "^29.6.4", - "@jest/test-result": "^29.6.4", + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "chalk": "^4.0.0", + "create-jest": "^29.7.0", "exit": "^0.1.2", - "graceful-fs": "^4.2.9", "import-local": "^3.0.2", - "jest-config": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", - "prompts": "^2.0.1", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "yargs": "^17.3.1" }, "bin": { @@ -2611,31 +2634,31 @@ } }, "node_modules/jest-config": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.6.4.tgz", - "integrity": "sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.6.4", + "@jest/test-sequencer": "^29.7.0", "@jest/types": "^29.6.3", - "babel-jest": "^29.6.4", + "babel-jest": "^29.7.0", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-circus": "^29.6.4", - "jest-environment-node": "^29.6.4", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", "jest-get-type": "^29.6.3", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-runner": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "micromatch": "^4.0.4", "parse-json": "^5.2.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, @@ -2656,24 +2679,24 @@ } }, "node_modules/jest-diff": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.4.tgz", - "integrity": "sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, "dependencies": { "chalk": "^4.0.0", "diff-sequences": "^29.6.3", "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-docblock": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.6.3.tgz", - "integrity": "sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", "dev": true, "dependencies": { "detect-newline": "^3.0.0" @@ -2683,16 +2706,16 @@ } }, "node_modules/jest-each": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.6.3.tgz", - "integrity": "sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "chalk": "^4.0.0", "jest-get-type": "^29.6.3", - "jest-util": "^29.6.3", - "pretty-format": "^29.6.3" + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2726,17 +2749,17 @@ } }, "node_modules/jest-environment-node": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.4.tgz", - "integrity": "sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/fake-timers": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.6.3", - "jest-util": "^29.6.3" + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2752,9 +2775,9 @@ } }, "node_modules/jest-haste-map": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.4.tgz", - "integrity": "sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -2764,8 +2787,8 @@ "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", "jest-regex-util": "^29.6.3", - "jest-util": "^29.6.3", - "jest-worker": "^29.6.4", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "micromatch": "^4.0.4", "walker": "^1.0.8" }, @@ -2777,28 +2800,28 @@ } }, "node_modules/jest-leak-detector": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.6.3.tgz", - "integrity": "sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", "dev": true, "dependencies": { "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.6.4.tgz", - "integrity": "sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "jest-diff": "^29.6.4", + "jest-diff": "^29.7.0", "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2865,17 +2888,17 @@ } }, "node_modules/jest-resolve": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.4.tgz", - "integrity": "sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", "dev": true, "dependencies": { "chalk": "^4.0.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "resolve": "^1.20.0", "resolve.exports": "^2.0.0", "slash": "^3.0.0" @@ -2885,43 +2908,43 @@ } }, "node_modules/jest-resolve-dependencies": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.4.tgz", - "integrity": "sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", "dev": true, "dependencies": { "jest-regex-util": "^29.6.3", - "jest-snapshot": "^29.6.4" + "jest-snapshot": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-runner": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.6.4.tgz", - "integrity": "sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", - "@jest/environment": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.13.1", "graceful-fs": "^4.2.9", - "jest-docblock": "^29.6.3", - "jest-environment-node": "^29.6.4", - "jest-haste-map": "^29.6.4", - "jest-leak-detector": "^29.6.3", - "jest-message-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-runtime": "^29.6.4", - "jest-util": "^29.6.3", - "jest-watcher": "^29.6.4", - "jest-worker": "^29.6.4", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", "p-limit": "^3.1.0", "source-map-support": "0.5.13" }, @@ -2930,17 +2953,17 @@ } }, "node_modules/jest-runtime": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.6.4.tgz", - "integrity": "sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/fake-timers": "^29.6.4", - "@jest/globals": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", "@jest/source-map": "^29.6.3", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", @@ -2948,13 +2971,13 @@ "collect-v8-coverage": "^1.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-mock": "^29.6.3", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0", "strip-bom": "^4.0.0" }, @@ -2963,9 +2986,9 @@ } }, "node_modules/jest-snapshot": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.6.4.tgz", - "integrity": "sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", @@ -2973,20 +2996,20 @@ "@babel/plugin-syntax-jsx": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^29.6.4", + "expect": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-diff": "^29.6.4", + "jest-diff": "^29.7.0", "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "natural-compare": "^1.4.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "semver": "^7.5.3" }, "engines": { @@ -3044,9 +3067,9 @@ } }, "node_modules/jest-validate": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.3.tgz", - "integrity": "sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -3054,7 +3077,7 @@ "chalk": "^4.0.0", "jest-get-type": "^29.6.3", "leven": "^3.1.0", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -3073,18 +3096,18 @@ } }, "node_modules/jest-watcher": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.6.4.tgz", - "integrity": "sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", "dev": true, "dependencies": { - "@jest/test-result": "^29.6.4", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.13.1", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "string-length": "^4.0.1" }, "engines": { @@ -3092,13 +3115,13 @@ } }, "node_modules/jest-worker": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", - "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, "dependencies": { "@types/node": "*", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, @@ -3765,9 +3788,9 @@ } }, "node_modules/pure-rand": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", - "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", + "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", "dev": true, "funding": [ { @@ -3808,9 +3831,9 @@ "dev": true }, "node_modules/resolve": { - "version": "1.22.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", - "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", "dev": true, "dependencies": { "is-core-module": "^2.13.0", @@ -4307,25 +4330,19 @@ } }, "node_modules/v8-to-istanbul": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", - "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", + "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", "dev": true, "dependencies": { "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" + "convert-source-map": "^2.0.0" }, "engines": { "node": ">=10.12.0" } }, - "node_modules/v8-to-istanbul/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, "node_modules/w3c-xmlserializer": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", diff --git a/ecosystem-tests/node-ts-cjs/package-lock.json b/ecosystem-tests/node-ts-cjs/package-lock.json index 3742eaa82..f770cacac 100644 --- a/ecosystem-tests/node-ts-cjs/package-lock.json +++ b/ecosystem-tests/node-ts-cjs/package-lock.json @@ -494,9 +494,9 @@ } }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", - "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -596,9 +596,9 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", - "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", + "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -691,16 +691,16 @@ } }, "node_modules/@jest/console": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.6.4.tgz", - "integrity": "sha512-wNK6gC0Ha9QeEPSkeJedQuTQqxZYnDPuDcDhVuVatRvMkL4D0VTvFVZj+Yuh6caG2aOfzkUZ36KtCmLNtR02hw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0" }, "engines": { @@ -708,15 +708,15 @@ } }, "node_modules/@jest/core": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.6.4.tgz", - "integrity": "sha512-U/vq5ccNTSVgYH7mHnodHmCffGWHJnz/E1BEWlLuK5pM4FZmGfBn/nrJGLjUsSmyx3otCeqc1T31F4y08AMDLg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", - "@jest/reporters": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", @@ -724,21 +724,21 @@ "ci-info": "^3.2.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.6.3", - "jest-config": "^29.6.4", - "jest-haste-map": "^29.6.4", - "jest-message-util": "^29.6.3", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-resolve-dependencies": "^29.6.4", - "jest-runner": "^29.6.4", - "jest-runtime": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", - "jest-watcher": "^29.6.4", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", "micromatch": "^4.0.4", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, @@ -770,22 +770,22 @@ } }, "node_modules/@jest/expect": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.6.4.tgz", - "integrity": "sha512-Warhsa7d23+3X5bLbrbYvaehcgX5TLYhI03JKoedTiI8uJU4IhqYBWF7OSSgUyz4IgLpUYPkK0AehA5/fRclAA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", "dev": true, "dependencies": { - "expect": "^29.6.4", - "jest-snapshot": "^29.6.4" + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect-utils": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.6.4.tgz", - "integrity": "sha512-FEhkJhqtvBwgSpiTrocquJCdXPsyvNKcl/n7A3u7X4pVoF4bswm11c9d4AV+kfq2Gpv/mM8x7E7DsRvH+djkrg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", "dev": true, "dependencies": { "jest-get-type": "^29.6.3" @@ -812,30 +812,30 @@ } }, "node_modules/@jest/globals": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.6.4.tgz", - "integrity": "sha512-wVIn5bdtjlChhXAzVXavcY/3PEjf4VqM174BM3eGL5kMxLiZD5CLnbmkEyA1Dwh9q8XjP6E8RwjBsY/iCWrWsA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/expect": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", "@jest/types": "^29.6.3", - "jest-mock": "^29.6.3" + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/reporters": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.6.4.tgz", - "integrity": "sha512-sxUjWxm7QdchdrD3NfWKrL8FBsortZeibSJv4XLjESOOjSUOkjQcb0ZHJwfhEGIvBvTluTzfG2yZWZhkrXJu8g==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", "dev": true, "dependencies": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@jridgewell/trace-mapping": "^0.3.18", "@types/node": "*", @@ -849,9 +849,9 @@ "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", - "jest-worker": "^29.6.4", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "slash": "^3.0.0", "string-length": "^4.0.1", "strip-ansi": "^6.0.0", @@ -896,12 +896,12 @@ } }, "node_modules/@jest/test-result": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.6.4.tgz", - "integrity": "sha512-uQ1C0AUEN90/dsyEirgMLlouROgSY+Wc/JanVVk0OiUKa5UFh7sJpMEM3aoUBAz2BRNvUJ8j3d294WFuRxSyOQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", + "@jest/console": "^29.7.0", "@jest/types": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" @@ -911,14 +911,14 @@ } }, "node_modules/@jest/test-sequencer": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.6.4.tgz", - "integrity": "sha512-E84M6LbpcRq3fT4ckfKs9ryVanwkaIB0Ws9bw3/yP4seRLg/VaCZ/LgW0MCq5wwk4/iP/qnilD41aj2fsw2RMg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", "dev": true, "dependencies": { - "@jest/test-result": "^29.6.4", + "@jest/test-result": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "slash": "^3.0.0" }, "engines": { @@ -926,9 +926,9 @@ } }, "node_modules/@jest/transform": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.6.4.tgz", - "integrity": "sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", @@ -939,9 +939,9 @@ "convert-source-map": "^2.0.0", "fast-json-stable-stringify": "^2.1.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", @@ -1091,9 +1091,9 @@ } }, "node_modules/@types/graceful-fs": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", - "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", "dev": true, "dependencies": { "@types/node": "*" @@ -1303,12 +1303,12 @@ "dev": true }, "node_modules/babel-jest": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.6.4.tgz", - "integrity": "sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", "dev": true, "dependencies": { - "@jest/transform": "^29.6.4", + "@jest/transform": "^29.7.0", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", "babel-preset-jest": "^29.6.3", @@ -1652,6 +1652,27 @@ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "dev": true }, + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, "node_modules/cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", @@ -1980,16 +2001,16 @@ } }, "node_modules/expect": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.6.4.tgz", - "integrity": "sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", "dev": true, "dependencies": { - "@jest/expect-utils": "^29.6.4", + "@jest/expect-utils": "^29.7.0", "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3" + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2091,10 +2112,13 @@ } }, "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/gensync": { "version": "1.0.0-beta.2", @@ -2170,18 +2194,6 @@ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -2191,6 +2203,18 @@ "node": ">=8" } }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/html-encoding-sniffer": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", @@ -2308,12 +2332,12 @@ "dev": true }, "node_modules/is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", "dev": true, "dependencies": { - "has": "^1.0.3" + "hasown": "^2.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -2380,9 +2404,9 @@ } }, "node_modules/istanbul-lib-instrument": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.0.tgz", - "integrity": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz", + "integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==", "dev": true, "dependencies": { "@babel/core": "^7.12.3", @@ -2470,15 +2494,15 @@ } }, "node_modules/jest": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.6.4.tgz", - "integrity": "sha512-tEFhVQFF/bzoYV1YuGyzLPZ6vlPrdfvDmmAxudA1dLEuiztqg2Rkx20vkKY32xiDROcD2KXlgZ7Cu8RPeEHRKw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, "dependencies": { - "@jest/core": "^29.6.4", + "@jest/core": "^29.7.0", "@jest/types": "^29.6.3", "import-local": "^3.0.2", - "jest-cli": "^29.6.4" + "jest-cli": "^29.7.0" }, "bin": { "jest": "bin/jest.js" @@ -2496,13 +2520,13 @@ } }, "node_modules/jest-changed-files": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.6.3.tgz", - "integrity": "sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", "dev": true, "dependencies": { "execa": "^5.0.0", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "p-limit": "^3.1.0" }, "engines": { @@ -2510,28 +2534,28 @@ } }, "node_modules/jest-circus": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.6.4.tgz", - "integrity": "sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/expect": "^29.6.4", - "@jest/test-result": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", "dedent": "^1.0.0", "is-generator-fn": "^2.0.0", - "jest-each": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-runtime": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", "p-limit": "^3.1.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "pure-rand": "^6.0.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" @@ -2541,22 +2565,21 @@ } }, "node_modules/jest-cli": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.6.4.tgz", - "integrity": "sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", "dev": true, "dependencies": { - "@jest/core": "^29.6.4", - "@jest/test-result": "^29.6.4", + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "chalk": "^4.0.0", + "create-jest": "^29.7.0", "exit": "^0.1.2", - "graceful-fs": "^4.2.9", "import-local": "^3.0.2", - "jest-config": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", - "prompts": "^2.0.1", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "yargs": "^17.3.1" }, "bin": { @@ -2575,31 +2598,31 @@ } }, "node_modules/jest-config": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.6.4.tgz", - "integrity": "sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.6.4", + "@jest/test-sequencer": "^29.7.0", "@jest/types": "^29.6.3", - "babel-jest": "^29.6.4", + "babel-jest": "^29.7.0", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-circus": "^29.6.4", - "jest-environment-node": "^29.6.4", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", "jest-get-type": "^29.6.3", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-runner": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "micromatch": "^4.0.4", "parse-json": "^5.2.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, @@ -2620,24 +2643,24 @@ } }, "node_modules/jest-diff": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.4.tgz", - "integrity": "sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, "dependencies": { "chalk": "^4.0.0", "diff-sequences": "^29.6.3", "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-docblock": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.6.3.tgz", - "integrity": "sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", "dev": true, "dependencies": { "detect-newline": "^3.0.0" @@ -2647,16 +2670,16 @@ } }, "node_modules/jest-each": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.6.3.tgz", - "integrity": "sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "chalk": "^4.0.0", "jest-get-type": "^29.6.3", - "jest-util": "^29.6.3", - "pretty-format": "^29.6.3" + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2690,17 +2713,17 @@ } }, "node_modules/jest-environment-node": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.4.tgz", - "integrity": "sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/fake-timers": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.6.3", - "jest-util": "^29.6.3" + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2716,9 +2739,9 @@ } }, "node_modules/jest-haste-map": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.4.tgz", - "integrity": "sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -2728,8 +2751,8 @@ "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", "jest-regex-util": "^29.6.3", - "jest-util": "^29.6.3", - "jest-worker": "^29.6.4", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "micromatch": "^4.0.4", "walker": "^1.0.8" }, @@ -2741,28 +2764,28 @@ } }, "node_modules/jest-leak-detector": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.6.3.tgz", - "integrity": "sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", "dev": true, "dependencies": { "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.6.4.tgz", - "integrity": "sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "jest-diff": "^29.6.4", + "jest-diff": "^29.7.0", "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2829,17 +2852,17 @@ } }, "node_modules/jest-resolve": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.4.tgz", - "integrity": "sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", "dev": true, "dependencies": { "chalk": "^4.0.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "resolve": "^1.20.0", "resolve.exports": "^2.0.0", "slash": "^3.0.0" @@ -2849,43 +2872,43 @@ } }, "node_modules/jest-resolve-dependencies": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.4.tgz", - "integrity": "sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", "dev": true, "dependencies": { "jest-regex-util": "^29.6.3", - "jest-snapshot": "^29.6.4" + "jest-snapshot": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-runner": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.6.4.tgz", - "integrity": "sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", - "@jest/environment": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.13.1", "graceful-fs": "^4.2.9", - "jest-docblock": "^29.6.3", - "jest-environment-node": "^29.6.4", - "jest-haste-map": "^29.6.4", - "jest-leak-detector": "^29.6.3", - "jest-message-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-runtime": "^29.6.4", - "jest-util": "^29.6.3", - "jest-watcher": "^29.6.4", - "jest-worker": "^29.6.4", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", "p-limit": "^3.1.0", "source-map-support": "0.5.13" }, @@ -2894,17 +2917,17 @@ } }, "node_modules/jest-runtime": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.6.4.tgz", - "integrity": "sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/fake-timers": "^29.6.4", - "@jest/globals": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", "@jest/source-map": "^29.6.3", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", @@ -2912,13 +2935,13 @@ "collect-v8-coverage": "^1.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-mock": "^29.6.3", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0", "strip-bom": "^4.0.0" }, @@ -2927,9 +2950,9 @@ } }, "node_modules/jest-snapshot": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.6.4.tgz", - "integrity": "sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", @@ -2937,20 +2960,20 @@ "@babel/plugin-syntax-jsx": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^29.6.4", + "expect": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-diff": "^29.6.4", + "jest-diff": "^29.7.0", "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "natural-compare": "^1.4.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "semver": "^7.5.3" }, "engines": { @@ -3008,9 +3031,9 @@ } }, "node_modules/jest-validate": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.3.tgz", - "integrity": "sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -3018,7 +3041,7 @@ "chalk": "^4.0.0", "jest-get-type": "^29.6.3", "leven": "^3.1.0", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -3037,18 +3060,18 @@ } }, "node_modules/jest-watcher": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.6.4.tgz", - "integrity": "sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", "dev": true, "dependencies": { - "@jest/test-result": "^29.6.4", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.13.1", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "string-length": "^4.0.1" }, "engines": { @@ -3056,13 +3079,13 @@ } }, "node_modules/jest-worker": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", - "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, "dependencies": { "@types/node": "*", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, @@ -3729,9 +3752,9 @@ } }, "node_modules/pure-rand": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", - "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", + "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", "dev": true, "funding": [ { @@ -3772,9 +3795,9 @@ "dev": true }, "node_modules/resolve": { - "version": "1.22.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", - "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", "dev": true, "dependencies": { "is-core-module": "^2.13.0", @@ -4271,25 +4294,19 @@ } }, "node_modules/v8-to-istanbul": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", - "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", + "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", "dev": true, "dependencies": { "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" + "convert-source-map": "^2.0.0" }, "engines": { "node": ">=10.12.0" } }, - "node_modules/v8-to-istanbul/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, "node_modules/w3c-xmlserializer": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", diff --git a/ecosystem-tests/node-ts-esm-auto/package-lock.json b/ecosystem-tests/node-ts-esm-auto/package-lock.json index dfafbf8c2..1123560d4 100644 --- a/ecosystem-tests/node-ts-esm-auto/package-lock.json +++ b/ecosystem-tests/node-ts-esm-auto/package-lock.json @@ -1,11 +1,11 @@ { - "name": "node-esm", + "name": "node-ts-esm-auto", "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "node-esm", + "name": "node-ts-esm-auto", "version": "0.0.1", "dependencies": { "formdata-node": "^5.0.1", @@ -490,9 +490,9 @@ } }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", - "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -592,9 +592,9 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", - "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", + "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -709,16 +709,16 @@ } }, "node_modules/@jest/console": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.6.4.tgz", - "integrity": "sha512-wNK6gC0Ha9QeEPSkeJedQuTQqxZYnDPuDcDhVuVatRvMkL4D0VTvFVZj+Yuh6caG2aOfzkUZ36KtCmLNtR02hw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0" }, "engines": { @@ -726,15 +726,15 @@ } }, "node_modules/@jest/core": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.6.4.tgz", - "integrity": "sha512-U/vq5ccNTSVgYH7mHnodHmCffGWHJnz/E1BEWlLuK5pM4FZmGfBn/nrJGLjUsSmyx3otCeqc1T31F4y08AMDLg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", - "@jest/reporters": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", @@ -742,21 +742,21 @@ "ci-info": "^3.2.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.6.3", - "jest-config": "^29.6.4", - "jest-haste-map": "^29.6.4", - "jest-message-util": "^29.6.3", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-resolve-dependencies": "^29.6.4", - "jest-runner": "^29.6.4", - "jest-runtime": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", - "jest-watcher": "^29.6.4", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", "micromatch": "^4.0.4", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, @@ -773,37 +773,37 @@ } }, "node_modules/@jest/environment": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.6.4.tgz", - "integrity": "sha512-sQ0SULEjA1XUTHmkBRl7A1dyITM9yb1yb3ZNKPX3KlTd6IG7mWUe3e2yfExtC2Zz1Q+mMckOLHmL/qLiuQJrBQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", "dev": true, "dependencies": { - "@jest/fake-timers": "^29.6.4", + "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.6.3" + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.6.4.tgz", - "integrity": "sha512-Warhsa7d23+3X5bLbrbYvaehcgX5TLYhI03JKoedTiI8uJU4IhqYBWF7OSSgUyz4IgLpUYPkK0AehA5/fRclAA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", "dev": true, "dependencies": { - "expect": "^29.6.4", - "jest-snapshot": "^29.6.4" + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect-utils": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.6.4.tgz", - "integrity": "sha512-FEhkJhqtvBwgSpiTrocquJCdXPsyvNKcl/n7A3u7X4pVoF4bswm11c9d4AV+kfq2Gpv/mM8x7E7DsRvH+djkrg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", "dev": true, "dependencies": { "jest-get-type": "^29.6.3" @@ -813,47 +813,47 @@ } }, "node_modules/@jest/fake-timers": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.6.4.tgz", - "integrity": "sha512-6UkCwzoBK60edXIIWb0/KWkuj7R7Qq91vVInOe3De6DSpaEiqjKcJw4F7XUet24Wupahj9J6PlR09JqJ5ySDHw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@sinonjs/fake-timers": "^10.0.2", "@types/node": "*", - "jest-message-util": "^29.6.3", - "jest-mock": "^29.6.3", - "jest-util": "^29.6.3" + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/globals": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.6.4.tgz", - "integrity": "sha512-wVIn5bdtjlChhXAzVXavcY/3PEjf4VqM174BM3eGL5kMxLiZD5CLnbmkEyA1Dwh9q8XjP6E8RwjBsY/iCWrWsA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/expect": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", "@jest/types": "^29.6.3", - "jest-mock": "^29.6.3" + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/reporters": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.6.4.tgz", - "integrity": "sha512-sxUjWxm7QdchdrD3NfWKrL8FBsortZeibSJv4XLjESOOjSUOkjQcb0ZHJwfhEGIvBvTluTzfG2yZWZhkrXJu8g==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", "dev": true, "dependencies": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@jridgewell/trace-mapping": "^0.3.18", "@types/node": "*", @@ -867,9 +867,9 @@ "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", - "jest-worker": "^29.6.4", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "slash": "^3.0.0", "string-length": "^4.0.1", "strip-ansi": "^6.0.0", @@ -914,12 +914,12 @@ } }, "node_modules/@jest/test-result": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.6.4.tgz", - "integrity": "sha512-uQ1C0AUEN90/dsyEirgMLlouROgSY+Wc/JanVVk0OiUKa5UFh7sJpMEM3aoUBAz2BRNvUJ8j3d294WFuRxSyOQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", + "@jest/console": "^29.7.0", "@jest/types": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" @@ -929,14 +929,14 @@ } }, "node_modules/@jest/test-sequencer": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.6.4.tgz", - "integrity": "sha512-E84M6LbpcRq3fT4ckfKs9ryVanwkaIB0Ws9bw3/yP4seRLg/VaCZ/LgW0MCq5wwk4/iP/qnilD41aj2fsw2RMg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", "dev": true, "dependencies": { - "@jest/test-result": "^29.6.4", + "@jest/test-result": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "slash": "^3.0.0" }, "engines": { @@ -944,9 +944,9 @@ } }, "node_modules/@jest/transform": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.6.4.tgz", - "integrity": "sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", @@ -957,9 +957,9 @@ "convert-source-map": "^2.0.0", "fast-json-stable-stringify": "^2.1.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", @@ -1124,9 +1124,9 @@ } }, "node_modules/@types/graceful-fs": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", - "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", "dev": true, "dependencies": { "@types/node": "*" @@ -1163,9 +1163,9 @@ "dev": true }, "node_modules/@types/stack-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", "dev": true }, "node_modules/@types/yargs": { @@ -1272,12 +1272,12 @@ } }, "node_modules/babel-jest": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.6.4.tgz", - "integrity": "sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", "dev": true, "dependencies": { - "@jest/transform": "^29.6.4", + "@jest/transform": "^29.7.0", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", "babel-preset-jest": "^29.6.3", @@ -1609,6 +1609,27 @@ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "dev": true }, + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, "node_modules/create-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", @@ -1801,16 +1822,16 @@ } }, "node_modules/expect": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.6.4.tgz", - "integrity": "sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", "dev": true, "dependencies": { - "@jest/expect-utils": "^29.6.4", + "@jest/expect-utils": "^29.7.0", "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3" + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -1939,10 +1960,13 @@ } }, "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/gensync": { "version": "1.0.0-beta.2", @@ -2018,18 +2042,6 @@ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -2039,6 +2051,18 @@ "node": ">=8" } }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", @@ -2105,12 +2129,12 @@ "dev": true }, "node_modules/is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", "dev": true, "dependencies": { - "has": "^1.0.3" + "hasown": "^2.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -2171,9 +2195,9 @@ } }, "node_modules/istanbul-lib-instrument": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.0.tgz", - "integrity": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz", + "integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==", "dev": true, "dependencies": { "@babel/core": "^7.12.3", @@ -2261,15 +2285,15 @@ } }, "node_modules/jest": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.6.4.tgz", - "integrity": "sha512-tEFhVQFF/bzoYV1YuGyzLPZ6vlPrdfvDmmAxudA1dLEuiztqg2Rkx20vkKY32xiDROcD2KXlgZ7Cu8RPeEHRKw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, "dependencies": { - "@jest/core": "^29.6.4", + "@jest/core": "^29.7.0", "@jest/types": "^29.6.3", "import-local": "^3.0.2", - "jest-cli": "^29.6.4" + "jest-cli": "^29.7.0" }, "bin": { "jest": "bin/jest.js" @@ -2287,13 +2311,13 @@ } }, "node_modules/jest-changed-files": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.6.3.tgz", - "integrity": "sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", "dev": true, "dependencies": { "execa": "^5.0.0", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "p-limit": "^3.1.0" }, "engines": { @@ -2301,28 +2325,28 @@ } }, "node_modules/jest-circus": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.6.4.tgz", - "integrity": "sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/expect": "^29.6.4", - "@jest/test-result": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", "dedent": "^1.0.0", "is-generator-fn": "^2.0.0", - "jest-each": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-runtime": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", "p-limit": "^3.1.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "pure-rand": "^6.0.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" @@ -2332,22 +2356,21 @@ } }, "node_modules/jest-cli": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.6.4.tgz", - "integrity": "sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", "dev": true, "dependencies": { - "@jest/core": "^29.6.4", - "@jest/test-result": "^29.6.4", + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "chalk": "^4.0.0", + "create-jest": "^29.7.0", "exit": "^0.1.2", - "graceful-fs": "^4.2.9", "import-local": "^3.0.2", - "jest-config": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", - "prompts": "^2.0.1", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "yargs": "^17.3.1" }, "bin": { @@ -2366,31 +2389,31 @@ } }, "node_modules/jest-config": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.6.4.tgz", - "integrity": "sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.6.4", + "@jest/test-sequencer": "^29.7.0", "@jest/types": "^29.6.3", - "babel-jest": "^29.6.4", + "babel-jest": "^29.7.0", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-circus": "^29.6.4", - "jest-environment-node": "^29.6.4", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", "jest-get-type": "^29.6.3", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-runner": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "micromatch": "^4.0.4", "parse-json": "^5.2.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, @@ -2411,24 +2434,24 @@ } }, "node_modules/jest-diff": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.4.tgz", - "integrity": "sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, "dependencies": { "chalk": "^4.0.0", "diff-sequences": "^29.6.3", "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-docblock": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.6.3.tgz", - "integrity": "sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", "dev": true, "dependencies": { "detect-newline": "^3.0.0" @@ -2438,33 +2461,33 @@ } }, "node_modules/jest-each": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.6.3.tgz", - "integrity": "sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "chalk": "^4.0.0", "jest-get-type": "^29.6.3", - "jest-util": "^29.6.3", - "pretty-format": "^29.6.3" + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-environment-node": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.4.tgz", - "integrity": "sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/fake-timers": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.6.3", - "jest-util": "^29.6.3" + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2480,9 +2503,9 @@ } }, "node_modules/jest-haste-map": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.4.tgz", - "integrity": "sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -2492,8 +2515,8 @@ "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", "jest-regex-util": "^29.6.3", - "jest-util": "^29.6.3", - "jest-worker": "^29.6.4", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "micromatch": "^4.0.4", "walker": "^1.0.8" }, @@ -2505,37 +2528,37 @@ } }, "node_modules/jest-leak-detector": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.6.3.tgz", - "integrity": "sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", "dev": true, "dependencies": { "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.6.4.tgz", - "integrity": "sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "jest-diff": "^29.6.4", + "jest-diff": "^29.7.0", "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-message-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.6.3.tgz", - "integrity": "sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", "dev": true, "dependencies": { "@babel/code-frame": "^7.12.13", @@ -2544,7 +2567,7 @@ "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, @@ -2553,14 +2576,14 @@ } }, "node_modules/jest-mock": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.6.3.tgz", - "integrity": "sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", - "jest-util": "^29.6.3" + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2593,17 +2616,17 @@ } }, "node_modules/jest-resolve": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.4.tgz", - "integrity": "sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", "dev": true, "dependencies": { "chalk": "^4.0.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "resolve": "^1.20.0", "resolve.exports": "^2.0.0", "slash": "^3.0.0" @@ -2613,43 +2636,43 @@ } }, "node_modules/jest-resolve-dependencies": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.4.tgz", - "integrity": "sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", "dev": true, "dependencies": { "jest-regex-util": "^29.6.3", - "jest-snapshot": "^29.6.4" + "jest-snapshot": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-runner": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.6.4.tgz", - "integrity": "sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", - "@jest/environment": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.13.1", "graceful-fs": "^4.2.9", - "jest-docblock": "^29.6.3", - "jest-environment-node": "^29.6.4", - "jest-haste-map": "^29.6.4", - "jest-leak-detector": "^29.6.3", - "jest-message-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-runtime": "^29.6.4", - "jest-util": "^29.6.3", - "jest-watcher": "^29.6.4", - "jest-worker": "^29.6.4", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", "p-limit": "^3.1.0", "source-map-support": "0.5.13" }, @@ -2658,17 +2681,17 @@ } }, "node_modules/jest-runtime": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.6.4.tgz", - "integrity": "sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/fake-timers": "^29.6.4", - "@jest/globals": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", "@jest/source-map": "^29.6.3", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", @@ -2676,13 +2699,13 @@ "collect-v8-coverage": "^1.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-mock": "^29.6.3", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0", "strip-bom": "^4.0.0" }, @@ -2691,9 +2714,9 @@ } }, "node_modules/jest-snapshot": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.6.4.tgz", - "integrity": "sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", @@ -2701,20 +2724,20 @@ "@babel/plugin-syntax-jsx": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^29.6.4", + "expect": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-diff": "^29.6.4", + "jest-diff": "^29.7.0", "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "natural-compare": "^1.4.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "semver": "^7.5.3" }, "engines": { @@ -2755,9 +2778,9 @@ "dev": true }, "node_modules/jest-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.3.tgz", - "integrity": "sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -2772,9 +2795,9 @@ } }, "node_modules/jest-validate": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.3.tgz", - "integrity": "sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -2782,7 +2805,7 @@ "chalk": "^4.0.0", "jest-get-type": "^29.6.3", "leven": "^3.1.0", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2801,18 +2824,18 @@ } }, "node_modules/jest-watcher": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.6.4.tgz", - "integrity": "sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", "dev": true, "dependencies": { - "@jest/test-result": "^29.6.4", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.13.1", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "string-length": "^4.0.1" }, "engines": { @@ -2820,13 +2843,13 @@ } }, "node_modules/jest-worker": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", - "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, "dependencies": { "@types/node": "*", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, @@ -3298,9 +3321,9 @@ } }, "node_modules/pretty-format": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.3.tgz", - "integrity": "sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { "@jest/schemas": "^29.6.3", @@ -3337,9 +3360,9 @@ } }, "node_modules/pure-rand": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", - "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", + "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", "dev": true, "funding": [ { @@ -3368,9 +3391,9 @@ } }, "node_modules/resolve": { - "version": "1.22.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", - "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", "dev": true, "dependencies": { "is-core-module": "^2.13.0", @@ -3826,25 +3849,19 @@ "dev": true }, "node_modules/v8-to-istanbul": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", - "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", + "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", "dev": true, "dependencies": { "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" + "convert-source-map": "^2.0.0" }, "engines": { "node": ">=10.12.0" } }, - "node_modules/v8-to-istanbul/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, "node_modules/walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", diff --git a/ecosystem-tests/node-ts-esm-web/package-lock.json b/ecosystem-tests/node-ts-esm-web/package-lock.json index dfafbf8c2..a2b14d348 100644 --- a/ecosystem-tests/node-ts-esm-web/package-lock.json +++ b/ecosystem-tests/node-ts-esm-web/package-lock.json @@ -1,11 +1,11 @@ { - "name": "node-esm", + "name": "node-ts-esm-web", "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "node-esm", + "name": "node-ts-esm-web", "version": "0.0.1", "dependencies": { "formdata-node": "^5.0.1", @@ -490,9 +490,9 @@ } }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", - "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -592,9 +592,9 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", - "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", + "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -709,16 +709,16 @@ } }, "node_modules/@jest/console": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.6.4.tgz", - "integrity": "sha512-wNK6gC0Ha9QeEPSkeJedQuTQqxZYnDPuDcDhVuVatRvMkL4D0VTvFVZj+Yuh6caG2aOfzkUZ36KtCmLNtR02hw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0" }, "engines": { @@ -726,15 +726,15 @@ } }, "node_modules/@jest/core": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.6.4.tgz", - "integrity": "sha512-U/vq5ccNTSVgYH7mHnodHmCffGWHJnz/E1BEWlLuK5pM4FZmGfBn/nrJGLjUsSmyx3otCeqc1T31F4y08AMDLg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", - "@jest/reporters": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", @@ -742,21 +742,21 @@ "ci-info": "^3.2.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.6.3", - "jest-config": "^29.6.4", - "jest-haste-map": "^29.6.4", - "jest-message-util": "^29.6.3", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-resolve-dependencies": "^29.6.4", - "jest-runner": "^29.6.4", - "jest-runtime": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", - "jest-watcher": "^29.6.4", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", "micromatch": "^4.0.4", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, @@ -773,37 +773,37 @@ } }, "node_modules/@jest/environment": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.6.4.tgz", - "integrity": "sha512-sQ0SULEjA1XUTHmkBRl7A1dyITM9yb1yb3ZNKPX3KlTd6IG7mWUe3e2yfExtC2Zz1Q+mMckOLHmL/qLiuQJrBQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", "dev": true, "dependencies": { - "@jest/fake-timers": "^29.6.4", + "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.6.3" + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.6.4.tgz", - "integrity": "sha512-Warhsa7d23+3X5bLbrbYvaehcgX5TLYhI03JKoedTiI8uJU4IhqYBWF7OSSgUyz4IgLpUYPkK0AehA5/fRclAA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", "dev": true, "dependencies": { - "expect": "^29.6.4", - "jest-snapshot": "^29.6.4" + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect-utils": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.6.4.tgz", - "integrity": "sha512-FEhkJhqtvBwgSpiTrocquJCdXPsyvNKcl/n7A3u7X4pVoF4bswm11c9d4AV+kfq2Gpv/mM8x7E7DsRvH+djkrg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", "dev": true, "dependencies": { "jest-get-type": "^29.6.3" @@ -813,47 +813,47 @@ } }, "node_modules/@jest/fake-timers": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.6.4.tgz", - "integrity": "sha512-6UkCwzoBK60edXIIWb0/KWkuj7R7Qq91vVInOe3De6DSpaEiqjKcJw4F7XUet24Wupahj9J6PlR09JqJ5ySDHw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@sinonjs/fake-timers": "^10.0.2", "@types/node": "*", - "jest-message-util": "^29.6.3", - "jest-mock": "^29.6.3", - "jest-util": "^29.6.3" + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/globals": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.6.4.tgz", - "integrity": "sha512-wVIn5bdtjlChhXAzVXavcY/3PEjf4VqM174BM3eGL5kMxLiZD5CLnbmkEyA1Dwh9q8XjP6E8RwjBsY/iCWrWsA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/expect": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", "@jest/types": "^29.6.3", - "jest-mock": "^29.6.3" + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/reporters": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.6.4.tgz", - "integrity": "sha512-sxUjWxm7QdchdrD3NfWKrL8FBsortZeibSJv4XLjESOOjSUOkjQcb0ZHJwfhEGIvBvTluTzfG2yZWZhkrXJu8g==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", "dev": true, "dependencies": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@jridgewell/trace-mapping": "^0.3.18", "@types/node": "*", @@ -867,9 +867,9 @@ "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", - "jest-worker": "^29.6.4", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "slash": "^3.0.0", "string-length": "^4.0.1", "strip-ansi": "^6.0.0", @@ -914,12 +914,12 @@ } }, "node_modules/@jest/test-result": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.6.4.tgz", - "integrity": "sha512-uQ1C0AUEN90/dsyEirgMLlouROgSY+Wc/JanVVk0OiUKa5UFh7sJpMEM3aoUBAz2BRNvUJ8j3d294WFuRxSyOQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", + "@jest/console": "^29.7.0", "@jest/types": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" @@ -929,14 +929,14 @@ } }, "node_modules/@jest/test-sequencer": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.6.4.tgz", - "integrity": "sha512-E84M6LbpcRq3fT4ckfKs9ryVanwkaIB0Ws9bw3/yP4seRLg/VaCZ/LgW0MCq5wwk4/iP/qnilD41aj2fsw2RMg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", "dev": true, "dependencies": { - "@jest/test-result": "^29.6.4", + "@jest/test-result": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "slash": "^3.0.0" }, "engines": { @@ -944,9 +944,9 @@ } }, "node_modules/@jest/transform": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.6.4.tgz", - "integrity": "sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", @@ -957,9 +957,9 @@ "convert-source-map": "^2.0.0", "fast-json-stable-stringify": "^2.1.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", @@ -1124,9 +1124,9 @@ } }, "node_modules/@types/graceful-fs": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", - "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", "dev": true, "dependencies": { "@types/node": "*" @@ -1163,9 +1163,9 @@ "dev": true }, "node_modules/@types/stack-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", "dev": true }, "node_modules/@types/yargs": { @@ -1272,12 +1272,12 @@ } }, "node_modules/babel-jest": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.6.4.tgz", - "integrity": "sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", "dev": true, "dependencies": { - "@jest/transform": "^29.6.4", + "@jest/transform": "^29.7.0", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", "babel-preset-jest": "^29.6.3", @@ -1609,6 +1609,27 @@ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "dev": true }, + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, "node_modules/create-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", @@ -1801,16 +1822,16 @@ } }, "node_modules/expect": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.6.4.tgz", - "integrity": "sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", "dev": true, "dependencies": { - "@jest/expect-utils": "^29.6.4", + "@jest/expect-utils": "^29.7.0", "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3" + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -1939,10 +1960,13 @@ } }, "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/gensync": { "version": "1.0.0-beta.2", @@ -2018,18 +2042,6 @@ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -2039,6 +2051,18 @@ "node": ">=8" } }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", @@ -2105,12 +2129,12 @@ "dev": true }, "node_modules/is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", "dev": true, "dependencies": { - "has": "^1.0.3" + "hasown": "^2.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -2171,9 +2195,9 @@ } }, "node_modules/istanbul-lib-instrument": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.0.tgz", - "integrity": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz", + "integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==", "dev": true, "dependencies": { "@babel/core": "^7.12.3", @@ -2261,15 +2285,15 @@ } }, "node_modules/jest": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.6.4.tgz", - "integrity": "sha512-tEFhVQFF/bzoYV1YuGyzLPZ6vlPrdfvDmmAxudA1dLEuiztqg2Rkx20vkKY32xiDROcD2KXlgZ7Cu8RPeEHRKw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, "dependencies": { - "@jest/core": "^29.6.4", + "@jest/core": "^29.7.0", "@jest/types": "^29.6.3", "import-local": "^3.0.2", - "jest-cli": "^29.6.4" + "jest-cli": "^29.7.0" }, "bin": { "jest": "bin/jest.js" @@ -2287,13 +2311,13 @@ } }, "node_modules/jest-changed-files": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.6.3.tgz", - "integrity": "sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", "dev": true, "dependencies": { "execa": "^5.0.0", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "p-limit": "^3.1.0" }, "engines": { @@ -2301,28 +2325,28 @@ } }, "node_modules/jest-circus": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.6.4.tgz", - "integrity": "sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/expect": "^29.6.4", - "@jest/test-result": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", "dedent": "^1.0.0", "is-generator-fn": "^2.0.0", - "jest-each": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-runtime": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", "p-limit": "^3.1.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "pure-rand": "^6.0.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" @@ -2332,22 +2356,21 @@ } }, "node_modules/jest-cli": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.6.4.tgz", - "integrity": "sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", "dev": true, "dependencies": { - "@jest/core": "^29.6.4", - "@jest/test-result": "^29.6.4", + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "chalk": "^4.0.0", + "create-jest": "^29.7.0", "exit": "^0.1.2", - "graceful-fs": "^4.2.9", "import-local": "^3.0.2", - "jest-config": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", - "prompts": "^2.0.1", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "yargs": "^17.3.1" }, "bin": { @@ -2366,31 +2389,31 @@ } }, "node_modules/jest-config": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.6.4.tgz", - "integrity": "sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.6.4", + "@jest/test-sequencer": "^29.7.0", "@jest/types": "^29.6.3", - "babel-jest": "^29.6.4", + "babel-jest": "^29.7.0", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-circus": "^29.6.4", - "jest-environment-node": "^29.6.4", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", "jest-get-type": "^29.6.3", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-runner": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "micromatch": "^4.0.4", "parse-json": "^5.2.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, @@ -2411,24 +2434,24 @@ } }, "node_modules/jest-diff": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.4.tgz", - "integrity": "sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, "dependencies": { "chalk": "^4.0.0", "diff-sequences": "^29.6.3", "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-docblock": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.6.3.tgz", - "integrity": "sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", "dev": true, "dependencies": { "detect-newline": "^3.0.0" @@ -2438,33 +2461,33 @@ } }, "node_modules/jest-each": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.6.3.tgz", - "integrity": "sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "chalk": "^4.0.0", "jest-get-type": "^29.6.3", - "jest-util": "^29.6.3", - "pretty-format": "^29.6.3" + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-environment-node": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.4.tgz", - "integrity": "sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/fake-timers": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.6.3", - "jest-util": "^29.6.3" + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2480,9 +2503,9 @@ } }, "node_modules/jest-haste-map": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.4.tgz", - "integrity": "sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -2492,8 +2515,8 @@ "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", "jest-regex-util": "^29.6.3", - "jest-util": "^29.6.3", - "jest-worker": "^29.6.4", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "micromatch": "^4.0.4", "walker": "^1.0.8" }, @@ -2505,37 +2528,37 @@ } }, "node_modules/jest-leak-detector": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.6.3.tgz", - "integrity": "sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", "dev": true, "dependencies": { "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.6.4.tgz", - "integrity": "sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "jest-diff": "^29.6.4", + "jest-diff": "^29.7.0", "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-message-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.6.3.tgz", - "integrity": "sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", "dev": true, "dependencies": { "@babel/code-frame": "^7.12.13", @@ -2544,7 +2567,7 @@ "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, @@ -2553,14 +2576,14 @@ } }, "node_modules/jest-mock": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.6.3.tgz", - "integrity": "sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", - "jest-util": "^29.6.3" + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2593,17 +2616,17 @@ } }, "node_modules/jest-resolve": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.4.tgz", - "integrity": "sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", "dev": true, "dependencies": { "chalk": "^4.0.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "resolve": "^1.20.0", "resolve.exports": "^2.0.0", "slash": "^3.0.0" @@ -2613,43 +2636,43 @@ } }, "node_modules/jest-resolve-dependencies": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.4.tgz", - "integrity": "sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", "dev": true, "dependencies": { "jest-regex-util": "^29.6.3", - "jest-snapshot": "^29.6.4" + "jest-snapshot": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-runner": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.6.4.tgz", - "integrity": "sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", - "@jest/environment": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.13.1", "graceful-fs": "^4.2.9", - "jest-docblock": "^29.6.3", - "jest-environment-node": "^29.6.4", - "jest-haste-map": "^29.6.4", - "jest-leak-detector": "^29.6.3", - "jest-message-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-runtime": "^29.6.4", - "jest-util": "^29.6.3", - "jest-watcher": "^29.6.4", - "jest-worker": "^29.6.4", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", "p-limit": "^3.1.0", "source-map-support": "0.5.13" }, @@ -2658,17 +2681,17 @@ } }, "node_modules/jest-runtime": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.6.4.tgz", - "integrity": "sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/fake-timers": "^29.6.4", - "@jest/globals": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", "@jest/source-map": "^29.6.3", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", @@ -2676,13 +2699,13 @@ "collect-v8-coverage": "^1.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-mock": "^29.6.3", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0", "strip-bom": "^4.0.0" }, @@ -2691,9 +2714,9 @@ } }, "node_modules/jest-snapshot": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.6.4.tgz", - "integrity": "sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", @@ -2701,20 +2724,20 @@ "@babel/plugin-syntax-jsx": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^29.6.4", + "expect": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-diff": "^29.6.4", + "jest-diff": "^29.7.0", "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "natural-compare": "^1.4.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "semver": "^7.5.3" }, "engines": { @@ -2755,9 +2778,9 @@ "dev": true }, "node_modules/jest-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.3.tgz", - "integrity": "sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -2772,9 +2795,9 @@ } }, "node_modules/jest-validate": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.3.tgz", - "integrity": "sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -2782,7 +2805,7 @@ "chalk": "^4.0.0", "jest-get-type": "^29.6.3", "leven": "^3.1.0", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2801,18 +2824,18 @@ } }, "node_modules/jest-watcher": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.6.4.tgz", - "integrity": "sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", "dev": true, "dependencies": { - "@jest/test-result": "^29.6.4", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.13.1", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "string-length": "^4.0.1" }, "engines": { @@ -2820,13 +2843,13 @@ } }, "node_modules/jest-worker": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", - "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, "dependencies": { "@types/node": "*", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, @@ -3298,9 +3321,9 @@ } }, "node_modules/pretty-format": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.3.tgz", - "integrity": "sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { "@jest/schemas": "^29.6.3", @@ -3337,9 +3360,9 @@ } }, "node_modules/pure-rand": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", - "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", + "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", "dev": true, "funding": [ { @@ -3368,9 +3391,9 @@ } }, "node_modules/resolve": { - "version": "1.22.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", - "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", "dev": true, "dependencies": { "is-core-module": "^2.13.0", @@ -3826,25 +3849,19 @@ "dev": true }, "node_modules/v8-to-istanbul": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", - "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", + "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", "dev": true, "dependencies": { "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" + "convert-source-map": "^2.0.0" }, "engines": { "node": ">=10.12.0" } }, - "node_modules/v8-to-istanbul/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, "node_modules/walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", diff --git a/ecosystem-tests/node-ts-esm/package-lock.json b/ecosystem-tests/node-ts-esm/package-lock.json index dfafbf8c2..480a700fe 100644 --- a/ecosystem-tests/node-ts-esm/package-lock.json +++ b/ecosystem-tests/node-ts-esm/package-lock.json @@ -1,11 +1,11 @@ { - "name": "node-esm", + "name": "node-ts-esm", "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "node-esm", + "name": "node-ts-esm", "version": "0.0.1", "dependencies": { "formdata-node": "^5.0.1", @@ -490,9 +490,9 @@ } }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", - "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -592,9 +592,9 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", - "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", + "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -709,16 +709,16 @@ } }, "node_modules/@jest/console": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.6.4.tgz", - "integrity": "sha512-wNK6gC0Ha9QeEPSkeJedQuTQqxZYnDPuDcDhVuVatRvMkL4D0VTvFVZj+Yuh6caG2aOfzkUZ36KtCmLNtR02hw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0" }, "engines": { @@ -726,15 +726,15 @@ } }, "node_modules/@jest/core": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.6.4.tgz", - "integrity": "sha512-U/vq5ccNTSVgYH7mHnodHmCffGWHJnz/E1BEWlLuK5pM4FZmGfBn/nrJGLjUsSmyx3otCeqc1T31F4y08AMDLg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", - "@jest/reporters": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", @@ -742,21 +742,21 @@ "ci-info": "^3.2.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.6.3", - "jest-config": "^29.6.4", - "jest-haste-map": "^29.6.4", - "jest-message-util": "^29.6.3", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-resolve-dependencies": "^29.6.4", - "jest-runner": "^29.6.4", - "jest-runtime": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", - "jest-watcher": "^29.6.4", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", "micromatch": "^4.0.4", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, @@ -773,37 +773,37 @@ } }, "node_modules/@jest/environment": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.6.4.tgz", - "integrity": "sha512-sQ0SULEjA1XUTHmkBRl7A1dyITM9yb1yb3ZNKPX3KlTd6IG7mWUe3e2yfExtC2Zz1Q+mMckOLHmL/qLiuQJrBQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", "dev": true, "dependencies": { - "@jest/fake-timers": "^29.6.4", + "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.6.3" + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.6.4.tgz", - "integrity": "sha512-Warhsa7d23+3X5bLbrbYvaehcgX5TLYhI03JKoedTiI8uJU4IhqYBWF7OSSgUyz4IgLpUYPkK0AehA5/fRclAA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", "dev": true, "dependencies": { - "expect": "^29.6.4", - "jest-snapshot": "^29.6.4" + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect-utils": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.6.4.tgz", - "integrity": "sha512-FEhkJhqtvBwgSpiTrocquJCdXPsyvNKcl/n7A3u7X4pVoF4bswm11c9d4AV+kfq2Gpv/mM8x7E7DsRvH+djkrg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", "dev": true, "dependencies": { "jest-get-type": "^29.6.3" @@ -813,47 +813,47 @@ } }, "node_modules/@jest/fake-timers": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.6.4.tgz", - "integrity": "sha512-6UkCwzoBK60edXIIWb0/KWkuj7R7Qq91vVInOe3De6DSpaEiqjKcJw4F7XUet24Wupahj9J6PlR09JqJ5ySDHw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@sinonjs/fake-timers": "^10.0.2", "@types/node": "*", - "jest-message-util": "^29.6.3", - "jest-mock": "^29.6.3", - "jest-util": "^29.6.3" + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/globals": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.6.4.tgz", - "integrity": "sha512-wVIn5bdtjlChhXAzVXavcY/3PEjf4VqM174BM3eGL5kMxLiZD5CLnbmkEyA1Dwh9q8XjP6E8RwjBsY/iCWrWsA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/expect": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", "@jest/types": "^29.6.3", - "jest-mock": "^29.6.3" + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/reporters": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.6.4.tgz", - "integrity": "sha512-sxUjWxm7QdchdrD3NfWKrL8FBsortZeibSJv4XLjESOOjSUOkjQcb0ZHJwfhEGIvBvTluTzfG2yZWZhkrXJu8g==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", "dev": true, "dependencies": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@jridgewell/trace-mapping": "^0.3.18", "@types/node": "*", @@ -867,9 +867,9 @@ "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", - "jest-worker": "^29.6.4", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "slash": "^3.0.0", "string-length": "^4.0.1", "strip-ansi": "^6.0.0", @@ -914,12 +914,12 @@ } }, "node_modules/@jest/test-result": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.6.4.tgz", - "integrity": "sha512-uQ1C0AUEN90/dsyEirgMLlouROgSY+Wc/JanVVk0OiUKa5UFh7sJpMEM3aoUBAz2BRNvUJ8j3d294WFuRxSyOQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", + "@jest/console": "^29.7.0", "@jest/types": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" @@ -929,14 +929,14 @@ } }, "node_modules/@jest/test-sequencer": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.6.4.tgz", - "integrity": "sha512-E84M6LbpcRq3fT4ckfKs9ryVanwkaIB0Ws9bw3/yP4seRLg/VaCZ/LgW0MCq5wwk4/iP/qnilD41aj2fsw2RMg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", "dev": true, "dependencies": { - "@jest/test-result": "^29.6.4", + "@jest/test-result": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "slash": "^3.0.0" }, "engines": { @@ -944,9 +944,9 @@ } }, "node_modules/@jest/transform": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.6.4.tgz", - "integrity": "sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", @@ -957,9 +957,9 @@ "convert-source-map": "^2.0.0", "fast-json-stable-stringify": "^2.1.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", @@ -1124,9 +1124,9 @@ } }, "node_modules/@types/graceful-fs": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", - "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", "dev": true, "dependencies": { "@types/node": "*" @@ -1163,9 +1163,9 @@ "dev": true }, "node_modules/@types/stack-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", "dev": true }, "node_modules/@types/yargs": { @@ -1272,12 +1272,12 @@ } }, "node_modules/babel-jest": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.6.4.tgz", - "integrity": "sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", "dev": true, "dependencies": { - "@jest/transform": "^29.6.4", + "@jest/transform": "^29.7.0", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", "babel-preset-jest": "^29.6.3", @@ -1609,6 +1609,27 @@ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "dev": true }, + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, "node_modules/create-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", @@ -1801,16 +1822,16 @@ } }, "node_modules/expect": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.6.4.tgz", - "integrity": "sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", "dev": true, "dependencies": { - "@jest/expect-utils": "^29.6.4", + "@jest/expect-utils": "^29.7.0", "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3" + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -1939,10 +1960,13 @@ } }, "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/gensync": { "version": "1.0.0-beta.2", @@ -2018,18 +2042,6 @@ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -2039,6 +2051,18 @@ "node": ">=8" } }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", @@ -2105,12 +2129,12 @@ "dev": true }, "node_modules/is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", "dev": true, "dependencies": { - "has": "^1.0.3" + "hasown": "^2.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -2171,9 +2195,9 @@ } }, "node_modules/istanbul-lib-instrument": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.0.tgz", - "integrity": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz", + "integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==", "dev": true, "dependencies": { "@babel/core": "^7.12.3", @@ -2261,15 +2285,15 @@ } }, "node_modules/jest": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.6.4.tgz", - "integrity": "sha512-tEFhVQFF/bzoYV1YuGyzLPZ6vlPrdfvDmmAxudA1dLEuiztqg2Rkx20vkKY32xiDROcD2KXlgZ7Cu8RPeEHRKw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, "dependencies": { - "@jest/core": "^29.6.4", + "@jest/core": "^29.7.0", "@jest/types": "^29.6.3", "import-local": "^3.0.2", - "jest-cli": "^29.6.4" + "jest-cli": "^29.7.0" }, "bin": { "jest": "bin/jest.js" @@ -2287,13 +2311,13 @@ } }, "node_modules/jest-changed-files": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.6.3.tgz", - "integrity": "sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", "dev": true, "dependencies": { "execa": "^5.0.0", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "p-limit": "^3.1.0" }, "engines": { @@ -2301,28 +2325,28 @@ } }, "node_modules/jest-circus": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.6.4.tgz", - "integrity": "sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/expect": "^29.6.4", - "@jest/test-result": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", "dedent": "^1.0.0", "is-generator-fn": "^2.0.0", - "jest-each": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-runtime": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", "p-limit": "^3.1.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "pure-rand": "^6.0.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" @@ -2332,22 +2356,21 @@ } }, "node_modules/jest-cli": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.6.4.tgz", - "integrity": "sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", "dev": true, "dependencies": { - "@jest/core": "^29.6.4", - "@jest/test-result": "^29.6.4", + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "chalk": "^4.0.0", + "create-jest": "^29.7.0", "exit": "^0.1.2", - "graceful-fs": "^4.2.9", "import-local": "^3.0.2", - "jest-config": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", - "prompts": "^2.0.1", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "yargs": "^17.3.1" }, "bin": { @@ -2366,31 +2389,31 @@ } }, "node_modules/jest-config": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.6.4.tgz", - "integrity": "sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.6.4", + "@jest/test-sequencer": "^29.7.0", "@jest/types": "^29.6.3", - "babel-jest": "^29.6.4", + "babel-jest": "^29.7.0", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-circus": "^29.6.4", - "jest-environment-node": "^29.6.4", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", "jest-get-type": "^29.6.3", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-runner": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "micromatch": "^4.0.4", "parse-json": "^5.2.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, @@ -2411,24 +2434,24 @@ } }, "node_modules/jest-diff": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.4.tgz", - "integrity": "sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, "dependencies": { "chalk": "^4.0.0", "diff-sequences": "^29.6.3", "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-docblock": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.6.3.tgz", - "integrity": "sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", "dev": true, "dependencies": { "detect-newline": "^3.0.0" @@ -2438,33 +2461,33 @@ } }, "node_modules/jest-each": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.6.3.tgz", - "integrity": "sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "chalk": "^4.0.0", "jest-get-type": "^29.6.3", - "jest-util": "^29.6.3", - "pretty-format": "^29.6.3" + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-environment-node": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.4.tgz", - "integrity": "sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/fake-timers": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.6.3", - "jest-util": "^29.6.3" + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2480,9 +2503,9 @@ } }, "node_modules/jest-haste-map": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.4.tgz", - "integrity": "sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -2492,8 +2515,8 @@ "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", "jest-regex-util": "^29.6.3", - "jest-util": "^29.6.3", - "jest-worker": "^29.6.4", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "micromatch": "^4.0.4", "walker": "^1.0.8" }, @@ -2505,37 +2528,37 @@ } }, "node_modules/jest-leak-detector": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.6.3.tgz", - "integrity": "sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", "dev": true, "dependencies": { "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.6.4.tgz", - "integrity": "sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "jest-diff": "^29.6.4", + "jest-diff": "^29.7.0", "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-message-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.6.3.tgz", - "integrity": "sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", "dev": true, "dependencies": { "@babel/code-frame": "^7.12.13", @@ -2544,7 +2567,7 @@ "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, @@ -2553,14 +2576,14 @@ } }, "node_modules/jest-mock": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.6.3.tgz", - "integrity": "sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", - "jest-util": "^29.6.3" + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2593,17 +2616,17 @@ } }, "node_modules/jest-resolve": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.4.tgz", - "integrity": "sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", "dev": true, "dependencies": { "chalk": "^4.0.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "resolve": "^1.20.0", "resolve.exports": "^2.0.0", "slash": "^3.0.0" @@ -2613,43 +2636,43 @@ } }, "node_modules/jest-resolve-dependencies": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.4.tgz", - "integrity": "sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", "dev": true, "dependencies": { "jest-regex-util": "^29.6.3", - "jest-snapshot": "^29.6.4" + "jest-snapshot": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-runner": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.6.4.tgz", - "integrity": "sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", - "@jest/environment": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.13.1", "graceful-fs": "^4.2.9", - "jest-docblock": "^29.6.3", - "jest-environment-node": "^29.6.4", - "jest-haste-map": "^29.6.4", - "jest-leak-detector": "^29.6.3", - "jest-message-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-runtime": "^29.6.4", - "jest-util": "^29.6.3", - "jest-watcher": "^29.6.4", - "jest-worker": "^29.6.4", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", "p-limit": "^3.1.0", "source-map-support": "0.5.13" }, @@ -2658,17 +2681,17 @@ } }, "node_modules/jest-runtime": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.6.4.tgz", - "integrity": "sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/fake-timers": "^29.6.4", - "@jest/globals": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", "@jest/source-map": "^29.6.3", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", @@ -2676,13 +2699,13 @@ "collect-v8-coverage": "^1.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-mock": "^29.6.3", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0", "strip-bom": "^4.0.0" }, @@ -2691,9 +2714,9 @@ } }, "node_modules/jest-snapshot": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.6.4.tgz", - "integrity": "sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", @@ -2701,20 +2724,20 @@ "@babel/plugin-syntax-jsx": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^29.6.4", + "expect": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-diff": "^29.6.4", + "jest-diff": "^29.7.0", "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "natural-compare": "^1.4.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "semver": "^7.5.3" }, "engines": { @@ -2755,9 +2778,9 @@ "dev": true }, "node_modules/jest-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.3.tgz", - "integrity": "sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -2772,9 +2795,9 @@ } }, "node_modules/jest-validate": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.3.tgz", - "integrity": "sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -2782,7 +2805,7 @@ "chalk": "^4.0.0", "jest-get-type": "^29.6.3", "leven": "^3.1.0", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -2801,18 +2824,18 @@ } }, "node_modules/jest-watcher": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.6.4.tgz", - "integrity": "sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", "dev": true, "dependencies": { - "@jest/test-result": "^29.6.4", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.13.1", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "string-length": "^4.0.1" }, "engines": { @@ -2820,13 +2843,13 @@ } }, "node_modules/jest-worker": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", - "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, "dependencies": { "@types/node": "*", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, @@ -3298,9 +3321,9 @@ } }, "node_modules/pretty-format": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.3.tgz", - "integrity": "sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { "@jest/schemas": "^29.6.3", @@ -3337,9 +3360,9 @@ } }, "node_modules/pure-rand": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", - "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", + "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", "dev": true, "funding": [ { @@ -3368,9 +3391,9 @@ } }, "node_modules/resolve": { - "version": "1.22.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", - "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", "dev": true, "dependencies": { "is-core-module": "^2.13.0", @@ -3826,25 +3849,19 @@ "dev": true }, "node_modules/v8-to-istanbul": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", - "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", + "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", "dev": true, "dependencies": { "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" + "convert-source-map": "^2.0.0" }, "engines": { "node": ">=10.12.0" } }, - "node_modules/v8-to-istanbul/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, "node_modules/walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", diff --git a/ecosystem-tests/node-ts4.5-jest27/package-lock.json b/ecosystem-tests/node-ts4.5-jest27/package-lock.json index dbec66d6d..ecdc96a54 100644 --- a/ecosystem-tests/node-ts4.5-jest27/package-lock.json +++ b/ecosystem-tests/node-ts4.5-jest27/package-lock.json @@ -1,11 +1,11 @@ { - "name": "node-ts-cjs", + "name": "node-ts4.5-jest27", "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "node-ts-cjs", + "name": "node-ts4.5-jest27", "version": "0.0.1", "dependencies": { "formdata-node": "^4.4.1", @@ -13,7 +13,7 @@ "tsconfig-paths": "^4.0.0" }, "devDependencies": { - "@types/jest": "27.4.1", + "@types/jest": "27.5.2", "@types/node": "^20.4.2", "@types/node-fetch": "^2.6.1", "@types/ws": "^8.5.4", @@ -1058,9 +1058,9 @@ } }, "node_modules/@types/jest": { - "version": "27.4.1", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.4.1.tgz", - "integrity": "sha512-23iPJADSmicDVrWk+HT58LMJtzLAnB2AgIzplQuq/bSrGaxCrlvRFjGbXmamnnk/mAmCdLStiGqggu28ocUyiw==", + "version": "27.5.2", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.5.2.tgz", + "integrity": "sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==", "dev": true, "dependencies": { "jest-matcher-utils": "^27.0.0", diff --git a/ecosystem-tests/node-ts4.5-jest27/package.json b/ecosystem-tests/node-ts4.5-jest27/package.json index cf126a1dc..a38f8a5b7 100644 --- a/ecosystem-tests/node-ts4.5-jest27/package.json +++ b/ecosystem-tests/node-ts4.5-jest27/package.json @@ -15,7 +15,7 @@ "devDependencies": { "@types/node": "^20.4.2", "@types/node-fetch": "^2.6.1", - "@types/jest": "27.4.1", + "@types/jest": "27.5.2", "@types/ws": "^8.5.4", "fastest-levenshtein": "^1.0.16", "jest": "27.5.1", diff --git a/ecosystem-tests/vercel-edge/package-lock.json b/ecosystem-tests/vercel-edge/package-lock.json index e270944f2..6b44e0774 100644 --- a/ecosystem-tests/vercel-edge/package-lock.json +++ b/ecosystem-tests/vercel-edge/package-lock.json @@ -527,9 +527,9 @@ } }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", - "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -629,9 +629,9 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", - "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", + "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -809,16 +809,16 @@ } }, "node_modules/@jest/console": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.6.4.tgz", - "integrity": "sha512-wNK6gC0Ha9QeEPSkeJedQuTQqxZYnDPuDcDhVuVatRvMkL4D0VTvFVZj+Yuh6caG2aOfzkUZ36KtCmLNtR02hw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0" }, "engines": { @@ -826,15 +826,15 @@ } }, "node_modules/@jest/core": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.6.4.tgz", - "integrity": "sha512-U/vq5ccNTSVgYH7mHnodHmCffGWHJnz/E1BEWlLuK5pM4FZmGfBn/nrJGLjUsSmyx3otCeqc1T31F4y08AMDLg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", - "@jest/reporters": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", @@ -842,21 +842,21 @@ "ci-info": "^3.2.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.6.3", - "jest-config": "^29.6.4", - "jest-haste-map": "^29.6.4", - "jest-message-util": "^29.6.3", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-resolve-dependencies": "^29.6.4", - "jest-runner": "^29.6.4", - "jest-runtime": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", - "jest-watcher": "^29.6.4", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", "micromatch": "^4.0.4", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, @@ -873,37 +873,37 @@ } }, "node_modules/@jest/environment": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.6.4.tgz", - "integrity": "sha512-sQ0SULEjA1XUTHmkBRl7A1dyITM9yb1yb3ZNKPX3KlTd6IG7mWUe3e2yfExtC2Zz1Q+mMckOLHmL/qLiuQJrBQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", "dev": true, "dependencies": { - "@jest/fake-timers": "^29.6.4", + "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.6.3" + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.6.4.tgz", - "integrity": "sha512-Warhsa7d23+3X5bLbrbYvaehcgX5TLYhI03JKoedTiI8uJU4IhqYBWF7OSSgUyz4IgLpUYPkK0AehA5/fRclAA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", "dev": true, "dependencies": { - "expect": "^29.6.4", - "jest-snapshot": "^29.6.4" + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect-utils": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.6.4.tgz", - "integrity": "sha512-FEhkJhqtvBwgSpiTrocquJCdXPsyvNKcl/n7A3u7X4pVoF4bswm11c9d4AV+kfq2Gpv/mM8x7E7DsRvH+djkrg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", "dev": true, "dependencies": { "jest-get-type": "^29.6.3" @@ -913,47 +913,47 @@ } }, "node_modules/@jest/fake-timers": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.6.4.tgz", - "integrity": "sha512-6UkCwzoBK60edXIIWb0/KWkuj7R7Qq91vVInOe3De6DSpaEiqjKcJw4F7XUet24Wupahj9J6PlR09JqJ5ySDHw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@sinonjs/fake-timers": "^10.0.2", "@types/node": "*", - "jest-message-util": "^29.6.3", - "jest-mock": "^29.6.3", - "jest-util": "^29.6.3" + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/globals": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.6.4.tgz", - "integrity": "sha512-wVIn5bdtjlChhXAzVXavcY/3PEjf4VqM174BM3eGL5kMxLiZD5CLnbmkEyA1Dwh9q8XjP6E8RwjBsY/iCWrWsA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/expect": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", "@jest/types": "^29.6.3", - "jest-mock": "^29.6.3" + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/reporters": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.6.4.tgz", - "integrity": "sha512-sxUjWxm7QdchdrD3NfWKrL8FBsortZeibSJv4XLjESOOjSUOkjQcb0ZHJwfhEGIvBvTluTzfG2yZWZhkrXJu8g==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", "dev": true, "dependencies": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@jridgewell/trace-mapping": "^0.3.18", "@types/node": "*", @@ -967,9 +967,9 @@ "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", - "jest-worker": "^29.6.4", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "slash": "^3.0.0", "string-length": "^4.0.1", "strip-ansi": "^6.0.0", @@ -1020,12 +1020,12 @@ } }, "node_modules/@jest/test-result": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.6.4.tgz", - "integrity": "sha512-uQ1C0AUEN90/dsyEirgMLlouROgSY+Wc/JanVVk0OiUKa5UFh7sJpMEM3aoUBAz2BRNvUJ8j3d294WFuRxSyOQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", + "@jest/console": "^29.7.0", "@jest/types": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" @@ -1035,14 +1035,14 @@ } }, "node_modules/@jest/test-sequencer": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.6.4.tgz", - "integrity": "sha512-E84M6LbpcRq3fT4ckfKs9ryVanwkaIB0Ws9bw3/yP4seRLg/VaCZ/LgW0MCq5wwk4/iP/qnilD41aj2fsw2RMg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", "dev": true, "dependencies": { - "@jest/test-result": "^29.6.4", + "@jest/test-result": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "slash": "^3.0.0" }, "engines": { @@ -1050,9 +1050,9 @@ } }, "node_modules/@jest/transform": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.6.4.tgz", - "integrity": "sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", @@ -1063,9 +1063,9 @@ "convert-source-map": "^2.0.0", "fast-json-stable-stringify": "^2.1.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", @@ -1501,9 +1501,9 @@ "peer": true }, "node_modules/@types/graceful-fs": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", - "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", "dev": true, "dependencies": { "@types/node": "*" @@ -1588,9 +1588,9 @@ "dev": true }, "node_modules/@types/stack-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", "dev": true }, "node_modules/@types/yargs": { @@ -2317,12 +2317,12 @@ } }, "node_modules/babel-jest": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.6.4.tgz", - "integrity": "sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", "dev": true, "dependencies": { - "@jest/transform": "^29.6.4", + "@jest/transform": "^29.7.0", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", "babel-preset-jest": "^29.6.3", @@ -2775,6 +2775,27 @@ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "dev": true }, + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, "node_modules/create-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", @@ -3452,16 +3473,16 @@ } }, "node_modules/expect": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.6.4.tgz", - "integrity": "sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", "dev": true, "dependencies": { - "@jest/expect-utils": "^29.6.4", + "@jest/expect-utils": "^29.7.0", "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3" + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -3652,10 +3673,13 @@ } }, "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/gauge": { "version": "3.0.2", @@ -3773,18 +3797,6 @@ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -3800,6 +3812,18 @@ "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", "dev": true }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", @@ -3879,12 +3903,12 @@ "dev": true }, "node_modules/is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", "dev": true, "dependencies": { - "has": "^1.0.3" + "hasown": "^2.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -3975,9 +3999,9 @@ } }, "node_modules/istanbul-lib-instrument": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.0.tgz", - "integrity": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz", + "integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==", "dev": true, "dependencies": { "@babel/core": "^7.12.3", @@ -4077,15 +4101,15 @@ } }, "node_modules/jest": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.6.4.tgz", - "integrity": "sha512-tEFhVQFF/bzoYV1YuGyzLPZ6vlPrdfvDmmAxudA1dLEuiztqg2Rkx20vkKY32xiDROcD2KXlgZ7Cu8RPeEHRKw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, "dependencies": { - "@jest/core": "^29.6.4", + "@jest/core": "^29.7.0", "@jest/types": "^29.6.3", "import-local": "^3.0.2", - "jest-cli": "^29.6.4" + "jest-cli": "^29.7.0" }, "bin": { "jest": "bin/jest.js" @@ -4103,13 +4127,13 @@ } }, "node_modules/jest-changed-files": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.6.3.tgz", - "integrity": "sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", "dev": true, "dependencies": { "execa": "^5.0.0", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "p-limit": "^3.1.0" }, "engines": { @@ -4117,28 +4141,28 @@ } }, "node_modules/jest-circus": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.6.4.tgz", - "integrity": "sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/expect": "^29.6.4", - "@jest/test-result": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", "dedent": "^1.0.0", "is-generator-fn": "^2.0.0", - "jest-each": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-runtime": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", "p-limit": "^3.1.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "pure-rand": "^6.0.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" @@ -4148,22 +4172,21 @@ } }, "node_modules/jest-cli": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.6.4.tgz", - "integrity": "sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", "dev": true, "dependencies": { - "@jest/core": "^29.6.4", - "@jest/test-result": "^29.6.4", + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "chalk": "^4.0.0", + "create-jest": "^29.7.0", "exit": "^0.1.2", - "graceful-fs": "^4.2.9", "import-local": "^3.0.2", - "jest-config": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", - "prompts": "^2.0.1", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "yargs": "^17.3.1" }, "bin": { @@ -4182,31 +4205,31 @@ } }, "node_modules/jest-config": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.6.4.tgz", - "integrity": "sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.6.4", + "@jest/test-sequencer": "^29.7.0", "@jest/types": "^29.6.3", - "babel-jest": "^29.6.4", + "babel-jest": "^29.7.0", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-circus": "^29.6.4", - "jest-environment-node": "^29.6.4", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", "jest-get-type": "^29.6.3", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-runner": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "micromatch": "^4.0.4", "parse-json": "^5.2.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, @@ -4227,24 +4250,24 @@ } }, "node_modules/jest-diff": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.4.tgz", - "integrity": "sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, "dependencies": { "chalk": "^4.0.0", "diff-sequences": "^29.6.3", "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-docblock": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.6.3.tgz", - "integrity": "sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", "dev": true, "dependencies": { "detect-newline": "^3.0.0" @@ -4254,33 +4277,33 @@ } }, "node_modules/jest-each": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.6.3.tgz", - "integrity": "sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "chalk": "^4.0.0", "jest-get-type": "^29.6.3", - "jest-util": "^29.6.3", - "pretty-format": "^29.6.3" + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-environment-node": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.4.tgz", - "integrity": "sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/fake-timers": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.6.3", - "jest-util": "^29.6.3" + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -4296,9 +4319,9 @@ } }, "node_modules/jest-haste-map": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.4.tgz", - "integrity": "sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -4308,8 +4331,8 @@ "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", "jest-regex-util": "^29.6.3", - "jest-util": "^29.6.3", - "jest-worker": "^29.6.4", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "micromatch": "^4.0.4", "walker": "^1.0.8" }, @@ -4321,37 +4344,37 @@ } }, "node_modules/jest-leak-detector": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.6.3.tgz", - "integrity": "sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", "dev": true, "dependencies": { "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.6.4.tgz", - "integrity": "sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "jest-diff": "^29.6.4", + "jest-diff": "^29.7.0", "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-message-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.6.3.tgz", - "integrity": "sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", "dev": true, "dependencies": { "@babel/code-frame": "^7.12.13", @@ -4360,7 +4383,7 @@ "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, @@ -4369,14 +4392,14 @@ } }, "node_modules/jest-mock": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.6.3.tgz", - "integrity": "sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", - "jest-util": "^29.6.3" + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -4409,17 +4432,17 @@ } }, "node_modules/jest-resolve": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.4.tgz", - "integrity": "sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", "dev": true, "dependencies": { "chalk": "^4.0.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "resolve": "^1.20.0", "resolve.exports": "^2.0.0", "slash": "^3.0.0" @@ -4429,43 +4452,43 @@ } }, "node_modules/jest-resolve-dependencies": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.4.tgz", - "integrity": "sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", "dev": true, "dependencies": { "jest-regex-util": "^29.6.3", - "jest-snapshot": "^29.6.4" + "jest-snapshot": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-runner": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.6.4.tgz", - "integrity": "sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", - "@jest/environment": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.13.1", "graceful-fs": "^4.2.9", - "jest-docblock": "^29.6.3", - "jest-environment-node": "^29.6.4", - "jest-haste-map": "^29.6.4", - "jest-leak-detector": "^29.6.3", - "jest-message-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-runtime": "^29.6.4", - "jest-util": "^29.6.3", - "jest-watcher": "^29.6.4", - "jest-worker": "^29.6.4", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", "p-limit": "^3.1.0", "source-map-support": "0.5.13" }, @@ -4474,17 +4497,17 @@ } }, "node_modules/jest-runtime": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.6.4.tgz", - "integrity": "sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/fake-timers": "^29.6.4", - "@jest/globals": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", "@jest/source-map": "^29.6.3", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", @@ -4492,13 +4515,13 @@ "collect-v8-coverage": "^1.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-mock": "^29.6.3", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0", "strip-bom": "^4.0.0" }, @@ -4507,9 +4530,9 @@ } }, "node_modules/jest-snapshot": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.6.4.tgz", - "integrity": "sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", @@ -4517,20 +4540,20 @@ "@babel/plugin-syntax-jsx": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^29.6.4", + "expect": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-diff": "^29.6.4", + "jest-diff": "^29.7.0", "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "natural-compare": "^1.4.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "semver": "^7.5.3" }, "engines": { @@ -4553,9 +4576,9 @@ } }, "node_modules/jest-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.3.tgz", - "integrity": "sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -4570,9 +4593,9 @@ } }, "node_modules/jest-validate": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.3.tgz", - "integrity": "sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", @@ -4580,7 +4603,7 @@ "chalk": "^4.0.0", "jest-get-type": "^29.6.3", "leven": "^3.1.0", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -4599,18 +4622,18 @@ } }, "node_modules/jest-watcher": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.6.4.tgz", - "integrity": "sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", "dev": true, "dependencies": { - "@jest/test-result": "^29.6.4", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.13.1", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "string-length": "^4.0.1" }, "engines": { @@ -4618,13 +4641,13 @@ } }, "node_modules/jest-worker": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", - "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, "dependencies": { "@types/node": "*", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, @@ -5431,9 +5454,9 @@ } }, "node_modules/pretty-format": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.3.tgz", - "integrity": "sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { "@jest/schemas": "^29.6.3", @@ -5515,9 +5538,9 @@ } }, "node_modules/pure-rand": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.3.tgz", - "integrity": "sha512-KddyFewCsO0j3+np81IQ+SweXLDnDQTs5s67BOnrYmYe/yNmUhttQyGsYzy8yUnoljGAQ9sl38YB4vH8ur7Y+w==", + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", + "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", "dev": true, "funding": [ { @@ -5618,9 +5641,9 @@ } }, "node_modules/resolve": { - "version": "1.22.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", - "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", "dev": true, "dependencies": { "is-core-module": "^2.13.0", @@ -6451,25 +6474,19 @@ "dev": true }, "node_modules/v8-to-istanbul": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", - "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", + "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", "dev": true, "dependencies": { "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" + "convert-source-map": "^2.0.0" }, "engines": { "node": ">=10.12.0" } }, - "node_modules/v8-to-istanbul/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, "node_modules/vercel": { "version": "31.4.0", "resolved": "https://registry.npmjs.org/vercel/-/vercel-31.4.0.tgz", diff --git a/yarn.lock b/yarn.lock index 46db0f7e4..a79485a26 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7,165 +7,163 @@ resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== -"@ampproject/remapping@^2.1.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" - integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== +"@ampproject/remapping@^2.2.0": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" + integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== dependencies: - "@jridgewell/gen-mapping" "^0.1.0" + "@jridgewell/gen-mapping" "^0.3.0" "@jridgewell/trace-mapping" "^0.3.9" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789" - integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244" + integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA== dependencies: - "@babel/highlight" "^7.16.7" + "@babel/highlight" "^7.23.4" + chalk "^2.4.2" -"@babel/compat-data@^7.17.10": - version "7.17.10" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.17.10.tgz#711dc726a492dfc8be8220028b1b92482362baab" - integrity sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw== +"@babel/compat-data@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.5.tgz#ffb878728bb6bdcb6f4510aa51b1be9afb8cfd98" + integrity sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw== "@babel/core@^7.11.6", "@babel/core@^7.12.3": - version "7.17.10" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.17.10.tgz#74ef0fbf56b7dfc3f198fc2d927f4f03e12f4b05" - integrity sha512-liKoppandF3ZcBnIYFjfSDHZLKdLHGJRkoWtG8zQyGJBQfIYobpnVGI5+pLBNtS6psFLDzyq8+h5HiVljW9PNA== - dependencies: - "@ampproject/remapping" "^2.1.0" - "@babel/code-frame" "^7.16.7" - "@babel/generator" "^7.17.10" - "@babel/helper-compilation-targets" "^7.17.10" - "@babel/helper-module-transforms" "^7.17.7" - "@babel/helpers" "^7.17.9" - "@babel/parser" "^7.17.10" - "@babel/template" "^7.16.7" - "@babel/traverse" "^7.17.10" - "@babel/types" "^7.17.10" - convert-source-map "^1.7.0" + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.23.6.tgz#8be77cd77c55baadcc1eae1c33df90ab6d2151d4" + integrity sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.23.5" + "@babel/generator" "^7.23.6" + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helpers" "^7.23.6" + "@babel/parser" "^7.23.6" + "@babel/template" "^7.22.15" + "@babel/traverse" "^7.23.6" + "@babel/types" "^7.23.6" + convert-source-map "^2.0.0" debug "^4.1.0" gensync "^1.0.0-beta.2" - json5 "^2.2.1" - semver "^6.3.0" + json5 "^2.2.3" + semver "^6.3.1" -"@babel/generator@^7.17.10", "@babel/generator@^7.7.2": - version "7.17.10" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.17.10.tgz#c281fa35b0c349bbe9d02916f4ae08fc85ed7189" - integrity sha512-46MJZZo9y3o4kmhBVc7zW7i8dtR1oIK/sdO5NcfcZRhTGYi+KKJRtHNgsU6c4VUcJmUNV/LQdebD/9Dlv4K+Tg== +"@babel/generator@^7.23.6", "@babel/generator@^7.7.2": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.6.tgz#9e1fca4811c77a10580d17d26b57b036133f3c2e" + integrity sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw== dependencies: - "@babel/types" "^7.17.10" - "@jridgewell/gen-mapping" "^0.1.0" + "@babel/types" "^7.23.6" + "@jridgewell/gen-mapping" "^0.3.2" + "@jridgewell/trace-mapping" "^0.3.17" jsesc "^2.5.1" -"@babel/helper-compilation-targets@^7.17.10": - version "7.17.10" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.10.tgz#09c63106d47af93cf31803db6bc49fef354e2ebe" - integrity sha512-gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ== +"@babel/helper-compilation-targets@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991" + integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ== dependencies: - "@babel/compat-data" "^7.17.10" - "@babel/helper-validator-option" "^7.16.7" - browserslist "^4.20.2" - semver "^6.3.0" + "@babel/compat-data" "^7.23.5" + "@babel/helper-validator-option" "^7.23.5" + browserslist "^4.22.2" + lru-cache "^5.1.1" + semver "^6.3.1" -"@babel/helper-environment-visitor@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz#ff484094a839bde9d89cd63cba017d7aae80ecd7" - integrity sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag== - dependencies: - "@babel/types" "^7.16.7" +"@babel/helper-environment-visitor@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" + integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== -"@babel/helper-function-name@^7.17.9": - version "7.17.9" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz#136fcd54bc1da82fcb47565cf16fd8e444b1ff12" - integrity sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg== +"@babel/helper-function-name@^7.23.0": + version "7.23.0" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" + integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== dependencies: - "@babel/template" "^7.16.7" - "@babel/types" "^7.17.0" + "@babel/template" "^7.22.15" + "@babel/types" "^7.23.0" -"@babel/helper-hoist-variables@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz#86bcb19a77a509c7b77d0e22323ef588fa58c246" - integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg== +"@babel/helper-hoist-variables@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" + integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== dependencies: - "@babel/types" "^7.16.7" + "@babel/types" "^7.22.5" -"@babel/helper-module-imports@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437" - integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg== +"@babel/helper-module-imports@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0" + integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== dependencies: - "@babel/types" "^7.16.7" + "@babel/types" "^7.22.15" -"@babel/helper-module-transforms@^7.17.7": - version "7.17.7" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.17.7.tgz#3943c7f777139e7954a5355c815263741a9c1cbd" - integrity sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw== +"@babel/helper-module-transforms@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz#d7d12c3c5d30af5b3c0fcab2a6d5217773e2d0f1" + integrity sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ== dependencies: - "@babel/helper-environment-visitor" "^7.16.7" - "@babel/helper-module-imports" "^7.16.7" - "@babel/helper-simple-access" "^7.17.7" - "@babel/helper-split-export-declaration" "^7.16.7" - "@babel/helper-validator-identifier" "^7.16.7" - "@babel/template" "^7.16.7" - "@babel/traverse" "^7.17.3" - "@babel/types" "^7.17.0" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.8.0": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz#aa3a8ab4c3cceff8e65eb9e73d87dc4ff320b2f5" - integrity sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA== + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-simple-access" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/helper-validator-identifier" "^7.22.20" -"@babel/helper-plugin-utils@^7.22.5": +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== -"@babel/helper-simple-access@^7.17.7": - version "7.17.7" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz#aaa473de92b7987c6dfa7ce9a7d9674724823367" - integrity sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA== +"@babel/helper-simple-access@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" + integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== dependencies: - "@babel/types" "^7.17.0" + "@babel/types" "^7.22.5" -"@babel/helper-split-export-declaration@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b" - integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw== +"@babel/helper-split-export-declaration@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" + integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== dependencies: - "@babel/types" "^7.16.7" + "@babel/types" "^7.22.5" -"@babel/helper-validator-identifier@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" - integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== +"@babel/helper-string-parser@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83" + integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== -"@babel/helper-validator-option@^7.16.7": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23" - integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ== +"@babel/helper-validator-identifier@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" + integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== -"@babel/helpers@^7.17.9": - version "7.17.9" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.17.9.tgz#b2af120821bfbe44f9907b1826e168e819375a1a" - integrity sha512-cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q== +"@babel/helper-validator-option@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307" + integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw== + +"@babel/helpers@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.6.tgz#d03af2ee5fb34691eec0cda90f5ecbb4d4da145a" + integrity sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA== dependencies: - "@babel/template" "^7.16.7" - "@babel/traverse" "^7.17.9" - "@babel/types" "^7.17.0" + "@babel/template" "^7.22.15" + "@babel/traverse" "^7.23.6" + "@babel/types" "^7.23.6" -"@babel/highlight@^7.16.7": - version "7.17.9" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.17.9.tgz#61b2ee7f32ea0454612def4fccdae0de232b73e3" - integrity sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg== +"@babel/highlight@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.23.4.tgz#edaadf4d8232e1a961432db785091207ead0621b" + integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A== dependencies: - "@babel/helper-validator-identifier" "^7.16.7" - chalk "^2.0.0" + "@babel/helper-validator-identifier" "^7.22.20" + chalk "^2.4.2" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.7", "@babel/parser@^7.17.10": - version "7.17.10" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.17.10.tgz#873b16db82a8909e0fbd7f115772f4b739f6ce78" - integrity sha512-n2Q6i+fnJqzOaq2VkdXxy2TCPCWQZHiCo0XqmrCvDWcZQKRyZzYi4Z0yxlBuN0w+r2ZHmre+Q087DSrw3pbJDQ== +"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.22.15", "@babel/parser@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.6.tgz#ba1c9e512bda72a47e285ae42aff9d2a635a9e3b" + integrity sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ== "@babel/plugin-syntax-async-generators@^7.8.4": version "7.8.4" @@ -203,9 +201,9 @@ "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-jsx@^7.7.2": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918" - integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg== + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz#8f2e4f8a9b5f9aa16067e142c1ac9cd9f810f473" + integrity sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" @@ -259,43 +257,44 @@ "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-typescript@^7.7.2": - version "7.17.10" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.17.10.tgz#80031e6042cad6a95ed753f672ebd23c30933195" - integrity sha512-xJefea1DWXW09pW4Tm9bjwVlPDyYA2it3fWlmEjpYz6alPvTUjL0EOzNzI/FEOyI3r4/J7uVH5UqKgl1TQ5hqQ== - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/template@^7.16.7", "@babel/template@^7.3.3": - version "7.16.7" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.7.tgz#8d126c8701fde4d66b264b3eba3d96f07666d155" - integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w== - dependencies: - "@babel/code-frame" "^7.16.7" - "@babel/parser" "^7.16.7" - "@babel/types" "^7.16.7" - -"@babel/traverse@^7.17.10", "@babel/traverse@^7.17.3", "@babel/traverse@^7.17.9", "@babel/traverse@^7.7.2": - version "7.17.10" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.17.10.tgz#1ee1a5ac39f4eac844e6cf855b35520e5eb6f8b5" - integrity sha512-VmbrTHQteIdUUQNTb+zE12SHS/xQVIShmBPhlNP12hD5poF2pbITW1Z4172d03HegaQWhLffdkRJYtAzp0AGcw== - dependencies: - "@babel/code-frame" "^7.16.7" - "@babel/generator" "^7.17.10" - "@babel/helper-environment-visitor" "^7.16.7" - "@babel/helper-function-name" "^7.17.9" - "@babel/helper-hoist-variables" "^7.16.7" - "@babel/helper-split-export-declaration" "^7.16.7" - "@babel/parser" "^7.17.10" - "@babel/types" "^7.17.10" - debug "^4.1.0" + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz#24f460c85dbbc983cd2b9c4994178bcc01df958f" + integrity sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/template@^7.22.15", "@babel/template@^7.3.3": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38" + integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w== + dependencies: + "@babel/code-frame" "^7.22.13" + "@babel/parser" "^7.22.15" + "@babel/types" "^7.22.15" + +"@babel/traverse@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.6.tgz#b53526a2367a0dd6edc423637f3d2d0f2521abc5" + integrity sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ== + dependencies: + "@babel/code-frame" "^7.23.5" + "@babel/generator" "^7.23.6" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/parser" "^7.23.6" + "@babel/types" "^7.23.6" + debug "^4.3.1" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.16.7", "@babel/types@^7.17.0", "@babel/types@^7.17.10", "@babel/types@^7.3.0", "@babel/types@^7.3.3": - version "7.17.10" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.17.10.tgz#d35d7b4467e439fcf06d195f8100e0fea7fc82c4" - integrity sha512-9O26jG0mBYfGkUYCYZRnBwbVLd1UZOICEr2Em6InB6jVfsAv1GKgwXHmrSg+WFWDmeKTA6vyTZiN8tCSM5Oo3A== +"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.22.15", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.6", "@babel/types@^7.3.3": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.6.tgz#be33fdb151e1f5a56877d704492c240fc71c7ccd" + integrity sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg== dependencies: - "@babel/helper-validator-identifier" "^7.16.7" + "@babel/helper-string-parser" "^7.23.4" + "@babel/helper-validator-identifier" "^7.22.20" to-fast-properties "^2.0.0" "@bcoe/v8-coverage@^0.2.3": @@ -387,110 +386,110 @@ resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== -"@jest/console@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.5.0.tgz#593a6c5c0d3f75689835f1b3b4688c4f8544cb57" - integrity sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ== +"@jest/console@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.7.0.tgz#cd4822dbdb84529265c5a2bdb529a3c9cc950ffc" + integrity sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.3" "@types/node" "*" chalk "^4.0.0" - jest-message-util "^29.5.0" - jest-util "^29.5.0" + jest-message-util "^29.7.0" + jest-util "^29.7.0" slash "^3.0.0" -"@jest/core@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.5.0.tgz#76674b96904484e8214614d17261cc491e5f1f03" - integrity sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ== +"@jest/core@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.7.0.tgz#b6cccc239f30ff36609658c5a5e2291757ce448f" + integrity sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg== dependencies: - "@jest/console" "^29.5.0" - "@jest/reporters" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/console" "^29.7.0" + "@jest/reporters" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" "@types/node" "*" ansi-escapes "^4.2.1" chalk "^4.0.0" ci-info "^3.2.0" exit "^0.1.2" graceful-fs "^4.2.9" - jest-changed-files "^29.5.0" - jest-config "^29.5.0" - jest-haste-map "^29.5.0" - jest-message-util "^29.5.0" - jest-regex-util "^29.4.3" - jest-resolve "^29.5.0" - jest-resolve-dependencies "^29.5.0" - jest-runner "^29.5.0" - jest-runtime "^29.5.0" - jest-snapshot "^29.5.0" - jest-util "^29.5.0" - jest-validate "^29.5.0" - jest-watcher "^29.5.0" + jest-changed-files "^29.7.0" + jest-config "^29.7.0" + jest-haste-map "^29.7.0" + jest-message-util "^29.7.0" + jest-regex-util "^29.6.3" + jest-resolve "^29.7.0" + jest-resolve-dependencies "^29.7.0" + jest-runner "^29.7.0" + jest-runtime "^29.7.0" + jest-snapshot "^29.7.0" + jest-util "^29.7.0" + jest-validate "^29.7.0" + jest-watcher "^29.7.0" micromatch "^4.0.4" - pretty-format "^29.5.0" + pretty-format "^29.7.0" slash "^3.0.0" strip-ansi "^6.0.0" -"@jest/environment@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.5.0.tgz#9152d56317c1fdb1af389c46640ba74ef0bb4c65" - integrity sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ== +"@jest/environment@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.7.0.tgz#24d61f54ff1f786f3cd4073b4b94416383baf2a7" + integrity sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw== dependencies: - "@jest/fake-timers" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/fake-timers" "^29.7.0" + "@jest/types" "^29.6.3" "@types/node" "*" - jest-mock "^29.5.0" + jest-mock "^29.7.0" -"@jest/expect-utils@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.5.0.tgz#f74fad6b6e20f924582dc8ecbf2cb800fe43a036" - integrity sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg== +"@jest/expect-utils@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.7.0.tgz#023efe5d26a8a70f21677d0a1afc0f0a44e3a1c6" + integrity sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA== dependencies: - jest-get-type "^29.4.3" + jest-get-type "^29.6.3" -"@jest/expect@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.5.0.tgz#80952f5316b23c483fbca4363ce822af79c38fba" - integrity sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g== +"@jest/expect@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.7.0.tgz#76a3edb0cb753b70dfbfe23283510d3d45432bf2" + integrity sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ== dependencies: - expect "^29.5.0" - jest-snapshot "^29.5.0" + expect "^29.7.0" + jest-snapshot "^29.7.0" -"@jest/fake-timers@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.5.0.tgz#d4d09ec3286b3d90c60bdcd66ed28d35f1b4dc2c" - integrity sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg== +"@jest/fake-timers@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.7.0.tgz#fd91bf1fffb16d7d0d24a426ab1a47a49881a565" + integrity sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.3" "@sinonjs/fake-timers" "^10.0.2" "@types/node" "*" - jest-message-util "^29.5.0" - jest-mock "^29.5.0" - jest-util "^29.5.0" + jest-message-util "^29.7.0" + jest-mock "^29.7.0" + jest-util "^29.7.0" -"@jest/globals@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.5.0.tgz#6166c0bfc374c58268677539d0c181f9c1833298" - integrity sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ== +"@jest/globals@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.7.0.tgz#8d9290f9ec47ff772607fa864ca1d5a2efae1d4d" + integrity sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ== dependencies: - "@jest/environment" "^29.5.0" - "@jest/expect" "^29.5.0" - "@jest/types" "^29.5.0" - jest-mock "^29.5.0" + "@jest/environment" "^29.7.0" + "@jest/expect" "^29.7.0" + "@jest/types" "^29.6.3" + jest-mock "^29.7.0" -"@jest/reporters@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.5.0.tgz#985dfd91290cd78ddae4914ba7921bcbabe8ac9b" - integrity sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA== +"@jest/reporters@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.7.0.tgz#04b262ecb3b8faa83b0b3d321623972393e8f4c7" + integrity sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg== dependencies: "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" - "@jridgewell/trace-mapping" "^0.3.15" + "@jest/console" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" + "@jridgewell/trace-mapping" "^0.3.18" "@types/node" "*" chalk "^4.0.0" collect-v8-coverage "^1.0.0" @@ -498,76 +497,76 @@ glob "^7.1.3" graceful-fs "^4.2.9" istanbul-lib-coverage "^3.0.0" - istanbul-lib-instrument "^5.1.0" + istanbul-lib-instrument "^6.0.0" istanbul-lib-report "^3.0.0" istanbul-lib-source-maps "^4.0.0" istanbul-reports "^3.1.3" - jest-message-util "^29.5.0" - jest-util "^29.5.0" - jest-worker "^29.5.0" + jest-message-util "^29.7.0" + jest-util "^29.7.0" + jest-worker "^29.7.0" slash "^3.0.0" string-length "^4.0.1" strip-ansi "^6.0.0" v8-to-istanbul "^9.0.1" -"@jest/schemas@^29.4.3", "@jest/schemas@^29.6.3": +"@jest/schemas@^29.6.3": version "29.6.3" resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03" integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== dependencies: "@sinclair/typebox" "^0.27.8" -"@jest/source-map@^29.4.3": - version "29.4.3" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.4.3.tgz#ff8d05cbfff875d4a791ab679b4333df47951d20" - integrity sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w== +"@jest/source-map@^29.6.3": + version "29.6.3" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.6.3.tgz#d90ba772095cf37a34a5eb9413f1b562a08554c4" + integrity sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw== dependencies: - "@jridgewell/trace-mapping" "^0.3.15" + "@jridgewell/trace-mapping" "^0.3.18" callsites "^3.0.0" graceful-fs "^4.2.9" -"@jest/test-result@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.5.0.tgz#7c856a6ca84f45cc36926a4e9c6b57f1973f1408" - integrity sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ== +"@jest/test-result@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.7.0.tgz#8db9a80aa1a097bb2262572686734baed9b1657c" + integrity sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA== dependencies: - "@jest/console" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/console" "^29.7.0" + "@jest/types" "^29.6.3" "@types/istanbul-lib-coverage" "^2.0.0" collect-v8-coverage "^1.0.0" -"@jest/test-sequencer@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz#34d7d82d3081abd523dbddc038a3ddcb9f6d3cc4" - integrity sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ== +"@jest/test-sequencer@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz#6cef977ce1d39834a3aea887a1726628a6f072ce" + integrity sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw== dependencies: - "@jest/test-result" "^29.5.0" + "@jest/test-result" "^29.7.0" graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" + jest-haste-map "^29.7.0" slash "^3.0.0" -"@jest/transform@^29.5.0": - version "29.5.0" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.5.0.tgz#cf9c872d0965f0cbd32f1458aa44a2b1988b00f9" - integrity sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw== +"@jest/transform@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.7.0.tgz#df2dd9c346c7d7768b8a06639994640c642e284c" + integrity sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw== dependencies: "@babel/core" "^7.11.6" - "@jest/types" "^29.5.0" - "@jridgewell/trace-mapping" "^0.3.15" + "@jest/types" "^29.6.3" + "@jridgewell/trace-mapping" "^0.3.18" babel-plugin-istanbul "^6.1.1" chalk "^4.0.0" convert-source-map "^2.0.0" fast-json-stable-stringify "^2.1.0" graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" - jest-regex-util "^29.4.3" - jest-util "^29.5.0" + jest-haste-map "^29.7.0" + jest-regex-util "^29.6.3" + jest-util "^29.7.0" micromatch "^4.0.4" pirates "^4.0.4" slash "^3.0.0" write-file-atomic "^4.0.2" -"@jest/types@^29.5.0", "@jest/types@^29.6.3": +"@jest/types@^29.6.3": version "29.6.3" resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59" integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== @@ -579,54 +578,37 @@ "@types/yargs" "^17.0.8" chalk "^4.0.0" -"@jridgewell/gen-mapping@^0.1.0": - version "0.1.1" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996" - integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== +"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": + version "0.3.3" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" + integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== dependencies: - "@jridgewell/set-array" "^1.0.0" + "@jridgewell/set-array" "^1.0.1" "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" -"@jridgewell/resolve-uri@3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" - integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== - -"@jridgewell/resolve-uri@^3.0.3": - version "3.0.7" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz#30cd49820a962aff48c8fffc5cd760151fca61fe" - integrity sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA== - -"@jridgewell/set-array@^1.0.0": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.1.tgz#36a6acc93987adcf0ba50c66908bd0b70de8afea" - integrity sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ== - -"@jridgewell/sourcemap-codec@1.4.14": - version "1.4.14" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" - integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== +"@jridgewell/resolve-uri@^3.1.0": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" + integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== -"@jridgewell/sourcemap-codec@^1.4.10": - version "1.4.13" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz#b6461fb0c2964356c469e115f504c95ad97ab88c" - integrity sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w== +"@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== -"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.15": - version "0.3.18" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" - integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== - dependencies: - "@jridgewell/resolve-uri" "3.1.0" - "@jridgewell/sourcemap-codec" "1.4.14" +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== -"@jridgewell/trace-mapping@^0.3.9": - version "0.3.10" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.10.tgz#db436f0917d655393851bc258918c00226c9b183" - integrity sha512-Q0YbBd6OTsXm8Y21+YUSDXupHnodNC2M4O18jtd3iwJ3+vMZNdKGols0a9G6JOK0dcJ3IdUUHoh908ZI6qhk8Q== +"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.20" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz#72e45707cf240fa6b081d0366f8265b0cd10197f" + integrity sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q== dependencies: - "@jridgewell/resolve-uri" "^3.0.3" - "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" "@nodelib/fs.scandir@2.1.5": version "2.1.5" @@ -711,55 +693,50 @@ integrity sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA== "@types/babel__core@^7.1.14": - version "7.1.19" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.19.tgz#7b497495b7d1b4812bdb9d02804d0576f43ee460" - integrity sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw== + version "7.20.5" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.5.tgz#3df15f27ba85319caa07ba08d0721889bb39c017" + integrity sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA== dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" "@types/babel__generator" "*" "@types/babel__template" "*" "@types/babel__traverse" "*" "@types/babel__generator@*": - version "7.6.4" - resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7" - integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== + version "7.6.8" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.8.tgz#f836c61f48b1346e7d2b0d93c6dacc5b9535d3ab" + integrity sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw== dependencies: "@babel/types" "^7.0.0" "@types/babel__template@*": - version "7.4.1" - resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" - integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== + version "7.4.4" + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.4.tgz#5672513701c1b2199bc6dad636a9d7491586766f" + integrity sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A== dependencies: "@babel/parser" "^7.1.0" "@babel/types" "^7.0.0" "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - version "7.17.1" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.17.1.tgz#1a0e73e8c28c7e832656db372b779bfd2ef37314" - integrity sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA== + version "7.20.4" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.4.tgz#ec2c06fed6549df8bc0eb4615b683749a4a92e1b" + integrity sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA== dependencies: - "@babel/types" "^7.3.0" + "@babel/types" "^7.20.7" "@types/graceful-fs@^4.1.3": - version "4.1.5" - resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" - integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== + version "4.1.9" + resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.9.tgz#2a06bc0f68a20ab37b3e36aa238be6abdf49e8b4" + integrity sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ== dependencies: "@types/node" "*" -"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": version "2.0.6" resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz#7739c232a1fee9b4d3ce8985f314c0c6d33549d7" integrity sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w== -"@types/istanbul-lib-coverage@^2.0.1": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" - integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== - "@types/istanbul-lib-report@*": version "3.0.3" resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz#53047614ae72e19fc0401d872de3ae2b4ce350bf" @@ -775,9 +752,9 @@ "@types/istanbul-lib-report" "*" "@types/jest@^29.4.0": - version "29.5.2" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.2.tgz#86b4afc86e3a8f3005b297ed8a72494f89e6395b" - integrity sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg== + version "29.5.11" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.11.tgz#0c13aa0da7d0929f078ab080ae5d4ced80fa2f2c" + integrity sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ== dependencies: expect "^29.0.0" pretty-format "^29.0.0" @@ -796,9 +773,9 @@ form-data "^3.0.0" "@types/node@*": - version "20.10.4" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.10.4.tgz#b246fd84d55d5b1b71bf51f964bd514409347198" - integrity sha512-D08YG6rr8X90YB56tSIuBaddy/UXAA9RKJoFvrsnogAum/0pmjkgi4+2nx96A330FmioegBWmEYQ+syqCFaveg== + version "20.10.5" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.10.5.tgz#47ad460b514096b7ed63a1dae26fad0914ed3ab2" + integrity sha512-nNPsNE65wjMxEKI93yOP+NPGGBJz/PoN3kZsVLee0XMiJolxSekEVD8wRwBUBqkwc7UWop0edW50yrCQW4CyRw== dependencies: undici-types "~5.26.4" @@ -807,20 +784,15 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.18.tgz#8dfb97f0da23c2293e554c5a50d61ef134d7697f" integrity sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA== -"@types/prettier@^2.1.5": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.6.0.tgz#efcbd41937f9ae7434c714ab698604822d890759" - integrity sha512-G/AdOadiZhnJp0jXCaBQU449W2h716OW/EoXeYkCytxKL06X1WCXB4DZpp8TpZ8eyIJVS1cw4lrlkkSYU21cDw== - "@types/semver@^7.5.0": version "7.5.3" resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.3.tgz#9a726e116beb26c24f1ccd6850201e1246122e04" integrity sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw== "@types/stack-utils@^2.0.0": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" - integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== + version "2.0.3" + resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.3.tgz#6209321eb2c1712a7e7466422b8cb1fc0d9dd5d8" + integrity sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw== "@types/yargs-parser@*": version "21.0.3" @@ -1005,9 +977,9 @@ ansi-styles@^5.0.0: integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== anymatch@^3.0.3: - version "3.1.2" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" - integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== dependencies: normalize-path "^3.0.0" picomatch "^2.0.4" @@ -1039,15 +1011,15 @@ asynckit@^0.4.0: resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= -babel-jest@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.5.0.tgz#3fe3ddb109198e78b1c88f9ebdecd5e4fc2f50a5" - integrity sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q== +babel-jest@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.7.0.tgz#f4369919225b684c56085998ac63dbd05be020d5" + integrity sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg== dependencies: - "@jest/transform" "^29.5.0" + "@jest/transform" "^29.7.0" "@types/babel__core" "^7.1.14" babel-plugin-istanbul "^6.1.1" - babel-preset-jest "^29.5.0" + babel-preset-jest "^29.6.3" chalk "^4.0.0" graceful-fs "^4.2.9" slash "^3.0.0" @@ -1063,10 +1035,10 @@ babel-plugin-istanbul@^6.1.1: istanbul-lib-instrument "^5.0.4" test-exclude "^6.0.0" -babel-plugin-jest-hoist@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz#a97db437936f441ec196990c9738d4b88538618a" - integrity sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w== +babel-plugin-jest-hoist@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz#aadbe943464182a8922c3c927c3067ff40d24626" + integrity sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg== dependencies: "@babel/template" "^7.3.3" "@babel/types" "^7.3.3" @@ -1091,12 +1063,12 @@ babel-preset-current-node-syntax@^1.0.0: "@babel/plugin-syntax-optional-chaining" "^7.8.3" "@babel/plugin-syntax-top-level-await" "^7.8.3" -babel-preset-jest@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz#57bc8cc88097af7ff6a5ab59d1cd29d52a5916e2" - integrity sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg== +babel-preset-jest@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz#fa05fa510e7d493896d7b0dd2033601c840f171c" + integrity sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA== dependencies: - babel-plugin-jest-hoist "^29.5.0" + babel-plugin-jest-hoist "^29.6.3" babel-preset-current-node-syntax "^1.0.0" balanced-match@^1.0.0: @@ -1143,16 +1115,15 @@ braces@^3.0.2: dependencies: fill-range "^7.0.1" -browserslist@^4.20.2: - version "4.20.3" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.20.3.tgz#eb7572f49ec430e054f56d52ff0ebe9be915f8bf" - integrity sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg== +browserslist@^4.22.2: + version "4.22.2" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.2.tgz#704c4943072bd81ea18997f3bd2180e89c77874b" + integrity sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A== dependencies: - caniuse-lite "^1.0.30001332" - electron-to-chromium "^1.4.118" - escalade "^3.1.1" - node-releases "^2.0.3" - picocolors "^1.0.0" + caniuse-lite "^1.0.30001565" + electron-to-chromium "^1.4.601" + node-releases "^2.0.14" + update-browserslist-db "^1.0.13" bs-logger@0.x: version "0.2.6" @@ -1195,12 +1166,12 @@ camelcase@^6.2.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== -caniuse-lite@^1.0.30001332: - version "1.0.30001338" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001338.tgz#b5dd7a7941a51a16480bdf6ff82bded1628eec0d" - integrity sha512-1gLHWyfVoRDsHieO+CaeYe7jSo/MT7D7lhaXUiwwbuR5BwQxORs0f1tAwUSQr3YbxRXJvxHM/PA5FfPQRnsPeQ== +caniuse-lite@^1.0.30001565: + version "1.0.30001570" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001570.tgz#b4e5c1fa786f733ab78fc70f592df6b3f23244ca" + integrity sha512-+3e0ASu4sw1SWaoCtvPeyXp+5PsjigkSt8OXZbF9StH5pQWbxEjLAZE3n8Aup5udop1uRiKA7a4utUk/uoSpUw== -chalk@^2.0.0: +chalk@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== @@ -1233,24 +1204,15 @@ ci-info@^3.2.0: integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== cjs-module-lexer@^1.0.0: - version "1.2.2" - resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" - integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== + version "1.2.3" + resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz#6c370ab19f8a3394e318fe682686ec0ac684d107" + integrity sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ== clean-stack@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== -cliui@^7.0.2: - version "7.0.4" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" - integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.0" - wrap-ansi "^7.0.0" - cliui@^8.0.1: version "8.0.1" resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" @@ -1263,7 +1225,7 @@ cliui@^8.0.1: co@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" - integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= + integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== code-block-writer@^12.0.0: version "12.0.0" @@ -1271,9 +1233,9 @@ code-block-writer@^12.0.0: integrity sha512-q4dMFMlXtKR3XNBHyMHt/3pwYNA69EDk00lloMOaaUMKPUXBw6lpXtbu3MMVG6/uOihGnRDOlkyqsONEUj60+w== collect-v8-coverage@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" - integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== + version "1.0.2" + resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz#c0b29bcd33bcd0779a1344c2136051e6afd3d9e9" + integrity sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q== color-convert@^1.9.0: version "1.9.3" @@ -1292,7 +1254,7 @@ color-convert@^2.0.1: color-name@1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== color-name@~1.1.4: version "1.1.4" @@ -1311,18 +1273,24 @@ concat-map@0.0.1: resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== -convert-source-map@^1.6.0, convert-source-map@^1.7.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" - integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== - dependencies: - safe-buffer "~5.1.1" - convert-source-map@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== +create-jest@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/create-jest/-/create-jest-29.7.0.tgz#a355c5b3cb1e1af02ba177fe7afd7feee49a5320" + integrity sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q== + dependencies: + "@jest/types" "^29.6.3" + chalk "^4.0.0" + exit "^0.1.2" + graceful-fs "^4.2.9" + jest-config "^29.7.0" + jest-util "^29.7.0" + prompts "^2.0.1" + create-require@^1.1.0: version "1.1.1" resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" @@ -1342,24 +1310,17 @@ crypt@0.0.2: resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow== -debug@^4.1.0: - version "4.3.3" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" - integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== - dependencies: - ms "2.1.2" - -debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: +debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== dependencies: ms "2.1.2" -dedent@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" - integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= +dedent@^1.0.0: + version "1.5.1" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-1.5.1.tgz#4f3fc94c8b711e9bb2800d185cd6ad20f2a90aff" + integrity sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg== deep-is@^0.1.3: version "0.1.4" @@ -1367,9 +1328,9 @@ deep-is@^0.1.3: integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== deepmerge@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" - integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== + version "4.3.1" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" + integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== default-browser-id@^3.0.0: version "3.0.0" @@ -1409,10 +1370,10 @@ detect-newline@^3.0.0: resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== -diff-sequences@^29.4.3: - version "29.4.3" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.4.3.tgz#9314bc1fabe09267ffeca9cbafc457d8499a13f2" - integrity sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA== +diff-sequences@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.6.3.tgz#4deaf894d11407c51efc8418012f9e70b84ea921" + integrity sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== diff@^4.0.1: version "4.0.2" @@ -1441,10 +1402,10 @@ doctrine@^3.0.0: dependencies: esutils "^2.0.2" -electron-to-chromium@^1.4.118: - version "1.4.137" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.137.tgz#186180a45617283f1c012284458510cd99d6787f" - integrity sha512-0Rcpald12O11BUogJagX3HsCN3FE83DSqWjgXoHo5a72KUKMSfI39XBgJpgNNxS9fuGzytaFjE06kZkiVFy2qA== +electron-to-chromium@^1.4.601: + version "1.4.614" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.614.tgz#2fe789d61fa09cb875569f37c309d0c2701f91c0" + integrity sha512-X4ze/9Sc3QWs6h92yerwqv7aB/uU8vCjZcrMjA8N9R1pjMFRe44dLsck5FzLilOYvcXuDn93B+bpGYyufc70gQ== emittery@^0.13.1: version "0.13.1" @@ -1471,7 +1432,7 @@ escalade@^3.1.1: escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== escape-string-regexp@^2.0.0: version "2.0.0" @@ -1640,18 +1601,18 @@ execa@^7.1.1: exit@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" - integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= + integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== -expect@^29.0.0, expect@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/expect/-/expect-29.5.0.tgz#68c0509156cb2a0adb8865d413b137eeaae682f7" - integrity sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg== +expect@^29.0.0, expect@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/expect/-/expect-29.7.0.tgz#578874590dcb3214514084c08115d8aee61e11bc" + integrity sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw== dependencies: - "@jest/expect-utils" "^29.5.0" - jest-get-type "^29.4.3" - jest-matcher-utils "^29.5.0" - jest-message-util "^29.5.0" - jest-util "^29.5.0" + "@jest/expect-utils" "^29.7.0" + jest-get-type "^29.6.3" + jest-matcher-utils "^29.7.0" + jest-message-util "^29.7.0" + jest-util "^29.7.0" fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" @@ -1714,9 +1675,9 @@ fastq@^1.6.0: reusify "^1.0.4" fb-watchman@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" - integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== + version "2.0.2" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" + integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== dependencies: bser "2.1.1" @@ -1791,14 +1752,14 @@ fs.realpath@^1.0.0: integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== fsevents@^2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== gensync@^1.0.0-beta.2: version "1.0.0-beta.2" @@ -1839,7 +1800,7 @@ glob-parent@^6.0.2: dependencies: is-glob "^4.0.3" -glob@^7.1.3: +glob@^7.1.3, glob@^7.1.4: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -1851,18 +1812,6 @@ glob@^7.1.3: once "^1.3.0" path-is-absolute "^1.0.0" -glob@^7.1.4: - version "7.2.0" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" - integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - globals@^11.1.0: version "11.12.0" resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" @@ -1900,19 +1849,19 @@ graphemer@^1.4.0: has-flag@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== has-flag@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== -has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== +hasown@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.0.tgz#f4c513d454a57b7c7e1650778de226b11700546c" + integrity sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA== dependencies: - function-bind "^1.1.1" + function-bind "^1.1.2" html-escaper@^2.0.0: version "2.0.2" @@ -1983,19 +1932,19 @@ inherits@2, inherits@^2.0.3: is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== is-buffer@~1.1.6: version "1.1.6" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== -is-core-module@^2.8.1: - version "2.9.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.9.0.tgz#e1c34429cd51c6dd9e09e0799e396e27b19a9c69" - integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A== +is-core-module@^2.13.0: + version "2.13.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" + integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== dependencies: - has "^1.0.3" + hasown "^2.0.0" is-docker@^2.0.0: version "2.2.1" @@ -2069,14 +2018,14 @@ isexe@^2.0.0: integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" - integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== + version "3.2.2" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz#2d166c4b0644d43a39f04bf6c2edd1e585f31756" + integrity sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg== -istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz#31d18bdd127f825dd02ea7bfdfd906f8ab840e9f" - integrity sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A== +istanbul-lib-instrument@^5.0.4: + version "5.2.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" + integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== dependencies: "@babel/core" "^7.12.3" "@babel/parser" "^7.14.7" @@ -2084,13 +2033,24 @@ istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: istanbul-lib-coverage "^3.2.0" semver "^6.3.0" +istanbul-lib-instrument@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz#71e87707e8041428732518c6fb5211761753fbdf" + integrity sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA== + dependencies: + "@babel/core" "^7.12.3" + "@babel/parser" "^7.14.7" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-coverage "^3.2.0" + semver "^7.5.4" + istanbul-lib-report@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" - integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== + version "3.0.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz#908305bac9a5bd175ac6a74489eafd0fc2445a7d" + integrity sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw== dependencies: istanbul-lib-coverage "^3.0.0" - make-dir "^3.0.0" + make-dir "^4.0.0" supports-color "^7.1.0" istanbul-lib-source-maps@^4.0.0: @@ -2103,317 +2063,314 @@ istanbul-lib-source-maps@^4.0.0: source-map "^0.6.1" istanbul-reports@^3.1.3: - version "3.1.4" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.4.tgz#1b6f068ecbc6c331040aab5741991273e609e40c" - integrity sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw== + version "3.1.6" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.6.tgz#2544bcab4768154281a2f0870471902704ccaa1a" + integrity sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg== dependencies: html-escaper "^2.0.0" istanbul-lib-report "^3.0.0" -jest-changed-files@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.5.0.tgz#e88786dca8bf2aa899ec4af7644e16d9dcf9b23e" - integrity sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag== +jest-changed-files@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.7.0.tgz#1c06d07e77c78e1585d020424dedc10d6e17ac3a" + integrity sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w== dependencies: execa "^5.0.0" + jest-util "^29.7.0" p-limit "^3.1.0" -jest-circus@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.5.0.tgz#b5926989449e75bff0d59944bae083c9d7fb7317" - integrity sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA== +jest-circus@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.7.0.tgz#b6817a45fcc835d8b16d5962d0c026473ee3668a" + integrity sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw== dependencies: - "@jest/environment" "^29.5.0" - "@jest/expect" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/environment" "^29.7.0" + "@jest/expect" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/types" "^29.6.3" "@types/node" "*" chalk "^4.0.0" co "^4.6.0" - dedent "^0.7.0" + dedent "^1.0.0" is-generator-fn "^2.0.0" - jest-each "^29.5.0" - jest-matcher-utils "^29.5.0" - jest-message-util "^29.5.0" - jest-runtime "^29.5.0" - jest-snapshot "^29.5.0" - jest-util "^29.5.0" + jest-each "^29.7.0" + jest-matcher-utils "^29.7.0" + jest-message-util "^29.7.0" + jest-runtime "^29.7.0" + jest-snapshot "^29.7.0" + jest-util "^29.7.0" p-limit "^3.1.0" - pretty-format "^29.5.0" + pretty-format "^29.7.0" pure-rand "^6.0.0" slash "^3.0.0" stack-utils "^2.0.3" -jest-cli@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.5.0.tgz#b34c20a6d35968f3ee47a7437ff8e53e086b4a67" - integrity sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw== +jest-cli@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.7.0.tgz#5592c940798e0cae677eec169264f2d839a37995" + integrity sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg== dependencies: - "@jest/core" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/core" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/types" "^29.6.3" chalk "^4.0.0" + create-jest "^29.7.0" exit "^0.1.2" - graceful-fs "^4.2.9" import-local "^3.0.2" - jest-config "^29.5.0" - jest-util "^29.5.0" - jest-validate "^29.5.0" - prompts "^2.0.1" + jest-config "^29.7.0" + jest-util "^29.7.0" + jest-validate "^29.7.0" yargs "^17.3.1" -jest-config@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.5.0.tgz#3cc972faec8c8aaea9ae158c694541b79f3748da" - integrity sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA== +jest-config@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.7.0.tgz#bcbda8806dbcc01b1e316a46bb74085a84b0245f" + integrity sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ== dependencies: "@babel/core" "^7.11.6" - "@jest/test-sequencer" "^29.5.0" - "@jest/types" "^29.5.0" - babel-jest "^29.5.0" + "@jest/test-sequencer" "^29.7.0" + "@jest/types" "^29.6.3" + babel-jest "^29.7.0" chalk "^4.0.0" ci-info "^3.2.0" deepmerge "^4.2.2" glob "^7.1.3" graceful-fs "^4.2.9" - jest-circus "^29.5.0" - jest-environment-node "^29.5.0" - jest-get-type "^29.4.3" - jest-regex-util "^29.4.3" - jest-resolve "^29.5.0" - jest-runner "^29.5.0" - jest-util "^29.5.0" - jest-validate "^29.5.0" + jest-circus "^29.7.0" + jest-environment-node "^29.7.0" + jest-get-type "^29.6.3" + jest-regex-util "^29.6.3" + jest-resolve "^29.7.0" + jest-runner "^29.7.0" + jest-util "^29.7.0" + jest-validate "^29.7.0" micromatch "^4.0.4" parse-json "^5.2.0" - pretty-format "^29.5.0" + pretty-format "^29.7.0" slash "^3.0.0" strip-json-comments "^3.1.1" -jest-diff@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.5.0.tgz#e0d83a58eb5451dcc1fa61b1c3ee4e8f5a290d63" - integrity sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw== +jest-diff@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.7.0.tgz#017934a66ebb7ecf6f205e84699be10afd70458a" + integrity sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw== dependencies: chalk "^4.0.0" - diff-sequences "^29.4.3" - jest-get-type "^29.4.3" - pretty-format "^29.5.0" + diff-sequences "^29.6.3" + jest-get-type "^29.6.3" + pretty-format "^29.7.0" -jest-docblock@^29.4.3: - version "29.4.3" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-29.4.3.tgz#90505aa89514a1c7dceeac1123df79e414636ea8" - integrity sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg== +jest-docblock@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-29.7.0.tgz#8fddb6adc3cdc955c93e2a87f61cfd350d5d119a" + integrity sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g== dependencies: detect-newline "^3.0.0" -jest-each@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.5.0.tgz#fc6e7014f83eac68e22b7195598de8554c2e5c06" - integrity sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA== +jest-each@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.7.0.tgz#162a9b3f2328bdd991beaabffbb74745e56577d1" + integrity sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.3" chalk "^4.0.0" - jest-get-type "^29.4.3" - jest-util "^29.5.0" - pretty-format "^29.5.0" - -jest-environment-node@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.5.0.tgz#f17219d0f0cc0e68e0727c58b792c040e332c967" - integrity sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw== - dependencies: - "@jest/environment" "^29.5.0" - "@jest/fake-timers" "^29.5.0" - "@jest/types" "^29.5.0" + jest-get-type "^29.6.3" + jest-util "^29.7.0" + pretty-format "^29.7.0" + +jest-environment-node@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.7.0.tgz#0b93e111dda8ec120bc8300e6d1fb9576e164376" + integrity sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw== + dependencies: + "@jest/environment" "^29.7.0" + "@jest/fake-timers" "^29.7.0" + "@jest/types" "^29.6.3" "@types/node" "*" - jest-mock "^29.5.0" - jest-util "^29.5.0" + jest-mock "^29.7.0" + jest-util "^29.7.0" -jest-get-type@^29.4.3: - version "29.4.3" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.4.3.tgz#1ab7a5207c995161100b5187159ca82dd48b3dd5" - integrity sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg== +jest-get-type@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.6.3.tgz#36f499fdcea197c1045a127319c0481723908fd1" + integrity sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw== -jest-haste-map@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.5.0.tgz#69bd67dc9012d6e2723f20a945099e972b2e94de" - integrity sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA== +jest-haste-map@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.7.0.tgz#3c2396524482f5a0506376e6c858c3bbcc17b104" + integrity sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.3" "@types/graceful-fs" "^4.1.3" "@types/node" "*" anymatch "^3.0.3" fb-watchman "^2.0.0" graceful-fs "^4.2.9" - jest-regex-util "^29.4.3" - jest-util "^29.5.0" - jest-worker "^29.5.0" + jest-regex-util "^29.6.3" + jest-util "^29.7.0" + jest-worker "^29.7.0" micromatch "^4.0.4" walker "^1.0.8" optionalDependencies: fsevents "^2.3.2" -jest-leak-detector@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz#cf4bdea9615c72bac4a3a7ba7e7930f9c0610c8c" - integrity sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow== +jest-leak-detector@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz#5b7ec0dadfdfec0ca383dc9aa016d36b5ea4c728" + integrity sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw== dependencies: - jest-get-type "^29.4.3" - pretty-format "^29.5.0" + jest-get-type "^29.6.3" + pretty-format "^29.7.0" -jest-matcher-utils@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz#d957af7f8c0692c5453666705621ad4abc2c59c5" - integrity sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw== +jest-matcher-utils@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz#ae8fec79ff249fd592ce80e3ee474e83a6c44f12" + integrity sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g== dependencies: chalk "^4.0.0" - jest-diff "^29.5.0" - jest-get-type "^29.4.3" - pretty-format "^29.5.0" + jest-diff "^29.7.0" + jest-get-type "^29.6.3" + pretty-format "^29.7.0" -jest-message-util@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.5.0.tgz#1f776cac3aca332ab8dd2e3b41625435085c900e" - integrity sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA== +jest-message-util@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.7.0.tgz#8bc392e204e95dfe7564abbe72a404e28e51f7f3" + integrity sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w== dependencies: "@babel/code-frame" "^7.12.13" - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.3" "@types/stack-utils" "^2.0.0" chalk "^4.0.0" graceful-fs "^4.2.9" micromatch "^4.0.4" - pretty-format "^29.5.0" + pretty-format "^29.7.0" slash "^3.0.0" stack-utils "^2.0.3" -jest-mock@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.5.0.tgz#26e2172bcc71d8b0195081ff1f146ac7e1518aed" - integrity sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw== +jest-mock@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.7.0.tgz#4e836cf60e99c6fcfabe9f99d017f3fdd50a6347" + integrity sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.3" "@types/node" "*" - jest-util "^29.5.0" + jest-util "^29.7.0" jest-pnp-resolver@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" - integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== + version "1.2.3" + resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" + integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== -jest-regex-util@^29.4.3: - version "29.4.3" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.4.3.tgz#a42616141e0cae052cfa32c169945d00c0aa0bb8" - integrity sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg== +jest-regex-util@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.6.3.tgz#4a556d9c776af68e1c5f48194f4d0327d24e8a52" + integrity sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg== -jest-resolve-dependencies@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz#f0ea29955996f49788bf70996052aa98e7befee4" - integrity sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg== +jest-resolve-dependencies@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz#1b04f2c095f37fc776ff40803dc92921b1e88428" + integrity sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA== dependencies: - jest-regex-util "^29.4.3" - jest-snapshot "^29.5.0" + jest-regex-util "^29.6.3" + jest-snapshot "^29.7.0" -jest-resolve@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.5.0.tgz#b053cc95ad1d5f6327f0ac8aae9f98795475ecdc" - integrity sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w== +jest-resolve@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.7.0.tgz#64d6a8992dd26f635ab0c01e5eef4399c6bcbc30" + integrity sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA== dependencies: chalk "^4.0.0" graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" + jest-haste-map "^29.7.0" jest-pnp-resolver "^1.2.2" - jest-util "^29.5.0" - jest-validate "^29.5.0" + jest-util "^29.7.0" + jest-validate "^29.7.0" resolve "^1.20.0" resolve.exports "^2.0.0" slash "^3.0.0" -jest-runner@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.5.0.tgz#6a57c282eb0ef749778d444c1d758c6a7693b6f8" - integrity sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ== +jest-runner@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.7.0.tgz#809af072d408a53dcfd2e849a4c976d3132f718e" + integrity sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ== dependencies: - "@jest/console" "^29.5.0" - "@jest/environment" "^29.5.0" - "@jest/test-result" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/console" "^29.7.0" + "@jest/environment" "^29.7.0" + "@jest/test-result" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" "@types/node" "*" chalk "^4.0.0" emittery "^0.13.1" graceful-fs "^4.2.9" - jest-docblock "^29.4.3" - jest-environment-node "^29.5.0" - jest-haste-map "^29.5.0" - jest-leak-detector "^29.5.0" - jest-message-util "^29.5.0" - jest-resolve "^29.5.0" - jest-runtime "^29.5.0" - jest-util "^29.5.0" - jest-watcher "^29.5.0" - jest-worker "^29.5.0" + jest-docblock "^29.7.0" + jest-environment-node "^29.7.0" + jest-haste-map "^29.7.0" + jest-leak-detector "^29.7.0" + jest-message-util "^29.7.0" + jest-resolve "^29.7.0" + jest-runtime "^29.7.0" + jest-util "^29.7.0" + jest-watcher "^29.7.0" + jest-worker "^29.7.0" p-limit "^3.1.0" source-map-support "0.5.13" -jest-runtime@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.5.0.tgz#c83f943ee0c1da7eb91fa181b0811ebd59b03420" - integrity sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw== - dependencies: - "@jest/environment" "^29.5.0" - "@jest/fake-timers" "^29.5.0" - "@jest/globals" "^29.5.0" - "@jest/source-map" "^29.4.3" - "@jest/test-result" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" +jest-runtime@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.7.0.tgz#efecb3141cf7d3767a3a0cc8f7c9990587d3d817" + integrity sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ== + dependencies: + "@jest/environment" "^29.7.0" + "@jest/fake-timers" "^29.7.0" + "@jest/globals" "^29.7.0" + "@jest/source-map" "^29.6.3" + "@jest/test-result" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" "@types/node" "*" chalk "^4.0.0" cjs-module-lexer "^1.0.0" collect-v8-coverage "^1.0.0" glob "^7.1.3" graceful-fs "^4.2.9" - jest-haste-map "^29.5.0" - jest-message-util "^29.5.0" - jest-mock "^29.5.0" - jest-regex-util "^29.4.3" - jest-resolve "^29.5.0" - jest-snapshot "^29.5.0" - jest-util "^29.5.0" + jest-haste-map "^29.7.0" + jest-message-util "^29.7.0" + jest-mock "^29.7.0" + jest-regex-util "^29.6.3" + jest-resolve "^29.7.0" + jest-snapshot "^29.7.0" + jest-util "^29.7.0" slash "^3.0.0" strip-bom "^4.0.0" -jest-snapshot@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.5.0.tgz#c9c1ce0331e5b63cd444e2f95a55a73b84b1e8ce" - integrity sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g== +jest-snapshot@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.7.0.tgz#c2c574c3f51865da1bb329036778a69bf88a6be5" + integrity sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw== dependencies: "@babel/core" "^7.11.6" "@babel/generator" "^7.7.2" "@babel/plugin-syntax-jsx" "^7.7.2" "@babel/plugin-syntax-typescript" "^7.7.2" - "@babel/traverse" "^7.7.2" "@babel/types" "^7.3.3" - "@jest/expect-utils" "^29.5.0" - "@jest/transform" "^29.5.0" - "@jest/types" "^29.5.0" - "@types/babel__traverse" "^7.0.6" - "@types/prettier" "^2.1.5" + "@jest/expect-utils" "^29.7.0" + "@jest/transform" "^29.7.0" + "@jest/types" "^29.6.3" babel-preset-current-node-syntax "^1.0.0" chalk "^4.0.0" - expect "^29.5.0" + expect "^29.7.0" graceful-fs "^4.2.9" - jest-diff "^29.5.0" - jest-get-type "^29.4.3" - jest-matcher-utils "^29.5.0" - jest-message-util "^29.5.0" - jest-util "^29.5.0" + jest-diff "^29.7.0" + jest-get-type "^29.6.3" + jest-matcher-utils "^29.7.0" + jest-message-util "^29.7.0" + jest-util "^29.7.0" natural-compare "^1.4.0" - pretty-format "^29.5.0" - semver "^7.3.5" + pretty-format "^29.7.0" + semver "^7.5.3" -jest-util@^29.0.0: +jest-util@^29.0.0, jest-util@^29.7.0: version "29.7.0" resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc" integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA== @@ -2425,63 +2382,51 @@ jest-util@^29.0.0: graceful-fs "^4.2.9" picomatch "^2.2.3" -jest-util@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.5.0.tgz#24a4d3d92fc39ce90425311b23c27a6e0ef16b8f" - integrity sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ== - dependencies: - "@jest/types" "^29.5.0" - "@types/node" "*" - chalk "^4.0.0" - ci-info "^3.2.0" - graceful-fs "^4.2.9" - picomatch "^2.2.3" - -jest-validate@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.5.0.tgz#8e5a8f36178d40e47138dc00866a5f3bd9916ffc" - integrity sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ== +jest-validate@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.7.0.tgz#7bf705511c64da591d46b15fce41400d52147d9c" + integrity sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw== dependencies: - "@jest/types" "^29.5.0" + "@jest/types" "^29.6.3" camelcase "^6.2.0" chalk "^4.0.0" - jest-get-type "^29.4.3" + jest-get-type "^29.6.3" leven "^3.1.0" - pretty-format "^29.5.0" + pretty-format "^29.7.0" -jest-watcher@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.5.0.tgz#cf7f0f949828ba65ddbbb45c743a382a4d911363" - integrity sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA== +jest-watcher@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.7.0.tgz#7810d30d619c3a62093223ce6bb359ca1b28a2f2" + integrity sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g== dependencies: - "@jest/test-result" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/test-result" "^29.7.0" + "@jest/types" "^29.6.3" "@types/node" "*" ansi-escapes "^4.2.1" chalk "^4.0.0" emittery "^0.13.1" - jest-util "^29.5.0" + jest-util "^29.7.0" string-length "^4.0.1" -jest-worker@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.5.0.tgz#bdaefb06811bd3384d93f009755014d8acb4615d" - integrity sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA== +jest-worker@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.7.0.tgz#acad073acbbaeb7262bd5389e1bcf43e10058d4a" + integrity sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw== dependencies: "@types/node" "*" - jest-util "^29.5.0" + jest-util "^29.7.0" merge-stream "^2.0.0" supports-color "^8.0.0" jest@^29.4.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/jest/-/jest-29.5.0.tgz#f75157622f5ce7ad53028f2f8888ab53e1f1f24e" - integrity sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ== + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest/-/jest-29.7.0.tgz#994676fc24177f088f1c5e3737f5697204ff2613" + integrity sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw== dependencies: - "@jest/core" "^29.5.0" - "@jest/types" "^29.5.0" + "@jest/core" "^29.7.0" + "@jest/types" "^29.6.3" import-local "^3.0.2" - jest-cli "^29.5.0" + jest-cli "^29.7.0" js-tokens@^4.0.0: version "4.0.0" @@ -2523,11 +2468,6 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== -json5@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" - integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== - json5@^2.2.2, json5@^2.2.3: version "2.2.3" resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" @@ -2580,6 +2520,13 @@ lodash.merge@^4.6.2: resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + lru-cache@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" @@ -2587,12 +2534,12 @@ lru-cache@^6.0.0: dependencies: yallist "^4.0.0" -make-dir@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" - integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== +make-dir@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-4.0.0.tgz#c3c2307a771277cd9638305f915c29ae741b614e" + integrity sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw== dependencies: - semver "^6.0.0" + semver "^7.5.3" make-error@1.x, make-error@^1.1.1: version "1.3.6" @@ -2709,12 +2656,12 @@ node-fetch@^2.6.7: node-int64@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" - integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= + integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== -node-releases@^2.0.3: - version "2.0.4" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.4.tgz#f38252370c43854dc48aa431c766c6c398f40476" - integrity sha512-gbMzqQtTtDz/00jQzZ21PQzdI9PyLYqUSvD0p3naOhX4odFji0ZxYdnVwPTxmSwkmxhcFImpozceidSG+AgoPQ== +node-releases@^2.0.14: + version "2.0.14" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" + integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== normalize-path@^3.0.0: version "3.0.0" @@ -2888,9 +2835,9 @@ picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== pirates@^4.0.4: - version "4.0.5" - resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" - integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== + version "4.0.6" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" + integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== pkg-dir@^4.2.0: version "4.2.0" @@ -2916,12 +2863,12 @@ prettier@^3.0.0: resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.1.1.tgz#6ba9f23165d690b6cbdaa88cb0807278f7019848" integrity sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw== -pretty-format@^29.0.0, pretty-format@^29.5.0: - version "29.5.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.5.0.tgz#283134e74f70e2e3e7229336de0e4fce94ccde5a" - integrity sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw== +pretty-format@^29.0.0, pretty-format@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.7.0.tgz#ca42c758310f365bfa71a0bda0a807160b776812" + integrity sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ== dependencies: - "@jest/schemas" "^29.4.3" + "@jest/schemas" "^29.6.3" ansi-styles "^5.0.0" react-is "^18.0.0" @@ -2939,9 +2886,9 @@ punycode@^2.1.0: integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== pure-rand@^6.0.0: - version "6.0.2" - resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.0.2.tgz#a9c2ddcae9b68d736a8163036f088a2781c8b306" - integrity sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ== + version "6.0.4" + resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.0.4.tgz#50b737f6a925468679bff00ad20eade53f37d5c7" + integrity sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA== queue-microtask@^1.2.2: version "1.2.3" @@ -2949,9 +2896,9 @@ queue-microtask@^1.2.2: integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== react-is@^18.0.0: - version "18.1.0" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.1.0.tgz#61aaed3096d30eacf2a2127118b5b41387d32a67" - integrity sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg== + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" + integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== readable-stream@^3.4.0: version "3.6.2" @@ -2965,7 +2912,7 @@ readable-stream@^3.4.0: require-directory@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== resolve-cwd@^3.0.0: version "3.0.0" @@ -2990,11 +2937,11 @@ resolve.exports@^2.0.0: integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== resolve@^1.20.0: - version "1.22.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198" - integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw== + version "1.22.8" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== dependencies: - is-core-module "^2.8.1" + is-core-module "^2.13.0" path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" @@ -3024,27 +2971,15 @@ run-parallel@^1.1.9: dependencies: queue-microtask "^1.2.2" -safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== -semver@^6.0.0, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -semver@^7.3.5: - version "7.3.7" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" - integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== - dependencies: - lru-cache "^6.0.0" +semver@^6.3.0, semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== semver@^7.5.3, semver@^7.5.4: version "7.5.4" @@ -3096,12 +3031,12 @@ source-map@^0.6.0, source-map@^0.6.1: sprintf-js@~1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== stack-utils@^2.0.3: - version "2.0.5" - resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.5.tgz#d25265fca995154659dbbfba3b49254778d2fdd5" - integrity sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA== + version "2.0.6" + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" + integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== dependencies: escape-string-regexp "^2.0.0" @@ -3234,7 +3169,7 @@ tmpl@1.0.5: to-fast-properties@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== to-regex-range@^5.0.1: version "5.0.1" @@ -3366,6 +3301,14 @@ untildify@^4.0.0: resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b" integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw== +update-browserslist-db@^1.0.13: + version "1.0.13" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4" + integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + uri-js@^4.2.2: version "4.4.1" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" @@ -3384,13 +3327,13 @@ v8-compile-cache-lib@^3.0.0: integrity sha512-mpSYqfsFvASnSn5qMiwrr4VKfumbPyONLCOPmsR3A6pTY/r0+tSaVbgPWSAIuzbk3lCTa+FForeTiO+wBQGkjA== v8-to-istanbul@^9.0.1: - version "9.1.0" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz#1b83ed4e397f58c85c266a570fc2558b5feb9265" - integrity sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA== + version "9.2.0" + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz#2ed7644a245cddd83d4e087b9b33b3e62dfd10ad" + integrity sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA== dependencies: "@jridgewell/trace-mapping" "^0.3.12" "@types/istanbul-lib-coverage" "^2.0.1" - convert-source-map "^1.6.0" + convert-source-map "^2.0.0" walker@^1.0.8: version "1.0.8" @@ -3456,35 +3399,22 @@ y18n@^5.0.5: resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + yallist@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== -yargs-parser@^21.0.0: - version "21.0.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.1.tgz#0267f286c877a4f0f728fceb6f8a3e4cb95c6e35" - integrity sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg== - yargs-parser@^21.0.1, yargs-parser@^21.1.1: version "21.1.1" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== -yargs@^17.3.1: - version "17.4.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.4.1.tgz#ebe23284207bb75cee7c408c33e722bfb27b5284" - integrity sha512-WSZD9jgobAg3ZKuCQZSa3g9QOJeCCqLoLAykiWgmXnDo9EPnn4RPf5qVTtzgOx66o6/oqhcA5tHtJXpG8pMt3g== - dependencies: - cliui "^7.0.2" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.3" - y18n "^5.0.5" - yargs-parser "^21.0.0" - -yargs@^17.7.1: +yargs@^17.3.1, yargs@^17.7.1: version "17.7.2" resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== From 19fd06b1d6f06a6eacaa989c1b0169c80de3957f Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 18 Dec 2023 12:06:44 -0500 Subject: [PATCH 222/725] chore(internal): bump deps (#583) --- ecosystem-tests/node-ts4.5-jest27/package-lock.json | 8 ++++---- ecosystem-tests/node-ts4.5-jest27/package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ecosystem-tests/node-ts4.5-jest27/package-lock.json b/ecosystem-tests/node-ts4.5-jest27/package-lock.json index ecdc96a54..682b0f7a6 100644 --- a/ecosystem-tests/node-ts4.5-jest27/package-lock.json +++ b/ecosystem-tests/node-ts4.5-jest27/package-lock.json @@ -19,7 +19,7 @@ "@types/ws": "^8.5.4", "fastest-levenshtein": "^1.0.16", "jest": "27.5.1", - "ts-jest": "27.1.4", + "ts-jest": "27.1.5", "typescript": "4.5.4" } }, @@ -3978,9 +3978,9 @@ } }, "node_modules/ts-jest": { - "version": "27.1.4", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-27.1.4.tgz", - "integrity": "sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==", + "version": "27.1.5", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-27.1.5.tgz", + "integrity": "sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==", "dev": true, "dependencies": { "bs-logger": "0.x", diff --git a/ecosystem-tests/node-ts4.5-jest27/package.json b/ecosystem-tests/node-ts4.5-jest27/package.json index a38f8a5b7..1740acae8 100644 --- a/ecosystem-tests/node-ts4.5-jest27/package.json +++ b/ecosystem-tests/node-ts4.5-jest27/package.json @@ -19,7 +19,7 @@ "@types/ws": "^8.5.4", "fastest-levenshtein": "^1.0.16", "jest": "27.5.1", - "ts-jest": "27.1.4", + "ts-jest": "27.1.5", "typescript": "4.5.4" } } From 88253e613b9c166fcbbc97ce7081275ea3a2803a Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 18 Dec 2023 22:32:38 -0500 Subject: [PATCH 223/725] docs: upgrade models in examples to latest version (#585) --- ecosystem-tests/vercel-edge/src/pages/api/response.ts | 2 +- ecosystem-tests/vercel-edge/src/pages/api/streaming.ts | 2 +- examples/raw-response.ts | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ecosystem-tests/vercel-edge/src/pages/api/response.ts b/ecosystem-tests/vercel-edge/src/pages/api/response.ts index 4599bba78..9c2d2d26c 100644 --- a/ecosystem-tests/vercel-edge/src/pages/api/response.ts +++ b/ecosystem-tests/vercel-edge/src/pages/api/response.ts @@ -16,7 +16,7 @@ export default async (request: NextRequest) => { const result = await openai.completions.create({ prompt: 'Say this is a test', - model: 'text-davinci-003', + model: 'gpt-3.5-turbo-instruct', }); return NextResponse.json(result); }; diff --git a/ecosystem-tests/vercel-edge/src/pages/api/streaming.ts b/ecosystem-tests/vercel-edge/src/pages/api/streaming.ts index 42259c479..33d3f15c0 100644 --- a/ecosystem-tests/vercel-edge/src/pages/api/streaming.ts +++ b/ecosystem-tests/vercel-edge/src/pages/api/streaming.ts @@ -18,7 +18,7 @@ export default async (request: NextRequest) => { const stream = await openai.completions.create({ prompt: 'Say this is a test', - model: 'text-davinci-003', + model: 'gpt-3.5-turbo-instruct', stream: true, }); diff --git a/examples/raw-response.ts b/examples/raw-response.ts index 6b1df31e8..eb991ae78 100644 --- a/examples/raw-response.ts +++ b/examples/raw-response.ts @@ -11,7 +11,7 @@ async function main() { const response = await client.completions .create({ prompt: 'Say this is a test', - model: 'text-davinci-003', + model: 'gpt-3.5-turbo-instruct', }) .asResponse(); console.log(`response headers: `, Object.fromEntries(response.headers.entries())); @@ -23,7 +23,7 @@ async function main() { const { data: completion, response } = await client.completions .create({ prompt: 'Say this is a test', - model: 'text-davinci-003', + model: 'gpt-3.5-turbo-instruct', }) .withResponse(); console.log(`response headers: `, Object.fromEntries(response.headers.entries())); From dcf732bf1cd9c9be6d818d45d3658a43bcf795c5 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 19 Dec 2023 18:16:56 -0500 Subject: [PATCH 224/725] feat(api): add additional instructions for runs (#586) --- src/resources/beta/threads/runs/runs.ts | 12 ++++++++++-- tests/api-resources/beta/threads/runs/runs.test.ts | 1 + 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index f59fdff3f..8709ebabe 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -343,8 +343,16 @@ export interface RunCreateParams { assistant_id: string; /** - * Override the default system message of the assistant. This is useful for - * modifying the behavior on a per-run basis. + * Appends additional instructions at the end of the instructions for the run. This + * is useful for modifying the behavior on a per-run basis without overriding other + * instructions. + */ + additional_instructions?: string | null; + + /** + * Overrides the + * [instructions](https://platform.openai.com/docs/api-reference/assistants/createAssistant) + * of the assistant. This is useful for modifying the behavior on a per-run basis. */ instructions?: string | null; diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts index 0705ac528..5a720afce 100644 --- a/tests/api-resources/beta/threads/runs/runs.test.ts +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -23,6 +23,7 @@ describe('resource runs', () => { test('create: required and optional params', async () => { const response = await openai.beta.threads.runs.create('string', { assistant_id: 'string', + additional_instructions: 'string', instructions: 'string', metadata: {}, model: 'string', From e383a0f034dfa2676215b91287b31ff2f56aa833 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 19 Dec 2023 18:17:20 -0500 Subject: [PATCH 225/725] release: 4.24.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 22 ++++++++++++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 27 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6d801fc26..8e73ce77a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.23.0" + ".": "4.24.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 55b732140..86f8d4d7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## 4.24.0 (2023-12-19) + +Full Changelog: [v4.23.0...v4.24.0](https://github.com/openai/openai-node/compare/v4.23.0...v4.24.0) + +### Features + +* **api:** add additional instructions for runs ([#586](https://github.com/openai/openai-node/issues/586)) ([401d93e](https://github.com/openai/openai-node/commit/401d93ea39fe0e90088799858299322035c0a7e8)) + + +### Chores + +* **deps:** update dependency start-server-and-test to v2.0.3 ([#580](https://github.com/openai/openai-node/issues/580)) ([8e1aca1](https://github.com/openai/openai-node/commit/8e1aca1f8be6e583483919ed9ef9b04fab076066)) +* **deps:** update dependency ts-jest to v29.1.1 ([#578](https://github.com/openai/openai-node/issues/578)) ([a6edb7b](https://github.com/openai/openai-node/commit/a6edb7bc3cfc447d0c55ae23cc1c2219105d3666)) +* **deps:** update jest ([#582](https://github.com/openai/openai-node/issues/582)) ([e49e471](https://github.com/openai/openai-node/commit/e49e471ec7a136f2cbaf82551ccaaea366c87a91)) +* **internal:** bump deps ([#583](https://github.com/openai/openai-node/issues/583)) ([2e07b4c](https://github.com/openai/openai-node/commit/2e07b4c66ab1fdbb353fdd00994e293f93e981db)) +* **internal:** update deps ([#581](https://github.com/openai/openai-node/issues/581)) ([7b690dc](https://github.com/openai/openai-node/commit/7b690dca67ee8c3b0a89caf7f786ede5dc612a76)) + + +### Documentation + +* upgrade models in examples to latest version ([#585](https://github.com/openai/openai-node/issues/585)) ([60101a4](https://github.com/openai/openai-node/commit/60101a4117b1a8223d09fb9fe21d89af32431939)) + ## 4.23.0 (2023-12-17) Full Changelog: [v4.22.1...v4.23.0](https://github.com/openai/openai-node/compare/v4.22.1...v4.23.0) diff --git a/README.md b/README.md index ad15ca661..cbc41f199 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.23.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.24.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index a0c261716..6a0b059b9 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.23.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.24.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 8400df396..3b3d680f8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.23.0", + "version": "4.24.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index a7fe7a1ba..c46048091 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.23.0'; // x-release-please-version +export const VERSION = '4.24.0'; // x-release-please-version From 44ffb66cc9f1f3d18ccf5a68c13effbe5079181e Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 20 Dec 2023 10:52:42 -0500 Subject: [PATCH 226/725] refactor: write jest config in typescript (#588) --- jest.config.js => jest.config.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) rename jest.config.js => jest.config.ts (69%) diff --git a/jest.config.js b/jest.config.ts similarity index 69% rename from jest.config.js rename to jest.config.ts index 5fc957640..f746f4bf9 100644 --- a/jest.config.js +++ b/jest.config.ts @@ -1,6 +1,7 @@ -/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ -module.exports = { - preset: 'ts-jest', +import type { JestConfigWithTsJest } from 'ts-jest'; + +const config: JestConfigWithTsJest = { + preset: 'ts-jest/presets/default-esm', testEnvironment: 'node', moduleNameMapper: { '^openai$': '/src/index.ts', @@ -14,3 +15,5 @@ module.exports = { '/deno_tests/', ], }; + +export default config; From 824089dcf6d51b35d0918c37542a1a01bb2def1b Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 20 Dec 2023 14:57:32 -0500 Subject: [PATCH 227/725] fix(pagination): correct type annotation object field (#590) --- src/pagination.ts | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/src/pagination.ts b/src/pagination.ts index af6cd964e..5d890a140 100644 --- a/src/pagination.ts +++ b/src/pagination.ts @@ -5,7 +5,7 @@ import { AbstractPage, Response, APIClient, FinalRequestOptions, PageInfo } from export interface PageResponse { data: Array; - object: 'list'; + object: string; } /** @@ -14,17 +14,17 @@ export interface PageResponse { export class Page extends AbstractPage implements PageResponse { data: Array; - object: 'list'; + object: string; constructor(client: APIClient, response: Response, body: PageResponse, options: FinalRequestOptions) { super(client, response, body, options); - this.data = body.data; + this.data = body.data || []; this.object = body.object; } getPaginatedItems(): Item[] { - return this.data; + return this.data ?? []; } // @deprecated Please use `nextPageInfo()` instead @@ -46,14 +46,8 @@ export interface CursorPageResponse { } export interface CursorPageParams { - /** - * Identifier for the last job from the previous pagination request. - */ after?: string; - /** - * Number of fine-tuning jobs to retrieve. - */ limit?: number; } @@ -71,11 +65,11 @@ export class CursorPage ) { super(client, response, body, options); - this.data = body.data; + this.data = body.data || []; } getPaginatedItems(): Item[] { - return this.data; + return this.data ?? []; } // @deprecated Please use `nextPageInfo()` instead @@ -89,12 +83,16 @@ export class CursorPage } nextPageInfo(): PageInfo | null { - if (!this.data?.length) { + const data = this.getPaginatedItems(); + if (!data.length) { + return null; + } + + const id = data[data.length - 1]?.id; + if (!id) { return null; } - const next = this.data[this.data.length - 1]?.id; - if (!next) return null; - return { params: { after: next } }; + return { params: { after: id } }; } } From af111778533354762326ecc8c89aba32c400524d Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 20 Dec 2023 16:03:31 -0500 Subject: [PATCH 228/725] docs: reformat README.md (#592) --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cbc41f199..2b27ebf32 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,7 @@ import OpenAI from 'https://deno.land/x/openai@v4.24.0/mod.ts'; The full API of this library can be found in [api.md file](api.md) along with many [code examples](https://github.com/openai/openai-node/tree/master/examples). The code below shows how to get started using the chat completions API. + ```js import OpenAI from 'openai'; @@ -77,6 +78,7 @@ or call `stream.controller.abort()`. This library includes TypeScript definitions for all request params and response fields. You may import and use them like so: + ```ts import OpenAI from 'openai'; @@ -267,6 +269,7 @@ When the library is unable to connect to the API, or if the API returns a non-success status code (i.e., 4xx or 5xx response), a subclass of `APIError` will be thrown: + ```ts async function main() { const fineTune = await openai.fineTunes @@ -388,6 +391,7 @@ The "raw" `Response` returned by `fetch()` can be accessed through the `.asRespo You can also use the `.withResponse()` method to get the raw `Response` along with the parsed data. + ```ts const openai = new OpenAI(); @@ -412,12 +416,11 @@ If you would prefer to use a global, web-standards-compliant `fetch` function ev (for example, if you are running Node with `--experimental-fetch` or using NextJS which polyfills with `undici`), add the following import before your first import `from "OpenAI"`: - ```ts // Tell TypeScript and the package to use the global web fetch instead of node-fetch. // Note, despite the name, this does not add any polyfills, but expects them to be provided if needed. -import "openai/shims/web"; -import OpenAI from "openai"; +import 'openai/shims/web'; +import OpenAI from 'openai'; ``` To do the inverse, add `import "openai/shims/node"` (which does import polyfills). From 027da52b1fcfb984946bb8b25538880cb487ca5f Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 20 Dec 2023 20:21:35 -0500 Subject: [PATCH 229/725] docs(messages): improvements to helpers reference + typos (#595) --- helpers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers.md b/helpers.md index 859d45ab0..8b53e284e 100644 --- a/helpers.md +++ b/helpers.md @@ -11,7 +11,7 @@ iterator, and exposes helper methods to accumulate chunks into a convenient shap about the conversation. Alternatively, you can use `openai.chat.completions.create({ stream: true, … })` which returns an async -iteratable of the chunks in the stream and uses less memory (most notably, it does not accumulate a final chat +iterable of the chunks in the stream and uses less memory (most notably, it does not accumulate a final chat completion object for you). If you need to cancel a stream, you can `break` from a `for await` loop or call `stream.abort()`. From b595cd953a704dba2aef4c6c3fa431f83f18ccf9 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 22 Dec 2023 00:06:19 -0500 Subject: [PATCH 230/725] release: 4.24.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 19 +++++++++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 24 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8e73ce77a..f33e27aba 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.24.0" + ".": "4.24.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 86f8d4d7e..73926f94c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## 4.24.1 (2023-12-22) + +Full Changelog: [v4.24.0...v4.24.1](https://github.com/openai/openai-node/compare/v4.24.0...v4.24.1) + +### Bug Fixes + +* **pagination:** correct type annotation object field ([#590](https://github.com/openai/openai-node/issues/590)) ([4066eda](https://github.com/openai/openai-node/commit/4066edad4b5305e82e610f44f4720843f2b69d39)) + + +### Documentation + +* **messages:** improvements to helpers reference + typos ([#595](https://github.com/openai/openai-node/issues/595)) ([96a59b9](https://github.com/openai/openai-node/commit/96a59b91c424db67b8a5bdb7cab5da68c57282d4)) +* reformat README.md ([#592](https://github.com/openai/openai-node/issues/592)) ([8ffc7f8](https://github.com/openai/openai-node/commit/8ffc7f876cc8f4b7afaf68a37f94f826ef22a6b8)) + + +### Refactors + +* write jest config in typescript ([#588](https://github.com/openai/openai-node/issues/588)) ([eb6ceeb](https://github.com/openai/openai-node/commit/eb6ceebf90ba45ec5b803f32b9b080829f6a973a)) + ## 4.24.0 (2023-12-19) Full Changelog: [v4.23.0...v4.24.0](https://github.com/openai/openai-node/compare/v4.23.0...v4.24.0) diff --git a/README.md b/README.md index 2b27ebf32..bd32cd053 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.24.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.24.1/mod.ts'; ``` diff --git a/build-deno b/build-deno index 6a0b059b9..37d62c7da 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.24.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.24.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 3b3d680f8..7a88ec1cf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.24.0", + "version": "4.24.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index c46048091..0cd107b3c 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.24.0'; // x-release-please-version +export const VERSION = '4.24.1'; // x-release-please-version From 8165725d5e1f06eb37278e1d4eb9d91bb5009142 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sat, 23 Dec 2023 18:40:22 -0500 Subject: [PATCH 231/725] docs: improve audio example to show how to stream to a file (#598) --- examples/audio.ts | 44 +++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 41 insertions(+), 3 deletions(-) diff --git a/examples/audio.ts b/examples/audio.ts index e4ab930fd..a37c93b20 100755 --- a/examples/audio.ts +++ b/examples/audio.ts @@ -1,7 +1,8 @@ #!/usr/bin/env -S npm run tsn -T +import 'openai/shims/node'; import OpenAI, { toFile } from 'openai'; -import fs from 'fs/promises'; +import fs from 'fs'; import path from 'path'; // gets API Key from environment variable OPENAI_API_KEY @@ -10,6 +11,26 @@ const openai = new OpenAI(); const speechFile = path.resolve(__dirname, './speech.mp3'); async function main() { + await streamingDemoNode(); + await blockingDemo(); +} +main(); + +async function streamingDemoNode() { + const response = await openai.audio.speech.create({ + model: 'tts-1', + voice: 'alloy', + input: 'the quick brown chicken jumped over the lazy dogs', + }); + + const stream = response.body; + + console.log(`Streaming response to ${speechFile}`); + await streamToFile(stream, speechFile); + console.log('Finished streaming'); +} + +async function blockingDemo() { const mp3 = await openai.audio.speech.create({ model: 'tts-1', voice: 'alloy', @@ -17,7 +38,7 @@ async function main() { }); const buffer = Buffer.from(await mp3.arrayBuffer()); - await fs.writeFile(speechFile, buffer); + await fs.promises.writeFile(speechFile, buffer); const transcription = await openai.audio.transcriptions.create({ file: await toFile(buffer, 'speech.mp3'), @@ -32,4 +53,21 @@ async function main() { console.log(translation.text); } -main(); +/** + * Note, this is Node-specific. + * + * Other runtimes would need a different `fs`, + * and would also use a web ReadableStream, + * which is different from a Node ReadableStream. + */ +async function streamToFile(stream: NodeJS.ReadableStream, path: fs.PathLike) { + return new Promise((resolve, reject) => { + const writeStream = fs.createWriteStream(path).on('error', reject).on('finish', resolve); + + // If you don't see a `stream.pipe` method and you're using Node you might need to add `import 'openai/shims/node'` at the top of your entrypoint file. + stream.pipe(writeStream).on('error', (error) => { + writeStream.close(); + reject(error); + }); + }); +} From a952e50385cac489e8c5b44897617a30f59e0727 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 25 Dec 2023 02:09:57 -0500 Subject: [PATCH 232/725] docs: fix docstring typos (#600) --- src/resources/beta/assistants/assistants.ts | 2 +- src/resources/moderations.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/resources/beta/assistants/assistants.ts b/src/resources/beta/assistants/assistants.ts index 3b13a84bb..08abb2c91 100644 --- a/src/resources/beta/assistants/assistants.ts +++ b/src/resources/beta/assistants/assistants.ts @@ -268,7 +268,7 @@ export interface AssistantUpdateParams { * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs * attached to this assistant. There can be a maximum of 20 files attached to the * assistant. Files are ordered by their creation date in ascending order. If a - * file was previosuly attached to the list but does not show up in the list, it + * file was previously attached to the list but does not show up in the list, it * will be deleted from the assistant. */ file_ids?: Array; diff --git a/src/resources/moderations.ts b/src/resources/moderations.ts index 5beda53ac..8bde6ecca 100644 --- a/src/resources/moderations.ts +++ b/src/resources/moderations.ts @@ -55,7 +55,7 @@ export namespace Moderation { * Content that expresses, incites, or promotes hate based on race, gender, * ethnicity, religion, nationality, sexual orientation, disability status, or * caste. Hateful content aimed at non-protected groups (e.g., chess players) is - * harrassment. + * harassment. */ hate: boolean; From 76ef16c3fa0ca88e1b3aefe665bc8c0ca1b403c0 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 2 Jan 2024 05:35:28 -0500 Subject: [PATCH 233/725] chore(internal): bump license (#605) --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 7b1b36a64..621a6becf 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2023 OpenAI + Copyright 2024 OpenAI Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. From 842efac485a5fd1bb87fc2032dfacd8f61136bca Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 4 Jan 2024 16:05:47 -0500 Subject: [PATCH 234/725] fix(headers): always send lowercase headers and strip undefined (BREAKING in rare cases) (#608) BREAKING: If you previously sent `My-Header: foo` and `my-header: bar`, both would get sent. Now, only one will. If you previously sent `My-Header: undefined`, it would send as such. Now, the header will not be sent. --- src/core.ts | 63 +++++++++++++++++++++++++++++++++++---------- tests/index.test.ts | 29 ++++++++++++++++----- 2 files changed, 72 insertions(+), 20 deletions(-) diff --git a/src/core.ts b/src/core.ts index 70b8e679c..eafddc517 100644 --- a/src/core.ts +++ b/src/core.ts @@ -301,18 +301,7 @@ export abstract class APIClient { headers[this.idempotencyHeader] = options.idempotencyKey; } - const reqHeaders: Record = { - ...(contentLength && { 'Content-Length': contentLength }), - ...this.defaultHeaders(options), - ...headers, - }; - // let builtin fetch set the Content-Type for multipart bodies - if (isMultipartBody(options.body) && shimsKind !== 'node') { - delete reqHeaders['Content-Type']; - } - - // Strip any headers being explicitly omitted with null - Object.keys(reqHeaders).forEach((key) => reqHeaders[key] === null && delete reqHeaders[key]); + const reqHeaders = this.buildHeaders({ options, headers, contentLength }); const req: RequestInit = { method, @@ -324,9 +313,35 @@ export abstract class APIClient { signal: options.signal ?? null, }; + return { req, url, timeout }; + } + + private buildHeaders({ + options, + headers, + contentLength, + }: { + options: FinalRequestOptions; + headers: Record; + contentLength: string | null | undefined; + }): Record { + const reqHeaders: Record = {}; + if (contentLength) { + reqHeaders['content-length'] = contentLength; + } + + const defaultHeaders = this.defaultHeaders(options); + applyHeadersMut(reqHeaders, defaultHeaders); + applyHeadersMut(reqHeaders, headers); + + // let builtin fetch set the Content-Type for multipart bodies + if (isMultipartBody(options.body) && shimsKind !== 'node') { + delete reqHeaders['content-type']; + } + this.validateHeaders(reqHeaders, headers); - return { req, url, timeout }; + return reqHeaders; } /** @@ -1013,6 +1028,28 @@ export function hasOwn(obj: Object, key: string): boolean { return Object.prototype.hasOwnProperty.call(obj, key); } +/** + * Copies headers from "newHeaders" onto "targetHeaders", + * using lower-case for all properties, + * ignoring any keys with undefined values, + * and deleting any keys with null values. + */ +function applyHeadersMut(targetHeaders: Headers, newHeaders: Headers): void { + for (const k in newHeaders) { + if (!hasOwn(newHeaders, k)) continue; + const lowerKey = k.toLowerCase(); + if (!lowerKey) continue; + + const val = newHeaders[k]; + + if (val === null) { + delete targetHeaders[lowerKey]; + } else if (val !== undefined) { + targetHeaders[lowerKey] = val; + } + } +} + export function debug(action: string, ...args: any[]) { if (typeof process !== 'undefined' && process.env['DEBUG'] === 'true') { console.log(`OpenAI:DEBUG:${action}`, ...args); diff --git a/tests/index.test.ts b/tests/index.test.ts index 538f7dfc9..e056d3b85 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -28,25 +28,25 @@ describe('instantiate client', () => { test('they are used in the request', () => { const { req } = client.buildRequest({ path: '/foo', method: 'post' }); - expect((req.headers as Headers)['X-My-Default-Header']).toEqual('2'); + expect((req.headers as Headers)['x-my-default-header']).toEqual('2'); }); - test('can be overriden with `undefined`', () => { + test('can ignore `undefined` and leave the default', () => { const { req } = client.buildRequest({ path: '/foo', method: 'post', headers: { 'X-My-Default-Header': undefined }, }); - expect((req.headers as Headers)['X-My-Default-Header']).toBeUndefined(); + expect((req.headers as Headers)['x-my-default-header']).toEqual('2'); }); - test('can be overriden with `null`', () => { + test('can be removed with `null`', () => { const { req } = client.buildRequest({ path: '/foo', method: 'post', headers: { 'X-My-Default-Header': null }, }); - expect((req.headers as Headers)['X-My-Default-Header']).toBeUndefined(); + expect(req.headers as Headers).not.toHaveProperty('x-my-default-header'); }); }); @@ -179,12 +179,27 @@ describe('request building', () => { describe('Content-Length', () => { test('handles multi-byte characters', () => { const { req } = client.buildRequest({ path: '/foo', method: 'post', body: { value: '—' } }); - expect((req.headers as Record)['Content-Length']).toEqual('20'); + expect((req.headers as Record)['content-length']).toEqual('20'); }); test('handles standard characters', () => { const { req } = client.buildRequest({ path: '/foo', method: 'post', body: { value: 'hello' } }); - expect((req.headers as Record)['Content-Length']).toEqual('22'); + expect((req.headers as Record)['content-length']).toEqual('22'); + }); + }); + + describe('custom headers', () => { + test('handles undefined', () => { + const { req } = client.buildRequest({ + path: '/foo', + method: 'post', + body: { value: 'hello' }, + headers: { 'X-Foo': 'baz', 'x-foo': 'bar', 'x-Foo': undefined, 'x-baz': 'bam', 'X-Baz': null }, + }); + expect((req.headers as Record)['x-foo']).toEqual('bar'); + expect((req.headers as Record)['x-Foo']).toEqual(undefined); + expect((req.headers as Record)['X-Foo']).toEqual(undefined); + expect((req.headers as Record)['x-baz']).toEqual(undefined); }); }); }); From f5b19fd6778aee829bb086431307522c6d272971 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 5 Jan 2024 15:22:39 -0500 Subject: [PATCH 235/725] chore(internal): improve type signatures (#609) --- src/_shims/index-deno.ts | 2 +- src/_shims/index.d.ts | 2 +- src/_shims/node-runtime.ts | 2 +- src/_shims/registry.ts | 2 +- src/_shims/web-runtime.ts | 2 +- src/core.ts | 32 +++++++++++++++----------------- src/uploads.ts | 4 ++-- 7 files changed, 22 insertions(+), 24 deletions(-) diff --git a/src/_shims/index-deno.ts b/src/_shims/index-deno.ts index b838e5f22..d9eabb5a9 100644 --- a/src/_shims/index-deno.ts +++ b/src/_shims/index-deno.ts @@ -64,7 +64,7 @@ const _Blob = Blob; type _Blob = Blob; export { _Blob as Blob }; -export async function getMultipartRequestOptions>( +export async function getMultipartRequestOptions>( form: FormData, opts: RequestOptions, ): Promise> { diff --git a/src/_shims/index.d.ts b/src/_shims/index.d.ts index 4e52b952e..d867b293b 100644 --- a/src/_shims/index.d.ts +++ b/src/_shims/index.d.ts @@ -65,7 +65,7 @@ export type ReadableStream = SelectType; -export function getMultipartRequestOptions>( +export function getMultipartRequestOptions>( form: FormData, opts: RequestOptions, ): Promise>; diff --git a/src/_shims/node-runtime.ts b/src/_shims/node-runtime.ts index 7d24b7077..a9c42ebeb 100644 --- a/src/_shims/node-runtime.ts +++ b/src/_shims/node-runtime.ts @@ -43,7 +43,7 @@ async function fileFromPath(path: string, ...args: any[]): Promise { const defaultHttpAgent: Agent = new KeepAliveAgent({ keepAlive: true, timeout: 5 * 60 * 1000 }); const defaultHttpsAgent: Agent = new KeepAliveAgent.HttpsAgent({ keepAlive: true, timeout: 5 * 60 * 1000 }); -async function getMultipartRequestOptions>( +async function getMultipartRequestOptions>( form: fd.FormData, opts: RequestOptions, ): Promise> { diff --git a/src/_shims/registry.ts b/src/_shims/registry.ts index 65b570d0c..1fa39642e 100644 --- a/src/_shims/registry.ts +++ b/src/_shims/registry.ts @@ -13,7 +13,7 @@ export interface Shims { Blob: any; File: any; ReadableStream: any; - getMultipartRequestOptions: >( + getMultipartRequestOptions: >( form: Shims['FormData'], opts: RequestOptions, ) => Promise>; diff --git a/src/_shims/web-runtime.ts b/src/_shims/web-runtime.ts index 92dadeb89..a5e90bcf8 100644 --- a/src/_shims/web-runtime.ts +++ b/src/_shims/web-runtime.ts @@ -84,7 +84,7 @@ export function getRuntime({ manuallyImported }: { manuallyImported?: boolean } } } ), - getMultipartRequestOptions: async >( + getMultipartRequestOptions: async >( // @ts-ignore form: FormData, opts: RequestOptions, diff --git a/src/core.ts b/src/core.ts index eafddc517..9e3cb2b43 100644 --- a/src/core.ts +++ b/src/core.ts @@ -217,27 +217,27 @@ export abstract class APIClient { return `stainless-node-retry-${uuid4()}`; } - get(path: string, opts?: PromiseOrValue>): APIPromise { + get(path: string, opts?: PromiseOrValue>): APIPromise { return this.methodRequest('get', path, opts); } - post(path: string, opts?: PromiseOrValue>): APIPromise { + post(path: string, opts?: PromiseOrValue>): APIPromise { return this.methodRequest('post', path, opts); } - patch(path: string, opts?: PromiseOrValue>): APIPromise { + patch(path: string, opts?: PromiseOrValue>): APIPromise { return this.methodRequest('patch', path, opts); } - put(path: string, opts?: PromiseOrValue>): APIPromise { + put(path: string, opts?: PromiseOrValue>): APIPromise { return this.methodRequest('put', path, opts); } - delete(path: string, opts?: PromiseOrValue>): APIPromise { + delete(path: string, opts?: PromiseOrValue>): APIPromise { return this.methodRequest('delete', path, opts); } - private methodRequest( + private methodRequest( method: HTTPMethod, path: string, opts?: PromiseOrValue>, @@ -269,9 +269,7 @@ export abstract class APIClient { return null; } - buildRequest( - options: FinalRequestOptions, - ): { req: RequestInit; url: string; timeout: number } { + buildRequest(options: FinalRequestOptions): { req: RequestInit; url: string; timeout: number } { const { method, path, query, headers: headers = {} } = options; const body = @@ -373,15 +371,15 @@ export abstract class APIClient { return APIError.generate(status, error, message, headers); } - request( + request( options: PromiseOrValue>, remainingRetries: number | null = null, ): APIPromise { return new APIPromise(this.makeRequest(options, remainingRetries)); } - private async makeRequest( - optionsInput: PromiseOrValue, + private async makeRequest( + optionsInput: PromiseOrValue>, retriesRemaining: number | null, ): Promise { const options = await optionsInput; @@ -443,7 +441,7 @@ export abstract class APIClient { return new PagePromise(this, request, Page); } - buildURL>(path: string, query: Req | null | undefined): string { + buildURL(path: string, query: Req | null | undefined): string { const url = isAbsoluteURL(path) ? new URL(path) @@ -617,7 +615,7 @@ export abstract class AbstractPage implements AsyncIterable { ); } const nextOptions = { ...this.options }; - if ('params' in nextInfo) { + if ('params' in nextInfo && typeof nextOptions.query === 'object') { nextOptions.query = { ...nextOptions.query, ...nextInfo.params }; } else if ('url' in nextInfo) { const params = [...Object.entries(nextOptions.query || {}), ...nextInfo.url.searchParams.entries()]; @@ -715,7 +713,7 @@ export type Headers = Record; export type DefaultQuery = Record; export type KeysEnum = { [P in keyof Required]: true }; -export type RequestOptions | Readable> = { +export type RequestOptions | Readable> = { method?: HTTPMethod; path?: string; query?: Req | undefined; @@ -752,7 +750,7 @@ const requestOptionsKeys: KeysEnum = { __binaryResponse: true, }; -export const isRequestOptions = (obj: unknown): obj is RequestOptions | Readable> => { +export const isRequestOptions = (obj: unknown): obj is RequestOptions => { return ( typeof obj === 'object' && obj !== null && @@ -761,7 +759,7 @@ export const isRequestOptions = (obj: unknown): obj is RequestOptions | Readable> = RequestOptions & { +export type FinalRequestOptions | Readable> = RequestOptions & { method: HTTPMethod; path: string; }; diff --git a/src/uploads.ts b/src/uploads.ts index bc2afefa2..2398baf35 100644 --- a/src/uploads.ts +++ b/src/uploads.ts @@ -184,7 +184,7 @@ export const isMultipartBody = (body: any): body is MultipartBody => * Returns a multipart/form-data request if any part of the given request body contains a File / Blob value. * Otherwise returns the request as is. */ -export const maybeMultipartFormRequestOptions = async >( +export const maybeMultipartFormRequestOptions = async >( opts: RequestOptions, ): Promise> => { if (!hasUploadableValue(opts.body)) return opts; @@ -193,7 +193,7 @@ export const maybeMultipartFormRequestOptions = async >( +export const multipartFormRequestOptions = async >( opts: RequestOptions, ): Promise> => { const form = await createForm(opts.body); From 6c3cf351acb1e33114c8fbca4a66f3b0e48f285f Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 8 Jan 2024 15:27:29 -0500 Subject: [PATCH 236/725] chore: add .keep files for examples and custom code directories (#612) --- examples/.keep | 4 ++++ src/lib/.keep | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 examples/.keep create mode 100644 src/lib/.keep diff --git a/examples/.keep b/examples/.keep new file mode 100644 index 000000000..0651c89c0 --- /dev/null +++ b/examples/.keep @@ -0,0 +1,4 @@ +File generated from our OpenAPI spec by Stainless. + +This directory can be used to store example files demonstrating usage of this SDK. +It is ignored by Stainless code generation and its content (other than this keep file) won't be touched. diff --git a/src/lib/.keep b/src/lib/.keep new file mode 100644 index 000000000..7554f8b20 --- /dev/null +++ b/src/lib/.keep @@ -0,0 +1,4 @@ +File generated from our OpenAPI spec by Stainless. + +This directory can be used to store custom files to expand the SDK. +It is ignored by Stainless code generation and its content (other than this keep file) won't be touched. From 6fa28eacb15eaa12abd2332c17d8dee66b757627 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 8 Jan 2024 15:27:54 -0500 Subject: [PATCH 237/725] release: 4.24.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 21 +++++++++++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 26 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f33e27aba..52d941c80 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.24.1" + ".": "4.24.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 73926f94c..76b83a93d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## 4.24.2 (2024-01-08) + +Full Changelog: [v4.24.1...v4.24.2](https://github.com/openai/openai-node/compare/v4.24.1...v4.24.2) + +### Bug Fixes + +* **headers:** always send lowercase headers and strip undefined (BREAKING in rare cases) ([#608](https://github.com/openai/openai-node/issues/608)) ([4ea159f](https://github.com/openai/openai-node/commit/4ea159f0aa9a1f4c365c74ee726714fe692ddf9f)) + + +### Chores + +* add .keep files for examples and custom code directories ([#612](https://github.com/openai/openai-node/issues/612)) ([5e0f733](https://github.com/openai/openai-node/commit/5e0f733d3cd3c8e6d41659141168cd0708e017a3)) +* **internal:** bump license ([#605](https://github.com/openai/openai-node/issues/605)) ([045ee74](https://github.com/openai/openai-node/commit/045ee74fd3ffba9e6d1301fe1ffd8bd3c63720a2)) +* **internal:** improve type signatures ([#609](https://github.com/openai/openai-node/issues/609)) ([e1ccc82](https://github.com/openai/openai-node/commit/e1ccc82e4991262a631dcffa4d09bdc553e50fbb)) + + +### Documentation + +* fix docstring typos ([#600](https://github.com/openai/openai-node/issues/600)) ([1934fa1](https://github.com/openai/openai-node/commit/1934fa15f654ea89e226457f76febe6015616f6c)) +* improve audio example to show how to stream to a file ([#598](https://github.com/openai/openai-node/issues/598)) ([e950ad9](https://github.com/openai/openai-node/commit/e950ad969e845d608ed71bd3e3095cd6c941d93d)) + ## 4.24.1 (2023-12-22) Full Changelog: [v4.24.0...v4.24.1](https://github.com/openai/openai-node/compare/v4.24.0...v4.24.1) diff --git a/README.md b/README.md index bd32cd053..c538aa457 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.24.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.24.2/mod.ts'; ``` diff --git a/build-deno b/build-deno index 37d62c7da..60212c0ff 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.24.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.24.2/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 7a88ec1cf..13038f6da 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.24.1", + "version": "4.24.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 0cd107b3c..d2fe00e18 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.24.1'; // x-release-please-version +export const VERSION = '4.24.2'; // x-release-please-version From cc1bf072fb23c9c19262946793ca2dc31a864d72 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 10 Jan 2024 12:40:13 -0500 Subject: [PATCH 238/725] fix: use default base url if BASE_URL env var is blank (#615) Previously, a blank BASE_URL environment variable would cause an invalid URL error. Now it uses the default. --- src/core.ts | 6 ++++-- src/index.ts | 2 +- tests/index.test.ts | 14 +++++++++++++- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/src/core.ts b/src/core.ts index 9e3cb2b43..b5896a1e3 100644 --- a/src/core.ts +++ b/src/core.ts @@ -961,14 +961,16 @@ export const ensurePresent = (value: T | null | undefined): T => { /** * Read an environment variable. * + * Trims beginning and trailing whitespace. + * * Will return undefined if the environment variable doesn't exist or cannot be accessed. */ export const readEnv = (env: string): string | undefined => { if (typeof process !== 'undefined') { - return process.env?.[env] ?? undefined; + return process.env?.[env]?.trim() ?? undefined; } if (typeof Deno !== 'undefined') { - return Deno.env?.get?.(env); + return Deno.env?.get?.(env)?.trim(); } return undefined; }; diff --git a/src/index.ts b/src/index.ts index a03531dbe..265fb8f1c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -118,7 +118,7 @@ export class OpenAI extends Core.APIClient { apiKey, organization, ...opts, - baseURL: baseURL ?? `https://api.openai.com/v1`, + baseURL: baseURL || `https://api.openai.com/v1`, }; if (!options.dangerouslyAllowBrowser && Core.isRunningInBrowser()) { diff --git a/tests/index.test.ts b/tests/index.test.ts index e056d3b85..6b386b04c 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -134,7 +134,7 @@ describe('instantiate client', () => { }); afterEach(() => { - process.env['SINK_BASE_URL'] = undefined; + process.env['OPENAI_BASE_URL'] = undefined; }); test('explicit option', () => { @@ -147,6 +147,18 @@ describe('instantiate client', () => { const client = new OpenAI({ apiKey: 'My API Key' }); expect(client.baseURL).toEqual('https://example.com/from_env'); }); + + test('empty env variable', () => { + process.env['OPENAI_BASE_URL'] = ''; // empty + const client = new OpenAI({ apiKey: 'My API Key' }); + expect(client.baseURL).toEqual('https://api.openai.com/v1'); + }); + + test('blank env variable', () => { + process.env['OPENAI_BASE_URL'] = ' '; // blank + const client = new OpenAI({ apiKey: 'My API Key' }); + expect(client.baseURL).toEqual('https://api.openai.com/v1'); + }); }); test('maxRetries option is correctly set', () => { From 406e502591a2f919d451b34938b4c5993562fa3d Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 10 Jan 2024 12:40:38 -0500 Subject: [PATCH 239/725] release: 4.24.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 52d941c80..0c1de9bc2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.24.2" + ".": "4.24.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 76b83a93d..6633e9678 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.24.3 (2024-01-10) + +Full Changelog: [v4.24.2...v4.24.3](https://github.com/openai/openai-node/compare/v4.24.2...v4.24.3) + +### Bug Fixes + +* use default base url if BASE_URL env var is blank ([#615](https://github.com/openai/openai-node/issues/615)) ([a27ad3d](https://github.com/openai/openai-node/commit/a27ad3d4e06f2202daa169668d0e7d89e87a38a7)) + ## 4.24.2 (2024-01-08) Full Changelog: [v4.24.1...v4.24.2](https://github.com/openai/openai-node/compare/v4.24.1...v4.24.2) diff --git a/README.md b/README.md index c538aa457..6b4148e48 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.24.2/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.24.3/mod.ts'; ``` diff --git a/build-deno b/build-deno index 60212c0ff..fa50476c4 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.24.2/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.24.3/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 13038f6da..fd282473b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.24.2", + "version": "4.24.3", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index d2fe00e18..ebde6dd94 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.24.2'; // x-release-please-version +export const VERSION = '4.24.3'; // x-release-please-version From b78b430d9a54bda6aa7a09ad796c1b972a60ffcd Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 11 Jan 2024 17:22:37 -0500 Subject: [PATCH 240/725] chore(internal): narrow type into stringifyQuery (#619) --- src/core.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core.ts b/src/core.ts index b5896a1e3..8601a1388 100644 --- a/src/core.ts +++ b/src/core.ts @@ -452,8 +452,8 @@ export abstract class APIClient { query = { ...defaultQuery, ...query } as Req; } - if (query) { - url.search = this.stringifyQuery(query); + if (typeof query === 'object' && query && !Array.isArray(query)) { + url.search = this.stringifyQuery(query as Record); } return url.toString(); From 2a1731a4644e82e671effdbd934a72c34ffd7bd3 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 11 Jan 2024 17:23:03 -0500 Subject: [PATCH 241/725] release: 4.24.4 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0c1de9bc2..4a25f0db8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.24.3" + ".": "4.24.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6633e9678..73f51ae47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.24.4 (2024-01-11) + +Full Changelog: [v4.24.3...v4.24.4](https://github.com/openai/openai-node/compare/v4.24.3...v4.24.4) + +### Chores + +* **internal:** narrow type into stringifyQuery ([#619](https://github.com/openai/openai-node/issues/619)) ([88fb9cd](https://github.com/openai/openai-node/commit/88fb9cd1bb415850b0b4868944617282d0b92e2a)) + ## 4.24.3 (2024-01-10) Full Changelog: [v4.24.2...v4.24.3](https://github.com/openai/openai-node/compare/v4.24.2...v4.24.3) diff --git a/README.md b/README.md index 6b4148e48..90c69a922 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.24.3/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.24.4/mod.ts'; ``` diff --git a/build-deno b/build-deno index fa50476c4..00f336d53 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.24.3/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.24.4/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index fd282473b..53f107e9b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.24.3", + "version": "4.24.4", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index ebde6dd94..f0b58780e 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.24.3'; // x-release-please-version +export const VERSION = '4.24.4'; // x-release-please-version From 75df4d8a8eb03cf390981969e65a797f10c3a880 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 12 Jan 2024 10:01:49 -0500 Subject: [PATCH 242/725] refactor(api): remove deprecated endpoints (#621) The fine tunes and edits APIs are no longer provided by OpenAI. This is not a breaking change as attempting to call these APIs, even on older versions, will result in an error at runtime. --- .stats.yml | 2 +- README.md | 4 +- api.md | 26 -- src/index.ts | 16 - src/resources/chat/completions.ts | 4 +- src/resources/completions.ts | 24 +- src/resources/edits.ts | 109 ------- src/resources/fine-tunes.ts | 423 ------------------------- src/resources/fine-tuning/jobs.ts | 3 +- src/resources/index.ts | 12 - tests/api-resources/edits.test.ts | 36 --- tests/api-resources/fine-tunes.test.ts | 117 ------- 12 files changed, 13 insertions(+), 763 deletions(-) delete mode 100644 src/resources/edits.ts delete mode 100644 src/resources/fine-tunes.ts delete mode 100644 tests/api-resources/edits.test.ts delete mode 100644 tests/api-resources/fine-tunes.test.ts diff --git a/.stats.yml b/.stats.yml index 03b0268ff..c550abf3c 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1 +1 @@ -configured_endpoints: 57 +configured_endpoints: 51 diff --git a/README.md b/README.md index 90c69a922..429d3fec6 100644 --- a/README.md +++ b/README.md @@ -272,8 +272,8 @@ a subclass of `APIError` will be thrown: ```ts async function main() { - const fineTune = await openai.fineTunes - .create({ training_file: 'file-XGinujblHPwGLSztz8cPS8XY' }) + const job = await openai.fineTuning.jobs + .create({ model: 'gpt-3.5-turbo', training_file: 'file-abc123' }) .catch((err) => { if (err instanceof OpenAI.APIError) { console.log(err.status); // 400 diff --git a/api.md b/api.md index 82ffae114..68d8545cc 100644 --- a/api.md +++ b/api.md @@ -48,16 +48,6 @@ Methods: - client.chat.completions.create({ ...params }) -> ChatCompletion -# Edits - -Types: - -- Edit - -Methods: - -- client.edits.create({ ...params }) -> Edit - # Embeddings Types: @@ -169,22 +159,6 @@ Methods: - client.fineTuning.jobs.cancel(fineTuningJobId) -> FineTuningJob - client.fineTuning.jobs.listEvents(fineTuningJobId, { ...params }) -> FineTuningJobEventsPage -# FineTunes - -Types: - -- FineTune -- FineTuneEvent -- FineTuneEventsListResponse - -Methods: - -- client.fineTunes.create({ ...params }) -> FineTune -- client.fineTunes.retrieve(fineTuneId) -> FineTune -- client.fineTunes.list() -> FineTunesPage -- client.fineTunes.cancel(fineTuneId) -> FineTune -- client.fineTunes.listEvents(fineTuneId, { ...params }) -> FineTuneEventsListResponse - # Beta ## Chat diff --git a/src/index.ts b/src/index.ts index 265fb8f1c..f72850cf9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -142,7 +142,6 @@ export class OpenAI extends Core.APIClient { completions: API.Completions = new API.Completions(this); chat: API.Chat = new API.Chat(this); - edits: API.Edits = new API.Edits(this); embeddings: API.Embeddings = new API.Embeddings(this); files: API.Files = new API.Files(this); images: API.Images = new API.Images(this); @@ -150,7 +149,6 @@ export class OpenAI extends Core.APIClient { moderations: API.Moderations = new API.Moderations(this); models: API.Models = new API.Models(this); fineTuning: API.FineTuning = new API.FineTuning(this); - fineTunes: API.FineTunes = new API.FineTunes(this); beta: API.Beta = new API.Beta(this); protected override defaultQuery(): Core.DefaultQuery | undefined { @@ -251,10 +249,6 @@ export namespace OpenAI { export import ChatCompletionCreateParamsNonStreaming = API.ChatCompletionCreateParamsNonStreaming; export import ChatCompletionCreateParamsStreaming = API.ChatCompletionCreateParamsStreaming; - export import Edits = API.Edits; - export import Edit = API.Edit; - export import EditCreateParams = API.EditCreateParams; - export import Embeddings = API.Embeddings; export import CreateEmbeddingResponse = API.CreateEmbeddingResponse; export import Embedding = API.Embedding; @@ -289,16 +283,6 @@ export namespace OpenAI { export import FineTuning = API.FineTuning; - export import FineTunes = API.FineTunes; - export import FineTune = API.FineTune; - export import FineTuneEvent = API.FineTuneEvent; - export import FineTuneEventsListResponse = API.FineTuneEventsListResponse; - export import FineTunesPage = API.FineTunesPage; - export import FineTuneCreateParams = API.FineTuneCreateParams; - export import FineTuneListEventsParams = API.FineTuneListEventsParams; - export import FineTuneListEventsParamsNonStreaming = API.FineTuneListEventsParamsNonStreaming; - export import FineTuneListEventsParamsStreaming = API.FineTuneListEventsParamsStreaming; - export import Beta = API.Beta; export import FunctionDefinition = API.FunctionDefinition; diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index fce37ca53..6882e5f44 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -594,7 +594,7 @@ export interface ChatCompletionTool { * will not call a function and instead generates a message. `auto` means the model * can pick between generating a message or calling a function. Specifying a * particular function via - * `{"type: "function", "function": {"name": "my_function"}}` forces the model to + * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that function. * * `none` is the default when no functions are present. `auto` is the default if @@ -807,7 +807,7 @@ export interface ChatCompletionCreateParamsBase { * will not call a function and instead generates a message. `auto` means the model * can pick between generating a message or calling a function. Specifying a * particular function via - * `{"type: "function", "function": {"name": "my_function"}}` forces the model to + * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that function. * * `none` is the default when no functions are present. `auto` is the default if diff --git a/src/resources/completions.ts b/src/resources/completions.ts index 00769fdbb..f3e262f5f 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -131,18 +131,7 @@ export interface CompletionCreateParamsBase { * [Model overview](https://platform.openai.com/docs/models/overview) for * descriptions of them. */ - model: - | (string & {}) - | 'babbage-002' - | 'davinci-002' - | 'gpt-3.5-turbo-instruct' - | 'text-davinci-003' - | 'text-davinci-002' - | 'text-davinci-001' - | 'code-davinci-002' - | 'text-curie-001' - | 'text-babbage-001' - | 'text-ada-001'; + model: (string & {}) | 'gpt-3.5-turbo-instruct' | 'davinci-002' | 'babbage-002'; /** * The prompt(s) to generate completions for, encoded as a string, array of @@ -186,12 +175,11 @@ export interface CompletionCreateParamsBase { * * Accepts a JSON object that maps tokens (specified by their token ID in the GPT * tokenizer) to an associated bias value from -100 to 100. You can use this - * [tokenizer tool](/tokenizer?view=bpe) (which works for both GPT-2 and GPT-3) to - * convert text to token IDs. Mathematically, the bias is added to the logits - * generated by the model prior to sampling. The exact effect will vary per model, - * but values between -1 and 1 should decrease or increase likelihood of selection; - * values like -100 or 100 should result in a ban or exclusive selection of the - * relevant token. + * [tokenizer tool](/tokenizer?view=bpe) to convert text to token IDs. + * Mathematically, the bias is added to the logits generated by the model prior to + * sampling. The exact effect will vary per model, but values between -1 and 1 + * should decrease or increase likelihood of selection; values like -100 or 100 + * should result in a ban or exclusive selection of the relevant token. * * As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> token * from being generated. diff --git a/src/resources/edits.ts b/src/resources/edits.ts deleted file mode 100644 index 0b7b4802b..000000000 --- a/src/resources/edits.ts +++ /dev/null @@ -1,109 +0,0 @@ -// File generated from our OpenAPI spec by Stainless. - -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import * as EditsAPI from 'openai/resources/edits'; -import * as CompletionsAPI from 'openai/resources/completions'; - -export class Edits extends APIResource { - /** - * Creates a new edit for the provided input, instruction, and parameters. - * - * @deprecated The Edits API is deprecated; please use Chat Completions instead. - * - * https://openai.com/blog/gpt-4-api-general-availability#deprecation-of-the-edits-api - */ - create(body: EditCreateParams, options?: Core.RequestOptions): Core.APIPromise { - return this._client.post('/edits', { body, ...options }); - } -} - -export interface Edit { - /** - * A list of edit choices. Can be more than one if `n` is greater than 1. - */ - choices: Array; - - /** - * The Unix timestamp (in seconds) of when the edit was created. - */ - created: number; - - /** - * The object type, which is always `edit`. - */ - object: 'edit'; - - /** - * Usage statistics for the completion request. - */ - usage: CompletionsAPI.CompletionUsage; -} - -export namespace Edit { - export interface Choice { - /** - * The reason the model stopped generating tokens. This will be `stop` if the model - * hit a natural stop point or a provided stop sequence, `length` if the maximum - * number of tokens specified in the request was reached, or `content_filter` if - * content was omitted due to a flag from our content filters. - */ - finish_reason: 'stop' | 'length'; - - /** - * The index of the choice in the list of choices. - */ - index: number; - - /** - * The edited result. - */ - text: string; - } -} - -export interface EditCreateParams { - /** - * The instruction that tells the model how to edit the prompt. - */ - instruction: string; - - /** - * ID of the model to use. You can use the `text-davinci-edit-001` or - * `code-davinci-edit-001` model with this endpoint. - */ - model: (string & {}) | 'text-davinci-edit-001' | 'code-davinci-edit-001'; - - /** - * The input text to use as a starting point for the edit. - */ - input?: string | null; - - /** - * How many edits to generate for the input and instruction. - */ - n?: number | null; - - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will - * make the output more random, while lower values like 0.2 will make it more - * focused and deterministic. - * - * We generally recommend altering this or `top_p` but not both. - */ - temperature?: number | null; - - /** - * An alternative to sampling with temperature, called nucleus sampling, where the - * model considers the results of the tokens with top_p probability mass. So 0.1 - * means only the tokens comprising the top 10% probability mass are considered. - * - * We generally recommend altering this or `temperature` but not both. - */ - top_p?: number | null; -} - -export namespace Edits { - export import Edit = EditsAPI.Edit; - export import EditCreateParams = EditsAPI.EditCreateParams; -} diff --git a/src/resources/fine-tunes.ts b/src/resources/fine-tunes.ts deleted file mode 100644 index 8e8193720..000000000 --- a/src/resources/fine-tunes.ts +++ /dev/null @@ -1,423 +0,0 @@ -// File generated from our OpenAPI spec by Stainless. - -import * as Core from 'openai/core'; -import { APIPromise } from 'openai/core'; -import { APIResource } from 'openai/resource'; -import * as FineTunesAPI from 'openai/resources/fine-tunes'; -import * as FilesAPI from 'openai/resources/files'; -import { Page } from 'openai/pagination'; -import { Stream } from 'openai/streaming'; - -export class FineTunes extends APIResource { - /** - * Creates a job that fine-tunes a specified model from a given dataset. - * - * Response includes details of the enqueued job including job status and the name - * of the fine-tuned models once complete. - * - * [Learn more about fine-tuning](https://platform.openai.com/docs/guides/legacy-fine-tuning) - */ - create(body: FineTuneCreateParams, options?: Core.RequestOptions): Core.APIPromise { - return this._client.post('/fine-tunes', { body, ...options }); - } - - /** - * Gets info about the fine-tune job. - * - * [Learn more about fine-tuning](https://platform.openai.com/docs/guides/legacy-fine-tuning) - */ - retrieve(fineTuneId: string, options?: Core.RequestOptions): Core.APIPromise { - return this._client.get(`/fine-tunes/${fineTuneId}`, options); - } - - /** - * List your organization's fine-tuning jobs - */ - list(options?: Core.RequestOptions): Core.PagePromise { - return this._client.getAPIList('/fine-tunes', FineTunesPage, options); - } - - /** - * Immediately cancel a fine-tune job. - */ - cancel(fineTuneId: string, options?: Core.RequestOptions): Core.APIPromise { - return this._client.post(`/fine-tunes/${fineTuneId}/cancel`, options); - } - - /** - * Get fine-grained status updates for a fine-tune job. - */ - listEvents( - fineTuneId: string, - query?: FineTuneListEventsParamsNonStreaming, - options?: Core.RequestOptions, - ): APIPromise; - listEvents( - fineTuneId: string, - query: FineTuneListEventsParamsStreaming, - options?: Core.RequestOptions, - ): APIPromise>; - listEvents( - fineTuneId: string, - query?: FineTuneListEventsParamsBase | undefined, - options?: Core.RequestOptions, - ): APIPromise | FineTuneEventsListResponse>; - listEvents( - fineTuneId: string, - query?: FineTuneListEventsParams | undefined, - options?: Core.RequestOptions, - ): APIPromise | APIPromise> { - return this._client.get(`/fine-tunes/${fineTuneId}/events`, { - query, - timeout: 86400000, - ...options, - stream: query?.stream ?? false, - }) as APIPromise | APIPromise>; - } -} - -/** - * Note: no pagination actually occurs yet, this is for forwards-compatibility. - */ -export class FineTunesPage extends Page {} - -/** - * The `FineTune` object represents a legacy fine-tune job that has been created - * through the API. - */ -export interface FineTune { - /** - * The object identifier, which can be referenced in the API endpoints. - */ - id: string; - - /** - * The Unix timestamp (in seconds) for when the fine-tuning job was created. - */ - created_at: number; - - /** - * The name of the fine-tuned model that is being created. - */ - fine_tuned_model: string | null; - - /** - * The hyperparameters used for the fine-tuning job. See the - * [fine-tuning guide](https://platform.openai.com/docs/guides/legacy-fine-tuning/hyperparameters) - * for more details. - */ - hyperparams: FineTune.Hyperparams; - - /** - * The base model that is being fine-tuned. - */ - model: string; - - /** - * The object type, which is always "fine-tune". - */ - object: 'fine-tune'; - - /** - * The organization that owns the fine-tuning job. - */ - organization_id: string; - - /** - * The compiled results files for the fine-tuning job. - */ - result_files: Array; - - /** - * The current status of the fine-tuning job, which can be either `created`, - * `running`, `succeeded`, `failed`, or `cancelled`. - */ - status: string; - - /** - * The list of files used for training. - */ - training_files: Array; - - /** - * The Unix timestamp (in seconds) for when the fine-tuning job was last updated. - */ - updated_at: number; - - /** - * The list of files used for validation. - */ - validation_files: Array; - - /** - * The list of events that have been observed in the lifecycle of the FineTune job. - */ - events?: Array; -} - -export namespace FineTune { - /** - * The hyperparameters used for the fine-tuning job. See the - * [fine-tuning guide](https://platform.openai.com/docs/guides/legacy-fine-tuning/hyperparameters) - * for more details. - */ - export interface Hyperparams { - /** - * The batch size to use for training. The batch size is the number of training - * examples used to train a single forward and backward pass. - */ - batch_size: number; - - /** - * The learning rate multiplier to use for training. - */ - learning_rate_multiplier: number; - - /** - * The number of epochs to train the model for. An epoch refers to one full cycle - * through the training dataset. - */ - n_epochs: number; - - /** - * The weight to use for loss on the prompt tokens. - */ - prompt_loss_weight: number; - - /** - * The number of classes to use for computing classification metrics. - */ - classification_n_classes?: number; - - /** - * The positive class to use for computing classification metrics. - */ - classification_positive_class?: string; - - /** - * The classification metrics to compute using the validation dataset at the end of - * every epoch. - */ - compute_classification_metrics?: boolean; - } -} - -/** - * Fine-tune event object - */ -export interface FineTuneEvent { - created_at: number; - - level: string; - - message: string; - - object: 'fine-tune-event'; -} - -export interface FineTuneEventsListResponse { - data: Array; - - object: 'list'; -} - -export interface FineTuneCreateParams { - /** - * The ID of an uploaded file that contains training data. - * - * See [upload file](https://platform.openai.com/docs/api-reference/files/upload) - * for how to upload a file. - * - * Your dataset must be formatted as a JSONL file, where each training example is a - * JSON object with the keys "prompt" and "completion". Additionally, you must - * upload your file with the purpose `fine-tune`. - * - * See the - * [fine-tuning guide](https://platform.openai.com/docs/guides/legacy-fine-tuning/creating-training-data) - * for more details. - */ - training_file: string; - - /** - * The batch size to use for training. The batch size is the number of training - * examples used to train a single forward and backward pass. - * - * By default, the batch size will be dynamically configured to be ~0.2% of the - * number of examples in the training set, capped at 256 - in general, we've found - * that larger batch sizes tend to work better for larger datasets. - */ - batch_size?: number | null; - - /** - * If this is provided, we calculate F-beta scores at the specified beta values. - * The F-beta score is a generalization of F-1 score. This is only used for binary - * classification. - * - * With a beta of 1 (i.e. the F-1 score), precision and recall are given the same - * weight. A larger beta score puts more weight on recall and less on precision. A - * smaller beta score puts more weight on precision and less on recall. - */ - classification_betas?: Array | null; - - /** - * The number of classes in a classification task. - * - * This parameter is required for multiclass classification. - */ - classification_n_classes?: number | null; - - /** - * The positive class in binary classification. - * - * This parameter is needed to generate precision, recall, and F1 metrics when - * doing binary classification. - */ - classification_positive_class?: string | null; - - /** - * If set, we calculate classification-specific metrics such as accuracy and F-1 - * score using the validation set at the end of every epoch. These metrics can be - * viewed in the - * [results file](https://platform.openai.com/docs/guides/legacy-fine-tuning/analyzing-your-fine-tuned-model). - * - * In order to compute classification metrics, you must provide a - * `validation_file`. Additionally, you must specify `classification_n_classes` for - * multiclass classification or `classification_positive_class` for binary - * classification. - */ - compute_classification_metrics?: boolean | null; - - /** - * The hyperparameters used for the fine-tuning job. - */ - hyperparameters?: FineTuneCreateParams.Hyperparameters; - - /** - * The learning rate multiplier to use for training. The fine-tuning learning rate - * is the original learning rate used for pretraining multiplied by this value. - * - * By default, the learning rate multiplier is the 0.05, 0.1, or 0.2 depending on - * final `batch_size` (larger learning rates tend to perform better with larger - * batch sizes). We recommend experimenting with values in the range 0.02 to 0.2 to - * see what produces the best results. - */ - learning_rate_multiplier?: number | null; - - /** - * The name of the base model to fine-tune. You can select one of "ada", "babbage", - * "curie", "davinci", or a fine-tuned model created after 2022-04-21 and before - * 2023-08-22. To learn more about these models, see the - * [Models](https://platform.openai.com/docs/models) documentation. - */ - model?: (string & {}) | 'ada' | 'babbage' | 'curie' | 'davinci' | null; - - /** - * The weight to use for loss on the prompt tokens. This controls how much the - * model tries to learn to generate the prompt (as compared to the completion which - * always has a weight of 1.0), and can add a stabilizing effect to training when - * completions are short. - * - * If prompts are extremely long (relative to completions), it may make sense to - * reduce this weight so as to avoid over-prioritizing learning the prompt. - */ - prompt_loss_weight?: number | null; - - /** - * A string of up to 40 characters that will be added to your fine-tuned model - * name. - * - * For example, a `suffix` of "custom-model-name" would produce a model name like - * `ada:ft-your-org:custom-model-name-2022-02-15-04-21-04`. - */ - suffix?: string | null; - - /** - * The ID of an uploaded file that contains validation data. - * - * If you provide this file, the data is used to generate validation metrics - * periodically during fine-tuning. These metrics can be viewed in the - * [fine-tuning results file](https://platform.openai.com/docs/guides/legacy-fine-tuning/analyzing-your-fine-tuned-model). - * Your train and validation data should be mutually exclusive. - * - * Your dataset must be formatted as a JSONL file, where each validation example is - * a JSON object with the keys "prompt" and "completion". Additionally, you must - * upload your file with the purpose `fine-tune`. - * - * See the - * [fine-tuning guide](https://platform.openai.com/docs/guides/legacy-fine-tuning/creating-training-data) - * for more details. - */ - validation_file?: string | null; -} - -export namespace FineTuneCreateParams { - /** - * The hyperparameters used for the fine-tuning job. - */ - export interface Hyperparameters { - /** - * The number of epochs to train the model for. An epoch refers to one full cycle - * through the training dataset. - */ - n_epochs?: 'auto' | number; - } -} - -export type FineTuneListEventsParams = - | FineTuneListEventsParamsNonStreaming - | FineTuneListEventsParamsStreaming; - -export interface FineTuneListEventsParamsBase { - /** - * Whether to stream events for the fine-tune job. If set to true, events will be - * sent as data-only - * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) - * as they become available. The stream will terminate with a `data: [DONE]` - * message when the job is finished (succeeded, cancelled, or failed). - * - * If set to false, only events generated so far will be returned. - */ - stream?: boolean; -} - -export namespace FineTuneListEventsParams { - export type FineTuneListEventsParamsNonStreaming = FineTunesAPI.FineTuneListEventsParamsNonStreaming; - export type FineTuneListEventsParamsStreaming = FineTunesAPI.FineTuneListEventsParamsStreaming; -} - -export interface FineTuneListEventsParamsNonStreaming extends FineTuneListEventsParamsBase { - /** - * Whether to stream events for the fine-tune job. If set to true, events will be - * sent as data-only - * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) - * as they become available. The stream will terminate with a `data: [DONE]` - * message when the job is finished (succeeded, cancelled, or failed). - * - * If set to false, only events generated so far will be returned. - */ - stream?: false; -} - -export interface FineTuneListEventsParamsStreaming extends FineTuneListEventsParamsBase { - /** - * Whether to stream events for the fine-tune job. If set to true, events will be - * sent as data-only - * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) - * as they become available. The stream will terminate with a `data: [DONE]` - * message when the job is finished (succeeded, cancelled, or failed). - * - * If set to false, only events generated so far will be returned. - */ - stream: true; -} - -export namespace FineTunes { - export import FineTune = FineTunesAPI.FineTune; - export import FineTuneEvent = FineTunesAPI.FineTuneEvent; - export import FineTuneEventsListResponse = FineTunesAPI.FineTuneEventsListResponse; - export import FineTunesPage = FineTunesAPI.FineTunesPage; - export import FineTuneCreateParams = FineTunesAPI.FineTuneCreateParams; - export import FineTuneListEventsParams = FineTunesAPI.FineTuneListEventsParams; - export import FineTuneListEventsParamsNonStreaming = FineTunesAPI.FineTuneListEventsParamsNonStreaming; - export import FineTuneListEventsParamsStreaming = FineTunesAPI.FineTuneListEventsParamsStreaming; -} diff --git a/src/resources/fine-tuning/jobs.ts b/src/resources/fine-tuning/jobs.ts index 9e013b27a..7bc216d7c 100644 --- a/src/resources/fine-tuning/jobs.ts +++ b/src/resources/fine-tuning/jobs.ts @@ -8,7 +8,8 @@ import { CursorPage, type CursorPageParams } from 'openai/pagination'; export class Jobs extends APIResource { /** - * Creates a job that fine-tunes a specified model from a given dataset. + * Creates a fine-tuning job which begins the process of creating a new model from + * a given dataset. * * Response includes details of the enqueued job including job status and the name * of the fine-tuned models once complete. diff --git a/src/resources/index.ts b/src/resources/index.ts index 3bc17fdc2..16ce85123 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -14,7 +14,6 @@ export { Completions, } from './completions'; export { CreateEmbeddingResponse, Embedding, EmbeddingCreateParams, Embeddings } from './embeddings'; -export { Edit, EditCreateParams, Edits } from './edits'; export { FileContent, FileDeleted, @@ -24,17 +23,6 @@ export { FileObjectsPage, Files, } from './files'; -export { - FineTune, - FineTuneEvent, - FineTuneEventsListResponse, - FineTuneCreateParams, - FineTuneListEventsParams, - FineTuneListEventsParamsNonStreaming, - FineTuneListEventsParamsStreaming, - FineTunesPage, - FineTunes, -} from './fine-tunes'; export { FineTuning } from './fine-tuning/fine-tuning'; export { Image, diff --git a/tests/api-resources/edits.test.ts b/tests/api-resources/edits.test.ts deleted file mode 100644 index add95f051..000000000 --- a/tests/api-resources/edits.test.ts +++ /dev/null @@ -1,36 +0,0 @@ -// File generated from our OpenAPI spec by Stainless. - -import OpenAI from 'openai'; -import { Response } from 'node-fetch'; - -const openai = new OpenAI({ - apiKey: 'My API Key', - baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', -}); - -describe('resource edits', () => { - test('create: only required params', async () => { - const responsePromise = openai.edits.create({ - instruction: 'Fix the spelling mistakes.', - model: 'text-davinci-edit-001', - }); - const rawResponse = await responsePromise.asResponse(); - expect(rawResponse).toBeInstanceOf(Response); - const response = await responsePromise; - expect(response).not.toBeInstanceOf(Response); - const dataAndResponse = await responsePromise.withResponse(); - expect(dataAndResponse.data).toBe(response); - expect(dataAndResponse.response).toBe(rawResponse); - }); - - test('create: required and optional params', async () => { - const response = await openai.edits.create({ - instruction: 'Fix the spelling mistakes.', - model: 'text-davinci-edit-001', - input: 'What day of the wek is it?', - n: 1, - temperature: 1, - top_p: 1, - }); - }); -}); diff --git a/tests/api-resources/fine-tunes.test.ts b/tests/api-resources/fine-tunes.test.ts deleted file mode 100644 index c82898ff2..000000000 --- a/tests/api-resources/fine-tunes.test.ts +++ /dev/null @@ -1,117 +0,0 @@ -// File generated from our OpenAPI spec by Stainless. - -import OpenAI from 'openai'; -import { Response } from 'node-fetch'; - -const openai = new OpenAI({ - apiKey: 'My API Key', - baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', -}); - -describe('resource fineTunes', () => { - test('create: only required params', async () => { - const responsePromise = openai.fineTunes.create({ training_file: 'file-abc123' }); - const rawResponse = await responsePromise.asResponse(); - expect(rawResponse).toBeInstanceOf(Response); - const response = await responsePromise; - expect(response).not.toBeInstanceOf(Response); - const dataAndResponse = await responsePromise.withResponse(); - expect(dataAndResponse.data).toBe(response); - expect(dataAndResponse.response).toBe(rawResponse); - }); - - test('create: required and optional params', async () => { - const response = await openai.fineTunes.create({ - training_file: 'file-abc123', - batch_size: 0, - classification_betas: [0.6, 1, 1.5, 2], - classification_n_classes: 0, - classification_positive_class: 'string', - compute_classification_metrics: true, - hyperparameters: { n_epochs: 'auto' }, - learning_rate_multiplier: 0, - model: 'curie', - prompt_loss_weight: 0, - suffix: 'x', - validation_file: 'file-abc123', - }); - }); - - test('retrieve', async () => { - const responsePromise = openai.fineTunes.retrieve('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); - const rawResponse = await responsePromise.asResponse(); - expect(rawResponse).toBeInstanceOf(Response); - const response = await responsePromise; - expect(response).not.toBeInstanceOf(Response); - const dataAndResponse = await responsePromise.withResponse(); - expect(dataAndResponse.data).toBe(response); - expect(dataAndResponse.response).toBe(rawResponse); - }); - - test('retrieve: request options instead of params are passed correctly', async () => { - // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect( - openai.fineTunes.retrieve('ft-AF1WoRqd3aJAHsqc9NY7iL8F', { path: '/_stainless_unknown_path' }), - ).rejects.toThrow(OpenAI.NotFoundError); - }); - - test('list', async () => { - const responsePromise = openai.fineTunes.list(); - const rawResponse = await responsePromise.asResponse(); - expect(rawResponse).toBeInstanceOf(Response); - const response = await responsePromise; - expect(response).not.toBeInstanceOf(Response); - const dataAndResponse = await responsePromise.withResponse(); - expect(dataAndResponse.data).toBe(response); - expect(dataAndResponse.response).toBe(rawResponse); - }); - - test('list: request options instead of params are passed correctly', async () => { - // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.fineTunes.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( - OpenAI.NotFoundError, - ); - }); - - test('cancel', async () => { - const responsePromise = openai.fineTunes.cancel('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); - const rawResponse = await responsePromise.asResponse(); - expect(rawResponse).toBeInstanceOf(Response); - const response = await responsePromise; - expect(response).not.toBeInstanceOf(Response); - const dataAndResponse = await responsePromise.withResponse(); - expect(dataAndResponse.data).toBe(response); - expect(dataAndResponse.response).toBe(rawResponse); - }); - - test('cancel: request options instead of params are passed correctly', async () => { - // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect( - openai.fineTunes.cancel('ft-AF1WoRqd3aJAHsqc9NY7iL8F', { path: '/_stainless_unknown_path' }), - ).rejects.toThrow(OpenAI.NotFoundError); - }); - - // Prism chokes on this - test.skip('listEvents', async () => { - const responsePromise = openai.fineTunes.listEvents('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); - const rawResponse = await responsePromise.asResponse(); - expect(rawResponse).toBeInstanceOf(Response); - const response = await responsePromise; - expect(response).not.toBeInstanceOf(Response); - const dataAndResponse = await responsePromise.withResponse(); - expect(dataAndResponse.data).toBe(response); - expect(dataAndResponse.response).toBe(rawResponse); - }); - - // Prism chokes on this - test.skip('listEvents: request options and params are passed correctly', async () => { - // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect( - openai.fineTunes.listEvents( - 'ft-AF1WoRqd3aJAHsqc9NY7iL8F', - { stream: false }, - { path: '/_stainless_unknown_path' }, - ), - ).rejects.toThrow(OpenAI.NotFoundError); - }); -}); From f705de21c7108d1a83c2636573a4bc35d8405df1 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 12 Jan 2024 10:02:14 -0500 Subject: [PATCH 243/725] release: 4.24.5 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4a25f0db8..a4cf1cca1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.24.4" + ".": "4.24.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 73f51ae47..0723b9f3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.24.5 (2024-01-12) + +Full Changelog: [v4.24.4...v4.24.5](https://github.com/openai/openai-node/compare/v4.24.4...v4.24.5) + +### Refactors + +* **api:** remove deprecated endpoints ([#621](https://github.com/openai/openai-node/issues/621)) ([2054d71](https://github.com/openai/openai-node/commit/2054d71e6b0d407229a4c5aecd75e38c336c2c02)) + ## 4.24.4 (2024-01-11) Full Changelog: [v4.24.3...v4.24.4](https://github.com/openai/openai-node/compare/v4.24.3...v4.24.4) diff --git a/README.md b/README.md index 429d3fec6..75b9603f8 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.24.4/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.24.5/mod.ts'; ``` diff --git a/build-deno b/build-deno index 00f336d53..579ccc6a5 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.24.4/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.24.5/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 53f107e9b..9cc8feab8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.24.4", + "version": "4.24.5", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index f0b58780e..c2bfeae70 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.24.4'; // x-release-please-version +export const VERSION = '4.24.5'; // x-release-please-version From 27134c0ab943233f2f7265e9f46529aa593fbd96 Mon Sep 17 00:00:00 2001 From: Mohit Yadav Date: Fri, 12 Jan 2024 12:18:08 -0500 Subject: [PATCH 244/725] docs: make awaited function async --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 75b9603f8..945463609 100644 --- a/README.md +++ b/README.md @@ -434,7 +434,7 @@ import { fetch } from 'undici'; // as one example import OpenAI from 'openai'; const client = new OpenAI({ - fetch: (url: RequestInfo, init?: RequestInfo): Response => { + fetch: async (url: RequestInfo, init?: RequestInfo): Response => { console.log('About to make request', url, init); const response = await fetch(url, init); console.log('Got response', response); From 041f2a6359293419c6dbf72c0e1e7a8c1b50e1e7 Mon Sep 17 00:00:00 2001 From: Mohit Yadav Date: Fri, 12 Jan 2024 12:19:23 -0500 Subject: [PATCH 245/725] docs: make return generic --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 945463609..8353cf487 100644 --- a/README.md +++ b/README.md @@ -434,7 +434,7 @@ import { fetch } from 'undici'; // as one example import OpenAI from 'openai'; const client = new OpenAI({ - fetch: async (url: RequestInfo, init?: RequestInfo): Response => { + fetch: async (url: RequestInfo, init?: RequestInfo): => { console.log('About to make request', url, init); const response = await fetch(url, init); console.log('Got response', response); From 8438c2c79229448b21f9b92b07e37b98ba88ea80 Mon Sep 17 00:00:00 2001 From: Mohit Yadav Date: Fri, 12 Jan 2024 12:19:47 -0500 Subject: [PATCH 246/725] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8353cf487..945463609 100644 --- a/README.md +++ b/README.md @@ -434,7 +434,7 @@ import { fetch } from 'undici'; // as one example import OpenAI from 'openai'; const client = new OpenAI({ - fetch: async (url: RequestInfo, init?: RequestInfo): => { + fetch: async (url: RequestInfo, init?: RequestInfo): Response => { console.log('About to make request', url, init); const response = await fetch(url, init); console.log('Got response', response); From 0cfb8a0f8fb58de248d80332bbc20055269d2f84 Mon Sep 17 00:00:00 2001 From: Mohit Yadav Date: Fri, 12 Jan 2024 12:20:35 -0500 Subject: [PATCH 247/725] docs: make return a promise, fix accidental commit --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 945463609..6464ab4c0 100644 --- a/README.md +++ b/README.md @@ -434,8 +434,8 @@ import { fetch } from 'undici'; // as one example import OpenAI from 'openai'; const client = new OpenAI({ - fetch: async (url: RequestInfo, init?: RequestInfo): Response => { - console.log('About to make request', url, init); + fetch: async (url: RequestInfo, init?: RequestInfo): Promise => { + console.log('About to make a request', url, init); const response = await fetch(url, init); console.log('Got response', response); return response; From 1da120016719f6eb36e21eddeefe8574205e4b97 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 12 Jan 2024 13:39:46 -0500 Subject: [PATCH 248/725] chore(ecosystem-tests): fix flaky tests and remove fine tuning calls (#623) --- ecosystem-tests/bun/openai.test.ts | 8 ++++---- ecosystem-tests/node-ts-cjs-auto/tests/test.ts | 10 +++++----- ecosystem-tests/node-ts-cjs-web/tests/test-jsdom.ts | 8 ++++---- ecosystem-tests/node-ts-cjs-web/tests/test-node.ts | 8 ++++---- ecosystem-tests/node-ts-cjs/tests/test-jsdom.ts | 8 ++++---- ecosystem-tests/node-ts-cjs/tests/test-node.ts | 10 +++++----- ecosystem-tests/node-ts-esm-auto/tests/test.ts | 10 +++++----- ecosystem-tests/node-ts-esm-web/tests/test.ts | 8 ++++---- ecosystem-tests/node-ts-esm/tests/test.ts | 10 +++++----- ecosystem-tests/node-ts4.5-jest27/tests/test.ts | 10 +++++----- ecosystem-tests/ts-browser-webpack/src/index.ts | 8 ++++---- .../vercel-edge/src/pages/api/query-params.ts | 2 +- 12 files changed, 50 insertions(+), 50 deletions(-) diff --git a/ecosystem-tests/bun/openai.test.ts b/ecosystem-tests/bun/openai.test.ts index 6eb1ca947..867d547ad 100644 --- a/ecosystem-tests/bun/openai.test.ts +++ b/ecosystem-tests/bun/openai.test.ts @@ -130,7 +130,7 @@ if (typeof Blob !== 'undefined') { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); } test('toFile handles Uint8Array', async function () { @@ -142,7 +142,7 @@ test('toFile handles Uint8Array', async function () { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); test('toFile handles ArrayBuffer', async function () { const result = await client.files.create({ @@ -153,7 +153,7 @@ test('toFile handles ArrayBuffer', async function () { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); test('toFile handles DataView', async function () { const result = await client.files.create({ @@ -164,5 +164,5 @@ test('toFile handles DataView', async function () { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); diff --git a/ecosystem-tests/node-ts-cjs-auto/tests/test.ts b/ecosystem-tests/node-ts-cjs-auto/tests/test.ts index bc0cbbd8d..b44959121 100644 --- a/ecosystem-tests/node-ts-cjs-auto/tests/test.ts +++ b/ecosystem-tests/node-ts-cjs-auto/tests/test.ts @@ -207,7 +207,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); // @ts-ignore avoid DOM lib for testing purposes if (typeof Blob !== 'undefined') { @@ -220,7 +220,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); } it('handles Uint8Array', async function () { @@ -232,7 +232,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ @@ -243,7 +243,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles DataView', async function () { const result = await client.files.create({ @@ -254,6 +254,6 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); }); diff --git a/ecosystem-tests/node-ts-cjs-web/tests/test-jsdom.ts b/ecosystem-tests/node-ts-cjs-web/tests/test-jsdom.ts index 3abc9e6e4..5ffe2dd50 100644 --- a/ecosystem-tests/node-ts-cjs-web/tests/test-jsdom.ts +++ b/ecosystem-tests/node-ts-cjs-web/tests/test-jsdom.ts @@ -140,27 +140,27 @@ describe.skip('toFile', () => { file: await toFile(new Blob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles Uint8Array', async function () { const result = await client.files.create({ file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles DataView', async function () { const result = await client.files.create({ file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); }); diff --git a/ecosystem-tests/node-ts-cjs-web/tests/test-node.ts b/ecosystem-tests/node-ts-cjs-web/tests/test-node.ts index 9d1abf435..428e6ec09 100644 --- a/ecosystem-tests/node-ts-cjs-web/tests/test-node.ts +++ b/ecosystem-tests/node-ts-cjs-web/tests/test-node.ts @@ -126,7 +126,7 @@ describe('toFile', () => { file: await toFile(new Blob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); } it('handles Uint8Array', async function () { @@ -134,20 +134,20 @@ describe('toFile', () => { file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles DataView', async function () { const result = await client.files.create({ file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); }); diff --git a/ecosystem-tests/node-ts-cjs/tests/test-jsdom.ts b/ecosystem-tests/node-ts-cjs/tests/test-jsdom.ts index 1f5d75f28..178bf8c97 100644 --- a/ecosystem-tests/node-ts-cjs/tests/test-jsdom.ts +++ b/ecosystem-tests/node-ts-cjs/tests/test-jsdom.ts @@ -108,7 +108,7 @@ describe.skip('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles Uint8Array', async function () { const result = await client.files.create({ @@ -119,7 +119,7 @@ describe.skip('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ @@ -130,7 +130,7 @@ describe.skip('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles DataView', async function () { const result = await client.files.create({ @@ -141,6 +141,6 @@ describe.skip('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); }); diff --git a/ecosystem-tests/node-ts-cjs/tests/test-node.ts b/ecosystem-tests/node-ts-cjs/tests/test-node.ts index 14db8938b..f3c6c281f 100644 --- a/ecosystem-tests/node-ts-cjs/tests/test-node.ts +++ b/ecosystem-tests/node-ts-cjs/tests/test-node.ts @@ -142,7 +142,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); // @ts-ignore avoid DOM lib for testing purposes if (typeof Blob !== 'undefined') { @@ -155,7 +155,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); } it('handles Uint8Array', async function () { @@ -167,7 +167,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ @@ -178,7 +178,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles DataView', async function () { const result = await client.files.create({ @@ -189,6 +189,6 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); }); diff --git a/ecosystem-tests/node-ts-esm-auto/tests/test.ts b/ecosystem-tests/node-ts-esm-auto/tests/test.ts index d8ecba1ef..44858b844 100644 --- a/ecosystem-tests/node-ts-esm-auto/tests/test.ts +++ b/ecosystem-tests/node-ts-esm-auto/tests/test.ts @@ -144,7 +144,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); // @ts-ignore avoid DOM lib for testing purposes if (typeof Blob !== 'undefined') { @@ -157,7 +157,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); } it('handles Uint8Array', async function () { @@ -169,7 +169,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ @@ -180,7 +180,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles DataView', async function () { const result = await client.files.create({ @@ -191,6 +191,6 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); }); diff --git a/ecosystem-tests/node-ts-esm-web/tests/test.ts b/ecosystem-tests/node-ts-esm-web/tests/test.ts index 7b9b6b6d9..684d860c2 100644 --- a/ecosystem-tests/node-ts-esm-web/tests/test.ts +++ b/ecosystem-tests/node-ts-esm-web/tests/test.ts @@ -127,7 +127,7 @@ describe('toFile', () => { file: await toFile(new Blob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); } it('handles Uint8Array', async function () { @@ -135,20 +135,20 @@ describe('toFile', () => { file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles DataView', async function () { const result = await client.files.create({ file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); }); diff --git a/ecosystem-tests/node-ts-esm/tests/test.ts b/ecosystem-tests/node-ts-esm/tests/test.ts index c62012114..9a55d9eef 100644 --- a/ecosystem-tests/node-ts-esm/tests/test.ts +++ b/ecosystem-tests/node-ts-esm/tests/test.ts @@ -123,7 +123,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); // @ts-ignore avoid DOM lib for testing purposes if (typeof Blob !== 'undefined') { @@ -136,7 +136,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); } it('handles Uint8Array', async function () { @@ -148,7 +148,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ @@ -159,7 +159,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles DataView', async function () { const result = await client.files.create({ @@ -170,6 +170,6 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); }); diff --git a/ecosystem-tests/node-ts4.5-jest27/tests/test.ts b/ecosystem-tests/node-ts4.5-jest27/tests/test.ts index 14db8938b..f3c6c281f 100644 --- a/ecosystem-tests/node-ts4.5-jest27/tests/test.ts +++ b/ecosystem-tests/node-ts4.5-jest27/tests/test.ts @@ -142,7 +142,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); // @ts-ignore avoid DOM lib for testing purposes if (typeof Blob !== 'undefined') { @@ -155,7 +155,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); } it('handles Uint8Array', async function () { @@ -167,7 +167,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ @@ -178,7 +178,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles DataView', async function () { const result = await client.files.create({ @@ -189,6 +189,6 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); }); diff --git a/ecosystem-tests/ts-browser-webpack/src/index.ts b/ecosystem-tests/ts-browser-webpack/src/index.ts index a5e9101e3..7203c25ef 100644 --- a/ecosystem-tests/ts-browser-webpack/src/index.ts +++ b/ecosystem-tests/ts-browser-webpack/src/index.ts @@ -183,7 +183,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); } it('handles Uint8Array', async function () { @@ -191,21 +191,21 @@ describe('toFile', () => { file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); it('handles DataView', async function () { const result = await client.files.create({ file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.status).toEqual('uploaded'); + expect(result.filename).toEqual('finetunes.jsonl'); }); }); diff --git a/ecosystem-tests/vercel-edge/src/pages/api/query-params.ts b/ecosystem-tests/vercel-edge/src/pages/api/query-params.ts index 3f3ff4db3..0f0831846 100644 --- a/ecosystem-tests/vercel-edge/src/pages/api/query-params.ts +++ b/ecosystem-tests/vercel-edge/src/pages/api/query-params.ts @@ -14,7 +14,7 @@ export const config = { export default async (request: NextRequest) => { const openai = new OpenAI(); - const result = await openai.fineTunes.listEvents('ft-Gj8mUJrEPe9sIsnxJdbzye0Z', { stream: false }); + const result = await openai.beta.assistants.list({ limit: 10 }); return NextResponse.json(result); }; From cabd02aff60a21728b73adc55b1394eb8201fd91 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 12 Jan 2024 14:18:02 -0500 Subject: [PATCH 249/725] chore(ecosystem-tests): fix flaky tests and remove fine tuning calls (#625) --- ecosystem-tests/bun/openai.test.ts | 8 ++++---- ecosystem-tests/node-ts-cjs-auto/tests/test.ts | 10 +++++----- ecosystem-tests/node-ts-cjs-web/tests/test-jsdom.ts | 8 ++++---- ecosystem-tests/node-ts-cjs-web/tests/test-node.ts | 8 ++++---- ecosystem-tests/node-ts-cjs/tests/test-jsdom.ts | 8 ++++---- ecosystem-tests/node-ts-cjs/tests/test-node.ts | 10 +++++----- ecosystem-tests/node-ts-esm-auto/tests/test.ts | 10 +++++----- ecosystem-tests/node-ts-esm-web/tests/test.ts | 8 ++++---- ecosystem-tests/node-ts-esm/tests/test.ts | 10 +++++----- ecosystem-tests/node-ts4.5-jest27/tests/test.ts | 10 +++++----- ecosystem-tests/ts-browser-webpack/src/index.ts | 8 ++++---- 11 files changed, 49 insertions(+), 49 deletions(-) diff --git a/ecosystem-tests/bun/openai.test.ts b/ecosystem-tests/bun/openai.test.ts index 867d547ad..979a4962f 100644 --- a/ecosystem-tests/bun/openai.test.ts +++ b/ecosystem-tests/bun/openai.test.ts @@ -130,7 +130,7 @@ if (typeof Blob !== 'undefined') { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); } test('toFile handles Uint8Array', async function () { @@ -142,7 +142,7 @@ test('toFile handles Uint8Array', async function () { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); test('toFile handles ArrayBuffer', async function () { const result = await client.files.create({ @@ -153,7 +153,7 @@ test('toFile handles ArrayBuffer', async function () { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); test('toFile handles DataView', async function () { const result = await client.files.create({ @@ -164,5 +164,5 @@ test('toFile handles DataView', async function () { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); diff --git a/ecosystem-tests/node-ts-cjs-auto/tests/test.ts b/ecosystem-tests/node-ts-cjs-auto/tests/test.ts index b44959121..84c99ee5a 100644 --- a/ecosystem-tests/node-ts-cjs-auto/tests/test.ts +++ b/ecosystem-tests/node-ts-cjs-auto/tests/test.ts @@ -207,7 +207,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); // @ts-ignore avoid DOM lib for testing purposes if (typeof Blob !== 'undefined') { @@ -220,7 +220,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); } it('handles Uint8Array', async function () { @@ -232,7 +232,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ @@ -243,7 +243,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles DataView', async function () { const result = await client.files.create({ @@ -254,6 +254,6 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); }); diff --git a/ecosystem-tests/node-ts-cjs-web/tests/test-jsdom.ts b/ecosystem-tests/node-ts-cjs-web/tests/test-jsdom.ts index 5ffe2dd50..adcb44858 100644 --- a/ecosystem-tests/node-ts-cjs-web/tests/test-jsdom.ts +++ b/ecosystem-tests/node-ts-cjs-web/tests/test-jsdom.ts @@ -140,27 +140,27 @@ describe.skip('toFile', () => { file: await toFile(new Blob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles Uint8Array', async function () { const result = await client.files.create({ file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles DataView', async function () { const result = await client.files.create({ file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); }); diff --git a/ecosystem-tests/node-ts-cjs-web/tests/test-node.ts b/ecosystem-tests/node-ts-cjs-web/tests/test-node.ts index 428e6ec09..1784f8d5e 100644 --- a/ecosystem-tests/node-ts-cjs-web/tests/test-node.ts +++ b/ecosystem-tests/node-ts-cjs-web/tests/test-node.ts @@ -126,7 +126,7 @@ describe('toFile', () => { file: await toFile(new Blob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); } it('handles Uint8Array', async function () { @@ -134,20 +134,20 @@ describe('toFile', () => { file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles DataView', async function () { const result = await client.files.create({ file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); }); diff --git a/ecosystem-tests/node-ts-cjs/tests/test-jsdom.ts b/ecosystem-tests/node-ts-cjs/tests/test-jsdom.ts index 178bf8c97..9908e45f8 100644 --- a/ecosystem-tests/node-ts-cjs/tests/test-jsdom.ts +++ b/ecosystem-tests/node-ts-cjs/tests/test-jsdom.ts @@ -108,7 +108,7 @@ describe.skip('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles Uint8Array', async function () { const result = await client.files.create({ @@ -119,7 +119,7 @@ describe.skip('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ @@ -130,7 +130,7 @@ describe.skip('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles DataView', async function () { const result = await client.files.create({ @@ -141,6 +141,6 @@ describe.skip('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); }); diff --git a/ecosystem-tests/node-ts-cjs/tests/test-node.ts b/ecosystem-tests/node-ts-cjs/tests/test-node.ts index f3c6c281f..5ece57019 100644 --- a/ecosystem-tests/node-ts-cjs/tests/test-node.ts +++ b/ecosystem-tests/node-ts-cjs/tests/test-node.ts @@ -142,7 +142,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); // @ts-ignore avoid DOM lib for testing purposes if (typeof Blob !== 'undefined') { @@ -155,7 +155,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); } it('handles Uint8Array', async function () { @@ -167,7 +167,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ @@ -178,7 +178,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles DataView', async function () { const result = await client.files.create({ @@ -189,6 +189,6 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); }); diff --git a/ecosystem-tests/node-ts-esm-auto/tests/test.ts b/ecosystem-tests/node-ts-esm-auto/tests/test.ts index 44858b844..d28bc2b37 100644 --- a/ecosystem-tests/node-ts-esm-auto/tests/test.ts +++ b/ecosystem-tests/node-ts-esm-auto/tests/test.ts @@ -144,7 +144,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); // @ts-ignore avoid DOM lib for testing purposes if (typeof Blob !== 'undefined') { @@ -157,7 +157,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); } it('handles Uint8Array', async function () { @@ -169,7 +169,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ @@ -180,7 +180,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles DataView', async function () { const result = await client.files.create({ @@ -191,6 +191,6 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); }); diff --git a/ecosystem-tests/node-ts-esm-web/tests/test.ts b/ecosystem-tests/node-ts-esm-web/tests/test.ts index 684d860c2..e0055c89f 100644 --- a/ecosystem-tests/node-ts-esm-web/tests/test.ts +++ b/ecosystem-tests/node-ts-esm-web/tests/test.ts @@ -127,7 +127,7 @@ describe('toFile', () => { file: await toFile(new Blob([new TextEncoder().encode(fineTune)]), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); } it('handles Uint8Array', async function () { @@ -135,20 +135,20 @@ describe('toFile', () => { file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles DataView', async function () { const result = await client.files.create({ file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); }); diff --git a/ecosystem-tests/node-ts-esm/tests/test.ts b/ecosystem-tests/node-ts-esm/tests/test.ts index 9a55d9eef..906220e95 100644 --- a/ecosystem-tests/node-ts-esm/tests/test.ts +++ b/ecosystem-tests/node-ts-esm/tests/test.ts @@ -123,7 +123,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); // @ts-ignore avoid DOM lib for testing purposes if (typeof Blob !== 'undefined') { @@ -136,7 +136,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); } it('handles Uint8Array', async function () { @@ -148,7 +148,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ @@ -159,7 +159,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles DataView', async function () { const result = await client.files.create({ @@ -170,6 +170,6 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); }); diff --git a/ecosystem-tests/node-ts4.5-jest27/tests/test.ts b/ecosystem-tests/node-ts4.5-jest27/tests/test.ts index f3c6c281f..5ece57019 100644 --- a/ecosystem-tests/node-ts4.5-jest27/tests/test.ts +++ b/ecosystem-tests/node-ts4.5-jest27/tests/test.ts @@ -142,7 +142,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); // @ts-ignore avoid DOM lib for testing purposes if (typeof Blob !== 'undefined') { @@ -155,7 +155,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); } it('handles Uint8Array', async function () { @@ -167,7 +167,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ @@ -178,7 +178,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles DataView', async function () { const result = await client.files.create({ @@ -189,6 +189,6 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); }); diff --git a/ecosystem-tests/ts-browser-webpack/src/index.ts b/ecosystem-tests/ts-browser-webpack/src/index.ts index 7203c25ef..b7821f568 100644 --- a/ecosystem-tests/ts-browser-webpack/src/index.ts +++ b/ecosystem-tests/ts-browser-webpack/src/index.ts @@ -183,7 +183,7 @@ describe('toFile', () => { ), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); } it('handles Uint8Array', async function () { @@ -191,21 +191,21 @@ describe('toFile', () => { file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles ArrayBuffer', async function () { const result = await client.files.create({ file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); it('handles DataView', async function () { const result = await client.files.create({ file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), purpose: 'fine-tune', }); - expect(result.filename).toEqual('finetunes.jsonl'); + expect(result.filename).toEqual('finetune.jsonl'); }); }); From 645600452f600a5d99c9f4cddc0ced744062448e Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 12 Jan 2024 14:18:27 -0500 Subject: [PATCH 250/725] release: 4.24.6 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a4cf1cca1..10b4a1e01 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.24.5" + ".": "4.24.6" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 0723b9f3b..f74ca1a57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 4.24.6 (2024-01-12) + +Full Changelog: [v4.24.5...v4.24.6](https://github.com/openai/openai-node/compare/v4.24.5...v4.24.6) + +### Chores + +* **ecosystem-tests:** fix flaky tests and remove fine tuning calls ([#623](https://github.com/openai/openai-node/issues/623)) ([258d79f](https://github.com/openai/openai-node/commit/258d79f52bb31f4f3723f6f4b97ebe8f3fa187bd)) +* **ecosystem-tests:** fix flaky tests and remove fine tuning calls ([#625](https://github.com/openai/openai-node/issues/625)) ([58e5fd8](https://github.com/openai/openai-node/commit/58e5fd8f27052be6ac9587256b161f4bf3a3805f)) + ## 4.24.5 (2024-01-12) Full Changelog: [v4.24.4...v4.24.5](https://github.com/openai/openai-node/compare/v4.24.4...v4.24.5) diff --git a/README.md b/README.md index 75b9603f8..10ebcf93c 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.24.5/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.24.6/mod.ts'; ``` diff --git a/build-deno b/build-deno index 579ccc6a5..b392dcc9f 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.24.5/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.24.6/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 9cc8feab8..85b3ca712 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.24.5", + "version": "4.24.6", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index c2bfeae70..8bcce06e4 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.24.5'; // x-release-please-version +export const VERSION = '4.24.6'; // x-release-please-version From adbf4b09b7304e6aa4352a726b617be1969fba9e Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 12 Jan 2024 15:11:15 -0500 Subject: [PATCH 251/725] chore(ecosystem-tests): fix flaky vercel-edge, cloudflare-worker, and deno tests (#626) --- .../cloudflare-worker/src/uploadWebApiTestCases.ts | 10 +++++----- ecosystem-tests/deno/main_test.ts | 8 ++++---- .../vercel-edge/src/uploadWebApiTestCases.ts | 10 +++++----- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts b/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts index f7651a992..39225fb8d 100644 --- a/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts +++ b/ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts @@ -116,31 +116,31 @@ export function uploadWebApiTestCases({ // @ts-expect-error we don't type support for `string` to avoid a footgun with passing the file path const file = await toFile(fineTune, 'finetune.jsonl'); const result = await client.files.create({ file, purpose: 'fine-tune' }); - expectEqual(result.status, 'uploaded'); + expectEqual(result.filename, 'finetune.jsonl'); }); it('toFile handles Blob', async () => { const result = await client.files.create({ file: await toFile(new Blob([fineTune]), 'finetune.jsonl'), purpose: 'fine-tune' }); - expectEqual(result.status, 'uploaded'); + expectEqual(result.filename, 'finetune.jsonl'); }); it('toFile handles Uint8Array', async () => { const result = await client.files.create({ file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), purpose: 'fine-tune', }); - expectEqual(result.status, 'uploaded'); + expectEqual(result.filename, 'finetune.jsonl'); }); it('toFile handles ArrayBuffer', async () => { const result = await client.files.create({ file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), purpose: 'fine-tune', }); - expectEqual(result.status, 'uploaded'); + expectEqual(result.filename, 'finetune.jsonl'); }); it('toFile handles DataView', async () => { const result = await client.files.create({ file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), purpose: 'fine-tune', }); - expectEqual(result.status, 'uploaded'); + expectEqual(result.filename, 'finetune.jsonl'); }); } diff --git a/ecosystem-tests/deno/main_test.ts b/ecosystem-tests/deno/main_test.ts index 988b03d84..61b478cc5 100644 --- a/ecosystem-tests/deno/main_test.ts +++ b/ecosystem-tests/deno/main_test.ts @@ -105,26 +105,26 @@ Deno.test(async function toFileHandlesBlob() { file: await toFile(new Blob([fineTune]), 'finetune.jsonl'), purpose: 'fine-tune', }); - assertEquals(result.status, 'uploaded'); + assertEquals(result.filename, 'finetune.jsonl'); }); Deno.test(async function toFileHandlesUint8Array() { const result = await client.files.create({ file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), purpose: 'fine-tune', }); - assertEquals(result.status, 'uploaded'); + assertEquals(result.filename, 'finetune.jsonl'); }); Deno.test(async function toFileHandlesArrayBuffer() { const result = await client.files.create({ file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), purpose: 'fine-tune', }); - assertEquals(result.status, 'uploaded'); + assertEquals(result.filename, 'finetune.jsonl'); }); Deno.test(async function toFileHandlesDataView() { const result = await client.files.create({ file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.json'), purpose: 'fine-tune', }); - assertEquals(result.status, 'uploaded'); + assertEquals(result.filename, 'finetune.jsonl'); }); diff --git a/ecosystem-tests/vercel-edge/src/uploadWebApiTestCases.ts b/ecosystem-tests/vercel-edge/src/uploadWebApiTestCases.ts index 865aa86a5..3f2c6b468 100644 --- a/ecosystem-tests/vercel-edge/src/uploadWebApiTestCases.ts +++ b/ecosystem-tests/vercel-edge/src/uploadWebApiTestCases.ts @@ -147,28 +147,28 @@ export function uploadWebApiTestCases({ // @ts-ignore this only doesn't error in vercel build... const file = await toFile(fineTune, 'finetune.jsonl'); const result = await client.files.create({ file, purpose: 'fine-tune' }); - expectEqual(result.status, 'uploaded'); + expectEqual(result.filename, 'finetune.jsonl'); }); it('toFile handles Blob', async () => { const result = await client.files.create({ file: await toFile(new Blob([fineTune]), 'finetune.jsonl'), purpose: 'fine-tune', }); - expectEqual(result.status, 'uploaded'); + expectEqual(result.filename, 'finetune.jsonl'); }); it('toFile handles Uint8Array', async () => { const result = await client.files.create({ file: await toFile(new TextEncoder().encode(fineTune), 'finetune.jsonl'), purpose: 'fine-tune', }); - expectEqual(result.status, 'uploaded'); + expectEqual(result.filename, 'finetune.jsonl'); }); it('toFile handles ArrayBuffer', async () => { const result = await client.files.create({ file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'), purpose: 'fine-tune', }); - expectEqual(result.status, 'uploaded'); + expectEqual(result.filename, 'finetune.jsonl'); }); if (runtime !== 'edge') { // this fails in edge for some reason @@ -177,7 +177,7 @@ export function uploadWebApiTestCases({ file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), purpose: 'fine-tune', }); - expectEqual(result.status, 'uploaded'); + expectEqual(result.filename, 'finetune.jsonl'); }); } } From ffad11b701dfab3162e1a609d553ef8ddb81010c Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 12 Jan 2024 15:34:29 -0500 Subject: [PATCH 252/725] chore(ecosystem-tests): fix typo in deno test (#628) --- ecosystem-tests/deno/main_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecosystem-tests/deno/main_test.ts b/ecosystem-tests/deno/main_test.ts index 61b478cc5..b841b4053 100644 --- a/ecosystem-tests/deno/main_test.ts +++ b/ecosystem-tests/deno/main_test.ts @@ -123,7 +123,7 @@ Deno.test(async function toFileHandlesArrayBuffer() { }); Deno.test(async function toFileHandlesDataView() { const result = await client.files.create({ - file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.json'), + file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'), purpose: 'fine-tune', }); assertEquals(result.filename, 'finetune.jsonl'); From d67c11b40deee82110d8bef18931ebafbe58bf8a Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sat, 13 Jan 2024 00:06:13 -0500 Subject: [PATCH 253/725] release: 4.24.7 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 10b4a1e01..4b35ba22d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.24.6" + ".": "4.24.7" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f74ca1a57..499346e82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 4.24.7 (2024-01-13) + +Full Changelog: [v4.24.6...v4.24.7](https://github.com/openai/openai-node/compare/v4.24.6...v4.24.7) + +### Chores + +* **ecosystem-tests:** fix flaky vercel-edge, cloudflare-worker, and deno tests ([#626](https://github.com/openai/openai-node/issues/626)) ([ae412a5](https://github.com/openai/openai-node/commit/ae412a5f12e701e07e71bd9791c55a56858e8383)) +* **ecosystem-tests:** fix typo in deno test ([#628](https://github.com/openai/openai-node/issues/628)) ([048ec94](https://github.com/openai/openai-node/commit/048ec943f8d12acba9829c35ebf0b2d3f24930c8)) + ## 4.24.6 (2024-01-12) Full Changelog: [v4.24.5...v4.24.6](https://github.com/openai/openai-node/compare/v4.24.5...v4.24.6) diff --git a/README.md b/README.md index 10ebcf93c..d5aefddec 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.24.6/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.24.7/mod.ts'; ``` diff --git a/build-deno b/build-deno index b392dcc9f..eeaab505a 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.24.6/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.24.7/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 85b3ca712..44d39307b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.24.6", + "version": "4.24.7", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 8bcce06e4..d37aaf7aa 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.24.6'; // x-release-please-version +export const VERSION = '4.24.7'; // x-release-please-version From af88d16176b2437820931308dbfabd66684bf944 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 15 Jan 2024 09:10:50 -0500 Subject: [PATCH 254/725] chore(internal): update comment (#631) --- tests/api-resources/audio/speech.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api-resources/audio/speech.test.ts b/tests/api-resources/audio/speech.test.ts index 02e542206..b0cf1a71c 100644 --- a/tests/api-resources/audio/speech.test.ts +++ b/tests/api-resources/audio/speech.test.ts @@ -8,7 +8,7 @@ const openai = new OpenAI({ }); describe('resource speech', () => { - // Mocked tests are currently broken + // binary tests are currently broken test.skip('create: required and optional params', async () => { const response = await openai.audio.speech.create({ input: 'string', From 33aca5512434ed05273f16c19d9c02f1d06bb35f Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 17 Jan 2024 11:19:08 -0500 Subject: [PATCH 255/725] chore(internal): debug logging for retries; speculative retry-after-ms support (#633) --- src/core.ts | 28 +++++++++++++------- tests/index.test.ts | 63 ++++++++++++++++++++++++++++++++++++++++++--- 2 files changed, 77 insertions(+), 14 deletions(-) diff --git a/src/core.ts b/src/core.ts index 8601a1388..6e3b8584e 100644 --- a/src/core.ts +++ b/src/core.ts @@ -417,14 +417,17 @@ export abstract class APIClient { if (!response.ok) { if (retriesRemaining && this.shouldRetry(response)) { + const retryMessage = `retrying, ${retriesRemaining} attempts remaining`; + debug(`response (error; ${retryMessage})`, response.status, url, responseHeaders); return this.retryRequest(options, retriesRemaining, responseHeaders); } const errText = await response.text().catch((e) => castToError(e).message); const errJSON = safeJSON(errText); const errMessage = errJSON ? undefined : errText; + const retryMessage = retriesRemaining ? `(error; no more retries left)` : `(error; not retryable)`; - debug('response', response.status, url, responseHeaders, errMessage); + debug(`response (error; ${retryMessage})`, response.status, url, responseHeaders, errMessage); const err = this.makeStatusError(response.status, errJSON, errMessage, responseHeaders); throw err; @@ -529,11 +532,21 @@ export abstract class APIClient { retriesRemaining: number, responseHeaders?: Headers | undefined, ): Promise { - // About the Retry-After header: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Retry-After let timeoutMillis: number | undefined; + + // Note the `retry-after-ms` header may not be standard, but is a good idea and we'd like proactive support for it. + const retryAfterMillisHeader = responseHeaders?.['retry-after-ms']; + if (retryAfterMillisHeader) { + const timeoutMs = parseFloat(retryAfterMillisHeader); + if (!Number.isNaN(timeoutMs)) { + timeoutMillis = timeoutMs; + } + } + + // About the Retry-After header: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Retry-After const retryAfterHeader = responseHeaders?.['retry-after']; - if (retryAfterHeader) { - const timeoutSeconds = parseInt(retryAfterHeader); + if (retryAfterHeader && !timeoutMillis) { + const timeoutSeconds = parseFloat(retryAfterHeader); if (!Number.isNaN(timeoutSeconds)) { timeoutMillis = timeoutSeconds * 1000; } else { @@ -543,12 +556,7 @@ export abstract class APIClient { // If the API asks us to wait a certain amount of time (and it's a reasonable amount), // just do what it says, but otherwise calculate a default - if ( - !timeoutMillis || - !Number.isInteger(timeoutMillis) || - timeoutMillis <= 0 || - timeoutMillis > 60 * 1000 - ) { + if (!(timeoutMillis && 0 <= timeoutMillis && timeoutMillis < 60 * 1000)) { const maxRetries = options.maxRetries ?? this.maxRetries; timeoutMillis = this.calculateDefaultRetryTimeoutMillis(retriesRemaining, maxRetries); } diff --git a/tests/index.test.ts b/tests/index.test.ts index 6b386b04c..3fb42a80a 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -217,17 +217,18 @@ describe('request building', () => { }); describe('retries', () => { - test('single retry', async () => { + test('retry on timeout', async () => { let count = 0; const testFetch = async (url: RequestInfo, { signal }: RequestInit = {}): Promise => { - if (!count++) + if (count++ === 0) { return new Promise( (resolve, reject) => signal?.addEventListener('abort', () => reject(new Error('timed out'))), ); + } return new Response(JSON.stringify({ a: 1 }), { headers: { 'Content-Type': 'application/json' } }); }; - const client = new OpenAI({ apiKey: 'My API Key', timeout: 2000, fetch: testFetch }); + const client = new OpenAI({ apiKey: 'My API Key', timeout: 10, fetch: testFetch }); expect(await client.request({ path: '/foo', method: 'get' })).toEqual({ a: 1 }); expect(count).toEqual(2); @@ -238,5 +239,59 @@ describe('retries', () => { .then((r) => r.text()), ).toEqual(JSON.stringify({ a: 1 })); expect(count).toEqual(3); - }, 10000); + }); + + test('retry on 429 with retry-after', async () => { + let count = 0; + const testFetch = async (url: RequestInfo, { signal }: RequestInit = {}): Promise => { + if (count++ === 0) { + return new Response(undefined, { + status: 429, + headers: { + 'Retry-After': '0.1', + }, + }); + } + return new Response(JSON.stringify({ a: 1 }), { headers: { 'Content-Type': 'application/json' } }); + }; + + const client = new OpenAI({ apiKey: 'My API Key', fetch: testFetch }); + + expect(await client.request({ path: '/foo', method: 'get' })).toEqual({ a: 1 }); + expect(count).toEqual(2); + expect( + await client + .request({ path: '/foo', method: 'get' }) + .asResponse() + .then((r) => r.text()), + ).toEqual(JSON.stringify({ a: 1 })); + expect(count).toEqual(3); + }); + + test('retry on 429 with retry-after-ms', async () => { + let count = 0; + const testFetch = async (url: RequestInfo, { signal }: RequestInit = {}): Promise => { + if (count++ === 0) { + return new Response(undefined, { + status: 429, + headers: { + 'Retry-After-Ms': '10', + }, + }); + } + return new Response(JSON.stringify({ a: 1 }), { headers: { 'Content-Type': 'application/json' } }); + }; + + const client = new OpenAI({ apiKey: 'My API Key', fetch: testFetch }); + + expect(await client.request({ path: '/foo', method: 'get' })).toEqual({ a: 1 }); + expect(count).toEqual(2); + expect( + await client + .request({ path: '/foo', method: 'get' }) + .asResponse() + .then((r) => r.text()), + ).toEqual(JSON.stringify({ a: 1 })); + expect(count).toEqual(3); + }); }); From 74e06ffe384708ef1e7fe8614683787152f1eb23 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 17 Jan 2024 12:54:48 -0500 Subject: [PATCH 256/725] fix(types): accept undefined for optional client options (#635) --- src/index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/index.ts b/src/index.ts index f72850cf9..417f52e38 100644 --- a/src/index.ts +++ b/src/index.ts @@ -11,12 +11,12 @@ export interface ClientOptions { /** * Defaults to process.env['OPENAI_API_KEY']. */ - apiKey?: string; + apiKey?: string | undefined; /** * Defaults to process.env['OPENAI_ORG_ID']. */ - organization?: string | null; + organization?: string | null | undefined; /** * Override the default base URL for the API, e.g., "https://api.example.com/v2/" @@ -91,8 +91,8 @@ export class OpenAI extends Core.APIClient { /** * API Client for interfacing with the OpenAI API. * - * @param {string} [opts.apiKey=process.env['OPENAI_API_KEY'] ?? undefined] - * @param {string | null} [opts.organization=process.env['OPENAI_ORG_ID'] ?? null] + * @param {string | undefined} [opts.apiKey=process.env['OPENAI_API_KEY'] ?? undefined] + * @param {string | null | undefined} [opts.organization=process.env['OPENAI_ORG_ID'] ?? null] * @param {string} [opts.baseURL=process.env['OPENAI_BASE_URL'] ?? https://api.openai.com/v1] - Override the default base URL for the API. * @param {number} [opts.timeout=10 minutes] - The maximum amount of time (in milliseconds) the client will wait for a response before timing out. * @param {number} [opts.httpAgent] - An HTTP agent used to manage HTTP(s) connections. From fa02e4883fdb01138f3f25d87ed2e75d236f61f2 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 18 Jan 2024 14:06:58 -0500 Subject: [PATCH 257/725] fix: handle system_fingerprint in streaming helpers (#636) --- src/lib/ChatCompletionStream.ts | 132 ++++++++++++++++++++------------ 1 file changed, 81 insertions(+), 51 deletions(-) diff --git a/src/lib/ChatCompletionStream.ts b/src/lib/ChatCompletionStream.ts index c5b3efa6a..a2aa7032e 100644 --- a/src/lib/ChatCompletionStream.ts +++ b/src/lib/ChatCompletionStream.ts @@ -156,16 +156,19 @@ export class ChatCompletionStream for (const { delta, finish_reason, index, logprobs = null, ...other } of chunk.choices) { let choice = snapshot.choices[index]; if (!choice) { - snapshot.choices[index] = { finish_reason, index, message: delta, logprobs, ...other }; - continue; + choice = snapshot.choices[index] = { finish_reason, index, message: {}, logprobs, ...other }; } if (logprobs) { if (!choice.logprobs) { - choice.logprobs = logprobs; - } else if (logprobs.content) { - choice.logprobs.content ??= []; - choice.logprobs.content.push(...logprobs.content); + choice.logprobs = Object.assign({}, logprobs); + } else { + const { content, ...rest } = logprobs; + Object.assign(choice.logprobs, rest); + if (content) { + choice.logprobs.content ??= []; + choice.logprobs.content.push(...content); + } } } @@ -173,7 +176,8 @@ export class ChatCompletionStream Object.assign(choice, other); if (!delta) continue; // Shouldn't happen; just in case. - const { content, function_call, role, tool_calls } = delta; + const { content, function_call, role, tool_calls, ...rest } = delta; + Object.assign(choice.message, rest); if (content) choice.message.content = (choice.message.content || '') + content; if (role) choice.message.role = role; @@ -190,8 +194,9 @@ export class ChatCompletionStream } if (tool_calls) { if (!choice.message.tool_calls) choice.message.tool_calls = []; - for (const { index, id, type, function: fn } of tool_calls) { + for (const { index, id, type, function: fn, ...rest } of tool_calls) { const tool_call = (choice.message.tool_calls[index] ??= {}); + Object.assign(tool_call, rest); if (id) tool_call.id = id; if (type) tool_call.type = type; if (fn) tool_call.function ??= { arguments: '' }; @@ -248,59 +253,72 @@ export class ChatCompletionStream } function finalizeChatCompletion(snapshot: ChatCompletionSnapshot): ChatCompletion { - const { id, choices, created, model } = snapshot; + const { id, choices, created, model, system_fingerprint, ...rest } = snapshot; return { + ...rest, id, - choices: choices.map(({ message, finish_reason, index, logprobs }): ChatCompletion.Choice => { - if (!finish_reason) throw new OpenAIError(`missing finish_reason for choice ${index}`); - const { content = null, function_call, tool_calls } = message; - const role = message.role as 'assistant'; // this is what we expect; in theory it could be different which would make our types a slight lie but would be fine. - if (!role) throw new OpenAIError(`missing role for choice ${index}`); - if (function_call) { - const { arguments: args, name } = function_call; - if (args == null) throw new OpenAIError(`missing function_call.arguments for choice ${index}`); - if (!name) throw new OpenAIError(`missing function_call.name for choice ${index}`); + choices: choices.map( + ({ message, finish_reason, index, logprobs, ...choiceRest }): ChatCompletion.Choice => { + if (!finish_reason) throw new OpenAIError(`missing finish_reason for choice ${index}`); + const { content = null, function_call, tool_calls, ...messageRest } = message; + const role = message.role as 'assistant'; // this is what we expect; in theory it could be different which would make our types a slight lie but would be fine. + if (!role) throw new OpenAIError(`missing role for choice ${index}`); + if (function_call) { + const { arguments: args, name } = function_call; + if (args == null) throw new OpenAIError(`missing function_call.arguments for choice ${index}`); + if (!name) throw new OpenAIError(`missing function_call.name for choice ${index}`); + return { + ...choiceRest, + message: { content, function_call: { arguments: args, name }, role }, + finish_reason, + index, + logprobs, + }; + } + if (tool_calls) { + return { + ...choiceRest, + index, + finish_reason, + logprobs, + message: { + ...messageRest, + role, + content, + tool_calls: tool_calls.map((tool_call, i) => { + const { function: fn, type, id, ...toolRest } = tool_call; + const { arguments: args, name, ...fnRest } = fn || {}; + if (id == null) + throw new OpenAIError(`missing choices[${index}].tool_calls[${i}].id\n${str(snapshot)}`); + if (type == null) + throw new OpenAIError(`missing choices[${index}].tool_calls[${i}].type\n${str(snapshot)}`); + if (name == null) + throw new OpenAIError( + `missing choices[${index}].tool_calls[${i}].function.name\n${str(snapshot)}`, + ); + if (args == null) + throw new OpenAIError( + `missing choices[${index}].tool_calls[${i}].function.arguments\n${str(snapshot)}`, + ); + + return { ...toolRest, id, type, function: { ...fnRest, name, arguments: args } }; + }), + }, + }; + } return { - message: { content, function_call: { arguments: args, name }, role }, + ...choiceRest, + message: { ...messageRest, content, role }, finish_reason, index, logprobs, }; - } - if (tool_calls) { - return { - index, - finish_reason, - logprobs, - message: { - role, - content, - tool_calls: tool_calls.map((tool_call, i) => { - const { function: fn, type, id } = tool_call; - const { arguments: args, name } = fn || {}; - if (id == null) - throw new OpenAIError(`missing choices[${index}].tool_calls[${i}].id\n${str(snapshot)}`); - if (type == null) - throw new OpenAIError(`missing choices[${index}].tool_calls[${i}].type\n${str(snapshot)}`); - if (name == null) - throw new OpenAIError( - `missing choices[${index}].tool_calls[${i}].function.name\n${str(snapshot)}`, - ); - if (args == null) - throw new OpenAIError( - `missing choices[${index}].tool_calls[${i}].function.arguments\n${str(snapshot)}`, - ); - - return { id, type, function: { name, arguments: args } }; - }), - }, - }; - } - return { message: { content: content, role }, finish_reason, index, logprobs }; - }), + }, + ), created, model, object: 'chat.completion', + ...(system_fingerprint ? { system_fingerprint } : {}), }; } @@ -333,6 +351,18 @@ export interface ChatCompletionSnapshot { * The model to generate the completion. */ model: string; + + // Note we do not include an "object" type on the snapshot, + // because the object is not a valid "chat.completion" until finalized. + // object: 'chat.completion'; + + /** + * This fingerprint represents the backend configuration that the model runs with. + * + * Can be used in conjunction with the `seed` request parameter to understand when + * backend changes have been made that might impact determinism. + */ + system_fingerprint?: string; } export namespace ChatCompletionSnapshot { From 00a2d43ae24547e2381c5368dcd39721bda8c963 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 18 Jan 2024 16:59:26 -0500 Subject: [PATCH 258/725] fix: allow body type in RequestOptions to be null (#637) --- src/core.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.ts b/src/core.ts index 6e3b8584e..b7037bd50 100644 --- a/src/core.ts +++ b/src/core.ts @@ -725,7 +725,7 @@ export type RequestOptions | Readable> = method?: HTTPMethod; path?: string; query?: Req | undefined; - body?: Req | undefined; + body?: Req | null | undefined; headers?: Headers | undefined; maxRetries?: number; From ebc786b8330b0450724354fe169483d74beca7e8 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 19 Jan 2024 21:21:15 -0500 Subject: [PATCH 259/725] feat(api): add usage to runs and run steps (#640) --- src/resources/beta/threads/runs/runs.ts | 27 ++++++++++++++++++++++++ src/resources/beta/threads/runs/steps.ts | 27 ++++++++++++++++++++++++ 2 files changed, 54 insertions(+) diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 8709ebabe..749d2c7f6 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -264,6 +264,12 @@ export interface Run { * this run. */ tools: Array; + + /** + * Usage statistics related to the run. This value will be `null` if the run is not + * in a terminal state (i.e. `in_progress`, `queued`, etc.). + */ + usage: Run.Usage | null; } export namespace Run { @@ -332,6 +338,27 @@ export namespace Run { */ type: 'function'; } + + /** + * Usage statistics related to the run. This value will be `null` if the run is not + * in a terminal state (i.e. `in_progress`, `queued`, etc.). + */ + export interface Usage { + /** + * Number of completion tokens used over the course of the run. + */ + completion_tokens: number; + + /** + * Number of prompt tokens used over the course of the run. + */ + prompt_tokens: number; + + /** + * Total number of tokens used (prompt + completion). + */ + total_tokens: number; + } } export interface RunCreateParams { diff --git a/src/resources/beta/threads/runs/steps.ts b/src/resources/beta/threads/runs/steps.ts index 618237c74..c574c94d1 100644 --- a/src/resources/beta/threads/runs/steps.ts +++ b/src/resources/beta/threads/runs/steps.ts @@ -300,6 +300,12 @@ export interface RunStep { * The type of run step, which can be either `message_creation` or `tool_calls`. */ type: 'message_creation' | 'tool_calls'; + + /** + * Usage statistics related to the run step. This value will be `null` while the + * run step's status is `in_progress`. + */ + usage: RunStep.Usage | null; } export namespace RunStep { @@ -318,6 +324,27 @@ export namespace RunStep { */ message: string; } + + /** + * Usage statistics related to the run step. This value will be `null` while the + * run step's status is `in_progress`. + */ + export interface Usage { + /** + * Number of completion tokens used over the course of the run step. + */ + completion_tokens: number; + + /** + * Number of prompt tokens used over the course of the run step. + */ + prompt_tokens: number; + + /** + * Total number of tokens used (prompt + completion). + */ + total_tokens: number; + } } /** From b6e7177e4e03803db2dfb7ccb0a173e6ccf555b1 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sun, 21 Jan 2024 00:40:27 -0500 Subject: [PATCH 260/725] release: 4.25.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 21 +++++++++++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 26 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4b35ba22d..cff865d0e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.24.7" + ".": "4.25.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 499346e82..c8b59527f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## 4.25.0 (2024-01-21) + +Full Changelog: [v4.24.7...v4.25.0](https://github.com/openai/openai-node/compare/v4.24.7...v4.25.0) + +### Features + +* **api:** add usage to runs and run steps ([#640](https://github.com/openai/openai-node/issues/640)) ([3caa416](https://github.com/openai/openai-node/commit/3caa4166b8abb5bffb4c8be1495834b7f16af32d)) + + +### Bug Fixes + +* allow body type in RequestOptions to be null ([#637](https://github.com/openai/openai-node/issues/637)) ([c4f8a36](https://github.com/openai/openai-node/commit/c4f8a3698dc1d80439131c5097975d6a5db1b4e2)) +* handle system_fingerprint in streaming helpers ([#636](https://github.com/openai/openai-node/issues/636)) ([f273530](https://github.com/openai/openai-node/commit/f273530ac491300842aef463852821a1a27805fb)) +* **types:** accept undefined for optional client options ([#635](https://github.com/openai/openai-node/issues/635)) ([e48cd57](https://github.com/openai/openai-node/commit/e48cd57931cd0e81a77b55653cb1f663111dd733)) + + +### Chores + +* **internal:** debug logging for retries; speculative retry-after-ms support ([#633](https://github.com/openai/openai-node/issues/633)) ([fd64971](https://github.com/openai/openai-node/commit/fd64971612d1d7fcbd8a63885d333485bff68ab1)) +* **internal:** update comment ([#631](https://github.com/openai/openai-node/issues/631)) ([e109d40](https://github.com/openai/openai-node/commit/e109d40a5c02c5bf4586e54d92bf0e355d254c1b)) + ## 4.24.7 (2024-01-13) Full Changelog: [v4.24.6...v4.24.7](https://github.com/openai/openai-node/compare/v4.24.6...v4.24.7) diff --git a/README.md b/README.md index 088fa1839..15180212b 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.24.7/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.25.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index eeaab505a..1f4ede52f 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.24.7/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.25.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 44d39307b..70830d5f3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.24.7", + "version": "4.25.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index d37aaf7aa..5e6f1de75 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.24.7'; // x-release-please-version +export const VERSION = '4.25.0'; // x-release-please-version From d3fa4eca3f20a7b5d5524935c822fbaa52870a19 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 22 Jan 2024 10:48:03 -0500 Subject: [PATCH 261/725] chore(internal): add internal helpers & improve build scripts (#643) --- ecosystem-tests/bun/bun.lockb | Bin 2070 -> 2435 bytes ecosystem-tests/bun/sample1.mp3 | Bin 121671 -> 212490 bytes ecosystem-tests/node-ts-cjs-auto/sample1.mp3 | Bin 121671 -> 212490 bytes ecosystem-tests/node-ts-cjs-web/sample1.mp3 | Bin 121671 -> 212490 bytes ecosystem-tests/node-ts-cjs/sample1.mp3 | Bin 121671 -> 212490 bytes ecosystem-tests/node-ts-esm-auto/sample1.mp3 | Bin 121671 -> 212490 bytes ecosystem-tests/node-ts-esm-web/sample1.mp3 | Bin 121671 -> 212490 bytes ecosystem-tests/node-ts-esm/sample1.mp3 | Bin 121671 -> 212490 bytes ecosystem-tests/node-ts4.5-jest27/sample1.mp3 | Bin 121671 -> 212490 bytes helpers.md | 32 +++++++++--------- scripts/fix-index-exports.cjs | 6 +++- scripts/make-dist-package-json.cjs | 2 +- scripts/postprocess-files.cjs | 11 ++++-- src/core.ts | 11 ++++++ 14 files changed, 41 insertions(+), 21 deletions(-) diff --git a/ecosystem-tests/bun/bun.lockb b/ecosystem-tests/bun/bun.lockb index 4ece80c92f6623b82b55d2a0188549558d764dea..4cae9efcdc21c06ef938f2c9a392354166ff75de 100755 GIT binary patch literal 2435 zcmd5-TTc@~6yC)mr4mtr1aDX|s0h1lxzs8R!h;G3-oOhgBukyvm9j0n(^^pU)#%SK z`s9lyJ{l9Fi7z}DpM222;9u}NJKNnY7SO~PC+9ZjoH=La%Mln2B zFhW2jn@i27^(<4;IdehdN--L$ktAvA$Gf*KOhRf08e>95#_=z&W9jP<4t#tev=d-^ zwh6foA7OCEr;4sw&5(c`^0jawSgv||{ z$$)=)wF~qw5nl?PPeUW^r3FNiFT-;OH&)l^;#Ob8Aq?I`3)wfC=xbQ`rTFcMN*%geg8 z`f}e++DIj_hyPU~(?&V5{owN)I93bt;rX$Z zh6IG$eDvEB3Y=^KiI0K+_5)X63i&8luMn{$|3v7jlv`kF_xm?}aN7;khq@0Q?${2g z2{=uWJAr`DL`wHSBEYXtK>*ziAe2+PG6zcADL@l!Sg@TVgRX_nJOJtaGxD|q*YB$9 zOgH9~+p9glB4oP2E?je^k}FLMNj(eRdAR+=KGAR8?gXftouGm}I3j~qJR0>-(2aD; z(*lkjy$=D}zKb_*)s-&@ane^F)IZTWNj7EvgR`mgKXMQ&r(~WKN?K-0)eVbl*{oWA zqtz*svB7XpG;Hb1ESK&M_l32ro-uN1yq8V{1o;)nMkm9|5O7|pP_oe5Gl)Rzgrthm zDUUk-$=?`9nP?1+%{%_c?2f$I6Q3z0u#mW$HCDM0@45Fs;lY}$#+k(>$@>`m&wWsy zjj2&J7MHv)1bKa*Ls0IALm%c9#A{A%#Nm|{x7b3Fnd<2hXQrWLC%LH`nZa<(n{dLN zFt<{6BvJKdF#2Nv&GgrjwekD2B>MXoLAYfx6R~F?hk=*V=Ro@rp~2oBbQ1j_a)};~ zk~6!9&WDQKLfvBPl}*a!nW5=mDVikD_K@#hINNC-Qc88nR=d!X^Lsx z;XH4hj6_V9(JgK+sYZU`uBGP8OvD=yQG6Z6uBgg0%NvZXk{>~;Xce)6n}l=Mg&?l1 PMAd{EqmlM@{DFibwrqBmKC$&UFS|G&u> zSxhE3Fv-_5G5~o%%aQG8Da;RknqQb)cc=KpeW9``d+ST*D#3+I3a!3<`GnF^#?!X7j(mfL0j_tqy?zuHfSB3gFsy%oN?XM4r$*1M5!PUyKW z*HlxolvzJVg0FVlO7=Kk&%PRU#?v7)gJ<2k$@x_K4%9GFAbo`UJqsu_0-|ErS)k$| z`Vf#n2_;-&lh3i7=G+0*dS>!6R(rvJ{~-Wm9LV86CUdZrGwz$*#AamO081VmOgV`q zsl_D>46uX+OF$fqafW&ZdWL2Uu%rh`Vw0KK<17yR7Fk*}Wr9djW}bdYaWVt{y~Q@~ sWD9qd6c?u!m8BNNURG!fO7s3<3bdC8m>60tOwTY@@crAomHiwe01bNYga7~l diff --git a/ecosystem-tests/bun/sample1.mp3 b/ecosystem-tests/bun/sample1.mp3 index 1e787cd7cf33203d99fa50b39b232b318d287541..3606c98f2ebccc4ce0f1979119a68b072e01aa07 100644 GIT binary patch literal 212490 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π=#^wT{qa=ips10^HD|tW491k&t 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 Q_Kv#M-yNd)|9}Vn2bOuuKmY&$ literal 121671 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC|_BmuHU4NqQX7 zkwxpgeT;!Yq2Upc(Qyfmy2Z9$qks_x3{Lf$Qs$cgQJ~v^qX4=t77bpA5giwf#k-8*Poyk627YhHIber~0tEyIg6CI&y?G~?AQQsBHv2@!Hk6qqe;+XyuLX%x zk|(mVTVy-LbWK>yVA{MG==Tl~o%QZRV1{yfYX_7CvVbl=!U?0GMnw=n$e&&`)aP0I zphhzeg1SSH)?@}XVbmcu^Y!QB=}Vv~GaNhs#Ha%Cpo*K%4nnBe{f1dDjOt_dywaIO-l-W>lnMrz z<8r|LW#HkoaTdV3w^%!3>s$>TTjLYut70}!hy*{*BC*CYGk}fLF7Pd;Rf||W+{s|& zZ1RYz4mrde&M`1x4gL$CMY*iF<1nCsHhZND@LbH@k@pr7fWuE+)*9cTFTt{dNTLYW3}h6lU|7s>>wsCE}@WH2&J(xaf! zw5r5IBQs1D4;r~P!H_d#s3oJoGxlOIuHDlM&Z{)p0=Vn_7{lNgs3aDww1l2Wb@BcH z=dP(Trbrhv_>KuI$sprah%pve0W)84X2GL&KuZGk#${i6(Wcf`*f8apaQ>l6i#5e1 z=uch#cUe{g+XO{rx$HB_`lED}3X<-nI%$BnxYE{3^*$s3M(0b)D@VXYT!U-NY zm{$#M1Sv1k4*>TASV8_9gIb-51$<|_h_h-MdRaS}Zm^Ep&c;H%mVy2^p{wxj^08aF z3l)D>q`+Do;?YG}hhV7#-G!e^TR)i0zQNU3za)nn0#|#W_0Y9b+leahbU*6?I4vUS zAMW~**K&P?KZXZE+%cP)3S~ajDHaQ`k&=26g4uiXoBC}1ymfB{ylCqhcPz+c4SBV%>fux zc5^~ESGN^111_i*!MHN|z}jYg5X8{QER}qN7!`$sWv+9LJ4Yfji|Mg~96l7vK?x-s zhk-u({ZA?^=^SN&fcJhl&2Ci~bnc0+4KeMAaP%%ix&ESz=*+=GOBt4B<%coe5m=|U z&aeipsbDHCp+%(cWLVa!2Xp%}XEEH5MGWZnFMxivhU&n_S&ocln->`G&~uh4$~%NN zU;iD%N=2|Aodt9|+upxxjZ3Ho{pE?TgJ*z%xS(xn3^c$DwTQY&9|qKy^ikFvO*&efIn@CN1_FecI_o8uoJuYd1R)*8Sp0~qI2 zJ}m{D>i_=F!6$Q5#N?dgqSIQzM#KWnJuu68)uBkAd)ii- zup?VlM8|E%F=9A@kxjNfo?hur<;C2V2u6 z6L@{2sI4Id^P&};ZaER3E_xalV&w&$>&m6j7mApgQ|n+Jv=k1fc6&x%qA|z=Z8QJz z{1a?e$u}SJOrZO^PRQ`%XNsWQc<6M{m>A;HgPFA|M4N0Te|(AO->w%U}7YgQ8>rquEMqb8h;gNBp8=OH9umB79x)nylLs##dVxDg>^v8De+bRBa zF6Dk$fCU~E6+G_P{FR5p*xOkw3tWmynqa7A5O5OI+TjFmaL^e**=S)64M13i|K%qN zK6%y=sm~jo>OAg@2)p%N*ck>o`;dihZs8-8B?AP3ENk%@tB~A{N*ZX)Ot$Red@wZ@ zjinvCtS%rXdMP^KjTh=6Ed#fH4^hyUkO@Jb2h!mSZ>c2VbMRy&1KJ;G0dE4ef_k{Z z@YdA&oUJo_^__W!5duyg6nXA$$iT$KlpRQSD@%@5(H*!pt^Mx|y1@C_Ymcdf5kn3; zh4K-1$z++0;Z2t>J-f&}d;8_3+@6q>wt?X3d*&saFrGa;x8_+pIxeK7FrYK~{C3?I&lqYbjozW#?3$@mX0`5&`vz&5HiLIT- z97(C+y$w(f@Q&Pzbq#C-Bv`J7oaBKXF|;u=)IBFR(>v1CvtN!DL0taXcGVmUlrFE} zZCgNs=JW_r+_8{v@%6wqr}l%4i%hLHSJrTFst=2UAqKck2En|r1CzW*pFzp4MNnc_48RI>|j2 zHdQy+U)W)g@hOxPRJKUxHrThI+I@W zzzxl{a*#n?5@RjBFfkF9$&?XzvxA#J#>m)Ej}=N|tkuR$1xDZhrYN<=<@1aP(0%PY zQL$aT=Mab+PpOXs2dXYDM4OB=h7plqR^E#8rNVqhK8Tmq)&;SEr2AYHHva&V!mAfPCGbVqsl{DZWs z&~O1>px}TTuR#b@pIzaF1Y;2I-_7om9|Wd+cK#XYhl0V9xYAh1#&|mL5zb9#H?@HZt1-G ztk$g#L@;NPK|mVar^;z^5qf&?fVwX`Sv!3oh=kY(NHnEE=HI+K`0cN<*8n3TgtIqU zO<%TTR+93YZ%GygPK$4P%q$o5&wsc#HHgQ#T_BvL z227e5tSgTY%bfQ8w2z_r(JkU&q*wR;#;z+79S zSIvh{(TI*v@5EVZyga>Ca{EQ@5g+TvceKEg$N=o6F9rfF)%!#*`uLUk6j4=_W?XIg zVyIWmj}dV2C9}$d{5K!Q;LUqwmWT7H;Q8MP^a&7?PS7LbBm_5^X`Rmv-iER+b`Ot- zW*oJ(&CNpb<{dwHsiCACauLL93U=LVtOGu2`Y+xkwtf*br}u92HbBD}?k_#O&0*Q$ za&A79nJ7oVdzvc2XJmYkQN8qFLluNt*2K-Oii#s*86*aznvRFqQ(h4-`^09Vp}u1cz3(ZP5CYA``BB-=_g;2OSWm6?>v%;sAUvwJh!qM8lhU773UY%HaNoVZ@sW1n*}q4RX{vu%(-?HZV)DZO`>k?y

a-+05oNSZH+R!K7K?@9-g$$FaZDZ?8DjgKb`!iZ;y%5OxLnW)@B?N z3pi8n!q1vpEBO+uOU(2&a9o6!2;s{4?|+@Oq3R<&JAPV@HbJmZQbU4gvV9#}(+$3P z75?6qARbUtxLH9VZ};h4&QHHmT^4L(l>sY5jH}DebO&07g7mp%P>L9Oz-agFsmV8- zZG`Ru+4^YY8mB<|5H`XZGZ;-?ftj@djL`Wz-u@*7PY^`pLxys!4;RZ@zY-a5Ut}c$ z#k{ZJ-Frh>O==qkE^e;{$P@=}I$@ufPae&K#&rPMptD0NiCr5QZGwD{gsA;t01WZm zE!!vqGy*CB0cYNOym<_gkz@}$|2SAKSI4+6bkSuuXag9F0nmD6j2OV*xs$oV+B%e1 z71zC-0qxQszyRjxQBXuA*x@2DV6mG8;>utobRHq{jn zz_et{fj#&3L>CmoU5SAPM87w3Z{;G4n+7yC+3}ukgnCe+mODy_W@(&BQ3W?>48XAF z{1f0nhzPYD45m$B3oNqg|9t)Xyn$NIa3FNxlnCK0*-|4T-!cg1Bi7XTozWqvap8Uq ze%bVJgu0I$XXYn?GD>B<_>Vt)2HN^+E_lp9Av0GMX&uz6iptGu%SO}^bU|wm4rs1gQ(%dtZmZmFQ&gd`9q!vWTq5|k{``;If(MInT(@i z151oaH*X1+4 zeiCd~``ro@53HK;`}JV$hdWuYWM?y`T9$tJd$rx{VTL^8&;WSvHkb!i zdga{Lz`{xvIlI0XjLSL@`u;-@G=bvTaDc6Lj`T7xK*aj#*};H>m?{%p0vLV43^ldj z>FKedrtw8+0Rh2=R$iHO1e9c9zI#y6(P3TDVaSvK{M~dieI;Oyw2Ru~RTU=MfcEoO z=(%mN4gT5x{@vH0ZwxRhz(4-_p;m|knX^%oDNwjsAce~T=oFg6CX2+tRRMG9V6$ox zW2P1{5y%~Ld1F)A;JOoY?7IN>>p?9`M{wa0$ZPk4@eXznLzD~>sLYmu_TS_c=q4Fc z4Kp{hPx8K*U0my7`X8Wg1&t!Q(t>O06vmI`rM$>T4C?~u=KYs=sa23MAIuF>7lh{5 z#zzTY&7}i}HcyW=K=y%hM>oI$b=l5186F}DST z&b`Qu&jt>6U40meGbFA=4uD4mT>i335eBubn-jV^q5^bkVN*xrWO8T?gV(+g0N(%p zqu|VU#%4BsA>rV`iD;;9j;)uTt|=;KatN3eKxY_x^I*|h8ANIo-I1cbF{j_%b+~_k z4!HI$FktS|&qsG52iCx}cV+e7cy44F1GeZt{sQdsPr-oqUj}2k0H1RKTM=+Wdri^{ z%?Y~s9k9>!7mTmI0Hz16S7b7kYIOAP1PJi;2CE;{UJS6G2^gY-hXd%>H}2t#nS)>q zs|ROHGZqTC;?xN0Ex9x@qMLGn5V#zK>BKx ztYEkjoPCJi7mPtLI{VSwJR-wF5tn~CJ}BA|-5D+sp!+WWl4%Cafcmu;+6kctE5ydc z0FIm#xt}w%Qy>!UmO$Oh+T z(~Vh~%tT;`L1V8?Ef3x39W$uJXl2d-LwO=cS8Qu0`lTP_Z4SzSP)n#8Q@4OA1q8V1 zp<|3)1uqY{uCOJY9bWg5@eahykmz6FD!eS#t>~(W&M`U8F4nZSP3^*5EO!&ZN+i)$ zed)X|PX{74z?j~45PQ;r+*EtRZnKK^yHD}B2k|4Kc8cis&W6G>d2RMACn%D4R60cJ zX|POxvCXt3rJkw_Nl|x)F?)(N8r6|bZ#Bv+@NRYxW+`y<@d~DLWrPgDv&x;!kRCcV z*TuZrE300N1bjpQ$3WaSkYpCQqC7jrz%rY5c_rO@9Ra>_y8kjV`w=PhwTZ@&gcw+=0* zBz*KL6o9+R&mE-@l$-awIk&n}q{mAH5$^L3zph<`4^P)Ao@vr9R1-l|b!(GEg?XRV<yJjf~aswAL$piG4k$ztM58xPVaJZe!@km!97 zrik!?7~bXp$W;5LXk5()zHM7TQWmLgCGod}eR051at z%ZRfV`b_?N`C)|RRN=0QB$EtSWF-r>Yz{u+Ry+pw4PLRl;`ZxGIkeYpf-{4<#Wn(= z{oDdlPk)6c$pPjNOR-`s!abFo=I>|~`#@XYd6sDx9mvI)GHyKs5#;7}*ikc8=oyZ= z8+ZKi-k@ndJl=T;Y(H3NoG(a-6FGcJ?L2j^7nU2Z?rQI9tM*J(sX{~Y{DDB_2g_XN zGAumB%yjTm)2jZvzEvi61_<@YU zb^S~bU{vR^{p&0Db~B(?Xt#J5^Xy}*C&FaH!4N)<09{%8$1muat@)rBzfv&^5AjLR`AWe6JykS#(bOU{-PV|E1~a?KPPDk=-t1+sv+Db~HVj@Io4 zs5>C0!OD>N>JM5n*u(*QF{c6P$Lw!EM?KWP+IwhQdnZ!Crr&bMh2P5r@cE0cH(q~5 zhV%*$<^^VUFzbd38m>GlR?Dd*i~m;eCrka!k0ce{};|g?DnapKqSe zRGyf9RmaT84DYY~r+fA?JaIIW8w{8<@EHP3_N9aWKR>(YPKYK@erhxGXD-VU5(4P~ z8xH$LAUj_YYid1iidDee5!jm{&w@(bQA;e!FW}>^i=kJ<#KGP-9v1b~kuOZ`GTqJz z95BhjGS8ee(FXH9mPF>=_|yr1v8XJU0S_^QJUGUR;I=(bxgq1`&mDp-G|3$_naTIC zV-V;$$-zUQ3*X|(n1#&Ucki6k?Ry~ui{(UPlWFrbG!J6EECw0q|M7|Y7_`KRtIv22 zdz4yeQ|vG-UqNc9uSf4x>t=sE1gZ+G0x#_zx^~Z~+cV29+5jVH`BMli>ynkJ$v`7TPuM9(B4I`CAzMoEw<4cdSM)xUou$sNwbPsV}UCC zI3^Q!va-`z#`r~QuXWhTcI&f)n%i45oe3Bmjwy|=I?aOkYw(%#rV(a}}l4A^TABj8$%z#ve&mH8G%o$qFB#YMZ zB0%kuNb`h#1)B4XI}E$QKG1YxpM&_|hhYACE{saxTBvUaltawl#%Qq4TIH{3cMZGN z0tgu2OEzw09mEG`pG$>g^gr%;3S(~7tAlCIbkzAXj6grLg8}2Ur$D*9bU-8>HrEXX zq=5PhLm9Lc9H<3FWw6_%Gl_zYzD)V5%&IpY-5G?IQZxp> zx!D5FW(v5rz}CEYZ`Gea{^c+RwdyG_0Udbvt6*cztoV=Y9%9 zss_T=#TP}^@sA(lBY`1FIm(1k8&qxeRM{>M3p}5G8Tg<7VYV)hY2%dh!XPHtQ%x#K z|9mF~3==2u5tji1ia=c1^ni?0>R8c6Mohp79(9=f*uU%AKP3fy8O! zqM>4peWpLAplI03t$o->rLWC(N~V=Vbbrjj7|AslR z7KWBN5S3F@PM016v0DMfXVVu-{pw`^UQ`^yqnS+lqfCX5?@@b!4w!kf+!7|ye}|F% z2M%Ju+F&sR{f!Q^u)T5X`BJ0y7PL&yiCnedEW~zq>oM-#13uUo&KS^g*hz2}q4!x< z48Sf^lNY1&_Lgzpxo@wJ)CS~f|0SnWGxOqgtB|_3LhqXCysChHdZQ@aE5AnF$51c>= zJ_99Xi(xSrh>eRfi`w6Q{n>~fbA$2~jMJblIS8J$v&Hhu$ec9a{!cA82z>k+m?^?G zTq5IzAg-NMbM@=siDIs0o!M0-i)k1ln0o-YBHMriJm0wHwFzlWO1=CC$p3RB?4Q~$ zgL6OU2ARv;neM_5#4P;7m-dgi1b}ma4}PWE&EO(E0c;cW=MDB?msKYgT@Mvk7JU;Aie|T9#rpO$m16Vy^jDwss)wrcbtXXobdQg! zgYb`j<)h;zRHm5%q7qoog3y?(TxcxT(kw9*r%voT(>V@Kn+Y|h z)?`8f0&9X)hV68wh{@0Zsg~H`70TenSA!{ce6DpI;;mO$Q65}*m^bTVcb`;&^c-7W zKfQ~AS4%Rla+oE%liJSoTnD}Jd$8^mumd?@R1S3+eINkd2ryXZ-nonQds?oqIE zc-?oj9QuHaGnr97%rt@amP@FIlZKT8?D|SBEXdp2){^fIReOWw+Jn4!kAJuW;_`j@ z;2tP1V_X*iru~Ejveywa4xtCNveXU?)qvN57>btLKj-}WXCJ`OU;DOUrwVG>*|GEufLgXz(q@#D7P78!EJA5HJ=8 zcIA#xmV$t*2Ivg+>~Kwrsf^DB!4w}Ye~pQFu_Z&$ug7G#liMf?cr9qCd5x(S%boh$EsI@oA$ipi=S~0V18pIy36L(Y&u(B7!OyH{To`$-XLcaq$aUv@YxA%=D zx-ei#2{`ii_Y4!E<=MfwwEnM^^oYNkyh(_|sl^38j!^*`xk?n!r(t(!K%D_iBJ1mCoV{AeX&@tT2V+Nz<|EOUEJ+OK1|0^W!VIuUJ7oQK?xZW+`E z`|`mh@b+qe(igqWHAVg9$B%GHR#my)D$lArTVysJJ-&A`x0}VQ9?cp9@8UKR7mL8T zcJ&%{73$G#FhOuzwJ7xYrQd>SALim!7iEy3T}yfATPx_Qnjz zPHy|(pSuqnXwd68qo37Om^xn@P+OQjl(8PzCx`1JuK)Z1)M=K>F|kcSFpU7!J?Qd| z#`E8uwsb*bc`}RDL1-7g$3&!?X$N?>i;s&AKE;$3=+m=AnT>;71~KPz*g;*3*1(fd zhJzQF34*1C5-4Lb2%sZ*fDN2E7+#w-%jc z7d{DE3k73@t9X6&1Z0c!W7V+}^73rLL#M!iiEF=7F1z$nvzR)X+@knFlyY$gWt<7I zJUj@#z|F0LN|kTb!eGh$^E2RUpfA8bNetB@;%5Hg%Ub&MXK%oAg$25p7g)7>@q04C z`tH-6Z{Cs3`+G2=R^l=hEm*?)QY?zrpUsfMZtaehSWuBy8&jDX25j`gEC=67HB zsil!uVv+8E_G58RrD6GMbMcU4dqg)%W-m)OdgJ2Qjm30Pi?n_B1H3B*Z7jw@1vZe0r+3_KioxLchi` zqH!`lI0`uiY5F|=`Q*{obf_2a<ID%kBjXyRPT$E& zd${IEEO`Po+Fit&;S-I)BoZR zkApK98=#B`FyQ>-wcvlb>q+q5INtO2{~J!b7UrC+Gk`gm;PvKDx!v)zyiwn+pTrF& zId~~xDKjO6X-jq60KS!^5*0evNPp(iYllF9*8daMW5=KmoSFlt>w()J(}Aj{F7c+8 zi%-e%$-}|Xg+{K^p2%BRM(9?-#HG8SxY=8^pOLUJyH{>U0fT@Xvb|KosDr1|Jx6`H zS1u9Yk`r&gSA(J49j;?<1=@}>agQd?`qI-)ED#{|!qY`2NP|mzQ^M!E9Pc;Z9Hu(q z=^MYmI1!}1TeG<)Pc<1>07p%w3!+y>We^ecjM_w!erO^T!+}A1+mTo_U)~DE7i7z} zDi?CS@r~R9%Ll0I;A~!!6k*z{wmysn*_ocpkXfTMqU5S$yF8@0^v6i#ct z`5@a!a(y$n;KOGjxt+qem`@*vRPO%h8%qprm^&W4IrqI^T2FIQam_IZ7N6iS1PM^V zh2}g3HfB32_PkGDgfgWD5OgJLqvh&T`C=X6O;$y(^sj-^0djY-AiS(c=EiwFL41VX2O86Zv-O|?kOw^;4N5Ei zd!w4zP)$N2Q)d&T4|9W`{~4GEg@vNV#z3|oHfY})1GQYthj^LIORRcot?Z9L8fXPn z4I1UTW~ZVVYFFlGKYq;yMZj=-a0Z%t^7emOtlXYprWlfGCb;oc$l_ysWtWoAL}GA& zpxErWyyT*-_9G)0z5j|>!Ce&v`uaUj)pKz`U_h8CY+Qob!|JX%0f+t64m}6=D_Ipo z4a`5lkzEST%X3A!Q*7!gokr-hOAmt$OwBbx2$&AsQkKC8ZgNMJMR{Gh8)}p>2z)=n zhq*?FKYf#!>7%nJp0Go;$eebTqQHNiWz}dq%4|+B8eGAUl?=KGBT0VTjhaLcy&crT@=Hc#Ldh=)oH@qM5#ceWdF0rUz8q1hjmk}ts-RDpNrXCLui#8pP|3jv>#&q={rzahjeFQL>8Z%g7zCP)4b|2h%#Eww#W_;#Bu?ccB*wj zV}Bn79RztWVeiUL>I(|1KqfzVmSb^GFYuTLym!8eAK(x z?5Jk`nyr;$9@>HAMgXqxb4AZW00u#U5ny{ch(R?-Kp&>A_hqoV0)P6uunqg$Pj|@( zyh{gGv&{RpYri<*wSZ%To&FGEZ$1gWC^iqT)!w&fpNWE{cm*tgyYhh92Sg{b=dssM z>@bZAYIzr+u9oMN#SKO6C4(H~C8t2kX)68HE{kqHwsoRf z<_vAM>YK-`7{ukSSbXymou}mhD<{|M`im3vEN21^-uMCM@ChAr@j*BBY0yqMi@$w1i5V9T5?uP8NV=t~8H|OOU088qsF(AB z4iTz|!^5`^(_M#Db~Hv>nWmjGi3#NNiRfp3%(w1}asJYMTvtWANyhtm$F6nNHN)@& zZBFff)La2A+&;jws?$a9NPO#|=s9LPcMIPYf50m( z>^F$cS1HVH?W-V+^yn0*p3lqlvtYo2;p$z9p=>VuQN-s&Y$nUHv_=(UQ8`A2yb2b8 zm%q^lp?%mj(OZ|~-Ju`uGUXR$!w96ei7Yqu^l`TdJO`+1)tU+K4`?54Xcyg`;DDks z0$P!G56hF0m@ViTd+)WL+(07+f+yaFfPF4i1zIdEqt;~|i;XE3_(cz&cwc*+G|38NmRs0*r^gq;xs(t8z&0TW{D)tE z@A%%xHVmDPkIl}Ec0)F?n$_;Q*4FHd6^n)oEUarO;NiXPVW54GIUp8VYRQq(#FfXT1@-^* z;7=e|xtx}+=-^}q+1qTGFfU(-f;!$&pzmW6 zYn!u}n`W6zjZt9qXBa4b_ZUlV0%QOIbeq5ek;!CK_w^iLK&&pWPhX8Sg+hJnv22R- zUtM8l-S{4u_9;ln(Sh4v8pzi(F(5N9Xf6f=81+Vw=A!)5Vw@S_igdv~?vK93$pSWt z+HA)zL??(F0qE8czOvbm!Q{^#y$^;fPt!Mo?aVE|_pH4q)Z`Vp{T1QnY~ z=jj5vtv(X$;1t(hrwfgHRXEGX+S^V)uU_cURGzH9TnY!`>N4yHK?p0LNSeoCz5n0!u=E8dZ zORNFkB^P*H9M~LlI~f$^8&KkE3Td$xTXQeG3PVXEoj?L~?7G_fvzW(!jhj#X>(8G2 zg4wa!cH{3--3PK@Z)Qy~Z9712&;qMD?$$G#%$qcj_QlSSf~_f$rz#-3c~W@~V>-v6 z)0rlap}EBw5#84}@1z5OfwBc^Mf20(GoT1-V^O~27__CoeD&EqH;gRP?E>w~$UGyD z!bJiOx^x|s0LqQ^2M3%WE-J7UY!n1=cWluPmfY2^f&sl2gN0*2M^6{C6)6KWI=&|s zY(LJu(u<+ROAmhS%l1i#obkYFh+2>!qbge!7b|Hk9IVEsMt^4oc!kfjKLotmMPv`!xDoAjDvW$irl0_Vgct`!cNj% zhj*5_T>vxxywAah<|z%r{!?cAh&^9RO!GIS@d zpFQ1q7TT>JfB_7&SyT_7XszItm^T?YnPUF)V+iBy&(&FQ;Z|z@>6n5=+ zISw%3jD2V=mgRaNQTtDW%KA;8w$(~l89L^4RRb8nZ~<(C{&gq852}S55`eum1H?*jvEwswwm~@zO??=c z2VA4TI9z#Xkk64~kV`qHjb-D)!Hf4Toj?f)0* zj$#z9gV2L`9pLO2E3B1Xtp{n(Ey(jy*rw65Oz znj8jauiIj>0*v$3M?`njYwsGTmjq1^Tou5Zo>^(((zq5F1`MTwz5TUDMn#a{1G&Dp*W#LKrWkhy9J0l;F1Yt$P9!xl z5CC6kY2Wu(aQw;-m#Q)PR zujOXcO5!`1{(#qXX%z_=Sjzy#`+Mqi&<7)pB7nxQibEdK92JMHS>4wIJ(!96H1f!Y{l^VRc487l4N z@a5-hp%ZfqWWe%#>PFcV6C&Blo$@BY@D!6D*lRDJ{pbNP4ffxBhzXNA0p=$*;T;h3 z|9SsYGGZEbg97MEfH930wd~}r?}|40&fQSb>Q}h0y}e;jlBIo9fVIlUs9TfCp}d&$P&q!A6m75OkTKWmF_H z^b1fP`t)n8o|Fx+zAwzE-;f`p_I>aJl?zNtV5gP52B|+jw|Lwo6 z!2?E+IV;g~c;QX;%(uhTQDM?Ugfi;|UJ(7BQM+h*AMIld7%(8591yOS#k>Q8M0og^ z!J|S6v&m@DV;rx#^lc2TKUntGE0D~EV$f2FEhDciF)!VehfyjSz-=%uN_h7aG6w9l z_5z|KI}UoUx9Mnzsjnu;;nUF^WUBPxL`Hg9<%7#^nRIBs{Y^_Mf_<_g<^UaV`GvaW zxg;puca8R|KekdG2w+XD%!7qRt%5U=(?Mn2M=eNg(zgz}phf%Z8N6VP80y~t&QOm& zX)p}Kfz6qoy*Rlt*@tYWis~Cy*q--XsQq0eSpMzT>Z;IzNszDF4^(xfnbXjB|LMgC z)tXOW2n?O*3OJPvMLm9@mDvB|<)5G8Smo{UQ0*&RVBr1FM5!W!E*N#Lc=Y|spI*jj z-DAmedsHadpaD7#;2c&#hCh2pn@yjrymACXIxqD6UEn|yD9Voupre;TaTi|#UmxQc z^f&W3l@l2IQg*nHxQs=<(DJ|%0X1l6hllyZ0ao^Q#XJIrM`Ig#76Tn+1)G{qk7oRt zH9(B^aVe8utKMc2OTKsesdPH6SH}A}-A+FP^{a&)5JhpUDZqCmD%z=D$zo{aj@fYB z_{9taz>Xo%zM&5)R~s+|R>KyvTmZ&y9~1>P2m)NAriM1>sj(U6A`o29&O?h_kxGPM4a{}RwKh0;lIuM?njJ)6<`eIv_>FUJJswT5SIVUvE2ihYCn8otA&$nd9f4U^cB^dqU3JOYJkf zUKl8+=yaKzem>j&rg}VJz!gt}A{dyqj;#=9*hG)+{qJGKoM0&ndUCaoRq5(5YzfhR z51aSdqc4vz?5fk3C_Q?w{u>^gJG^^oi!q;^rLSDTwH%9 zm^vfInrhFsr7>lB6F2C8z)~%fm=xC0Zi`CRzT#BotEFc(U|0bvZOh7%Bf>LsN|?F; z|Ih3BIG33ICO6WVW27AQd}Sl?R!gLAO)Rlm)|nN64S(dZiS0AaRf>Sg0Ssr1f!j|ufrp-I2WJ>rBBt2#55C?C<;stk z7P+Szl4@1fV5r<02$iivdx$BWT@8pic1jf1JV1wWy}e=Y{y0@k;6-t?S*#wz8SnNo z4D2z5I%7smk0>kBx|{8cqR1a+W9`%#i-R;6fN9)l<=BBB}`CTKa#mFPC@N2yyb z=)6*=g=un%`@j7gfawe_W<2*0kI*F@wFbKnGYVh?1dM^{WGJ`QV+7+~xl93lLf?7E zGS<93n|FJjE(oI0YFI1iedB(p9&|v9d@ z?_Srw%@QLnY(H}76A!je)9otnnQ;9Db>N3(LVLAHUSmr8@kHKUCd(n=Z4kb@9t+n! z>Sh`OnJkVC(Yb4N?LyPulM7Ze-39PgOo0Izj#jd<1L`bj@jfb0=CO%dX3>buUh28tI}Q5a6Ga zcv`ho^Bl&U2B@Br9g&%Bro(_bUHl2r68rP}OQ9NNmnjO{-<&O!%nz7EE|D2V3O7C`gUBYSCnVovD? zaOCo%U{VEM_5tdF+*G2iN1D0!fRWXWW`WPtYd zrr}<3P_+-(K{C3tOq_@-Kh!=`HFcWqY;@TtvY0DlAnk`@!yQ)kxybhXV_b!~AMEBM zZHMVPMgcG~^5?(Q8=V^l<)iz>DttG*07@harFlMGY}4E&@WF4qwO=7$C z(;~nUU1L1|O*)y$B}kafGmKR7b_-n8UTNO`P&$k^emx4#j**@*%ZlhIW-C)RE`(cH zb!)%JT%?b?2e}ayFDLV0Vh600^Q<7jxJNs6l+OWR1@zIkoHL#yP&z@@QFh`4i`e}{ z@YRi=mkl*GtJ-6LQV(izf(>yk>mUKs1@H%%xF`Yde`w{*8^3K-TNAS#qVdLa3pGP5 zVgcte zD`e!q1!>HiJ9l5}%zypvN0!Zx9+3mvXV~gWK#`X0fadHomw$8PRg5;mqeEnd_O?2x zbT_bK2dk|(4$k`nK_GP-Fa5cvFmkeB0j~Ou=S=Jq+~Z_VN?am6rhPL4Bs=!?*TD{f zJUA>`E3fOTJ(iXa*YQEvzteAf>%Od$P!n1C+!M2safu6LB5Pkk2I;{OXbk7sP9~%3 zC-!qMV(^bod}ROv;My*68DBt~)7ryg^I&r-Wz937cg>)^85^Es%BDgwlXjWjK5XKm zKYo~nd`x@kT@-Qb!nahlaaSKcSPjlh9ADV$h&C@fA2>kjiY|LX$Hrn!?Bh$@TJ67U z_Sm$B8jNZJeV7KW9VP<%PGQZZdmCc4x4)a%9q3UHI7vV!86uj}^Jf?kfenJi9pn=a zUKh*)(0-NVJ_gMLb;UJP9v2{BY5;u;HjBT%Uijt#H zBjXsB!P+t;iLqNBT`xMGoz9}l0C_Q7tQ3~a)hEFKzee7l#gLG|1;=<7`^HZ|p&Pm4 zb?3>BMayLD+T2dZYSFA^*0u>NGt&d!n+|yAQI83V!RUMYIVk3tSaXl@!`Ff%I#qaK zt^y^?VZCXBo{ePl2^&dLyThQJW;e(;t`l6q6(?>6vXXp2x%J7XE$q@jBm)f4&Y~d& zf`EVf=99~nm9xx$K~<>8b$VG{-43;qxdt%tS3%6)6S)a=%wK~cju3OH2+pJPSYQBG zSqnM?T8VF+2_9#tJ3ve>K?+2yx_YL#B6!9m7xka7J;qI6{yG@bg!c=~RGrjM`#J9kdOkiaAW;tq z#LXB*IWU;QHYK1N3p?uj`yfkCG7#LaVCb-q^GHl)3pW>H)V|IdnsQB$%t>ZyPYlZ7 z{8xIit#jN_RFz{O3zCI)^I?@XhcCZ|VR9d10@N0PF+C^JGDeu?z|WkY5@x&FQB=%0Fp)IqHnQ z{e~PIF3kaZ>;6==Zw$02;+V>Q?!OnrodS!DL>!2r=9z-A@+pt5R?C7O2Q9OdfMIU8 z_sUD@p>jsfF6IMd2?hOKAjLa3(I>*ruh=^h|RTN;#;N9({D zHxIalJ%@+;FrZ0=tmO8dlx$wogSCTn`NKw=s;E2xMTN*4}{1>q484owtP53aH zvtl}^5{?h&gbuL6_G8Bqvdi@F}0DZhbA3Tfde$_zwR_j@v;E{o}pLOJf+S1|ai-%6 z(%%46A5e=@iN{UkC_niywmfX7uhd!NDbAJ%#yP+R7L>zmFj~w^V1YLT3lGrVHY}>Y z$|Y_>zzZkEfc5uZ`>n_7QI6$uDvt|F*(mmg=bt;Y4g>dK2KhSc!Fxf>fQfZ3M_;RF zQ2-mDau!AsU!-O*J-&bp&-n7|+B;fp-9sJ|6t@Yiv!TIvh^6Z*?{L2V8=fg~ZK9gb zGGThVShlJXp;dI$b`09iXn%&tyNYYR^zHNjFE$OH*Iei8D2yuCzD^25K>M;J1C;!g zQf9d|zzckRy6Z0wzYIk%#zNQz)wzSgTY|WCU=-v$6=$?8&@+uIsGiy^O=l~sqz_=Vf_3tRT0b<;MR+` zKXG1{gW=+en7IgGray&?D+KutgVj!s%=6V!EGSxK&8=@^5CBpI!rXI$v_CKLH_{!4 z1cxB5-$ftxfw(|*MQF!CnV;~=^k3`fARW$S0L>!6Ph^5EFj_3mR?(|!yq}SFl}?3cW>ZETeXkhGcyW6Kn=*i@&G7!mi85< zVoISYUG&osBkHt>V;C^^wvVu`2CB>R7{(76w_aXz{ss6H^isc*%IT?k;<&Mh{FvDZa&Bl{1hyP5ti=FsLz0UIPy+enqd8yIx1@O5l z{AFcG?ftPVe_rS9AA_xdn&^M;I541WhV8I~<>vu6767t2S-nj?`EPvLbL3NNfa zKGEEVph+K9OBVx4B5XzDM*=pdFo>MoV)irf3-PZSl4)@KfaVUK#YQOLUKzCLVC{iF z(3i~i=twxi2QyQS-RBT51F5Oi>s=j zQX(Pg_rY{7)dMadYP#*MZ}w_`YfGI?Ya6KG^!E06D!uGD;-sGi+DBsQqZtM^-X7MO z!CN&5_Ec{B+TH1@LRfmbNd_0-EbYzV@iMOARY*N$2gL$TFK17fObmhFJVSc>m$Uw} z+~%n20aInHWDm+ypn3%?s7puIvk(O{Y~jEdNZlt7>ME!%F3}vo74OhT$#cuh@N>)& zhA^I+>j(#H0C|w}&NHHCi=g9n)qZ&fz{Rj14SK%v@N(J)nWxY9Ki;IY*Zv3)?FSpPAT1!~)lBJGnt8XsiEReG z8pKxwf(-3FqLh>{uV~{2OGg-LCYWpsGmza!svNmYm8&7b$E{}zhm&pGxS4? z3+xi}Ju^xd&OE>$2&9L3k%Q$vd`PlIv@!hNAR`E1D=Z7IbGh>Tz4GjdKHkRj&+r+i z0}c6f-2SjAMzKMy&IUIWRrNgs+RHUw)N3cC&%aF1SlD70G9h9>g7_M)0tn6(>0>+T zdjCs_GFa7Vf5CN5M$GM|Q4^CRvW#s>km}Kli7iU5he#~@NxR&YRQ_L*wecq>_41<`S%zWl&Ak*dcf9Rk#fdumx?pF?A z2NzUB%zzSDp#L2@kMo2$P)5{8j|{L&b}}!nz7Dn@-56Lq7yv=(z&}592UKNIcZcE3 zpKgB%IR@9C&K(})qaU;2>JrIodtinZyW=BcZ{8$5FF8S{{i2BL;o-MmbsA!WxNLxrK|S+f zwb7+TX|KQcN8>?fJ9_y>5;v?;9OYp?%NMv>h6teWNgB zp{a;I0@8x>>mk-f$5EScn}UHaNd7?MqY`9l+5_2Wfxg zq6SKXScNY&$WvvDL5y~2zeAQI+E<+VX>Xl{LC1BK@3N;b)O;qifMV#{5m1C_* zQO}EZsK9|j9v<5O+YyWKh1f+-u4UQ+K2MM%K z5<>L>RS=;zZK@zZj|QDc1ao_H+QltxpP_9hxR0zNft3fA5=KaT-d!|m{btIUi^R)`&B@#5J4 z*Wji5?3r%_da=X*@*m3K7^0pSs1w!QUokBJcl7-fO>sRO!Y zEsnX_8p85pAhx*O&z}6jnu|?=HxNuEa@9c8=c3{{?&rVi(V_Scww-%)usrRPC)%_( zuION!9M^u?%ZJ7;sQ1G6!K*=AAmH2|RA*D$fN7_dwf6TfvmdMS7znUz_Fy8N`g{&VWY$!$pN$3WGHT;!_XsX?^RNHqME#foWe;&9gkn zu0JAg%z=dw)ZR?YU;(E=d2L<&6ufO-QIqy}ne#KR{G3LC7uTon7y++qWGXVI2ZmP@ z==~!gKTtZ2y0-A3Hps-#L2zbj4XD}UO z1&bXfs9+PkjQ-{7yJOP9>(}euj2-=3_5a=b^i%7Boqf&=PoBTaKyyN{zHEj!XYRAY znf?HCsWyhL|KFlWW>mIaVf`}x{Yzr{=jUFizW9>%nL;*h;7I%;cwf$GaHd0XW`8dP zUm^?`^10=`Eny%~^*qZ>`EzPntoCPUp?R%pe>OSOC(rIWi7}(@Vu1=$MYM|0KF-qX z@*EW<_uAdwzQHZbj{`$xOesNILxc7Q8!_s1x~@JT))a_7)d{1`SANyrC3fLMp+S+* z{Fk(kKWV@F^K+X|1!Sw6PInu7%-KgVq$bX#dra3xRXd%Kw=& zbzw{jK)q7u^_Irx#0I{>YcWZH+@t5dC0gHE`eYV#8Z@&r{pMFDp}h0L5ctg(XX1^J z`+j?a(f@z}9OH9?=_}x~B^p$$ytd$@y&1XJ>II{EGQ?T3WpbbP_TLtB$8n5vm|wg9 zKY8!{-PU!c3j-hsf+R?R4Fo9`kOWDvgS|^23HBneid|su6q_hg5+x@tacn1(>Y6xl zOKiudflxc(bR)@f!0m!N@nrIxsuO&7Z({_^4-D*0L>nZQA}z6>rA zq4EPQ@em*z6lQXS90upQeVa_D_rJ3LpUm^;y~Q)GIWM7u3?0YW zNxb*-HZCq5RJU~ey@#rx&=MLdpxHRFW_BCetxfh|2R#Yoz4{e!UO5V8WDoc;slE3U zWIc~v0Al1Mfq*kSm=)B!;_dn91t=L&t>D0w-!@F!<}J_|Wl^WMHiA`ELX&BH&J_&K zve7>h8KUwVEe$bQ-e%dT^h~5d)6skYW4MGRBAHHTQwaw(7gP-5Zeez3O(#ug+kX@^ zH%eeXRj$9A%%95&faob+KRYt%FS)uEaV zaYJUtdS85R#$HVr+piA4n_<>H_(Or>#MC2Ebr17FJUa?XBdbZ%I_DG(O3hW z1J!}fE}e7VxDyI+Vm#hNGdV!1vJ1R5pq+*I{{xO3-lxuMTRz-|9?UeZh~bp_4@%JL zEKQ!b3dY5saK7~w8_P78n#V-~V>h3XisVcc8$Iyp{XOn*cWNJ0RvzF&w9yg;X{etA zr)hvdkV8B@rA>CEOofF?ZPc|LYu33+BIacqJSXMzx7qb_gvIBSoq@My9S)~Y-v0XZ z7Ht|j>tqusQb%>rI6K0emZw7Bs!D~L_}!3QP1hg&lpfQ22fx1Sks;$3WMx9+9gbLRU$=V1m+ zE=c)A1QN44E0O!whKW}aruIN*JgT%)A&L$_Jo%@YXZ_Fc+4q^uz*I-Y7q;o>vn_Mo zaUFfU8t^DnHqPba7kDqol710X3pyUh834C`di;Zzi_5m44%L9MmSvy0sWR#IZ_xCX zg8}=Wq?Ry3XxQ13@#MOs8kfUhkBK}psO&^L0ws}C;MZOR%b(a#^)Cah6p$x$&_1mE z$?a8md7yHXVYdI;_aa9;TGiZ2Eu0#gWgylpARs0_;Nl`XxzO3r0Ptfse#j`{tkS+% zQ<6r}``#}~!KXM)20Amu-GBQD2p=cFdTAPnZh_$8eCKG|iq(cH2o1&OPxp0=qz$ms zD0}BDH-7>xbr*l7qmCCYcD~<{+*- z64YC5-ek&^4D?3DrY1B%1(aQ!vbDrh{Q1SNfVa_#K;BvIEH3x5L#6vko| zD~Q+wcgBM)gEVxgKp#uo-H@FN>+}>oZ{Xw$Sfc@DcOH59%2RP;bigIXgnMRK1n1MA zd>5_yK29qebQZ)gmDpX^R45Fd3>usp&@%Ns;wh5DwLC1X@YiVb;(JIxSwkkP{Fc6Mcg(*&i_G?Cl>PcJ>~7=zXM}r zF?NBsejp`y&v~%4VXz@Gp#Ro0OhXOFrp3qHvK_z4>tQG7##mnn1G^LtR>M{&80Xm| z-e6lsm5HF7&j~VgZavlTxnQw#fYsNRLni^1uiv{$^GdjmKsL3m{rwAfG^m+%*wmJ0 zmR?mC=UEt|LAuCha9|pw%;In0Y*JIeER_*nh|QGHa3<4nBN$+ar=Tz%s#>>mTf?CMx|v+5EJQFuS@XCFu)uwjZ9&5uOkQ4< zI3-|03d!RjMlMPH_{3+AXk%TOUUr96gAH^9aM4-x1J@wI#bqjzJ;&dFj*el;q`Ut3 z>l5mdem1ME2OWvxQ#~laM=yib92_ls$iqldsWu%DY*v>sgrRJUvvr_={={RR&wSqlnG z1T&`=g9F*o7GsEb9}vf*IR6&CWs4!_169(Z`lE%dudu?nUw;(uXYUl>Tg_5S4@cP-Elz<7|w$0Kzce9;C)N@ekP3Oil@TPZdcK! zjJf0()~=xat@RFldu$bYdYK+kan3!6O9u{1M3a*V54ZphT!@({5D#}2e}@He4iaVt z)zGH+V>oX6=KXVYkA{gY+aNt7F{L~fs7%3KX@uhZ=9;qX>VTos^nmU1ll1(j&#aw* zkWjNgBZ8aI#4H~(AYgBAB|II{Nm~@TFJuQp?trZH#~M2sFHHaSoo#S6kKtwL%tRV| z>e%fUA%HCqx0TowPt{P1SlbYfw7|&aZ-N<)1*FQYcGkpmoMi)?C#JBUKOVyx;W+!+ zPav$IU=vsX*B;M`0QBnV$#~8pTEvu#l?G^-0uvwodt`?_JD!onUeKwAB5?YN@dp_F z+2Bb$0gy5k3Em58VC?V^g%w9>Kk;A_$P%kadSfAU9tOw@^fZX?E!}uNwtmNDoe_0X zj-56@(ymt?i>h|JKm4`q2G@b+L5Z{`V75Csb=7d0tSZZ{JmpWY&2u(MAcHTY)DYxwI|JW&2ek(E$H!r z-o7^|2VxHd>`IX%-asgI@S9H_1y3(pYdt}4&_NR7A@7X4q9b6OBajBF1vSa${&xwO zjOuz?CPz9$GFV^^BAEU<*Y$^A%3;alPW<^x&p@4ENtjy9YM(ef3VntpT;gD2bf9?e zaXcqbc!EYbvjLXNT$umE3wY-VlvlsSc}Rp4S<#}Q8rL>j^oBI{gCA-FMhQCBpHtky!8-wq3>wO zl!>~@WB+#dx1ma$I1c&Q1F}J5&?m_t8)#^A?8+-^P`s%v2?^@biY6;wG${AApS$*- zbrbvQlU+XaNq8XqdN5u^iVjwe77q-RCDQ4h(_`~hr+7*K?5iJq{j>YIVBo_aNI3>^ z3e?%Ga&M2*11M>z&YfJ&s@e@KL7gNf%g8 z9Tz6i75d>z+z2>vdeQgR11hF?P!{jTJvkVc7Z6&W96efjuHzkok7SqC`3 zeqMcQT_appPv219D21gHiy1-GNJ0oqfm7xyI zgKBl5Z5fcs`Sdd5Bj-dzJ_JD9)gK=Q@2HYJ^#QFnADvJ4^`}IjBiY+p#K9AzuRpXk z#v8P{l|}Fd9tIer0f15-LW1T1;>W;dLAA0Cu4YJ$he0x&Cm!G~I~WFir?@<>Ur#@(KVbBMZQYN;UClX6C`iU!x^^x!jpRu+G2S^#U7b+Y^G=q!Ve6 zED%sGUWZh>2yA;(z%6~`yfzks)Io0lcylZ@OvN6$ ztrudOA!w10?@-tE-Z`{ZETg&RVJ4TIHtXhmnUzdQ9y2XycV}l43b4tnHMYveXFqE) ziGe1w>`=&s;UIl_7C3M9>gd@$(5<_890v$!T?bp0I=2G28<53oAixuUZo!eVpDU|h9;MeA z7G+Bp*aK90TclD?uXI@peQwCxcc?m|LnAqpE6uJ019;v7)_@+CmTu5Q(P+cPFepIu zRD9}^%3TIHiD%mXN!PUaLqw&^LAAgZhrz|z=6Tk4UX0lq6nE9);lSugrR!YueqC@^ z(K2KJ=bC8&0}2_Zl%UwuG1-`i*tzx<`u)g)c#6<8)RJr_Rsj9CW1gC3*u47{Z-?o~ z^?MAuU9=>&l9c02p&bLA#g%kjey*X=#aaUBb)^|szO1ajBHlFEGC@-X4@Os*xda~% zz=WVJooVNEdPrJPJTPATraIrlCa7L~0WfT&Aa4>aiS%KWbmAFif-yJ>CRKJqF9AiF z!RTKuPQ@NH2~Od()`}mvcE4!IWy@Vl&g+tyk{}gcff!xp$(~WSBMP;5de{j)4}FXa#Qw@3``? zoA#AB3Na#n$Oxrd_IXsA9Vua`u-*aT?go!KvK~z<&1ndYs~>_4@i9aqgVGMNiHB$a zNzl87ejcs;9H+b%C?1E?7s5M3@z|i!n56T5G!CO?gLVBZs1`(H04muSkHD!G)2g~q zHE{OIfNuU}`RWt(lSVpHJVO&wLk7ocf!Skd9bIEWJA};w27G*n zl;Dl5Bdc#b(ZT7a&_TeI+Ac1IQ`nskq*cQiPq%(G4PHW{0=Z2IsSYcY7}?f%XAfPk zm+c8|0eFfx>LAPxkE6%u>EWn4pT&?c_U_%CJoFjRG1^LkCI{$&l(Svnf4o!nG~_LO zblFQfH}wCd@j`p zrNiDr-zis5gwO{)Ab<-}cX@xl?<*=fd%3VEv&-Q~FQI)RDk8uoZrr1T(rPUY{)Z>; zsE0ZO>Kve!!vi&r8VsWY7opK+7kI&AJO?tQJPyAL!r#c52Or_2S>ZFp8(*LROnD%$ z@AVfT;%_UT$lgTmp&V<7{xlaf=e4fvt$ZnK28w58|DZkjel zs^IIOn_oLVW`ks?&|bw+ble9&?FI+jpuC0AEB^&@X`tuU-CPV%9XYnhuw9f*jh8zY zm=Y2-QZO)q9%CYlX+B6DT=s*DFDWk@K6@NGZvi&s2&1rN39N7F&#(MlbxEnp)Q%gk zFhgnQK$;6+nzHXWD1JN;9H<`vOBjfiE$+Anns_R<@)mjlWmssh|Fl1cM|17S5%3sW2RNN0K9u=fU1_61 zYh>9diRG-DBftQ!6yQ;6BfKGDR^an7r3C87Itec#WT?`wb z6vV)s7Jv6%xi5Fxik96)e*gwhT1U9}KcMW{Ij}AL2b5(c*daEqe1l=c9HP;H_EvAv z)gMpF#_sTi#%1aIVA%uCbUsBUK~qYYnO?jMNCa>mOG`9cJkP~?1L%{$Oa?>Rm4{lO z`9i^X@G4gujU8y8P(gnE$Eswa7Z?ZGa%r351h5^D4g{R!)C(L&*no}$on`%&Wnl(c|ya3JAq=o&>o7*}Ot8IJ|sxQ}bk8b8y=*!uKNFfIt_POFy+ zPXusnJpFPySSb$#EOC**2~Zf#d|-7nIIS|ew7d*Vf+yA>z8Jk)&wvN?T)GJ~2%65U z0B01Y^0)z=^UeSRqZ8l^0M5K_OHI$)c<%LY$^QJb+9s~1-Rlj}*Ud0whdd_RT5fUn z$@sH8TJBl7WntwA519%YINjTM5S((@Dg~$GVNw8keNP;hpo;62AJ6oKcj#XGxf~U5 zhIa37o9fI%x0@xtrHG*t(n$kK;03Nw#K(I@HLmOT7p62Z0g_F@B@3O|QArG`Y$hE| zAi)-knw4YC`i8h-$PRXZCe~)b8NY2)%n3SZnyyrf;K2c|WuBp-5*b>7&d(hdH^6`f zFPL>bxL!7O(JU~2vYrX9oF_C_Ezpb>gYs+mIhv8Q=rb3sK>|~*P!$~+3UFAwZTE1=)O&u-Y?(zNGD^J*r^6_iECl27jjL6Rec<$-3tZQk;a4VG4hcrbML7x{JbL4Kh$POC zZjAu7fB@gQbxuj5U5bK8?p}4WPbHP?6$_@dJm<#2OOwF3YzcD_!@;JqQubMBOI3QH z^?AB2!Kqy)sH66x#Fgo`WT-qx^}pQx69`~Q3h=>U&T^QQaWoMub*m#60$>c<=V^i? zApJHi(fIv%Tdnu0;syAodGk-rHi-5pQKTlCQ)-Ilt3R|L~Kbolk#qisxLV zw@!i1fq=ba@$@4u3|No?d?X!=Gvdhh7}&?(1nUP$Fv<=L$9#~O`@;)Tncd5Q5?z*? z`03qYG@nH12R~oC@+9X?YL3UP(G6Oww>BfuG7sfK62Fy6+V2yB))c^Uu=UI^E+gd1qNGWbU zK9^LQtPyG6$pR|i_-5ofoP3KOJmfO*KrtMn~aXwsQ zw0?r&%j^aYf=)#O`qt>Q6XG%JsdB5a;j2$eP4Zx41LKm1YYPaPhOoA?ECcnEo8pP8 zP?>PFsCcnv%l-o?(E+$;x*ZUwYGm`|xRmwG6kyxMQF9^>Q73+^55;JmjN-I8set%a zFNC<8g$y?euLUrRHC*{t#a5*FN;B>J$Gq!a zrDecs|M*KRDHZmX%MU{Wb`Vb#&U6lrjRW5R0sgoP2Z@C?r!28?ba|Q+WdO0_#JNN5 ziy`(M)_ve;>N+^B#8ueivv+ust6$Qk%|Zf;pp582Lu29XUyipFqE%cVKKpFgxkxhw z6m}ODHKZ(6LjT8~JzJ6nd1|6!GzxOJ$m(DJ*RMSSwPy{C7Z?eiz0k3C{VvD|I-`{Z z$Hf&{2Y0SN013opTdbUpj`OR?h+ueWxOG3&5l%t82O4rqX9Tx~1$00p=}tv`(ex^& zhA^ywiMM=kqf%v)BZmL&yI*|;>Zoic?TLSn*V1DWa}YG0hOY1|?km2pN574-!~kZl zK!Sc&y>!Q!CFbWS^K2MY1#%UPoDE(%B_1J(X6xJc*FXTlL0l;}Gxt#Q4xXenS-($I z6-_`)s#>`6@z>B|!?t}EoUsx`uP_P##v~V=TLJb4*9aUKU=yu2PDvj)$pUHeOgGW2 z05cr0N&$ZBZZPo__=?Q1{a5$IwCb6v%ddW0+m4G}cfb0S?C6E~_&N4XF{@sE7_1(2 z^_LcK3Gp?dq99|mrA6F@iVvh+`E=;zJ3Ll31&pzMO`{a}ZY zo~#VPEoeiQMSIraO%mg|a)~Qnqj7<0DUu*mYCsE-owPP!$gMKc_2TtZDp)yHnjA3p zak~q$!5Hn}?i}=hf^`mK;k;kGXbVl>^*fj(%jUq$I7oH02B_jc6`?ABed7J}=v9Te zj$0&xBs>P1xPozz9st%3V$f|IdUFxu?#QWh@cgDOOGOBeFaWCYfr+~w=i3j4Lf`*! zBGgIoEuN7CZa2fDAI7oc2iIWn9;IW-Uu| zWc2sU)5CxW1W1Pe{*x%7rbQlH<0(ebIJ0|st3{&LH^?T5; z#}pP0q~+HJx}s9#7z++ykOJH^5P3Rgj-kT7^aM))bBIOjFvN38cIc~~PZ`$zuRbJ) z>0m&`NjKCR-;-S_Ly$3hU|vvm*+jTKk^yQ6-vS3VQv$l^5@Sw9aB(BoL2Fi62iF!H z9+fd(JJZPl0>VIJwi#s=8(QL8O$P(Co`kV03W_a@YZWgEPV!EOFEVrfj#&AZy9v5; zHUk{kWtQ;DS9a~0NQToG2=F$7b&1Ed%8vh#bJeM|m^W|ZBE%x7Y_^c8-va6%0V{A) z)j%h{`*OK`|0x?0;tT$h=$-2vug|G~B0d_-Zdzt!Z@Eq{H!X_iz0ylf?xLxdStwQ0 z;dA{(OHEL@Hrmf)x2K4YoZ09+w+B9168j0A7JdfoGvO7kWcKyP!b9}37o6+f2KA?>goMjpGenv{`06wHPy(2_L3E#n zKRz#2s}qu^at{=7{xk^i{x_rqPs|-{FB*!Vvu&(jlRh~Vm1m$Yhh{>Ydp)~iA9&HGv!bD{Ns-hLJ=N;$25hSu)ql$f(TXKY*>cWu| zI8h^|8^Zk7qqkm}-h*~&xk20^(}x3~_x~<>6e0#h$4Jz==WAS>%krb$JA}~a+{V^x47ql3b2BdfSP0zoGV)NENgA4bSRgt zqd6yjx?AW7VxkQml^f{OA+sD{!P6VEOXGCOU}Hc_knG7#$!i)K_p3`++#V+k^r!K9 z0<=m2-YB&`mLtv!=wl`36>$f&@!nU!fg}(k4wyJd0<=EY==kGL(Zw`A2pTjFLUfZ6 z3tahSozvzN(^kp&KfixxcqK+!TQ4o1hGbX*41x-&(z`hkQrCFYnKvJljr}iuPGlb} zuK`0{a`=zWovKNmXu4!HW=<6Q(8nbQanpJ(RKhlYl5wPcskOh~W`E~?^o*Occy~5Q z{{s9d#j^^=xTje%m+BKCfP_i*GXir)dWN+=ckWD9LydK711h;PFy;PJ|GeF z;r;)9?^Ch~uEK#;0bsyO&?AR&+-vhNM1X|l11B+K0WPO{Z;yi@c8-I94iJyc*q+)* zR>9vpa#Q?U1)ac0FSsnt+;>Ghir%#*yE{7}xu_7%k@HDpqWe^gb}Z=X$NfC9C0qzb zW3;76O%jcR@YET+XanMv6}tI(s5%w{7q_lURaRF=rtK0_xkoT);N;W@qv(&n0aNyb z23T1H9Nf+hQs-p=MuYUzU8@BjV*#zHS0rP`u>ttWb zvNcMFRn4(;?#9t`ol54lewBvpzJq5DKT_cX85PWV9fC*y9pEE~IPfH`td22CzDG zSexGZHl+B^G-P=A|Ge`{kP;3l%A|Prhtu&a06Yya462aoc`3l@S3|MZgu<(iN~<2I zlk`qj?vab_tY9kNnJbK>Sq{3}%u_T&RnlC05FNs@7nlJyL<8^)n;<#`aMyK#r*(jN zx@DIk!C$rm^}Ne9kr~ejx%yxW(}KqU>IX&qL~`@cs-uSB{Hu2aTNqN}12ISwNJ6}6 zMJ-tNlt9?@gW48QmRV=^-!r&&5GlT`s&qA{q3Mu%?qfW>pQaD_`pqije2mFco8tRA z-R;Bejq@e>=uxAya+m5h#weCWub4U`{i8r3pdbiI&T{y3<2qP+R&!Usd&34gLz#s0j96hlPMR}2@E&{1s z=2=qAF2=xSZ&8U#NVEo`tu_b^g|yCkBA8CR1FG%i*1RrpLcsh z)c^7EZ-FZlLo+)U$rn4u7(97wM3D7>n2~Ms^kM)=d@mZ3>g6Z>Y4gXT*uDR}c&Irl z|KvvC3?tU87RD8);9@Cc$pIKf%-bu^F^a}h!RkOjUTJigKdhMkJ@nXykdV14^stu> zV%pHO5{osEx9_D#Iuk>{*O`_Pf$G{Np0|jOn1NJbcc_;@BcP-0%JfYt&d^uK7<%KS zl(XXb`SCPrPTgW&X$}+#hDXcN%=o)MYiRo939TE-IoS|TZn}`LfR=du#oWDGhYTp0b8d?)D|NGNlo0sbRdB}B6g$@G>>r5FCOz8Hc0ohl;i^*OhgCnMG z4t(aCc$^(HtC|W_Tf{P^0El7M(c)PRV2PIgK}JDLbVK_J zq`pPG+O6DD)Ha`j_Qa7-o`)FWwN7G&{$~mS^gSoiCYx1KfM0ovHoJM3>F2(9NgD@QMX^K-Q!7vU8?c=IAm{rw0MbN3-G!RkDk|Rf`tC zoeXP62P*-sQ9Hu``r|9<;2O%DQcX?Jx}YS?t%BFk)jJ29yF>bo=;-=z=Ll^dGtAUEY!LCT}SDkkw7h}Z9Dasat5DZx$jzXlH@a)Tk+wRDAGM z5?m*6&SEh`@bvUV3sYGGlbC4&@XGM+*TI4rSU_f#>rBweRyU8B3ljg_^7-P;E#YAy z`371c8pMEoWC^Q-C2pG`xI$!^KT2i*xYHxLL4 zuMG!J@Y7QOj}&1V+mtQISDdy{-DkfJpL zircwv9-kczV57`(UBZlU43et@RA@kRSyTV?tnB0jnss4C;-Qd?3?}7df@5?r%^T&J zd+!ms8M8B$A-jB#8i{h~{TEmnfZ`)kYMegMu)(Y>Sk~H7VYy;mZNK%Mo>H}aLY%hI zKR)(6bY=t>A8}5+e+61@>zG*u4_ZKP6HNwKul_bWyLHiH8t0+8nE!FtJ#y&gGrJQ~ zQ|3E<3Qfl82~~EW?oQ1GhlhspLJjb&4F?qfIWi>$_-EfN zZ&7RGzT!d0^q54gUP{lzhWO1G$<%_aC)-BR=N|Il|<~ zkgCeI!m4uF=460=9$CYiOfNm%-OC$qAc(aQc!QuUaHX$WxQoHyzx*fH(%e{VIQy|J{yK&JeIvXv$3Ww zRSD=>WnC*6wELM4Hc)^vQXU<1P$b8d^~Dni%^0forEzwvpiYqXaVzxyThK67ZM-a) zc*?Wd4n1n^15uY|%Fr9&FoH+u?Q1=r@)BiNxwQ_WzOH`aNC0chpcTv@N5BI>P7t$W zXZ@fEF$pTlt5>@@2rSRFgR7t~XNIdZ*{IkPzeZ{8H`H{YJAK9T#uE)tPV|CFoITF0 z12$;ps&N-Mt;i_@3~GQuD3LHUIo$>|Vq@CHs!~^;n+?Hyr%&TMKY2DV5(>cSMWl%j z0rAQwH2Mq8>=Q5jpwBm)Y6Z}NnowFx!>2D*bo9ja<#yEbd>VKr7vp*o#LO?8Xhnu7Kv+1J}=nNMIuGJJqrU!|KR z)}`PyB(B{%Y4`fqQY}o_6dq-Q)kE#^>X+nJoUw#`!D%+=t-g?OgUSc=_x<~qzBk8c z0OlPz;EaO`(6lqP>0E3i>(ZMqf<@GU0b?M>tVBFL8o-e3Qi*NR##A_>O~-~bg85tj ze9zw+Oxh+=;T(CD`t-r6M2IHPIB12G#PczTfT4pD^tnsyZV#;sa9#baYqCK*X4{XJ z6&~|K(}U=k(KMa{2(LZ;-rs)o(}L5`=VaGk^NX|PEZm3D#z0m^j*B_4gxuy-Lk*OX zv&@wrcbZe&l6?+{ zO3tTrfOA$;bUJ5J(Ha2(s)lfKtj>TZ6Ko?^#UPi!Q%rX*kMUh~>U7+jCIZHoG8(v> ztxshbbai*ZwE)#K%S@ZUJpEg6mL}l(kE9%V{bfei@x~Pjuk5@CF;Jjp#$EsEw=aTk zFdzp&r%D-ri&J2X|C(9jk^OIj`OpS*bSU+?cb=pcm|-!_rf}KxKCk5wrVO4j!^yNx z2LYZWW~Brp4oIQoiHdoq(9PHHf(V-h>jNFe@-!n`yu%D~O8mM=8!v_yM0Wt0oI(!B zF(}?3%(Rhk`zmskso#AjZw;Ngwm|T-aAz1qinFi9HGJcna%0K!6X|*&DzJb%tb=mH zlej_&CIJ25r13&L*<6dnY%1h@7HjP=i$?7RRVN5wAU8CFMYeWVPM+zG9D>fvms$ig zHs<=l>8=&=8}iKkkDlakJ!gFwt=xN>z5yoUwIK#66Y{T7LPG(uD`4B)CJ)q{ynJ$` zI(x)YtnzCMoe8UMm1Zk33q=?E>lah(P9C|KF7DtG&zbGf*B^rds9EUg*Pt*~hy*S= zJQNJ@+3kS=b>f{%0oH~(X4RVbsc0Fk8Tqdde^VJgryA`^F3eWpoP+@A31Fj9%JM;L z?uJzJQ%%usb@eE9PjC`(3`?4JUT%^tzDS|k1&qiPy~-NsE>Ei5?A0&v=)NK!cuy+# zrHgDqCVHGT6R?s@N}rrzf_idwz8ZC=2wKNLuLI(1e+mq10;~@#vs}gbgUxvqb;3Ah5W1}6|J6+?cKH7%dR0AP z?tKAF9El3vP)%BfDrO3xjDgZr9+(@@phH%xx%pcCcq;^Rc0M=?T!L31Ag`7KfOxJ6 z-T9xvEC=X#-VJ2#9Ny45iq<0N-3RIKobk6A!V9DVUp52~vs?X#uR|uvCb$X_mg`Hb z24#sw;IrkY&O_Y%5}4Zd%GY@z3!22AKU#8I|H4R}HV;fz|}~wD=Rm_m0PN zH^b08j0sDdcxE!~77O}^2cMV2Ok9=%AHDOzqhJ@khE~G|cS8e8K-*Fkzv73=OWoMb z`^QHL&WjJ7BBslChq1^mV36 zQye5iHahU?y$}-DemM{20;u5M?)+NIwHI2op)D14dq*mx>2Myj4AlCL6xsh_In-l| z(M@Mx2PEM4M9+np2D1~q6Il!xVBV2&^S6w?xm2*J&ZZB)$2kC5_Gzg^&vDry&C09u z48j|~;1(b*jPaZny7!CdZ=Ia6|zURN}+-I+!|PK?v+W)Ij@ zQO2xFA-|i(Nd#>#f;mmR$c|5Jgk?0OiaT@$mXn?I?BZ0GnXZ;N7uct=yjU%v?|7ku zRdT+#SKDeJFoyMorx}e;-&$y2*M=@K;@=iuA^PY$P$%UGJq(;(9+&{bsPFG%g<+U$CXjqk6(H0~f%iXvJPMY562IU+- zxpFYawT+LTEJZIskEEWW6M>LU`r9HK;H)|gyYKOA5iMS=8_Hs?O+1T-(_>h4^?)%N zxr$3c13n1Oh2ekedyFLDjfbKl#~|y1t=0AgE@eDngMR*Na9@=(x4#K}Np7;o=>kPO z48w%m0pj@-1F?CPW6|P)edyX6;y!by;`DitoB{2@?c*3@kuETROXTW9WHW)aN_>If zbC)JAQ=$xl2FkAli>Z;F;0vH*C&1LEOzTL{>-UDQCdxuqeh3Q$lhbEuH{BSxp&+K<2Hgcz7E8&wHswlP^2|5xNrYAyKyTEh$xfzXRtp%*0&r1; zwbUiQ^5tVtY|Ati=eV+#{pO?GBbiTPEj1h=2we*nXhklU1Z(`U2} zU?}b4jKk}}I4K}y=JX;&?yWn()wNiTfH!E`1hhDD+fcO(m9r1317jg$!D1-n`n!(k z{3q18%-qJPV~&Z(3ottV{P2&!(;Z;FcCI=%izoMo*7BO$GX~~%^He&JxvA(xY3o{q zQP(is$Vkr#yac}giAUinG=PO>ZruLHv*4Q`+UZCRSYsq3b2l)8KB%LEuig&^3`j8x z(F!^UdD(yLGad_g<0s6eDcMj}Pd313K%BLPE5B;GfM;5uODX`M4@8bP_~U}@Hofm+ZQC=s;0y#&q%gNa2-g)ak$W*(m_ z0xvGEUScikYii0nLPrkdD}Qkl&|x$hZQ}8ggR+y?lk;l_zUo5T+gr4&{5ew3g{dg4 z&dN=edx78h>Z{+84b#JOPjWJ zeW5*UN{_}c?|3XATC`c!45*$wJ6$c|3WGetlmyxs*ue|>0w!d1#?0%F^g(F?wQhjv z9pVSGkv`}(Yu6qbzWM`Zl!RA`W{AK4(K8Fyt)YTA=m$2msUVcwtuw~@X%~P8_eTcy zbrw#_j{eqAsW>KdQ#!7!O&v%b#3jBQ$RYt`?n;>`1voE_tZD!7;)@3Tm7hQ>XgM+3 zlA$Ka(Oxhhjr$%4F|Z}}H0{<4jZ)`EGoTz0-GpKFkpBKBJ0{>`d)EGG8TC$=zoluRIUd z#mNGUA@QjyVyOH#Kr~hzgU;+1P zu?B#PgfPb&JPR_vzQWg02kDwpy;dgw_OBf5# z(LzAB6q3(6ZQ?B%B{UO2oARhkIUul_S!+|5M~fkhnz)IHNw+R9o*rjr^oy^ia61ri zG4$qFr6#!}7Sc}VFP)B>m3>=MfQzrY)X<0w90?XzKm|Fpbr6FOz&q*MA&xR$Km4|9 z#`@o0`bE=(90T_pDT!)MoeN9tJu3Txm9x3~n@@uImcX{hxJrP*23-CI*pf9-e64YE zBXd%Ax6@b++yC_2-_Z^d(GdUi)n{d6k;^hIzHvXql4$Z51_BJsm-f5>wERs~uWgWXvWHOx8jPew?< z5(kz6(s{)n20o~+L@%b!-`9-t=$9% z+$w(Q&aQqidUqKV%}{H%fn_jA9iS8j!u%(%r1U@ro-A?C1z4e}t3R|apij2@>mgb2 zsv-hvX}&7@^9;i;c4LE1kw`tpqzwv|tvm<=y_cOTUZhj#ZQBZ}8KnP00s_H1eTAR? z*U{_>1~6wI0-{;}_g_BqT?l}Ob9MV_Iros$aaQ}*|xi$&?r7Z6D z?$6F?T~HWR5(h~V5riHdv^lD+b(o$8dM`=&1^&^uKYsS(A2GC(L7Vgo*TLx9SOI(O zDXV;G|ZU z{1J3%E~{bqR6FCLUwpn332moe1cK2*CrG^Z5Tw})H)& z_?^m8P_H~(1I}GMx4r@ntd;OsbMsjfYmnzbk*r!nAmEEL@^US$uB;L{%xDJ;pjumN z&Svs|;JYylvS0$!)^6~uK2Eli#;DoxgWvc*m_+F1->f<^7ykLt@85o&|8EIf+;OZ` zR;S2OPRd@KUY7>xR|_{yPX>wq^V8{~Sk8|g*v!6%UY2Jdjfpo%2xDn3rJ#Gyp-w)7ahz^qnz|T(?&eY9?}~PwgegmnN=h&cBs;#j9HB_ zAOPfZT3QT&+?L@Orq^{$GlAPoV1*gG+xm4D(P14}eL}qJ=5y1~xQ^z!O7M%I;oa39 z2;g(qzTvtV*~`-${qxtK(!YC`?2vr#^x>AKAEVO&y0Sy-)fC!mb)a;1DOPq(LDa@+ z!%%i)gNM2Ka=SLt^bb$Gj0Ww=iv&#szcTc>Hegf=$?dd;{f#G&Ff25LWK23)w}f>d ztIJElBjk8md&zo(_jr+P`K@n1AvHszC4RHsfkw)FhIkHbw8IuMNgsM!j9g-1xLdqS zfVs|yG>LDevmw4w#7JOSu=jxl)Vl@?BR$XnbEqREaG){2=gM!;QqGn`lDo};Q+eWN zBe(7daXPNv(-kE?NT1caBd7Rz1BG+CwEWv;*n68;_^0T;SmwS-+M>;jZe2%cD38b;M?gT7PRcM|g@CJHja>%3IJ88NqhESm%UPR1sE zr~>NKZ^#kw#s1@;yAzlR+htCj8`HKBU*1mH%nZ%vc{nB8ab^WQ3S`kKz=02C8@y^0 zYz5SG94uih8eGj48bJSqZz(Iy_R~eHAg{O|fYLh;rlGBb=V$=Yf8v4i8Bi8MwA|&F z(m(jo92Blyq6vcWU0>SZ%Bzrlo86X4M@RG#o*Q`U*D60`Goxq_iYwkCUacFQh{jMT zV}ou57C^5(BK5bw!PARqIS7%i_`n29xHbCn1Fho!PQ9+c`h;TZv7=i}0da*)id>L= zv0oL#Jn`f&US)v*-O+-E_wV6GMXHM%yIFAnR*tGMse|{W*CuKWf1qJ8ROKA!3uN1) zcXk-Dmf(bhUB)Es!BPm!fZljU>iGvXV6i7)jM3MUR#NRwV;NyJJB$`Iu0EBPb5X5X z9q-KhKa*RX9Do0N=cG#4^Bb?lkm8@Hbgr^Hr!x-v0yt{h|579LnRg!qPY303GTWd? zFBmYn{}%^zIt}>mzkLDxgZscTN*GPAeiIBhVN0xo=y~(kvJGA?wH104@Qbhdg?r7k z(TvI8$0~*|M=-TDq==th$2SF|r)Kh)BMoxa6c7~%nQvnrwV1)II*<4bw#V$FD@;0% zQ#a|*CF-L>&}8tAf>_5q6*Omw%3Hc2Uisbq-c!1>DNE*av`G7=o}nh8G}=TJjMzjr zZoL?hCmzKmo^b81c7(Igiw6jcUz-@(N8%gxOWg+!?cR__R0%VK)`<`90B7Eg-~5dn z1y?DqOr>>uEw7B$^N{-#`%%U;}y5d0+dCZ2v9jy(8XK(-Krye`p_t&~Q zr+8$lr8+Amq%#~F(QZIwa-y~e7x&@gU`!x@X{h0#L?5?TqMq=2n$RnUXQePQI2jl1 z19_D-^HAsv*XItS8hr(dxML(xaQyw@44I3z`nJ%md0Heb>EB{y+_~kpm0BgtoGX>3AXmSV;&wrtR7@j(M zlNXF!kdZbG@bF@)3uYy9=j;3sQ*Lpq1I^CJk>Cyh<0Udt>MGl3(PBNW9x$mMISk$x z5D}W2PzEiHf$aemwt@k5poz}6AC#>{u6#IbMNd1i7=HHDhfhJYHi8E;PC`dH>0|*aMA~5Wo>LttSy;)I}P3fI!E*dp*!^4WI=ijEpouo?s_8 zfT5xjkz%H{2v*<(^WS)2%UG>0<7iKUm`LkXjDh;r{kMK~qpd-gk#}$|8aZ{G3CX$E zfT~`*`^uw`%Bw6;8nUkaQ0j5*S|1dryL47LTXqi^^o`>G%aQi$-)~Mt=SdJ_#sm7~ zUNFX7yK*s9i7W;^z0%Aj=kKPpo9F15&Cm*P30{N&x(evnsfxQKRgKf5D`oFJAUk3s zL$whooVaaJ2i_yQxlUGf4J=Wd-8{(ImK^6~$0kkI%+LVTS|iIXljT*@!!$V$mcP&e zF21k|$>5y3{_Ac^UWFhe&Oqq=x^O?_D08`QVGulbAd-R9z`0ChfoX8XL*BA8_TB zGH?!2y!kvhi!JYP+#tYMNe7&x2FeCyf_6Z;?yaGTtc?<=QP~UNJk-$9h>~#@HHj8Y z%N!bD;7Nq3aGvcvozb6a()u@=PVm}$7<8D;&vU=?^m(41bCVcn%rrBs##q_1#$-3R zYt#7QW8x#DCQhtY4jfDdZSe#)p1HlWU;@Gy1hxlalE!gSU7+iCIF74GM@xc<5ukf02-KNWun^ZxhN_AWcBUcdOvCfCHE{zID={$kr6RDtM9g$P$ zwRtC1cvhg5uCgIl{G=Eiz;RL4=wP58qz8G#Q{wVwN)PNPp3Tu9Hv`Wp8;eY5P%$j} z7*;^H_1cdXAzQ5PJn4X39HnC?m3e7t4dpbn#O$oy%gkBW0_&}%CI_xP1(_#x@Duyb zKGk|cq&D*3p1DiwgVJhfPm*m`Kk+Syk;CJfzW)w_rom4ii%p-23uZ>pM;h3$i9Z;a zT1Lhw;NAxNVpK&X7pHVbb<-xXaia&B=tT$pTQV#j`sw^kWna;Bp%dLqDMtA;h;3!8 z@^Bp*hP8J0c34`%!f0tgVF0}s;+~60i!jYGmFOJ3Z@mzrDr$(=&f*NFGqx)HQIS z5-pYl6~d`eV!dYc(-vxbKd;#Ui=n4laSm*t>10D+ zDHP7-Kf{RgWR#swu!6+D7a+y2@Txp%L+-`^@u=40Wpj=xZm|#^wwcBlDhdiHnlNUI z9|{km4W!UW5+?hh2c58L7#7@Nb}MU61;b582L*~ZzdrMBlV4$<4v@4F(|4QOd@iqA4+@#FS#NT6L_RX<{;qio{`F7 zzJdl1nG8}j>6jd!W!J&=>Hp&G&A;Nh&a~00qJW|(pn#$%5TIh7p%?`SB<8W0=eZcg zEI@z&3CWJ_q@B_86ek{&*m3N{j$@}2$63olie$--B#)9je4S3xoxXkhTX)@m;6BgZ zn}g!?cfX(R)q37xzvt9Bd%x2u6;NS@DNvc}E1*yiFqXO&x0NMz z@FfsyoLlL1iIL-JwlwAgox}CB4XvtyU=H5Gvx!2c{v1N!!c8S_l(=(%B4`Rx@kF?DhgL za#BAezN9ZV?!PizJk({s^G7cCdFUhh%XKP&i=LHvpjHrfCp|1^blrkwKtWoqv z;UPIX$qoppZUBvaZu^6~=xDASxFP;eqLPuZ{^TuYYOedUW2XWUYeobdpv&)*MzKy|1!=uD-gGo9e=APzvw>FjEZvxe>) zU;EF;zONGg5aT31Gh?a%X`K-?@&7=_)iu={x_>(zllIQHYB-sR-3LP;0JU&Aki4u{ z+*|eRu>v`Ea>d6i6!rA zZ^Ba3%A)<_ck-Dg622-AcVDf6!7l#F{pnkB+bUz5G{YK?m1v-_j_K(!eQaJ@7era;$wKE&gTR@9B>=0ZiQ&Iyb6+L}i zj<0`1N|l8eh&Q?gysD?lP2ip(ad&}OsN?xMu6TT`L~Y(=Z5ezRr%I2zb-HC-P1zro z)#-6?AlftH$zUc(j8&_iWepa8s^w@NZ$NX-5;;>U_K~c>BTVDoEU=wodIU%-X~uF;UZ+-fx?7+DbO@6H z*c$2NjAjoq?sOZlD1IMS0*&n+;Pt|L-~_$>;kP1o@9cmw8p+fIuG}Z3SjMhNF*xr{p<|h3u+%uW&Yo?m{ zoCE^4@@v9s9Z)thl2%z<5i^VrlPzM3QDllp#2(g_|LM-J58wetOxuYhb6iI40R7BE z^W+k))vy6=u={BDq}|N`f1&EX@`yROrlXvPU|y(R<{zlNB+tTpKae^w4l%(VJI9y@ zfw;4|ygMAC9|SN+Ht&36Cu7?Xof^?6?Tqf!&Bwrxf+D=Z?90Xlh*l6lOQux8#rt7( z9SQ3ihUJrQ?Py!2!mPOUd$8==H*jjfAT|<*_zP#{GE+enA~fLQ*QEsi;^}NQ2#Nj5 zJrUdL9V3lgr1i7!)1i~nvfmcf6^B(~;KKNJ4zNi9&TFOwuY~|(s*@_Xi&b9)GDa)o zF*8PER#yP`KM9iHi3)XY@ym?GZ47*wG&6=#m8TdCgTnoodgtz~3}H(Fcr+g_aDO7k zuGY*!SUf9dxRVpaU|B#+Fq?6eN6J~+Uj&B0ViTC1-T?Aj%E3dKZF8K71oO%R;>9oB zbgVWX(h8EWGN=CdbS6t5m{TbuM^g|TYhcS&e|!>R0(6QUg$qjMLD)id=E2CeOW$BH zxi2Hn1Y>}0pr*RwhL(9KIm2LeUh%o98LdZhp*Qd{ClL{I{{D5lc zZSE%vU0o71PJeyyYq?iAV|KPH3Y?Sth0WB6qMtF!R0iXP3#b9Ni}l&+H!s#b9wJ^6;Lat zjinO1%D4kD0gKh~R{wgxsM1+!@$<7;YN3{=Gd%z+rwB|=B>1Tm zlZLt4416y3Uyr?o;kBREH~5F==I}L@``MwE<)iPUqbp8*`OQ3sd@*a*12mZSZz!A4*Sakznk}i zr6mLGklb`u+oN;dn`c@%nHOeW5pP2MxB$8tIKtIRurC0ij26(c7-F7m+birT*2Q$n zX}OIBz!$O@07J}Td`Hj7hxf}N9nULG=E=n|t}1$f%lXfzf8D}m_vv_oT#%tU3tYot zajy(*2!#=!52RBnOjU_p;;WD6@5az)`SVA(*tRM#iJfw;QvC6y1In_rcIzRTTuobX z;2EjSrHMQ>VD78d_0>c1VhsUXWAsbJL7P2-`>Hnw(1L@LOz%7qcbrz`HfR8ge38-l z3KqIc_-2Bu4iG>2<%}{)>T6Q6%4xjz02mO=sYEXFFf2?K*WPt0shd;l<I3!w-t%|3a1%i;47^sm;=797EUvb7MJ)xDiwA!U!C7Ngh5&) zx9U0Zxy4T(`Se9;Ss#k;()M6W1~{wEHn9C7U%T~SUFyd00E}$Xz^WABQC+!o0FYVe z$95?(_4yB=@Q_oi7xAN*{jEi8>b;!cD7P{Rdec7o5yT>0csr&r=mCBFTh51RT*P^3 z*nOc~>eYI>LQfa6KMqUl?VSCWCk6t~9MHBf#!Ro10eiKsqTYA;_giXh+RhyxKLNce z0*r1xc8nbcNbTO?EH$WF!kF(o=0199Q?(6kk2!T=*n#EGKmG<|+I#|RCTD>sJwwAG z_8=cn!4O-pu@cO+#N=TKuI2hBKuB1Y%_zZ#2+1@h#%_*c=LGq zmT^O54y!z9go)?O0W-0Knt4qz_4TnratgsR14Bc6UFAmc425DC0M&t%NoofZ1 z!M@4mMQ)W$S09wSHC=fgO1+;uX;K=%?FaH#_$pxUH)EVAz}UuvHd)sGoEvk&1`>am zggned$?iDHXkC2r%A*kf2t8Nv6)=hHQ9LfdBa?i2LYLJ7E-@1aX_R^?!!;6a9xSG} zf$C$4;xEgQa`+YQR(Vn@?Pe?EpIM;oRV}p@2v&ir1iQ2b7Vl@-A!E<7wE9ED_n1xu zR3||zsV-AaF9=dIs@cf!NvH_s?p_yPP0Zs##phFy(>(Nmy9Atz3ItWT5{?FMdp`M^ zZUG~f3ETIHb3X?!x}q9F^J-!W#uAmbFR0~)d3V%6E-ivZCe@Wg_&aIgq5c1_H-5-V zgO|?QT*)S-y0*!~+~wpLj~fsAGGoOzQz6?xjERJAl1X<|8$rp<*)&$W>b&fRGF=nK zc_7y7zCYLJro3SQn7zPZ5QECeSvr#wspf(KF1CX*P&=p*ByMpE2~7354YN`O*IO7T z6SIuPIW@r!6&%l$nDBs!Klt(teITxR#tkz3Q7aT#+xl=<&O32W1LPM zr^98^^}q)|9+S%ZPtCB29PU^PNvw(;&t#K6+ExiZ0ICCphSFh-uUc(1REZVND=ry~ zwYT&icRbJC0A?Z=!4xRuIv9rG{`{3M9{%EcpZ>EdDr4b7W&CxdPM_w4CVv?)p#>GO^J{GiQ7-l-(npHe)#a`k3hCERmFe! zAk`UW#br2WV|0I;!;yz{3{8Mn6!@7yUvO*rB)C7Q$QXVq#s#JR zk9T$Y8G@ZqMOT?I1t;Bn6C;W222GWUUe%~(_Tr?RwB~3wsl@O7B7FB%7;Zhb(GOwS zI0$~@WiauzDaavXNUV!aWsXGaI#Ssy0NZSATMXoERF|3FI;7)DfI84hV*1tJvIZpL zat_V42i*jOHE ztE;vfq8=0m(!g5cVJhe-o{ohlF}2jL=}^M6P6EiUKMZy-)|Gb*)e9jtMnF+iQv#Zxv%vVBQ# zY!pQ!$1@PKXTeIA3Zw-*y)zcP3pC=;6^`qma5{gx>kisAh`Sn?m$`|DE!w*EMu<0) zuc?Fa2hRQU=Kby=8w*nTo;jWjVgh(~l@&A14=M#l6?0}*N zjs%b9CWmjz{e1oBM&05eBdW*;kMQVWD*t`ipN4KR@O*LZEmqfd+BA4?*2vZ>q{O7A zX$rlxe&r=_|IrM6r)Ixh8OMMgcctb?bM9vkZ+FndYRVCyuL!_1K#F|#1+jNYYovQ)b zECIn%17{QtfjUdQ!E2IJjpu(Ou7k797Hdx&Y%cLmC1g!&79S> z=eSHjWobcl2L{PbTa9?Mo7@H-eURZ^EMVBSO9q*ugT3Ox2+)8^PA|BxZ)X7VgtU!s z&$2DxLzze3NWAZ7tB-k^6nU5Lo4<1p8#84@;+MyzSwqY3E*tA&%!7|MbP95I|;- zQdo`>F^qHn`%gO=o^-o3n)I9E7cI%UBhmog$(Pz^4B*$_(upsx((B@yqZ(ri#shs| z;@drmR{KHdbCtD5mLabRRaf5tmtbRbB*ce8g!n|YL*&-(etSQ<%6AF2Y;SK)>)kiO z!r9o=6J)e*a2oN;I=r}TL)U%p_)KD z++Tvz2x3xJu`*fbYH4gR%oLy(#6lT!Do{1;b`ABn1vNI@UJ4au^Y5*E@EjHnh4E>~e4u)P8%um11kqVgd z-n@KG*4k%3mKr$E7~9mfq8XqVopO{}2`O%&H*aF*wPi|sns=7B{wg!dFq#A2*evb4 zcc_HgEQf&(7XQtG?8q0lQdoj|3bdR~|F~noe2;-?;N+PDe|hki;Pe2%%;sqTx_Ir> z+?T9532~)`nkR>9^~}X+(0kmAR||kC2F&`!#(MQ^L+g|Ve<@Dy7os%S)a$8j!hZ8}=pxOO1AlZ`%9vv8G+Qp5E1mnXWVnO?3vOfFF*1*g3byU3ym2C0N#VIE)? zkl;5_#beUsa7v0Hh^7*zU6`XJh9SG~__Df?s)xzdv1V2 zy~}+d%DFy?+yiuQ2qyu2_5|3D)LGv^+o8Q51fG$G`7R~71`VY>YPl@rhHa0*=$)dg zs=~nF0b_Up6NrIeR};Tmhm>fP;-jAqa;|KdVIg4osflbZ6(HIZYA@f>QS1EgRa=5F1c!HGdc`Aq$xE}d~IedPfc?3 zq)M3P0=Wa@(Ja0PEgnFK(WKhIYl-TP9jnk=?EWDZuW~DQv5FgZK)d!h7?7@af@fs7 z`!b_0|7_GNvm6JZ5o9nr@sW=%efBDfCy=;phyYW$n1PTCJhQ znr~x@C zq3wX`Sb5Cnv-GnB_h6F(-uZ=;l2?|fsbw<50Um+senE_hcce`V8zbCo0RuvMd9}YC zDuX+1VVf`;LA)$VsB_2xbH8bO8T|Oc3$G>y?OUZbnt1u`jt(X}oo=oM8>pbSC2}-P zD(?Kidb;yd@n8N0Xe{#-x7;djfF{)%zf^WufJvxfj?q+k1daaW0+>>Oa#|Wx(%4#n zUo_;h3SbfRNsz@>t{lTcTl4~xD6FVRspJ*N84KnSH?-45d7v{p)KQ#Voo@L^9A#YQ zynYxGU{ckADtLvOqq-e1-g0rp<$@j5t%Pn)-4pF66WeWT3t-g%h%^3`rqgikg^sSJSBB-dX=Zn+I=(f%HEfnS_Y50jz<;! z>pc&(W0QKHo#^&pJLj;>4V z#Hdmj96%-dvK)X_W<=`uT*TG>%cQ#QS{v8#yBemDg{{F#uEaD=%^ zqjRBThl%YTM_b!u2*!oH=t;zerp|JYe71EKJSQWrF_53V?bo{$8qfTTJ_HtJ=d4nh zqw_PYE(tS_$(^ccyKtYlDc44&Q*Pz#|1QILbmQl*7jwI-qEGI1`8CJ`-6J<&fm}aJ z&+s&XAYfq_Y^g2tXcS~Ms2-FIl2B(-t>6FLBYr9)<>qk+Q=x05sA!b)&s4Q3?js-W zf~5ttRROlq0ru~2JWSoU8_b;@8cNp>9}v%f{@`2C2ct*9=ZcuBs!c$Xa7Wq2!zEaq zz{L62V-Y>|MkHi4M~lC`or%?{S-5@OzMmgcXn5#csC@k zGMaSCTER@k#n+%nILbYq<;HV&A8KP}Rm*u5xlDU^z#dD0*;VMr8P;$YCKBMM@;prZ zbdz<#gG(qE&l}`$_j`PQL#N&jk-ND!--OL7?aRv@P?9Zlc0(l#GMy)(XJgzSKGw~x zR(0C?20Q)ow>#bj?*-kC5ILCR`-S$*qCz%+zkTDoh7>j?x_S997+-I;U48c2y;C{Y z?(f2Ae~KId$!uppSQN7%GEdbzV-CzoF|s258bNn+&TKzC;Q$C=ZZhG!W}3i7=Stge zUogdd{wr_|E1D*i2Hc1&AF8T=v@B^BcN~VgDTkbSn^eL5LBZ(XqGUHO*At*s zP#!Z``TX)vl|$*}rlewU2gvLcPpN|@?rJo~hA9!E>+6Y6ju>)_pFFXF@JiSnckym! zc^c@$Z^wZ5gz=PNpm|P5L-PQ`xE8*uE)q;HKsmYxYB+Q2Da#}p%-nEzu)-VMvr)J_TUn0@2DhZ=dX)zZSB>vYk-w+Q_ z+k4N;_UcKoC@HW$pxRg z_7?aK<5B0$KmhcIhG=Mod`G0-&BUa~HEJ8{R@uNbG)?*}u>3|e%la_XfJVrmujmuxe#9#9f!?;gPJC~v=91_1crPOub^!Mq%u z(4wxsa+~CzJ{M#x@ZaI8+6|YU<_Q6MNrFjj9u4h(|Ci-Ge|_s$5p*>h9uNXrVzP>- zp-J2SeE!9XFMlodd3XOIn=Px|){4-bQxLr7cx8Zn{2M06)KJeXpy}|ds_rcb3;nB#ol_e^p!<+(&k~3u+g0bu-5}Z`T>b4}IhGFdSHT@3Gjuug>!Y zAi%@|iaiw>XYSr;qmRrVzGbX#QI>q-gcrXd}f_M;D z3(ya#0nGT6N}V);w^io1SNoWzx%iHEz6-uc2L|__;GS`uQEVDmij(<6mjPy@YI@Ev zh95X7Mbup4q19XW8LQ(Dvw?Z?)ww_Wh1@=z<;z*ugBClaN%H!uk3;DZK8A9bgURbJ zK)A%OLHMd0kL7RoadNY)MEa*qT?HZ*a;6!ArYyf)=~nt>?nYw}|}3WmV|??^6gOgXGj z8v8O>4(3D``0h8sT)H97>B_TxJwANl)weQtAYvJ7cWH*h8P;M*J%oY2v%RXi(rIev z>RbVNL2ezV!uVdiryN|vgf~}0llV)gS#D@h!N+L-VmF<`>F`{@p)RoU(A}@6@xTmH zY6dfe+0=Xe`$@Tw30Yi^8w8~Lb@tE*s1#e5qv7WCHL20?FK@rh_yawlanp_*>|LWb zx7DjM3lG^&&dH6EcT2&G-&TUu!=%vo!5FAZpuymquLnb(I#|wV0GXWXL^_Xt#1tTH z;OCyN7$4^*fGY-)80wgdPfb#+X$};sL)~ zK}8_IB)*s=IzS4BaTo8EcJ@{vSbXov-F{fbOID-Q)c~ra@((A8sa2f=he~dl1U`|y#ba4lvI4B{YO%Sjl#i9L? zclAVvfiBN0H@R4o&Q-^_+zdV}wQ2|+h1n(U0MT=p2?wwvX^1~DCmtfVEIyj?3+9#d zb{sxhs{VJ&-W0H(5!*+3aR8#r7c7MNxU5#VO|Lg3a#G76 zU@F4{&W!I;F`wL$Tl7+Z&ouPpP4#BlXAewD+rPd1GItJ%0P6)s^NO6SI#W1wpmmmk zU`}wMVQpYXHdu(9N*ai6$oTl5!8uoBA{g=3ec*fWxf_^PwtH22opK1LunXz6Fp-DtAH&53E%~DW=oCp}0V`19qPU_g9xHMG?(hkO4c zl%tH#xC?UGCDiVz63aA#g7mtcwOvdfg3LKYt4BlefVn zdcJ(QKx(BB>x@6wJQgjDlAD5q)rob%#^!PQ5nvT`==lm~`89SzhN&+b;+*QX6>e?u%X((E#wc6Br_}_)yC&7S)A(i!VnCk=r+)yc6mfQwj&f1PF z221Qn)vQCwA$hAU7*<)?$~!Vc!PQ~e!MLpWO0cj4Vc_pRnQ-nqyf}83q|>z$e>V-y zYWl-HW1HFt%FgaLz|Y=p5}(k)P#~T-6X17=d$1WSB*f12%RPg|bLN8NKyrVG*#o9e zUl7kR4^KRVv3T6u?K}OqdUo$(nw2LQ>6!KYj>lB{o8lD5{9^Q68v)dj98RMs940g5<%r}E!%p7e@pQ?27XH{D{dK=a)&eI>DF(2a|hy- zG=qBzN`2(u+C7j3f4IjwI=?X#Rws?2XG{9jF{Giz{RKNi0S^|(lc&T5Iprqs0j_c* zM~?UXKF7c(r1DyMJCX|;=;yCsl0cH_Apc|ih~?w$`034oH~YXJA_GKw!}K}}Fmn|7{p#H~R5U*G;Uqro26 z2eP!7Y64113S&ZRF=9g32_T(;FiWpyUaq%z}Y<(3bA6_>eL2A%6#Ij%~t8w1X=4FquiF&2$P3j|Ny zacp7-B3)XSQa@k|kXV73-|D82*nP7s6xt@;@#)(=;0MIL%%FVvIGBbJXiQL`1mxM2 zdW;lYfJ8<;9hRImtXZPZsGV56fK&7bu9Gnp$u4fFF1LbL`-yu$F<#bSN}=d zI^z{17MVs4@Zi2FU?zjBSeh=}B_;U5i;s+J1F4Lt(902S>axE>bt#j$%PKcnq%cXr zYKRBr%E( z4|%uvaB?hXpi&BO=3zmZ9P$(r6A+yQDd=-TM$TF+U1v7BWtSSS$nLk ztu4~DuPp~wr(6fX*!Qwx)BQ74ryQLZ& z(1B)jI_}5#uEuUwT>dqbOisHGw8l$x1cPzN!b{EJ=^)0SJ~w4i31b(0G9O$QeUZ^)YZB{M{e<47JgHMWBgLYmpEA zJ#zr8aFGFODw~Oi2rm)0d4~pcCYEz1tWf40FzzEIc)2TH7c*qzL`sV|vT^M)SD z7fP^lElZXAss;lY^TIoj@0S!#`g z(zSFr@ff4H-LZ2#g}zvln|Ym)XdQI4vyj+%#VwfwZahqf0|k_WYjQ9fdIm~^4Q%c3 z{$eoH`DB3CpYf)3q_?j&jFXIFpd|Pj`X&Ih1sX67fdf0EQcB)+^KqUqHxg{#4A%Dk zGkojlJ=FmY*ke{^{gMw7 zH%elHFi?QFzfQf>!5w2Mwy0U|><1FR3x}+9(K|)nJTl0B{^zgX=h^hI6g(e3IkBAYG0lu^ zol$8t4s)ed@5nd=#ZUP#$p-^qevK>SitD5SyuN7GY2d;&IL}q=LjdhV*TAv2)*?0|z>)4Uu^j<8C@i zVpFvZjCdsR4XuV-4|g8!8^Ev}w4e3#*!&=v2Gb%`FJHgdO*V?i4DPQY!usF}>N$N4 z`Q0OtlU zJ|l`gWGy+3TR>y9x$Xhig@Z+d=Z zxsUT_4Fi858wRP3$xs(Sd+siQ{^`%(eFkD;%6oCRR@~_pBUi^o8WTWAs@rWt%nN|+ zK&i*21$>6?l!zVLgi=YTUU@TShrVYC0JFVdQ7LiaYh}_DDg|q6uy^OE_s4H?pIm8` zJUH?8QS2l}K3-sBhtGYpQx#)?+@-IU=}hmN^9qiJ6qnQG5)o3cx0P$gSZLMS=wI%< z!&$#pshK9eHHMvNoinkqFi=cW{|?yDX)q1_r5n|Wd*6xV z^wpsY+o2zpyLm$lOiR56f=AiUhGMy4mEB=V>flUGPD^4%z500d3KRcqZtq9GJ*r-) zs^``N*pLS5Q*S~%tLfVq4ugQG>{&Jz|6{HYI+kI#-@z>)BoeS#|HH?%i(!hXKpYG>ce7p}cWQK_AUzeMMq$se_376>spjrwh+aI3+ zD>8&6B$ON5ayB9&#Jyq|CI*-1WyU(%b%{lR>R7w4^e4!h@ncJrUi|8@7OI3T6Y@-$ z955{ah8H-MSwR;xu~GrYDX@!As==0&M+>Xia`wb3}#FC=sUG@qUU6M z_S$F_BfC-x=5AFTP<6C?W|TzwIAnFlXlTUA+>MX#)$CDzk*ro=z3NC#*O~U{V76uz zD7j_uP#g0jN~M4ja$8+=8*`1+-|pN@Qgx*=-6?m{_@5toW{BZn5GxkP#vpujH=c(` z>~)Cuj8PL9Xz=l#lzIZCDIu~kU;Hlz10RF6UT(Ah^>;6N@_Ax5R)eiDj-5;8I?-bfyG^E*kvY>wcOGf!0!Lu=&j>}Ck zxscHy=HKO?xxowP2Yr1Z$E(5U59(5AJnqtii#20IsZp@7*X4;H4WCG1I&~XTc)twUJLn#kw%y0#-NE87L#BdeW`RVCzs0C?MsZ2r;=>P>7fvN%Pv_)v9m>Ge z=32b#I9K3UrIa+XUjoCK;zMZW=k4fLf!f&n5TGGiZqC1buSVt^Krcw}vd2c`=}{eY z-NT4h#4uY_;U>_x%^>;}*g2aFp1=3GnMzhR3h|CcO>G(D5+fK7&!oytKBEGJfd)?H zy$9;Fu~c^7=B2?dZoSh6ZMO2nh_;J(1{g-+!C(bm(!To~lO-yN(*RDHc@YM%q)fOWgV^3Lz=}UA4&y?K4W*(J5RU@bm#7Y3UKw73Gwt4?tB1bzWS;w z(jY#HUe-IxV381gUnO;}j!tmclz*AWz@EG5rF4+KQ`*-c7^HPJK-Tt**#OSw_m|i1 ziHzg4fR7*EJdg-ECx_rCG)*N6#z~O&ajGRn83DatOs+o;*pS!`2LQ*JwZ(b8NbS2+yY{Tb7^ zRW%-{K*90Ke)eGH9lm+oAISl|oWXGFxRcfGXLKjirOe&HV#X%M+mhbuZj5w8Poo*| zrk6rMwc}QUqet%zwQFU(K46C3AK+P4vG_Fk4+pdGZoL6k$=m`ye&pjvAVz$c6##?J zN=jxfRr$nnS&N%_`E;Me#*C&;e|*2DYf3bWQG*p4{dtQ01)y^ZoDHVaEUfEKf-w@8 zUJ9K4{QFRxo(uP+u$F+4fH?8|VyF>Zhs2JD%??OB3C28TZW|4GwHIE2vH=3rA;cFW zq-A-+y%8-{@C|x&Z1>mTjGwsu9;61=@bS_k;0<)yEGX|J=e}YO0G|SB=*#dC|E*<7 zFKO1I zAcL=IR7IMrZDj@mrKelKxoVxB8*4!lR)hGo#c_-~qzr@6VX6T;nLjC@gl4BHxS;Ex z%WCXDjd9s{kj^W-ynMOB%2Rq2jYEnr8$kjtDMo7`z0JHN(KnmY3f?H5nyd|zl;_r_ zK6y+Ux15#n$`6)^sDhdDqFMUKIoTh{=v6O+ZF+-=`JDN zEU3B%oYyJ~s2+4XCNQvfnZVb4I=~ss{1Lhyn9SsnG~__jTc@W^oIQ!jzsoWT194I}AG!F$YCV*=R8<&b<|;4N^m6vi zAC_}Yz#3hA^I0$h$QKmbwB8C~uLJ{5g@ZiG!nAplOb;;qmxc1`?u%q^1UK)X#LdSyC5+GcSQCFY2`a&60Qzb(;7R~)~ zILX5x4Gas=1>$rZvFdQf61jn%0N5mI{J@GpHs%D7%~yEU?l{bH3_fu*9bDWz#x0HX zv+5e-ftH3YqlbqeNicdqH`9_UI@rtg0_)>kKYc&RP=tb5RT2#l26}?Yl$4~J28|&4 zj!8)wGXs`g0T#zyT`b~Fa}zjl!f!M`xmi5Lj*bDEyX)GkA$bYgeGZKADdW6~7kQ*6 z9v6rMZO{$5y<9L8|MYb4n!4ya_RIgrz?*U z$#FZTc&1>`45!b~GUv`o;xF!#mtQMB`SE`Lr`W=P4E2Kr zPJv1IK=9}>(~Nt4?il?8FqOQkq)ykECc(Pb4^3VD(U#xf98Z=bw@Ti^INc7e#H+Dc zd{2z89rV%-?04AR2THC#vG>(2ZU&YX%fR~z`@l2AM@U?;3zWo~1a$NXKwtXNFTfh8 zS*np~kl`UK2L_qp8`3EGAAWfIXp|wl9qcUtTOp4jZtDt}!Mp=Xq~K}4a(f85;r}7JMaOxf6Ed-R<5NQQB#zhUw0ZXVbg(eVF znTcfwN%Vy>U&iQvp!L!VQuzw!>i|~TesnR&8j~9=hN?K`X#XadIu?@$$OrN5K>G$* zff)>7`u*vo zeH@J40H|fo7J`^cbxtsQBEx_5%a@oyi9YNq`0@}RzD`ak%g|XyWXp~Tn4a{V{R>kO+*i`}3 z-g7RXcXNH5uQ|w&n<>Z5KlmTM8CmvnZZV z0#(A0#}2aLBOWpn#?-*m7Qx-dnh6M|O}NfP$8>;z3}#z>6&PPgQ7@%RU3OSt_r3RUz80b*yARP~^A4}j?A2|ZQ@)~D%Jgm)B4jDS7-0Q$V`~~|kTk_t+sI2e( z45M5FzIBi`4^2YfZGvK#gEl9mZK+3&z}Z{<%v5_LUotr~-$662ywqu=g_)X{eN9jm0>q?Xxbm)7@2Ddhx|9`gyvXzD)Gy zS(T?u%Oji^;Bke-GdThovc?$ZiYgdrdeBN6>#00yGpp|7H#kXPGm^zKtYS$c^Xh~F z%nf2lEBmdTaj`m;KkZc(_mx+?miP*FvF+rkYS>)4Ph^~UsxY)8842Qx7ndIAm8cP9 z$Y4-O5*9;1-W1eo8v_@Wmdawv=XxsN`5HKWUlr zKLs;ro9)`rF1OH@o6jRCcl_H^U&nxHmDC0X@HP7h)f-tm1Opw+J|!`&T%;NPTcwdx z+e?@W4`cAz4vFdci4F07osGWlPA9)dk*_dNVO^HWx#nJi-cI4=U>e zOKj^Lx^^Ffxh6iYRSoaLx7T2b1GO?+fk=8f-o5YON@>4xKjQ*~Q+jq;N{1Cr$hioYY z<6A!-5eNsJe>9(o(k?Aap{Ih)7Ja!h(%_U9S0fLjfeGOq>J8pcHN#8%SD&i?G8mv@ z11}8a*98wO)p7{K?=#)XY6jymCHOKjo|U~`f*GAc1R8r zoEaSE0c)_tgS$b;8@Wp67grGq>RMe{Wtk#saV_b~Y3dZAc5gc>sKy^|~ZbA?*D1d2sKQPiFc^HIpyeo1UgCdZ}xy#

JqopePdKmkg{L&ObyTf_y|__(7up<1^S9PqWM)?$=n zo5jX+0W3sdftL$TAu7I0y@t8D_ZR($^2i`wRVR6IV1aZ@fdM<9CZ=F%ZL+km5av~; zOUtOy-p1v8@fKK*c(80?RmMt-xR2*JYy)yX-@^TC6)c0&`W4P>jVVfCzYXdLJZ51K z*ob)Pr~ygz$DUwqRxHzmVDcU@KN`(@#q&`MH;P@B{jCYaoLL zFmHf5CPmmMk29g0+NF&Na8h6F>5E{B-}p&S%?4z;ms8K0p*hTJ+`N6)EHK>G@;a$Lye0)xlF&SXy= z`25YW6I|REcO74X7y$uUj7&fMAM6drbx7#E9G0pBh4GHk;5d4l`#E9;CdIct^m3na zhfds_)O$337jdK26HLvdfFSz(Ncf1`HM*9LC zZTv zPzUI?C~@b6Uft#I=18ODYr1pK@pM2}kL&#>)P&rioo7ivJqnj6*Mmv{(FgP&Q4ULx_4M(f(!_3A{-%^*1^|>(BBVldN>nT+0yZ(yy znp+RiKZgbe1|Zl2#4kr7KY#X%=Y1goR)L=()xoj`7D0u3U%{*opkp;~KAfQjN3DTr zyBQ?jFz0&=3|FelJFCs7OYS6Y{um;4@k`mntG|(>T_$ICLrBN69D}n5F!eQ9>XMq~ z+mD9lWm>YhTM+jE#;Wq`j?im;a$L(0_;4x!ou3412MvP`oSE!#ac3Zx8$^{=@_1a` z{tD+YdiSLkHCvS(%ZwXP0lN76VmVlcprhEr>Z-uTPS7_@0e}-2;7tE^&+FhPI0?2V z<#1@3@7;6hpCJKG!#$bGKE{_+21kPfRV<8^fBhZ%CJ?|`&HwRbIZESo>VVW!rI5S{ z!tQDw+0==@=Xm*fgDL->FkMKcbF5DUF0K7Aacj{(yW(?oEzEoi@@Xe>*rtf&E=~rcDA@=;6HwIhi850)?3Uhi53X) z#8fkP;hgDq=E}^CuY&{Zq7x4|u?vAQr3tx(^CIrJH)lCDb7k%NJkKbLs=%8$<+&3^w;zgi3!Y+zOj$(g~x z==>768c0)R#;rS~7DM-xNj=ab{&b&^*T$3dRA;acO5FJ2%+2Q}p|61IKz&;|wiBjqe}~Ggyu+#!x4idTxhuH1hw;A4SF6XhO|?6vbECY9c4($1 zXqnwSvuTm%<`{?`8)KFiZuPOL0Mk-%m&2gTzs-~e$yrFj$tpD|#3OUZ`=5d==haC|1FMcnrrUrhiH25}c2&9VD{k)AQe-gpQi zuRJAU&YG|Qbs!21*nOpJ9zuK?!r(F&uD{5>0$lnP7=0ja_o0$*0OP6dOgaGIi*E-5 zJA1o<-YSmdgtGdT?-$Ehi4r{8?O;l0RfAPDtPN}Lb-Qo-=Tp1DXoe<%6(u>r|Mtq= z;3xj;#V10|oX;_pusqgj&=C-z;yWovMu^yQum-NnK&!o^FT+SX4gFwd@wq&dBjU!v zP}UM7!6m97=EnKLcD6;<7K^Y}Rbr|-(lU<(Ow}{YJmZEmX#BGmG*v3e#~_u1pr3Y437xqoO1Q%8ae%`tOS!@}Hh zXNx}`r>Vu!X}5z3BhjvDP>x#cbUz@z9A4Txu)(9%dVvL>wUt3oRml{Q6T5DWSuQUc zXQdp>&2m97FV4SS&=%W4l;|Ui*3=A`H?ciiaYXFq$15?gnNb&e(NTAM}k=pxRMpJliwX~&#LuoWsuN&1%(aO3VPPpv{VTQcO?ntu z+A*_vES-gf?Dq5jTypcL^h!_-&wc`=Vehdq72bR6wroW(;y~Rgu!2>vRnDG{TI1oD zKoU&V<<(elZp_)q7!+;Hia`OV=bx}yziog2&djS1W7N^l4HF;@t!s9h4x^aTGH`~$ z##HkI0YhiNikX-^d}0OIe~X^$uc{h7B)6aBd^c0W#W#7mfLhKmp=RZ1V7HgtMdO~a z<#-I7^9`>gQI)Tq>(9cC56DHyK&da;6O z)5HUIH`v4C8#`t{y%U3IkcLKIs73L514LI_XfdmGF_d!#IGBF_5pbqupzv1?G>I&F zB_wA+opc$aZP0qpQZ!Rjf~7hq)%YpaU?3N1)QjgsbwzR+fv#;{>q-xTHFAF-FJ}eZ zbZk>y1u+Ptug3MU!K~@6Q>iL3y}U4t;}z1(5(d~xfD?YVehiVp>kH7f`x7SDgt_+6 zaC=!8`xM>tkEk!Tr#NB0ad%EHv!UDnlY1emBAKTBt4#ZYV~2tuN`|V;6f z*w3!r&&{ub0VSJ^*Z&He8SE3yeOz(%q}+>@1eid9;(z-k72NER=F?@I=cQkO%}Pt_ z(I{X2-%q@)t;i@hZlpqbjT_?&AQNn^o-@*Z?rT!2>x>+@qe3$1adtM~$oh~}IvZxB z(q1bixQZgQrn*ml*vG>Tf}+lS7aaKT1+dY|kSTQxjE?iwdmnsmb(@(Q*B|#X<{i#~ z=4$XUwmDMsp&CFyMIzW7TY~b8VdBzn(ibsi%LEt-Kzu206G|G-HJ9@FqwSD%lLZ8@ zuuN5Z@96ezPK&Kij+kCsQU&*78ZCquI@u8Yrc5?gKoUqi00Ods*$*5^W=rw6ezMu^zCQCo4DvnE=huIJs6bk@+oX{7I6xIcu43t6wa5Oaun3fR0KR$unMmV zX2JG|w1Fo_Hm7^ongBL9raNB>q;6$(ra&q`jfi`>s^F*Hc+5Ys<>M!@xf7HIN{p*K z%rb}vNigg{9O%=>R&#Ts)U{;q&Ks~-M1xI$I6Gi4Z=f?bJG6;OFq09|Car7d9&ae_ z@{SH^YhWg5nAr}A4vRPv14D3JG5tO<^})}VmN?B~=mMS9 zOi&m>b%06nv7NS2S&y;-eDbo2w6^uuW15-{Z5~uE9+{HJgwJ27l$$vPAh;wdzeK8% z|Mh22ONHG5U|uI>1n7$(S3%6E&wtM*_7U?+MXtXQdPQi?f_PeJ4+cQW5h;!NrdZ>p zZ$_~^YK_vi0^z@?&Rn|}|82U^4PsJ8gn?=J-~p%%{wBx*n$GVUUUNc81a;@rhZ4&W z%n4S~2c=R$6B}oiBsH3e4BndJ@80Z?A800{{0s(w9$D$<`KU?+$UA` zt+Dn=5BuHbYEoAzWN2lG+_)wM_@t)sw91W~af6>)QMUu5y`TCP%iZTV?T8yc`)W90 zrEmW(XBbn7jMm8R^RErm$Pu%jr3a|#Bwv1o?o@NU@N4MZ+3P#E-l}W5`MSze{?8P4 zCPdpDLwB^R&#>;V0);UkZWheL1H)1@K-7Zlymn@0O5?-^-$oSASm z`-z9H9)eoa$L_`$0+v{tzsiS&IIbdSh_%)MDs6~w4&WI!w|Kx$U$u^z*%%~3|L;5Q z`JPm*W%?*P)FC>xv0z(Tqafxg`s9Fa28ug!z(Y^Uk)OCrq|`kukg4Xl{p_2cXp);G zcaCf@#LT5YRxPmOx5eJr6f1}9U!gVC1#+Y!8jR62*ZR>LV3pBwBlsNX>fJVQaVvbt zPWIyXEan%$?Lg|$?#Kg>bPB*a3|o-8NB?v zBZ-do;nom*IUS?MnoRMFN+xc4&u9M}B5tQ)nZeNJS%{tPu8=R0oGD%|)xpMv;rtvP zTX{vA!RHg{thMt$1i$zgnAw&H&RyxY`7|&U7p`cHuOBh!imQ{d@-xdD#g7omV6%X{ zL2eK*lmXWCCEW=y4K<8TS$M!$-w1FfQ~00meGMXU15DzJ2O$6O&HcIVU_8?ZHUPTv z_At1AM9`-A%Pn+fe=bO!N4+^{3#$>|g~cx$d-Jh%6$CK3fc=KvP>A6ss39Xe(?l1> z{k4Q>TuZL7e^ko2m zV&+Elq0mh3UXl~XWi1yJ`$LE(4>^{$1rFSJ6YRLuITL`d1{OdwWvw^g=uaBp`@A?% zEeLQ_L`WqwUCJSdke*cIr@xhB@Dc87`F~h@5AL?EGhG+}I|-5?*h!Eg!3I`=P3#ib z8`yi3z+OeMi=s%;c3cw2nK+IUJC2jsj=P;q>^N=G*0N+-vK_~kd&}J9n`APRxpUXO z_YZu}bKcEETA6j%x4w0?p117xw7uVUAP_i+^in+z112k9NdZl&324vpE3HeI>-OO! z0lFNx@i33;<8BMVX0ORK6PK@jB0Df<4{D=w=QR69JXwGFaaCg4BL!>w)?sefzSG|gZ5ag2 z9Q?A6425&aQN=0+=2(q?57h++RX?>m_OQ>T=pb7A+> zU#S$qnB}6q$;!;DNd*(MLL|nJsZtfQdnzhNG;V7TpJpLm3}!PDT%q(AeKs<6c|wx`*s{i~xc>E7a4X0I;vD+| zz<}hw#+s%`I`>RXvb9BwacZ_Q0-qMGM>m8Y>+NESkQ!J=KA_f&hAhr&l)GC%V=i7! z@bP23>=3Alz6k{7+iZE2EH9pSv3Xzn<#(tj*%DMbs{DuH@4?-o=oNueMBaeNfD_qS zZTswayio{7A?mj4tX&1Hh`~Ko0Pizb1jFN;;$Ee-FVMo~!tyO5k!jxwj7U6O6l{?` zAKnKM7nounWFB)q%D2z}-a#zdXSWU7|HM-qeCg54*>?NJXivFik^p^7)J@RTema+* zThN+S7-Pw$Pw6ipnYp$-|F=8ugshAizxvdlUU)<{%@^=qv167Ic+})d>2YICFAwR> zEd%WOEW0pxIpl~S2UyYt;eQep;+bOH7`=Bq&w}j=66a>tF7= zTNK_!m}SQYqI;{>I4|`|tQ%_cKYu3+0^pMSK>c+u{~Usg$^`*Qtm&iR@g2orE)e6* z>+{&oFs3>u=iaZqU@_m~FwBOyU6vL8N=_O_#eUQZqvvB%(CV*kp9)}lJey)uh zV;u|Nv)U&ep#U}9hh49pMa|5(`jf5_l@=HQ%*NCWWh#%wh+)&ga7L+H&*@zZ=8n<5 zji4^erRnM^DBJ1?UOj4ho@oy-h>I7%-h5X3kN&=x!Ic;2!CB5LIuz`aZ-DU?w<-f@ z+dLub8b}B}>xN)Ct$`w5eh!=kSf;(N(NR`VqHTNUB|4lFE&%~7=`#l}PNAQpI|M6} zm0c{=7EmOQ214n1hGTOGEFyj-1_D@!-WZR}i>nOOKHNXV#9_`0!XT#V60)n#fAqB_ zF)@RdLC0!*#Q^@^*9@gA+FM(n-7m%veVeWnpR_{f-3!pZg+1sE?GlJn;n_a<6_`5I z!-%EUfCYkrDP3Tpj9XScg9~seOe3m{j!HMWcUyZ?0!lp3&aet1xkAA>&!v{-Zla$& zAb$`Y$JqkB1aRdU#w#jw0{o-fGsU<%rak;}rr(xO1q;v6%0`%|JuZyl^gDDCS6;PE z#%vqN&(MyADk!WS*Y!7^ZXdtEG!s01#bTM~9_@0LO`(a)>t{mth~*>M&@Fw5jM`6*oaDl_?>YGuU;Z}qai%)Jpbd!X zH^8jvm~4>Yz(g9$nLCVBs066llx>M>9x}S}!rvhpvw<4 zFbJ5?EbQO^tPtEE#OMeX`XGau5QSMD?dJ!Q*vmHPGOP9rw@?7>v9fG^Q8lBHst{GP z@CjmE2YFbW@@y&eVf7jSD)769Oq^XvNN)>Q7av$D_8N%sAko3QE^;eyyt@Z{t;OG9 zpvA9Cd;Eik3q5&Ec^W!UX;w8aL*Ygj!vbW3j`KxU%wbPvvDGH^2hSGyc5srhAT}Am zYj{@_@H|E}DY4_mgX32F_Btb01sVr2|A#?bXQ(e25X6nk4o=&|Dc3SN`ro|&0%x)e zD&mpAsmMki2ULq-TPg<~e8ZbNhk&9~-oE@B30*X`B@C>`c)>I3%zFDN=z>AcL!kYr5bwBy7RTFnMHr&AJ4$%K37E3zhm=b4 z(mk+6dfZm#M}ID+fNd;hr9$M}c?(+%+t_7-n6^`sApq8MnD*6A84FKS4z=+#;|?)a z1VD~*%C$VB8T7knE#Tb=$@F<{8xzGzXZQ{r-2E|#3RlIv*oslMa$&t62B}4001vgo$DFGFq7JU5DVEi`2I@}Y9`@|1 zYxh6`*^v#=qJbZFJ`AcsQ4R)3pr&&;;QE!ZSFCS8^4X70(i&GoR{(pg5w`eF84GVJ zgbb?=(0+jH=H$YL6;pxPaOe@4~)tTgqWe^rk<7&ImB=e+)8KIg@!hUB+3e z%sEuq2kjgkEO0~AYoGqmO`;5rH$(aCVG}s7%LD-2E<+uAVQANynnGTeYyqDGu@A*_ zQ*a$vSil}QK-UY_)0zige|9+89`35?t}YB@tQJ9>-hy=`g#Iv>fkpXqHJqTp*rb}& zLd234riET6+NlV~6dmhlJ-AZfkoI*b?Yk`4P&C2dFi|goy0otzRWez$#}`7{R};t7 z>M+^?9ST-0^QG4Dmv7v`IC46jprc?nh>8&l4-jlJ`gFv}e3dvUD!cla(uZX$yMy-@ ziyCkuW)@mR)ikfBeMjYuFG2hGhi~1%(g9dlz{}5zJSTz^^Yiu2ZHHtTYc&z%;VT!x zB*bwx-Aa)5ET+Ohx-t(W2-mgq-J+^XwP3{ERF;Q9-2+V|GPM?Xl1ADXG9Ao^9eQN8 zGRPl-EnRTI${k zUaV4|7e0!044D7T^PDtL$Q0*U+7su+^5>sCOwYgZ=--~WgYw&TZ{HIL<@6X=1ng8# zMGV-^oQBF~u7ch|uX?@qG&{g>1-{^w)QJ_SYf{pC!?CljQjb~j3UlEsI= z(oLd-T@pFz3rVN3Fo4l&7dT^ayr4qm;{}WgL4v5-!4Y0Z$FyjXdyrghlZlCN7!nNV zwu-PCaDY9p#Xbt2$(k0dM3plPjIz&)g-!z40DPGSfHFbr+=#1asZKe;^OTvoN?8i) zy*$yB+%G*8QJ}&OtQ2=(_Z?)Uf-P?0`MqVWk z)D^Iko9cj~z1LsfvPQkA~~i{1cBN!gVyNawh^!#G0!zkbLuwj$s6glcliYdY~WNK zIB+sfq%q>65t{Z#wRk98Y5X8qQU!foV*u+63z`m3fpQb*1V&LY2Ra* ze)&61$uMMq1RV)YP`1W$BmZ!_ZiM1ajk2+!(K`ThU10y@OC7H~-4PKq^Y&e^%(B?W znyMSN+_iM?QEXtqE6s3)`PYJu{g!!CSKnkGz9{B*+}1^6M!kzxS-aEMdyFK_uJMqUM#A%kzw5L&FA@; zAKD!Wa`xcm{qJ}>oA1?oA%NP_=vdLfTNdXAM>pwEAZW0C41yKe>LaEL$D{n9UGSvM zT}n*gLV`DQI&`Xw>%4p)eW0Vk z9F?mNn9<4)V&ej{>dg}n?P?q2-@S23d$@RJLfq>QY9A8gf+orXz=4yMyPS(U)A9G7 z^cMRZMAZ_Q%~?l(x-H@EnC4YzSs(_pA$Y~H7Li;9HTd{GIFMzFDBuZlv$DmoEP`ID z%TLbAf`K2D%O4)YQFr zBAcxrsF-M)6>Yl^l9w0oiohR!scz-a;|j;Xd9qf&?z16~k@i75L>)+Q{e^`2&Rw46 z+TDGFwnU~QlPG*z(YUfhE26-|v1jtEgZdDpwxX zeFB_I6Ks#LrW($HrNn`0zilz?l#Rl*yN9g_1D;R&z^K0YU!Hz=hjU_jZKotVATldd z;zI9c@EKfyX}anbJtdX7U}UjRu;J9Q9)XN>?K;|5K$`8x66t0>(jX6`T zGS)-SnsW`Da<6QzhR6;`;ph@?se&D!iC(4$TgHkPUqwuTDwy5?E308;lf%pV3E5+!=ku)Dsjz9Al_0pz27l6#Hh^hyPfj zW?p@`f|P_XY>ol}!+9*PQqXGC@`ToR*=kvp?!Xb-TX#X(&9>&OV_ii;qpnVqQ)u*6MmYh_(oXJT@U}n%!)@U$JlxI_6_F+NjXqk$#C1Lc@ zBVaXg3-maUa(Kt+3+4S>P}*OV2>L-Wuk0D6ycK)i=r|ChUft+UGcea^#!CE zU}Jcj==xcZj`|jVCNJQe?+-fO-H}ya#B0oVfbFYY^SjvqEN?#n&g=d0-d`}9><&CL zgYN;&m@a{Lyz>JV?M)cf-pC&94`O~9x8}jwYy3eqA>-g5e(yK~aF&@}?3Xp@YP?`; zr$>1OmIABoC2K&NcQiKXO#lVKZPzc^aS-#9j_?i=amYeFR*2mTQ0Q2mLiw z)-Ex*$LgSzGu_^ParNM>F?u)P)5ndW zxKvOEjnmx)1$KRWmuxu7nWj+(zolMTsBbEqiEzmv0D{h1(YHbI0(J9PfT0U|=gAnC z$`dw{G^Rdq{2168UBU$I?FAF~1;i!jgE*(CTv4f0`?Z%vt_twA#Kq7%$qY7-6diTK zkslTaH3FpF*=0*kS4M8pJ|h6EdUz1yIyB{s(LSUj8^FT{Jz06be*jvoZi6z7IBZ_*;NAO7eU2v>fH6=d zPr&`OuW@J(hsB^`XKyCc(+}+^PGH~`!{7et7p#woObZ>S(pEP0*wi;EWeEQ9*GANI zb<-KqUU_UkxaPIz=+5TczChjp7_J4cP1zpLZ1j}of;VO}vvkC-LTz{0f|(~fHLRG# zURJyjbVX%v5On$)XmQxU1KqrY_I$Pd2JLqN8LCkx)1vD_P!=S>ZlXLMLqCOxS@^Vw z1c-NU1LMvV$zZ4GbRY)w{_XS%^WjX06`U*4aqVkR?b}geC=zk8!W739WUv&0!+VWt zuT5gt`3|($zPE4J4eUX4pk+|dtoCZcPd0`_>~^c*l`8MbCUBm(6vXBS6#wgs_llN& zVeP_Dz4kkhEHaymIb8^vX=Mvqy*SHL#)6K5^8zYV(D$Hgzfu9IN;OaR(0&#IszW(d ztZXJx4yKoYk&YZwD^NRK+E4h#LFE-x;d1raAVCU*U3*CV zd<$zwT~zx!{E{kM?GaKZc`3jkB8dL~&)e<+&tn?VJY3HX9pVLc^`Q~EK)_ko)z+*R zwLm${shTki={UeJOLy+ezz3qz45mHISNnSJhd<=0b*L!C!w^qzMeq=SiL{>*!(6t9 z|Nb9ZC!la&C#bV&_ZY-YPLvq z0TT7sMv{((Tvi58Ig0S01)ZL0<>yc=_wPI^*5Zrt<0a#~3q!nbJy^0IzeM=S0tfDD>auUcTB# zbh5M`Md_-%!O|C)^HmyQ7(>_kvPZr4C9b!ze9g213Cyvp41mtga=tSIA;l1^hkB5j z$2$)+_tJR`wT@4pg<6>Af9=OC7l2L>wE6NRFW(swE@OskP1M*ZI)M3g7F66@Ia?N) zQwVhwl<*pRYo^y^8%MREqX=}!DCBr3l{Nee?j;DqyP4YX!eFJHW&$ zjs4^wRI1Pks=T2Emo#QWeEbcjz8lmB5@gpwI?B(@bJn~o0qPb!^f|9^o4Q5uEK4(6 z#XM69C?v=C?WZBKzkJP|D9V zg2%+zjIj&~p#5aeQch)HsyDA>ptDoQci6+i9qtpSRH(K9ZU=d=0Yf%0fU^+1@AK#V(UXlye0}?Qy`ZFi_nhdBC z0X_-3sO0CC9dkabLM79wu-S=quB4cg5d{C|eGd(F*fH2o2D@>0^WFkvq#-HEU^JKz zD_2aUFFh+*@%J)KFrxH0lfi8pqQjR!)gaDRM}MffUHct?n4yBEai$Gj`u8Yg%G4RX zOtPt^&Z>QftK8yc&$BXISq>-owrmF19xggH7837kG8_E4%>t@1T7A4`e3^@a@k8xT zkKQSRP^L5BI~rA`Z%&8C24pCjDSQn4gtvKsE(IK}Pjp0_%%Rd%z*+B4`7n$s9@#^_ImOyu4LeHB~ml-iGnob0!mLfm6k5gp+025<5ue~Iy@Xuwz(G8+ULGV&+x95+Gtqh_^ z%^YegFBu-CidOqE;XT>$@44D(>k>BcwA#lGA=`VwwuZL)crIX7gz(Njk!cr1wj34+ z41;wM;M(76%Nw-EQ>S@1_`&qw9(`W+X9DHBw%tbKA8+|F^azu?BGMe;&wAf7szpIR z(F(=|GbaG;`>!s;m3!ZMFl7eg5it+3MW`EvSlB--qN+NIVr$l6^h@A916Z1}yz(^U zg(TL#i&>d655^Mm0#T1#1Um}$unSdSyCBBZ*;QM8!Wyu6HjPu#e)wt%3g8dA{slEr zF%?1Bj>X6z?{|-QvPA`Ne&Ydf`v*VLEl^ZfQTg)vZ6jPtu)c@I!)v5eFxT4Rm}%_w zzUQXFf!qnj9z~+8)5A6CTMM8Sf)>N+V1s#C zu5K()srls{j=hZmjMGiX8g;UX04FPrXFk1)(b;Fxwl{-u#s@!M;($(`;2AC;=imco(FqvUfsV0am@1q`3A-_`#u;*cYpQX@b5%Qx3qUuetEEBZ zjB6bicn+Y)T*2U|m4=A1*?dYXyJqbNLgFR|*<%AQzfk-kJ0RevmMtUU^jY*i7;h8; z`lR0K71ne~H@$JMr~|qM%1G**Q~SJhyKa5$p(5y2Ijx%;7Z3fJ1e^A(?buEx^c>xL z6k!;sRYN<~2F7FocIX9$4_M1(cYO29G7>({-bWYmVk@?2vC=imZ+<-=!ne%HVp^I5 z`4JICJHK37b3(?B&|>o`=^Slo;9+hM z*XQBg*bD+#6EVr!6UCsN5TgO2v2uiy1p+|_52jq*=*P&df>W2}-Kw%~A<)cN=;&Q( z*;HrSsT3<+x5M;VXaI`@&Cp$c`Q^jlH-TxwWE6b#Xd0A3o^ND$gdO+bJIqngt-Nq? zLc_!-FU|#Q*7m5t4~Dl*@D@&YZ-j9U%^y7v&ggA{fbt2EV?l};=-|11qOvXX3h(`_TMVo(0W-Cbsmk^!C^}hb)dx^2Bj|x^|0K44eN!qly1-mJ z>erQ81&t11-@1_JYaP`-pv<+!rk66}0U%(c;Eyld7x%d^oM!VA@O)FCX7;PKh;?3> z)xg4Bw}Aom-I2V=W@hm4$Y_MvRKa&8$k3Gk#7dZ_6F}8kxm^Na<4FfYQI_E|2wT~WJ^bL&Aer9h)js%~r9AP9l zpJOhrW7p5u0%4`jq-&T6orMrIX`cm{ltDFf5g6u5c>?or86?IzD+x zlry>s3Tr_SmkAkvxRDNA3` z$ci;W8i$uo^U!6}T)`r<|BTCGm<;2V#lQXfOOPos-ir`^r?gK%Kua111L&ST74ahI z><9LD?*kY7?m5@TKjlStOx5N~tRNrI);OIfV9ieOR+c|;Y<05o&AY_h7X{g;()itH z#mFM#h3nhSnIT3q(&_7ERt<3Fv4g*4wkBY>KL%DRn-(Ch-{Hk-1$dBPk&A5Lv<@Er zBX-8syG3;H!+YZzMopDBzAu}`cpYPdQ+v+Pv~vd|o-k511KCOc!j%mF|8X-DRr#68 zcHz^10Jn#ffV)5pH(!EzK-DaQmmdQIxDuc|*~eRD-3MRwI&=VIrsG7AYE``vsy?uZ z9nSzVGgAQGJODZZh+o_)fZ!C$uHORA>#c%RqgSDM|DiP4fX=|7K8O$Q2h0A5b7Wot zjORon+f}kHNVQ`OD%F~y0{`;!J9ypfe(jH=?7uor9apbFBd^@|);%R9nOyA(Xjf$_ zRNfShB0ajrHGVNLqn69&gmXXtu%jyaX@e&U1_5z9tJyh_Yz#os2R{hu3Kbo^4K&L- zEm4ab-#+Q* zrDD6`Ek_7vs`UDuqW3MOA%QhK4ZwYSO&LB6g!VSFnAsu&3YFgr%X?pY%;OygTLx$l z#5)?0QtnC0O@LzEqIa|pwk0P+o3k+lZ5y`LBqni4p!U>tyR{Spf%g4PyXYY{UWvZs zlvM{Sjb}HRVTZ1EAJ&=nq}1e(ehKq&(97Ss`Xh+cLX|#U|NKB>77qad?Yw$oGFK-^ z4T3zTt~UF;d3b4zYg0ouSpwytMpgj8{Z?5C*=o=WIb<8B zzkm*Q7p|{y=Z$Y{@IXP+Uw{1%n_JM6Kui#Wu`3U1-547syFk!b4>&LZ%C{OE5C&&w zbiQq=4C<=0E;ZH*3MZuQY0!X0<{UteMn-ZMpnHdB4>iVY%NRVPBH}c}I15|5<1=(X zm z29d(o&sA`(wP$6RJ3KYOn;~G z8@M)uIW>8synlN>sVu_%8dYI5VCr&ogOXoeOAqH}@mrq}L?)_%6_?PutlXy-T=AI;_RXnV4Y0^mvj2Tu-+ zf`T&66^C(xK6HYLO@I^n%FB;~JAC?_?dv{9cTs3v{U&28;C})cxTDa10kgSc3bts_ zE{F$&nf=1q9E?ofndn)SwsjZ*+JEuuR!!+LJi$3Kwfg8W`X5*l;h8wYOEN7w#*_(S z#>S$ym1+MwX%c(LE8jU!?*a+*2}5$&a3?FgWP&%^!q~q%CQ0=^32=a9eN}Kka5Cb$u)xo_MLE8ynE_Isvfc+Hq-)OIf zGya!&u~R1|x*@7SKnc@r!~|CK#;@PI4U!ufπ=#^wT{qa=ips10^HD|tW491k&t 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 Q_Kv#M-yNd)|9}Vn2bOuuKmY&$ literal 121671 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC|_BmuHU4NqQX7 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π=#^wT{qa=ips10^HD|tW491k&t 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 Q_Kv#M-yNd)|9}Vn2bOuuKmY&$ literal 121671 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC|_BmuHU4NqQX7 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π=#^wT{qa=ips10^HD|tW491k&t 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 Q_Kv#M-yNd)|9}Vn2bOuuKmY&$ literal 121671 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC|_BmuHU4NqQX7 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π=#^wT{qa=ips10^HD|tW491k&t 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 Q_Kv#M-yNd)|9}Vn2bOuuKmY&$ literal 121671 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC|_BmuHU4NqQX7 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π=#^wT{qa=ips10^HD|tW491k&t zYcKpc3Bg*@){tsc+KULTO}Sx;`E!be1<=2Y@K#B4Fa)n^%w&oP8eX|i`?=l^zawMq zVZS`r258?ZMzu-A8;{VH?>x&;GQ)Cs+NF(2a2A2!`U8+xzSVaEf)kllIa39F#CmpB z`^*3%cjJq#DQ`XX`}<$JAA|EM|Hh#U4nFmQk;(xk2dA&Se(a9U&KSyxPN_SV{MMId zm??JN=g!A7%YkzGYdkOdPxn24EZr2*(bC(zw%9M*gmW!G_`*yvyQpO3(98cje-7p|BE|R%Lc)F8W~8zynE`SFRNxz zZ%A!Wod_ElKvj5cd5v_exzk~=$YJ2#p>3+yN9CFaxTh(g&d^JrxR|5Kpr&0_8eF*7>;DH>;DHijZh*pRqPy&bv0@QS` zF~xa4K?MY-J5{i^4RJDor|<#+X|>~QV#Qta!EW}Pqv)e2_J+8M!g+lI>t4sZ-xc+L zfAQDfD;WOlyYuT9_i;hID9~PFdiPtRGW_gG0F(860T^#UKu=NNTem`*LAAaOEvyP3 zRxZH9beQOFVAQ1&tf9B5j0u!RM>GfbfcFf3d^=z4XwSz|L1ZQXfuK}T&qH`Kd4Z(; z3|2Id09yIbqI%Zj6GjuYbJ#-tAlT_ibY(kGc@6_Jc>F`euJ$PgZ%s1gw z>(wucDM5txq*=B{pd7?g31UU4Wy_#phReD+3t$=rF&A<@17%aCP!9gzt1=sw$*7?& z?F|M82D6};BrrjIlCjQ}+`Gs%16;OG6g`y<@+29S5@&s(0at&*01CXg`@x@7R(x1u z1t!@P5?R%zw3@D>?x7_NazRrgQ(=W$P0&~>f?bG45U=&o&$tr6$@bg=;!){S@m8M} zCdz+2@Pp~BAt<~h6`WrfgYW|ZAKpL2b8>pj%h=?;2?&-n(3u(D3NfLsni1;v&O@?= z*8!OCs%{2yS1?%G-2!LU@ZL~32X+(UWc>2;UGM%}Ew&@CyImDfqHL|#4|2?%QP(OO z?`v($3evaSq%=oF%|*b*DRtUq;xIHeRXZp zMqmEa-MA)aW)*ip(r?U|qzdh$TBabY5GY8=`mO0^MG&J%1~) z+Wfh5Yy_!DP4r=(NKlvQ;L{-Hcb;QnCnb2P{KnwVcYGh5vw8c0=))et3#`$~^wY5j zZ348dTbPcG%s|07M1T9BI;aw(v9n+*OVkS#ySl3|%7q}_D(mV}Stqq1d-0JM2PMiK zumdx*V5dYEUcVc~3kY%shh3Xx`mo&^`MIM@=se*4FM_qlf-xw~X`|X#2%rLIYUYC> zQe~w2lOr_3%bXc5Hg~Z0IY11&jn!P}b{A*8ammp+SOBF21gI#aP0DbH^|hSBm9w$| zwjDvN52V=?C8G+1NSilg=S+gCoNCsjs)dVC3utH20I^rTOAp7k54u@OKz3?KY!&>Rr(nf z+J6t2G+7tc2bmP(ScYpoA?|Jb#=qk$406J+*RQkN)?1FwIR7rFofazS(gpi-ocwIERW z=HkY*kV!-xlK zzwuHedu%|Yf>^Mvpkh!3XoL!9a60<@g$vvxEq1J1WnJ48#+;XaPm(9(scOdt9omEc zYJ4zG@|~D&ICw-ulW~SS2YTG5G%mlOIyq&c21hr#@Lz1R~aB30}Z+g zMf=6_d76R}=nMB`mcF?oJ6~nEDz9;DO3wph{S?vPKn2SeP+~!Q%9)tJdFfSm(7!+P zBwa@T>u~X&yunBS2KvVfq|T~+>DGO3j8GK6XN#9fRPw$&>)1rvpUk zgn0SUR2eWx0;U~(ZKzi1$f2lmFm z5qbP=1KpcjHA4lrepLY?XL+m0IhM-Tod#8d+O zKUaPq|GJ?iB&v)vX7bj8l7`;<3IyO(J!4C~x>8e@jTh1(-+B&=8PVSe=2Hnq$LOfh zKFTRWhltcs$ih57<`aFpbMEq2Wed0)r1l%1PE`vW?$TZ>U{kUE)dwJ0LF$gN9?CHB z_89IBmYN&I)S@Q=dJZsfb)L{VPqI@5(;tT7s8G**<>jZLT0o`jaXbY})UX1!GzF%8 z${n(+FJjvTIpKQw%Piy~?FXcxT)Txw3s`Buzu$T%xSP)4Azag;u*s-4F}8ZvU~I4@ z@hVpz1Y@h8;(aNKO9HAuNp)aD>J;>Ntm@BDef^K~{3>=Vpu&5$qrQq{i3-S^-TsmZxLw+}qUR z9m=Hwwrv|@o?>BC7KX#bItOt|RB(D^lfJA1od5|=Gmj1@T+qOqLG#Mk7JbW!C{NZ_ zLkCtmOM7|#%4v(iH?td>lhJ3EnYc@=KU)~rZ8*H~6x3o2Xuk&;z@-e9()HXmbsH>% zPHFQG59x#C*kScHR=P&tx+5^63FCtH`23V6UW6krdegn8J$EX?Z+z3YA-4#YQcwWr zpw>?Z>tJ<9^(udD#YC%R4LOh1B*oTdv9ZmAcxIr?1vVpkGy7mwM1(tn;nOjfrhOo) zmO*LKK21Fw+_u%wg<-1fl&d<*TMqv!xiXQ z)-|;iV_p-e;*^1*(NiCPGs~s@yak47c6A|xOZ$^gIHO8OJJ|~j42Xg5%^5B{&2t*H zPwH7?o!;S$dUU@(SAG;Ve$1%! zOj-c<0C5@KAYPp(DPeFuV_-L7ZLl(A>8MRDa@Y-HQd|UhN|M>`#k>nnYUOEcO`}&{ zV8RKs&)F4oDF)@J#F;nmGjVb*8ji<|d-se&;eCTk-Kqg&<@bW-dBd6lz4K@|bB7^s zVM}tH&Hz{STMtzbGzV!(0pqd&mNajKUMnoJ-s51LORQHBugCQ(Q3A=(0GB}AThJbG z;~CLB5I)IZ#UN%cBYSB_doO=(A-qw0s$;(E(+9R-XN?04hhUoP0<{0i28+%)2%HzW zTpgc_Iek4jvfQ9=Rb?n+E5uwEUCH~!$Veaf)*@RNOG(Qi22J}OmP$nofy@BwG;25=jrYOLf2JIApyPCxk3&G>7Ww`5k`ybLL zJDJUlFSA)kj%ZOu8Af_zEoHRm)yLT%cs{ntuoT{p$3TL9o}y0@gXN zJ;W<=Ky2Wvy2f;7D)PJ~xfSX44k)}4>0oe*K#Wy{BTKE9|3Mf~;e!e=fOh7*jwWaU z!(f>;-DSC>yab@q5n56Nn5UKork#_a3VWNG!XUbe+rTGj9LgO8k4a^2u~>#coE9th zD7rB?bXREw3t#)lbUphYz|~$l_<2?6EEAr(YI2UVYXPN#48iKI>=n%E1A%dY(+t0H zN5xQ z4TZAt%$~p0$NC1^tRlhlL}QLEbA>>|awm8`{ldUA5f_zn>X`u%EeuSb_PJCjKpE&T z5*Rc#f^iB*k;yZ$4>lQ_BjOkjz<|eQFm<_J9fiV!a}LVC-F`1!83@W0dqzx= zQK_LZEYz3pmJJr|{W<7)i=7+vbsobx{^1V?-+Z8TPQ?M1zQBC&LFM02TbHByECbgJ z3f6wMB-yvgmd~M%$TiL_jfLgNz5G*%!}DQqzUuOCnvAEnjXbEJAQGIR0oa~_=ySdQ zcCqS2oDiL8tffi`4+Sr)EI5B~1Ux2ci!c4vi?45vWly$G%E8`?CjNS$8 z(>~yDeo;ok{k0#-4L8K4M(kd>mCct<1;RkQJKy+{l_h)iF0cl3YR(k9)wGd~tOH)11i1tK+Z>Bx0ZWfyR{fY_7~1-1_aPMI-;P_ zZNQc1J-ya3wMN71FU7;w%yMIqHB?$Qe)m<*yZY6y7;CjJ8)E>N*hP6)DCNGvOr~%U z>-frxwsHtS`{nCT7y~X%VDt?yA@gNDaH;n=i+Lw1 zhbsXr`(SS}%jhnq-g{r631BfSS6RW=vhyqKV*KDKk=+a$uw$MdU=BqxbRT}1_b@h` zo%~jHr=Q2jpC-Bw;2wag7#Y;kS=vXoA)Rvpr9;bwy-Cgu3v156VDxUE`OjZI1I1V6 zA5_6HhL0CF2c4hu@IpYMN^2ElSb}O<1Jj_mdR2JJ_b?5#G5NMZ0U|*33P$`sN#VZuC4D{^ zDy@F_JWS_GFTVgG=!Rev4^OUdg5s^x<){t1a;j%B2!lZH&D{9OGv#rs{+0!1&6_`0 z6(~m~aPP68xwgOFdIz(ATKjrdu52vqcNw8wdqRd5-X(IqdIQGkUQ?Kp(*rWBQXx3lQ}n_taDreU)66ql&51YHr-3IIn*1QB z9cxgDkHND2`tuMr*`#yMX{nFLwdl5Ye>DxA?Gxzx-?u+>pQtl)>MnxeBs=UGv9G=R ztfNnPr-2zhaxvz3Uj6D=miH7!zTH)u5Nrj_>0kgo4s^&Bir5YMO8ZPZWU0%!L9vt+rMfpKCWxaSn^Y>M z1-0rMpqLAGO}#_eszGoOz$FtiT+8NtmCNjeld@Gf^K80;)7HKM%iUN!0$1Yzl=)p5 z(JRbzL0&ebor^w-F%0OHk7-S7WrYLH+7l5vq2-)m#F+4^xS1b<<5QnLzy!~d;aTk) zH}x3gtOi8cYB?@@_ zag|(~bf)(GimJ0!`erEgbs-CRkf)Ctp|fb3>4`$wkOM)t`N&ZCKo=_z=>7deqAc!Q zc}g_lJOiCN?Ok`_5|1}(?+DGip$=;wq=+z>eGN=bAiy1={ZVj~S97t;3t~Jru9x|v z@(EfDU7E+8SSng*Sar$^(56pukF>JA-3my6y|c5>O9ln+-OBj@JO%sE+8@7g3&b#8 zIt$ui*(Ozk@w}X3uHDxcf;l<-@z214A<2tcf()S2?6I^pAIE@>UHtts z0cZEkErW-d?9sX4Q?R;jDZ4D_78F!=JGXyTT&teA>76;a3H+AcJAFDjwM261X=FD@p)Ap%JX!^94I^njKoA5DIjMG z6mPjh**{PH?SbcdA-hYPz&Ue3or&gy-vFjA8++K8fz#;+KVCrRC-BhS#GJ~y)BqI> z7%D<%8IH;-H+WS}V(_7#U;vgvcrBHagIs%~A6RWzH61rmp2iqvrNoXwu;nK6M8Nv% z-xP)2?9fpW4 zB)_7VantesFIZn|GWPF$^FAjhzA+J7!|Bbo)W{a$wz(oGm4EmexK+(fH5}Q2ae4n9 zFh8DkWnw>Uof*ws*tq~!@zHm^(#Lob;B#SPW8t+_K0v!LTw$)@I%*p#JD5j6a4A@e z)=-# z&(bZGZr0Ke19dnzJ4U8Xu$wTa{pk`$9%%suvCD-NoJ`G4Y2ta(RADXt`Fr=XO&M*C z2{tQ~i3CO;;9!aQE67r}2{s2ndsj@~2&E-LtxEgTynE0L+wuySDNc49U@KcG=47;N z5Gy#>z$MI2Pd3}*=?(Kajyu>F1gktMggXLpeVmFrGnq>|FE*wlz|OiVYCnXkJZSUR zUeFSNuT%))&+r!&1@FQbeD6 zW_T~+%sA&x?aSh|p-_Q09%aLH)NJo1Xuo+8gi#`hodxh;D6ef3b?NLJqy6S{U|C_W zy~uhFm}j9l8vn;XK0t3>{YS8&u1xSG5Iw1b{YAiu#Pu-ZbShV*Iwjr8@U4M>>jzIK zhJNF2mQQD^3R3fN&XW_%c>Q@R#AI|`;sj*PXx36KBrttWdw)U(%;nbEpOs4J1Qd&)AQF%MJPaI63iAf#bF$>wc6dY(h>>9$}|L20z>CDY)%L!M4|g99mft_U+Ey$`GgG2%Iu5rd33z?@=g1cR6ef<=h!XjYft z_1ht<&&i;lEzw8&{{gSevkTTB27_jnT4>sIUw-1^vZ`n!Bfui?@dM+2I`Fj}=yXwj z=a_C4rH7dj7q`Kz5oo{gsQ$0u(5?8ny!6uKiBgQei!3u?pG&6*Kv%44pLv zSgnVr&eDEi1shsZRBE0sqC3?d?uJ3mrqk>JXVC#yzX=wX3^v)bw&pOc$6vd%(%*j$ zhH4P7Ob?A~^~cQCzMrDKKE@yh#FS)487YfBZ))!!x-no1vJZsNmy>O=mv4n^1_4?7 zF}$XSdBM%|BiXZSY?8nlg9-S6(&MyC1>{A=j9wzwK7Dw&|=fQlmL;@#ca z?}MnbSiDP)Z6;w87s@gK7`YY3u*dhxJ@Tv=46;wNIzmB!pVl>**-ZA>4OC*ydadbC!neX(>FJ*>*`+~{1tO#QVdpz;F)eF;xfo7R`9Hd2GOG-sQ&Bs zSzOw)wj$|hE&wjZx@FD%JcK-Ahu^rwHWvr6BC9r*!z5-%> z!FEA|Cx=}Q#s=ug2fKc&`C$H&sTjAgMF5OpT|f5#oVK@aH$n!{pDRnnELyIu$jhmw zl98PB2_reQ-~ zEGvLlivYDyxpK?yYG-A@Wb->uYHv2fv=90(!I^K}v_*T0fc9?eP+Ny=<3a#tU~anV z3Yi#erZVq*fSArPk zi<5yovkHHqrMNMX2^$l?QKRTux zMA>`qw`sLE*)Yrv?9q*@<0AviF}i1fDdtO87lv~Nys;O70Pom&qah`>;*AGWqSVAX zV|d>&Fbg+jr-+&P?p3HR)||gdyOpG=hG+3*K{!G5R~$$X=!oaui*LWk`~WULzTN^s zM>F7p#1t)K*vx@feta0_+R+mQWli?OG=24f^s+$j8isRFb{B53#TuavGn|0-Hg}Lp z5(}@*H0uXhnD#)%_`3GM^qA=o_OPS4@r&hMeH?S~81zjx>-bAk#R>WbC|qwmNF^7S zO$Px(oZP5g2Ex0tA+>i+hE`Y+_1+uT@6T8)*Ro38C}GY^m)*NXfEQHjYRY(SrVOrq z)jxIo)2HjTcRXRTDm#Og)gb%0MJ$MD{GX3}<6fxKfpk1CsOmDz#Ma`S&MxLWP4^5$ zfT@*0(@~dltie3$-wFfW$vfVJF`XWWngy%1W-@Z)piW8-n%RBmVEQV(rO9GB&21{e zS07(tf*t(n!#4*5-lXj=M%>D(VXMmrF@|qF7Q?_eResko;)YgGMs1fzpa7yK9H zhz*NX`VLUeo&cl2fQ~-Tr5(Bmm=__O=LNP+U^b8{R3^(NhMZ3FSX?YbFG$C04=ykZ z&(t1HX$xaj6{)gcUY!>W_+z6nNGPun&_*==WL0jEITooOlqW5%5rFO-5YtTnt2z_SK` z7G%i223-3BSWBw8QHF+Wb-@{o<5R|YfymMiZf(q3Pvm)$&Gh64kAeYBTupbs3<^T{ zx<-c|bHoh_n(_w^j;Q1G&VhhM5YvSd1*%tU-abs&bDS`+%vS}KT{4)A6v+zL9{QtR znADwVgM}v-@CMa?7Hpam$(S~eK(HjAtTvw;A zA61z6IUtoP^d2jar(ytrbnRzLre*N2zj;WM76|Sr$fj?3%v@F{XI!rTk+3H7wMV+T z*&^~h^wv74#F<}fHWrqtI$(8bp9h5$)If~$Jj%bOWPMYWcm3%P9*SiuZ!yNjM#h38 z&d4*e+Rwz`D+x7Y?i58&GVpBe8*18p{R~JcXa31uU_fk~Na3mUjgGN~BDSRom0zdo z~u$UtQqnKSlfCFssR7KtJ#f~7TvmZVT z-u>Bw;Mcwj7QrN<`% z#^?#!_H#v9geV*2PW1G_ue{m2+9p)8w*L87Pspymm(u8C9lT1AK7vvn4i@EHF);X1 zoCvQ9a8Hk|@-Sqa@f@9Q;R!}T0{`mGy8oB7_kN4>Jky3}hBm+eL)B034x$T?kYcAePHe|^VrT8dNo*%xJBbsQIB}eO@p0I=%T<?yke}!lGTu=6a zp%xU>#f7vo!CFCeAU7yk{h3ESA2Hm2k`^F3O#Sog-xIbeQl3+ky8Oc%P-e;&-tK?v9hXOYkD&)CcCB(}Far=7*fbpPZ9As&+Zh?_N zJ6#%1M>8c_3rc2u=BqQ#2KmL$Z@u;$Oyv%++ITh(V4}-*(%)1DZ9laz;LVjC0${EH zUJ>g3mSduW|MkJInIOu;8QmaO2>&xVo8IWMz3?Sy%b;x#5GR6B5G+q=PoJ0Zi(iHO zm;0VOlS&`@i4i<<;;?#+6%IZ0gYSaxr*|KFW@Zu?uzOdPDC$2%41Pe-0n1s)B)t~d zd|E{Ap}z5k1<_yoiAZo>9LNrAc;lOpd3B9B%&O?~X`PHSlS|-Q>qu08By480$O7pg z7<(9s_H9>-SS}hH&Q5k2`d~p7I~Ooh(_?k}Kw*~_5hko6?**|A0%Nuu`D~!kn112)n+qyCUFAQQGZK%J#Rc?B+>zT2@ENF&a zwSgKz#}bZoH~;yo3~4-9D^TA_HgiG%D=T8HE(qeCN5JgE&aMk(Ma7-b4eiVknefF0kI$2OCgz|!LalNu@+N7 zfL@Udn8Yz#JRNhOm8 zZ{vJ+g8G;Zdjh~35b&r`ziRM0TREM~*d>4fH{B1!iU>G;+9KMP6LN&%6U?^^89Bh6syJ!@lwD64%eN%kSYL=ONhaTOU5dXifod{xYPYiCvd!Uw+=({L20 zk`p;~UVa+>NHuc-2xlP2I>2f`f$!fnHvpNqpE~Ln4<}&*X4xQE1ptfqK(^lsL{M}b zr@(d~SY%SuG`2jzWCVIReL62HOANbzsML#RsnNlt=2_Vq2*K;$Xyc0q)^%=`7>t*uG8C>pHy+AWaI%1om7gE<_KRb!mNE6K zq#?As{j>+5yFeMHQMWD8-52Jzo4Kei5OCPG-?uT`C~Q{0+mhr&ja}tyC&$4 zXb|8$0u~CQ;nk6PU^k*17Le^b1Q?ifsVdy3xaIHcgBh#sDg8OqE2 z{&tcn3V+#Tl^FC%^C7L3|KIyJN}=GBh~=bA&N z@`|w0Uk(w@3mZtOcA7A-mLCt9d5Hz|_fStqf!S7PY-2hYP#^7KoqE(`t|QZ-*1h`O z28cuX@gv55i-yJH&?x782 zfbq0)I%yz>ue;HzuU{CIo8$+Z`aW|cW85AImTK;2AFN&)yjYk~7ZDm@No7U>1@&Ob zxre+5Sb4zv&-RH@9Ba?qgvvRU&gy0Bq~5*V9RssDn&Ux`qX5jm+s?3X)=qp6mQH4R zBJI^dnz|X(fw`1__$C+ZgcY~RN zSR84g>dDz`WEGcE)wioT2f&kFwm}!|J}Kja%sm0!vMOph8zk2QoE0IwhquJ3?sso1 z&xS&009S8GiLHXP>AHB~+hPaz37B7!fqRQ?`{)^C6O;~6%s4&r$!+P&R@tP(kHKgE zI2u;bvSvcVrq_~&^=d6aY^Ux``dQ#`zW9?aW0c~a3gI0I2;*ADEG8D>;LM!W zpLMnN*6%r~Nsx}o8dR=J(B9*r%Mv>+=1F&^*qT`QwVpokLpmR112d;rRNl;V=J32+ ze+9^4DqBz=sQ1NSnfn&cfB{p!?43tIrs3V2SddI<^$0Ua^{fhB_F@%R`pS>!7#*8K z>RW;OrO#p5gBe5SP7T*`n64z5r((7LG3Y9O`6dX~2G>!urjLgnkXL*xpy0i)LA?>3 z<1y;TwP5qrY1$jgt7I_(tcJIk^0CVy-~zVfG8Q&dB+1q-)^LbmE_B~_!E_au*PNdU z4ph>Yz?80Nzn(%d2EJPCAc9ITT$xt`(l_!jjfCrK(V$)&V) zOA$mns3V8VV^Ic&)kaS?L#fYL?o3&L0x;K^p0xAa7glr%Ll4(4g?KPqj2ARF0d@xT z-$AE+ZEUiRo$OfU8w!PaA7LEHAa{c1`}aP>fx%)X7_$b*0%ade8~Eg2CU!t~Q}{x5 zRM!5zre%yXeCf$*aC-n)kZB9t!QiPMlY^{%?H^Ws8AA0Z&=P-Wz+6_GUS~#xjk9VL zdxFiQzN%{S4SxTAm{@2)oh>vkd3eKz9$+S|F_YMSf%dEvR~%#)Gb*ILZgal^Hq0%u z4>;!t)G@~KSuD*U5KA&|z@lB%{O)b`5?J1Q3M@NBJ%EreKLLh6O1;e_V{jkQ`o~sk ziTi}f%hcG=?k31DfDsO@ zvxxQ6UqOz5*vf&`*1UN7t1~k=j{y|WYk^MD)w3TD{_VE!7+ZZ)p;mx88apokju~*g z+}N0YJb9t8qfMnMj5)>zCNQuQ;af5jZC&znuq*`aRtHOfYlsD@Km5`S0rW7f0I!)0 zYPZXHvzrCWJ_bxPx0l%sQ!S=pmi<(nh2gEMjE}ygYriDIQR>oJkYneOoTMMabZHoD zz|=D4%VYhLnXYRta=kyacfU!8s6SnW@Y2Van(p?lvW&Q`Bcrc>2_xqenCtZ)g99TX zwuT^irJ_7AhAgE%^8!TsS_FOf-q)_*&g>at!vGisj)CDFt{P|t4SaaJx1c2gTI_qz zEc={-glcmc^0O%c+Tq6yJah{be;*xD+qLfVlbh; zm{K@c2%UjBz*6ImtXet)IL4%*`wqSNO>ib`6iA?c>pAtxk1(Pa4wr&mXrjBQfM@{D z*Ms$d%xS^k=^%mnPlqis?u939ES}(Mn47 zn~g4=Z1i2PALFYU&f7nO1~4b-b)8me6Gipzrj$fj=oTP3gk5bIq;o(!28JAvz(mKn z%Pbai0WZubmyLq)6%|0QZ16OcdTdkGkW4@Ee~mzj&)*(+fXNSVO$Hh(W0p95F85M4 z>ztc;%PDFF%2;qIgC6+1()~8@_fPuThSE*{kUq9iM>`m^-+BtHtk|A3#gou-w$Q$s zf6*Tr5GTUmuYCimUQy(-VdfPg{HmKHA-iiL^+ePkz5E$oZXac!)LQ|N0Q09cHqy5* zaSd8apf7Vfo;#H?y?`?61z=o7n+dF?)Kj+w2{7;df)3M4$8q-NW%?Uo{K>6Frn7}RbA>Rm9es3@Y-^+c zfF%*U?z%1#u2$VZZBRH9;O(bHrhV?ed17PZ2F~yX)zn(RW&uzz?!eLQq9*o6px(v& z0Y3e1%OQwE8EKb#leqxFU!S_K*4wyTg%JbdUSbgPhQVe)0*}8b2HGnRud3fh2vE;5 zf}t)mgZ0F1Q|8)+Kr58<r2`rpP*(DO zlJ5Rc{n46%u3WY;O=dw1ct`9!IPk(Fz4h_D&)kTZI%C8@_JT6U>CRSOxThy|`e5QH z^OL-BQ`Z~a8KZhpR`v?d|oKu>yf#;%s+CdTH^jrv?8Fn13 zALQFT3Z6M(vt=@xzWsl>>k(faFpS6k^xK;ufa|xve48o6Coo2a;GW^mri_H%?ho!M zsS;zLhzXsV#-7YTSJNe~p~l=X#?1I!%(esD5A=p!zy5)%y80ZKA?{pmL zs~Gl+RmBk(*biALQR^*Pp%y5a^lx=p&CzB^hT$wde4eePDX-~`pXY54tw9IaLmcTI z@a93Vpr+%z3RQu6ARp9=sfNi=xTHm61SP*rMvUpX^>}c48lX>xn3Iz)-g*h*0tjH* zjGu^~gjk+_`>7L*P@2Bb;qqmSfb$NwMg2|g`VTSMdyW*{XnOZn*#%tPe1>H>Y%;0u zKry(JcJ4W28jN-is;?KNh59i`{_^E-$ zhBKiuo4^`Cz?k~t>RC3+G0=Jd7+1cKO5Ucv`jpFD=lT+BS=*dSq0TH%0bT4-zdH^k zn5#Yp^2wN6xCqG~LsWwj(`H>_d3qG|49;~`j0Zn`1d6*R zer84tCl^>qz_rK0N=5hS8BT=8buD?kV;3y+OWhd9p%Gq}ueX}n4HSW>n1Jv$^04^T=XWz+^?&3E7J-w-%K$je+wZI>71h_(EiiXE3tP;mfzzc%4qD>c6{I zCj-mVyZRCtk;q9VdN`U;~Vk3v@1p1)8%!BX_p44GQShf4<|9BM_6ICFdaBVA^lOr|R2%;?~uZ z=>57Y90i+83uy%z=`*k19*G?*f+i}}&y6-E4-a|i=4c=KzTE>RV3Mkjqh}-(9oXzh zY&EtVE?wnyO|L&7CKp%Qvar8H>I%cKw&}z0WXVng*)fUG)N>7IH^esCr6ZNOt+Q|* z8=|O}Zp>z;Tz+Usb`&1Lm;)C?G>ZV=kEWQo62b0MoGFV=K(_&5pt$K~FNB@}Gu%L! zV=%m}U^b852NFTehnc@UU0}T+;QCj=xaPX$z0XJvplq;ocu9RlrEalj?^PDJmCAPT+}i24pJVPaJcSYS`LFPbQ*JO|-8tUMS0|lJ zo9fWw6<*uGVsj<*%eOXwXEQ<1Ga?nBM3CUf=^OL{*t!yqgMak+OpBfCYzYJlVXg1@ zfz7%Pltx)PbvPG8t-QBPGYIEFg*mK#K=&kQC#sg!9~+Wo!!qkjpcB5GOVP_I%1-ty z9bn*&efS*sS`^!Lxvc{{eId*8;ZH*Pp#t>js}CLmw=fYHfmJ#JP?cnf`Q%CFo$hkw z>d(P7t^4zmeVY>e)omq7hU0C;*`j4>N5<vzDZwQ!8TrP0^mPGIqmtti|PtS_l z=}(W}h-_}5b9Mf4(UC=9mGNUUQMxrboLQ$~8ZTr-fjTZY4iuZny1(d%3W7MOYv+Ic z=C>FzJ%IF+^xOhy;}jVP=;PfEm;lA-)irV^4$vtk2*AW=UaYd63661}ytt9G`WUgs z_v+KW@Kd_>Qj=vQITMObXlk5Id=uA5j}7%iA8Ba(;901;aJdY|i~WLGkr$Z!#_!vq z2;O}Rat*X{dTdTi8KoIILAqH{>`rEVz*3F&6KoZMq0`lJM9>nXZ&KDYgbBp8j)1-Z z_dE@r~ln1EAdW z29Mjo3U@_k1PzVFT!;YZ^8-__V+s9>tt$h><_Xqk!;Qw=$0pBt%^rf5CF)IN!JfHdo%aG5xoUN zJqXAFC4xSA5R6?^XC^eZyfl!3-RCNyGmakhbDVphB7IVcH>3Vd^`{c<%E$ul(LhmJnJ_@Ch|AB@-Yo<0mv0tz z_nVM9L_x;ZT4?7E72fcK1GbN5Iu}^^{{UA(#v*n5~}`-Ik{wk3U|bzKR&j`vwrRX=nI! z?2m^xV=!oCnAvHW_imGw0Tno%H5tYr_mDPrYIk)d^B@C_tYY<(Q;Ln7}*&xiY8YREj}sJgZ|AZBVE`qJJVX(SyEEEdB%L`ob zZuM@;Ny9SHn3a-KH~i{%dDTmx0P}oZwTY<*EV1ht;2pd@wSb+1dm3O)r8ld`S2IYv z4;fpaOn1kyi0u26ce^!W~LWKI}N)qodI)rKGqlS!~a`axNM3~%@I-2T_ zq1W!@d;pfPdbZM5{7ih8u0Gi8Z#?f``0CF-{M~1d$d2Hb?=sW{(F)9vuivd(4RmHr zC=>ZhdAvTr^IVAWFW^QO*vo&Qvkgo`o7DNu0s$B( zz~lqQ5>MBj(!Hr1rj=_qE$}qVzfBOpXf}Y7L2SVWw5u@A4vlY#3YQJ3oEMM@8dT3l zRli&O{>|#0`48`a*&%zpemCR<$h*+)6qE4XTh$vH+w=_U3K$0Uy!WN}R2iP!7P;pd62DU>5#P#%A=H7i2a&jeYKYkdi-)iHOy4c!g3R#Y>7BGS9 zov$|a)XPQhY_}*_NtwCQ1&MskHX3caTRbTLf&Py0zqY`wn z2ml>4`q99VkQcsU(p3!OWOxR6I-|lG2mD+8dfok^(`QYyQ{W68kGjql4vdJnk<)Yx zbo~*RU+!8$+#Hkr&F73=A{tIR>^aV98;cjQAx<&muMrT?!RABdh*1$)1 z^@0b0dex&Bpp+a116D!(O!$J)TJV$VuR@h?-49)tVFMGRVagr8%;IA25p+V-OgPjt zW2>R(yT-tom(Kkr`Ubs}@bW*H4${Z|AYhVml9`?!>z_Wt!*r81`9gP_!PNgsEl>bo z^$>0c3z_=@lY3v#HDOTgj*9awn6|!gb6Q1ONNo4svnhhI%sLO>`O6LWVFR_E@ekueFd+6rLi5l*+O4NgZ}t+FatSEBNH=r zo~{DI)i={T>Ulczum1kkU%>Y9V>{ilRsBhtGhl9B{}$)?))TBefO+XxDmoiW_G#V& zMzteGWCM$E=-SV~nJ72n6&g#%Z!{UYdhQ94uP~Qrm9w5z}h?=Np>n&f<9@H%oCcczVZ%9sX!fvajptqEZspWsch7;+&D4Q*U z|A%n;d%?Tjd^pW}jQ24*o6engybdsIALPD!Pf819HUX!3+W?}rM(D>ykY3_j4=|^IIM7gw zj>D^ux0YahS~f)#IHA1u#J}DC4TnxL=CSTC5i&p6*W2Xc z(q4S372H5m#+jbVVS55owtHR7qniT`i^+erQHD+Xy(B0bruJ>IQ^Z)o3X>cu75*LS zPCf2>?V2_dcOH zq#i)(v-gA-I?z^OQ!lj&ofCh3_^1B#O#&z!lv+~6X%y(WIPEsQpgLHAhRsSmZR8}h zeNVB%fV@{8q@4l3_HEi;zZYz@2dwPv@3PZ2G@fGC<$~yV-ZX+i2Ii7Zvz4#vYaPw1 zE&bQ09^7J*2zWHWgab<#s+E-}G(KwrRt4a0DnyIdLvd-EBv zs8fa1d1C+7qzMZnz+BLC8H$4r%o_j6l^>YDftzFxu4=vAUBD#*M?{356A6Bjr@j&W zGT`c*OyW@1ZCQKb8L@-=4po95^>a>iXAkkc1OrS)p8&V1v%Av3#P6XTft;>cK+zd?e|ap@orJK=xUZ#9a+}sOwi;p+gc{{oXTk5Wk>_;QXNZRI!o-v z7Ew|;2X5;QsxM-Ed|0L)``)wmbEM6CU`PI6SvKBi-VSeKg|Pww?N`P#*bi(XA1r2`5r`WC>q;x*whqoPh>M=#lD`&+4yg8Kp_11e^ z7>1Xh&^=pw=rC-YWhG};mORY3e)ypJJO(tuGDFY>qDu;@3+fBhb0>KQ^>H|t?Z`xc zKmD9`{dO}1cLQy6M(XePkTwu-`FlFqu3E5D#Oyf1$n{LtQ0qGJ+XepG#rJ-`=cfHMX>zB+ShZUIem1FIik zrtyrdBw*^(|7V=l+>jc$LJwxIFgLBUrT_ZdZ$T*?Dg@^&7#bCkXj{XW9RuK%yXjD` z&N3F5xw@CR1bEh{a3bm}zIB#AKX#`s!7><23prrMWR#U@uP28M=5U)X252^BF+e|> z+L%nspwMD4K|+m*4aKwf5C)zwu85XKo-|kIO9pfxOS@Sg9|Tk3sB97*dST5N?r-3J z4s*fbp{nE1tel=D9n3$_)sS51f~I}TTcKdTD;Oq2nJ$je8NE!o_2SL8juk&>-Vv+% z1s@hXNjVOZjs&Vfo;;@SlJ5t1&hff{t^jsD2gnR+ssdx>q?jVkLga?;_nXtnHdugZ zkj2587gR=Fzs+Ne^1_14Qo=C&;4v`Xd#~LLR-LNT20EbLCGez%Y&!-{Vz^Mxn)j7$ znGk;Y1K`X+Afi&_joc}N6o^Stb4<=aXzc|lT&Uobh*8f(T1&%-40t4+tm~2&H8T$n zG6Ogb^9tCh?wRZ=NPvskd)f`uuB$&3JNTq}PP_I?wPAki`6bc!y{8kEPL475>lBT} z@%GQ&c^-ldw(Y=7bu8p$$KF(#zC6lW)ZNNNUShrt9D>}E+@i#0ObhPWWAaP?Q}4EoKlHeeniey4#x^beq(U6lsyFLAvY%hMNN|g2MLd<4p$C$yM1r3K*}GQ~#lT!LFt8K> zT~9dy>Vc)KzP%4_YDXD6PgZj-Gu&I3YC2chG{Hmz%uCL0h~<{ap%SrxtM`qv!&jlQ zujSKoGp!SJCDV|vYt&n^tRdi)+h4w;F4ZQ3bM$+>jdfU*Us9PB2c`3sCuJi;na@)K zu|6U_V*yYKec!#m1F|y~Y^N8DrNLMO^xAp4A4mi-HAX=#4Fy#>kOC$m5DwZe8w}V1 zHbLr>(Ef>?oZwbo`M#(6qYM2?RDZ%2GbgYX%F_djBESn6?Z&i%MyDmf9>R$wxvhb0 zu>$oBix$qbW`l|W6K0|-Fen!hfWbu+~2=9d<#N7O{Ia;5cG?P2&=^Zc0zK=c3k#y>zD zcX{(d>ROnlt*#;UnB-#FLAd&1#6C{LzyMPoh`b~+OBW8!-MwDd3%B>a^au4D=(8nF z>{$#e9R-B1>lkO#3qzpJ?6`S|*3*A}`Y}kWOT80sAHL{=QPl3;oIa}~h;s-sulk$R zrw&6S{o0G%&0OH{3>d&X$!O-j<2Fkdx0I*QCGXzHXazXISO9Sol{&n`bcK`G;qnur z8o@KHY@P3Z1uVI^3;gteJ0p{!X6M?d0&5R4hetA980`?Qr*$Vj7GkB422j73?7(sG zliP(AZ~QuO;o8#}09hlB&7^47>3=+X>z5(k|26Yx7zETFE6XilA#)W#EYDV7!(7_g zjuTsS)RCb7eCiJ@&;6_!Tat}*C6E>tRZ#`GnIBC5jfpieloL#p0r-HSLE(Z7&=WC@ zbRG+Y-eFSf;fkn{5RL2^K!5L>88D?3EP%IlI(U`T)O1&J zB5PCUK}fHw0HbnHUR;?@X=XZ*!~|>0mH~J$h_fg$EKE8B75L?Jb?=j190}2XK?wH%491%v>Kp zM~s3dw?BKlpdCtc@bTTplb~c)f&olfCwqf>q?*o0*~E!6zpngB#>}bQPO#a&LFNO{ zPw&tUY%qL4N)=dFcAbneIl5T$=}%?&-|?2U7ItOx}llW2NZl| zJ2*IW|VWi7{kc2iWI!Z%PFRirA!?da-6YNBwz# z4lj?N1s6E_uK${8H}I$1ei+P^4H=u_*$fQ?iT3f$%}{vKTw~LIM!kGDjF)fXz9v_x z>|kCy5M(K6kpUBfR|$`1b?GF?D>iM*nC#0~8vCKbw4vZ5DSxMm06QCQx z%g3nincrxIz9QpZ-T`?x0C=no)Um-ev~})WfH(~*p}UWOGC>g_0na@MVyXZoyl(+* zJOntx=o!#PV+>^xRJ+0YVj=f{1ZhzsbrH&d?L}~oIg-qNuu>tGkADrhKQHFW?$^L{ zn{MDG&YhcNTiwy2I0xN82|Gd!C~Fd|_{B$ySf6ySi4jf#3G~F&H}(u;1GJDBb9!5V#o?+$yT@q{uU!(0bG>8z|hrw-Ai^)odBmJJ({g zVgW05*s3AI)*8*#Dblzw`LK4++SGJ*PEblb3<{sZPjoQ<{GmkP5xBI*8Q-ypGq zH*!v~xxp38VqF`T@0HD^X{AttLpeV@ID#(aOSBX}n;C+wMz9!Hu_PMP4@l$!>Ko61 z+xjO)*C6}5%D@4pV-ASbTiyni3o_7`5>gtivoJi4cc9=Dy0DH~ILCl`$@1BEI_Ek$ zX<%E#9H$Fxh+sf~LkBE8dUlE7RUhwLS6)~Pk?rq1N>|?q&OWA$v1Q74Hn(|X`M*4IGq+{vav}8K?sz6W`^6JfuMvY;iR(Qcj#x}#;SjkM^x_*CI zfY}MnmE=fDXU^?DwF!Re%q#!Uw*v(@!t@Y~4ygB^IL*nHOT7I7Wr;d+W=;&q0L{_kKz(#ZF~kyW zp}d&|nS;32#Qmd97^XBAf(r)gA`aIl%)a$-tBiF1QxtJP61HqJAvC3_em(8N|U1^V!|G#eKUuqE~H$AS*a3OZe#;eUd8@b;ZP359mri4QDjni9RX5l=F5m6#y!^E6;ABq3Fhg@e zBfexHfNngt2)52PJd&_r_qV$l83XiFOeGx&s1HqW5e1;)AU8Gt-T zFmbNoys%DVf4a!jVX-W0Iu0kDvy#N^0ub1)~Dvtd{75JDB$*b+KSwaiVA?i6fJEq$`R zAfFRHX9jBn(J^|R3^A#P~C^X)EoalP)&5#hEb7zdnS<-=f+AYHo9F3=w_>+=`& z?!G#^?Qvo1VKtmv4rjn}vRbnARWSfIQiH%dO3muQ4N%!e%3|5Wm=VA+(6*>_zWN;i zhGZkAMyxk-I@(%e3Ju+X(zpSZ#;oJj?VvhPagfQ9<6z|i`*UHg>QJ=sIzega;3~04 zpq$i!cGUQ^RAX$wQX8NXIlMZ4)OC=#K9gAno?a@_ zvBqnm2La9&H~|XdYd(5E8+0SiV!$#QjRD)tl1-H}nWBK}rdAQAK6N$EwgJ!u*^w7y zAe<8_C5>%XfSQ7zTj2QMS&$? z6D+ml6weJzfOfwmdVBIjBppx>8U|hY=4ZDwhWGT2%4Xq}BF;szw=e$7qu+txLYY7S zGvULBu76ENv8*fs-L=@qsR1$TwI6)XTdk|0MT`~69_JX;)W~V@a4{B)Uz}$%0nYGb zvt2T%X%|^?B;gP{a^AJyg9r6pen9Nttz074(F)?U%{M$Kq6XvrhNROp5Jq6Da)l)i z)LszDK6%U~x_SbIs4qSS8Af*j^an7w_U||S?inaMvwKI&27_15j&3i+CV1-h1B-3C zZlOglu7GoLe|>@{5~#=ZEG}Tc|FQM)MMu-#o8Tjf>TOeIw}AqW_O560;0$km>X({^ zjP1@Xrpr*q8hGV_3(IrKQ6GGr-s)iQUj_kn70sDjTQ06}Zi9tc>dkEa?7L7Vrq_~d zSzS)%q;^3CR6$8#zX{rr)FmA!3|LpQAWPG0ckmj(dVM`hh>oD|nb`pULzlMI0p8$U zUm4^G6b{;UgJr8fm+?%zDYRL6bRNi|{!Rx4(1lscd;;c9I^MX4`n&frnOU9ftW$t~ z=H9$a%j}_zDV^=n7z?ic-g|a`v;$+vvA2G6)=w929}L!Er?Gnwv>{`32^xb2oE_pd z1blf6FwuM7xVNvVqG9FCW_(iEaPg+++!&Xt3hBWUaSVwc2~!;;v>be@rIybN%fF1dQ&s*E^0`elGyPxtZi=f--$ z6G6Z!P%Y#B1@OfnFklwh?$MRYSOMBcJQ}ztLU`KCKY=pTEu$=BQx|I+7!lDd!k=>q z_CKyqs5dsj*z(eMQe_`T?48GJvjb1gb3@_~SoVBRr)=GDEte#f1aW<{pFUjW56N@3 zRnc{Bw#cU0v8gCWEVP^vXL-wb6df{DFc8c}W`IWE{d-O@yXIuX%gb5EWX}hz?(zBxU9D3ro@^CC_wRC+NRE2Mh@sHWRfMtWrb-&bGmm&Ht}Gfdp7Lc`;S98 zH{d50-Y&f$-510toFTse;^rj~Q)TGWTVK0tq#YXIJzJ&jHf)icW}o%lKhO*keE8_x zF|M!l(Ac_qsBdL|W9*SU+4#ObCNkIGk<09w z3g60NM$ngk{`PkqHu{b$Ihk~ng;oI)bOfGm6s@Rz(Xc}4idX^X?E9I=bjRT6*~t@? zP^v({?jM+dF)pTz;IvDZn_+=s$po9B(^?BEi)wdd+Z(rt++LZhg;tPID&y9;Iw(V2 z&r$Wu1pUwg|M^ZjkVOUPTIzoLK^fo3eTpJRi^pM!@VD#T3p_f=u*UnUH%uHO`z9}Q zg8nIDtF(%0qQS}+Pgd0GA~=%Tmb$LcBpXyT>T{h zQauxEr6>uifo`t)uaDjaKFjC=nL~QsVKRRCE|G`nLje zh~`#~2RLz-ZFlXQo;e1`*D9yWAPqD{#WxwBxg0CLPl(T>bh9ltZAR zN}j$f3XF+tngIKIWQl2givc~wG!Gnn=kcJP?jt-Y(BlrXM5^C&VZ#gXp*gN3rP(LH zT7Bh{(e*W-C^%#BiHEx2K4VSg?VtdZuo?jl@K83}1W@8I7{Cb|;4Dq9>(9h6vV8qA zV{Ec!mUx)(Lqn|I3t~SA5n$E+bQB)NFolWHofj$(TZEo$Eo1px%IGsdi=r5oW=vWG zCnG3@@KKNQI;0+3g&|Eq`O&?vNWOGGhSLR`AAU);*p?vKaDW;SeOC8MUJCU3Zm?tF zg?0Fu(UdGdhkCzM7d;m?GQzz)py;3)A3r}kG{LmnmNZ=Fi$QAjWRz>r*dWScWlXU? zkFjOL*FyJ9(HU{{e9JNz{V1So_lsk2q1DTK+<1o)`7<)n4;2D5d?h<(kLeK0{ zqL_qR7wJmA$N?sp+*}UtiN(BGu~3TrOw4JZhfUTeJFc5mYLBb5iTS<9IYVovCvLMO z)#TeJR$pFkKlJT%gkG;X+?0*czN;3mKcx@iY%FRT$DHmUCS=oqe*m45*qYzJltCub0=eEIS_Z_HXZzZn-^QdL9CXE zYtO&@^=c?KT{P;qu4~j6FJsgEM`j|2u@O)gPVeC{0FMxOb9K5fDgfOz^S7Vgxjjo? z1MMJIEB$34QM-k`a}hLggynxs=Kwp5ffsesM!-^TU)A{}n|njg&`VAG9gwLl;OiXT zvH-T#4)u~djMweTI76Q_GDN=Zo#2AHHpt_qk?ruqY)Fh(0EoK{zxfkh{~QRo@(q#8 z2O(ELvmj2S2XqkxbPj+uWO>{%h4IB#euKe&Nph03P{eSNn;|9sulpoRGJ!kG>RHsJCL2Sp>$)=>-{J3ed|9O~;1gUn&@*+I z$zWjFd*umZP^K4N*g?f3OYQTN!|sG2e?5QM zMY!jPuX;joE!X2rZCW>*pu~T4?~Ob0ZYRj4YXExkoZo@73y^b}%+-z4V1gVI&taLC zk&lQgKZA^A;+{>&$SiAgLMw=#-iG+okDn?z1PSQo(pHz??q|cQyY_S0u=~|xP-5nJ zW@ZTwXB#%4o)tQ=S=0=$`c}kQrWI3-b!UJVV*;_p;y(QuYp{dWyvpe6s?CQAunt&pKsku% zcli#m38p?^Pf#E3;ktRS`jK5`#dL(@^jg9+3+_T37~toqDWq>sF`*kk>J0(&f$&V| zXBdx^6flksF+Bx?c_P=fzm}Jo5?lZG$KP8z38f6w3gU^=K?YKxP02{7r}k}&7>7hm zGgSbcOMTIU7>uQz5vy>9j{ZB(Tspd)6diYiyTB{Sw2Cj~>^a+f_uo9heC0w{1HtA% z4Lc*_1>61;rO-z}z`M-OKsv5xg~tM%6tHow5xlGS=y?V~kY`;=f@YRc$7{D;yG7J8 z2F|aBGx&s;6|k{gDDswgWN2rJxP0g~r>WV*)BEz=B_8$BOK3m_>!108ijG1iSo(l#N683o|A zAAxaK)9w$ZA%+WgDwr19`tqGzN)71pt;0<0z+>ShpMDF<+JUjN5T88{_FrQBe2dsu z^BFtFF`WStq`dzfUJh_FK>r<1&aw7&qCgAIVo?AgSs9`joL-Ibaw)(k_XO9k4a7hz zH``-v40GGC`mbx}ux|Dq*bWSX0b7hBn=LzupoY;J2kERAYc)hy%PE#|h*)@J<62^n z`Uba{9BdCGZtmpoqu!p6OVFw7mOXeHffK@^d)JE1Y94&y=K<06Fsi3l*sQXbKZDvm z+-!d7hb(9dsFYK;v{i!7voB=+@g_#QvAvCXbO6Mv0VX*Qwwn*Ws(rT_5G|X)r-N2Y zCm9LLJg<6y7c5z1viS9MzW3#3CkLB2EIjLwpuf@!tKMLhqyQWI7yGW z$~=70>N7Qjfv+jGhJn}u0Xh?T0(T~J0|;846s2T9J!4S@jXa8{Rd1E%Kw+c{`_8Ff z+|r(eWu)Ir*L%!^;L-E!wk4bW@#8yC1V`H-2Uyr1rrnA2%e8aEoncU?RYgD<0U2oG zA~-kyMlkiq9OfI~$IftJ04%L4Nxi|wv*h=JsqeqJ(-`b*bv@nkgJBTpR9P5rdG9$` z{6ms>|1mI-y2=oyXh(^?!4=cZW)9SVc>87h7G(3{!0SKeF*_YH@@E49($~N~x?2V; z;;E$7%&3gD^2w;wAUFPeX+PjNt|K5jskgAzUyyW^V79gMb_nRR_dB!#6BB@KOTesD zU-Zwg@oEEJeQs;C*Xm)o)XO#5*KXrRKTzA4rJd>J=zsS<1`sHq`~LU{r(X>E=nfvd z5d~(`g-gLHrmBb2Z_Ic*)F+TqV2aTl`h{mkPXvebu>%2ahGhuEe)GY@?%e1qC_Pzy z;9tNLgF=5+%7#m}Stv|DV1`TnkNbbm_!-z)_~dB}CO~6{!KUg5#*RT=+G<~ALoUDe zV{jm=@~ju)%CARza$fu;G-i{4&I3*}lYsNdbM{E}dHBYo+9VsmPejF3nmI{kso>(s zOTUa4HD5$Q_N6nK;|p&>c~GR|vF+WY_2Q5#G;DRR9BJ+cEMlAt#PT88V) zVy-iFGU9{7Jh`(cHEA9)*<@P2`b0(@RNkDf+?w&~T?Y@IEn!ru8-@cRa(KRJkUcjz z`fxoIf%-rVU)pr{gEhFl6o5Zhn<)B?JSJ8~Q5Sol)T|eEnF4tkM>yDIPMpu~*LV~? z%GiZYsQ1yJ0X#IG*J=gnQlhGp@wK~iF<@|(5?**BmeJu>Ak@EX;_{b8_cRRZdzTA_ zj>2ue5{kYw#$NaLn6t&?=uTrAI+gjyM^`dgRlwl(jeBSK9V{GU{{lk&7z_rK_oH@e z4Xfd!C%3=_lbmo5Q=)2C=hX=e{?Dz?a#1^=Wl(c6U9M{vnwRA&2=?3PuZ9|Q?arlk z7Oj8_YG5(|R=)^;cINuwPVhCI9#G>ZGU;3alY;XA=xxE82wyD<)W>cxSg^Com<-II zvn)kG#~WH@B7Hw9X2#S2{Q$7IfH?LcV3U)YuG9G{HcPl3(gS)1BeDscQ#D<`N6%Or z=m-OQkIk8cWuQ0$ob^-a*El<7b%#0+V6ap^8xGMu^4gtT4@MdFg!UZGxTz5;Sz52xYwq7U`CV`4=C6Fzx-6Wn(w}4e%^4-L6+U z(e&!~)AhxQ-}F|Ma9aHtBOaebxqgMcZnK2f*?h4l?A z)^hSalPtP}tTkKp{<<)%DpzkuLjw{M=^EhEC(}h)(35%NAG%>E2d#j%2j+%k`yX#( zegoIOyWxO1)fp5khGNc+nYzIx1h0v817bqAe*Kag7G6aCVwda$J_<^?2*#9|;;ky$ z>EnT5&Hza~GbdXNGW$jNnhN=U3fC(SbvhvdoxS$LcAHvvs;S*+&cFJLl90WQf}M&Q zWamxZM*#B*GZz?G1RJfA0eC*Iwa!ZbVRTu*p*>ImboGjU#a_yWIx@f%MW#@%~G&7aHO z$eEa8=v$19P+Hl00YFrqnyn};{9{tnu}?r*_?GZA3xqBHzFiiBN0~hi|pwz&}q$8(+RRu z0YoXNL5AQl`)Ng=0(9T&&ky8nuxVx$>g|iO!_j6KtnoG{1aO!Ot>ES^TRnIS52Vw8 zD_k?s5WwqqgBe+7J|?2G1UKj>cL-jVU)HdCZ05k#R06R9OQAyzM~al z5Kb?Wvh(Q)V3PkfpuGE!(IvsGHl5_J-1FY!%t^u4SX2=-uYTeD>7y8g8(T$TMFRA$ zdZI8-_QIWF3>BgKQ&%BN&FNDgbjj>oRxdf0V4zWuT?YB;!)w;oivwm0^c3~0(TR+A z4v3M`jRYFt{oG{M7&^Uuif8q*gSkQKyT`|L&K{xj-*^%XU`l@h_)VmImhe1i#A9p> zGUXdgtEA)HNYtm>K85BU8V6E;|t92nu55J8r-k$rFEm!H7s zP!pKCPs=98o0m)hv1Vhg-wh5hCD*gLY;L*{U6mNkaI!#C=6=RZWJbVZql=oxf_+(y zlk`GA$kCWFTnH)fhe&570S8$VfP*b@yB$nDlngTV^)F?sH%fUy!6&yt*3HTw93msM zKN=zvq<&t*QXkgn;xvG`q`3~Z6y0Nb`j7YOYr@Eb$GEhyjP(rjD4PS9+{i!y-qp(w zL2xg@iJl_$mVkN+7)(J!k=^ZA?%{o75>(J6yBYjAD|~b%09-pTr7NOuyHNGq5AI>x zXYfp*Vrz2=V_;xT-xdu66m3%ftrbm9D-rd%IXEod`-S_=e__*Pp7#qD44c_HhAm*9{ZLQ( zi0ox6h@`*9wo+vb-Zs(2J$DkXJjUn=HD-d}1!KvX~b6okKn9 zVFbfv-J#_X$v%1u9c;)tb40V-51Dap_X&-0z=|er>#YuEm+3P<&nGz2LQ2*6apUW$Yz4~olehH*q zGrzD>$$1ZtangyPj-o^wfQCwu;5@&;*OqjkJG9S{P&S$+7A}F^Ul6(}vcaQ1M1(>0 zTot(bo6FI-0mcAeqB9Z#<{_X1TgGf@5)%vm6PC+)W-m9CfXX+(418|TuKv4v^;g&$ z=Hm?T^M}Hc2#WSm&no0AmT{iT31TdPoRGXK(P~SX8F{heqkBIGQRl9KrLuAjeDC22 zMW;R67}5kBnD1bo02QF(b}+{xFAF3Em|eA3zaoPeh!4Ie`o)V4)ARw8(7K=UvQc#w zQU6P>r>!%oJ2OZ<`E{%zS@uqe<5`!7c>ccgu{WNg$p@ohU$9TU3dRoRB9+p!HTw8J zJ@aip3=1n5;H|-=mw(6x2}Fvxa@*TKg2o1NHc#~udx*&=eJEA^xq(So&=lp{?1sV& z@~5Y_KsA#E>CDMNPA`BRi5H9j@t80WXFT7=eSuNXr35gY`{zEnrQrR&zq56gn5yZ9 z7T!Bf`Rst7_n8ORy)pLxz5h2D3A`m|mswJA3A`vB!kk?)u|S7GyjK98uCQ(hefdZR zHO=+T*X?DpxvrrkeVez!%vg+8daVn~p?qPDrn)r*plp7(=#@ zx9V?uC^vUJ>fs!59$hvNvmXEuR4%?#Zr zXK(;w@#4d10myvdF1YhD6gLRi+oci2)p+v<4PVrFIB|hnZwaYDIcY%XRwPw0`n#fLj%xre|q@>c%2E%V#*9K z&8C}DSoxH{P(uQRg(33MkXg+wz|X|ES33BI_%~F4I0Xi9qxK@635jX{Y>7h7sgMY)U!JmGyTgKz~cV< zncx2G6cl^Y_1E_x>p&_N2bm+qtK>}$;*;jl1440UsK3>#Cp#=mS06cjHbe`K?_||1g88^BGshTa4Q1# zl9s60T;2ovg#kRgzYjbjF%~>bZ;c2|v`-r8>!En*g@)TNHjZr2VNQK^BCiHm3TWb9 zS>p8K8M=zlWX3dT(8P!Vwy1gVum^wZw6ynn0^+>eLd%^782p_xtXII|p*4sToB#Uh zrXBzOGN=}D1pMmDV5S3(7c>XP5c6iGS@&yJ-gIM`=7tQ^1smm&=E;wLpszbsdJ=8m z(Gy_FppGxz2wl!UyCckkGck>(n?HfzsBBWC*6hE5XM)zyMZJrli0^zN|M)6i!&6)~{e!Xl^Daz^q`_ zbe;?;6c)kr_mnTvVqH%g;E_R78+dwSg*Z+-Lpq%Q=|9T7*gDEIO93S?BjK(wT?3pj5Ul`AN7FQt3GS90<66iNgJ2Pg;>rS*dti_ZVq>tl90VYDj{J6V3 z>A4XPzIWxqk}z`>Q!`ywh*Ui{Zi}#IGwuL$Im5${#Mrndfh$i;2xWki01#ppCL(+{~_1sG8$_bOuwBqk{TX&1{}2`{lTS~KjVDrh8- zS?4hIZJTs*JR9ewe3}fhKlA9XFlf+s{vcqMsjkt=%I&8++o#noGe-q_;u#3~L}1Ya zSNKSfXGH+wv-f(SJLkbj-D)ko*^?r9A3Qg1QagU5-2R- zrSwlk50f0wa&M^^`0C9fG|mbGJ*RxC-7zXH8%v$A$xYo*(BDNr-Tw_(x8sv%sJ{dT zuu$E4IUl@yMp(da{updn#(k=EZ30a$()HQXa+&vd27O)`0tPU*uDtw2uy$+b+h1d|8GO>?OS;GJ;*QKzIkD09SR2p;=FNVm}a&Iz-wB? z!Hs0O?(_e_IbfAZS1Q6bz=Tui;i zmS=$!aB)-(Z)g3-shx7hDghTq%i9~H?KbEpkiK234PYYNeNG0U{SOz=3zh8!9INOw;d=3%vi+r*TQV&lz^#e z_6uovYueUx5^8UB36S(1w&3*gy~A1+{%(%(fDcfV=fTC@uDA z>04VaEC$GHIrj`bzZS^whOpVnq9O3$d3qdRG+3sAk3Z}JpX0^-J8tebR!9y@hZ%;z=!tPq zkrixb6-@Dd1r!0!kB=Z(_r4F#6M*UwA$c{EERy2@IoJM8DDi*(;HT^!s0Bp^a4QKc z)X|}7qH*_aNZyX-D#3=l%Ry@y)C*EEE<54m9zLmE$%Bk`f$_4H@<9W{gBQ4YcIi1D zQNdXV=pbZDa$sMSZSk=HhyvZZ*vMW0Gw-1Q1v57xK4exdSR62fFK`#rDKZGR-ZZ4^ zG?^88yYhyDF75RfXWAKBPU@@ozyJ=Gs}E*O)`caK-PD8TmB)8)!4!wV3v2AkCu*VI zdyTu2OOej>W1y`d;J^_ny~RyvO9i|6WCcUgOns$ku3Zahw4IGijS7XPBAjjvQJYY% zGV;?sz9yls(@%k*^y6H_x8Z#7%WzmdpgXUCErOgJADEBgKuoCnzh+(V1-&Wj{`vBoXPK- zSEV1huYBP*=qbpZ5*9lIr_m7yrhHx$vWU?dT-l$Ckn5LsDz4ZUTr$^6djoT+4#c$c z-oVf}-OPe^K-V@6nZfszr@Z^WfC~J@xoCg=zVhjGXuQmozG+O5v-s%e(mj^QxTy99 zCk|JD=pvRDwgFCvbJ^+S69sVPd@Xo{llwytYW3C!Z$`B;r8!PmcW#A4j)Nx9y%eE* zsdc(&s+?|{buAw%cYNLPCFL!Lu#Ixw4HIBYH;!1=uKW@x=u}d324}m_k&&tVe8%s>XK~Zl^N3ygT3T$-_7gIhsPh47K@|PLI~ch{Nd5Nop~Yz0gQ6CVIF z*ev-2yt{oX$FiM=F%fOboyH8Q$G&IyL#G3CP#tN;@g8{kEnwV1`8 zTy6{HSCvjE^;|GL2FQGi_Jhvx{E~$|ZZnH;5698o#b%4la$Ou{z1s~)3Ifx(nyQ##LE7VQcM_ennKwMILWg{@Sd zkQ2jU9!mkcaUN_#92qY9ziI?)1qXMQSAhqcV!qNOlauhpit%hk$Bt!x*`f-7s$ zxks0p6RP9sU!aao7dR0CIj=U4K}%zW2F8Sl(>C0FPN?AbUIiOwu5Jq(7fY99AAki5 z+Z06LN6+O~M2_?DJUiUklT(E5$_5i~k5@CyJdHufs7($L2V_@h+xjGhgKZC*c{yB< z3MTpfUNU!%3Z+nx0WqLF)9&ViO+8#&F4WInfIO7DY`|lyM$@jI1tkuY(&)^oV(!Fn zaNyB1xkCd?M1jt9#!1Ctu2AnVfzAm%N{H|lEALZ(g(-Wju&iW3a>;$Cz(^`MLTz<- z9!K>!z>Z#42bE(e|B}v4)kem(+Xj_+6{)!mFEWNRa;D% zboy8xU#ZmUIq9kR-RgJC%X!KMD*kw5>wmXZ?lr8ZIK;Y4vkT>4zNZ9-8nG&OY zo_PaI>smOm&`_Nrpq=ya1=EMNz#jUL&Z4KA7G}A4fxK-7;q%vY^x13>7~@j}S}R?U zw`1imF$^s*3Obi`0=&CMd5nNIHSC|U1ev_Dr2OYCZ%x2TQau;*`}0$kuE|n{qaa;BPi=iUf3wr1U69G0>jWCpQ@dA&jlSCkld)c?UOnp}3gjSoLS@nWD*l()zJ z`=xi$>d>(u26TkPI+GvtIe)YiqBe7ftRNcH4OBljmk20ZwK& zniu(ESk|NETslUe6M_Nzj}QN0ke-s|P#mmL{#k=r7Z~Vgv?Z+a%z02XXRoX}Xa!nT z0hoZ96QsMP%a3!baXLUHh>ocrmHEJ9fD^RPxN!YtZ#UuqxIO>RA3V3R3@!I87$*=5 z0^N45_@Q_81fu+`kcayJ)YO)2FoRp#!1GBA2e(RVA6J zRU(=x$MaP?7j|-0x=~oU4r926bAIqEurna5`Rc2>Bx}m83uw4`sEyS?DYzapv(#!} z1+QN(iW_3@SX_DvaKom@0!1nR$ldR1%#WRJ=Ugl-P;>%qJ76qOzNkP$c~095Xik96(%Ti> zP--h=264^%pzPBd`4f;C^75XcNwhqvts7gpQ1*OY2pEa>&PL}@6{HI8GNXk(0-iD< zN7^|#deJnI0e-kXp?q9O9A!Rk9)MNko=D({Kx%aa=O?f%ohOqU#yfON?5E#f=ViK< z8F3zXCsl?Axckndi)UO=YDIe#!Y>glN3_8=K%1d)tdYDZ%3p3*eIr_cZiGPqGN+VZ z^_Ur~I8IpBQD_=aK#{+}A!i{kog3o;?ww7LFL-Hej;p_(TS4FH1poLuV7*p7_qH!A zXjnnHJg@*VD1TjNY=Tl99KaXsNiHBfj49pH8Q8+00>L#&%CBui3*2_}Ld9`3R^?d+ z=xHGLu|B4d0F44X#NsZ%QUF-eL&4=-k9*ROLTOt~|kKkKJ4 zWcBZs_@U)cHiCsi(zDSZdm>AsK!XtJ`<7JKuzr2vy~(2$ zacBltaTZzwrz5bH)~CEAGN*^$)9=d4E%SYy3!GL@hC)|VDIch^3G2zt6PCz9i-I4O?>#c}%Uou$kgxdC)g9iVy8=6+azJfuJculnfk!Fa0_ zU?pj*OSHM^nHDDA_2*9U`y5&X{2ul=iNSm;FHm?vgu zBgYsG_5M%W2ebNk6>vHm%y=joOv&!z+|mTd>6T>WE76S3`8{_G3|6iQ=;HVSvDtZ0 zm~Frodt|+q8FK%hPNA`6mi~SCHan4{W|!S~9WB;lWk>XMI(nEW+&5M(qiC`ie1zGr zd~~$}3j5s$35+w3!$BuO%!N%>x#Y66a86=?eW{2qQr@#N(-B4I0_pwj$5WIjyDY9#1$-RZW=wz_kn+As(cE3h z(X&v<%gj(mK;zriw!yIc5&Bcb(U%!pOJHL3d{NTA#W=Unc>wRUo7RF3&i~*9n2GuM zr)MvM3oy4mWJTN;01HjqW6IZMA94fLL}hcbQH$)7vv;xSS@8NPVlnUfGq5R-WRM&b zP(IYGd`D30cA>4PTUf!BUpsIZ9jNb|e|9<~x3|A>K>35DZktmr=Z@ZIfS7>HXxpap zf#-9dzB9CN_ecA%Ot)w7R3L0UVk9cd%oz`L$&%K}#qLDzfwzLLeYY##c^1mI!EFW@ zLgv6fd##+=AkeG)7YX#m6tI?|&b`D%mJGnd47ABDeJE_Qqn56CS4HQS?+PRMVC(6w z7*?|lVaf>8H8*qpoN6X--YVqevxUL=<&UA*n7VQ#^+eXW1uk)Esky}iSqN$@O0}#( Q_Kv#M-yNd)|9}Vn2bOuuKmY&$ literal 121671 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC|_BmuHU4NqQX7 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π=#^wT{qa=ips10^HD|tW491k&t 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 Q_Kv#M-yNd)|9}Vn2bOuuKmY&$ literal 121671 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC|_BmuHU4NqQX7 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π=#^wT{qa=ips10^HD|tW491k&t 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 Q_Kv#M-yNd)|9}Vn2bOuuKmY&$ literal 121671 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC any, - parse: parseFunction as (args: strings) => { location: string, time: Date }, - parameters: { - type: 'object', - properties: { - location: { type: 'string' }, - time: { type: 'string', format: 'date-time' }, + tools: [ + { + type: 'function', + function: { + function: getWeather as (args: { location: string; time: Date }) => any, + parse: parseFunction as (args: strings) => { location: string; time: Date }, + parameters: { + type: 'object', + properties: { + location: { type: 'string' }, + time: { type: 'string', format: 'date-time' }, + }, }, }, - } - }], + }, + ], }); ``` @@ -236,7 +238,6 @@ async function main() { main(); ``` - ### Integrate with `zod` [`zod`](https://www.npmjs.com/package/zod) is a schema validation library which can help with validating the @@ -261,8 +262,8 @@ async function main() { function: getWeather, parse: GetWeatherParameters.parse, parameters: zodToJsonSchema(GetWeatherParameters), - } - } + }, + }, ], }) .on('message', (message) => console.log(message)); @@ -293,4 +294,3 @@ See an example of a Next.JS integration here [`examples/stream-to-client-next.ts ### Proxy Streaming to a Browser See an example of using express to stream to a browser here [`examples/stream-to-client-express.ts`](examples/stream-to-client-express.ts). - diff --git a/scripts/fix-index-exports.cjs b/scripts/fix-index-exports.cjs index 0909af7cb..b61b2ea33 100644 --- a/scripts/fix-index-exports.cjs +++ b/scripts/fix-index-exports.cjs @@ -1,7 +1,11 @@ const fs = require('fs'); const path = require('path'); -const indexJs = path.resolve(__dirname, '..', 'dist', 'index.js'); +const indexJs = + process.env['DIST_PATH'] ? + path.resolve(process.env['DIST_PATH'], 'index.js') + : path.resolve(__dirname, '..', 'dist', 'index.js'); + let before = fs.readFileSync(indexJs, 'utf8'); let after = before.replace( /^\s*exports\.default\s*=\s*(\w+)/m, diff --git a/scripts/make-dist-package-json.cjs b/scripts/make-dist-package-json.cjs index def768ed0..d4a0a69b3 100644 --- a/scripts/make-dist-package-json.cjs +++ b/scripts/make-dist-package-json.cjs @@ -1,4 +1,4 @@ -const pkgJson = require('../package.json'); +const pkgJson = require(process.env['PKG_JSON_PATH'] || '../package.json'); function processExportMap(m) { for (const key in m) { diff --git a/scripts/postprocess-files.cjs b/scripts/postprocess-files.cjs index 5379f9fa2..8fd9ec8db 100644 --- a/scripts/postprocess-files.cjs +++ b/scripts/postprocess-files.cjs @@ -2,7 +2,12 @@ const fs = require('fs'); const path = require('path'); const { parse } = require('@typescript-eslint/parser'); -const distDir = path.resolve(__dirname, '..', 'dist'); +const pkgImportPath = process.env['PKG_IMPORT_PATH'] ?? 'openai/' + +const distDir = + process.env['DIST_PATH'] ? + path.resolve(process.env['DIST_PATH']) + : path.resolve(__dirname, '..', 'dist'); const distSrcDir = path.join(distDir, 'src'); /** @@ -105,11 +110,11 @@ async function postprocess() { let transformed = mapModulePaths(code, (importPath) => { if (file.startsWith(distSrcDir)) { - if (importPath.startsWith('openai/')) { + if (importPath.startsWith(pkgImportPath)) { // convert self-references in dist/src to relative paths let relativePath = path.relative( path.dirname(file), - path.join(distSrcDir, importPath.substring('openai/'.length)), + path.join(distSrcDir, importPath.substring(pkgImportPath.length)), ); if (!relativePath.startsWith('.')) relativePath = `./${relativePath}`; return relativePath; diff --git a/src/core.ts b/src/core.ts index b7037bd50..f431b7d58 100644 --- a/src/core.ts +++ b/src/core.ts @@ -342,6 +342,11 @@ export abstract class APIClient { return reqHeaders; } + /** + * Used as a callback for mutating the given `FinalRequestOptions` object. + */ + protected async prepareOptions(options: FinalRequestOptions): Promise {} + /** * Used as a callback for mutating the given `RequestInit` object. * @@ -387,6 +392,8 @@ export abstract class APIClient { retriesRemaining = options.maxRetries ?? this.maxRetries; } + await this.prepareOptions(options); + const { req, url, timeout } = this.buildRequest(options); await this.prepareRequest(req, { url, options }); @@ -1139,3 +1146,7 @@ export const toBase64 = (str: string | null | undefined): string => { throw new OpenAIError('Cannot generate b64 string; Expected `Buffer` or `btoa` to be defined'); }; + +export function isObj(obj: unknown): obj is Record { + return obj != null && typeof obj === 'object' && !Array.isArray(obj); +} From ca5887d10b1902812a3caebdf850de1d837021ac Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 22 Jan 2024 23:35:48 +0100 Subject: [PATCH 262/725] chore(internal): fix binary files (#645) --- ecosystem-tests/bun/bun.lockb | Bin 2435 -> 2070 bytes ecosystem-tests/bun/sample1.mp3 | Bin 212490 -> 121671 bytes ecosystem-tests/node-ts-cjs-auto/sample1.mp3 | Bin 212490 -> 121671 bytes ecosystem-tests/node-ts-cjs-web/sample1.mp3 | Bin 212490 -> 121671 bytes ecosystem-tests/node-ts-cjs/sample1.mp3 | Bin 212490 -> 121671 bytes ecosystem-tests/node-ts-esm-auto/sample1.mp3 | Bin 212490 -> 121671 bytes ecosystem-tests/node-ts-esm-web/sample1.mp3 | Bin 212490 -> 121671 bytes ecosystem-tests/node-ts-esm/sample1.mp3 | Bin 212490 -> 121671 bytes ecosystem-tests/node-ts4.5-jest27/sample1.mp3 | Bin 212490 -> 121671 bytes 9 files changed, 0 insertions(+), 0 deletions(-) diff --git a/ecosystem-tests/bun/bun.lockb b/ecosystem-tests/bun/bun.lockb index 4cae9efcdc21c06ef938f2c9a392354166ff75de..4ece80c92f6623b82b55d2a0188549558d764dea 100755 GIT binary patch delta 764 zcmZn`o+dCsU!h~xjt{|Cm44@W&Dj}p$mjAV!?cK7@<*4gTjTpcihEt##9VpChKcFibwrqBmKC$&UFS|G&u> zSxhE3Fv-_5G5~o%%aQG8Da;RknqQb)cc=KpeW9``d+ST*D#3+I3a!3<`GnF^#?!X7j(mfL0j_tqy?zuHfSB3gFsy%oN?XM4r$*1M5!PUyKW z*HlxolvzJVg0FVlO7=Kk&%PRU#?v7)gJ<2k$@x_K4%9GFAbo`UJqsu_0-|ErS)k$| z`Vf#n2_;-&lh3i7=G+0*dS>!6R(rvJ{~-Wm9LV86CUdZrGwz$*#AamO081VmOgV`q zsl_D>46uX+OF$fqafW&ZdWL2Uu%rh`Vw0KK<17yR7Fk*}Wr9djW}bdYaWVt{y~Q@~ sWD9qd6c?u!m8BNNURG!fO7s3<3bdC8m>60tOwTY@@crAomHiwe01bNYga7~l literal 2435 zcmd5-TTc@~6yC)mr4mtr1aDX|s0h1lxzs8R!h;G3-oOhgBukyvm9j0n(^^pU)#%SK z`s9lyJ{l9Fi7z}DpM222;9u}NJKNnY7SO~PC+9ZjoH=La%Mln2B zFhW2jn@i27^(<4;IdehdN--L$ktAvA$Gf*KOhRf08e>95#_=z&W9jP<4t#tev=d-^ zwh6foA7OCEr;4sw&5(c`^0jawSgv||{ z$$)=)wF~qw5nl?PPeUW^r3FNiFT-;OH&)l^;#Ob8Aq?I`3)wfC=xbQ`rTFcMN*%geg8 z`f}e++DIj_hyPU~(?&V5{owN)I93bt;rX$Z zh6IG$eDvEB3Y=^KiI0K+_5)X63i&8luMn{$|3v7jlv`kF_xm?}aN7;khq@0Q?${2g z2{=uWJAr`DL`wHSBEYXtK>*ziAe2+PG6zcADL@l!Sg@TVgRX_nJOJtaGxD|q*YB$9 zOgH9~+p9glB4oP2E?je^k}FLMNj(eRdAR+=KGAR8?gXftouGm}I3j~qJR0>-(2aD; z(*lkjy$=D}zKb_*)s-&@ane^F)IZTWNj7EvgR`mgKXMQ&r(~WKN?K-0)eVbl*{oWA zqtz*svB7XpG;Hb1ESK&M_l32ro-uN1yq8V{1o;)nMkm9|5O7|pP_oe5Gl)Rzgrthm zDUUk-$=?`9nP?1+%{%_c?2f$I6Q3z0u#mW$HCDM0@45Fs;lY}$#+k(>$@>`m&wWsy zjj2&J7MHv)1bKa*Ls0IALm%c9#A{A%#Nm|{x7b3Fnd<2hXQrWLC%LH`nZa<(n{dLN zFt<{6BvJKdF#2Nv&GgrjwekD2B>MXoLAYfx6R~F?hk=*V=Ro@rp~2oBbQ1j_a)};~ zk~6!9&WDQKLfvBPl}*a!nW5=mDVikD_K@#hINNC-Qc88nR=d!X^Lsx z;XH4hj6_V9(JgK+sYZU`uBGP8OvD=yQG6Z6uBgg0%NvZXk{>~;Xce)6n}l=Mg&?l1 PMAd{EqmlM@{Dc+Je_xpZ019L0 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC|_BmuHU4NqQX7 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π=#^wT{qa=ips10^HD|tW491k&t zYcKpc3Bg*@){tsc+KULTO}Sx;`E!be1<=2Y@K#B4Fa)n^%w&oP8eX|i`?=l^zawMq zVZS`r258?ZMzu-A8;{VH?>x&;GQ)Cs+NF(2a2A2!`U8+xzSVaEf)kllIa39F#CmpB z`^*3%cjJq#DQ`XX`}<$JAA|EM|Hh#U4nFmQk;(xk2dA&Se(a9U&KSyxPN_SV{MMId zm??JN=g!A7%YkzGYdkOdPxn24EZr2*(bC(zw%9M*gmW!G_`*yvyQpO3(98cje-7p|BE|R%Lc)F8W~8zynE`SFRNxz zZ%A!Wod_ElKvj5cd5v_exzk~=$YJ2#p>3+yN9CFaxTh(g&d^JrxR|5Kpr&0_8eF*7>;DH>;DHijZh*pRqPy&bv0@QS` zF~xa4K?MY-J5{i^4RJDor|<#+X|>~QV#Qta!EW}Pqv)e2_J+8M!g+lI>t4sZ-xc+L zfAQDfD;WOlyYuT9_i;hID9~PFdiPtRGW_gG0F(860T^#UKu=NNTem`*LAAaOEvyP3 zRxZH9beQOFVAQ1&tf9B5j0u!RM>GfbfcFf3d^=z4XwSz|L1ZQXfuK}T&qH`Kd4Z(; z3|2Id09yIbqI%Zj6GjuYbJ#-tAlT_ibY(kGc@6_Jc>F`euJ$PgZ%s1gw z>(wucDM5txq*=B{pd7?g31UU4Wy_#phReD+3t$=rF&A<@17%aCP!9gzt1=sw$*7?& z?F|M82D6};BrrjIlCjQ}+`Gs%16;OG6g`y<@+29S5@&s(0at&*01CXg`@x@7R(x1u z1t!@P5?R%zw3@D>?x7_NazRrgQ(=W$P0&~>f?bG45U=&o&$tr6$@bg=;!){S@m8M} zCdz+2@Pp~BAt<~h6`WrfgYW|ZAKpL2b8>pj%h=?;2?&-n(3u(D3NfLsni1;v&O@?= z*8!OCs%{2yS1?%G-2!LU@ZL~32X+(UWc>2;UGM%}Ew&@CyImDfqHL|#4|2?%QP(OO z?`v($3evaSq%=oF%|*b*DRtUq;xIHeRXZp zMqmEa-MA)aW)*ip(r?U|qzdh$TBabY5GY8=`mO0^MG&J%1~) z+Wfh5Yy_!DP4r=(NKlvQ;L{-Hcb;QnCnb2P{KnwVcYGh5vw8c0=))et3#`$~^wY5j zZ348dTbPcG%s|07M1T9BI;aw(v9n+*OVkS#ySl3|%7q}_D(mV}Stqq1d-0JM2PMiK zumdx*V5dYEUcVc~3kY%shh3Xx`mo&^`MIM@=se*4FM_qlf-xw~X`|X#2%rLIYUYC> zQe~w2lOr_3%bXc5Hg~Z0IY11&jn!P}b{A*8ammp+SOBF21gI#aP0DbH^|hSBm9w$| zwjDvN52V=?C8G+1NSilg=S+gCoNCsjs)dVC3utH20I^rTOAp7k54u@OKz3?KY!&>Rr(nf z+J6t2G+7tc2bmP(ScYpoA?|Jb#=qk$406J+*RQkN)?1FwIR7rFofazS(gpi-ocwIERW z=HkY*kV!-xlK zzwuHedu%|Yf>^Mvpkh!3XoL!9a60<@g$vvxEq1J1WnJ48#+;XaPm(9(scOdt9omEc zYJ4zG@|~D&ICw-ulW~SS2YTG5G%mlOIyq&c21hr#@Lz1R~aB30}Z+g zMf=6_d76R}=nMB`mcF?oJ6~nEDz9;DO3wph{S?vPKn2SeP+~!Q%9)tJdFfSm(7!+P zBwa@T>u~X&yunBS2KvVfq|T~+>DGO3j8GK6XN#9fRPw$&>)1rvpUk zgn0SUR2eWx0;U~(ZKzi1$f2lmFm z5qbP=1KpcjHA4lrepLY?XL+m0IhM-Tod#8d+O zKUaPq|GJ?iB&v)vX7bj8l7`;<3IyO(J!4C~x>8e@jTh1(-+B&=8PVSe=2Hnq$LOfh zKFTRWhltcs$ih57<`aFpbMEq2Wed0)r1l%1PE`vW?$TZ>U{kUE)dwJ0LF$gN9?CHB z_89IBmYN&I)S@Q=dJZsfb)L{VPqI@5(;tT7s8G**<>jZLT0o`jaXbY})UX1!GzF%8 z${n(+FJjvTIpKQw%Piy~?FXcxT)Txw3s`Buzu$T%xSP)4Azag;u*s-4F}8ZvU~I4@ z@hVpz1Y@h8;(aNKO9HAuNp)aD>J;>Ntm@BDef^K~{3>=Vpu&5$qrQq{i3-S^-TsmZxLw+}qUR z9m=Hwwrv|@o?>BC7KX#bItOt|RB(D^lfJA1od5|=Gmj1@T+qOqLG#Mk7JbW!C{NZ_ zLkCtmOM7|#%4v(iH?td>lhJ3EnYc@=KU)~rZ8*H~6x3o2Xuk&;z@-e9()HXmbsH>% zPHFQG59x#C*kScHR=P&tx+5^63FCtH`23V6UW6krdegn8J$EX?Z+z3YA-4#YQcwWr zpw>?Z>tJ<9^(udD#YC%R4LOh1B*oTdv9ZmAcxIr?1vVpkGy7mwM1(tn;nOjfrhOo) zmO*LKK21Fw+_u%wg<-1fl&d<*TMqv!xiXQ z)-|;iV_p-e;*^1*(NiCPGs~s@yak47c6A|xOZ$^gIHO8OJJ|~j42Xg5%^5B{&2t*H zPwH7?o!;S$dUU@(SAG;Ve$1%! zOj-c<0C5@KAYPp(DPeFuV_-L7ZLl(A>8MRDa@Y-HQd|UhN|M>`#k>nnYUOEcO`}&{ zV8RKs&)F4oDF)@J#F;nmGjVb*8ji<|d-se&;eCTk-Kqg&<@bW-dBd6lz4K@|bB7^s zVM}tH&Hz{STMtzbGzV!(0pqd&mNajKUMnoJ-s51LORQHBugCQ(Q3A=(0GB}AThJbG z;~CLB5I)IZ#UN%cBYSB_doO=(A-qw0s$;(E(+9R-XN?04hhUoP0<{0i28+%)2%HzW zTpgc_Iek4jvfQ9=Rb?n+E5uwEUCH~!$Veaf)*@RNOG(Qi22J}OmP$nofy@BwG;25=jrYOLf2JIApyPCxk3&G>7Ww`5k`ybLL zJDJUlFSA)kj%ZOu8Af_zEoHRm)yLT%cs{ntuoT{p$3TL9o}y0@gXN zJ;W<=Ky2Wvy2f;7D)PJ~xfSX44k)}4>0oe*K#Wy{BTKE9|3Mf~;e!e=fOh7*jwWaU z!(f>;-DSC>yab@q5n56Nn5UKork#_a3VWNG!XUbe+rTGj9LgO8k4a^2u~>#coE9th zD7rB?bXREw3t#)lbUphYz|~$l_<2?6EEAr(YI2UVYXPN#48iKI>=n%E1A%dY(+t0H zN5xQ z4TZAt%$~p0$NC1^tRlhlL}QLEbA>>|awm8`{ldUA5f_zn>X`u%EeuSb_PJCjKpE&T z5*Rc#f^iB*k;yZ$4>lQ_BjOkjz<|eQFm<_J9fiV!a}LVC-F`1!83@W0dqzx= zQK_LZEYz3pmJJr|{W<7)i=7+vbsobx{^1V?-+Z8TPQ?M1zQBC&LFM02TbHByECbgJ z3f6wMB-yvgmd~M%$TiL_jfLgNz5G*%!}DQqzUuOCnvAEnjXbEJAQGIR0oa~_=ySdQ zcCqS2oDiL8tffi`4+Sr)EI5B~1Ux2ci!c4vi?45vWly$G%E8`?CjNS$8 z(>~yDeo;ok{k0#-4L8K4M(kd>mCct<1;RkQJKy+{l_h)iF0cl3YR(k9)wGd~tOH)11i1tK+Z>Bx0ZWfyR{fY_7~1-1_aPMI-;P_ zZNQc1J-ya3wMN71FU7;w%yMIqHB?$Qe)m<*yZY6y7;CjJ8)E>N*hP6)DCNGvOr~%U z>-frxwsHtS`{nCT7y~X%VDt?yA@gNDaH;n=i+Lw1 zhbsXr`(SS}%jhnq-g{r631BfSS6RW=vhyqKV*KDKk=+a$uw$MdU=BqxbRT}1_b@h` zo%~jHr=Q2jpC-Bw;2wag7#Y;kS=vXoA)Rvpr9;bwy-Cgu3v156VDxUE`OjZI1I1V6 zA5_6HhL0CF2c4hu@IpYMN^2ElSb}O<1Jj_mdR2JJ_b?5#G5NMZ0U|*33P$`sN#VZuC4D{^ zDy@F_JWS_GFTVgG=!Rev4^OUdg5s^x<){t1a;j%B2!lZH&D{9OGv#rs{+0!1&6_`0 z6(~m~aPP68xwgOFdIz(ATKjrdu52vqcNw8wdqRd5-X(IqdIQGkUQ?Kp(*rWBQXx3lQ}n_taDreU)66ql&51YHr-3IIn*1QB z9cxgDkHND2`tuMr*`#yMX{nFLwdl5Ye>DxA?Gxzx-?u+>pQtl)>MnxeBs=UGv9G=R ztfNnPr-2zhaxvz3Uj6D=miH7!zTH)u5Nrj_>0kgo4s^&Bir5YMO8ZPZWU0%!L9vt+rMfpKCWxaSn^Y>M z1-0rMpqLAGO}#_eszGoOz$FtiT+8NtmCNjeld@Gf^K80;)7HKM%iUN!0$1Yzl=)p5 z(JRbzL0&ebor^w-F%0OHk7-S7WrYLH+7l5vq2-)m#F+4^xS1b<<5QnLzy!~d;aTk) zH}x3gtOi8cYB?@@_ zag|(~bf)(GimJ0!`erEgbs-CRkf)Ctp|fb3>4`$wkOM)t`N&ZCKo=_z=>7deqAc!Q zc}g_lJOiCN?Ok`_5|1}(?+DGip$=;wq=+z>eGN=bAiy1={ZVj~S97t;3t~Jru9x|v z@(EfDU7E+8SSng*Sar$^(56pukF>JA-3my6y|c5>O9ln+-OBj@JO%sE+8@7g3&b#8 zIt$ui*(Ozk@w}X3uHDxcf;l<-@z214A<2tcf()S2?6I^pAIE@>UHtts z0cZEkErW-d?9sX4Q?R;jDZ4D_78F!=JGXyTT&teA>76;a3H+AcJAFDjwM261X=FD@p)Ap%JX!^94I^njKoA5DIjMG z6mPjh**{PH?SbcdA-hYPz&Ue3or&gy-vFjA8++K8fz#;+KVCrRC-BhS#GJ~y)BqI> z7%D<%8IH;-H+WS}V(_7#U;vgvcrBHagIs%~A6RWzH61rmp2iqvrNoXwu;nK6M8Nv% z-xP)2?9fpW4 zB)_7VantesFIZn|GWPF$^FAjhzA+J7!|Bbo)W{a$wz(oGm4EmexK+(fH5}Q2ae4n9 zFh8DkWnw>Uof*ws*tq~!@zHm^(#Lob;B#SPW8t+_K0v!LTw$)@I%*p#JD5j6a4A@e z)=-# z&(bZGZr0Ke19dnzJ4U8Xu$wTa{pk`$9%%suvCD-NoJ`G4Y2ta(RADXt`Fr=XO&M*C z2{tQ~i3CO;;9!aQE67r}2{s2ndsj@~2&E-LtxEgTynE0L+wuySDNc49U@KcG=47;N z5Gy#>z$MI2Pd3}*=?(Kajyu>F1gktMggXLpeVmFrGnq>|FE*wlz|OiVYCnXkJZSUR zUeFSNuT%))&+r!&1@FQbeD6 zW_T~+%sA&x?aSh|p-_Q09%aLH)NJo1Xuo+8gi#`hodxh;D6ef3b?NLJqy6S{U|C_W zy~uhFm}j9l8vn;XK0t3>{YS8&u1xSG5Iw1b{YAiu#Pu-ZbShV*Iwjr8@U4M>>jzIK zhJNF2mQQD^3R3fN&XW_%c>Q@R#AI|`;sj*PXx36KBrttWdw)U(%;nbEpOs4J1Qd&)AQF%MJPaI63iAf#bF$>wc6dY(h>>9$}|L20z>CDY)%L!M4|g99mft_U+Ey$`GgG2%Iu5rd33z?@=g1cR6ef<=h!XjYft z_1ht<&&i;lEzw8&{{gSevkTTB27_jnT4>sIUw-1^vZ`n!Bfui?@dM+2I`Fj}=yXwj z=a_C4rH7dj7q`Kz5oo{gsQ$0u(5?8ny!6uKiBgQei!3u?pG&6*Kv%44pLv zSgnVr&eDEi1shsZRBE0sqC3?d?uJ3mrqk>JXVC#yzX=wX3^v)bw&pOc$6vd%(%*j$ zhH4P7Ob?A~^~cQCzMrDKKE@yh#FS)487YfBZ))!!x-no1vJZsNmy>O=mv4n^1_4?7 zF}$XSdBM%|BiXZSY?8nlg9-S6(&MyC1>{A=j9wzwK7Dw&|=fQlmL;@#ca z?}MnbSiDP)Z6;w87s@gK7`YY3u*dhxJ@Tv=46;wNIzmB!pVl>**-ZA>4OC*ydadbC!neX(>FJ*>*`+~{1tO#QVdpz;F)eF;xfo7R`9Hd2GOG-sQ&Bs zSzOw)wj$|hE&wjZx@FD%JcK-Ahu^rwHWvr6BC9r*!z5-%> z!FEA|Cx=}Q#s=ug2fKc&`C$H&sTjAgMF5OpT|f5#oVK@aH$n!{pDRnnELyIu$jhmw zl98PB2_reQ-~ zEGvLlivYDyxpK?yYG-A@Wb->uYHv2fv=90(!I^K}v_*T0fc9?eP+Ny=<3a#tU~anV z3Yi#erZVq*fSArPk zi<5yovkHHqrMNMX2^$l?QKRTux zMA>`qw`sLE*)Yrv?9q*@<0AviF}i1fDdtO87lv~Nys;O70Pom&qah`>;*AGWqSVAX zV|d>&Fbg+jr-+&P?p3HR)||gdyOpG=hG+3*K{!G5R~$$X=!oaui*LWk`~WULzTN^s zM>F7p#1t)K*vx@feta0_+R+mQWli?OG=24f^s+$j8isRFb{B53#TuavGn|0-Hg}Lp z5(}@*H0uXhnD#)%_`3GM^qA=o_OPS4@r&hMeH?S~81zjx>-bAk#R>WbC|qwmNF^7S zO$Px(oZP5g2Ex0tA+>i+hE`Y+_1+uT@6T8)*Ro38C}GY^m)*NXfEQHjYRY(SrVOrq z)jxIo)2HjTcRXRTDm#Og)gb%0MJ$MD{GX3}<6fxKfpk1CsOmDz#Ma`S&MxLWP4^5$ zfT@*0(@~dltie3$-wFfW$vfVJF`XWWngy%1W-@Z)piW8-n%RBmVEQV(rO9GB&21{e zS07(tf*t(n!#4*5-lXj=M%>D(VXMmrF@|qF7Q?_eResko;)YgGMs1fzpa7yK9H zhz*NX`VLUeo&cl2fQ~-Tr5(Bmm=__O=LNP+U^b8{R3^(NhMZ3FSX?YbFG$C04=ykZ z&(t1HX$xaj6{)gcUY!>W_+z6nNGPun&_*==WL0jEITooOlqW5%5rFO-5YtTnt2z_SK` z7G%i223-3BSWBw8QHF+Wb-@{o<5R|YfymMiZf(q3Pvm)$&Gh64kAeYBTupbs3<^T{ zx<-c|bHoh_n(_w^j;Q1G&VhhM5YvSd1*%tU-abs&bDS`+%vS}KT{4)A6v+zL9{QtR znADwVgM}v-@CMa?7Hpam$(S~eK(HjAtTvw;A zA61z6IUtoP^d2jar(ytrbnRzLre*N2zj;WM76|Sr$fj?3%v@F{XI!rTk+3H7wMV+T z*&^~h^wv74#F<}fHWrqtI$(8bp9h5$)If~$Jj%bOWPMYWcm3%P9*SiuZ!yNjM#h38 z&d4*e+Rwz`D+x7Y?i58&GVpBe8*18p{R~JcXa31uU_fk~Na3mUjgGN~BDSRom0zdo z~u$UtQqnKSlfCFssR7KtJ#f~7TvmZVT z-u>Bw;Mcwj7QrN<`% z#^?#!_H#v9geV*2PW1G_ue{m2+9p)8w*L87Pspymm(u8C9lT1AK7vvn4i@EHF);X1 zoCvQ9a8Hk|@-Sqa@f@9Q;R!}T0{`mGy8oB7_kN4>Jky3}hBm+eL)B034x$T?kYcAePHe|^VrT8dNo*%xJBbsQIB}eO@p0I=%T<?yke}!lGTu=6a zp%xU>#f7vo!CFCeAU7yk{h3ESA2Hm2k`^F3O#Sog-xIbeQl3+ky8Oc%P-e;&-tK?v9hXOYkD&)CcCB(}Far=7*fbpPZ9As&+Zh?_N zJ6#%1M>8c_3rc2u=BqQ#2KmL$Z@u;$Oyv%++ITh(V4}-*(%)1DZ9laz;LVjC0${EH zUJ>g3mSduW|MkJInIOu;8QmaO2>&xVo8IWMz3?Sy%b;x#5GR6B5G+q=PoJ0Zi(iHO zm;0VOlS&`@i4i<<;;?#+6%IZ0gYSaxr*|KFW@Zu?uzOdPDC$2%41Pe-0n1s)B)t~d zd|E{Ap}z5k1<_yoiAZo>9LNrAc;lOpd3B9B%&O?~X`PHSlS|-Q>qu08By480$O7pg z7<(9s_H9>-SS}hH&Q5k2`d~p7I~Ooh(_?k}Kw*~_5hko6?**|A0%Nuu`D~!kn112)n+qyCUFAQQGZK%J#Rc?B+>zT2@ENF&a zwSgKz#}bZoH~;yo3~4-9D^TA_HgiG%D=T8HE(qeCN5JgE&aMk(Ma7-b4eiVknefF0kI$2OCgz|!LalNu@+N7 zfL@Udn8Yz#JRNhOm8 zZ{vJ+g8G;Zdjh~35b&r`ziRM0TREM~*d>4fH{B1!iU>G;+9KMP6LN&%6U?^^89Bh6syJ!@lwD64%eN%kSYL=ONhaTOU5dXifod{xYPYiCvd!Uw+=({L20 zk`p;~UVa+>NHuc-2xlP2I>2f`f$!fnHvpNqpE~Ln4<}&*X4xQE1ptfqK(^lsL{M}b zr@(d~SY%SuG`2jzWCVIReL62HOANbzsML#RsnNlt=2_Vq2*K;$Xyc0q)^%=`7>t*uG8C>pHy+AWaI%1om7gE<_KRb!mNE6K zq#?As{j>+5yFeMHQMWD8-52Jzo4Kei5OCPG-?uT`C~Q{0+mhr&ja}tyC&$4 zXb|8$0u~CQ;nk6PU^k*17Le^b1Q?ifsVdy3xaIHcgBh#sDg8OqE2 z{&tcn3V+#Tl^FC%^C7L3|KIyJN}=GBh~=bA&N z@`|w0Uk(w@3mZtOcA7A-mLCt9d5Hz|_fStqf!S7PY-2hYP#^7KoqE(`t|QZ-*1h`O z28cuX@gv55i-yJH&?x782 zfbq0)I%yz>ue;HzuU{CIo8$+Z`aW|cW85AImTK;2AFN&)yjYk~7ZDm@No7U>1@&Ob zxre+5Sb4zv&-RH@9Ba?qgvvRU&gy0Bq~5*V9RssDn&Ux`qX5jm+s?3X)=qp6mQH4R zBJI^dnz|X(fw`1__$C+ZgcY~RN zSR84g>dDz`WEGcE)wioT2f&kFwm}!|J}Kja%sm0!vMOph8zk2QoE0IwhquJ3?sso1 z&xS&009S8GiLHXP>AHB~+hPaz37B7!fqRQ?`{)^C6O;~6%s4&r$!+P&R@tP(kHKgE zI2u;bvSvcVrq_~&^=d6aY^Ux``dQ#`zW9?aW0c~a3gI0I2;*ADEG8D>;LM!W zpLMnN*6%r~Nsx}o8dR=J(B9*r%Mv>+=1F&^*qT`QwVpokLpmR112d;rRNl;V=J32+ ze+9^4DqBz=sQ1NSnfn&cfB{p!?43tIrs3V2SddI<^$0Ua^{fhB_F@%R`pS>!7#*8K z>RW;OrO#p5gBe5SP7T*`n64z5r((7LG3Y9O`6dX~2G>!urjLgnkXL*xpy0i)LA?>3 z<1y;TwP5qrY1$jgt7I_(tcJIk^0CVy-~zVfG8Q&dB+1q-)^LbmE_B~_!E_au*PNdU z4ph>Yz?80Nzn(%d2EJPCAc9ITT$xt`(l_!jjfCrK(V$)&V) zOA$mns3V8VV^Ic&)kaS?L#fYL?o3&L0x;K^p0xAa7glr%Ll4(4g?KPqj2ARF0d@xT z-$AE+ZEUiRo$OfU8w!PaA7LEHAa{c1`}aP>fx%)X7_$b*0%ade8~Eg2CU!t~Q}{x5 zRM!5zre%yXeCf$*aC-n)kZB9t!QiPMlY^{%?H^Ws8AA0Z&=P-Wz+6_GUS~#xjk9VL zdxFiQzN%{S4SxTAm{@2)oh>vkd3eKz9$+S|F_YMSf%dEvR~%#)Gb*ILZgal^Hq0%u z4>;!t)G@~KSuD*U5KA&|z@lB%{O)b`5?J1Q3M@NBJ%EreKLLh6O1;e_V{jkQ`o~sk ziTi}f%hcG=?k31DfDsO@ zvxxQ6UqOz5*vf&`*1UN7t1~k=j{y|WYk^MD)w3TD{_VE!7+ZZ)p;mx88apokju~*g z+}N0YJb9t8qfMnMj5)>zCNQuQ;af5jZC&znuq*`aRtHOfYlsD@Km5`S0rW7f0I!)0 zYPZXHvzrCWJ_bxPx0l%sQ!S=pmi<(nh2gEMjE}ygYriDIQR>oJkYneOoTMMabZHoD zz|=D4%VYhLnXYRta=kyacfU!8s6SnW@Y2Van(p?lvW&Q`Bcrc>2_xqenCtZ)g99TX zwuT^irJ_7AhAgE%^8!TsS_FOf-q)_*&g>at!vGisj)CDFt{P|t4SaaJx1c2gTI_qz zEc={-glcmc^0O%c+Tq6yJah{be;*xD+qLfVlbh; zm{K@c2%UjBz*6ImtXet)IL4%*`wqSNO>ib`6iA?c>pAtxk1(Pa4wr&mXrjBQfM@{D z*Ms$d%xS^k=^%mnPlqis?u939ES}(Mn47 zn~g4=Z1i2PALFYU&f7nO1~4b-b)8me6Gipzrj$fj=oTP3gk5bIq;o(!28JAvz(mKn z%Pbai0WZubmyLq)6%|0QZ16OcdTdkGkW4@Ee~mzj&)*(+fXNSVO$Hh(W0p95F85M4 z>ztc;%PDFF%2;qIgC6+1()~8@_fPuThSE*{kUq9iM>`m^-+BtHtk|A3#gou-w$Q$s zf6*Tr5GTUmuYCimUQy(-VdfPg{HmKHA-iiL^+ePkz5E$oZXac!)LQ|N0Q09cHqy5* zaSd8apf7Vfo;#H?y?`?61z=o7n+dF?)Kj+w2{7;df)3M4$8q-NW%?Uo{K>6Frn7}RbA>Rm9es3@Y-^+c zfF%*U?z%1#u2$VZZBRH9;O(bHrhV?ed17PZ2F~yX)zn(RW&uzz?!eLQq9*o6px(v& z0Y3e1%OQwE8EKb#leqxFU!S_K*4wyTg%JbdUSbgPhQVe)0*}8b2HGnRud3fh2vE;5 zf}t)mgZ0F1Q|8)+Kr58<r2`rpP*(DO zlJ5Rc{n46%u3WY;O=dw1ct`9!IPk(Fz4h_D&)kTZI%C8@_JT6U>CRSOxThy|`e5QH z^OL-BQ`Z~a8KZhpR`v?d|oKu>yf#;%s+CdTH^jrv?8Fn13 zALQFT3Z6M(vt=@xzWsl>>k(faFpS6k^xK;ufa|xve48o6Coo2a;GW^mri_H%?ho!M zsS;zLhzXsV#-7YTSJNe~p~l=X#?1I!%(esD5A=p!zy5)%y80ZKA?{pmL zs~Gl+RmBk(*biALQR^*Pp%y5a^lx=p&CzB^hT$wde4eePDX-~`pXY54tw9IaLmcTI z@a93Vpr+%z3RQu6ARp9=sfNi=xTHm61SP*rMvUpX^>}c48lX>xn3Iz)-g*h*0tjH* zjGu^~gjk+_`>7L*P@2Bb;qqmSfb$NwMg2|g`VTSMdyW*{XnOZn*#%tPe1>H>Y%;0u zKry(JcJ4W28jN-is;?KNh59i`{_^E-$ zhBKiuo4^`Cz?k~t>RC3+G0=Jd7+1cKO5Ucv`jpFD=lT+BS=*dSq0TH%0bT4-zdH^k zn5#Yp^2wN6xCqG~LsWwj(`H>_d3qG|49;~`j0Zn`1d6*R zer84tCl^>qz_rK0N=5hS8BT=8buD?kV;3y+OWhd9p%Gq}ueX}n4HSW>n1Jv$^04^T=XWz+^?&3E7J-w-%K$je+wZI>71h_(EiiXE3tP;mfzzc%4qD>c6{I zCj-mVyZRCtk;q9VdN`U;~Vk3v@1p1)8%!BX_p44GQShf4<|9BM_6ICFdaBVA^lOr|R2%;?~uZ z=>57Y90i+83uy%z=`*k19*G?*f+i}}&y6-E4-a|i=4c=KzTE>RV3Mkjqh}-(9oXzh zY&EtVE?wnyO|L&7CKp%Qvar8H>I%cKw&}z0WXVng*)fUG)N>7IH^esCr6ZNOt+Q|* z8=|O}Zp>z;Tz+Usb`&1Lm;)C?G>ZV=kEWQo62b0MoGFV=K(_&5pt$K~FNB@}Gu%L! zV=%m}U^b852NFTehnc@UU0}T+;QCj=xaPX$z0XJvplq;ocu9RlrEalj?^PDJmCAPT+}i24pJVPaJcSYS`LFPbQ*JO|-8tUMS0|lJ zo9fWw6<*uGVsj<*%eOXwXEQ<1Ga?nBM3CUf=^OL{*t!yqgMak+OpBfCYzYJlVXg1@ zfz7%Pltx)PbvPG8t-QBPGYIEFg*mK#K=&kQC#sg!9~+Wo!!qkjpcB5GOVP_I%1-ty z9bn*&efS*sS`^!Lxvc{{eId*8;ZH*Pp#t>js}CLmw=fYHfmJ#JP?cnf`Q%CFo$hkw z>d(P7t^4zmeVY>e)omq7hU0C;*`j4>N5<vzDZwQ!8TrP0^mPGIqmtti|PtS_l z=}(W}h-_}5b9Mf4(UC=9mGNUUQMxrboLQ$~8ZTr-fjTZY4iuZny1(d%3W7MOYv+Ic z=C>FzJ%IF+^xOhy;}jVP=;PfEm;lA-)irV^4$vtk2*AW=UaYd63661}ytt9G`WUgs z_v+KW@Kd_>Qj=vQITMObXlk5Id=uA5j}7%iA8Ba(;901;aJdY|i~WLGkr$Z!#_!vq z2;O}Rat*X{dTdTi8KoIILAqH{>`rEVz*3F&6KoZMq0`lJM9>nXZ&KDYgbBp8j)1-Z z_dE@r~ln1EAdW z29Mjo3U@_k1PzVFT!;YZ^8-__V+s9>tt$h><_Xqk!;Qw=$0pBt%^rf5CF)IN!JfHdo%aG5xoUN zJqXAFC4xSA5R6?^XC^eZyfl!3-RCNyGmakhbDVphB7IVcH>3Vd^`{c<%E$ul(LhmJnJ_@Ch|AB@-Yo<0mv0tz z_nVM9L_x;ZT4?7E72fcK1GbN5Iu}^^{{UA(#v*n5~}`-Ik{wk3U|bzKR&j`vwrRX=nI! z?2m^xV=!oCnAvHW_imGw0Tno%H5tYr_mDPrYIk)d^B@C_tYY<(Q;Ln7}*&xiY8YREj}sJgZ|AZBVE`qJJVX(SyEEEdB%L`ob zZuM@;Ny9SHn3a-KH~i{%dDTmx0P}oZwTY<*EV1ht;2pd@wSb+1dm3O)r8ld`S2IYv z4;fpaOn1kyi0u26ce^!W~LWKI}N)qodI)rKGqlS!~a`axNM3~%@I-2T_ zq1W!@d;pfPdbZM5{7ih8u0Gi8Z#?f``0CF-{M~1d$d2Hb?=sW{(F)9vuivd(4RmHr zC=>ZhdAvTr^IVAWFW^QO*vo&Qvkgo`o7DNu0s$B( zz~lqQ5>MBj(!Hr1rj=_qE$}qVzfBOpXf}Y7L2SVWw5u@A4vlY#3YQJ3oEMM@8dT3l zRli&O{>|#0`48`a*&%zpemCR<$h*+)6qE4XTh$vH+w=_U3K$0Uy!WN}R2iP!7P;pd62DU>5#P#%A=H7i2a&jeYKYkdi-)iHOy4c!g3R#Y>7BGS9 zov$|a)XPQhY_}*_NtwCQ1&MskHX3caTRbTLf&Py0zqY`wn z2ml>4`q99VkQcsU(p3!OWOxR6I-|lG2mD+8dfok^(`QYyQ{W68kGjql4vdJnk<)Yx zbo~*RU+!8$+#Hkr&F73=A{tIR>^aV98;cjQAx<&muMrT?!RABdh*1$)1 z^@0b0dex&Bpp+a116D!(O!$J)TJV$VuR@h?-49)tVFMGRVagr8%;IA25p+V-OgPjt zW2>R(yT-tom(Kkr`Ubs}@bW*H4${Z|AYhVml9`?!>z_Wt!*r81`9gP_!PNgsEl>bo z^$>0c3z_=@lY3v#HDOTgj*9awn6|!gb6Q1ONNo4svnhhI%sLO>`O6LWVFR_E@ekueFd+6rLi5l*+O4NgZ}t+FatSEBNH=r zo~{DI)i={T>Ulczum1kkU%>Y9V>{ilRsBhtGhl9B{}$)?))TBefO+XxDmoiW_G#V& zMzteGWCM$E=-SV~nJ72n6&g#%Z!{UYdhQ94uP~Qrm9w5z}h?=Np>n&f<9@H%oCcczVZ%9sX!fvajptqEZspWsch7;+&D4Q*U z|A%n;d%?Tjd^pW}jQ24*o6engybdsIALPD!Pf819HUX!3+W?}rM(D>ykY3_j4=|^IIM7gw zj>D^ux0YahS~f)#IHA1u#J}DC4TnxL=CSTC5i&p6*W2Xc z(q4S372H5m#+jbVVS55owtHR7qniT`i^+erQHD+Xy(B0bruJ>IQ^Z)o3X>cu75*LS zPCf2>?V2_dcOH zq#i)(v-gA-I?z^OQ!lj&ofCh3_^1B#O#&z!lv+~6X%y(WIPEsQpgLHAhRsSmZR8}h zeNVB%fV@{8q@4l3_HEi;zZYz@2dwPv@3PZ2G@fGC<$~yV-ZX+i2Ii7Zvz4#vYaPw1 zE&bQ09^7J*2zWHWgab<#s+E-}G(KwrRt4a0DnyIdLvd-EBv zs8fa1d1C+7qzMZnz+BLC8H$4r%o_j6l^>YDftzFxu4=vAUBD#*M?{356A6Bjr@j&W zGT`c*OyW@1ZCQKb8L@-=4po95^>a>iXAkkc1OrS)p8&V1v%Av3#P6XTft;>cK+zd?e|ap@orJK=xUZ#9a+}sOwi;p+gc{{oXTk5Wk>_;QXNZRI!o-v z7Ew|;2X5;QsxM-Ed|0L)``)wmbEM6CU`PI6SvKBi-VSeKg|Pww?N`P#*bi(XA1r2`5r`WC>q;x*whqoPh>M=#lD`&+4yg8Kp_11e^ z7>1Xh&^=pw=rC-YWhG};mORY3e)ypJJO(tuGDFY>qDu;@3+fBhb0>KQ^>H|t?Z`xc zKmD9`{dO}1cLQy6M(XePkTwu-`FlFqu3E5D#Oyf1$n{LtQ0qGJ+XepG#rJ-`=cfHMX>zB+ShZUIem1FIik zrtyrdBw*^(|7V=l+>jc$LJwxIFgLBUrT_ZdZ$T*?Dg@^&7#bCkXj{XW9RuK%yXjD` z&N3F5xw@CR1bEh{a3bm}zIB#AKX#`s!7><23prrMWR#U@uP28M=5U)X252^BF+e|> z+L%nspwMD4K|+m*4aKwf5C)zwu85XKo-|kIO9pfxOS@Sg9|Tk3sB97*dST5N?r-3J z4s*fbp{nE1tel=D9n3$_)sS51f~I}TTcKdTD;Oq2nJ$je8NE!o_2SL8juk&>-Vv+% z1s@hXNjVOZjs&Vfo;;@SlJ5t1&hff{t^jsD2gnR+ssdx>q?jVkLga?;_nXtnHdugZ zkj2587gR=Fzs+Ne^1_14Qo=C&;4v`Xd#~LLR-LNT20EbLCGez%Y&!-{Vz^Mxn)j7$ znGk;Y1K`X+Afi&_joc}N6o^Stb4<=aXzc|lT&Uobh*8f(T1&%-40t4+tm~2&H8T$n zG6Ogb^9tCh?wRZ=NPvskd)f`uuB$&3JNTq}PP_I?wPAki`6bc!y{8kEPL475>lBT} z@%GQ&c^-ldw(Y=7bu8p$$KF(#zC6lW)ZNNNUShrt9D>}E+@i#0ObhPWWAaP?Q}4EoKlHeeniey4#x^beq(U6lsyFLAvY%hMNN|g2MLd<4p$C$yM1r3K*}GQ~#lT!LFt8K> zT~9dy>Vc)KzP%4_YDXD6PgZj-Gu&I3YC2chG{Hmz%uCL0h~<{ap%SrxtM`qv!&jlQ zujSKoGp!SJCDV|vYt&n^tRdi)+h4w;F4ZQ3bM$+>jdfU*Us9PB2c`3sCuJi;na@)K zu|6U_V*yYKec!#m1F|y~Y^N8DrNLMO^xAp4A4mi-HAX=#4Fy#>kOC$m5DwZe8w}V1 zHbLr>(Ef>?oZwbo`M#(6qYM2?RDZ%2GbgYX%F_djBESn6?Z&i%MyDmf9>R$wxvhb0 zu>$oBix$qbW`l|W6K0|-Fen!hfWbu+~2=9d<#N7O{Ia;5cG?P2&=^Zc0zK=c3k#y>zD zcX{(d>ROnlt*#;UnB-#FLAd&1#6C{LzyMPoh`b~+OBW8!-MwDd3%B>a^au4D=(8nF z>{$#e9R-B1>lkO#3qzpJ?6`S|*3*A}`Y}kWOT80sAHL{=QPl3;oIa}~h;s-sulk$R zrw&6S{o0G%&0OH{3>d&X$!O-j<2Fkdx0I*QCGXzHXazXISO9Sol{&n`bcK`G;qnur z8o@KHY@P3Z1uVI^3;gteJ0p{!X6M?d0&5R4hetA980`?Qr*$Vj7GkB422j73?7(sG zliP(AZ~QuO;o8#}09hlB&7^47>3=+X>z5(k|26Yx7zETFE6XilA#)W#EYDV7!(7_g zjuTsS)RCb7eCiJ@&;6_!Tat}*C6E>tRZ#`GnIBC5jfpieloL#p0r-HSLE(Z7&=WC@ zbRG+Y-eFSf;fkn{5RL2^K!5L>88D?3EP%IlI(U`T)O1&J zB5PCUK}fHw0HbnHUR;?@X=XZ*!~|>0mH~J$h_fg$EKE8B75L?Jb?=j190}2XK?wH%491%v>Kp zM~s3dw?BKlpdCtc@bTTplb~c)f&olfCwqf>q?*o0*~E!6zpngB#>}bQPO#a&LFNO{ zPw&tUY%qL4N)=dFcAbneIl5T$=}%?&-|?2U7ItOx}llW2NZl| zJ2*IW|VWi7{kc2iWI!Z%PFRirA!?da-6YNBwz# z4lj?N1s6E_uK${8H}I$1ei+P^4H=u_*$fQ?iT3f$%}{vKTw~LIM!kGDjF)fXz9v_x z>|kCy5M(K6kpUBfR|$`1b?GF?D>iM*nC#0~8vCKbw4vZ5DSxMm06QCQx z%g3nincrxIz9QpZ-T`?x0C=no)Um-ev~})WfH(~*p}UWOGC>g_0na@MVyXZoyl(+* zJOntx=o!#PV+>^xRJ+0YVj=f{1ZhzsbrH&d?L}~oIg-qNuu>tGkADrhKQHFW?$^L{ zn{MDG&YhcNTiwy2I0xN82|Gd!C~Fd|_{B$ySf6ySi4jf#3G~F&H}(u;1GJDBb9!5V#o?+$yT@q{uU!(0bG>8z|hrw-Ai^)odBmJJ({g zVgW05*s3AI)*8*#Dblzw`LK4++SGJ*PEblb3<{sZPjoQ<{GmkP5xBI*8Q-ypGq zH*!v~xxp38VqF`T@0HD^X{AttLpeV@ID#(aOSBX}n;C+wMz9!Hu_PMP4@l$!>Ko61 z+xjO)*C6}5%D@4pV-ASbTiyni3o_7`5>gtivoJi4cc9=Dy0DH~ILCl`$@1BEI_Ek$ zX<%E#9H$Fxh+sf~LkBE8dUlE7RUhwLS6)~Pk?rq1N>|?q&OWA$v1Q74Hn(|X`M*4IGq+{vav}8K?sz6W`^6JfuMvY;iR(Qcj#x}#;SjkM^x_*CI zfY}MnmE=fDXU^?DwF!Re%q#!Uw*v(@!t@Y~4ygB^IL*nHOT7I7Wr;d+W=;&q0L{_kKz(#ZF~kyW zp}d&|nS;32#Qmd97^XBAf(r)gA`aIl%)a$-tBiF1QxtJP61HqJAvC3_em(8N|U1^V!|G#eKUuqE~H$AS*a3OZe#;eUd8@b;ZP359mri4QDjni9RX5l=F5m6#y!^E6;ABq3Fhg@e zBfexHfNngt2)52PJd&_r_qV$l83XiFOeGx&s1HqW5e1;)AU8Gt-T zFmbNoys%DVf4a!jVX-W0Iu0kDvy#N^0ub1)~Dvtd{75JDB$*b+KSwaiVA?i6fJEq$`R zAfFRHX9jBn(J^|R3^A#P~C^X)EoalP)&5#hEb7zdnS<-=f+AYHo9F3=w_>+=`& z?!G#^?Qvo1VKtmv4rjn}vRbnARWSfIQiH%dO3muQ4N%!e%3|5Wm=VA+(6*>_zWN;i zhGZkAMyxk-I@(%e3Ju+X(zpSZ#;oJj?VvhPagfQ9<6z|i`*UHg>QJ=sIzega;3~04 zpq$i!cGUQ^RAX$wQX8NXIlMZ4)OC=#K9gAno?a@_ zvBqnm2La9&H~|XdYd(5E8+0SiV!$#QjRD)tl1-H}nWBK}rdAQAK6N$EwgJ!u*^w7y zAe<8_C5>%XfSQ7zTj2QMS&$? z6D+ml6weJzfOfwmdVBIjBppx>8U|hY=4ZDwhWGT2%4Xq}BF;szw=e$7qu+txLYY7S zGvULBu76ENv8*fs-L=@qsR1$TwI6)XTdk|0MT`~69_JX;)W~V@a4{B)Uz}$%0nYGb zvt2T%X%|^?B;gP{a^AJyg9r6pen9Nttz074(F)?U%{M$Kq6XvrhNROp5Jq6Da)l)i z)LszDK6%U~x_SbIs4qSS8Af*j^an7w_U||S?inaMvwKI&27_15j&3i+CV1-h1B-3C zZlOglu7GoLe|>@{5~#=ZEG}Tc|FQM)MMu-#o8Tjf>TOeIw}AqW_O560;0$km>X({^ zjP1@Xrpr*q8hGV_3(IrKQ6GGr-s)iQUj_kn70sDjTQ06}Zi9tc>dkEa?7L7Vrq_~d zSzS)%q;^3CR6$8#zX{rr)FmA!3|LpQAWPG0ckmj(dVM`hh>oD|nb`pULzlMI0p8$U zUm4^G6b{;UgJr8fm+?%zDYRL6bRNi|{!Rx4(1lscd;;c9I^MX4`n&frnOU9ftW$t~ z=H9$a%j}_zDV^=n7z?ic-g|a`v;$+vvA2G6)=w929}L!Er?Gnwv>{`32^xb2oE_pd z1blf6FwuM7xVNvVqG9FCW_(iEaPg+++!&Xt3hBWUaSVwc2~!;;v>be@rIybN%fF1dQ&s*E^0`elGyPxtZi=f--$ z6G6Z!P%Y#B1@OfnFklwh?$MRYSOMBcJQ}ztLU`KCKY=pTEu$=BQx|I+7!lDd!k=>q z_CKyqs5dsj*z(eMQe_`T?48GJvjb1gb3@_~SoVBRr)=GDEte#f1aW<{pFUjW56N@3 zRnc{Bw#cU0v8gCWEVP^vXL-wb6df{DFc8c}W`IWE{d-O@yXIuX%gb5EWX}hz?(zBxU9D3ro@^CC_wRC+NRE2Mh@sHWRfMtWrb-&bGmm&Ht}Gfdp7Lc`;S98 zH{d50-Y&f$-510toFTse;^rj~Q)TGWTVK0tq#YXIJzJ&jHf)icW}o%lKhO*keE8_x zF|M!l(Ac_qsBdL|W9*SU+4#ObCNkIGk<09w z3g60NM$ngk{`PkqHu{b$Ihk~ng;oI)bOfGm6s@Rz(Xc}4idX^X?E9I=bjRT6*~t@? zP^v({?jM+dF)pTz;IvDZn_+=s$po9B(^?BEi)wdd+Z(rt++LZhg;tPID&y9;Iw(V2 z&r$Wu1pUwg|M^ZjkVOUPTIzoLK^fo3eTpJRi^pM!@VD#T3p_f=u*UnUH%uHO`z9}Q zg8nIDtF(%0qQS}+Pgd0GA~=%Tmb$LcBpXyT>T{h zQauxEr6>uifo`t)uaDjaKFjC=nL~QsVKRRCE|G`nLje zh~`#~2RLz-ZFlXQo;e1`*D9yWAPqD{#WxwBxg0CLPl(T>bh9ltZAR zN}j$f3XF+tngIKIWQl2givc~wG!Gnn=kcJP?jt-Y(BlrXM5^C&VZ#gXp*gN3rP(LH zT7Bh{(e*W-C^%#BiHEx2K4VSg?VtdZuo?jl@K83}1W@8I7{Cb|;4Dq9>(9h6vV8qA zV{Ec!mUx)(Lqn|I3t~SA5n$E+bQB)NFolWHofj$(TZEo$Eo1px%IGsdi=r5oW=vWG zCnG3@@KKNQI;0+3g&|Eq`O&?vNWOGGhSLR`AAU);*p?vKaDW;SeOC8MUJCU3Zm?tF zg?0Fu(UdGdhkCzM7d;m?GQzz)py;3)A3r}kG{LmnmNZ=Fi$QAjWRz>r*dWScWlXU? zkFjOL*FyJ9(HU{{e9JNz{V1So_lsk2q1DTK+<1o)`7<)n4;2D5d?h<(kLeK0{ zqL_qR7wJmA$N?sp+*}UtiN(BGu~3TrOw4JZhfUTeJFc5mYLBb5iTS<9IYVovCvLMO z)#TeJR$pFkKlJT%gkG;X+?0*czN;3mKcx@iY%FRT$DHmUCS=oqe*m45*qYzJltCub0=eEIS_Z_HXZzZn-^QdL9CXE zYtO&@^=c?KT{P;qu4~j6FJsgEM`j|2u@O)gPVeC{0FMxOb9K5fDgfOz^S7Vgxjjo? z1MMJIEB$34QM-k`a}hLggynxs=Kwp5ffsesM!-^TU)A{}n|njg&`VAG9gwLl;OiXT zvH-T#4)u~djMweTI76Q_GDN=Zo#2AHHpt_qk?ruqY)Fh(0EoK{zxfkh{~QRo@(q#8 z2O(ELvmj2S2XqkxbPj+uWO>{%h4IB#euKe&Nph03P{eSNn;|9sulpoRGJ!kG>RHsJCL2Sp>$)=>-{J3ed|9O~;1gUn&@*+I z$zWjFd*umZP^K4N*g?f3OYQTN!|sG2e?5QM zMY!jPuX;joE!X2rZCW>*pu~T4?~Ob0ZYRj4YXExkoZo@73y^b}%+-z4V1gVI&taLC zk&lQgKZA^A;+{>&$SiAgLMw=#-iG+okDn?z1PSQo(pHz??q|cQyY_S0u=~|xP-5nJ zW@ZTwXB#%4o)tQ=S=0=$`c}kQrWI3-b!UJVV*;_p;y(QuYp{dWyvpe6s?CQAunt&pKsku% zcli#m38p?^Pf#E3;ktRS`jK5`#dL(@^jg9+3+_T37~toqDWq>sF`*kk>J0(&f$&V| zXBdx^6flksF+Bx?c_P=fzm}Jo5?lZG$KP8z38f6w3gU^=K?YKxP02{7r}k}&7>7hm zGgSbcOMTIU7>uQz5vy>9j{ZB(Tspd)6diYiyTB{Sw2Cj~>^a+f_uo9heC0w{1HtA% z4Lc*_1>61;rO-z}z`M-OKsv5xg~tM%6tHow5xlGS=y?V~kY`;=f@YRc$7{D;yG7J8 z2F|aBGx&s;6|k{gDDswgWN2rJxP0g~r>WV*)BEz=B_8$BOK3m_>!108ijG1iSo(l#N683o|A zAAxaK)9w$ZA%+WgDwr19`tqGzN)71pt;0<0z+>ShpMDF<+JUjN5T88{_FrQBe2dsu z^BFtFF`WStq`dzfUJh_FK>r<1&aw7&qCgAIVo?AgSs9`joL-Ibaw)(k_XO9k4a7hz zH``-v40GGC`mbx}ux|Dq*bWSX0b7hBn=LzupoY;J2kERAYc)hy%PE#|h*)@J<62^n z`Uba{9BdCGZtmpoqu!p6OVFw7mOXeHffK@^d)JE1Y94&y=K<06Fsi3l*sQXbKZDvm z+-!d7hb(9dsFYK;v{i!7voB=+@g_#QvAvCXbO6Mv0VX*Qwwn*Ws(rT_5G|X)r-N2Y zCm9LLJg<6y7c5z1viS9MzW3#3CkLB2EIjLwpuf@!tKMLhqyQWI7yGW z$~=70>N7Qjfv+jGhJn}u0Xh?T0(T~J0|;846s2T9J!4S@jXa8{Rd1E%Kw+c{`_8Ff z+|r(eWu)Ir*L%!^;L-E!wk4bW@#8yC1V`H-2Uyr1rrnA2%e8aEoncU?RYgD<0U2oG zA~-kyMlkiq9OfI~$IftJ04%L4Nxi|wv*h=JsqeqJ(-`b*bv@nkgJBTpR9P5rdG9$` z{6ms>|1mI-y2=oyXh(^?!4=cZW)9SVc>87h7G(3{!0SKeF*_YH@@E49($~N~x?2V; z;;E$7%&3gD^2w;wAUFPeX+PjNt|K5jskgAzUyyW^V79gMb_nRR_dB!#6BB@KOTesD zU-Zwg@oEEJeQs;C*Xm)o)XO#5*KXrRKTzA4rJd>J=zsS<1`sHq`~LU{r(X>E=nfvd z5d~(`g-gLHrmBb2Z_Ic*)F+TqV2aTl`h{mkPXvebu>%2ahGhuEe)GY@?%e1qC_Pzy z;9tNLgF=5+%7#m}Stv|DV1`TnkNbbm_!-z)_~dB}CO~6{!KUg5#*RT=+G<~ALoUDe zV{jm=@~ju)%CARza$fu;G-i{4&I3*}lYsNdbM{E}dHBYo+9VsmPejF3nmI{kso>(s zOTUa4HD5$Q_N6nK;|p&>c~GR|vF+WY_2Q5#G;DRR9BJ+cEMlAt#PT88V) zVy-iFGU9{7Jh`(cHEA9)*<@P2`b0(@RNkDf+?w&~T?Y@IEn!ru8-@cRa(KRJkUcjz z`fxoIf%-rVU)pr{gEhFl6o5Zhn<)B?JSJ8~Q5Sol)T|eEnF4tkM>yDIPMpu~*LV~? z%GiZYsQ1yJ0X#IG*J=gnQlhGp@wK~iF<@|(5?**BmeJu>Ak@EX;_{b8_cRRZdzTA_ zj>2ue5{kYw#$NaLn6t&?=uTrAI+gjyM^`dgRlwl(jeBSK9V{GU{{lk&7z_rK_oH@e z4Xfd!C%3=_lbmo5Q=)2C=hX=e{?Dz?a#1^=Wl(c6U9M{vnwRA&2=?3PuZ9|Q?arlk z7Oj8_YG5(|R=)^;cINuwPVhCI9#G>ZGU;3alY;XA=xxE82wyD<)W>cxSg^Com<-II zvn)kG#~WH@B7Hw9X2#S2{Q$7IfH?LcV3U)YuG9G{HcPl3(gS)1BeDscQ#D<`N6%Or z=m-OQkIk8cWuQ0$ob^-a*El<7b%#0+V6ap^8xGMu^4gtT4@MdFg!UZGxTz5;Sz52xYwq7U`CV`4=C6Fzx-6Wn(w}4e%^4-L6+U z(e&!~)AhxQ-}F|Ma9aHtBOaebxqgMcZnK2f*?h4l?A z)^hSalPtP}tTkKp{<<)%DpzkuLjw{M=^EhEC(}h)(35%NAG%>E2d#j%2j+%k`yX#( zegoIOyWxO1)fp5khGNc+nYzIx1h0v817bqAe*Kag7G6aCVwda$J_<^?2*#9|;;ky$ z>EnT5&Hza~GbdXNGW$jNnhN=U3fC(SbvhvdoxS$LcAHvvs;S*+&cFJLl90WQf}M&Q zWamxZM*#B*GZz?G1RJfA0eC*Iwa!ZbVRTu*p*>ImboGjU#a_yWIx@f%MW#@%~G&7aHO z$eEa8=v$19P+Hl00YFrqnyn};{9{tnu}?r*_?GZA3xqBHzFiiBN0~hi|pwz&}q$8(+RRu z0YoXNL5AQl`)Ng=0(9T&&ky8nuxVx$>g|iO!_j6KtnoG{1aO!Ot>ES^TRnIS52Vw8 zD_k?s5WwqqgBe+7J|?2G1UKj>cL-jVU)HdCZ05k#R06R9OQAyzM~al z5Kb?Wvh(Q)V3PkfpuGE!(IvsGHl5_J-1FY!%t^u4SX2=-uYTeD>7y8g8(T$TMFRA$ zdZI8-_QIWF3>BgKQ&%BN&FNDgbjj>oRxdf0V4zWuT?YB;!)w;oivwm0^c3~0(TR+A z4v3M`jRYFt{oG{M7&^Uuif8q*gSkQKyT`|L&K{xj-*^%XU`l@h_)VmImhe1i#A9p> zGUXdgtEA)HNYtm>K85BU8V6E;|t92nu55J8r-k$rFEm!H7s zP!pKCPs=98o0m)hv1Vhg-wh5hCD*gLY;L*{U6mNkaI!#C=6=RZWJbVZql=oxf_+(y zlk`GA$kCWFTnH)fhe&570S8$VfP*b@yB$nDlngTV^)F?sH%fUy!6&yt*3HTw93msM zKN=zvq<&t*QXkgn;xvG`q`3~Z6y0Nb`j7YOYr@Eb$GEhyjP(rjD4PS9+{i!y-qp(w zL2xg@iJl_$mVkN+7)(J!k=^ZA?%{o75>(J6yBYjAD|~b%09-pTr7NOuyHNGq5AI>x zXYfp*Vrz2=V_;xT-xdu66m3%ftrbm9D-rd%IXEod`-S_=e__*Pp7#qD44c_HhAm*9{ZLQ( zi0ox6h@`*9wo+vb-Zs(2J$DkXJjUn=HD-d}1!KvX~b6okKn9 zVFbfv-J#_X$v%1u9c;)tb40V-51Dap_X&-0z=|er>#YuEm+3P<&nGz2LQ2*6apUW$Yz4~olehH*q zGrzD>$$1ZtangyPj-o^wfQCwu;5@&;*OqjkJG9S{P&S$+7A}F^Ul6(}vcaQ1M1(>0 zTot(bo6FI-0mcAeqB9Z#<{_X1TgGf@5)%vm6PC+)W-m9CfXX+(418|TuKv4v^;g&$ z=Hm?T^M}Hc2#WSm&no0AmT{iT31TdPoRGXK(P~SX8F{heqkBIGQRl9KrLuAjeDC22 zMW;R67}5kBnD1bo02QF(b}+{xFAF3Em|eA3zaoPeh!4Ie`o)V4)ARw8(7K=UvQc#w zQU6P>r>!%oJ2OZ<`E{%zS@uqe<5`!7c>ccgu{WNg$p@ohU$9TU3dRoRB9+p!HTw8J zJ@aip3=1n5;H|-=mw(6x2}Fvxa@*TKg2o1NHc#~udx*&=eJEA^xq(So&=lp{?1sV& z@~5Y_KsA#E>CDMNPA`BRi5H9j@t80WXFT7=eSuNXr35gY`{zEnrQrR&zq56gn5yZ9 z7T!Bf`Rst7_n8ORy)pLxz5h2D3A`m|mswJA3A`vB!kk?)u|S7GyjK98uCQ(hefdZR zHO=+T*X?DpxvrrkeVez!%vg+8daVn~p?qPDrn)r*plp7(=#@ zx9V?uC^vUJ>fs!59$hvNvmXEuR4%?#Zr zXK(;w@#4d10myvdF1YhD6gLRi+oci2)p+v<4PVrFIB|hnZwaYDIcY%XRwPw0`n#fLj%xre|q@>c%2E%V#*9K z&8C}DSoxH{P(uQRg(33MkXg+wz|X|ES33BI_%~F4I0Xi9qxK@635jX{Y>7h7sgMY)U!JmGyTgKz~cV< zncx2G6cl^Y_1E_x>p&_N2bm+qtK>}$;*;jl1440UsK3>#Cp#=mS06cjHbe`K?_||1g88^BGshTa4Q1# zl9s60T;2ovg#kRgzYjbjF%~>bZ;c2|v`-r8>!En*g@)TNHjZr2VNQK^BCiHm3TWb9 zS>p8K8M=zlWX3dT(8P!Vwy1gVum^wZw6ynn0^+>eLd%^782p_xtXII|p*4sToB#Uh zrXBzOGN=}D1pMmDV5S3(7c>XP5c6iGS@&yJ-gIM`=7tQ^1smm&=E;wLpszbsdJ=8m z(Gy_FppGxz2wl!UyCckkGck>(n?HfzsBBWC*6hE5XM)zyMZJrli0^zN|M)6i!&6)~{e!Xl^Daz^q`_ zbe;?;6c)kr_mnTvVqH%g;E_R78+dwSg*Z+-Lpq%Q=|9T7*gDEIO93S?BjK(wT?3pj5Ul`AN7FQt3GS90<66iNgJ2Pg;>rS*dti_ZVq>tl90VYDj{J6V3 z>A4XPzIWxqk}z`>Q!`ywh*Ui{Zi}#IGwuL$Im5${#Mrndfh$i;2xWki01#ppCL(+{~_1sG8$_bOuwBqk{TX&1{}2`{lTS~KjVDrh8- zS?4hIZJTs*JR9ewe3}fhKlA9XFlf+s{vcqMsjkt=%I&8++o#noGe-q_;u#3~L}1Ya zSNKSfXGH+wv-f(SJLkbj-D)ko*^?r9A3Qg1QagU5-2R- zrSwlk50f0wa&M^^`0C9fG|mbGJ*RxC-7zXH8%v$A$xYo*(BDNr-Tw_(x8sv%sJ{dT zuu$E4IUl@yMp(da{updn#(k=EZ30a$()HQXa+&vd27O)`0tPU*uDtw2uy$+b+h1d|8GO>?OS;GJ;*QKzIkD09SR2p;=FNVm}a&Iz-wB? z!Hs0O?(_e_IbfAZS1Q6bz=Tui;i zmS=$!aB)-(Z)g3-shx7hDghTq%i9~H?KbEpkiK234PYYNeNG0U{SOz=3zh8!9INOw;d=3%vi+r*TQV&lz^#e z_6uovYueUx5^8UB36S(1w&3*gy~A1+{%(%(fDcfV=fTC@uDA z>04VaEC$GHIrj`bzZS^whOpVnq9O3$d3qdRG+3sAk3Z}JpX0^-J8tebR!9y@hZ%;z=!tPq zkrixb6-@Dd1r!0!kB=Z(_r4F#6M*UwA$c{EERy2@IoJM8DDi*(;HT^!s0Bp^a4QKc z)X|}7qH*_aNZyX-D#3=l%Ry@y)C*EEE<54m9zLmE$%Bk`f$_4H@<9W{gBQ4YcIi1D zQNdXV=pbZDa$sMSZSk=HhyvZZ*vMW0Gw-1Q1v57xK4exdSR62fFK`#rDKZGR-ZZ4^ zG?^88yYhyDF75RfXWAKBPU@@ozyJ=Gs}E*O)`caK-PD8TmB)8)!4!wV3v2AkCu*VI zdyTu2OOej>W1y`d;J^_ny~RyvO9i|6WCcUgOns$ku3Zahw4IGijS7XPBAjjvQJYY% zGV;?sz9yls(@%k*^y6H_x8Z#7%WzmdpgXUCErOgJADEBgKuoCnzh+(V1-&Wj{`vBoXPK- zSEV1huYBP*=qbpZ5*9lIr_m7yrhHx$vWU?dT-l$Ckn5LsDz4ZUTr$^6djoT+4#c$c z-oVf}-OPe^K-V@6nZfszr@Z^WfC~J@xoCg=zVhjGXuQmozG+O5v-s%e(mj^QxTy99 zCk|JD=pvRDwgFCvbJ^+S69sVPd@Xo{llwytYW3C!Z$`B;r8!PmcW#A4j)Nx9y%eE* zsdc(&s+?|{buAw%cYNLPCFL!Lu#Ixw4HIBYH;!1=uKW@x=u}d324}m_k&&tVe8%s>XK~Zl^N3ygT3T$-_7gIhsPh47K@|PLI~ch{Nd5Nop~Yz0gQ6CVIF z*ev-2yt{oX$FiM=F%fOboyH8Q$G&IyL#G3CP#tN;@g8{kEnwV1`8 zTy6{HSCvjE^;|GL2FQGi_Jhvx{E~$|ZZnH;5698o#b%4la$Ou{z1s~)3Ifx(nyQ##LE7VQcM_ennKwMILWg{@Sd zkQ2jU9!mkcaUN_#92qY9ziI?)1qXMQSAhqcV!qNOlauhpit%hk$Bt!x*`f-7s$ zxks0p6RP9sU!aao7dR0CIj=U4K}%zW2F8Sl(>C0FPN?AbUIiOwu5Jq(7fY99AAki5 z+Z06LN6+O~M2_?DJUiUklT(E5$_5i~k5@CyJdHufs7($L2V_@h+xjGhgKZC*c{yB< z3MTpfUNU!%3Z+nx0WqLF)9&ViO+8#&F4WInfIO7DY`|lyM$@jI1tkuY(&)^oV(!Fn zaNyB1xkCd?M1jt9#!1Ctu2AnVfzAm%N{H|lEALZ(g(-Wju&iW3a>;$Cz(^`MLTz<- z9!K>!z>Z#42bE(e|B}v4)kem(+Xj_+6{)!mFEWNRa;D% zboy8xU#ZmUIq9kR-RgJC%X!KMD*kw5>wmXZ?lr8ZIK;Y4vkT>4zNZ9-8nG&OY zo_PaI>smOm&`_Nrpq=ya1=EMNz#jUL&Z4KA7G}A4fxK-7;q%vY^x13>7~@j}S}R?U zw`1imF$^s*3Obi`0=&CMd5nNIHSC|U1ev_Dr2OYCZ%x2TQau;*`}0$kuE|n{qaa;BPi=iUf3wr1U69G0>jWCpQ@dA&jlSCkld)c?UOnp}3gjSoLS@nWD*l()zJ z`=xi$>d>(u26TkPI+GvtIe)YiqBe7ftRNcH4OBljmk20ZwK& zniu(ESk|NETslUe6M_Nzj}QN0ke-s|P#mmL{#k=r7Z~Vgv?Z+a%z02XXRoX}Xa!nT z0hoZ96QsMP%a3!baXLUHh>ocrmHEJ9fD^RPxN!YtZ#UuqxIO>RA3V3R3@!I87$*=5 z0^N45_@Q_81fu+`kcayJ)YO)2FoRp#!1GBA2e(RVA6J zRU(=x$MaP?7j|-0x=~oU4r926bAIqEurna5`Rc2>Bx}m83uw4`sEyS?DYzapv(#!} z1+QN(iW_3@SX_DvaKom@0!1nR$ldR1%#WRJ=Ugl-P;>%qJ76qOzNkP$c~095Xik96(%Ti> zP--h=264^%pzPBd`4f;C^75XcNwhqvts7gpQ1*OY2pEa>&PL}@6{HI8GNXk(0-iD< zN7^|#deJnI0e-kXp?q9O9A!Rk9)MNko=D({Kx%aa=O?f%ohOqU#yfON?5E#f=ViK< z8F3zXCsl?Axckndi)UO=YDIe#!Y>glN3_8=K%1d)tdYDZ%3p3*eIr_cZiGPqGN+VZ z^_Ur~I8IpBQD_=aK#{+}A!i{kog3o;?ww7LFL-Hej;p_(TS4FH1poLuV7*p7_qH!A zXjnnHJg@*VD1TjNY=Tl99KaXsNiHBfj49pH8Q8+00>L#&%CBui3*2_}Ld9`3R^?d+ z=xHGLu|B4d0F44X#NsZ%QUF-eL&4=-k9*ROLTOt~|kKkKJ4 zWcBZs_@U)cHiCsi(zDSZdm>AsK!XtJ`<7JKuzr2vy~(2$ zacBltaTZzwrz5bH)~CEAGN*^$)9=d4E%SYy3!GL@hC)|VDIch^3G2zt6PCz9i-I4O?>#c}%Uou$kgxdC)g9iVy8=6+azJfuJculnfk!Fa0_ zU?pj*OSHM^nHDDA_2*9U`y5&X{2ul=iNSm;FHm?vgu zBgYsG_5M%W2ebNk6>vHm%y=joOv&!z+|mTd>6T>WE76S3`8{_G3|6iQ=;HVSvDtZ0 zm~Frodt|+q8FK%hPNA`6mi~SCHan4{W|!S~9WB;lWk>XMI(nEW+&5M(qiC`ie1zGr zd~~$}3j5s$35+w3!$BuO%!N%>x#Y66a86=?eW{2qQr@#N(-B4I0_pwj$5WIjyDY9#1$-RZW=wz_kn+As(cE3h z(X&v<%gj(mK;zriw!yIc5&Bcb(U%!pOJHL3d{NTA#W=Unc>wRUo7RF3&i~*9n2GuM zr)MvM3oy4mWJTN;01HjqW6IZMA94fLL}hcbQH$)7vv;xSS@8NPVlnUfGq5R-WRM&b zP(IYGd`D30cA>4PTUf!BUpsIZ9jNb|e|9<~x3|A>K>35DZktmr=Z@ZIfS7>HXxpap zf#-9dzB9CN_ecA%Ot)w7R3L0UVk9cd%oz`L$&%K}#qLDzfwzLLeYY##c^1mI!EFW@ zLgv6fd##+=AkeG)7YX#m6tI?|&b`D%mJGnd47ABDeJE_Qqn56CS4HQS?+PRMVC(6w z7*?|lVaf>8H8*qpoN6X--YVqevxUL=<&UA*n7VQ#^+eXW1uk)Esky}iSqN$@O0}#( Q_Kv#M-yNd)|9}Vn2bOuuKmY&$ diff --git a/ecosystem-tests/node-ts-cjs-auto/sample1.mp3 b/ecosystem-tests/node-ts-cjs-auto/sample1.mp3 index 3606c98f2ebccc4ce0f1979119a68b072e01aa07..1e787cd7cf33203d99fa50b39b232b318d287541 100644 GIT binary patch literal 121671 zcmd4ZS5#A57dZMPgdQM-5JC?DLWfYLN(;SL0|JK75jZpv5H)l{?;WIfkS-`Hy@PZC zQRzhx1<_;o%DMOdjr(+;?|RtTYwV1XHRkxOy|U)qi2+U)47hCk)>c+Je_xpZ019L0 z5O;Y+Nog5LX)N}?tN-`m&!@8f|8))g-2eI8`TKrgGywRD13*DZL(c$ZVP)gs=0yt# ziHJ)|%PAh9&^7Z4m0dgmS~IyNCOB`q^2udw7nc~wn) zQ%hS%ch8e&{X-*TlQS$q9DX5d7|JVmCc3ZRpc)qkmQ$H zC~rAc`zlhA6wLrcQAq=0f#RH!Bjiw0c|t>0RAt7! zqN7Q8ay1>n=Fu<>=F4jVXsc>xYZEmWz{oJAC*4!k!lipPFaBvg6M3CJG;xBAAx^%^ z8({sF;AGc(ZO>KjpMHYX71-1us);>;j*-4hTKQAwNL26RQPHQgn&P*O!)o1qX(4YwQ{msm>fwAFk>BmtY86dCNon+%IoBEJnVfYzWcU||P7_(vEcN;#BsHWE3muLGnHXMnLGYkt#mV?tR zRxS3~5X0~7PwqfV4Y5;Z zxgxMip$hfn&pW%6QDVE4abBtBivkMCE$ubOi13kGcPS~1)-?=Iu`sF{%lpRGvfi`w zo??Zry?EAXLWHX4#&e1^UQ8N@+uHk=(|oL_)9wn$G-bm9MDoCIVwQ`ox7=1~7W&K90C}ibjud4zqD-&| zw8E5pBhEocl~3K?-Rfb({5u^v^5-tRH4|Q6M5e!L2ju)^KF*>M`a>5<=h<43m|p0( zdvij8EB1kPIXZ8l|e^NTm{dB;vn89(Na zx8N3^Y(&bC)@5<7W0&NzRNx3f!qfuZY`R_0pc*va-Dz7|;^j1;WGN8qjS^zcM7M=l zE3gLugA6)xre!+@(*>tm`kAuM22EG7YVT;~ zKC<#%9CZeaicxKj)DVfI4=~R**KKkQteK!G6Cgs;m6ZFjzHRqZF0iMHqy%g8bv3d7pPi@ z81LP>BsZv1{5Nu=mT;{@1Ec|37uT#thX#I)ORpQS=%g{o5!Z74L6wn?=J(XEi=v4(hNTz+DC1zzRXN;KKw*&nO1f=qYx)Z=1B6l?Wt~!mEsj2 z{^t4T8c!{5cbz}6Y*jJCSEym4YT90M{~wuD{n^E;xwUIo?esai6gRdpFZjd!3o@(s zq(mip)e(HJURZk{`Ikl9n{MzGoHZtU*4bC*kcZEFY{XdIjuO7Bm2n$_y-g-C3wc47 zC70wbjA9V*@f9cJKdTHcN9=DYRI0sJA!6K~65*_L&uGgW5%A+~L~Km>w?C|m)?8B^ zO=D7Q5*Zwp^YiY<=%)o7p2HTAmSGD8lX2lSMOtx1wUo>tT_;(vhbIQcXGyJ@X%boN zoXU#drXHB3YrmHypBUV5_C;H#f5m`F#;fy(%w7H4Ji-<48id>z5GK*qL41dw%3gcR zF(p4aczlIv%pGL!$TDY`^SN?Nl#3R^D$ADE}T} z!7M88)FW{smS9*%`*}*F`&qAxVXu^s{j#60Afwr?AUFGjoNFV?m&AB!`L5jWUa0m5 zE|=ua4Syows1+v~Vj{jEdpFV{Mi#X(cTs4EpNn#pNe#CAaWfnkCP=GA5Y9@Q+4If` z{`$O&`=-})4)gVSp;zAWZI&51jK#2zq|i48#@0PJG}Xq6qJyl4b#fH52<=pf%ux@zR6SV8L&)+6SFJ*5WH^&Ln7PqhQvRH6!lD&crOa)Gj zHu(kM8a(~W&n(iGaO=!!*23&7i}A8ru%+197K1E9Od443G{#RX`)J2Tu{_kx?vmVr zF&BcBwBjU}!L?Er(&Fq9a<|BkdPRbqt1B#IrF=_@&$h+(g6PQXs%2{>YYg7~oY-@% ztHwG3ehg!falA(L!(npquKv9)zQf}|Q!Xa@i+8S6ahfH8;`teNu}F|=hBhv;(27+g z(+>{9K4iA;@5x)a_;^E1-`P*9eoQD}HQ9|Ktm5LcYyq8ij&iDj9PfdLMrb-$>`uXW zbHAs7WYyJH>+$r?T_b%AA1hQh<~;}5P4lADj4LmllUMO@2DSZlH+yNLe?uFmo;^AI z@?|>v$6rz5R_L$UZ6eT`kUIAe&l}2I!?7a++|0WP;%xLsqeI{MfLnF7WqsZz+DRzR z+*vbT>ExrK3yRn3;@u);sRf^i^928^61Bb+^_rn%XJ=+n%-GH%h5P}eh=z>|dP#0a zhYNxH`(4gqF}1i}Q(nmn`+dM{K9`-#RJ<2Ir(Pnc%^jVpX1p*optu|$9?}KE+63j%4-nI#9 zf+>^%MK^-$H0gcT*8G8b}}m1R$h(WSW{w*OnfhD#w=W=#fS7S^4;a; zxeZH*PmE1I(h#+#s))&Eqx@9-uZ|#ng}h9(3!+;y2bhdsL6Vg-bi?#b=Blj{mT3 zeKbFDEy6a-tx~*m?Vb`OH()davzN-EnHwSWqNAjl8OWSSm5@cHAXZ}yrxND$V4vB4 zPR1}W*LbJZuuznN2(y}Bhb^)Pqw(-LlP(7n%$DZ6qtCwJUyK!8LJHb%8EfG=XV^{QO)L0b3+fq7ex_Xl8j-~K?OaJtIK#^&^RCsJv|yJ3=Wr?aSBSMK6TDX zRcjH%K$$Q1@~kFea$2lnsy?LN6SfEoPo2lz6I>Q%F+{_|IqFxkMEQDto|@~bEV+N& zDY=S&F`0=|JqRj|bzXUv?wTx->@~9F(xw;E1fa86$7zicv{WaeI(P;d ztt+m?gkF@%ZiYgnWM#;GztsK1kb74AY`oK@l(;X(9)-;EGEF8(D^Uo^ITLK{z@EOE zBfmmb$F2u{V=5Y?BzzEk#TK$1q-Bosw6-Y40(d+O3!*gxx6!)777@l|%lSf)r- z5f*BsEE9uf{#zJ?a^pSGxX*vkj0Q224PMNQ9HY|mUgt=nZO$sZQ(tgNuF1>lyG7rA zcULMWzd6u)ZN}L1>x)B^VZahqJhRDXhir`zYvbjJ4Gj|uWItej0v{t-Q+Sm)t{V*A z6FB^s5f4Hwc;_SOP2nIIjiELK9B$q}K!W<(WVb2Ib3d+ci;tRMQ>mJ@aO}~s4=?CF z)Hl}Ein@UNIz#C{vQoq7zx>R{fNM{!EI52}8I9w^&$Q$~+eUZx_ zWR*X8P@N-g{m|swt8B--9vJeeSe~ZH&41s1!?lff=ozR;Wt%Q;5p#3?`S2T5QdK)H zkg&9v?A7PhS0^ma<5nN1yB*SoVPbR_r$UFg;i$06v=nd#-OuUix?Gp!WKE~u#8|(H zS5ss}x@5ig$D^JQQ1Ue?`gjJQq++WaxcQg{MP;rb4Zg24K&U}l9@2nFu1|qX`u!TP z51?oey{IOg#prP4*rP&1ZFe23^e~iA24pFk8|`VU=Rx^+L?y~A?hKG;$-KHV1 zd?s~N0;wPq4eNJCIeQ5>U^n#>zlbm0#|zf=6M~a&J)pYIB){_OV-y~?6@qj?_SqN9 zq}xnIohug^6qtFMdO;=1t9 zILZrZ2uZ3Vkjh%kIb>wJQ9oQ|(NqvPh>j{cE1vN~u_V@mumis&$FKM4JQT2R!L1dL zFsiGjhxC_w5GdHlBViF8d2Bb=)dPJ#jc_#GZ346=KI2YNHh2TA%q^anV5Q>V!-leM zZ-A)^L7ZbWV^jc_Vj%V#>G$sIR@OqxSO$6|+c4Jv${i{~$7qdW$tJW?4CHUK@-l83 z6PLtXJoKt~Ioy8S6TDe}WJ^Prsxe&BeZ=(i1?$MhsvG2;x4>t$lkQTMV(gz*JNmBP zJHx*wx1=tv(0I-3+pbW)-^K8RJK&4CS*UT;;_x(9ree~`s&o$jGm$H$hd#TNRXITc zk{O&fvihA|7m+`;hE$bRZmGe8*?pg6e=#uMPw{Y!jeAYQw+*Y)QWQ-Gh8z;o%VHP_ z0K1q-p#u%}VnY`qZ9HkatP+-#EGj6oH7(6S_$YJA4njg`94^UW4Py|YxP9ctH6r4@ z0gsLGCl8t|vny;)@H5p+Bn-ayWLo;ligIkNim<2nUU<7}rNOOX4)p02%<_@-$waF> z<@or5gyIsnd&M9|M7ySWYAG~PV1;1&>)$A6M&dAuExLc#RJ%RD1b;uBGTu2;+od;R zy1QxP=xjGm3^q@8>(RT_=ZZ$~W0&pS+zv9|=$5Oy2rfMFa2*^V^w$|Dqzk}?1Gr9D zY}fz5CidNKp93^L#Yjth0u4wnw!7ZqolRzhh;E3z6c;x?7rZ(5@|k<-hf;An-=`w# zHZ2xmzq>Qy5QvPVc|=I9Ax7GtfTTh2C>J%*q;{H@ zQx)R8nNCAB2-eW-7Z&D%LY#a^baaeh1J{qP_1BmA;a;v-QU9T=&OQ1wi zCf8~)KGhvh+$5PdL15rvG;LFDZ#MsGdU1**9!w*1IakGXrxC&1r}=&KLsA2Vyu!&8 ze8m?;+`JQ@9Ka`6lsaGif?fQb8!awLKY3pVysP#+35g$A5&d#a3}RcHJDS4 zyy-@)7W0=7W78e$ei3|dX2NXu(pD}|@gYVvcwJCW zvd4;OddmCH|!J1ussyH|2^!x~>4%pA`(kbqBvltnE+=4b#2HO>`%R1_=P4iXkopq|t} zawk`>(P2)8;wZ@OSEHqNFP^r^5Zl0D84lJV7c5;S}I`tA%=Z{g2BJ)Ve)f^ z9L+h7g7cI~&ejAzO?Dp3D;2ug)7R;(X9BF#W$aXneSiCPe);S;6j3t!i=3;cXP-GE zyZLkKk(2F@`s;vud?84FZ8PNuO!8T>Fc2nem9H`ton?){*Wor zsawADDJIJAUw7A$ZnWhqD(1yNoJ3p)9g4<$hr zu2~|!mE?fpAk10R_AJgscT}0YU5}-J8#&i!vKBClvb`i{qnC9`*4oeDB5D{I{Z7@S z1PtZ{15U)1)5Jut&JOwd*2=G9l%T;Dj$mMamVtU+4<4J4;NXu8gz!~ZWmCWyM9SSh ze9~|<%E_D*OnXAS|MI4Lva)Z^IAOYe^S)gW<@#RuraOLdb^2F#>wCq`uoN%U{ZC%5r9G79;@*Zn-xf=S;fFpCGm)jK~Z1uiwf#Js$b^@6IJT7d2NzF?ey&Vc*AP`*SmI znDds%AmCb$~g$s4Xs?~Fz>KRH?QjO1ao0Hs)>@# z7|W?H$x*L|4lSbTgQRCkw5?IHtO9jW!bQ2u)56X%vH5bU3}5RkTOh0~Hk@|vs--dr zGLPyjvBpilb{TticzX|z;3liC{y!u9=C1h^oaobTv%4_%=&ymn!o4nqDv4EfcZ^L$y&A&r4TCr_e1Y@y%xjJLh=5?jI z)srH{CC0TKGPcXx5<+`3tL_s`<{jCHe+nN;zWU)KKYmQ!3_+q@EBwC=ePn&Bn5v|_ znx1w#(4kXNp2sN4V7B+!{_Js}U{V_}xS54NC&3{@yGz-TmFOxUM2j|PZL~489B!XA zy;dqY4-r|d>SZ7*Ezw1bDtAR1zwum-TqiTQsprfz|Ce2wz1l}tKw9MGe!6CN=Vo*^ z#?zvBxh(>Ld7?)894FAcpcX0MB}Ffv`~~i5;#X;L454oIWQf}SXOLJmkzg=Nv6ml= zmgBw&87|{-dF0$q=dM7}NMlVe#Z6H#uTR{p{J!*{HoYHU#TB*U0Qml_<*=1(Ciivv zX)&Bao+9sNz-{K7ovTd1xHy2K(MAJMYDRjWlln^9_v~1DY8q0>1{V=})A3JH-?3Ch zWQyO7?m!tp|3ffbO5BnBY+=)1SA@~8nm-_7tJiV;lX3IQwtJ;YEKve13tsU)y=3gE zNjJuJmkqcS=h9VRrQ?47u2)-f$1LE(a@^j`;PCJl^SL;d?VWa7EH6mUT@D;mmc85t zZVz;=+Z(EF$Px2t7HG9Le{UY|_AbVKIM1Li)kw1cZzlL}4&4~Xm;l%>;08wA)=Ktr ze}8nM2ae6M3)}6lnL^%CqvP^j|K694Dko`m=#JXOi zY=*h#QF*2@K)E%&~z{NJcBS?a`>rSnLi#j_ds7naC!zMA6gkNd=oWR6Iu?X zRinU%8UI~8Zc+Ogk3ZXgxOLp%HPNlJ&^o#9_Bfvz6a_)F&1URUvu#~RY&1fo__#F{Z7AwuYxCcoK|MEGA z!jtJ-z=q@k7fa!(j~#JQIl6Ju7(K5ZPcb+X)8Iv3Bt8SLaz9KVjLCrg($|psmx{?} zZ-w#?Y^A$eJNbNmIJw@Y{rTCYByO?aC!YV`4=2BFnxqL&Z?C*!c-;KBPfz&6!K<;i zP<|qVi|A!htDk;#aSDA5of%J4tmoO+BF#p*037HO5))s-Z|mqnZrv^KIX~h8!NFUt z>%iTTBy2jL^ITPNcjeEo`I`Bzz;s*k`7s7cRavrP!qB#xBj2mOu1c@^{)!oXKF)!d z9#?}J`DnvBi2#>tt0JT2p_F(~WKCGYSrdU~5bZ!@iDJXXXb?}#sfq_*Y6U8!MkD=8 zL(bx#egGI7a_LZv%W^MM3q*>C!XV@^9T|i5Np7ZE;2ZyN6GfpcHVW9+h|UOYaRxmj z15s<rz!rFINw?-#2m3@JWqryLSg19(!J;8?lBe(Oz%>R0`%aefwiz&OraC)rpbH5Gq)DN$fJMb=Mzf0qCkulY8EL3^KB$VS4&{g2wg}2Orrf%vzbqCr zMhJNx2y$()D(v5QWLK*xxzjrC{HS0yVZu?5F^cJSwJ(+a#P-d1x@8QL)VFw7B=jgB zdFAiYvgO=JGRAjZ!u#9mDQG!e$%2zli!RCiG2x=h(AdvX)9NtZM$d={Vmc9mSJ6TR zvV~f@*Dd&?URdN_D?~VL6oh95JrKM>yJ0mxVpz3vM=>J&IcfQS^;4Vw??wV(0fp9^ z1I#_ndLs~~z16o-BoGNu4VsTDRo=Lq~6gq!{ZG9sS^JeJmtgHnVm?o)k^S|i*uI^m=FQGYm^#oBU@P>iw zZ(LvedFve(yjpvO##Fpqv@-v~bM?#e{jD%FgPTe*t+^A|+pIrv*7`ArzOf`x+_%k~ zkXqEhasntQ%8Iaq*+KT2bXZqJG^9)v%L51?0Ssj+G~BSNbXG``oG?gQLn$f-tmy_8 zrp*s)@tWtHJ?)-mb%TJW70oCpIefIP#4zTUX(}qxid)?Y4DFW#;E^bXAHJ@0Ll|%j z1dWM5EAW2U-wGL~?BFkeFtVX3vE8VgQ7Za;8hw|Knq`B-8lBvPeogk6SgJH%F78!+ z&B!=1wUCjvc-2D?$~{Ri#C`@QlQ-g;0(<$+%4ngQ)f|SSXx`X!`(>K>B}pti#4tld z)CJ}WN?8hhKC{u@0AWSiDXdI+Ghkm}$28`W2l>9_XfpMnto|cs*U3oO{8#2F(gvL> zO%n*ZRf6EhOg;ZEzW+PK@&5eN@Wbf+#$YGxhx#eS0bu;W!P@Vrm(5?33zuYmFQ|81 zEcF=HR@(ZwW&aLw%lt9taE*pe!i;e>f7u||yYunA!j<0ChYJ@7X)iE}k$?bHk^ts_ zNP-x)jirM_{*P=8l@;hC7uFIuR|e7^1W;M?lUfK%l%91jS=M?e0e}(4hG5?~y*DA20@?Dj=%ExyWb;oc}3QQ!`x!DxuCPtj{I zn5I^Rn+Wz6f^j6Hi)>>M6qdxJ7Q=rr_%|(AF+8kJzwZzJGX45uI>#>GlKGX3`iHhZ zD>GAmL3bl6K>7k)ao4V7hhvQR-Uj^|diKT4|FM+Br}S+9r|PCOl!qhq%l%-4=S++|JQu*xt;}i*xE9a|s$F)G~l-juyY&3C|n^}U+Cen5-W9@;b2hOJGW_rDfI<)GAKb2K699z)4i+*t!6bZ1`Uw*zOT zp@1q^UNBHlAoZn*Q1-aE)%i>)$()u2ojjE!T{izSo4%=bT#K&A^cs2pnFX5DDIG{M z@UD=;YrNK45Kq@%YfDJjtj?$cgP}I%EH;L zfa}9^nmY92n;NikkOr)9_Ew$7ioFU)Ylw3zZMX+}RfAvqoFg}BIugn_ytxGISh^C= znRT8+aH%X)Waz8kbMx*`;r7qZpI*Jqy7}LqJb9{8{CGs(;n?lpd&}Y6H>y`)1wPD>UYY#lyUT%s z;^iCR-2d(=Uo*0F-O|_f=pC{}r z2TvdL#r!b2e93&ndd(VBNmHrFBB*WR??SjFch_DV5wSVTJI$_9$pE`4;GOA#g3|`Z zV~h{sds;)gRI%0R7Df>)uqnRB_d%(mmVequsA(#py6K|$cBQ;7#u+}<?NNeRU&ls3<^`9Jn>#ZA<*-uoRa` zDFawlo7M1Bs@GN484+(adLeUun*+w@wKR3UnP7Hutj$Ozo4R*S0m6N;VhMSX5+9mvF&9b~lZz*lAS9z8&7+jLm#5FON67I3&yv})RDwtSeBHs6|CW-tG z2L!MTT4B!`Wieiwbegilc#$A_%l%*4tP7n|2X6OURrjAx9#r%g~g@^Jh(sm6+~1@*nA`SAm~Hc z!B@w#tIPU)y%kOzXwdtv>vn=@aMq9?R(b$!5LgSz}#d+8Oof z6}i)^=kG-S_}ST3dq?~ZI=XVR@3rsZ>X_u)swaUbdrij^d*`(Lalh2&H@Mw*qMssW zt;BIH4|p97zM7R#r_M= zAga+3`zsLWdqIru3;1h~@=b)S4m!$(2HDyDn3p20SS zEa)h57{ccx&r@Rb&DatvHsYIFOow96Vb#j`D&^EVYYV%EG1dx&po0W#wwqEjq{;4~N^*Gn#kkT~+&Og+u#nLf=-wO8IiO5%sb6-h$q>t*i=m>8jPl}f@GnDg0nI68G$@vy z7w4Extx|A1r`*lQDlkz>P?<-k86M}b&1-57i1&nWAj^(sADSwE2$$Q+V7L404$d^R!Tr&z^G%jX|;6>A_Zf#gP*nJw4> z-gUe7Jr((&&YZG$yS>XdEDPC{^ORHksXHO8QPMf2Ij(7@zN=>B$pf9J>?g-$we4}h1- zSt5muaR3eHd=Qm7ARhuq(IE-XrDRFk7COZlzn60F8Cwx$nPaS+xhn((b#q*7(gc13 z08OxDKx1)iYH@&uKN^Q0(5WNnzk4Gb_#*_LT_4wdQTOJBO$J$^8V73%ZPy-7WX5a? zYKK;vCdG}sqUd5zpQ!xj9nQ(=ks`W5pNKe znIb><@9VkBZW4JxGVw2=N8PiYXuR$^7 zN9+>)IY_xQ2XqoObY6+%F}xV9oT}KCNF0RO#J$_9oV;zup=*UJ-Wc+sWd$m-|$VV75+!-R>-FrOmv?HT6|- z!4-z~Fxn3n$g8LE`9KxLHIRuEhUJNqpLvW_*h&r)gInNCyvgeAi1vXSuQI=Y20R_$ z?&8bAuk}_ksh0$_^{R@qURHN$9c9RJbG|7WW2uc@OYv2H!c62z){}hk2ywSVR$k*~ zDaF@}o#)q{U+e9+=G&oOE0D4d_r)d$SS}M?P!MT;N$$+x@4~A8Y7MW!%O}=yD+|a>j2rIwmihRTtn8m6 zF3!hB*T53WeFI9rcGUGxZcUaq=pPyAH2o0z>ffdo=RjHJ;mQFUAc$_&w}%u2B?isPH)u~O3tFEV=hf|j~rO@xJDflDM5FQTB$AP+2;P%$ogk7Wjro8Iv*{5 zB?13H^u463X*I>%ls#w7WX_I_tEX%_4-zuE-9Wj*VfbVJNHbk6CB2 zV_rhj-b>~ar39e(Zlg%>o_?dSg6=6=FREf4^^??m+e05BQh_AdW#13&0Cr; zTzkcc*M*z%Mtle;)zXe=UB7;SdM3*% z=G~k9%4oS|1{KiQcm6fiLEG!-#sP!a)XO`y;>jO}3|=~PUCoH^8gxdPit}4CFjEZo z6mEGG=1iR8sx8*mIKMvT9$Su7_M>Z6VN`uuAX1!BF_BLp4@0X7RlpD`A7}94->%0l zc-6@yCVv~YpPILQO3#|0`=H>_R<2sp#7?e$DJIBL1l0H8)l=qR)L4b-=jnb^K#qo= z5ZMS2@G+frY3Zh|3GEx^k+Mi1(j~c7O*up+%ANgC-am$pE+v%|>Dgb(!N-)%OLh(q z9GB4)Du~w7^#7^IZOcj@YuP^$HrP(q0>*GflhPHE|IK50(G*CR)~t5B{bb%|Ew`~% zO?^hPVxQ<0B=_sObt9Y1qtxWImUj#FC)~CyqE+pIJ;Nh68}CeNB)p3;6-%v5PnILO zw)qJOly-P7&d9A4gxprkZpDWf0QDRZMck79a4IaH_1&hXYnzgwg+^zeBp-WMOY3QN z84ZkF*;Dfi1seAJtyo(Z3e#800!JMyvx`a&A8nT(u+RCXb53Lu*%RE#!&yT6jO_R= zMp()Uk0y&p1|=6w^{Vcrh|4P9##@ADuNh}P#;fw zQ?gpIc6%8_)XaEICOPCO8$oJbT;ApW7)Kxi2=2Udi-y+Iz3caCc=xT#CLzDnga_Uk z^NnV4cwSGi_|3f35h*J8iYPSb6JWp&bI_|cudtlCbY%meG5`6Qb*SpVrb*f2!Cv2@ zI(3-|YZBz$h%4mzwfAI*_S~0y=enKWpQTIw`te2nj;elv`Vy|Kvm~n>U)Rugti9y@ zZFO;PdQs~Y{br9K{T7XBxhqMVazOY#xy&0p7sCfN_*z8HZ6nO?RvL|jJe~Bc5_L3nvR|+bp%Hqra;)-69Ck*kl3G$(wg(c zn=17QaNHQUl0<^9R+!IgPg zEqxh{O`3uS1^IYX8y(jhjKcLReC{gk@+MqW!37jnVO6x}~Gv;6h*21&zU zlMcIq-~0&JAX?3h)Epsy$^P*+6_cEJ~0yI+fO*t3^kYf}uu!~tbH5e_7 zC>qk$jKsy2(KC|@p)188(4IoSBy zRvk+HH4md}gvpb3=t(;Lx|)sBcjL0%?Wt!0jFiN+G`jST6Pr;@adgBZlP8o>bGTL} z*}lZ4-cwtFt^B0g=?Xw>eNvdH?TTMazVwe;E1QkYy1>`YbJxGt=W(R=q$uCwC@-|_ zd_TcFqRn=E)m7)S7Uj|$eKW1Ip=2l9_X}M0ISD-LL09uGxBk~1`@n&05I|9;3_wLm z#hH=yF)R`69J@7;SRR=uz?^M-^t3`clB5(BS=ZX&rYYw|W+e2>uz?Zzn+?uiS*6kX zkpz?{b)?<5z-e0WOa6__IDq+uR*bI!El`W(E`k#f?&p!qNa62r5L|-6U8hU5pqIJwuC!RKA4MEN5T(Rs^gv_qb>mrLhBy8t_iELx zh(V!wTg&$Hs_qci^r<__TV}>jl+1M=cycs(RYR)5divI^9F~?|)`Dq?Hj3VYrE*?w z=% z<2ZVQYKPW!c$?J_8v1cA;bPbV4u(TxHv!lgdE^YVtbbFW-<)fpB7OQSeX!MH3=RU8 z%}1kL(j=Vd)mk)@I(tM^#bv)_0JaMPS;!hlfPOWr5%D~dsAMU-AiE+6@Xr$dq_`w* zd44$QaIJjDy|ej}oUg{s6(7*4iB6A*%gU1c>bac-EV0a? zyzAG({g9Eh+h(1hlWFBenN?-)@K|eV+Hrg~p+P`O+dI3Ky%2__r}LA})tr6>(G@*? zS8(H-8DG%-yC(M!Rv)}vy!j0FExoZX#@RrbJ&&VHL_)Om*V}^b)O(y;>9s|-6q@7_ zmXOXoQ)U-SAJsciFGzfXV5tQ^J0~{2K~Zil2y)+$$H)Ts4*YF(JHoU{JEL~Gt7g23Rk*Ig9D0$j%ZX;1DqlUnnoJfP9Ds~#Q;x}^rLj2dRbN$igG^*T zn+aY(xvcO8>}5Guxdi&-*Lx^@AeZTm6dxZ`z1*|;Ta<GnG55jE1i@=rV!7gB>SYM>GV-or9F8 zpx9}b{0zi~NP_+tL9#~kYgn;_*r7J_*RR`$v2^`Kr8IUb>bABi@&g3igHc2OEo#2R z!G}m!;c6|GO45N?lCMq0u>1>)e|W|h{8-Z|Q$lh#hzJ=4@5M^SDGJxN>#WWVcY5_w zfDV(*g_DB$$tNwTxjXVXrmm>;&j#I=CG{4m*~rSmJvR9b2 zx6=Eo@IILlq;Gf!MMb`eO0+>pIs2ADaF$2v|)V-&%El z6~dMC19vf(clsW!4THRZB<;`X4&a}qD8}6L*O$sM#YKZZl%?B@X;ax4!CmtMAp*U# zE_F)}rbW@=^l83D$;+LIy zgZaJ=u%*eQg`P;3`DeP)SFPZ6XZ}HW-M)2IqV_zkkh}DXu2aLxYmBpEpIcNWLH!NI zGp!E20Rf=_pr*@+bo+J=kFhXm6y(N+wc{~P4LUx2WQW9)zXeh=Er+USp znCw}xyX!-Rz9jch-4)>jxU;Y^PYG+a6V&w;Cex>q3h|EGuGXaD1&EB{C`K`6v#H9O zwM+>P zg|z(%iG-TepPyn96vP08RfH-f4Ir>CA41pHk1G9i91KstTl5BOFS`2p;KBqjg7KQ+B|Qk~51U&vG(ZC!PJB>&V`0V#r2u!k6IRSf!* z@dE|OvLGZ{DEY3M@m86!ICruI1>^=3#8QI+O=+yh08yb#7Nkz{Bdl%{P;eKthI6G5 zzudfwGN%-3bE-kh&y#-`RHZ=`I_{eR$WE8e_xH+RW)Ilvrpp&@RrDFtoCYUPP-&GV zH0dJ<+x&wXn=4w2xp;FRzb*5>Hn-f(ZIWLM6GWZrk$2>@asH-{7;1)2vy8*G#*TWQ zUe47YF1u8O?bEk5Eq(5HcOv#0GXYVrZ*TpJzimo)N8l`^uJud-b==ZPTqxiv9jtOPh}! zIW9LE&Kk=Q9&SI%nOfjal~YlM{+w^;z@=k1<9oo4D0Fob<^W|l7?2>;20$cy zY`;UA!sw2$exyZ4P2$$zI-pEoa7Q~p*0@xT8yFiyWzWuGeYKf9P6N(jnI`_-wwAOS z)_g4!w@#d)ilTF!*T7f%$)qc0GqA7PR?iU}AUH$oJC5$c<^3GmD?(fRXsDqkL{gyc z=)dJb=Sc$zw0}d_I6bJYw7tQZn_hg1hB(Md8-^bq{G1WR3HDk=^>=Ue;;AG3$@Y!Q^Q)YL*1+5BOFGkG3n+j{jF7BL^7{MpD*iO0r~1k5~OOSmLl5 zG+%Q5K4kjW`aQLJ<~<3yyNX0`{(Ym7!lmI4*eJ|`q#Q*f=wo?FGD zC`$M%9zXkOg3NQP49>wbVjikwJ&nVSl2)<;?|_C!-rr2aqOjAT;>T5=d<35Y0v-g6jza$Z7Y5zib=(k2@w|Lt(f#Y}Yjp~BH}z@t$}ik4B#J22 zqET1;fyn)0v)=62SDp;mi8yYyqC$0xpm&T~ka4ng5H6*qWP^k0y8nx>|BPy?YrlBm z6bJzVh8|*ogc^FN0wRXcAwcM%n$V<)bOA*ZdhaD5XsFVq3)av((iPi{G!e02*V}U7 z{=egS&!@9LWMqu&FZO_w{#W_R5gl;}+M8zdt8z>SbwZv?Z<^JqHU@IdmwK`g zXLpnF-%|g#b{3JxTsRWDlIDe6*<=>eOLo#^0}t1g8$t1Q)IEyO{eAt zkCT4Gk6o&^ABwYM8z%WZsfNBwZmmO<9ts)?fsvGRFcR4k>_iUG%rOq)c@!)bAX3W^*cI5<)v^`~eRrtY%>CypoWD5F=0cvfVkWeRbUZGowiJhe5Xk{oKx16t-LlIN!LU znmNrV4*j6=_ofqwN0NrdiQw`%)O=M>Q#$n6>eQq|)RHaLJRzqHCve#YxGia1z8$Xr zA1EeU03=od03_8BHqMHy2+h>88_|3dxM(I6G*uBa?OA+YJj<0RY8x|5j{l4d@`Gp#vbHd?)@Zm`Hy7%YS#WNPYjIgS;JV*ck zUaZz5!XC!&Bm}E|aokA~9mwmj3%rd|JXQW_V$rC=+_8>~?2Wv8yT`ocI%f$i{zh(- z#lY#X%foj}F8^Fv`Hk*3S!oEulYwLS4wfcAQ8+1J&LAlJO7eOmuz?#u^R~BbFh~hi z0s`haaUkF(6kv!;0W#NNlpVl2?*$E7>a)l+y^5!tF-cHdz)+Tj|NFa*g3)VbQ;*{= z`xR*Si3lojnJHbKzP-}Pj1oW|Yn+>^PNqBD&j~{p8tR?@jw{IE$<~{i1_6hve>%!F z7aRN;Zh*xV3y=GdWW+G$2PVkbhp5fPzLnE24mMx8&~IDt>_c3`@5xsk#BTM;rKv~@_QOh%bK<%v>_j3H@rpw;Dz?AZym2j;D z3mA=R3I$K(ss8;N`|MHSsS?o~ub^|+md6kvv@dg5HVmLd1+b+GW9)rq4E?b+Xq22W z{t2F&opOy557<$w(ZEk-7^5O|5@C|xd0OgL2Lb&}8}6UjgiNt&{;0yg$%r|t7d-6Z zPYAq5ogADi-of`W%5r$tUPi!h_=bx2mFH^oe_Ky@&0bs zR_}huogD?)H@MwC+^%JUamQhoEyN(SC0V*CL z_sJi{Pl7(`;uW&iSb8?Bza)K&282-oBO+leJ~yclR`0GAAk{k)B4)j?-}MsMh>7OL z6|g^3F_KOYKaSMN5uk*FURLOqU zyi5~{`m5ARA>!KI(9bnrZ+=qPqeDR?rD4F&Gp!3%jHHaRqbg;xVWasdLQnY7I}`ptK-^dZ^%M zj--*4gaeGNEr1sGShTnTxnYQX4iI$ zr>^hF))%4ns-S0Hy`lO)S6%%c+0C@+y6u(OR(J--xHf-QGdv#{%_)`H{G3L&$istbpZkKaFb^|5CNTbiG{>C;{v=B&OI0rrr0QW`!JRwNlEm9-<} zA`BE)WAS^|qmBS!FgziUiLrLjO;mUOy?kX|=eN1`uLqn_F%#Ys?!pXacFs@@;Dgkj?Y9y{30{22Y-wQr zW~fy^7~|tntOanXB}+B?vWwaR4QCz?)Jz^4)I`we&2pvmH8BNEcxk=C@{(~h7xK#FqSW&!`z1mJ`GZOe zZiD-A$^Amy9pxFEhzhz?!PSq%8&bzh92^$zeEhMy`TF2aXRwOY^l>I*?nFfH@x&wK z8cs*<(Eu;_e?uINHtezlda02?sX#-Z=(ma}x~^)gRQ!8+-Kjr+|9-8KFa7mqx^KC= z9$`z)8~T+9q;pVZWbkrS@!Jp@?SYSW@qEJtje5vrbjd+IwLN# z8{Yuy15&4ov0NbOEX(_51c;=Ds4mEtS@9DG=wQ367Is3oLzoLx73pWQQPSRcC)G3N zYTPq|H*cRgkHErfk9Nn4Vo<>#ewInf6m+B)Ur5*$qgC7lWI!Myf-p>~VMwugzTin^ zN3!|i0<`Q5u^L&7;OO>l=hBDbfx)rgN4;*fJ#N7Sc03~}r-y`9 zWB}&B`#Z=G3N$t$uGb8G+yZ3}P(?_o{Nl&Otz2}q(kj1V$KDgN-G@_^-_zSi$St0J zvv|~;e(pRj)zy5EbN+$C^Wt`aQVS1f;a!dVYi3h_+Ab($2U)%fEYm8^XwK5xlP^PV z|8Grjq-X_XS;}|w2}80q;dAR}v)vFx6`t%sz>H=1pc6d>LrHysciw0u9B(*uBIoEG|F@} z^y_(@h(&kDc;xakio0Lp?Y2|Uj5~&d%m{((rEGY?I+8Efu0}&H+Dm%J`0NV{Yo&r{ zy86y<{6{vo^!sipeCyiahf_;3ukP?+du9{L+|+YQg@QYcmg3x1`<+hd;+)5qi@(_6 zs{-Bcy;@6LefzNd@R+cPUoH3h=jvyk)+x<@-rt{9C@8nG)jmS*quB^oi10h|-NnFY zpv4UF)}+K2uS?^9x3qGi$$BfZ!e}oy$IoUhYp;?s4@P?XJ1;l){&O7zps)cOz)Tnq zxQKlrRPzm`o2?^}9b8S*K8hrl z|1lPlW)e%0jCUq6nrAVlAOEgpVUu>p+1Zik^j|HeKv6@B z8y}<^+7X&w?p)EnOCmloVZ|ngO?M5AQ@>T~&#Oj$SF>1)t6BemY#?_ac~#8wo$RG~ zvm_6G4jeS>$#vQ#}GF3w9fqE*t}F_=l85K$j9 zLPBU%8VSx|17i|jdsSGpEu>)83u$&q03SqGHzo%m%@C(`;2{i121&;t{~A+@sYHdr z(CZw5uziFelf`+~rr$$uish?w_H$qDp03PW5Lb{mtysj!xiNFbpHS4`IbqN-gPRX; zBZy)6xh$TtSl>HTjm2lz_55_#?NuGI$ZcS^XBOBLR#ci}p3*41;Cz9(L`#{4+zqB*oud?Dz6gOl+V`a z7@bBlW_bW-B!Kuw_>(g@S{SPbIK@o#u?*i~qhcX!O8^`c#W{$MZ$f(}4|?2`;pwDx zAS~plrjVM441ZcWnzZcU2r)CCsQz)=H2c%pgh8y|n~c*CY`W`71?ye$ZMHV);JGD! zp_uR|D4FqRpYiFhE8;#oU3x8HD2m_P77}Hk#|upqlLYUJB>SJZBASu#_wUirD=&|e zx^^n*bV~jcc~!-CeUNVhn#8zt3%TEC%Z}xCm-!1J-+Y<;zcUX%E4CAU-oJhPq*l<3 zn#!SmMZMT;EO4RHH0Y>syC#Cdl$fvNXL+?o1}5{U{m`zkP6x;hcOawqUNyo*jB7^{ z?B(A&b8!86og&kmQZ|+LMnM!H0GdDa{j+sL3JrAG-9I5dSmGMMwa^dGHEMJO2owsA z6NE!!*ul_|I*BR3E}5Okj?W(KNAXxV8hh_JAABV_L0oGQ#i00O_MAFE!J7zFkiy9E ztI7L0;&`^{eO{F$Iy)kkvP8qAcZCD+@P>e#*D<-K9x(AAB08|#j2zkYFGWy{xgs@H z9Hb^Z+f+fK8ID3BX^2OumBHEi(x#dy-+n3c$zPf2H~nq(D50TOFUD0`U%7tqy=yu4 zfV0>-ms=`JK=H@J71Q?nJ%JPX&W$fEr$!#0D);{@apLCTn)ScK`n=_~SdF~sTA7nU ziM83md|%yvW7W1&msFOiZX!m-_izKuN%Ht}1)mT1Rn8k7>jPJtI_j0MyRcG%;Tp`UnZ z73yGFDWahqu7qn7z`Ur&amM@FFlhbTm_q*kUW zDfwmQ>x?g1mEi^1*`UKf8OnAQj0hM?$_^Pwp&L{CwSU>bU-7SunVl`1#U2hYbwyN|HV#X#q)82+YI3 zHa~*B1I)RorDJfgbfuMAz0W_L)FQEnqyV3LJw~zC0yG`;5hLua2 z^h8$-Suu)LHQbs#ql)4`H%*TRp+Zc48Jhjr^nzly4BCh4&MQA?N2!eaRsFg0|GRI0 z|L$FWd#b`cBJ*?1@$aFY#mZ(kkX@{D~`C0JSP#)Q~JR_Gm!#>~4nrqPmxEgz6?YA#^rkDN67iQ z!gvD!@2&@?iLPRD*apKK3E)!tOR$(1XjOf zUXP%VYCKl1;W~aMqQ3US%nx@Ds4><8_j^*LCsI zeY=TkQ>QknV(zvLJqSwMS8Xq@jkgHfT5nH&?bn&dMQ|5W)=?Rd}r9O>o#xb)fP z^as{5oMZ7F(i=JhU{<#Yr;DZrfMMR?+Y$V1gWY1R&Jvs@gqX17T-W)}rle%#ez>)` zQ~I25ix1I^-rh^t#97)n4C6TKaGIt%(0nz8nI4DR>2sjC5g^fRm|#M9CfKLy8ZKe- z(Y=mi3@bPZuoU32ti-^bQ}puiOhYi9HJ?#N<1V!bl50wY;DFngmpOGx>H{BG1=_Zn zX{Gdxsg&@jM_1{n-bZKK9>=a2MH+dB5BOcv|CCWv9m#EN?>NC6NoEV*lHdjE_~WbC zHYGPu%R|Ic!{em4ci$h??p^7x+okoIxwlSQ&Xo4LCOVv(+SzGnJ~i29OMFuW=~{Ic z581qDubglvs7*`3!EXNq-HA<2Zb6GRn3R^BsaH327Tv*l;;{}28raGNg=^`s6xeZS zN^G)kF~xu3Po8X3hDF`bXbsJdl2MXA`dVcn1q|Ue2REydb)=7wvotmqj;h(QcBIS~ zl$6LY?ImfSko+_KRyGYiT@_?FkH{3~IU~LtDj=Q1oBtx05+(bVpDmQcuO!;59*Bn8 z-ZHSH@cUSPz-yR8*zzAV_ggHJp8inqC-8B9DL!5Imr{DpE8zB>rYPIe%XL{QXNK}B zTI{dH{yIC5@Yp}zZ#2zkezuw1v)bY>4(*b4EP3_6(f#+g)1FtqWlv9``a@*CmUL!8 z5WAxR%T5?n8&NnSCaAPAWDoUjG3O_qA5tb3T~gkjbmoIj;*T*@u)zr(}O&b)!v-$|#)LGDpa^6!KE>h0ce zW_ktfTm9|fwXO=Xejyv_Gt2#&wjvT%v>Q@-Xu%!r4iNVd|| zGCQPn3&SRjqHe2OeAapu2E zz1Qk4g{I)B?tq}PNqTK`ZSs#eoz2`VY@gz>%b_$NEL|Uo4KNG7!8+3yp zAR>%*W<{NN8G`^~>hDgQfka)Q)I3L|At$cpHZEzH6?)2vZ@wBHSX_KHe;yi+ClVb6 zuRyazNXDEHyvm*3mhE?yyoDdXdps#`8lNZy9uF~?0UigkTAj|(4GEAX&L>6yv^wji z)tp=N$xch%6y+k$JPr8Ar_(=BpF51 z7GNt|#?(LmvGIQ&6=QoN$BtgCj}485L+akmJR9K@9MTbzsBuE&yx9o#7jIP#%`#}P zm7Yx#cA8MnRCY^W^_;8Ed+>L|`nNDH`FWN-ju$8C_|b*ccu9~ACU6x*I6J7D!eVbl z3nQ79J;@j!9`4)>4{VGG6oA#_3z%HrR>S}i`K@K|3Abp*J7*Axx+u6CFN86l>lDpB1rp=k*|9vUGXkfjjtd5kEDM2b)VH8XWw{|ZZ*F!yEbm2dIo-3g4nJ74cCedtV=T1ZEY zDh4>&wl#GZlfNl7qgpdHdu=FH@?x>yPw{{xKT6uKog0;*-33mrZ!GHB&6p`a{Plkx z;F%Xy8b!H2M4gfU=5jHFyF9!j-quc$t!5IcKOk6i#qEz7B{O;n{;vTCjU0NwVJ{uCuVYmPyIDZ>zm$f1fwu z@ir#V%#@92G}{R_-a!DLe5E*;AmF&j!ou;asZ3? zGaODrBe`gr&JF@1k|?7_8u0p-bX!j_dY$>QBkhYNkyWC6fxiyN)iX8%nOSiGFm+xF zoM-B*-?fd@bd+pv2sHWXf8DeJlOFg_xxIyoyk!+9cYLEe19$ujGL%WJX31DdFNkQ- zT)m%g(^UBq7Nn5{A)TLZG!ZS@Z+nWxMQpwg43Am~J9K6@sfstH#oU;cZV4Hw74>v3 zx`Mic^K0y0;fcVLskh~E;h(;L{YNBMRD@^AZgIzoUJm`GAYq!s9nr-uSl?+#**Wt&=rt+&#Q zIA}veVMKK<)SMwg%M4&=2@V1H&1m<0Qw1tMQjFjqBryz_?qTG9B!-(8m3f-2dIPQ- zRnu7plD9Gdu~i)gS2IWeT-Y-5no9xOIzi5vC*jN%I$zHsM#+M=aTnmHRQRzekk5i? zkc}Q140QP^AWlKLTXQyY##d-uCp(;pV3A4r zh*?zW*dFGkT%O#G_mwYCuQusFF?yht^z@ePx%dBGkhioi5~GkBZeCmKTh~YZnBP{2 z80v(mmn++cV>-8W)8Ex-7X0^=v+6lou|B@*mX$pnaYXPzb`H?c z)R2bxkxpMLs~$)k#3X@Vmcs^XQUE%cxbFd6#p#WNq(z3o(XU1qX=9l1$E#Y|sY;Uw7gyv_^Z;Tq|R z=k;N>jhn-lTGJQ!bPh;!(cOMeh7uCa@yeu08+}yAT~gru8CwV!ydCycUG%y@Z+L7> zs%qneTgZ~jb$_~#!D7eUm#BvV=}GiRC%;)}R##YrqEKtba6vQ304!NO78|yb{+rb@ zA((z3h`4xKh%Fm^VXTD)ui=DbgY|Qf22&#rK){Daq<^CzT$F+3NFOxvnE<0l@#|X% z1*H9hJn-xLXN=U7C^Ys$1{+18NE|XXg7M*RaOgGSqT{>NbdKxLWU0j+ns5p!iA`;U zGPqr&%#Js5aQZOQEJBFI!u=#MNrUOLfYqk z!wwV+fy0iFtEHfX1GwIc{{jK|fe3bp<{dQz$(&yb2`U){)Db`sAT#RVf+4yjzZjNm z3P6H-p%qV!l7Z6xTpa8ZHBdt{(J(9Xm&O(I=^Tpn2_-dg$;FE1K1qY^%X2ly8)ekP zENl(h;NKf+HJ2==#rE5)r{KkS zn}^-$51MC0ZC}#sx2VLMK0)$U)St=uiQoO?=C^*pzw9x0b@Fr_ru-D*v=4ZF>__j! zRn=iOw~N(mjcTGJ%9J?!0v@&=8a}g!3c;nj|8l|AvHYDhR296dV>;Q-)XU2lZVbbN zD8m!3nO5aM!X=ekyU-C$)4Y6YVzwxSh6TF9j`Q{#r+FJQQ8&tF%b-cHApA!vIS%NOKwa0}Y113+KKGV-Jbtw-Z?hAmr?e)JL60l= z87|mvdqcsD%G);Fk9(!x&e)z0BF$#oUVUWx#;nmKVQ^1W8O(h`LeN83aBXRCBsqf3 zaERlCFf0Jz%7idZoHLx2W(jZzg)eKY0l=BCgJ~PzRLw;WT~0wZG(ato)tBveT|8;jRe)b5{?n{;=kajGW54V}xo_&aZCaDuYiy(3PV2`Kw1!PbZ6bxoywGN0 zI^}qPM#awyD(93Xy@Ik@EovQ`e?0j6YWQh=m2=cfr|8a8Sa;40dq-Dg57#s~X{zs3 zPa9O3JxJ@8(#^1s!6M|@*y4i}Uexd3E&u_?Mfn!w!gmK- zc89BxqUJw}0UGq@uYQw>7%fUe1y?d%W?4m{_&%A0la=zeKqg)b_;d=uZ7I7dp%R!3 znN_qkQprw}`%XCR#vm3E_7QD2`K zghQ47chUdT!2RDBJ_g{bjgeH^jJk%2$7gp~;ahZ2m3Hfs9Q85>C59h+pY=|1t5VYi zD-=hAwG2%xUB15KM5xZXZdAk#)~|BQlsj%Dl}AeZui4Z}PhvtGwXW~Q7-Py|j+nQK zb!ycS%=E<@k)Dz~8kK#$@Jk|QH(b9zp}Dj(9L{c(oP&8NLEW%-5rJKH>?!yHokxnb zQXFxyv5^@Ahcaw7i?Xg4?WT~}NQNmit&o&gO?ccUp#BS!E`9=57}Mi9j?BQ;m0!^L zN9LQ29K3&y$YZgHF?8l@HMfvaQ!|u1p&O~(u{MBq)9^Y%?$u$SA?@qZlK!mHqGV$7 ziT*^fl6kYfXCLac2INoRml=_h@3K@K7mBZ%Qcn_x0-l(PJiDZT&)SdnrYh+Nh|VhZ zvf)1)$D09-S@fbxHqML4Jpsz2ujOA#Evi?q27V2+47stTux)*&;)GvRzf$#ettKhP zyyQDgw*4D>KMbRb@4p~Z?i(vStm0u_y0eLra`xQv0> z7_m?vU(v?pG-D#<*kmdQ5LcX)8YQl}xB}rOI$LY#5*aE=AT_MV;1Cd?B|DO6y}p-s zjsrhxPBkp#Bn#?5CI66Acf1M!JJM3|0AN3ej`W`4M(i_H@OO|00|XvmF^{{dvUf?% zvWy!%e^*c_Ur;EAJw??U`zLotvs(Zw6g6`uvs0(EIl;*jGW5 z=UYsQ9X{tyGa|B^lXA*_JlT0vbx~vT{VU#mwd;fb*j#x7{^s)cgGt%ydttbiKtXgi zPmatDE#`78f>LNvy|$w)R}M#7!f+q*hkWxlF)3rF_NK>yC~EjY0p1&v58b6M{75!5 z0vJ;0iNg)#j3WNP$r5%BoO&%08kV?@-r$!Sp1#zOLaLo+8O<~;2dmfOEoQUfbYl{7N`dbM`)5H6;e5HtgK8FyJKM`P8X_<*)W7*1k?``#gfBQA=W%2U>+5+ zbbO&(0fD6A_9&(*<%Y~fiMYnvuYa|2m-G(C79|qbV?8S5rAt{$xL?h`+CzQDQ26wY zSh`l0yT=TyT`dfsza+inb*vtlci0O!Q=4&w+*j+1Uk^7l3xD_Ks1IAKYkzH^r*gI5 zE}*6x;B3My%=dQ^Tm^aqa<>J~4mz&)T-S0acxxibm=0Jvw_jtKP`b?u z6wYEam7RuUgWzHXCCg}*rBF^$lTQHXsE`;u&4`yc!oc|q*5)2Ba3?6IKCw$`#v|T# z9@7LZ6YCavaYlH_!D(O$JZcEUElO~$;vxwS@^eV3)uksQMvPe5k8#@|C(wpf{F#n0 zc6OryM=tl9My)K^@*n>&!TR>Jv?dZj5#C}Qdw+d*MjNZ zE5sR03{?}n*{HNIn+aA)(yT1yBS-%5`=h7aTg#>POMn-JzyJRIg|5(q!sP|B@S)f< z>b`#bp4vMLkvmQK_Zt@5I3!_GK7^$WLiDo~7N z^H|$}DdC2bVF2T&r1ZQQ&Fqm8q@@-Z#9=|~@E9ALwQilVAx@B|KrqM3rOX+G5F{I5 zg0fl_hL!9-q1F7NnMfUkPE`{r1sD)*#0SQpi(*JSaRKa@JYLK6g&yA#|xd9zun3JDsZvUWi!KUmh3M`U%8LwYv zrXdDCIp9ADK(T1Fj3&B+Plt~-F*%b8cx(aJ;@qgA5o-Jft(^%BMczac4-m-1`EsGm zyGt&^+C%If>v%K;`YtAYqkalhoD7_r0sbW?->~p{NjiD=2(p4iM79U%1B&{Jj2{lMyV^qv<=f(_amG( zmvh=vcw6AJ{j`R_rKv}4b|u}oKIK4;h-N|Nv0e0w%AlOHM!yTb^6=E!?X@K6Zo#kIR~pCf+tM(vvik2?mx9JqHefPXo?&rY(>5?o#O)o~BQ{TQV#MMNp>q2A)3mhmw8BFD^?yQ=PnJes^$(GIt|@{{G2os>e96LTcXh~{&gGl3BS?v?3kGW2=$o)jk)XRq6)R#l{qgz@pDc!y@@*B*NOeJ4<76L2z ztr-az2aM00s9N zVJ+1v*%4G&YR%-0!+Z$l$TzQjVI}D~4OD6@6OcIP;6BuVrPaEQfFQWa zOfU=r9~6s0OF=k@W?o(ypL3-YEwog9gPR z>-`xs&V3mdyNw%DgDh6CIe(P`pUB=rUEmH|MLA8vx**U;BF|>O2* zI%Vqn!OGZ}3ux#^O?JgYgu|3H6kL!OKs2Qb)fH;G?xvZNwa(`qtW{T*ekOOq=_BNJ zJUV3t2(%Z47V{iE%BraAkhqHB&yL&T!Rl$!~9D* zA6WXBR5&&G#^%EZH)`;MGvtl{=RRu2-R*u=0L7#(D59gs$hZI=&Pk}70SL-hQsf!- zROlpe6RH;o%7=lp%NKd$P0LNM2a%xaVT>^!EO$spvTO{!wC;&}Pb>Q!4&aw7S&bg4 zv~NuWitSXzNT;sIR`iXLB@ljUZ3z}G!#}g4pW}Ym(Lk|3{xh{6zi+_Nq7Vac!r=9x z);K5JOZCokrq`&my_)h3!&CS;{#bIHz?;<{^i>C9ggiXCVo>u$bIQnBb0lB6y}=89Wtiot@#RP1OHGy200&CKEUB&f`8VS1iH3HOKck zX56mXA&raq2^BItNwyiEziZ4q~g!BQ#!@Am}&_F*eLX>XufxInLP zA1)vZR6^A(IuWQZs{xZwmaZoP+&)Ywo4j}AQ8U46={5F>&T&Qbed*(tI-WNI@vQ z#m@O!N?awp%R9N7(vmq5Tt7KPcH>KT^PTe$yC)e%RBGBLZ6N{-X~#B!G1LrWrFGOM zth8Wo`2v6E5O}M=IF!c`IAd126gPS4`bkYIu1XK9!HAQ&F2=i6j@Jdw+8)m;_)~Yn z!>jNS_y^b7sIUiAzw|64C#^_ASXPAX>0oDrQoX+StzWsLum|L>>41kV9I?+^&Tt*v z?F!XeKeHFVv63L+1gJD*Fay8Q3*BYf9NP?^#CWbfDQI$P?P^o$4esskRv#IeJ^Qfr z#~1$u#Z^IVC9&rzJfyCT7u=6J!$xXyVq_vRjN6?QYXdElJ6KcY<)2m*wDS&wcI(^XwVuyU-p!qA{rIYH zwP$9#`qo;DmF>BkPCd8wEde+g!J1ah5lGBJne-4~Mi59zl7}vKfJs0Q;6;4&MW~m0a#N!8_6r_A621CgmW}En?nWiImP7 z{EPFmLw`D>e|yx$>skdNE`2x#i{6EbN#q-<8I={X!Mz1czev)-NDJe1D0pX-mraQK zHJGn*@2GHvI#K+d&cpn7pWcM1KTcIShkXAyuJ(*MT$T>e&ZgzxCd4c|=6ud`>Bmwd z!@ZPyk(qBT;-(bu3yw8f@Y0i?ey~^H!_fwp-~L|m$y~Ul8EN{|p&rv|50p9-Nh6pd z3}-mv2_4m>gD@Xv+@~X+DVFn+D>+3(w<5|@DWaE16}KBJV#+J}B94dnA|GI{Udj{2 zaU+7b5V7p3S;r;AOZdv;UbZ8U3bBaCqjZ3jf9hONjjSLUWTLj%?Pab;(@>RC8#9W% ztUU-;vr|(y!UXGPY_>OQN_C&1>Uap;i&KYF!e8f!m%+Br?Re-?}cL02!bY%Ge^wjAW3t4~Mwew`S=?zf;HYS`0Oso+HoDsmi zIU1|ayf*h-Y42XF*(8OWSQ=&N2`ByneJIHoX!jWTEuMhl*gIvKa&`Y~MR*ha+Kdga zyl~2J!2+t#Lt%Ukib(FbhRIb}{f6y~4tCo2FwAm$qt}B~b-%!Q?hKD&>6XQOmj3cP zP7du+w`!=pcE2&%#UlAkm93sSb;4Vtt>@g6ockKt!Z8=x$%O(^Dahpy>c4FsD(UP^ z4XkXP_`du#veeS>0Lbng@C1VQHD#lxf)g9yH2UsBN;OCy{lVpEO~&d>p5T7_)@+(Qeqn&?f+RMxBFA5N7U#dn_+7gH^$OxI0Y4 z!{K8rJhYX3n?fp2XN}2nh#DLFFTt3Hb;$tORV);Vi}R^y81eP zgcE>fQwyMk1=3PUlQj0s5GcExC=HNu&8Sfm^oN`M=@3aEw(_Cm{d_|snpj`T7d*(3 zsdIrQ17=v!otP0k5v}*L^iqzUk;zsuwSnny867w`>XSYam2#x#OSv=9>ZuUYeix2}2y+If&sF6t#*v#1;ERtf&tk&N{Q_IqZb1U(>!B5|+w(C&lkna4-G9%VwOG8R?t5MBFo-Jvs7TE=|gyIYmbn z!tXbk+Jz8OQ*)M5ImM0@z?3ujigQ7|^cxUo{_{d-1$RLAWKb}$&8v(+X7dqp>iAE6 zM_&Esj5epCvid4~;Z==#y4~nZ<@_6rYnxC)nQ@Ld%4z~vt zbvQLlPNu;-bl~K$Kr|j!H)@Q)4x=|_c!oWN{ha0}g`bVq{gV0Ir~Q#N&t@ZVLs*`# z*vh+8+?Wa%{B#e{g%%NocJM%or2S>HGUMcbDvxMS)boQsc%~E@n=IJqs@{5VRI-qAYby5#DT?f>_=kW*xhTuE}@3)Rm z_~NZ8@{Cc-8(r@bAi9(!8%!)uy=9z9FB#~ag3uQ0`sxqzWR0eZoI zSJQv|DlZrCYt~&tZOlU_84MTicN#QVio!WsuQCO8e8eGKQrY$RY4aZ%TzU#$fOA%d zXL_gqSj|t%C=pZguu^yB)2JiPR+<=x-B(x29n zlFAqgzmNb|1=)Bm)7(U9#6EStF+;%o#uCBLzrqRLMBXQjiHKVEDUDV>NKdgg(3!Eg zVj^u@=h$=gxmu$8K(2vbEDF=G%V0C-!R6P;QpXpiRSqNznJUm}Q5cBPH0@Vru)1Av z*8kHFTm8Q*Tm^KtVqw5H;rEpgBinP|Ah(^nR__UV%nPj%if>Gv!UgDKBSU~wJ`-P* z&Wy?DP@aM@3tv7bTq}R%FQuGDy%7)xK=N>0&=D*s*2 z#E~gDpVBNB z@boG_!$}^KG*a(MAd)jfbTwzP+v*6uU;Rqeqzbj1qZ1`3B?`>$)lIV)OH&$7zK?^|e?AFBPnR-TQ4y6NsR|Z1uPzvE*)Uh1 zHl5LzpqgG`W0Rw5kmy!<92SoVv6Xu>!T~PP_5bToI5`O;ma@KkLFMBbz2UV+dKDX$C(aUgOAj848QR^a1>l+rZmi`tNxa&+@sdr~ zGOA-;^?mUUFhP05-1!)}i@&g(N7YAKWYa^6{q8jto8jU;iE^j1;c9Pw=7S3F^)|h= zSH2Q{6BQi5^nT$%)=;KF>B0^@B)~z=#z#62u7Nq0zT*y4|9X(9loof<_w*p{Z~ovw zNFxoC_ucl2OUEs-PyLUx-lx~*tb8E+TXOktU-+%^Y^%H@(PKEJOylH$zf-rT!dSVA(Q)V^*WSo?JXlDcj z1WW<~^Ra+ILrLMDN%O>|kXkWG<5|vZXBQv$(A=l}TbSDWA3I;dW!llkgNRYU;4hC& z!ET^01H}nY92n4l9X6PpuKJ`eWlUTehU`H~GWt?u&V8ixoHDGO$M~|BCxP-{Bwckn z#8Niueys_Asy;u;NsV*YgDe=I(!)zdErmRS4Z)%FCFxQpo+}C7f}Q13#*;|6CcTa`OEDmqPEA+x>-Y%xV(HL!>G?P4nrM|HqbEc3u!J;^-gN~q~ z#7sC7OJR0v`*Hzr+f&075dH|3pDEX{Y{8y3zh%c zE%25IH=Qk7u~6UI=H-2tM8E$!^)b4mQM+z&ndysEzU7>})A0YWc3xpkZc&&{LJ~p< zkOT;!X+rOWrZkljdO*5#L+?lv!FEEG-b+A4x^$@uh|+tJE?uMx>QO0*b;6l>X69lp zXJ6%d=iTdHd+qgo%ce!~>DN0=<(phhAh{Pmnty4(HJDg4{pIA-DJsEo-+<-h^62q> znw71a4~3u)b9RhTKId*g@7WiY3K1%^CKqz;1oaUk5(w%>Mf{{UY9_8i$Hm%rWEbF@{ney8h zpjG@Caz5Ac(Z0=V{)CCWug1a3f+msa)-G@jt9o!u%Gk&D*lcTK3z%`vjxn(BdXOS& z(Zs;UK+8j3D%rSy-)-x+iavsBY*ak8P`piY5N-_4nPo$tM1W=(^Q}vJtSlQF?Aez( zeJ_RtX6e=xj<=L0;N5hgw=Cn)=5ry{*<9r{+e>y6rkt1`#2+={l20Z5j9Tb2-&DTM z$5;Naa;@u>jNWr;GylhtD(Za2#J$RKB&3Ad%ppsJRdA>1iOtH3w7o3e!T8(Wbu%`( zai)rPv;KbLiNq_SaRC*)?1=bdYhKH4g7p5FRqIUyzj zDv5d>kKn!<@Qy&G*zC#HYo@=F*=)wcMC88*naRqNsTrRv*^rpB)afo6Vs8L%3&7X1 z!;~xV3_0b?hZA>8*O+*@U#wz7-ac!@b5%6*0C$YVXGm zh{Cd2@`zkWG9UJVM2mMmsKL4HG!f6CP1wQISnt)PpcHQSdD}l$66gJ!rL}(1PwEfx zz33C}K@e}wtK?G6#^-g?2GX(iPjc2uODio4>~;Sb2%g@%Kj9ixJh$f*WGTw#x^m?; zEe~1#p}8_y3_YJ)ig7ksQxryB{ znv*-si)1hSOVTR`<<({S*=khZgB(To%3GFlH16G7Oy>8v%t}YavQ_1kh`UW699Ay; zR-ExE)V($@_E+T2A;ZRQK#B28U!~2F1K%t4fnG@kHYPHY9IzJ?+Sm0H4tIAh0j3eU zBs2aiXnLt0PRA1040+*o0bIQ(2*j6{_ z9%;ef!U{a*y6{I_-AhtIyeWC38B?e0?dmXFr>VVC6h|E!yPfyUk}!Ig$1~ATg0=;} zn+DF^<%lV=fW3R`RC_b*rtRx7m-jkcu}7t2uT|0>s}Q{dTMDK<0}Zdy4~}29@QO6Y zY!g--`4RlFp#i5BKz`G#th<#Yb{Ix={;8^S(KhVg(j<=vipQP30H@h&yJ_<>>QJFW z`KJcwEI<5|CgtAawc23UcYo|UlqysH1xcTrw~5ho=4XQ_fFjH~;B4?@E`S7}h9R6C zl*Ii|RP&G*VPR#n!Oo^>;M)V#bq^`HNHgm4!0$S;tW<5c~rF^8ym#KdNffVpmjIv|N5p{AmXTMyx^3+j;H>mt1KcUTuQ$o%L%M z1X8#7cp{6IzeMx6`%S9~9fu0$=Nu8>7T_EU8}@n+m@2};6bWOKFNeX1Wz8D&MA!N5 z>3d^09p^y{uJwn!q4{9~E1y_jtGqgFIZ_a}c>L&1Y= zDHOEH^qQFw@%Ew7%YUv)ckKUd`nO+oAhhR1#nU9mBOqaLvdB&P zYkCCG3yESBfMRUS1=D3_f=hwuqu63~yTT*2)SP5W0}EvyCo-{c8dIZwsZrnwvS5ER zV9q0yCFODWgBZ#=@-|sJh)(vxS2=Dch0X56-s@^|QF7<4H|Fz5g^%cO_ z0oIxdMf*bK1Wcj5kq=O84A>2kEi76w&Cx14O=ehWQ_g^}!kjs;q#0*-IRe1r3bvne zqNMYmmcHu{LGrz=_>wpjw5bDNl2wzU2p(p$|8nBN*;(-uS=HRtXZeg;e5~J} zjPllp&)1yG*q39eiu`&~d!hY9`NmP8#j>=|#NpAz;@xM;^#)U!rV1B^x_CHSk`Ff@ zR&A@MiFBZD>)dP`l+d$>0biC=lgzY5D~gf*?P6kjUTRQ>yEW{SAERPs=O)U+9FM71 zzYnfl&j}p6O6+;N8s_ZIz|6>K5ZNtqq$!>fz0OHkeY+r4YF|;!I3=j-3LqPCZ8^9M zdd3!WFnYXeu*7b6(C;G*%Jq~&rN*BCeH0nFQh%GumhCFI&X5baT>UCf z!|l9l%A5U@;2-MpLv@y-xh{^z!Gg=6;6n!^d+al-DUqOll>B{t3y8@EiIYSuUXmXS z(8khRU({d#8d)Xe24SPt>x-bG6KP7u?>3e~r8cmm%}X-a-!uK+l1%H{9Bb24f3~W` zG1}DJS!$3z_U@f?UOVkuOS`Ch`Nd1ePZ-c3dq>QpOTgA*HOIg}=#n67u8=T$$z79G z)UZnSNrr>v5@XVAOP+5wleKJ*&tB!f+FQ)Mppex!OZOo+u6g6#65*~%eC!QVd@t37 zrPiHBOY?M<%i>qL-I8KMnJu`HM3ie@eO5~PmUX(&^dWy*wT$w`^e3|G>lRX}Zw7lt za~}ciipV9Xl{@?556oG<{IcPJ-5k|?8h`F zZG|NhK4ErJ=#*2QNt%41pBvxFaPV20^v3nUB2|p}Ri6267*_r7X!n15oDSl<;0wz7 zhXWU)fLMQ1wTtrSBd6AT0I?eC8jdV>K7%%(nVwR z61WUkDj?|5Nr6=qKR`U6ri6~QkbwzIA^?%P8G!;cfmdN)pDN>pq{8Lt)fPpPDW|yv zNkcz#J$7GoK*ai)Qyz9e#?7;Q$rl1~`DF-^|5SO%{rlGEj}~Ve0*hh@N|5J+lfug< zc1Z|P6v+=i{?GdfGjoIok4CXcT=Y~NIWC+M@SspMd24Sd)(J}_`|}~#`|$W^N5^n- zLwHYkM1*y0R|VEn00sggjp587#?PnE&HoM0cL%&k_P~kHf|?YkTm<;EZ*!n87mn74 zqtu@#+BX|+@APw-CDOrF;Fv&s)APmAxnU9_n_JF7owPpss=Pn_(AKkHj7%dcyy zZYJ5@;tXHNZD;*Z9HC^((-N{CA%wH`yVUt@_26yb!x_3B1|}p0Pbp-j;=>!#kS@8E z;f|4o^i+n}fU1ByEIgq&)-m=7a9=Q{2VilNii$psz{(;iUKUse;Fm~679naZh{W2> z)(r!h6=K0|;G%p`{F>C)2Z4jF637I`y5xbd&s+voWF+rqw`5!r1e~5i$K+7c3_@i} zG_yYGEfTlZ$Fyt|nQXr&on(SwP;jiH2@a*^G(JQqoJ`Y{mXSZy#^Kc;NI~TbMHrFc zQbFsJ^XK3J&V;Qkzw<@UZ-o5`9(#)`QgWzKur!DUSJVjzxbijH=H#LiGBM45h0SWh zr-2+sFLNZe2u&`AKK5s-eZt!v+X$)f9Q(^>$o)0S$Cv|XE(caob@GXiRa|{!n|Dgv z%XFs>hRfsDZ3mwjW?#|rHOwM@+`m6=DeX5nDZ9AcUSAtX?zBw1uAtiM!V57Lsqo6{DkAwu^1A?(TYUi|*W6BvQy?BOr z=L9*82F9Sls6{5X81vS>h~MR3ihW$@UO}xXInELS6^VN@a!=_E@_q`lQN;IfR-#I= zJe}FC1Y<=BLUi10nWTRgKp(Qg&n&6wHIcu-Vk#@s|>EEYniE{A$UhtyQZZTUlF)-TAXqu*20!lH`A zRq~t+_Mc%C1)N6S`KPW2YQ5XOXoZvrjNOsqgR&72hm#5fN6=?ZbgW34M|Fmn;Qjnb zkBw$&?Fu|lH?FH*M2#;kq9 zSk)uE7X?lNi6#t?;FD}SKAnqt)`u^nnxPlV=afX+}}8+6iH;=qi0+AHnbcF798LX0y)=KNX=`e+>t{qTqB72G*#OFT%-L zl9z(t|B$jdu>5s8()F$J-Sj(H1x0lP-8H?!H$Byoqy#(2*!p3=r* z>2KM?R9+`X@)qxnU;EW3H}DT?=>o58p4-Licd{qKqj}GeOO{$;ZYUTnG1TN#CrFK0`wb2W>H4>e!?!ciK<= z0ZXk2Z6PHBFh{e8((C9uiy-rmjUyZ+f|$Znvj_Sd5&CeI5!e{V@WDIM_xm*mh30gI~V6`tBjKW-9~lDINk#i81F&0$s6{Ap)F{r>dUPgWXf zjEtiFGUYFvEiY-T7?&1XCmw1Jzfdj;-LlBtxZol-($^Kw566EtMW;Ed##xUs^Zhidc|`woJGj;8OiD6xTSO&?!)qc`*NLWSOc6IoQF1b95+&>#)YA zdBBRs8uLVpdAhYq_}KzM-5f`3Tp~!UL}i|c9cxww-Wkw~#1Rf=8$m?NlouiIzTfv# zLYNw_JbCarFV@5+StW~~dHej@NdJ2+LA%Co-PJJ}lM!5TYGE>TT}~%gD`&e}e|T`> z_wl`^oRdJp^oE_s0%%6l(4ctEqV9Kk$(_G6F0@lEcB!-X2v;1%rM7~-3E@bBRPn=E}3FH^?MLYSrY^*qL5!NLMDof z0sK%l>Ab*_#OwNP!puk*xj4 zEc!Bo{C0%sD@zVZC3`lpYjrch*4}0A*ExZblbBBPVS{N-&^%hCsKz?|%0B$4kLTKN zYu@innJqi@hq5O<-!4=lCZ&`7VD$kJy{$`n9 z4=c1sy%6A;*ln^2OeHyp$zEL`BY4geyn=_-&A`A!BU_QnU{DvBm06HU86+WgLrm9n zT)!y$x}`&IQB?a7gJKeebE;z0ln8_XU(!V~u1K{7q7r+RAHE-5P6bE zba|5LSW!Zn{!Pr`bg7~A`Xd`m0Q{*NBYse5VdM)7{d;|`UZKQb%$qDf^5VBAYWySqQV#w!2n_x z4886+AG_^k<5FD!kuVLDo;rY0gOQ4ypk|L07V!-&^v%662+Fibos`y}(7kH;a=@)nZ&~%n(ZtfH z*2`-Z!>c3J)=SRRW2d2?c^^()pWSZyFUmD*-=%eZomh2vjo+^w8Fo9W;pMsHzFxET z=#u>V-28_$we`<)%WhEv#Pqhw2Hhw=wFti~ueUB=$Ft1}!l34m1gb==u=Ce|;Z3x% zrqlZ`Hz7r1)S(}f@%ck|^cdC-$e~Q07jbo%d1^Pl;Gx##frtbmC;RV0qK~?2Kx0JS zzSY#LQ8-zCa1cArNE{k4M*2o$aE~uf*O|OGHsn+E9Q550mJ&h?~)`Ww>E( zdw)4lCa5yb?`~fwD$NZs=xLoLa}N>l!K1EXkeVMIY|?+%&ds9F(ei zp7L&`+++zb1g->!t5fQ)Q`;2VVnbD^A`zbPCfG+%=7xCxi&$=OS_Czj2>`>g0C9Ze zNqXG6oF@?nQ!wa6pS!ycH)j{QBQ%}NW%~WzJBbRVi<7~0f}r_leR$!6V8e~$R`$G^ zyx~pK@bSIXoN{cSnU*w0!&R872uXei1v8`Q=+$MQ7-N3ga8xR7aQD~Ycd>I)HmA9{ z+3&wlrKRhy`Tr3v4|H=sXKQmJAS{>u;?ko1BJW3^5bx!;ymrg~G~9o=d;7ih69;$M zCOJ73Z_`S1ZEZ;w!FQHY=<1UMhvTy-x2^@o7_-rkOO(&O<1bbDJK1QNXeJv5k3O;0 zu$cEuPgfC@IA4%6F&5X8`D6#$UpDyhAF1+DxrYWmHGn;^={Z0zIQ6bR zaeIKldYgqs(Tl($G8$rTDC0D?ZK225{2Av6a0bXz_0iMY%-e?%k409B-rm}q7YmrFE~`=?W3^3!+hG2?_jRTd7wjBpSbO+$(vII8~#S-w>AP znk2r%-uch=H>W2L=o2l5bMw!T`+l|WY~!dM6GN{ABevsl2v+U;Do;rX%;$#ubK}}P zf1s?(wmR*+rul| zpNtH-UoQj6FutQF6Tv3?*@YgEZT{;elq3gZLa{pJua_8Wnv-V)Xy?RT-Wg`2>Vi1X7pxT$~Wo1 zXJ%F30`_g*?9deR2A$mg1q&G>uE?#HMs3HFPjA&&rYoT&>+j%RRy=j4z)U}H6(=((6gto464J5;RN^v z5d>HSgm$4Bbr7{O$#5TyU`48;m5FGkDszvoAvJdg!TDBb5I_VF$BZ{ccqvrlQIM`K zP931|i3DtC0Y8HQ*&qP*7FiVXDi|+=Q^)fLuUKZk%7x6vih~IwOLOsz>B1Z50(e>z zNSUeu1O6*-+gM5I!!~_xR?V9(f+gXoB6Ua4o|CMCtN+U(WNhMb$NjXKXu(ZwlfPMx zDwaMsE!WMhY;64Bp|@Qk4!6b9(b=YfP5p=-$FYJdkK?(kb-Y>jhF2s?0)A+kwU5jl zwb*vjdf6#b>|(pbs7-DUyq1LQ^%*X_h8*?om>N{%Uo09B0e4SlAR%SD1fa@AY9cH$ zk&I`^$*8bF3+twJhP%FAj;pyI^Oads;JJH(iO18P#bOG!DkMCf6DgR7QN>{_00n}F zez$CIR;?`8C{KH=oUAT}mNET`E>o;wZw}1z%G5A9SNzI8NooC_gJK|{E#w1(x=`lb z?Ms(}25I&{_4%GnMiynL1D`K!#uWybIU&&oTov9b+he5-Z@LA!CQopuLze#65pa*TZ+&F`S-Z@>sGR#MdLn2as!#A?gRy zt6C91!Ra88hQ>0hopxf1JP$qN;1ulQm!`6;h#^Och>7tf+yeXtCn^T{Jxv8>MA$}% zA)}B6Of((1JTo*;blNFB&m3>uOEXy4X-vPn&`Nh?>{U*4TEw&|%frv%$2k znbD5!e`_&gsbZ=8@~iVPL40Xa(~4gLeHRBxCKn!wF53onQpekaFV2j5hy7*DJnyQD z_)^V9uwh;gwNaKggZZ!1S6|`hf$`?Cr z795N)4zJ%F$k~K}P_kfdg3CyKUm*)nX3tRh&=NNoX~DMy(997X3KIOlMDy&?yp)$I z`tVuh^zQ^1xTPWsj z)TSP6NB8>6!xr5=L>>Kq-PuOl9$Js=R)`iJmyE6wm5201MCD@(u@56b-Ip+W;z8&C z=RW+gpXbi#b3vNqikds78S-VQhLZPQj6I6U`N-JY>W35d+|7G5{a+=W$tx7+ucU%6 zud$B7$_c9Tcahz?5}+ekfz?RaEDt+yQDQyz-gk-hXnwH_>j1Qnt^mDoTND?1 zCW=skOw*hV1_ZdTo~q8krzoU z@0E4@u}a1w-2-C*gf0k@4nyQI0Rbcz);4|U4;i7b5MaQ$2R48t4IVC$iAtB(66reX zO8NI|ZNmIa6YH*~=Y-GNsJoU8(!Jw;ms|pzjp}Y`&b)Wy?Ej}BH-6c+JrgufqABBO zOL*JQQo+reDWaMN~^aGF``HiI5@;oOUksbH31V{TM}6jPJlt2B^gi)Qxv!Wu0O_z6$}iA#I)&Jw((@u|5W*x z2%5DyG>vWj`r!EVjy35SPvo}IZvn=N=4+{vObz=MdOnW++z#aDWd8W{K6HQg#Ha^UzM< zmL@QHESByZFNO`~+z%izG7`4KffU=MDONz#7SrX%nEnV(tV|((N6nxjGMu8;rKVv} z713WO)p!mLAmO{1JQa*_UkSk~gdWQF1`uspf)h{_5olu2kN6@YdS_|m)G~AGNlv4s zg+RbN*%L@++iL2o#3e6_E36S^U*Eejg(3QG+fy>fOa$8SLBfnu`f>Qp3d|MxRcPvj zs7-yc$bVZ`t{jx_8>f9`gU6mNPyYSiI<yGEXw3-f0!9^iJ|4)8S)WW5Dui-HX>?I2MqCgc1T&JYH&IVi zx7$nvqQN7Fyv!Y}O~)ytl`iom3hQOTdE6&yq?w_bIYI~Eme!n)iII?1Eh+BC67*`; zFx$%Z$1A<&f|q!owa$|vATLI(@@P=bkrCH8V`TW}-j(s!a z&Q`T2p~deZX>7uF&7o!Jza*H{hoRNbsVfVvv)R3ZJCZ!DAxmgt|A~|B&DzJcR)tj` z+H1Do#6J;|7c1yVE6KTv;Z^@oV>ENMRK@78`SD(Ik4yFFC1I`va0~AZyG`0EHwXd>#iW)9JsA`HV{p>K!7G?M zRgaS7)Q=ZXoFb^;m@Rf4T_?zdC6IwFmln|5#GJa`YZ92-Vwt_`T6Xmfr8wxZ!$j-M z^0>|1AJ3}hg`XR0ce4QTl+t`3a%VD{7iY@)L)-uO@tIlh!{aMEZnQ>-pr_&-k9IFr zue4`XtOa+%H@^SZNb*&GX6Njx|Gjv2s_oR@*g{Sy+H0SWJ4bu4Sj0G#U~}q2zKQ&C zBY`7xGDAY5!smOu%a6u?B+bdU%btnMp5M`8KdYl#KzRUFU|kf*x?J5Cs|&zWtdLj} zCYi=o-2~ts3_^R~nk55v6M+##1Q!x5jsm4)Bv2HO^B_uiMR|A^ygaT>d6o)!0^})* zjl1W*Ijz+%UcmvNrVQE5zz{%U)>Fd;ne!WO-UL;bx%wfBddx!d=ZAqs8ubPXUf$!+ zpN@r@2+Ll;g>x-$?MtG!twIwr5>5fH4R%W&R=?f-FZ=uW5>b`jo7Rd@5yis|nfvh- z8|d@A1sU<~>k9>^u#Q9RoQ|!xjFBB3SFlPn&Mx=xn6>PleAM7*nT^4p6tzM4W6N7|$*b}sMwq_S_f#fmB}>V}w-b??g> z$!=`h+?s_|X;cF!L*0{@Bvu`senq-OP=szb*`6t@m(rb&Br&Na_QFKRn7WR1QHj8C zpKieUG0tv@ZZKkuPK~V_z`#HuNCC*}&IA-N{S6ip5m6?waVTDl=IwiHc{<=$=2xm> z3AH>qP0LL+r$aGH@LY)Dmx)vBlF>WrQy+3PoXqZ@_qz4OhRGM`9mhYrRfuNNWy2hqvm7;ndBf{V1h8qXY>aw1gsRkzyi}K?V`ZJ z05ljd1HpL^0%$hObhym!RIqM%DS-A66)Hi;Kmh>Ag|HZa*8^#R1oBv7Fjz&QqOr}X zPQNX{X#@-b>M_G&2TaQA%enzVlDPcB&Ffoy4rc$NlT{~_2crA(N-=}8b}uX2w?u~u z6RS84iZVw(2oMz9L@3#fuPi}8Ek1HC8aw<*hd1+DxJ7~5&`N9qf40H(_Lk3yL!uJn zHZ3{~xl&pPS&@&kif?IpJn6fDB+JQ|;X5%ss7!BrMVJ0ZkOeQ8Yf9k}ATL0qBAe z&YxpWzn37fvjB!snGtm1?zL8vN(eh4p5cePyfGT~9G*P|F%@q{*-W35J{OH|OOTi| z1*%o#vv2KGRi|(3EQ$-p@OY24HFUz?ldqSPyXQ272%uUJ1<@gLWGnb5ZCo!6z1iGR zuYQe#En=~+?E+QrOX7;&XjK|du6Y|_^#H8o(SQ35cu8zpI3|=LK?t^X6b+OgVHNY- zNWYM2&5e?GxYhahw=N|kQ`p+lB5$~#iRNwOW_Ux$f)84dS{bN))iCP}xdW|P3>kbd zQ+h`%*S!0r*a35-!`N@{|3TC~KCV$D2)yu6fOw$onR=;zNjK)f)(B4bF|^7+L7HZ| zPfxw~#3Y+jo@zuHrr@q%^JCi*7i_5PKmu6|D+!s3_#A@u1x`_5tXK>{lv1cn<)frK zl<$GTV{kR32Q!3XM*xih)F2?p0R3eW+W7&7=%kgMrZ_H$%9@qHffKVLugF2xL4~mz zQNRo}5%Nb#R|V+tuhdIdOEh!Zlf^ICqXpG|A|lM$Yl}>fL*-uSy2zPgT#lEW@PU(g z!h~2$am~g>Oyl;5n;VvRlj0fNZ+5BEGdq8%q+7BiY5M9&ePn&+n@xCGgzZ*YR9wVP z+?F25;9P00S*pIrux;}KE#aLQ^5u${*0x%G$RX&;$)J;EbcWntqmHv_N~XWSp|QUS zA=8E>4V0o$*7I_B6IK(oMh;Fp)41Gh;tQKdc^h%mlE7MZ+&ftp8G%xf(hJQlM*^SC zv+^!71DZho280kMejZOdn*TH%Y7$OxNAaVe?u3142GBS_CQX^u+W5Jgkl-PzP*H|U zV3QZ9KrjZS;qWq6n)P?&)SI|8Wi#rx%%B%!xA{|*5fnx|SC32!TW))JyAaQzNyg*c z_0wEAp8BwsY|bIaOkpagNk%FbFl04ZNaT?M&`bA{KV6r?=%UHUYNl3k&T-~n}K^RXI(j$&Yaf_o*9u4yvMB-C##LwR*OHU{32o?jO zlC4^(ct8XUJs=2>0cr?10Ur2xAk*3?|gpF5BMVbO@ij1zvGr|3r z0ZXhOyB$S?`NE`1AEx`|%J#4huveZ`IouFq6TAIb?yvsG3$uaH+)hof8F$S~3)EW{ zyPH|rx(zo82j|S&4pd9tf2_MzpjvC$yo83B(5mZ9@eI_UW9p0O({K+htS2_Efe(#M z2B=eDc39ZMqI@hLl^qZe9?C&YhT{_9Bsz*B4wrZlDET9r3X5%s=Ky1KZ5xhvxcsfi z0gpuT2zLYs4bE~HIg|q0fv+S%9jJ}Qsxp6TPDAoQ4=!9x+kJ40Ct<*`b#-5O?e1Sw)Pf%c2_BxsSoI`?Iu%Zn7BHbk6c{=9Te z-6-ZCcZG=kBogiAT$6GR0@oDkFD870Z35IJ2_mQx?%qX$5eSdVk~vS8p^^HH;0-(k zk(B}Q>M?3a0L4fwKzNvyR&wqhZY&B-eU}R7ssD`Yeh)6p5mV;p6&HW5BXYxD>4 z{MGU)@7{DqCAWLy!Iv1(`@Mtk5eBz_hejIfWzq7nD?F=HaRViODbjE2zM9%;1f|Rn zI!6(KZlsa*AV0{|^B%3Mf`_k@#eo|69ZkeITbj1P>>k)r=nYfP00!wImJ3{`=c!kmUGW^->}=}kU- zb|jx|8ToRCruwwUTt~18%u0EnE;8{gYeN3#dza-AMi+Ckwh+)Oc$#?{sso3U++?ujKWQq@}Un=t1Piz$RO|JAwBsj8?{p2azGW zvtbTqmaCrUZxm?6w)*-8JW_tmlvQx^8^k8auwpiWvoGBA$#pJ|_=jVuufN5WYd>pl zET5?lv3SBi?Sr$+!_`;6Rd-FdT)2~1^Fm_3^<#^F@_RKqx{*R2G7PMpL6@CP>lPr9 z>%84u3%7WfwE^q$P97TCY-D+IB0wAK26qf`go=>ildeoQZ%%T(-kwO6;A!!h*trqZG^|z z(A2!fL(W2QJ_&7`kYw^Z{_e6_LLj?M_!)9J7A_bP=w$6xb(h9vI7-V@%{W}}rFrK8 zBXj$Hw;V!do?Fz$X{*YaJJyRtWtlNAfU8+>)LT=iv}qy`d9azrdp%xJPOFL}<@c^j z)X6IaoRCF~KiFrM<|7WNmhA6e)%MC`-TlOFZXf<8;ojeryn|iSo#oCi(yi2Im84I} zr~}SlSSkHq8vb_O_kXvK?LQfcSs3nFE0m_)fHsJ2IWa-_tB`XQU(7!sS03`eaw(k+ z{qd-mJMr(eNYItC^UvOQvOOrHh!=KsF+@D(ssK<*V+s0Aibr5xKtiEAe8~|>U}6}% zH9j`aJ$3;=qQ@or-tM8t7kYrM)5Y|Cvyb6m5dGB~r-61X8ij{L8DqpBwPu6OuS(ih zkpu2K7UHrro*-f|6gF_6Jyph!t!VHpBk?s@!I&3+%9S@#t6&XD^1{cZO@np{$Q$m@ z#9{8*@{7pquD?j;l-GrlHx@U%tkWB_U%P%Y4LhF1jR&+^6pcz-_sV zhacQ834SS^Zk1)%#`eNMM@i4fyHCbGR)>yXR#f8ZW!V>cX6?TYIM4N`-Nei{pWUc) z^TJlIYc98h-hX|(csoIv#mTm8rgdeWL;uY`<~)y_M_wmDj>{8zoi<89?|iyu=k)s} zF5Sv)deg*F#`!z>U+V|^o7R#Ob%F6hOI5bX5$@;N%ie3yJVfJ~*7tuC6j@{lJp>#W z4ud`x6Vi&Q4)&LqBi0~f$Ho@a-BKEpx%_GMV+jRiXJga@d?2R2`W%xlksryZ%fO@R znU&4Jz=qJCRuf0;O(FveCtaKc7#zpWkn_@(pe4aHbL#r3DqTHB4p|ulMFSuAb;7oI z6bdv8d!l~lZM+=zSKJG|O_nSPrLafRSFBXnndvh60eg)|s+bjtIs6E$6fjI&trwtjghAucHFxBj){qr%cZO{4647er7 z4i7*Ab{G(Y+Ajw#13q+hD~|24qKDRve9>?hW3*%Jq^oF!o5^HoY~`Cx(iZ(P1+Q`XId0!Wf%gOG)8?=`1YzswMp z&jof;FI8it@E|jwu_6N2D+Yc}$Uz1%OwtpK_?pBBD+F`EMujNWfsz)9W1;yR1Sir1 z7;ZLz4l2gy){#KNV=v!@?1jp<%A0ol<}WJ#8q^LrwV4@@x>Y`UAH1BQBN}3FGZIo> z8JN;F%VREU`u&CE1qSc>@$asykFpGEUA=0hWm~*omaQqeCttf+aNVm;{_Qofxw3g* zQfG5hPPuE7W!?M>w|T`siZ&A`XUJ8k{X8K89lC(3pKjIJ|9t-U(eH1!|G1z2%Y2{v zZ|C>xqjxHAF|E{Q{l1>NV>Q|tX8NnTZF<~vKCe@gb1k^d-92pfwW!5C%Yu>BgS)v6 z$*c=rbJd|<^T*#BcD?S`{JHmhtNa0>$S`QT*+a(1^sqVlKB4QPa|HBM!H&2I*7!#7 z(`|xv2g}k66t4dwM1UG_)&yy~sX_uF5HbV*tO=n@jbVkRF+rd+@(3pomkc0^#X%|! zCldw34#PR9Fe@vjXqgMqlFY1VdV(6*PpVicI|*NQK+l1Uz~O=w%uw{gYKkQDh3UzR z*&c(j(nMVbl8{T&$M9|pw|oF{;~0R7OoCK*DSk=f&kqI0GXkPWiEMoUa?Xj0{Ft=q zl{<+;`C~beYj56t?@j??skHI%#eI{mV;CM_!2%!wkVdbVKtLj5lgd2!=D>9ss$K&Q z9B^AD-Pun>cR}`xQC#H*f6|^*ZIMj-erU%Oz>#;KN-AvqohIf}1KxT+^=_TOlpZrH znYP3fT?AYD?=3Mt;J1VYF%g9pl!=${U0)PfbQ{*SLL{I9>L~v=bVCh-a^3@gfTC}1 zn0XtLawT6i^SUNM;0o$C`Ar1CCth`&eIuy%>DLCuvC4>U!$3iiob_KCY-=y)WZ5C6 zTC;w><6J^IY72}wt!%zL#xKtb(yHhHNJ9;VC{4u=wwOT=OC^G$@{Chm zvrmWVg-IZ3tl| zEcioB_B4q=vp$?O`L5rD_)l`~YDEHh7Ud5C5yTmo{HyzqT%B*uqWHo2&g9Lx#4)vb zt9jV2Rwz40UjHAHyf|__INyEk~#u_6wX*zMNti~_A>!em@cq6N01IXcg!d2$&e*2VC@6>;_8}DZ+ z=U=$FijB0lmJe9VT1#1IQ;KTh{Kltwb(p&R<@Tdm(tu+@&$2*Sepl@@{r$%ko`1I$ z45lg}Icq={6s)5>ZSejUO8M)U`@0cI^WxHyx!C)wcfFT$x|wIQRw)NVb-m?lyDB5c)vkUfna6vp9MZ$P z;_f^j1wIb{z($8@$!GgHjz&IN3mY1{eTV0r-06hrHs}v~afqnkVUw}1f+TfCL-yEY zfKO(){V>SF^IvVL{cZi1z4}Z7EgJ-EsUer|)WSNp9?U14pZ3aQ%JZKwWj}>KlOy70 z_z3ew2Q1)%6Cet-_vC#f1>b!Z@UTzZKc42@w;*`D_eiI z7{Bz`WJdUn6xU&`=s(HZwT=de)kSBanCp3#EzHA}TMeS%^A@*Aa(}Hj?iuh1Qk=(m zD?ScC5cvG-=q3J-l&@n4{hmqOt|&TE=e2rQ%ck*neT1Ig;Fn{D!{;{MPiJm?c>L7) zLiW8!yf&9n*JXt{LchPGXY{&GvXtx#UQe{WjDEz^yIk9LTg)xt znv_FWU}f*WFI-N-AC(*p`8D1gt6pZjE&(*_>nf^gN{e%P_kf&A5S5ucmR(7g6)+<3 zFcLg4GJOTI&G9th5+#c6qU5;k8FI23Gk<8$HrSUeL1K=EOpAsb$LtAx$$G3NO6vWZ z0BXed~=q1zyuQVH}&5hE?lv|2Xe?{GzXd z_p{r|w#+5A*DOV2KM!f39;2+R?%6B`&5k?W_Eb51>1F+I_A|lJnnT&qnitm1GS_ea z9Jlwanprz|;eE-=z;fmNkK@AUpGYrSM&;XIdd%1Up2_z9uxt5R{{zik%eV<(a#s>e zz0Xm~DMEByS97vb&i5db)ez(gH^)|SR7y#gSZ{MWAL+ztq4LV>K1r49>rs}a^8#$r5D2Df2K8N;w9F|D^e>kP@kV}l;b7d&COJiM?zpdcWtgZ3>X~U z6DjP7Hz{Qi7}Dhaq!%Zhx**iV9P#j4y;aY5>qOt223746A8|9s1U^mi43Rl`uJ=JX zdg<%sqjq3?u2MF846jjcBGm;MmSQ6GS~?E^eVJ$^jAIeGEdx~N>pIbwMX*6IlM+A| zxYz78{*I02g@;~Sv?-;QX(!&V52b=v%JaKRjY{wa<^d528}ndXRDz^NCp%rGH_Uk3 zSTa6O3?c;qPBs^UuFI_J8=fIYx$^K+sM;n|1tVZ~+*BS5?C`6*^TA(S`#0%a6TSPw zY5FXGBtY~7p5&8b%TKmTqtNF$Jj@?_W<0Vd$AZE=rv1%7Z(G`2Ey-I6uYLAxIu2n@*tF2wM z)xC#@&-Xc=M^Rf?8%F>u`$$puwz;6&C6Zlj`Z^jAwt`zZol3e+Ac!6$yt{W!lSivhp)6-To3&7a9v+_-303U-US{PurSZy$sc{f znHrjI;5Jk5Y&H5$;*PGG#P6h1m4+FMd~br!nFM46wJ4Lf^|;9P#NPk%;<(ntJLDOu zV$*rCs)Brn7u9~`+&UaH!WkP4YD~jZgmNEo?1IGl%-!d5`>f7>@qJ`PMo z@ovtnWY%8Zqg9`hv_U(`+r@vkd)`C870NwTi}XdaMgg5f~HSty8J z7X%d;y)c~@F(D1a_YsLy8yVbq-399D!+XPC&7_m8=-wZYegI$~L_s%PLJHtSieUrT z1|$F{@_OU2kG4$$FR>DT41i1!ifGVFSVYN08`q9>m|a6l>p^KU&e%Z51MN|%anA^I zwa8lV-)N!R<>N`><_x`KOIZq!s5O%_*PHcN>qXXYDn9=EnwkS`81HW!-q`t|sY<+a zN5+oybmY-5lnv{9=LT4fzKCAYIweMyzki zUh@BL6y_Iy>BMl8DEI!d|Gn>bFNlsmG&jGouDJx$F0s=9RK_yp(~polpel0d!@e!_ zFsi-7EpAIti!1Eyey7yxKqX~cf2!X}YtHb5L@8}duPNLKS>yXT1Wj6$8j_l01ad+J zn0_#3xXP4EDjZFL_eHT!_^{MXzg5=IkkI6a!4neb{Gc@ejvj%Hf%WF%0iOYWXM_MP zLNZ=J$DDf7px&g0%TKw5I4@-%$*iI5;q~$AS6B9FzuFQPXL{4y_s2vU{}|jq3yn)d zjJGHFotCmHziQ_4^sT5j<>~tCL;IzQj|CqgMjxffh6sD}=$mKC#uQE+v9s*SyV7k# zB!{?n`w3vO`nuFp>42E10Uk0y@mN7RJ1aO6;DPiDOhYu%&&bJieJqT3pL%|`w{Hvn zDlAcUu!Dc1=lGA?CiZ7ZmvAZ@(V1oyUTfb%zwsw4$P*KUS>}!w?w27LV*@)B1*ahC zbH=JIU$cF;c!xJ2xmh2U%^&vsV4My5yx@Ex==q@DzewrND}D#Jon(VjERel`UMBbr zV{?FR3B&Rg%He!n(ZJPS^az0R$hY{gT@XhZ!Sa&S1<0FnyZ}lO9ZRFRpmLQtnNiOP zJdz$Ia*9IniZ7(o*up7mr7I7i=X`mDIWh%KPUA4h1WEQCFL%xEm~ z09z5PiEo_;_tQGliXzxHz%N=);SUpLZKh_%o5zk@onLAg3A(BGl6{*i{FS%kV_%xg zS==q{2>lP@1?ds^qVzLaBOC+SP?z%Z<`SnNh%)KCipm9Ku?*kcX}inW$4FmHYC|=W zg3U{J+Ost3*{$-aay&eYMaSd*0>jS|U)c*>X!lgX)Kf=~_Ub<>4s&QJ#Qs=v9%?02 z+ccPwThg^^G3uH7;M(_FiF3j?0;*;=GRht5o*aKYn>@dBl_lYHe7E#^z+nxOU^NgA z;LO#I3siE~7-^1q@*GQ{)BOwwqE6EMQng(GxmXnvM8Tr!F+-%Dqzokt>G-`uNB)As z@>+R0} zpfDu654lAvWo~gyf>Hic|AGU}Rm7>R8_sb7&lOAt5N*rjHL#9qMvRfzsd{Vy49~(B z|Im-}gW=v+(ue}sSPP5uIZ(ln3QB}Uua(e96g63@eKtw3&zhI@4sWyo?k7-a>V;yl!tx_JKIIBoufj^o@12~im7?YoEtHEv0e+D%0Ze9=_wxl>wTjqH;3R6)M-7k)X>3p@8XufAu`7A}= zA_@94J9XHAF8y@fFE&R};)d+#;%pMiAB$zwl9)u%61N7?xX&M5I}5PxoH?l;$A z@00XcPyPFAUDH#%Bv7J!B87WpMNnGEF!s?uy#S{pdJ_VU7cPoFwXuKo*g;ZV#lJ|!RyB;HhF&6;7aW?lO~tW7 z$&~h@XW_jPn;@8a6+fMYTPNuCH(Y`f`C^f%dRya=_8( zb+iW0^{X9hw^@io^Y?k1L!ITUgPTy*Gzrf}lFK#;KxpkI;m3u*Xa`~RVGfC>JAi{5 zgL?pqw!l5mMDEGrg$(iZ2t_6r=1&)BCK8+na2A8x@SM@ceL*nil}UzAKrC4B98mG~ zljBA13O0WR<5?flw3<3KlZJEn1O0vT`i85UqHssZ{kwRmhXB27QFjIkWVvP#cf0uM zI+#GzYKHXNFA$reqG4Rg1vv}55}V$+beQ3El|eSyv$*T3@l-E9cQq1(DH?Uq#EO(X z(M@w6e@ik%P54>9wRHMa79tP!!T>;adQC#Wf#cp!atUDehc#)W`3(r;J>e?95X>r= zhPVTp?FMTb+Kt;&zX^?C4VR6w8dhjK=>Yr&e(Kx+(N~gfVliT$1v_+N&jN4c!G?M| z9KZK>IRmp;AowupK}>DKos+@JuX3;)Qjy`h3xj2hh*~olQM+fZbwa&qqF$}1lT9v3 zz_so2I77btI0H?T|KadVqF>@JIrS^g9Dx|Djp`7=fxhS(w*G?uHcVFBWs9O3DAp`G zQt$Al33zyJh;<{rd+W0<*m4VD&-7{Nm!H&J-pVH<2%V9@a5+NG%AyS84jA~f5@9FLXOihuIApW=(IMlw zgqHhXWg8=?VTzJt*E}n~K_|n!YDu}M#D?fv1rsHO4<3dckT?~%sQ{-+VBJVGB|aje*_oBGonMm1%g@xtZHyK2WhB< zH92)0#C#s~o9SpQ9oY3UXm;&kJv6z_y2S}{{dS#@;h&C>u%PBH8Re7cE1nOgR%WgK zCg>G~ij;r4$6FA8zj5M(;BDU~d*o6pvi#}^ihD|tjQLAv>7bc25YDK_g9Bw6PEO|W z<(4DcVitLVBX?c3EGxqh_SjL43X`beBjm{XUodn)|9NUzYAu1~Z7bF-t;YUoN#?Z1 z@%Xv(6PASPf-!>vkzI4)?QnHSgz`3@2vcZw)GI9@;P|jc0FdH_H zQXP+FsO059*j2iO;4Kmlg+}7%-pHr6At!Q@sAg*9Tl4)ZlXo;zhodx^*99tLOod)H zh`#}6OZMjZiBvViDsH$x)WL;~yyB)MO(`0$?TKm#auG}jnPoJv1 zJCtjWh4xT)LTY{lFYZL2d^Z#v&#LWg4uU>apg>5Z+xP&iQ{K?3WBG6GepD$kNs`!M zt>$~sXZmLHZ=LXEPeZZ0e(H!jP~?f2ts~^r&Z-}7)=8}TTTa5_!hYCU^bGg z-iY$9zk~~DUz(Lj@tLl+i?w7=K`FQS`DRXsStlEa>iqJHj&UW@b6AEf$$e=qq1B&& z)6)~~2G$C$=VUM*$6apsysob&hoksL&!r29MU!E3Q^&T3O+BFNSMm+pd1=*Wg0Z)J zZ%d7v-6hU<&Dqs}MgKi}-<_Iu`w|8*5f8Uj*#=T#bGRq_7`!Dy2>FtrNbhsdeun(^e-YernK;$@B=DVe~FOor38j;=Lsr z4AQ0b7JF{LxSRI;VSC4W>sR$kpZ3-N1OdZg6AXdAhRAgY66u@U06>C`ofu8Yd==(E zU^t#Kot#0hu~9_PQ$w@z-6~n3EJw(Z4X79&?QILv1Q(FB7Y@^A0BKOVtmirbsfcDF z6Y3UTKSPC6iZ_J&lcRzK6|o{PCk>Uu4hl}*iKIszvkX?!F;MZ=MWB@$R*dcs7Ay>S zJLq<9Hh!s5VOh9^q* zeXmfscBHUo9Pe@7gs}pVfn?!4D^+RrRN;AAj)|TuHg?&2boizJ zdG1!po%4}GfSBj4-RNS#VbJc*c>mUbLh34w=H6Lx4XB>n1+kpfEz8Rv1gFKrCGK;HJ&OF=d z82|9e=)$=(rpdwKUoTi+Fx8T|>iSh;&Fnt+F^w{v=~P=uwE%Gq@YJ}-3{}VL>Sj}v zvZ8*Jp_xi=R^CwT{TF#R5C6+~Z`pUB=hpA%DUB38QalSORZDXZuQ0*IYo$?QZreJ} z?kbw?Iw&i|m>z!kw`A4=Rj8L2Kx4}bEBqIt?+h^@$!X)38S-yFA7h47{!J;PF;IJ+Xc%Yo+LBeR17ZSzU zE5Qz0gj#~#7|jDBl99b`_<&py&_ti`_QOuDEu+^qy>JtV4yUTBvLKJ{dmz)e?}dAZ z7{KFX_!FuXXJVClG+%7->N?*zvI(D;w3CtVTfbRdQqkOXeCeSfAh#I{_CxDu+wF+C zOKQB1^a$^L)+Qtqa{4aIi2o&y(rK$in@n2uH;pESYhQSe$vpCt`9gTxZfacSp^nfgexg@f z9X)G_s7i&G4nXp9DaFFCp;amg96SJWMYvX`|9~wKWBB{bC%&I^Qm!q?=Y5fs>74j@ z+rm4+UfO(E2n=XnqbCu1&4JZ~4V0^pR-su`S_d3aI$aiTSdz5m{PCDUofH?vqquXO zrBv&5_*UnOH=axNVquM+6~EP=J+YTH{h(v-6W?yg-`TRc`Fk!;PJZ@iIsNDP*S7K| zCFm3HuD!N5Zgoe(#pg#qYNTY_;m{irbQ7CHZa6+2&S$XxQHj z_WpF(rByin!e=qEwqcG6LV_e|Q-{O0CY=_xFXu|o0g90om*8Ru4!6@>0LE(nD!q?B z@wjOgEP!?A&CS=0jQtGOG^6SF<0YYczIdPr+!&r#C>=#dB0VC{ljuXNCfdwRK&CqY z03Sh?1Q0?r#ye|dPLJ5^2a=xivBaN*t7WUXafj^|>Wj;?Rw=~~czsms)4THg*QSe4 zPrS=p#Xs7cS4v2%%UP0=0ts1?b%uw)V5X#_Wnpr?c2X+<>k_jtqV5;zl0HTyA2O-icjP3Cl@*8PBJ zUrg3b8Y^dWpmEiyv^n!2RM?#R-H$(0_Ti~EI_)l8eoPhOytvbAAxd$&b2v63v)GAk zWHpmQ5(Wr5py8h*AdsQ7v!pn#v`9G7aQaRhSlI(f7JjYHfqS0``30F0aY0yW(+4X_ z1P*s6qo$9=5;3?!nK^4HJG3llvi{v1(S69{~f1IA}|XLuW0X+0s`{^djq@F!Sq|B%Hc@ z_dXi0&3!5~wa1!yjh*?UAlAdVn5EkmrKJ1CKCmRsgXhM!0eUM?4N@{U^##C2tkl23 z3K>0r&PJD4ArGf=yKV@bhpXnC3SG8?I8@YLzfh9+r`mEUPxl#_ztRhqPn#?@9cOhl z-~E9R^!E^+srsBJlVRxnZ0*&-e)HddL7)5o?YmNyVUFPdzGw~qrV#mb&nj#H`wJ^*HmYv45F*XFNoa~jC*f?~qNNmZ)CjB#6Gdl{1jq}u2y*iyaR{I)mXPp`~5kM^QWDYdAeOv5M_vsZV z)fd>P7uP?bui`u?O!p6fM4!1fh+jd&iOS#I(-Y#`TDf7-peWR8u$*O~ zW@9%@d8zSz=DlUJmwkCfbrZy=h=m34&<62y+pjhaoCFB}*LVJ8_b}6~7G;@XR2A`mY z5Fbm8xh@d2YL4H(_hTeYqW7cXC}j1A>z|?CoxU}Rv0nhYHBu&+q<==?87E0y`x2a8 zY~lnU@9>RN;3Puz+M&xQGbHFx!FeoG;Faev7t*P(ln7^sM{>k6*AY8I;E{<&Qr~LU zSNT6}ICfyMMvOK|GlDO)py><3Uo)QN`e`qq;lv~=ZU^HH&O7iD;X=s5F#lQ3Gj$Z% zsDOPl;|f`?w}brlDIfb&0S6`nA0PMhIwsoBFNv3XH=NMUu2k(?xHndul z2_c$a^y|_Yp46YgukFuWKg&AbaqcTQ`^Cyvr0AD#X}JWKBsP{whT1@a1>3+g&KCnV zx|Z{#PMCtyS=1>CFfAgSueS~vPDzUjCq!uH#rCd+GZ7R3!={;`RbqqiFGSmY%cU8M z2+no%sp#60Br(=$Mgk?7;VmT3@iTVhOl7~KyE<$L#4`NurauJ$!x|joex9xyou()zHy61DCHPYtL-&HbLYiP9X zaHunUA@}pj?I5PBBy)S#nf#NeB6|DbFQwlXH*Bv*I9ywsd%bR}9;_`2b?Kd=RD;|1 zl+7yDnCq-5c5az(nsm~xzgNh-{qj`Be87ocuBCNj^9C z;Owc71M*A%meaSS{@Psl*Fq1F4*Tuc`3@)NAw0)%k%R)20;k{#fyWf!elT_xLiC6k ze|HjuqJafQ@I|dgd|(u(W>%+$kNCK0BG z65)%-`Gz#e;k5?GvE0n6DaE-<6LfT;Tevy1Z|j9oi}p3!usk+aHMuwt-%LzyFL&Iu z5?X#|JUu@~J1vtd{b_Ns3J4`4LIKm{gZcRAv^L6s=mW(}!H-xofT#)=_feH=uoXFS z#^vFFSU{C-_}&+^%)t%bg(;Q73UFGnlETcZTqX|QB4h#lD+>yubo~Pl%V0>i*ES5Eip2Hqy-Qk>z(xM{RSX~P0 zL|mF6BK(Gm6sNpYHV{Jp+Z)VwPc>Z;o#0adLZ4;`4ZjPvce@sU@h0I$2lENhvj2=~ zW_C{)aiH>;mQ!QDR+H@c-JZ7jB1sn;xv80VgS#tJsZ}|Tm4kTf(tGen$OWmq#W1Zm zW)`rHZE^X{PfSEix7zv3Dv?A}$er*qj>U^5i9A*+4iBc*lB{LJU$jVdH*{n@`jUqE ze)avOgFQiVgg}&1=Xf3Ujk1?LJNu@ScFnbnQKzQb&fB{}qZvLr3(-9{<8Q292OwyD>+C=yn_N8iF_eu_kwkTzz8vl>BJx`c3h4 zMXl43mCn(Vf|2a-7Wl%7-*Z*)bLgDbK3V+6rGxa^gRTVa7f;gls**O2kb9`MiE+^W zM(g&_ynH^2xd>&8XgG$X=;=H=4!6EIA9+Pmo~@w`<=r*x^XOaq-18fA zCuAD0aX(sHpS*f7GxfUl5>uH!$qo%i$o(?HVYE@- z?sPxnPH98C;#{d1m1JK}e#tV&vB5gy3RC{OjrnOxmo#k|?V3qX&h1TTJ}mmZ?YTsR z%mFl+2r3jz6_-lVUgbJPND^d)OPf*+`KkR<+OegqIvc0~T_*$xYYk*&TKYTbbGplK zeq~g{zc#QLaX2FFQkL8IG><efpBXN5FX zZjl>ezn`l7e1JK5O6K;8X8lUFhiLkry7MK;10VOo_@_?W&t_)wZDo1kx`@NupDUWY z-tkGHrlhg27WxvHo2>d$g1JOot|2XVo_wc&oZ8o;e$6CLF$n-9SLh~JcOpPygnsNr zlK~0GG}kD-=mEU@h{PiiV>|?@WO;&w0NY-hKJCN}U^zyi_-P<$o%B`un$r+3?cv)G zq>||iI&-WrxeqG4A(1iRh5)Vn!wn^-l9nCl`aCyvI25lbOdRZo^Wl`-DJmX(QFs?y ze%}ghzmyQx)TxXlOL{mv#H_MwyqJcgjeeqA0ap7T!68JJPl+s zj}%K(JnxnE+C|2{vZ?>0d@c~-O7xI3`x#AmBNShCn5k)174PBDZ4oY*#(G_8%S=uo z&?+JR5A`4Vvi;m z1({}IG;`vw9^)kxw~;OQCu9Ke%JB`Ka*LHl{1;JIs!QtzEXT?a8?tunc53J}owYm> zUx6H5I^;#|m!^D=@83klZ&td}R?JU2>Bz)*RJc{_DkKaQ?^5UP+sw%re&smu0lG=< z3lcOL_@W*3L-G7e*n+bdBzR&%M;Ytg+bi;#WQdz8o~k+>57C5YF$BPw@;dQq@0w!n z%Qrr@Tubt3#}dGACcvr%MS$hMcC$Lrew8G&bwatE2a`qjIu>?>oby@fUoN0+>Wc%@ zSl_YNPF!#UOE6s}S*0sx0T@?p<;TRfoH!?0lNaQ~v8MFgMY)&fuf)=?QG;9%`i)t? zn3&Aa?mno*a2)c&a7NHQPfjCU$ZU_KI~M{oYJGSadO=a#SPxgLQ9W;ANL`RBN_hAj6o;1{Q&5(}O zl*&S*EBr?#La+lQ0FZOk||HS))i7V#RR)$kIX>-8fFM05Mt17$Hf1 za1Ma?x}xrNi44}snpkSCgKZv{Yf4@x+ec)Epc^<%pUlt=&-NZ>)!H1?X@a_`$;P<%d z`kbDzQMOql>RR45nRvvY;Jv5EdpYL82?zn7?7@=o>LPS}5)r~emodlYs1|MLI}e66-( zu^ZQ1xrMU-+mL)x&3XlB zYecc{RK8j8Hzip5N8RQ1l*;_>?X8?fi2{rWFPlLMN+ChOVa2x+G85f(*mgXa7G9swM0=inK;S-1dfPA#-3gi zH@&K?lUU6}BT0TvirYUTT7m#yj@%lEn{aVNk`*F5Gz-QJ5+i}JV*{MvXygO{K6+~+uSlMz zUj(DMiVQ+^EhT;u)LVshd^Aj$MRDmM1@HY}HWo~Vr-#-R`08-7F zQ$%XEzE+<1k0@{b`4v=2wODEDVCvz_&8ai0xTu-pJ|`9tIov zIQ*&qqT+k^|Ae+p9#qfYbCzD5ELj#nxLmf0T zcBQ1eY9c=XtsoyTDO))-{1ddV_3!X#)oEy3EG))l5_BFf#FBZIN%NCfS?x7-6Wtr1 z{yURXH4u+5BQ*gaExV&{(>!!MC0@ZMcqmnNMi@(EGbmjDsu4X=E{*|4!w=m2aV)zq*^Q`d8E>PHX;p9mw&{ z{`b9^prnawR$8GzHc$*U(T(D@Ey_xWfJPTX{LXtaOXwt&Fd&JGEy++2K7dN-eFhBo zr+Gi7;6h~e=G&cmqeA#`&mHB{cb&#;`!0iCQ+qAbG;I+ULIi+zagv!9oI26K;w%5g zm>FpS|D>Z3r5(pFq)Ux2IYSiD2E>i#p>qtAKtz``m+9HT!}vu7*EDT3sUIgLiL6re zjMD6nV1fpn;UPeRSML34TGj>1dX{`KTJjTEx@dTB(>Z=!hX>GFgGZ&e+~l7g?bd^ThaqW)UVX#kd+tXO{KHuz zD}{V6IaYFhuH!>+mkEC27_W}O=@MAL1CcxPuN(d~yq&q>;%jts+puuVu*eOEi(LY|50(kN>CeOiPo!5>k*H>ZRf&JeAtdHVCC z`yY-I-g%)oq4Uzh>LJUo?>_%;!47X$zNcx`AT_;?_Uad-D3m4qoB5BL=f=gw9D89UWMEN@Nigj%IVYORBFH%-)6ttQ}&y9vkk(uQ&rZ?>C7H2LyeMZ(}f z3Z5T?XQq%0g)-8@-;?%Pd03}xNu5L%N&iw(IfozfJs`X>N?i14i$maKgv}EX zKxE^H6%X1vh>tmKESIKZ!@_O;aT-=Pmc%+C&v75^=*N7itWBb^;}c92yS@dvBnK$K zlE=juzaRlChm)%(?4|YXc2!qNzfw=L)i-}vEBOA)j5Vxd;H?aMH!TCqI+aPpMW2*3 zJ@@K7-+zP^=lofNl;(>*#rvzjbn~sA1RWvw*`NSJg&nTk<=UhyVK1N)TsRCRAGo4X z#Y-*%m4DkP)LV6UYWIm=v6-Bj?1OZLGHf(J1>HIPI+_2H` zP9ZD?{_$3SDW676Dwr#YwIAG%L%_LvLwX(H6L4+sA$0^?I9$7T0?wIC+hno84rQj; z=sz7`YQ)FN z&SgZGijNy)hwC%P!P&WJI9jEkR=p|G+acO-2PbTaXI621QV|XB=cDj*+a|djPhgog zcWr%i{l1avLv>y8x$={1@HD;s2` z6#lUP57hmq=ROFkh(L$9&ABeZHNF}53*OSnX4b=K)9|uwpT()sV&bMmxT%vfN=V{FwnKj3%-@O7n zMYrLzoLa23)(M`MX2AoE@?fbDHhXjjX=_Qr!S4lgqzcSicY<}~u8n}OG!%UCFfeyc zi)6UJxB8LmRwIb zC5;-N8dVCN{#fg-|Cj5w{+-ZkdUC(L@}nMRZB_2)_Wwm>d{GYm^T7Vn#tk{w<1acG zmwCfqMqcv0cRu@ltt=(kR%Zjr8ly4XyIKTb!NRqUD+^=QkwUgnlp?I4oeK~c2i*Hg z!2+yFKUgoISXd)6CC)>qV8}wlVL-Le8}Uvj*}7g5U&1*Y;n?rvNUvGmMkgEVfE3TfTPq zR~l|5N54ogV$`H}$=pUG{#d_F7dAdCc;~T-adm>B5;)5(UCw~Ng!r-S!m$k2?VJC% z%x(4k9C>&w^9Z>~4KT(VuuuK7B#uglVs5E5>t#0oL=~yB+w=!>h}l4HhZBlL$>vMp zQcZ1;gj2$bk1Q{#bUImk&!>0&oB{yjR;94&5QA*BkvvUy{W$(4q9%A&I}t7lv~&SZ zu!Y-%mPl$549*G==|yuzhKqF6B6@KU&arcV@f7*{X&*-d0RyG_`Hw8E zNt5{s5AWNWT^+BVzNN2FZVM4o7bNcT^PCiMVH;!pI?YAi*i7c<5z-cO%n;uW&j!ql z#v7FgOG4`=fxISKJZ^y7&J$r=Q(fnUW!8Z%tPVwtOp1h_#WesKu*2)fV zre+#i_Xn3VMQTpk+1YjRkDLl>{r#fkWf}YQ0B9cylEfmIKYb>YVSwp5eNK+Sk-nX? z6ZTPm27X|5L6p7_ZYqqaNC%yZkR-9n(%39p?*^L>qq-hag`SE|-4FjZm|7!efHL>H z-4+v=FA>!ood(wvGx9P!drUzFF6+0z9XK|_&{EVpV_R+W&2|-hWAKBgt&i zas2oV7i*GjQUO`4K!^~d>DSJY$C1=q<`pwmYl4alSJ_Sa<7ZtRukmB#(W!sKL7hI2 zz2E6+4KXgCoeO9y_J3{{xVjtNdT`mXgYde5y}tU3%#-NRuDm9{D5{I3a9?1ZCQ{%| zo7VYa|BarSXRkO>Yf)ZL>uc+!jN6azZb%*-tOrJKF(l*jA%Me{5vv)pUw6wzx7uks zFMnE1mV5qq<+AZti*#50?XmvCOFn@&e!OnT-B6X4EMMjX(E)5=6Q>9<5(?JHwt`i0 z$F88@UVUuDUWVAj&V9%kh%-_E%`IM?5g!FPEvBnYR(2k=RZmcfc(Y~$w}HT;u&E=7 zOEaRRXYP;SA=F_V;E_*jU+gbD@xUsCXIUpR)kc6$N97-TE)^(%3+aZpcTi0ev#+|AhB z6P$Ho__6L$!&tNsfhia&{d6gW^GEBR@!4vv;p!#_ZG)SkmWciVDh>@7bfV}_ zjc1-ZfesH(%k`T|YJ{s30K8~Y8V~ykdD;i}C23T6E>=E&q9se3vca-W{ZB5|^1Te+Yu(PJdY8q8~PjL=d)VWD|J#?(3nM+E^4BG+W{2Ms`F8Ia-&7Cz zAhpLY7~QONKE(e9-^PQm?b&zDs>ucWO)c)n7_Rp6a9-imjkq&k~^Apud91ru$nbbtxqzFl(Evh2k}vf zFsivPz+gzvDTmqw-p_YS$XEHR);Rt^raWP0kg<#u54-iBl~jFIPS zTAP8oXJD+rm$U&NT=3?Qx>=$xrm=oNv@)DD3UI`J!MuDlF?v-nYN$!%D{|H_3RR39 zOa~h!fC-D4{R$KbK2L;*ca+`X@lZ0@aN2911{mPnH7J{@_G`@@ZHu9mtDG4SPtUe1 zbG4FD&;05&F*y5k!g|zWcW8PRoqUSla5rAoR_4xQpVNBdPygE0?jLl%z}%D7ex_j% z==lH63#URIiMM#1F6YM>~8#{P=ds;84npPBwA_k7k0UDl{| zN$}ebezs99uKK1QDOJH0F?&y^R;sc)KWz<(Uwo(D^Ll4ETaGH*7|NCTe6VVOM}m?0 z_#-A=9=5I-OP8s%@xvG16_Als`AFaLu<771Gm&?n;<9rU`1A}&R)}=A%cqX(QR)bYJU1t#< z%BK>2NAGHaQb0z4cBOG^An=!O$?`Pos9ykK(l}QBI?>*ZoQDWk5{cyy3DFP3Ooq!G z&XPB`Mci{fLhisc5Q7HH3#y-<)cS~~7ec>uIo!xT1?x246V+&rsVyyuU7xj{X*%=e z)yZ2USF|TXB#%i1tOZo*5**WZj(sGw-|9vb+v-EmYR z2nPe0rtjVxq}rBG=((EFI#zr9**Y(L-!jI+&i1@>Eu84|(I9OY0p_g?FucNs<{k^- zi30gGnO0hUCk1>v_61=9DqJce%c={QkYwn`iU{aV=0I7VgCWh#Spio z_WQiT;Z8sT(z_w_s-$IBDGST%Od+*I7zi(fh0Ho)rL3C2n88C3_Z=Z3Vp`c#hn zOu^{VC7JV!S$e6BApqTWYJn95$Z64YH2UN)bKBbQF1J*3b(KzkI{;zlx+Nc+ z8;BU#{x3uGCl!Yx9t!yXOrHsIs3^5CaL*ez(~bM}Rg+mWYoz!5j?Il^`)S-jO6IfK zs)-AlC|8H+>CH>J@l^Kr9WO(zU@+!P9t&7OO@5tZzy_vaB^CEU%vBB1aZl4Vmy9)# z^XPqPpP8#APc$l;N2?x$+?H~9qgn3 zxk=$H_-gNC%6Q{8s4E1`{h?88!_T}g#em~}@fmUUJ`Ol}-yuHq(~aDrl>?n8oVYp@ zDHOYrRNyc9~4B-PtoUdO+3*#Q<%NlsFA*}Q?0?**78el+0ipiWYKwK_c~9z zaL-I-Q{$P!0o2R03N=yX-xkjb-r@#1YZaG}`DDwPyAfU@L(=f6SMF2kmkaO(l_TS4X;%P z$_V>={z#0iG|IULIef{G`>e8xV)z@=`-sd$M*MJXmXKoESaUpHF%8e5kyfdCL2R$- z6x`oOym=CG)lTp08#X<@$n~U>K_mBK7ybKDC1I7wY-tjkG7Yans(3WceC0H9tr2?X zLX?$HS{@y-ov*>7LCy#}zqS2OoZncQ?wZxa9|IeLW@kx;%34U&TfH4VPo$6VBsEAa z=5mOd%on_{*pphX5Ear?GmRGh_Vk6_y(dCx3%LPgGVWN^Rs;%qzj#DLVA#0{@u$RI z!Ons#$77_`u`T=|Zm>iUhP&RG~!CTXW`ZE+GFkQWdADy3^FVnz&t8)LU*gJL#4zM&tyl z%ms`v-n@8ZUpH6V<~p)yYnZ0NBkzrOi?e<*CUGWW9;^rEF-$$>^1*h4jFuMgA~)BsEqnf{!;lJTCWH`ZUjMNHl!NP0`XZ5MM0XXr*`~tA5b0+M*p2dw%Qu zQj_a4SBKlWwrKQ46Z`bOysPIcLa^Oo(p+aO2~(-QJB?K|>5LtjGtkGWRbN6g8D=hY z<$o3`K^YU?R2W&ns#4H{u?+mB|hFjtwG(sH{AKmN-pU7a<`t* zQmb$Ko9zE`l>s9(PwU3BmNuXu4sg`{xLH2%uxV6`W7MR zeR%%&-EqfwZ@f=0pMGDn$6RZ#z1Es@T7A_r7Bf31mlPRgo3h#tabuNAdeG1PiJX+x z6%Ww{!uUE|)R#?EqRY!*kNtHWeoX~;-BY(xtm3}Dx5eTwS3_PP>1}wKA$VzF1yWJRspC*Hunko#t=#iyP)x)vyH`7gJBZ|k;f zD@GhiT~4qYc&=nLGdpKRbhY3*8*NpX7|O{Qv=IAb?Kb+jc${cp-(((AAl%zlH?RI% zy;lwPB-hy_&=sR-S8J0o^RBfiK-{|_Z2ZpW$)ck^Rvz(HyKemR0Ga*Z(!s#DVK!&$ z=KysB33-eh)&%C-sa+3lVTdOrHoBlbn*MX2d`G&dpnm(Z7dUtk&LprD)5E__?dTDY zXeuDT$|-!DYV&e12{tMk4j7tS<; zTz7}yVXbIw4bKwwGJgKtq7c1RW>YqC|GaWl$?E?q5<(&$W_M<--tOXE9hkv$cGEL| zK@p*>5Byg_%5ks-oRy~ax-TooNW6~VqC+n5xCi*_^HPi+tY`~ z1C((DsiZC_ODsDuK$pbOrx2;;7hQ1dRO>{1FqeJf74Q361+GCU`ll~&JV%NWpUdlB zBo_}46-7zqRY(BA%p(e)*qL!G+yu%OH8__H1OMGHtV8_B>N-R1TLm+{9~t!Wp)8DX z_rj$_0rUJF;_x^U=r!9pCj@}uoB0BA4RuqYJgwMWZnWmKa<|;HkpY<}&YbP3?ppXM z@wXz+6z|l?{Gctj`yTb!xI_t(BDp=g})e?fOQ=l>7c9}2Lv)MgZGsCoJ%SJrbv zH0RiJY0}9c!@Xd-Da9`GMFLOcw|o$bV`ZHq>UhsQFC;r6i|=t#fo&YZnD)O|4?rsT z>6>+Lk?P`bJk2rj=*)twS=}i|=mNJKcwIvg5!M~7qR#dm#@9RUCKHv~zSfg{b@zjL zQ-M>{R$z;-w#E8=M+qm72E<2P>NHeWpzN!hY<#uLG?$$;{pvvOaOx%8FqoGP`>-X4 zNK<~YfS0c>Rl!l!41|2G7{c26Z;mW3mSP{-$|w7u1JikkgMbGs<$bKs*aoA>*)^}w zE?(z@)Q+{>r12J!W~FPa2HlPP6Yf(>?}SAo+q`@vfzERn`HE_@vmru3C>*0RxlPB+WcoRJ==m(_TIfz7)zp(DGN7`bP)5$-u}+#0ud zJHB%P`^2}4P3U4Th2^J7=_$%;=%ZMiG=)%trVUd&Q=%O~7KtU|?80KQT*Bf-nM`_7 zF&ht}+x8ZnQjBig6=~5!QeRJ*W(q?~g+=~C?hnC}4|RBUv6^#xMXlX97ju}nvNAUK zn7OCIhZpG-adnke#WvplgFkW6aDmkWuvxB_0q=&kjvw@n7S2cD9){yR5=Un7&kZ<)L>bcjX*U`$UC> zK~zbqh`iy^PrXyi%TsbLze0$(g^9dyjj@r+fcQ1A6a^ynW(p7FAgpvs;l*LK=3bT)GS* z4Y-I(H_IGiLmSpsXeEjLPHv9Vv07ZVtPqZ2KqjUNgZah`NZ}DC#gm5$co|l65(Qbs z5Dv%`-658O_^MjAMF>H(34jJ-FAEVS%X7~m=q0e>?z^%2v$=7>e)aWY~+-S)Wk=4 z)dau}feHW_<7rTnY7p2Edl@I>m!KBd{yBPA>Lf7L4I$$7;o^8C)URz1GwIuxnmv!^ z5|2a0^CWYA__nMwkzMXxm`pdBCQ>sfOyJ`Xg!phv75AgO3e^@WJJf{oAoQ%OgSyeWX zl4n2`KpYeydbV|BtV!?_wsJLP$q>`;&J6TG(fF`W=8127*;wyyCVg2clo{4EgI}Da zb8R3gDUn;|+ncgYlQ{vUNX|mR6&v?z-q&QcC-WA!%Nt>v@qpqf14Tw-7Pw5g7G)@q zPVFXWh`(G$=CSUC9q;t9!x)L@tPs6wCbK0V<)7!nkE|G3)N^>EKVj(7c%3@YO}wC< zo7z!<>OqF7_x`IPF#F%6aFm$Gha6kE6!X(p1pLG(l?b`%rR&)qY1NSDU&!a>he^Dr zP!|w2J=dt~aB!<9<+!_DZRGRCRv(u-evZQz`9+fP-cP2#MEXw}SEmY{yFz&5`zo}U zXQYV|-Jw28`(>f7bisEibg4_Q0lA%dVQyXd(PbE4dGX*?{nEz^!5&&fzeWUF>$zj_46d}fhI7%=KuA{m`dW4%EhB6w=!b|N zWBk&~jLPxF}u`@F*AU+I{(>7Y0HF$^Uy`3j=LSa!Gq*eH{xC( zt%88}Eg`iq-!WO@`tZf^FXS4G)A^*`XVwy>JJLg3Sv>E1+rfmiKl&b;ikAsPwMRlf zRWLE;Rwlr=v?EuwV@m85C0RT_zB%4j)_2?dHaS~w?iQs$%Ush`)D$n)Pu#h-vZ{7z zP?{_4u2zzpO1G)Sdtyi8dEvvsXe|^RR;!f$dyC~A>z)DTUx~bXQmQD8`MK(WJGRE7 zQeYW0Qk@C_1EiRrCZoNQ5-W3iDJJesoGMDzK~76AC$D^VpnVE_v=*Ckg~OV-`jB|G;^pMzLF%L~# zz8Svs3jHX(!8*jdp~?v~0c>8B7{N*AF{zB+-YIe89N!7;vrnF3vNw8c;el(Puy+^d zs0e-StSL=h(F;#574~gz|C{An^=$rDB;3{3zPrI;{d(5zfeUoVjqiSi;yO*L#M((B zCmVOA-HHgUw5OK(PNht&{sPppEJdk(j7uCH%Y%^h>ZTdI_?(hjej?pmTZv!uw<(6r zn_XM*1LkSOa)Ks($Cm$(d*uJE zJIgW6Hy}ChD!fka>z*6$qR-xiLB|7s!D_jC+dVaBWc{-qy2J^eyIoWYOv2mwO+$hQ zxl_i-qO;iLUu*9y&)0Vz;p++(%s%P=c-o`K{mkf4x8xz5< z^Q>Bf^?EaIY#FIl#2bQ#QwmnrRiP%#0Dxd46OqU92g%~F<)Vl~+R%e^EpWt8Vp3)5 zJ0O-TJyEtn;e0(bm{vcJi`N&mJLiL8v@q`!cv8U+sk_{ubCz)Y_VA6#)XKy z2H(+6bSpI&cdAoc;b0v7%%+_mBxT(N63o!&`CvDf7sWLaRDf}-y{p4(r1l|I_vzv# zvPM3q+0M71M)ps|d?ESiBM<8xaCZ)tF52oV6_> z2V>ZghMM&hU0kSdOy{q8bz)a%9(;aYs-8b|eu8>t_^H%|lh6z|~t z816}6)7?V^zs>=Z)wUELC;Df{Zxmi@# zWkRaNv_kHx#ZCt>X2aB(+_nS6X2Swxko$@V@w5QWuo#EuphzUVs8@876RexmMj@Yw z~Ny70Y=ZDPO;C z8pZ;ih8M7H4b8F=4eUb5dQPS{?$cy>ar{Zi<#vA|x1xK*Ck0qq+`v$(XOA;-FfZH+ zF+2NbT7e7YFWW9wUj8k8hf>zM`qSSW;EWp5QmV+1yp_1i^Lj#k(SS{KLr- zTlf*)Qc-eE+}L5J(Fu;=#_Cz=DzhSn0!r{F{#?%N%EMsw9X@9I4MJw(#|9uiqG86L zCy?u#zYWV#few$9r@#UeS1ffM&g$r|`t+LXmpP2PTQ+X>W-U?GrBlnWdOmmg6Cy;| zRkZBz{&;lheso*2aDnZZzSMqxl1l@j%<@b~{*3xy{eTZT^h)?a@@V+QQOM7Wih$mB zG5(?rTc#tr!EVZ*%mEvf`^7A(P@kVX+FpdaZW2#tskHUh`6T!1U&uGhBh7iGSD(#W zzGh;imouk|f8aHI!$#7{Yb*7rQE(d4%CN*&E3xC+ zb3cc(IyTK+SYpzjtHp@(fWC4t>7MWBXyFPUEjH#Y!G!XEMW#Ql=p@bZ08xDI!JakL zj@=$XCM8|-at$LZ*qE>AyvfNTYMy&x4#&MW#SC6o5X`FAk5_TnI%TeIuUy-{c5E7N z?8lW>qzp>nPBItv`}S$CyOc0KTk*Cgsd4tU!9qG~$t73clJC*Fo;>!j%a`Uj=7oQx zm}pJVP1oB{oisV;XLGC6eLq$<*3EHbO$AAtSNu1eUe%A`Ljq=2ALO!Aw7h8$>sGy{2xm7$I)up`imBOd*;B20lTyo%5eZ(6($~}b#Ii1xS`D-T> z{b5Z`z4B4rWD|tTj5OP`?_0rq8lvg+M+pqU5JG=8F^5qiv6hfMcP}4+LOjUPZ z9Yj=v%v`f!o1(whSyb&)YXd&Vc7H?tPGGmK2D<8YuXBHANQ z+u=m;n*Vt^aYn^@9wlVqNxJ&Sc*xPFXxS*pcfNiz2nH=AOx>4Hz^&RnaIx5?!Ey`z zw+=Q`B(oNp)gV%lbR{md{_T0A-A|TMspPi( z=n4BJ|DRJOCsY^H7e-SQ4f{pcldGcX&{FoQ8ATR4W=kfPn>tfnA4f>x8dq$rE><)- zs;w-IbiZ8QNSD``@$g?AUeQ;!-EJS!X6ImKOmUCDkk6CyR=2?sli-!8`|Z(aJE_%P z$Dlm#qF~+_kmm+)r(r&??R-LL`FV$rqMDF2JwT}?Cz}_ySjEBSP)UQ-u-g08(srjB zPaO>%VScLDNEse}Dp`<0wGhG=M7YZFzDoQXtA_+69}KhteXybVh`NV(LA4mKx8Py( zUPzhn(cgB(>*68^`lc!SzuQv7h9xQ9q(;Tbu6P<=+!$zW{PZ97i=HrTWC1lLE9Yre z#@u5k5WS0-7oJ|LRE3Uv&a0GL0|LFCEHwjbwp$w~9sHcLddCtd)KptiN&H-Q{?b8- zfrd`Gw#K}J5gj=#<}yTAFtS?G;KLFI)Xr)|>q34|0C9IPKl7|S%(oF)SW20i_LQLJ z4C)OPq;yYj(Qb2zYsB&C8--5YvQb19GLBloI`VzYQCW>oQgUF76SUi%`fB_FU5RZb z0lp3{;gWAA*&NJW_rY_f3}3sV6!@4bqe$YuH-&{Rl@GfSUe>VA{3Tb{@lT-Isu3USmSGCvv3`ENsW9|z`>Yo1x-Y4yC*vi(M*UB(dX{?q)8 zXII#WRoG2$JXKmqaHeRYH%s7|y9UegVgE&~nBYXu!)1l#TKbVW-%jnoQ5f1luYv&K zCP0lt(q+boZMbv6QlUI>?Z$How+aqrU_46n6LK=LH7|mG_JKRJT++QO- zU%y;s&Y6DKBwx`Q*CT32bQ24$GOg7pPw)QWOT2IXrf&2*3Mb$AHY85E2SmO>P1V{|yO5t{4D$A5 zs;vV|n0tmXiQ9|r+t2bCPrN!Tal4TdyIXW{$4R_kEPJ72q++NT`XlsRYK06&=~^BA zcTOu+DslCsE7I9+9Cx)%Ot4Ir@X-tX7jma&iF`2p3UosU^l4{kf49Cgnr;F0AyN!3 zMV8i-?5AwrvtnrvOdh>N3n4uCC58;n1ZvUTHLLX_zx7K>!0_|(x)fuCh_LyDUGYO- zR+z^*vEfGFCSB005faBbSPp=mu<0Au?UiK_vuU{LJo4>cG=sYhxZ7$Vn9i}l^ZOYQ zsgPk1=N&;y&%RgDQHu7g_a{|I^;fcZQ~jmYL9(Aqhh1!owo!)t#YZX|mk-~}+}iN2 z|IvZFQ}hw@Sp-=Oq3H5Xiy^{^tM@KA=e*H%j+=ZhCd7G{k6P*^FHoYE9)b^YClx3f zkGXFXSe;?>DVyanvRtTOMckT-n|3F+WF~!!s;bc3{L`_*EJBQKiFe`($pW zKQ}aChIVA2{p{EjtSn>7XV1!?RNf+}sJ$AR%)w>GxpRbsgt1!tpV2z?+=8!$W zW6eUdgPird9=7~r(HRj`TjUl>I`5F1iaVvRo3>oi$vx(-tFN`r-{YjNj5R{Xrd#av zw7G~yIRsaOI~u&r3mqXwYV)tfDp@wFBU>?WS*!FbN#kr1gz1FsK5%BUzaAw_1D znM3Kqo3NWo>I+CpOcE<`J!Ne4FXWDmclo4wX4bTnf2Ds>_U6HsZn5OJEd;lIdi|R2 zrIqo)^RPO$rCKO9tiD(4NZh?SML~obs`F5C#>S?kdYp+xP$;{sL=at(46al|1L!9L z^s1&AA%ai?3Y?Tj6XoYql~UwnZQ&U*3e8QRp@@=lm|K=zCm|#Qs(Ff|CmJe!rLwaA zF}DLrM*eBxwtiQ4+lMm-o@E6q(77}-a4l@ z-DJ7hU@T|Ls$0ss>Q5J*y>>okm82#&Xe8@)_h|Cue8|x~b1B$4o9t*k&T3(s(1$?U zSV}`4+oaR(l!+8C5a~NilcwGsY&f^AM4Iw7VE;=M7DeU}%Y? zdPxfvmeyE55rzxR&Me(<*f<1;X@b~_|xB>xDj2OrRkAU z5!)?iQoE_wx8Ev%Z(YH!rcLUM#acP`44cR&Wiqq65wg$g7&crt-JAD@xALNT!}!W= zo#}N;Q>-*=nZeqWSJYAy+r(%8B&tSoqeT_^tOcWslv1Sk;4*=8DD6msAs7}YTDRv2 z1VVusf#~3POROTINHCMNm_BZvFd`dQlp{8dAVw_unb=kNZ>-+9R2~>GJ`=&WeNid? zeK}yTo(;eJK0bX{9v%nCaWcGE&Q5nYQQ{mz8921eH_+F+hB4WX>0X}EbDhFIoB{ZF z_1#(+V(8KW-{k_3O_*|4TQ3%*Bu#n@eLG)vp6wYAL)L3ttG}F}mlgB9f zr6oQ_q%5oMFlFahpkeU>(}9uFDbz?8RWQ|3Trh`wJ0+c6R7N4Nvs&N=rSG9q+_os? zv}intHDknjr|(?ak*YV65^VVwa(^tw_@IDS&<8I1rJ7u+2_OBE5;4#bz4Oe=1tUa3 zlsE%20dp`GuXZ;ibphhJcdBc(JndNbn<@Hqcc!KD>d+Gz zsxos7K9i9XK$bCNc}vt<%#QEe1uN21-jzc=@)==|rm5DgMjD}@;Qb9>mI?cJS9~x% z-uCP&<6+H)$M}NOr9xvH)Ht}P?d{A)W2&+^^JFLQ#CK?7bF~?x%J4`sJNM><5;gRG zodDmpyC$Emyiu{y@=@nSDVMsG2u-K#OVfFnxlHR*`|_(hS*0FTuq$xvSWVnE{=pjd zz2#hDuhpIA+PG-iyP|nrdDDuUKK3GgY634ZaU-vSM|E!BUO#uiNVa%AKW3XusJ5N{ z^h(xXN=oCZ-<4$Zr~B7y+8x1vA$Mdxdlswv!ZB|Hy(3fzi5K$OQH%@qHGV2QDa7wD z5RTWGQ`OeyzJk6LUQt?1>^OAag1*x)ok~UQ9(*lsdt(Wc&fV~tkZ;R3J9vh^dD55p z&dR}|#@3d8xQ*3ND!4caY@;Ml0r97IYv-V^Qx1G=AylGiGr!A`Fs_&$rmp0m)k~r| zQuOu(d7$NJF;Jn4FC#CYNQ*JI7S2-)Kmg+b~WGizCq)% z(JmAU0}2q(V3pSZ3*dPiT()rIViz1Md4fOtajXw%32b)43jh zW>hAZYdw85BfV!Q?V(!pL7SR(O!4TrvFwp4cG~;11A1LXGx+6i9ZnzjYZrd2$mUOM zo_n8D;%I>=z6GCIOf`=6FXRP?iUNQD(Ahu7LU|eWl8P#Vndw08%p1H7j86zKN0kqO zqqy+I1HN^CfBErZ7KsB41jc?)GQMNE+&Bw8W1{!JQw|} zj1+n`awu*I0G#!7Wk1gd0t1-QLy&SkAQuCjH{;n#e2Lq_+iAD$iez#v2e>GY(S=XD zI5|@yL8KUf@jz2k68=K&wkL`&`c~;Cfbm>pDVU<9say}%&(A(rB2`b0O(_T>JQ%a4@FMXE3{yuxQz^=;YDtDhibp86S#^6hb zSdyumE!)P2O$}0c2v%H~#Dv@FW8Qo8T4_b&p8weL!B5Q_XM_aJfx(~&HH%w+{=9A! zNRPY3!Y<(M?u?#o96>#}!Xz#m&2kxoM zce_n>8&7&(w^*znVsA`1V@~L>MMdmteW-P(fgwX`*HKD)NR3TzJtaTqDw4 z?>)4%y_X~&)tG0(MsD6DI~eek=wkCUa6n+KI6aPuvRTnQvV)&f#6}W;z%6oTBM*q6 z$qVLT)+a{*75+j_)$}JH8Ss7q=DLLijM3(c#JoQ^Z_YZhB(bzo*H#g$kh}`RgegAW zfr{b;Ad`^v>$yNr$awu+lxXx2mUThQkLF%OH{}<{8_?V~G?cE@7Nz|mrkwsOny9a< z%Ec0JMcg?Z454^FpJPs)N^l++8%oEN!$hD7HS$l&NwV3WPK;*@8xYUi-X8v}^50Cv z)y&PrJM(Uxn;(A#In(J9(+uA=6TBG5xyg9dE5FSKNd`Q>mIR4$$s4?!`7O=e(h5*9 zd@B2YAL^fvuUt&3Q}kFo=u_C}+|9+`7*g#m4}3%2J~Re5*$&0St4qf!(2iZfH}bR^ z-QK8UFt3}(>i=J^tvDHIphR1QeBVj^?!NEXT=@6&2 zYQ%r)a>{xqe39~B93Es#ywb60^O1VXswlcFJz5fGet%+8C4U|sH2yHIe3kRQf}a#x)*L9td6H?Xrx)`r z?}pH)pEc*Ro(SqioI1S{lgwOI_Oo=FidsDQR^K8vZQ#lE1HXkX9GW~F32R*}_+57T zc2BxYGv@8nC(zJ8$|w}&-JwR19r?3YYG7$mv7WDIguAVG_Qu1~vD4bgXG(+0pZsI` z)-OG+KsX$FwswVu*JwC3+&mer4Ofk zm@v8CoAU+=I&p~T06LEEKO+~k&dm9!mr5MKctCn#Qgl)0Gu7D!pEnSbQTT}N5`Ljk zgA)Lq={6Y(z5VEX*lM)l)L!s+2}DBuca#r&3}om{ z9p`rZS;65I)g|*b!6xCV86(kJiL0DHqoL{kxE0{Zs!QT_`#%tbA(3i8sD7LQ!pWPj>*wp~L}IdYx760GmSL_}&=iZ3%ZM9DL9xgg{qN;$_@V z4VOOWt|Fa`<$_o(8?5?Ef(&1czDK{x(SMA!!d2nw z3rcV`r+qfHptM|Ky|heyvtQHccZ(NYHTjqOk{-WLxmECIPEdN}{N?7-Il!v`)*)_? zXs)zR(2MKDgNc;U4vFz3R!ep|)4eTA=Ea|QAZtsgy^H`b1LzcZNwh5pa=<%8(r4X8Gf1yIr2UaJ!49 zlc1=-kgL@2IL@x!Hx*jAnE^Pl^D_l{<*UecS~ zZ*95RQ@a*Q!)q;8{kiQb^cjdlhuO?|p`-UXGk9Ue@jdJRdl3Eq#?1sfehn+%?KjMg z+Q?i*uwOWn3nz|nCz7gkA>@(D%_mlm4mIEm^q|_q=UH_6BgFW7j8=XBtj<3;RUIH*gpMvQGB@=kYW)0;Kz*ZCri5 znSqqwuba<9wfHUtw;epHWuk-LpAVyNPe|H^4B0U0fQuk%?5ujym95ZC8;~Re%Rl}O zsU--@rpB-B5~X-EKx8KVl11SBLvu_ zwY6QlswqX$ze1tNIeFR#r`EA$_tm1R|O-KmJ9`)TB|-Bb^NQdWV|!9u8761^^}jU?kkW!YhcLJL>& zKB?Cm7O@XgHw{h2ukEsrmtAN1lPu(W8;8F;7nP)4OxF$!;QyX8fZ>j&h zR7Oa9fME1Ga-N@N7O3k>m%dpkYgzwPa7HrTDUpLSRjF$zqkAIpDMGGm@F+|1ZhG}YRN$P~ z<;kC~gXwCQI3!0rjksWZu2we=D9!vc<2`OX2NJTfT9$tIipGx9$FPB0TtCL%HC-u8 zo-LQ8E;Y)u=ryCxwFZWH6xdPeqLc_ zN&`LVCeOc}(<~wZ;;}HXF%Au|D;_`jBH3EZ?eDF^-Oc63qG%~2cSqG&xeFNRd*P$HnPr5dg({-TuWoiyln_T z;=EV4=bUR<$jN5%M&}a2mQnyn;^788hZ%Ru6FxbxJxe->#QJ;52*;;qjiU zL^%(yVtul_X%BkRPM16k&!B^}@jdpgLzQ5Wd1Nq6x9#cI8(JNsF&hv;%$ae}}ZGmU#=W^L6? z5nzy$;W()(g( zluE&PXx@TpCFYAzgH8W4J*!ZB`niIZF-QXEchcY|Ne-r^k{@Yy%U>M6^HXQ+<${|7Vk^w076Sz@?-v&rCI>VMho|0z-koMIdJ zx1tazw)8sCKNk2a5!|(`dBTNzoL)FY1zQy(!G<0 zZ@~mMP_~J(rrwYE;=}6i7_esr7n+u+szbc=3`@Fq#R+5yDy)lg8yOQ^I4dvj34Ojn0dt}bV>)Cwz=Ens> z#rO*44aHpG{iO|KaTh=P2W1DB_599tAu}F@7jH^&@X&#!x##8y=ahlzWO|^kV{If+ z|4GP@_mg2V*KY1@@e6=sD4xWUr=l1r6KIeyBmJeJ zzrx|vWTJ-?6(;I5zyZ( znp)OP#-C-PLVr!Md3jqtbgejSmi*8E_m3Hh@65a4k^}1TCo$tc8m%_k-GftX?q2?S zVoh@{es{PklG?`|4UU?U8&;f4E4wac4){j_D{)?Vzse60z)9c)Jpkd}rG!PHi@Eh> zL*Al?=>;dhvx2GsBuO-?pMZ{}X zE|w&i%ji^r+taA!ak(VmPzCd8w*h@d@*FYlKK6uJkj>!R`cjDU8sY}6p74ULqhVAI zi}I^hm4~$)#iLc6ZMx|6U z!&xQi#`-1x>rqk2PvQcuR;auVGtX>7{{Mb={m)7?ppAU5IWAw%`kNlZz9^%+7mizO zC=(C#29&ds2q1Cns*)~T%v~>8QG(tYgyu&h0gbf`x?JvH5ecaZR+2d|K$_nOkUq?e zAgGN4D3$~e0FMWlrdJqG!xzGM?u9K#(Oke290dmO*V3~2o>uh9EkiQ?kM7P^Sv~*g zfjSj?baBqQk8h3{1Oc@H%p95Dv?LPoUxcKtKzPW(qJ@DvS4r&ySy3VRfgJ7xw-8mg;{2QvNKrOLGrB^FPq?j4 z`{XZ!{9V~F>6s8hU^{H6tfa*~~g zi-g)rNZk!!Fu96n`wO}BQt{?=+Rv2mcP4Z2ViPWFa__(EqXS2nZmAL2Dq!dubGW$& zuLtw!-jZU11D4F&3j)T&qZVSBS6^5d?508(Qz*I|TGQ{i!EF>Ki*Ecws8E4EVR5rQ z6mmGQ_?>_ICwNDx!FhH`VA}biY?+gYD&y3

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC|_BmuHU4NqQX7 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π=#^wT{qa=ips10^HD|tW491k&t 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 Q_Kv#M-yNd)|9}Vn2bOuuKmY&$ diff --git a/ecosystem-tests/node-ts-cjs-web/sample1.mp3 b/ecosystem-tests/node-ts-cjs-web/sample1.mp3 index 3606c98f2ebccc4ce0f1979119a68b072e01aa07..1e787cd7cf33203d99fa50b39b232b318d287541 100644 GIT binary patch literal 121671 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC|_BmuHU4NqQX7 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π=#^wT{qa=ips10^HD|tW491k&t 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 Q_Kv#M-yNd)|9}Vn2bOuuKmY&$ diff --git a/ecosystem-tests/node-ts-cjs/sample1.mp3 b/ecosystem-tests/node-ts-cjs/sample1.mp3 index 3606c98f2ebccc4ce0f1979119a68b072e01aa07..1e787cd7cf33203d99fa50b39b232b318d287541 100644 GIT binary patch literal 121671 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC|_BmuHU4NqQX7 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π=#^wT{qa=ips10^HD|tW491k&t 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 Q_Kv#M-yNd)|9}Vn2bOuuKmY&$ diff --git a/ecosystem-tests/node-ts-esm-auto/sample1.mp3 b/ecosystem-tests/node-ts-esm-auto/sample1.mp3 index 3606c98f2ebccc4ce0f1979119a68b072e01aa07..1e787cd7cf33203d99fa50b39b232b318d287541 100644 GIT binary patch literal 121671 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC|_BmuHU4NqQX7 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π=#^wT{qa=ips10^HD|tW491k&t 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 Q_Kv#M-yNd)|9}Vn2bOuuKmY&$ diff --git a/ecosystem-tests/node-ts-esm-web/sample1.mp3 b/ecosystem-tests/node-ts-esm-web/sample1.mp3 index 3606c98f2ebccc4ce0f1979119a68b072e01aa07..1e787cd7cf33203d99fa50b39b232b318d287541 100644 GIT binary patch literal 121671 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC z&#s5xCOfsBpf6^yN6!mS+%4@(5@YO~g2FIbs-a7-Z{yH9j@$90CG1EmNe-GhObV6* zaYx_#oljPUua@{^fe^#$6i`D!>{JETEh&D>QV#^!YnA|~huO_N^Po$q=J#TG_|&p_ zqyqVPvk$($y%&^xc30?zO^w2a!+oEK0$vPYkmE@m<1q-S(D%1H0^S4-Orw4mA-rt_ z6K3{4b{~R38W>TRFEv4_?uFG4a2ON^Lrd2n8?VaHoCZd`oYR+_*wAoIkD1DGWiPxa zmA(C$oiX@wQeI2>kUyDnngat#wVYG=7+d+yk;VUC+oPq6bIzvOPfhRoc8;u){I2~g z>W4>_wH&imm8z({ZSw!_TeB3Wj)<)Z!A&#G_@9i2nLhs?Ro2<3E3{GGELgnU;a|x8 zF`cRPt$be$6B73L*S-?e! zjm|qgB@me*Isp7am2W0Lz)5TsOAiI{7CHV?e0bqZdpQ>(-izh|p}|b(V5IUT8AS)M z+>Oj^=IYONQz@RJ%)x%>fEv0w^pFyX3?bni0-k^p_@#MWjgSqqBfl~4W{Jodvk1l? z0{GYAYPw(U&#%v3;8oGf&;Fcm@PeBFm-o6OJHhx#p5;6sR5`L?C^W881SOcGDT4lbe&$;rj#-kdcoLy9^32{tkNc)ly?vQK9#VMRO zhHh=Q{4A$l=k+!79^wlNGT|TT*!r}IY7ptRVq0~E%}<|+-ztCpY_-4L_nJAGiT_)X z{IGN3yOR0-E^P8Wv*6&9;lA}joC!Ohy5nXe8%=*p)NwhZEfeil@g#!S-hr-M{pT=B zqHn$_jd#S(XqQ2&#k{sKV^PnIcjRZ1R8AGrg{&;kB$k8u7=3j#tNHK?p;@Z2!p#e* zLYr_RLO|W=Du~C0o&JN?Bg5A?Kudhd-1I|8IX=1}L~#-6v1P z4&#!y$ONrX>@1;rnlSqWwl%3QETHQH0ODYxp5qfm<)KZU7W;gl+IQM{q6RaLgrg~m zTmcp`If0Q`0XyuMm?CZ6OMUyG+wZ0u-9$26>p(5*xU?=BG)s0}D^5UsE%*z$Ih(3Q z65#zmuo2EW_usF~wOXpH)u2Yix?_parRF?O^!*2+tRWkHYGmw0oL6abxk-i!8+b+P zlbROE&&cD~t3Q8=0^dD8nzO8qoID7*l*#dLo(j8vm%6j_8gWh$CUNDaNPSPk^N;Ue zjeY&b86cD}eo|;9>*jvm##cLHbNM5y#It6b=c7Z47jxjBNrnsTjAVd@8eJOQ_5Oq^ zo9$#Umv~V%M;$N$OPPdeF%{Xsl9{CT%?>6 z_{T?j+EdCn1d72aO*^OBQP|o2bx_h2@hLe9)u)xBC(iRdd9kZoPV}v4=**aNl}Y+f z&4WL2SEvRkZf1xXP>Br5laZAP33$vuJ?@`{@pcA09LhY=87eoRMuR$Le%U zP5!!^zub{dx2aRN3@vY#QH8iss~=ljG)}V~aK?mver|Mo<+SH=Pt_Yoz9Y8Qr}B+l z?~=QlWLwk&oY%UZ`=FLT9jiY%+7I~6BRyFtzQbc@G2 zrnD%2PFN^6CQ`QFkV%ullkQSMUIGZWUXTer2Ox0>76}8^i9zg^{hc^_cYF_ZQd{ps zE5i9JwYyaBZ%tgf{w`Uaa_6fOPPolD*fql7xLz?28aJk|J2oF|sb<4jq~!$xFiKlh zpv6a+ib1*~0?f=M0aSqU{_Hm;{p2>1UIGj0hl84N2J;d!a+V!UHDl&xw@piBm*S!a zYGGaGlURB1OG@VF6~*vODflBg*2jcUkSv9V$t|1_Cx_Wn8)wl?6s&1L{C&eUk3ERZ?l}WYh4|i=-pmr?75`P!$aT+Z>!B3@fCMx9@Y;o z!6V_LPUp-baKu66$dH^z|I~aTTV(dfq*_fUdH{?uuN=ILefj0i2JfhY|IyZl-Gtic z%Wey?2yy8wwmcK@Y;BDI_ODuCy_r+?OQb6g6xmIn{});38P(JmwEHB45JJEJ0YWuY zDFH*3rUnSTg&wN(4$?$K)P!E8_aa@o^d@4c(xnRuDpi^V1?+O+|E~4kb=N%~&iAv| z@9e#2=9ziUiiX+GlL9hNJKsyky_WYGCvT)|={eoOf7tN*^X9a`xA0FEe(m45V9M%M zc*9>yo9nN$L~%s$qj^ET0CGG4XXN~e89EL4h`qQ0P$>g|zG1AS?eOV9fJhD#I~L50 z&0sT!viyiHiHuaGF)nvl2E|D`j3g?2T|z$vID~8Q{!`K2gkjLyH}m!zV;u;tg0#7S zYTrySStSn?eZ`}~-ZqW2agJO7QJKMe^Hb5^68O_}E4`O!4rDPu8qPD;O##s7-Rg0}lO(`Bi$! zSz-Xcjm(R3x)iB(nhHjK@lxCH@CI|`RTE1VGi};&vDzfNN;>!43xQ$=G|!wnh?3)3 z%Gkg^$M1YoL~E|k2nx;Sn&8ac$A9$LSTNyp$Md*j-sP~Ll3n~p2_7aw^DGwsI!^t& zYxC5zp%l^OE8caiE6MvL^<;#*u_xy?!7R5Zy=Xh%2x%FXjS2l_7a$RfehSo<~ zt5OkFV+C;=(TOqo==S$$II3b#wVpV4)yZ9SuUaQZ;1_^i zF6o4d-l`%E#sPByQ~^VaGg&aZkua?R+Qf&IjN55^>a49Gf=pm&OYV%j{gJDQ7uRc>uQ>{d0Jzb2iZgs7OFQH4) zvW9)sEYHij<+r-u6jJB%KQkv{b5@JOGy2o# zMF;|{NEnYhEHx0PvUT09243u$!6ciAp&4}-xQv8Vd~{;9r|8kBI9`Yrm!x)TPh>Vr zK+vHeO`ov%K>M)Of892>uMYHT0qsJ7+7G3qSROlMG~ACaX1i(nxjpVCPo9PgK{)rI z?*7NgcCmb>t6SJLt((hlSDifBTAnxO?n{(>UOo87b>-Xk#qzMz@0@qCB(6yonh>rZ zetdH8!?o7I*Q?*_ygvOL7WsQ@vzIY^rDxx2waLbDx&E2gjs0(-51xKD4yN4icZv_~ z0SyZSK%k|dVV4}31vu~V@Tq{37v4S>W9;1EED4U$zFv1Afsw9w#e9FuDCa7>K`Tma)N z+~)$c7&qhNe`1*nb5hA^sTjON|K7>gzCVRQepINEOCaIKr2I%WW;vZn5j;Ycjfa;} z_qaxMIJFkcuCYc3pCeaiZ^~o~ESv_6w{p&ETc2KD(NIPNO(tXeRbC_k)j+s7axzGU zB-JQyJxk9s!TgtQe6X2I@zW6-TjrbMHsSK3Mj!+xhaoUwu-yO-QJNB`K+D~#$6o9R zLQjry7ac$}T$6e_T(ErD#I^TU-JFik%dhDLE!Q6r|2+F_5}Y@-=2IT`!~64~0+av6 zNG*->xcke2FmKb#u;EZvjMU5);=!w_`YES3SDF`+9_;_V`M%TlDpOW~n4}V4dDg4P z*%QVVB^{w~4-1Y>7R&9pr3CzY`N&X7U52R>Y!E_X0Dw&~4Y~2@X>~7zWo`Uh@{g2@oK2S7aJt*>_VScS9*+Dcz%+6? zotn|U%O;1q*KxsrqF@Vs{$C+wt4mZ`vSx1dD zQ7+4G$Z1F=s;hr?0#1KR2^ zCL80gUpzWZva=~|aV@G)Zb+-w=H}V@X`a0CNa*H=yWg#Yy-r;{KE8hZ)X*@nyS#k- z!oXFB(BY5&SR?{gR~qKlewaS4H@Q$Sb$sczZjr*qvj-AysK;EI^tQ!Xm<1jlS#q4s z_`ukf(MBdm-@xwN(Vu~KRH|6eA$U)=%QRS#w6N+;>{1o?T{pK zYz;)fdK&3656j5tK1a?#bzmwCu${y;mB1v4#~Eg?RM=1{b3)4cP~B%O4A>E4kA)1W zIbjj1cdrDhz*D^8gk!S=dnZ{M5YFVJZW}q`0J(`uMEBh>o0Q4yDrJTg)qQ;8&hec; zL2x;Kxj3qcEsNQFPIjvPUD%^)b*tMoH{}PK!t-W~UwM6&nLqy3IRAMD98g{Q{PgtQ zC*H_%doQ{O82FYrr_&8Z4u2@ZQ@MYtQ$F@f`Qj!w?{2d#oxA=HIf}2@g-QOo_=n%p z<~U%yV&nG`({EL`!5sN4nBQqB51(}= zT!2D++k$Qiu;;yw=23CT1E&r^qD4D}&Ac_KAc&hZBDCB8N*$u(Mm)pSGxeOES-qzC zXG?_;UM#Z~)Ge}%=Lf6b_3_!Wl`~$|+QJG7jE0P@Y;q%ojnQ2gIqLf>GzzOvmN{)R zmTE8gJ9f@rNCTinaLNQ)rW*7mFuo4+?f<5Fe0ziIX@GB2&R#MRw9raZ=p^W}|q#{u&-!e$QDs~Xrb z>$|AS66*f8qG0E8i1F21KLV?@g@!5YIV2tcJV#i{o}f^P-$|>Ve-9uXrtz|7NJ*lP zx);ncL}}az1MUAxG=-{*7pkv{7n4h>y**{>DwYi@RvKTvamwo`&=I@6f5W@+*w(a# z>g`x7!yjA&Qf}w5S~hR@fz_XS#MkYTAoG*cO|SOe+ee!0WA8RB-vXDnB%M=J0iXq! zBBa;8>*VLN&pJb{K(>xGE^95l_53T3ek^qSy>9bYq`5xxb}ZBuYmZBG2y9(?_4(lI zKL5VZw0B}cmQ+gJw>gb@am@{kd0$1@MrYywP0|6#XQGz$SZiN(oHFfi_8^96Ab|2m z9)}HDllMlmUYPH@9Xm3>q1LDc&3r9Lr`!1F>l?UK7|7I8Og@o<`@VZ0#FV8jSowga zBFm)DDL&??6g%mnq?t5cT}6|1zp1kqr)iPl5k?vdEH$pGYL^iE%crrCyU;)V!M0Co z_4Tt1L0!+f$J&l8IfPNn4cEFG8;qa-$aS_KW?Xh&$-ebbv@p*{jPOzYw?u%Oo~Wnb zMA;9-T4}wSv6skj1Km2h^?UC4p znyWrn&ym|v$1`|Je6l;vtS#s@>(UPEl760#Nz+WC?rM)4vM^Gp%{6_QH#g=LI{5h4 z!roTcfWSRZ8^k{YA6>39)(9%x3sX8-4Ou2gQ)M+tEs!05Q|51c__D^v zw)-Ig8dES?ni*?s)nK21Fc5fC^golSe5Y28z|1JEs z+jQ}K;ZF4vS?xh5MZH52%$H|F(!E|*)A~Gs>k!Wh;IFA%oc)q`Se7oj-Lz_WW)OY# zW?izYg~{zZ#HIQ$ZtI{a@%J_NBLM?Y8X!JB`E61^4gyR>@Uy^j^ngZ{wakiY?(+?{ zJdYfnn6z$P_CVHVvy~r;)VudGqtZ}mw4>Hiv_>&<}NZPDzTAmTSQX^zzxRjjfd6$R}hMfurncg!bw^%{N#j%S6xXCgPW z&wYe1wg{&@<@AC*b5s($0F;XIR;NkIDlNDmlK$4_Q;$>aWObc3o%Ow<5#Zy&*S~K& zdVf0WVm)_gDPRpctLp!WzasnNciWE$VXrKqU#Fd3+>cMLj5oeHWVoKP*^s9qmb8aH zP#0(lrCkmyl~j^NJzbq!SnRs774T~TN|;K+I+24M*;T#E+;mhUs+woH++}){-==%UDdUmsPtmmj`g5a6)GI`?Jpt^Cz1ZvY9K!zm|Bqph+v)YwJ-4e>{*&lbeev+L2qgah_?~8(Go0DM}sr zq;-t;T zX_*PXNoX;ImH&F}k9f|&SO1s8jJiNigcq`UyJ61j;euef|F6(9s*F8p>0z*m| zlBJ%FVat!!{8{>UM{gTm(79!c)Mnt8zp7+)ePiq!e1b8IAMgGEa>{$nvW zd)%cMs%G3z;xCn3{#@Odt4MIfjs#$KXuHn%r1bQu)bREz(|a$?Y1Ab)JyH#_CROhD z@u>!xi5fPq0TxLugcOp>jx4}9)n0460$%L~9fd*4{lleF8H?%g8TCMjMOj*X_ezq~UBNPW3P z(2UL)^Zz!v z-+1cn<8EF$Rog7eIM!^pOY3oV=hyuFB-=1!_{mParIE;IbnE@!Pqv#zyla!%q=q<5 zg2o7K3Vp!Ab>nZ~ih#bKqj3@mOAE8{{ErE`1|7B9m+2DqUtAimV@h;l!}B<{soIEo zt7VV4+{D>vTx^_r-CJwdX>+yw`I zq2L9MvLMzyH{&vsW*ZIf3=q1W#h@}#8flxyn};<|rQ;ljrE^h-t)7!% zzh)hui^@52KXr~+qe!mo(>@MGxSP7%F*cpE{nD?DzIesFbxTG3 ze)xF{sw&GU8t^4KS~|DKX~AA{8oEW97~~D@OT|mWrTPrk-UG_ZY*APTdsP~<+l6M! zcPV>H0Sd1cp7b&|&O_J63!tII+0`v=^aG)H>X*Hk7PguW?uTuzQz26@@mtZfn=;{j zTe$Zjp`bCrWBzF<4{uPZj_5OM*TMM1_KI)D9&vH+!z~5sRrE~!bXXoU(e-Zv=Rba} zI(U|&#wY@=1lKdUPI_K(DZD|p6Vf}aoLkmqW7~Zt1XEt`i~~f zuPI)cA#5TE?N7!d_f>ADeKo)ImfAzF5L^R4eUce4NThT1)`555(i^C_>#P5}1!yop zIH0C^6>z@G{X8qNM&ZUK3AW2ib4Oby(vLYff*h)I>cPr?m0lht3n%>gp*FR^Lwr%S zB^CE$N{+kQTUuTJYpwrIXqqfXN9Z$49}q1QlLNW3Rut>kv#iT+Q;=vU<3e`Gt<=*X zO6L&Z_Kl1YL&I4y9K7vLCIJD$pg_)%Xk{qWJyxZ;*cY7ZAUGv)Cf@f*V}X$(QB8mh zp=n@~kgWYwhE%Oy0du?QJOjMQNuPay9IZ{R5`BQ;9kOTn17Gp57IO=*dt4GAu{B5C zB*ei2%cGTGMLCQnCbB{?`W&kLbZIS1m?#+*cTPQHM!=d~#S#L1<>D=LCgUVDVUQ-q zk5Fs^8B9FW{jL2Fvm-`b82dn@Yw#i{29(CWlw)sw#h`e7`0>VCg!mKF@Tav@Z)|>M zIkw&We2(0qR$v;Lw4Kv~D{=b%ooRvI)%emQ-_O`@pZt-H5p4k%F(`lLi1n1MgKDUBU6 z7?w-CW`z@mQ;JO_V@JtwT#pmkNgz#!wl;|+5pOQJc7)}cjsyE0*Ork$#1Zzhq zpqYd`CV$!H@YWLKs}HGX_av{sd)OC+)dPFS?l553>KqC8=yt$@ow-dcvaZ8Go1c3lkq2@i&v zS5bSOo{E|=3EU-GYmb1wYh7F&Fl>vTbMj6~kj>6qvU!;BO@bMOQ)h&fC5PFehTfYo-~HGCxorsFSQ6AxcRd=HUkdzKEC14z=yqdKkydTM?+vjpj=Zff!6Q%7wvkyLGp5 zxPNc9%Qq}MFB*0C;_j{6|IYk#WVvIGkB6~6oV5yhB#svU_)$yZrVZaYa)(A@?LlYA z`7y++gM&shE_o^bx2$&6fAb`S7WRxIqSB>Q(i;EqJBW*(-T8^&xIV)UCY}*`rbG!Vh zqt>Xf`?HFdYKup^l;+hwud5AHo4Y+eazk$QorY%i_d}hA=Kh;5x2#n=8v@$SjvN4}-VfD5rAuEbDusJ`s_bP#zdRix=F zE{!e+T~lI+@=E}>>sa;tV}Y@%?|e$475+oKu7tO`Ye+Zjwp8%Qcr~YHr06@+=&eJo z?)S4s$fqaYyV@^q2Z`;&W$Fu_;O{@ka=f!QbiT{2s@gz;gx;c7bsH-@YPg$J`cK>) zQl9*->V3v!P;lJ2d0}x#k!x$s_rqC{;OB!IUuO&d-oFLl%R5YumI|A4R;Yw`HnTBu z;Z#{#%4p-cbozfK=|2!ZCVL$y5Lv#O7t4xewDB3~I|{s>(B0~(NPYvkFX-3aQ?w7S zq$_z+7Ny8M&5HE{FnuGlDvZ$yv z$4v%ZcMN_R32!uwXgutvs!^+gnTVI^BX;x~@rBqWUP1dfoYV{>#1$LA!E%9*7&$~B zr8+Q}O=EO%o?gmxwk(M)<9Y_dHpZgxuVy5yV+@@iuXqs+M1TYL)U_OX8#`oHJq;9e zPfSF?YQtkBHPJwutciC8Vg5*s_o~HF$p3b^Q`c5jOZ=h~CX!mdSd}_aWsIo-;++Dl zWTNjeL`zc*)>_6QViC}-UI{e9<%?Adt!fiVEk{k#^scK000>Np)DxC(@3c{!dpx3Y zfO3{iY!iN!*56sv@YrzNP<#8B_?Bk1T*sl?B~mZ=XR8b5bqi%|rMLHq^vT~IMw;kQ z!djQ#pTb79hNoE{^?YnBGu4{gL!RBZgH&EwX0~~-D_r>9fffOqV>By9r|V0~dQf?* z2;YQJb9&zy?T%AGrKoXArhjuWfm=WT@}F!f3Mumv5#Yjj{qa4$wm%%IJE_;x;zkcj zq5<0qjMz??*Gsk;Pa!PmBV&i11%ij$cReHDeXdvoC#BOf)4Sr%I zb;0w`%q~~x32zyv85XnqO)J)xiN-x5Jm<)zUY+Z|hkrv~O(V?)x*5v@4ll0iu_LV| zi(eu-YxuNejaFpD3=tdV#Ar3f6CO+8wJ=PTEO!Ns4M)AR%AX4a8F9;^GIVryMIQ@i zrqwL>fB5jhW;1)E*F^Wpi~GNh|K4;pd6d{nX6{Xk_~g8-O^<9G*xu>RFDNzRmpR!B9cUXcCX)r++ZEtv+Jlv<6_9FA?t{B+T6 zrr_7{x!}~qj0f~040P>8nD$%#;=Qw3F2#dGdabN?G`8(}WbM>Khr}j&!avQFTEQ{8 z46@SNUP;^B(m4yg`|b)!RE!S#?aBiWJPz~jynB7kALQ1U@lov_te>e|At3_zuh!M9 z_Vq)rwKwW)^VzZON$qdw6>FxC>#kb&NT;U$k)GVnh|3T7wKJWJl2t#`&Zl}=Epj`@{u~}_O>m7~_GC;X{1_s>W)q_hsE4s| zSbnEZd$XC~3tzEpck;LLuiZB@owcq-ik=@2y~<+$A~A1`pBXplc=jEn(#9HuODPIc zO~yOMip>hO#XmK}Ef&rfHT#Zu?Uw7b2v;W$85q9m9*tQ#p(s~xDlu#-Y}s9aPlVs;>b zK`?f@9H&4`FP$(as!uM5)v-s1QdK(pq5PB!;?R1EoBo%so$SrkKX6)1kF;E((d)^g zixuHlg{TfnG zn}3K1kFJd5Q$YhLPz6nTkD;Rem9Kx2t4TQ8_Dnc_U}uV}bz#zoj*c6;bfw5Xp#pXpRq&N@t1P3ya*=mx&Ji!mN z^bc3@v$-!NjAvq?0r8_^Hzd`Yc*QU2vC&QK&vz0(|Bzuvh=fGa=E`|mlM~gdqX(0) ztQ|lWwLF_>lq4BqitsE$en+1PG1w`pkvuHDrzrH)p87j$07Z<7gKYIP2~jeNijM}M z9WEUzEF{8c>y#_TsUb38Bb%4?(q)5by8xK`m>>fcA`3UK_<*0;C;^%E1t%mQESNUf zM9#Sg*!c04IU?}zSV8<3>-dM8eMpoi)2v0pns{j}v2U%h25Etk2s+?M$AphV~H6JOS=p<{a|Q@eD>HUMAR z$hN37UNE)gxExT7ZoD9TX#&Q@lqo!}&FG8-swZSdk)mgyT+FV-uH~4}3 zSKXIi6w|)Iq%>V(Qr&!zM7femr#cpxs2Wsrg>IiN9q7g`7n5IUA~Q^mwW%Xcs0KYq zKRTq5khxAHIUC*l-zC`CnKj6CyJ!gvD5x=K2+S7s?z;47DviwUPfz~aq4`eUzxU!e z58U+M6UIt9rB|rCi10;9^Xq z@ocIHp!^fP?K#Zd)ltLKdENQM7`uH-Xp8VVnmVqMn+$wd$p%G1bzCcr5>?CljHVf* zDbZlCB()QE4KqF<^Te_FB*l8?Ak{iMXz*DSYrLRmrVGEx(HOzqdYs#i-TtPk_0<|K z4{{H~b(S_j;}#N}J$cmpCfMXsfJaRwJazE){Ln)9#r}O!Q7hqJ{mskq8m;@%C4>nh z3@{ZsOLswy#Z@OtUD)54&u8R?;FkEPP8+-@EWkXvK92EPKjo}XC`#{_mrL)B)6+A( z&)*-fhOD|u)Yy6d+vSF?f*DBQZKh{k&FY_w_q;7xV6mxLz9M7(mG4A%#V!h3tz=yp zp)u8F^btdf8pO4i={j9YA8Jw|A!u@7fIB3VYK{g&$qTj7oIo&R1W_SJ7SfdFCCXtQ zUM0)~2UD~tBrZ4(Btrp!>E`pIX^Us^a0Urp`(P@)TIabSY>LI~3PF@lfaBDJI+~t< z52254EDHwew$(JNkcRPqWlqtccvy|xQwb}O+T@hZOd>+Ic(!>?j9v&HWBLAz#~@Ob zIxcN~mMS*M(kVbq=609f`zIV;sqO(HCw!mkG)4&HkPeq9nABSb zRp+}}Vq+bznmI9|t@0L#<;IE1aQtG-Je7~t>{$*|3F+!HspkpS@v{3p{Cv1-p~KIz zjGvvsRJ(HE9J#;7n+$l+$=lV|Z_y3|zR@28^(8pz=Z!_^Bxrs_R_o@{qRZO!xson^ zO3Xw2#_?b8W5l#v*Wl2<`Y`Qbd`v>Omg8=rd^=^0& zY#6W1$@0J?ZAF#|B`2WL^#+4b`l9!~ikdI!f&FHZ6+qVs%(_X<%UBR3z_?zeQhFFa zHIslo3#D7=Ssq@e?ZpyIK z5X5w?Z#H^4>Gp41Y03)C#ON0(1pY8NZHCToud|O(tYobs;I4i2{<-25iHBF@qQbP@qLRYi%9T;> zs%M$y00rq%h1!3UH3IYD%pCnqP_zTd)Tv*}t7=`I2|zZsC-#%RP|n`y6eOzv;~+Lt zLBu=89-jJ(pfTo!=q0uQc{AvrV&gGTqFf{?a*zt(As{0XPyC{xHPhc7rYc)&&3dnt;P1@w|X97t$$wRG$h9 z`6{+u&yia=^LO+!KkJNpAg0*l`uN6EY5m&UM^bmc{O0bs;ahR@OVHcyui;Po`sWi$ z#U4#itM~j8$ushDzbV)Ct>wf$FCkmizQn0BWSm;V>FERAx16iLaKS1f02DoVP@r$* z>S0X;BdPC)jTN>$47;4jp=vx01}7#|_R~Pb0Fh{ih_b%?vC)imD6U~A2OU?zl}psQ zDO2nqlFfoDHr{d8kPCs(6G8t_gr7`gsCBr!41&iESIm@gQwkAy`97pLk0UqYVLoXz z{wpUXm)ZYOYA$NGfQec~hdIYol^GpA?CuZ;aiO5TI`T!cBT6XiD)IX4%wQsS(6BBo z*gJ}oZ%a<^&qlHQpq%8a2+06Ytt*Ga-${)`tWd+Q02;CVI112TxBTg7krcWL)m5yb zMq)lkZq4beI1Tu8G=1c5X$qsY+b*t*hrG%TLmsp!C}Etl9xa)k&0Q9<2x5T8r6?vz zy6YGpD!S0Es#)GGc$NJzc>9Z%sCL`wuZnu~m`P1j@3haKoOqp;IBCF5se4{hKUivC zli$2BaQRi}S5>EYe2Xh`O1HwxE)Sk!+;Q}>W#^UP&GP2LmAO^Bp6(m$)!O=!^kZM1 z(ho4z9OhgLmDUzbnNb&zS@^V?t$S(vlCaXAk}3Q% zWH=Ts|C$k~f=Z1LgwFuU&=nVRXmP&3P?XV7q%(k47YW7zm;kM+==!TEGAt>!K}gew zap%b0*Og%iIm<3_`QhzZHne=*YpnQ6d8aineuy9IgD)8fASoEi93DcoQ>nK+7Xjm$O#yZh>N96hSCz)%o*>l|EU`8A^V)$#DQ)hX zbL8${m0=2lY|xh@Z|RCMfX;^045-MfUeg&fYrIL!xa(ADc^&X=_S!*p#(aQE3(B-{(Ke<1McBnRfX8eSUg+S^o8;b>8h;oSm9w~uu{+dTj_ELa;_Y@{FqHCNkaL~`f1I{urS zo&124lo-UBu~M4o+`nG`OeO5)bH5JoPl?%Fkm<)GhhJ%<>Vg=BM1#Mbg9?s>t?9F# zkR;_ML~7N?%>cerOx6SO8*n>aDdp zfr{gnlzkVqsUk`;#Lq`iQdr1iB#F6K5$2*ipVpzxYj3Nk5XV9l@P&XQmp0KXO~tMX zb4jy>7;)=AK6-yeE>I~FFjiQ#AOQWQ>!VLe_{AT<8Xgov1^ysb z?#R_7H2jH3s7&6f_ZU)!EEnu4!Z%TBn_tws&t#S}8kYWBr=+vRI{(q>>DPeHbL5(p z=3z*$q+#>JttwmuwRK-n-FNP0?WSJiTV)wzPKF*AuVZ~m|xwW8mI z_g6NGF0#cGt#uVF_@-RKvqYmpzhD_jC$lX=kqh!Ra`t{ifegH_nF=anP$)t!EoxI- z&HZJ!e3!z46qEPm7f}ap*o>iDXlH%hSH}2V6$Y6AOn1i6Utb;Nu8BB}NHOu6yR7+& zS=^NwHA;5eH4*(vk_RSSn$@rCJ#-N!Il8pF^uXzR)ODU%HaR57SoGO?vM&QvwfW2| z^X{e;hQDu)E}@PHtSegj2Gv}7V!4^Quk&M(k(>+ zZWJx#BMMropts!aV>ui-n|clk+t;TA>XxT@c|?I&SDL_chAqz(7Sm%@_30j-BllUG z3vyO{;K?m;HjoipUK7RC<#C4njdoMIY(j~Bp;U0UX?r<_JIU|?`}m^9f#<{b#t`v@ zceAg)h7U>OAM=6WxST>Q`A>$<-~aOj^dZV8(9^VQlLu_Snr}{Y~@ZzxOWnM?8`18JkfR0crokPHlbOIH9aKZ`6^|8LMT2|DSocG1r_~Q;QAg zr|qI*pXQhTa10!IyVsTx8+qkZkn;5E)@P5-L3Ss-yQl)zLZ8)@yBYLHDR{f!pOIo+ zKU~o}U9GuN7UCPX`EGuzTWhRC2q&Q)RHT3H~*TSqPuQ7b3GvD;#TV3LlJQ#Bs1QGexNh=#iY% z&mzT!r8+8f%m*Gw(YQWzk|iXJ{0LMeTLJW5Dv*Bc0gMZxxSq2h)6PuHC7&)@*(8-26CT z#COKWD!JP-{{Kk`pXG!(azVbApnTRJX{0;vY`O$&jeKhBsyU>H-OC71{316hGtDw05wGya=MvVrGfwIvNKD}(vnmae%0 zI|L!6qA@Qm1v=O^?`rOIi|&@S+;f%4)thhe`t$mgD@@W;-LoYVE@31%Qvf5!K2U-OcWLXwaFVAMWa=P8_8txOFb=UW5jl!2`@ChBD+V6 z>6@Zf_$)Y@L$KeTdc$ONf{&|e+J-3_HzeBp(n(~No}IyIFd|$%$Xu8FL8X#f7fZf? zaY14IlZs^O-qcDu55}^mfaY~dL7M|~bWz~=E7cR^rlw(_LqUL-QF4V`g+8ZrTnKb} znaa|&)$cZ*iE~ZEMuq6a@T?tMk{B+)iG=_MEp|o@U9?2`FnIfsY`VAy<1|2Tyb3_= zVT@n!+@H5UWPcI(C0XMig!eYg5T}K7h#V1s#=+8a4%(Ts}dMT|d(NR8AkJ$+l*dDJzLdYbgi=V_ND@cCGpYhGbDE|Edvy>|6ZCTNup zr#U~;ErdvRbxIXthd}}gx4ZDsWx(w)R)}PwkU+t3FJPNeU+JFadMS3BBXXNHY8yaR z$rCL^7hXwAu2X0Yct!RB4Cs6hc^*gnr}2R|&YJWq`tK;4;xWw9b;+rE)+c<0($?fSHE;HPLrxV6!(egZ=3xGvsn@+|DRop z(83ShaLw{PlIilW6XsTifJw%pZT8PGFN33dqh3wK40DjzOx1yFfS_hZb>(|jpG=on z6J(Bu6#I~XZrZ;Zf$1o1Gu0>o2@g7%&I(#)OaAiCX)~k|U-RUe8z%QrP=XJgm@KqK z)Wh_eHA_k#a(dv!Tg<|rOp_a98yqKNB557J8kOk#BLNJ%Pxn6cxH1a=6tXVk92tP< zQ=4Ng6Mx#TX?wao=51x@Urul9aClZRL@DfWD7ZeqTq!^;9>m4r<=;Hn{bX#ENy83> zz@XjXW*NowGxr@9-)|0D=KXu%IJrE3zs!&eei6w4i%%2agh|ZCWG;m)Iqw*f{KFl?55sMq)3=3Q0CXpG|65#Y-|G*d?y*WuDX`CmPOA? z-2$N2!zjoAXpsP5Al=0YVFOlhj{G$NqU1=V7GWF+k}PIveiuujypO=R4FHe>-d-88 zjMVaLI1b*Y-XlFD4b^X|@0pgAhymUMe_QV_C(DdYH4;k3k2mVDs(u zH>HmYEOf0c1t*vWM7pRWQWSht?(~RI`^;P;o|CS>)*c z_Yjnw2aSd@(kkK-T9RzSOUJ{Djg(fnik&f`<;7|+3&&q6j|kvbmNVxt*-g}+(^B?>_5Al9wtfj`e@_Fq8iZw!%&m?sg@%m}cKMF=oNW3Vq zXqEl+DqS#gEbEP<*{J->Y~u|LE$gsF@jkY3*bH4m-1cFW7mr7jS>wns%U%FK5&frh8s~#EH>U-}_e?R(D!4_OOJ7$ON ze&GCkvTXxtE#Q?^Wdgb5#XYG~kPF5wMbhttCn` zON_TOWAZK7ACoJJzob@JM(?wd(C}dfy^rz)?i($cV_;k5jreQSXctp4Tf@%x!=qv! zGpJ~=09j25%L?t?T&EJFsZ4m8zQN0Cc*&q<-e|g%xMe%&EVA?*zyzrG(_?8&z)Y1J z@7wb88Aw7@Yj?P$xH1_k4pmZQx$G`RwlJj<>k0`x9wPm13|(v&#cvbC=giUL($>=A z94vO;@px^H0muB_<5gFvv|?=K1-rkT57{o?A;-JeY)|cNAcUpTbGrY&Ia*DY{w{Z8 z%5n4@xiz&Q)*#lm#Q6tS&u0&GFYC2EwWz%{>5`2}8lG2P-@?zAC19~RFO4LA)&8ja z)YJSf?dkFzr!#X9ygfkUR~}TEI|7?cf2A@H9-+?wuSuYLd(423Bvqat_;c6G8bq?M6&9FwnG@8DZ8` z-;+*r?LG1u=Sl$O?6R} zNeB=^fP@l44^=t|O+eI8r39n}0Ra=5bm;=3(rf4)LFv8srqa7gZ-UZAK|v5ZI`NxX zGqcvr{quh0*E`wwynF81XK&S$vbbykLJI=dYt=udjb%DIJV~3^-9q|jlu@RzC;jY+(Q$fSj2nYQ3?eau z7QwDLsFuPhWI+Oo$aCg@j$GDqjIN*Byh8BTJdXjR>xO8i8?_Hq$IxFD%?#+!N9^aUs#tA^FWs@-{Q*24%J7NUs8)6(3o z7G6mN=4_T?vx41vaA0yVEFx^`kz`(BZRSu6#@KbJ+WCsLg4<24LJv!;h;o%=nK7t! z3OUV`rKBLHxLzZ+G0WVt0#nPwFNX$>CDGHeNwXjouPa$ubVrq`lXCeR)qtTz%>dL~ z?Ald1!!~}*PG6Va1?CN_=gg3J)0(Y+ko$=zBXt08EPh*Iu2k7`J~bKB)M9ARZh~<= zYUnu&+MhT$%Ko)ZsJf89GR)R~@PNejSwJ{l@^r3Vr3pWh{`7)4b!-cgd!&*}?>8+t z=>v1rHVzDm7zd~6w>mTbVvjo~&P(nYb>-h)f9fEesVzw7W0@%7ZPeTKlKRERs}#kR1>sSl_H+esT8g# zD;|D3TvSO3^DT^@$y!qBfEYeC1fwDkYexVK-SWJP8Rg%ut#hjb0#0$afsuK)qd4Wr zI2}xh6iexM(cVz;3p2a&3CqwVS-Y%=xGcsHzsBf9yPVt#=pYJ+y=Zg!S~!GQ2@*-C zp%c>PmldjD-x=qA8XcxnnNqm3`VVra&hkj>k(b`q?}G-zVa7hxlXw!uRW($zLvsS4 zJ~*qsKw-h*r1^)uz>6tvLK9OO(Yc6xR5);0_j0Aopa6jR&KoI&e_u_yEk7)0!?_fM z(#O!;i|DRl~|3jUC6L%Sr`yoraGj0cg5sMpyy<@U!Tf5kq!3M`3+!Qc@qf zNavO5)JJeHka3Og_5yYW=u>gi%thjI!yr?wf<$pes_DWL@{4gNVbfz+bFJF1^tqSM zy)sW))BQ`r$e6}1U>vgX>7Ys3m`duan(6162Hy zz@!kJ&!*-m(qZP~JppKI#fj@b$UQWcL^=ara#*9i8wQRbdY4KD*b6{lT}S=K((Jjb zc9oKwWme%WQTlW;*gKEq@0U7P7SEaaOSss`6AT^gGHZN&4YLWg9b)ubgE#b#2Xp;s zhCH6@54Wg^Tg_HFTe~c7y%{YVpJ=m_?=nK4+NM(~e^+r14T>=K832%Zn=+MPLr0G^9V?on&dx-W9w*S-^GnWwFdO)u!?#@)e$E|1&E zVFkn4X_Tpx84;p`xX?~&<+RM7pwI<5%TPQpY=r-EZdKRaDY%&rPxVogO6bhwA1g2B zP4)0>yqLcmtZc_*xS*>kt9t)*vyB!{3Bd2(@r@V1yym*Y?INZ z!aB7A8IiIa4yu@CoIUN7EO;i*c+iBS`M!B8vf1EovU0~g_b&%LsS@>eY5LmO%aWU4 z(mckt5wp3S6XgI z>}8B^lleS*-T9QTNK$&$ShXgm ze#$d=dZR7);O*a9N;87euUfy} zzy9-cll(GPx)vI9L{I`k_fY#r##yxG+GkGZcwQs}j3ssIi#Hj@Fa-ybSs7khJ|N@4 zxPHugaYrfCZHrJP>J~Y~h&_G3R^-jT(C-6qey-PI3DO`}RW?}v1)*wW6YQ5<4tauB zYQtJNjn{!@_|_K-?bhAuSNieOmQRN#o;rMd$&?eaK053=!KY=azw^Ms43I(tMg%9= z0nv7$6%+o_nbg)bo1d&3xk0ZrtvNX)yKmfIEg5+X%ynyCMH_)|Dbh3=Dbsqp@j1oU zgz(Y~n))ik20}Ja#0&X&Q(&R80BCV0SLlQmJ>VC|>8N@$ zw2Y|HkEZ&fGR@7ZGc5`+>YIt|W(! zNVVyY91LHy)M+a22XmG-u(4i(o;E*gEDz~BesAwpSmEBcDa^#Ga=AZHhTiSmp1jV( zC|k`F@ub!2$->GgMdYA(=tyS>sRN>T0;w!0_sm(m^f_wWW@*v6SF>bkev4pJ!#z3u z>B^^-D0#;m<_^E{BgTeOPOlb$0xiZS*P8$P7;L$?^#j)etTluP69lGF`8tvUoOJBe z&BcEFX<}(>9;BVuo-U0;%Rea-ND%d3l3;g97qBQtJ;#7Wi}MD815)EKf`;2Eq6%X~ zj%4JiiWG2Wh*;Tid96?(As5{m=3J#@@rXX?V#k|rvsc=A?{bXZ#`AaMg?h;)1*w;#k=?5jJ3P5W!^-)T;9oB=zed{&1~m;;grpSL5P$t~z1M2GnM7z z18Un>#)aRAch0rWtzth*nasFaSo@uQw6q+>_T>b)q`glRxIAepp;=Kcb~*8Z`g-+; z!Ts5}mH!UG`hG}!DTPQ9=6c($f&u6C`TaR!5wzH8ZK|qOJ+xcHlq_!D?~gCiObxC~ zTPe75%C7mL?2;!21vo|nz`!5TN+(>Jk5HoAcnH9(4w0(J!ncZoZMe&gZBW# zW+KUW1CYZyvw@xDFG-m5v9A2kHL?}=#88-E=$0Hq1jVcf=#mWL*w-yo=5poeG0S0fZD&6M=s0 zP!Lu>q7T)mHHKhQ*os#z%ojs{3&zOc(JkPyg*w>@DqtBYMczI<8R~H81$OU7&QD3R z=E$k}&=a|(dcAW8Amb6zXF5=LZBlR+`)2@*H;u|jnOi_~kn_cI_feu&5rYr6_nzZ_ z!)_1f7CNT3KmN3P~qcbMd2eLMZn$#Hd0UgVuU}|J0KOLZ&fLcgG zV;dZaPEfc$$2HYXUCW7Zi_JJJOng+nd&wt8G{-mF{AatPmB~TBe8Zo|fluYaRDW3m zIsQSe_$teQpU@ujI*%+bW={9nR!KJ#gRd7ZPBS*Ok-9LQv8`$50p*I|--^0paGLAn zy6tl9SM_bzdk=Tj5=oiZg-1;>r|qA3bOrO=ng?n<+AHR5%XE0%T!caAEKk1PH>&>M z$&k{T`2R07K=Tby4; zHq|6rIDKSOWNl5Jvx?qIKGn<6zz>_Wa)i`q4cOzSL^;(@vd_;Xri0Fo{vTNk)PgtU_}-nF@`2041Ygv@KHYQl7YbUJ~H2kk!& zPyc)Cy*zDt$e18_0DE%h;cxls#aW5Oe_5{aqTruc^YPRwCTAX|@(dNkV^mshR8qNU zp6Ja~<0aSSR#qM|0yM?DG9YM{?s`$5AWo`TrO=;9YDvy&)plO$_NZ_tQaEwClB82g za-O$yAv?u>ch*1j!p>n5CngU#g|4(*7xJt>g~#nX=)eRDNh| ztc3uBA{%RbDuPpbie7*+bJ0kTkggfGw5)xTVd7@uk?|MH(toHBF|Nd;^s#3Ov?GN)^dN>gn7DR0!zFW6VVBIAn_IdZp}DuE~+(!lfV&VHbQ_0GsOa>^K-6?jS3+fmNDY#}Nu=l) z(Ee4=AO7$Z61NAOqT)sUALQJABUJ$}Pa~Uw^79;Duvzj@OgNUtoEFlDdBOUWXl#rc zKmqu>5Sn$c?ok@;V}L3Cv(YhJz@2}yK98Ku&yW8+3Xo5dqtT9JzjhHQMX#erhaK+3 z#T5!x1G$ytQIh?4=tC><0twDm!wkGU{459{JvLl201ic@)c@FpU5_>fXb8W>U5cz_ z`lWA?)`^wjU%U%^YPbt}XK|J{*!YRi`K$G3+VTToT_>*FC_SEW@bAG?6<`i^g(HC} zy*&BJl^$Q&&R?Dn&2_LsiO|=rU)yVL)HZH5jwA}Yaa&iIGA-1VJvEDYTzf4TJi%0a zVoGM4PG<7@?T}+d2L}Pt)$D-+MMeo{rd;s?O|>Gym0eL{J`9-8V0R-SjJ%c{d6^jj z(~Y-6=PMJBi&);6|ASnJ#TTT%`vW=hXRu{|8l01f)vOCVED5O9S%rYa1zOq%CIbYa z^TvumxaQuL?U@n>b1gon`f7P_W;rNMk~xpRCjhBV@x>!gPXI$9>HtQ@`P`vPH4_ph&2&NET2&k`#J_FgS@)r_xvJFC6FxY0$z7 zY7uH&c0zoteJ)~3e??S_zG?I_?`oPC58YdFhze>@w4KZnXsqFUG&c8E0cKOz)3>Ql zV(J+U-^nGv&|LD(IqH+q$QHQ&Mo9qGyrIMMUG{BaTpEb9GSf6NkEM%5nHZg%nlLmq^h(@r=mpQ}KLh$s? zMdh@CuLKotDwB&GbB99PB8~VRS-5+&7Kra-=Mvt;=pYE@c8&EXpHv6u?y@QzdA_gA z_$1yHP>?0kvRu3po%xHyE5EGOHq+CBCT|1jud(^xkB*I6C|BYiLfOuPx3$M%= zLReCzV^9}_-VdKi#O+jR*w?SP-9Sxd+Aq!I+KnUYjI1(V5f0)d_N+Iv^<6In+_sBf zXZv;VX`vT?hb`jw>HQB3S6_DAq4xYRY%vZYqIdorK$C3Zp1ytf#-sG_9UJSX&l_&7 z_B$UH5GJ!MbXBx{ZUu7jG7;qiad+(z6Cxj$i>`ALJE$|(Ok@knOA($4G~n2H9abxc znf7k0R>jq;HR8B;{~%|5mE|O?(22vJ%wtG@;PSXZq`lu3nYEDXo8Nb9obb*{7Ss>l&YQOa)_yd?8Mb|M?TJ7aW!{YLdNB8^b4PfjEXT&| z)fe%w^8r(-x?R%pm>xNr#=MW7<{El=g>*Wq`$B&>LvVYUEoZt;LxS#xyY3i|O|*nN z!6aiMK*(ExR{<)L>AGHWndZp6!SM3cx0t|EU03_ttSF9ZNfKIF-+`4dXM?q(w|)FP zX_wG2J)e2qe!?xQ%(#l6Q2ja2)wLB-o!`7JL1yObqgG?RnJd%X`MR;Y zR@5VJM2ql`t@eI2C1$4DmWCwY7raW%du`U^##2c~4Vm~mmkpFVnKOi@EFd$_`taFt zxyzMqSLv!0FWCDFsST@I>Tq0=KHQxy;@681V=~HM>3TxqQEu5lx1aKC#C~#LA+pEpRZ&4%)b`d#Dmi95d53q* zG;sUfF)U6iAv~1}j3ZLc%v!~1hxovBy-Ydk8Q4V&vP*VP{iPyQ@Z*(EUfzJm?2M2Vkcw66eax@@0xTa2(+ zdj3pF|DPrMEVai%;FI1^!53fdue;YiF?jy%rM;@Fs(@Ht4 zBwD)!)R-Ku7_&AIsge$L&Xw@JS#wT^jdIrc?EB^$8 z6*CPtmhYk4*ZfqSmHzG3J&KzW8nB4^&6~Wc!ix&2ba2HBb*q*lSVS5>U8s;#MK&w3 zCRyzQ96xV-e_E2ZEMB?hAEfss?xxBto%M7blwfvAD0`ZKVFIy0Fq@bKS}LI(P6Yuy zDj792CYrGX47`rL1)}2m?18xj5v18D!Ip6QGB@^M;y^9j%RI#KQPpVj{wZrHKxm~6 zDH(pT%B5&OJA-1LYjeuz>~3`hwT zn}RAFmqUs!A%(TMJ13SD-%+WdeqMkXm!~OqPAgvtFn`}aoLA_K4O|W-pToQ=jWPz+ z6H_f97$0eY7%j88s|Z<5ig<;9I5i5S*$*h8^cP7afiT<#8&sW&ni?LLJ?4yo@e(z` zLxO5ftU}f^{~-6tQxz!>_}ZRd6cqplX;j}vhH}zm>wC9J{>pg9y6N8*nQZN$41f){ z``b7Sxdf!AMm7c@=iiQ|e#?8f1&{gkkcU#(?WRFIQCYXbaviUo2`mER~1b{7SV!`k{m&(v4Bk(35G!2LVNVLOi zGB-U}nrp~lR4C|Ljlfkj2FjSGYehq=F)XGh`=UWaJahker&W0W)thnYO1ra;sKX!G zvWq;w&g{;7N{XHvqB{X_fD@okkLU&7Vl74+>(x#?mOVUt52aSfaId2g(A3JH9^&!@hO zpmvt}2RV|Z5Tj-2H$Sm{DK=1BZ(VnDBIufsgPsX60mROky3t>RjHu&GFL{ZtMI4G& zIxamQiB$`QaZfLz6~feMsoFS%X-FYYUVRfo2-HXM#v1n%(w?3mU^K8rMslrJN!IvR%3)ZGKaNj&YzH*%9OPl z$|6fC9}0)W_@H*B=Nt;abgVZS5SmGCMyYr9L}DS9F(}{f@_=o0!Q& zfbH4xcS!)C2;`iSO%?xmu4bQucIXbbsF;!tIs(h)92~w`+N^M)`;%1lp`j)>#!^02 zbE)9F=@W0V5sI2_iHAjUo5)-|EvcNOFyOZlX$Y0TCQ;v zx2XP^-OV>QYP{JRN{Ae$60Xl)%+9WRO9{r`(?sP9jtDPdwb45&&91L~svn@gFj|=jOXD3i&C|8ZRU?v6QCuT9b31fgwB#E{Mx}oIfX<vq$R0m7-<~HtR}z z;ag*eKL#C(ee&+vCSM8WW#eQg&~GQ)v2?KPK#f51zM%wud1eae9Z! zFpZ;P11T?VrZ%2VI)mU75b@lz`CGtUoibDNEBB~dYImg}UcBMJ`61(R@={D`zY-^z zTHUN~ttN4Bl)EoP4zGag?1x_<3sG73qXBvVojx%2lmgCQGq);K6q=(Pse zjuggzmex0Kfmm~naD>DSI{w@Hm8Icmysdvzp)^f~Y%^dJo@r%h^CiTw`Sy36OTvMr zM1j!4@xo<_Gw#r1=QyJ5eHFp5P(bKN3U`)z%v2oFxPtB~LSa3*(~sT$&f1&jPyYSe zfB*h)xThcA?JWpt z=zoXcJ)L|c9`H47Et6i$&k8xC41{yQq+<<<@(%eX#7l+MxI=a#IWmZI$3535wq!xw zy4WG*N_=Y7YqdI4{hNGE3_ItX@j8AyP@r*i#u4gnC<()tLqoL^J;TZUFm5vp)0?9f zS{05SLEQ{JsrP|FfYt-Gv}{^+)WCcgWNN3Kh9=C6s0SQ=a$^tFr%0Ry8LG~>Q-zAX z4TF#A7#Tu~*b_{WlAQQr5Ic)e+7na0v~2m$Vx6JBicZeuAa|_{cF2B)f~VsnYJ$mZ zgx<{CkrggOabDjHNY!7;5K1DBPQq6Baem{gkpE>TMR~lR8~`d9FY0E1d0#{%vwQX}2;6B)FUk!sKp6$r2B_f>Xlg1d#S?5TJr&T4q9wv$FSG}iYk_G1(T^}xH0cbO zKx#lN4tN;0>XGneUMa*$8&ijj`8v$>IY!w3 zn}lJrmH7Sc_awJ;K)r)C z*{qku!DpUBwaNs^sm|C9|9`tG-!iI<7 z6k-5?<^D)G4Ae*c!_XdNq+P;xJa~EEW38pu@rV7z`rBGo_E$$91{wKY`BbjFRN7W8 zu6hT5+A`N}N01zBSO6z}jp6_P%GSJKlHscxLuIuKD4xH+Qnxle8|q$K_0X@Jd5vA2~z zVv6JY*1^ZW(l(Ptsrh8>t$xHYQiC!io{DA}LDVgtt~Ldg?#wyeNGBM7yX-2HF?T&< zH?EUm_5P^$fgV3J%)0hV9$w)%u7RF9z)~#{x|HH&B)stET!`ZE5tjg=W~Om@p+z+L z?FY)L`oifbMpKzt1{^nz2;)y~Df25C2WP$lV;L|*J05U+3f(ws*qy5%TP=IH|ETgf z)Y|>1k*hop4;M`sv;Faf(=fX;5cI=Y6PMYPy8uGqB8t7q;Hq#^T>PPN7+@vSI4->3 zI701n{J{5F2x(%=smn^9IfHgYmRiTv9)e*+voCuoyCV9`NaHE^Lh55flh>89xfhH2 zSw2I-=+FTcW8+!rUC<3CN!1DZug}eOBY2C3H?+;JGjjj?uzFf%FuM;@j7Ctvq(U7t zV0xPB+HfMSblp*REMElOpD6z_;b*4%cer<9?*^h&Gd7wTVr(i7q2QvDtQNtlB8h`| zA#P6*2aJt6K7R8mr4PtM_!uPNtWF$NbFM(&b~t zu4O*XEKo1BP}Hr=C=06e12lS75!%l@H4x(jC&(mU;C2H{%{%*V%Hd^YkVeMwIuDO( z+3};)^(K*+LJytBuE`v;B+4kmYOs}?4f*3+vdP@5rR)Gy$4wI`N7a6vy!tw8cR=tX zdcXP8fKQI*XR9|mcVFu4A_cO_vO4U(2s|ifKfLXF#D=EA72R>3t;?xl!C*PDK{F=d~LMH3&o^{T^QR?fvR)_x}r*&nnoHDF$a-O-I^>Wk_ zZ`?w6XY+R&y&02TF1304Tlypk*s z2j})@@aaPow-jlUt`AZo2eRe-tD-QAGf`^yR-(-%w{eIe9)L^nVAYU1^U}rR=cl8GiU2qD_b&x>{;c?@OL_6 z*DF^LNuM(MI+yrb2eA{A-9@*b45ak8GbVquKYeW~E4+ZF(tg{bBtQ zN<(8Meh`BPRzT2_01;WlW40*S$5C=4a&Bk`kEnmv^urIjdn0}Pw(vCmK`G|%U}F4L z?wr(1Qj3#K9o-^-o;Q`ZpHL=#WeD%xr%1Sj*i9%vxG>(xyU?+p9S*Y48HA6eyaH2M zP@Aw!2QmwqYER0=zQy>@2oq16YLi+nCV@9bU z{$~2Kna(03Aw@1x2M@Itbu1@KFbr*6j&f|xYxoC`_rp_-UoPmD%d1CiA2zbKaCZqz zyDT7A()K^nJ@c0kek2edG1-4&s`|^tkcr{`&Fl%9<1*e+sKl+ltc zTBu_rjmLQ3 zsp2UFxheKKK@JCgCSw)f54B-2Gn&hkiFPW%>gML0WtU$gZAIJp(6$Tw8W1pLwg{G0 zCoL{!(pRWO0>b1WdJ5cev8BJ=u2SBf61btO>CF`DGm}4mzkgKfAITMjv#_#RWTeV! zc$rUYnIjz+VvfU$sLczTD0%?|P0g6fdbO^L{&eG|tY_#}hKB4_H&^JrOn{oVSpVw_ zQ}#J2%nl05?*c2}rs2sWKK7j6o_1(iK2(Y*5iS-9EZb!UU>$uUhCkCSJ!Z1Q*ia4p zX%B*V{7%)edFKgvuyO$OJf065ag{uu4O?`l!i`iRw`J`Q_^)KU?n%?B(OSS7rN6&` zU|M0I5{RF^a=(%TXRenvCtV>7p_6KI8(|B>&_Iw-Gu~TeC$CI)kFq70Go{|mbhhyC z_y`YGDM`>75mU|(%@<)J=*{b}O6uQvT@v(h`rKO=2@`41yFy3Ug|i6VOb>G?1Kc~ue~;O zGzG=o=b5WQrPuZZ3}=SW9+6(|EZ5sVjJ|ke(ZW{G+9G3OLqGu{iArXS%FO&!EI=>T z{!WLjW}QeL1k7nURhuSKpDZduOPz82IT9DCt=Kh9g~+oyn$P`nJ;!mz(NICNqc9pR z(!o|hl3WGdO)1)YeBHJ2#k^Jf(FM6GR#z9vr^~UiKGoSmngG`(qxX@#PFtLX;bc6~ zHy6DShK)+>*2s4kZ4Gfb7Pp^9ZHSC*U>;#%wyon4m+Upt-~ZH(F)$aM>mJJnOt=b( z0Oa7sBVByELi_-CX=%HxK%V#Z*4w7_tR6=Tkcj@mx0))Z6(s_#leMjY6?U1@p>_#N1j)%QE8(3h5*-__Z~XulK#(? zI2O_cQoT~KDc{^Zd{nJ_i1r@IJgLTVJl0RfwN)3+cLD1o8(qcPikXpn{DaT6fI5hwIFNW zktb5ilPqID=g6-LTQ6?kk+y&M8_ocrc&i9fgQp08vAV2aJ<%AtSFxtPxw{sFosZJqcxR#jP=n9udnVnay1#ml z%DwSYd>_X_UdQzM0bb#bw@EiAH*FC|BrePg0BNU?Cek8src7pwLC;oMv|kAeO~=BO zc1JX|6-0uGp;M^|ev-tE_uzcptF%?LVkuWJW^ynYr(w)2UpwTb9jyHp&%Fv>9b`O+ zJW>#~E3oO29zGK_xfB?;lm1)wkW_wl&_s2NskJ;1#Xl#g%+^&- zu_)(!tsSvA6|M#B!R&N1cVB<1Rc62~_{h?{G{fgBP(>fcn{0B+F8X)-?=G$-Gyi* zXl>_TmiwX;g7ngUW4l)0%l@i~u3O=c&o_mqo*&rW-#y;eY6GA7!smcntJ)de1@C@xxy|keC$0qN`VRcYAQ!_`daNez zS;ErT!qLs`p)~PQ#L0*W4rfIwTdX9v8K4jcerKiLl|hIF;O`VoX)}a1zX)T1O{$qq zzm6YaJB{oqz4K90YrHU^`s(zT?ph~;bZ(t%gP?iM^LFfjf}7VAVLaueRx7loFss8SGeEjhNDeJ@3n{}au-*pr%?*}T2HtR>D;)_i+ zuL(_qPbaeD0Ax6X3baNoXRvQE2avx|qO3(TNM$79%VNxD%JLhYPSZyh0X~)&q}!k~ z1z_ozb`HDb;V=sVJQN!GORLT%v~L^&a0eS&+a_>d}Rcr&~FcO@tfwvUE@@(S%2 zfIEcKFBjm@`o`{HHo5-jFrZdS41x+r5=||13gM?Q9dLLPq2)(qsyKkI9(XsJxq%7} zA=B8$OMVeZ0C7HpjMdN#o^kwQ5!6NMzTZE{ z{dL_zq9&hA1KLG{CL%r!dSIV1Uj#EzQ9*9gMGxm%8C~-D-bf?TXyZgqTxs3!>?q*A zkOlm53#L4N6W>2}Jw`0{S&F07-GWb1Dn}*A=B)V3AZh=vvsS?oO%{=a4+gjCFeMpN zpOd8m_!uV~y9CWJPY5Wza3M{l-m({htOqxwUbI|I`lV}WFv1(nVUp2W>5<;dHv3k3 z@yC+m_#~@NsZw*6bQ%L8`x#w8$+T5>QG(2{jw4L=0&LcpY|lo%cY&IHhB zuc<%_O9ykArXlXzk^t^@I3ov)N|oA}`i-0_INAYCw&1uM3(yyBG8c=9iyeZ6qEVbQ z3~V%=2R2Z85NOI>NStvwVJO!*Vp;mvEs`Ps6Fvr^T%De2Q9#{Gc&xBHvW-PRrtcr* zLTwVhnyD2m12G|!>UcODmW5=LrxFZfG0^~sz@Rr-AON}at;!Ja}+wM(6VMH_j4uuo)0kbW<_!G6k+s(Uj3~sv0gq2BE$AA zt3;1q0c-bsetz*-*o?M-<_i0Y^f+#2X}`_WyAX~Zm+vpeyuA7fxzPYQrZsU zz#Jjg96wx6^XDhv*qkgFm`St04=st-@VvR0Pfy)7*rG5QQL!ntd`{@7ZateAG zj7AsM`+&T;zs9D_)=OkN@0UGe*nY~SRfM&?pEKv>Y*33idZ8h0YUrIe*SUEeI}%wp zmz;Oxw=O6`GvP*J6y^>sm&9DKFg8iSf_i*hhNgps?%zY*W;=$0&uua z=YF+xs#e1vkI-1IU3X&Yc-UApoDLMNv!RX_kU)pF52*QkNdlPenqHX%+`+Lr|Ci-1 z>T5Df3hbfQ81#WaFs61UhQF;qe=T>3hCaH|YWwB7Ifq5nEtmEWZ`ehbK$Xcv$<&A8 z8(JL!s`df{U{sf0YT+04OlbF9$$9-U0@Ws@4+8TrcAy-F+H;Qa}T z&^`Uj6#?<8;4A)mKTp~h1#0r6j;pr6L-kRs4RLAp3NM0L5`OpzTQ%CY3qpXo@YI%+ zr0$&Wr1a>VGMt;;O-}aAYf^fQS)b>yvo1SVor#83dmuuJlWjRIs z5R!xV##XX0glA07i6hB_ao}KxLJ%Fo>|UhBoQcJuHa)0Clj+1h>9Uq5#4X3k&g}?& zyOi){xXW5&Ac$1vf~z; zbjjjLADftUlhW^%FrceM8?)L8YpLr+0^-$jyw-rfPJ`NGa@Ek~+~)U? zB$@mV9*?R%KAu=q^a+XCg-1_4($twh=e|`xed~j3F$X)HoncJX>v;ss5fo+dS+=ox zsstef0f;CuNV?&U41wchl0M@nwcYjB^Q@31aRyp!rDsUb?8%=pcG|H+CEl!X3gx6CS3thp6=5#gJ<;LNb>tJ#2VbfVtPMJ8q zv>^vLV%4p1uEF8(V@LbAY#q*$#g49p|2?v6#okRwinVKN>k&O{` zz}6HxySu-f3mzCBUYm{~X+6q8$unPUilVtG_NCEz>Sp7{Sh!~N4LbL<*p`%i6Im^9 z$hAm*gSLyBi;NM}^QOCR5m`N9Q|x%O|6XVA8inl!&n%tcl91E>+95zBu>XUco0=Jg zNHWP%`jh94Bj6VF5>h67$Yf-HkRm~gxx_aF^zo^bQ`JEACejn$5EV-eE6m zr1AysJ{EUNFVQI){K?~elV6b!P1wTp_zDY|ExZ#mq^Ok}8gr=huDaNyYsPX(H}-P>)K)pTTE?q zx!M;v?NOk&dGN?t$E?(@=vWZJU0VEB`ALFgyG1#kE$brtd4{a!bAoG-J)_&fcyPra zCbl&u{=hIvr3RCuflj`fEIX=~+u2$hsLfg&>|LQ{&b{3huoBrhS6zLkm-@84Zm;}J zo0eI2E9t^u_u(c_@ipbqTNo-C1f^p5^}{^ z%c1tKCF@rWn-rgFhEqj-1IaC#J6zhrblr}4VG$?DJBI2LRoeB^$*0SJ4PVpvGRe)Fp5a4{8Wl^rJ^JPs>!Uz zUuLJr5-qVAKD9Ets%M)ZVy6rBRok`e)(y{yk7?Esa4d;!|Gnc7?nk01k`xb(Tv=mO z!@XuG^ANvqVLDKGSV55HvY|59XXdxxRp#%#_fRzPyvNsMDSGk_`sGVUcdhAQRzTk2 z!u6}{Zum`w|6PFnKjIn$0_ZJZyn`p5#!w9$2T1s=H)8|X>Qj$Kjq^qYvFLx}<@L7B z{y6&}&n*mcBR?MKc3p&%b@T&wsY&WkkaGutM%eWGmQ5m#Ge6k;*6|y0s)hI6a3YAdnSlD4tLUPZM-t9>mA zlAxAqht4~LL2Waywz^Df+N1N~d^*4L<$QfUU-$Jq&;7ga|CJGUrn`%i<&CMB-3prw zx2v^+(J^$%Hw}pgnMYN+5p#&rULV)%l)@<1L-(&jG20NI*o~b!5-uruF($q;ZJ|u& z0byar!)r11Wt8ppNkUIa@DG=Jjot$v5GZE%YXUd}2n=(UR;Nz=L&|QdH!HfF(4k#= z-``LbstUrox0Gxb$(`0uXav-saY$Z5NhGSr;w%F@(r%XmfSfFFa=sXo8t#IL~^ zqVjyK3%aCim&Ev?9D5cVdKKhx7-s2Yh1x5wHkULfwmBb}-zpeKks;L6=M_2t!@MqO zmgKP6t!w;^$F@7!vt0u_+M=-MuXCQX5S7~HLFj;N%j3pQ#9oZMjTRi?Jw)1PxIS{X zwuIfni4y=L+sEwfBFPjP={9;{aG6N;7wczu#&YK8fOr1q^3je+&k5o0(d_Q!ik`X_;U*;~p$J^bya6miU6) z^vc=x%Gz*sS>7f6O%b~-d2S;N^?&K@hXkdn-HthZl+)7aS?rRUKcb;5DQWDFXNuE1 zTH;et_Qjlx#kt(YE^qDQhl$swPAL6Uvf`s6B(oR~Y-q+OA2*-gd8sMsF;jfKzj?N% zD-8a3Y7H;$u~vh5Hb?HSmuDwrM~bZ+R3qXh$S0qqW#Ieo_o2;8dv}Nt$4P(1tz^!@ zT=W3y%a2M`;8hHOE+~3EP(N?AG$P8wwR!8G7e`)anA714fsOsCQUurKeDg zTI!fC$C@}Vu6E~GPYCe|M#ok}D!4Nc85c3&(hne~PRHaw3pkbI}+~HAushBsMJ=`B+ z$smsiV$G?tMm({?q+jxv^qJabgKFFEOc$cBt1kban8NQ^4KPARywD zjDeH2_Q^T=^lREFh= zTZ;{aqF$_a#=q%yU<4VN$0x~SY}XYO^D zIVyQW6tC-UU;c`H))5`)GMMa%>6XZq9J_f_-eSY*sDaqtF!$!#KAt12fBIY~!!u8+ zgAUMh!YFY8A-Gq%_fB|(qgNNDrK_fdCG9^X_XYdnV4C_RVIRwiCRQ0V5jXSvnUH>9 z31#N{3&qbAQfvEBvZbLxhS)!q z-YdVs^8m0qptrJ@atSmD7{m`RFj^dSV~4Vq4pMG?+VS_JFbmdfoQ2E>-cCR> z>eE_(Pe{`BV{Ik>y6QY#kq>$xD=P&y(ms!RM6NzATM4YE9EyMIWL?j$g20xZK-Zx8 zRjvxn6z*3?CUw_69CvF};S0}=N%5ozE3D~v|5(oxEg`J7e=3fT+qSq;ff~{1`M_@o zRevB`GO2PSkcopdW}g5B3lk=5!3*ig_$Ho-{ia&TM}s!g;l>-}0blzpZ4`3N5z~_k zzEdG~o%5$Ic;QW(Vns~9u*c`3_iTP#5C8GrQ$Zla3yBbuvy$TN*V%%vI{al5_QIDn z(Q7@zx?NwVzN^)po>tja#<}xQ`nS@7_&%_b1iAU=&gRQ`P{>$~ye?FKqI#1>BoPq3SB)Lj{dQm=zTW2KTM)(?D z*Ef5YcKTP7S(7#AHdEv{o0wWTtD#mlLAyD$WnJqA=I0%S#>P9WQ%mXO)0zJI#fF)K zL^_R}#*g`0#9Lwg<#0z!gOwuVtP$B*hW8B@8c9zu z@J+sG(Uai~VbyX}7t@jhLjOU1eGk|N8wQIP5{|ZP5d1TLMLp3v1MAI6IwNX*ySaz_ zJ0<(RgN2WFW@VMZaTVV}{&HN<++h4)3q#X1p~hrsQg)s^CaSRfZa`Egspi8>`(o{7 zbiGUUV)z>=oql*hT~#tWML|=SMfy!m8rSn)*|Wb%o}k9cGd=6!HUTkN&_u3E7tk6c znq^SZKxEY5v}a#S%xMXhO;1WScd39T-J}6WpK`YoDF?U-1cggMP-PWPU31f`V)cWYq*OB3S3M zSS;XU;}N1waN3QBQ^36YL&kicm8A;r8or^40!`w^AdttE0X8=WrACsDkkQdC?HszS zheg{y(sMl2`hcliEFqeMsW;UT?=Fz)$ASBcYtrAGO}vgm^!n-+F@8#lENp>~+K? z%_w^Ee`^XJ_Px=AN1kt!xtopO>3vy$wf<9)N)DuQpz!*YX^-^!jk=kO#=$a#2XLI` zpB2jKHVq(lW#h9MKcv7VY$C6EUL6EYw1qxr4;9 zBcNqALxyn3HE&ZzJc-&jE?F!2uiMZ;XOD;ztQBejcr`^;Kan&hxsOy{+0%@PbpH$x zpsKyyOq~dxx5I3Wez@EP>@Q$@eenY1jB|y{sN*xHR!lO&`}2~V*`zYOZ-y< zJHd6Ha8>sbI&+tG?o`9`Lz>2WNdfl2dueaim5qV%h0G@3z|!rDyO<&vQxNorF}d3$keC#5XtjQMnLXVy{;Z|N5L#Pf zlc1iK3I$XDfOOvAXzZl6zh05MHX$ZuAr1WNM*$KrL;gb#7D%q zHLk6(#0)g@;K$14Q^WVcG7{^NyLLLrSpVp7_HOqyMlg2NScx=&*J!`GDmaXaIW`o9 zRRi@Go1F5uQDi{9HlmcGx1h!!`s!40i<0DBucAi5ze$hH>f_yUq_Tg!%Ew2{Uw$=?mhZCUV zsEhOw%~`)o^0;p~uKCVt=I}DLSjB4FA~d`rfnrw0p{c}L3h5J666d;3V}X(({gUJz z-_#>UsFOb=hj3ZdWXQh^&XqPdsYcdGgYoVXc5MHbmqGI01^ifjF(x!1Lnk(==co^*v@VdL5{+1Ww zn;EE{#!IfPfho#+d&>)zt4$RcMGT>Gf1~-;+itJ#h>SpEz^?tDMStqvq^QxURBuee b+aryhC|_BmuHU4NqQX7 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π=#^wT{qa=ips10^HD|tW491k&t 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 Q_Kv#M-yNd)|9}Vn2bOuuKmY&$ diff --git a/ecosystem-tests/node-ts-esm/sample1.mp3 b/ecosystem-tests/node-ts-esm/sample1.mp3 index 3606c98f2ebccc4ce0f1979119a68b072e01aa07..1e787cd7cf33203d99fa50b39b232b318d287541 100644 GIT binary patch literal 121671 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC|_BmuHU4NqQX7 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π=#^wT{qa=ips10^HD|tW491k&t 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 Q_Kv#M-yNd)|9}Vn2bOuuKmY&$ diff --git a/ecosystem-tests/node-ts4.5-jest27/sample1.mp3 b/ecosystem-tests/node-ts4.5-jest27/sample1.mp3 index 3606c98f2ebccc4ce0f1979119a68b072e01aa07..1e787cd7cf33203d99fa50b39b232b318d287541 100644 GIT binary patch literal 121671 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

u-pOVR)XKV)b$Ua4l=gJ1IK*8lYC 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 b+aryhC|_BmuHU4NqQX7 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π=#^wT{qa=ips10^HD|tW491k&t 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 Q_Kv#M-yNd)|9}Vn2bOuuKmY&$ From fff5046a057d3cb75bc055d71acd8c018a4574b2 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 23 Jan 2024 01:17:58 +0100 Subject: [PATCH 263/725] chore(internal): adjust ecosystem-tests logging in CI (#646) --- ecosystem-tests/cli.ts | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index 00ea96bfd..dbe51ff1e 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -6,6 +6,7 @@ import path from 'path'; const TAR_NAME = 'openai.tgz'; const PACK_FILE = `.pack/${TAR_NAME}`; +const IS_CI = Boolean(process.env['CI'] && process.env['CI'] !== 'false'); async function defaultNodeRunner() { await installPackage(); @@ -249,10 +250,11 @@ async function main() { runningProjects.delete(project); } - for (const { dest, data } of chunks) { - if (dest === 'stdout') process.stdout.write(data); - else process.stderr.write(data); + if (IS_CI) console.log(`::group::${failed.includes(project) ? '❌' : '✅'} ${project}`); + for (const { data } of chunks) { + process.stdout.write(data); } + if (IS_CI) console.log('::endgroup::'); } }), ); @@ -271,7 +273,7 @@ async function main() { try { await withRetry(fn, project, state.retry); console.error('\n'); - console.error(banner(`✅ ${project}`)); + console.error(`✅ ${project}`); } catch (err) { if (err && (err as any).shortMessage) { console.error((err as any).shortMessage); @@ -279,7 +281,7 @@ async function main() { console.error(err); } console.error('\n'); - console.error(banner(`❌ ${project}`)); + console.error(`❌ ${project}`); failed.push(project); } console.error('\n'); From 8d9eeebf1f6347ae1f59aad626079c13acce877c Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 23 Jan 2024 18:09:39 +0100 Subject: [PATCH 264/725] chore(internal): minor streaming updates (#647) --- src/core.ts | 7 +++++++ src/streaming.ts | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/src/core.ts b/src/core.ts index f431b7d58..d7c1fb831 100644 --- a/src/core.ts +++ b/src/core.ts @@ -44,6 +44,11 @@ async function defaultParseResponse(props: APIResponseProps): Promise { // Note: there is an invariant here that isn't represented in the type system // that if you set `stream: true` the response type must also be `Stream` + + if (props.options.__streamClass) { + return props.options.__streamClass.fromSSEResponse(response, props.controller) as any; + } + return Stream.fromSSEResponse(response, props.controller) as any; } @@ -743,6 +748,7 @@ export type RequestOptions | Readable> = idempotencyKey?: string; __binaryResponse?: boolean | undefined; + __streamClass?: typeof Stream; }; // This is required so that we can determine if a given object matches the RequestOptions @@ -763,6 +769,7 @@ const requestOptionsKeys: KeysEnum = { idempotencyKey: true, __binaryResponse: true, + __streamClass: true, }; export const isRequestOptions = (obj: unknown): obj is RequestOptions => { diff --git a/src/streaming.ts b/src/streaming.ts index d1ee70c2e..3ad11fb54 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -3,9 +3,9 @@ import { OpenAIError } from './error'; import { APIError } from 'openai/error'; -type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined; +export type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined; -type ServerSentEvent = { +export type ServerSentEvent = { event: string | null; data: string; raw: string[]; @@ -381,7 +381,7 @@ function partition(str: string, delimiter: string): [string, string, string] { * * This polyfill was pulled from https://github.com/MattiasBuelens/web-streams-polyfill/pull/122#issuecomment-1627354490 */ -function readableStreamAsyncIterable(stream: any): AsyncIterableIterator { +export function readableStreamAsyncIterable(stream: any): AsyncIterableIterator { if (stream[Symbol.asyncIterator]) return stream; const reader = stream.getReader(); From 09b3cd479a0bf7863f7b2d749d08b3e30edb4379 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 23 Jan 2024 20:37:56 +0100 Subject: [PATCH 265/725] chore(internal): don't re-export streaming type (#648) exporting it breaks cloudflare types --- src/streaming.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/streaming.ts b/src/streaming.ts index 3ad11fb54..7d8b4442a 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -3,7 +3,7 @@ import { OpenAIError } from './error'; import { APIError } from 'openai/error'; -export type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined; +type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined; export type ServerSentEvent = { event: string | null; From 5ac7cb7e5e8aaac6e5a3d6abd9ee047e3decc0e8 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 25 Jan 2024 17:59:10 +0100 Subject: [PATCH 266/725] chore(internal): pin deno version (#649) --- .github/workflows/create-releases.yml | 2 +- .github/workflows/publish-deno.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create-releases.yml b/.github/workflows/create-releases.yml index 716282b08..7ecd6282a 100644 --- a/.github/workflows/create-releases.yml +++ b/.github/workflows/create-releases.yml @@ -41,7 +41,7 @@ jobs: if: ${{ steps.release.outputs.releases_created }} uses: denoland/setup-deno@v1 with: - deno-version: v1.x + deno-version: v1.35.1 - name: Install dependencies if: ${{ steps.release.outputs.releases_created }} diff --git a/.github/workflows/publish-deno.yml b/.github/workflows/publish-deno.yml index f68e6152f..578b592b3 100644 --- a/.github/workflows/publish-deno.yml +++ b/.github/workflows/publish-deno.yml @@ -30,7 +30,7 @@ jobs: - name: Set up Deno uses: denoland/setup-deno@v1 with: - deno-version: v1.x + deno-version: v1.35.1 - name: Install dependencies run: | From 413df77441c8da1a8971a41d342815a6e9223698 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 25 Jan 2024 20:15:21 +0100 Subject: [PATCH 267/725] feat(api): add text embeddings dimensions param (#650) --- src/resources/chat/completions.ts | 8 ++++++-- src/resources/embeddings.ts | 8 +++++++- tests/api-resources/embeddings.test.ts | 5 +++-- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 6882e5f44..d3fddeacd 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -660,6 +660,8 @@ export interface ChatCompletionCreateParamsBase { */ model: | (string & {}) + | 'gpt-4-0125-preview' + | 'gpt-4-turbo-preview' | 'gpt-4-1106-preview' | 'gpt-4-vision-preview' | 'gpt-4' @@ -754,7 +756,8 @@ export interface ChatCompletionCreateParamsBase { /** * An object specifying the format that the model must output. Compatible with - * `gpt-4-1106-preview` and `gpt-3.5-turbo-1106`. + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and + * `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -874,7 +877,8 @@ export namespace ChatCompletionCreateParams { /** * An object specifying the format that the model must output. Compatible with - * `gpt-4-1106-preview` and `gpt-3.5-turbo-1106`. + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and + * `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index 318a45275..3f59d2a7c 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -96,7 +96,13 @@ export interface EmbeddingCreateParams { * [Model overview](https://platform.openai.com/docs/models/overview) for * descriptions of them. */ - model: (string & {}) | 'text-embedding-ada-002'; + model: (string & {}) | 'text-embedding-ada-002' | 'text-embedding-3-small' | 'text-embedding-3-large'; + + /** + * The number of dimensions the resulting output embeddings should have. Only + * supported in `text-embedding-3` and later models. + */ + dimensions?: number; /** * The format to return the embeddings in. Can be either `float` or diff --git a/tests/api-resources/embeddings.test.ts b/tests/api-resources/embeddings.test.ts index 24cb19482..bcb5ffbba 100644 --- a/tests/api-resources/embeddings.test.ts +++ b/tests/api-resources/embeddings.test.ts @@ -12,7 +12,7 @@ describe('resource embeddings', () => { test('create: only required params', async () => { const responsePromise = openai.embeddings.create({ input: 'The quick brown fox jumped over the lazy dog', - model: 'text-embedding-ada-002', + model: 'text-embedding-3-small', }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); @@ -26,7 +26,8 @@ describe('resource embeddings', () => { test('create: required and optional params', async () => { const response = await openai.embeddings.create({ input: 'The quick brown fox jumped over the lazy dog', - model: 'text-embedding-ada-002', + model: 'text-embedding-3-small', + dimensions: 1, encoding_format: 'float', user: 'user-1234', }); From c9bb4edaf5bc72ccd81fd7978abd468169255f1c Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 25 Jan 2024 20:15:48 +0100 Subject: [PATCH 268/725] release: 4.26.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 18 ++++++++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 23 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index cff865d0e..bfca8a016 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.25.0" + ".": "4.26.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c8b59527f..2dc86a5a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## 4.26.0 (2024-01-25) + +Full Changelog: [v4.25.0...v4.26.0](https://github.com/openai/openai-node/compare/v4.25.0...v4.26.0) + +### Features + +* **api:** add text embeddings dimensions param ([#650](https://github.com/openai/openai-node/issues/650)) ([1b5a977](https://github.com/openai/openai-node/commit/1b5a977d0eef7f5cf97daf27333cbbeb6bb479f3)) + + +### Chores + +* **internal:** add internal helpers & improve build scripts ([#643](https://github.com/openai/openai-node/issues/643)) ([9392f50](https://github.com/openai/openai-node/commit/9392f50e47f26b16632c9eb12187ea7f8a565e09)) +* **internal:** adjust ecosystem-tests logging in CI ([#646](https://github.com/openai/openai-node/issues/646)) ([156084b](https://github.com/openai/openai-node/commit/156084b8734194a5856612378115b948c82ec6e4)) +* **internal:** don't re-export streaming type ([#648](https://github.com/openai/openai-node/issues/648)) ([4c4be94](https://github.com/openai/openai-node/commit/4c4be945fa3f54036183e2d0877060db47ea564b)) +* **internal:** fix binary files ([#645](https://github.com/openai/openai-node/issues/645)) ([e1fbc39](https://github.com/openai/openai-node/commit/e1fbc396f4d1dd8ba980c25ba03b670dfed887a0)) +* **internal:** minor streaming updates ([#647](https://github.com/openai/openai-node/issues/647)) ([2f073e4](https://github.com/openai/openai-node/commit/2f073e4e6c9cd0ff3ad434907da710704765a005)) +* **internal:** pin deno version ([#649](https://github.com/openai/openai-node/issues/649)) ([7e4b903](https://github.com/openai/openai-node/commit/7e4b9039320e4ccbafb45f57dce273bedc9b7cb3)) + ## 4.25.0 (2024-01-21) Full Changelog: [v4.24.7...v4.25.0](https://github.com/openai/openai-node/compare/v4.24.7...v4.25.0) diff --git a/README.md b/README.md index 15180212b..6ea01927d 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.25.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.26.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index 1f4ede52f..b7d9fde35 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.25.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.26.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 70830d5f3..2abd85d9b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.25.0", + "version": "4.26.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 5e6f1de75..37c76d044 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.25.0'; // x-release-please-version +export const VERSION = '4.26.0'; // x-release-please-version From 9a8b1e40ee6154f3891bdc6989b0a44099029a73 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 30 Jan 2024 18:25:27 +0100 Subject: [PATCH 269/725] chore(test): add delay between ecosystem tests retry (#651) --- ecosystem-tests/cli.ts | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index dbe51ff1e..c52a16cb7 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -142,10 +142,15 @@ function parseArgs() { description: 'number of parallel jobs to run', }, retry: { - type: 'number', + type: 'count', default: 0, description: 'number of times to retry failing jobs', }, + retryDelay: { + type: 'number', + default: 100, + description: 'delay between retries in ms', + }, parallel: { type: 'boolean', default: false, @@ -271,7 +276,7 @@ async function main() { console.error('\n'); try { - await withRetry(fn, project, state.retry); + await withRetry(fn, project, state.retry, state.retryDelay); console.error('\n'); console.error(`✅ ${project}`); } catch (err) { @@ -297,13 +302,21 @@ async function main() { process.exit(0); } -async function withRetry(fn: () => Promise, identifier: string, retryAmount: number): Promise { +async function withRetry( + fn: () => Promise, + identifier: string, + retryAmount: number, + retryDelayMs: number, +): Promise { do { try { return await fn(); } catch (err) { if (--retryAmount <= 0) throw err; - console.error(`${identifier} failed due to ${err}; retries left ${retryAmount}`); + console.error( + `${identifier} failed due to ${err}; retries left ${retryAmount}, next retry in ${retryDelayMs}ms`, + ); + await new Promise((resolve) => setTimeout(resolve, retryDelayMs)); } } while (retryAmount > 0); } From 0406652cb2433ba6d0093a084424d28166741dd9 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 30 Jan 2024 22:09:13 +0100 Subject: [PATCH 270/725] chore(internal): support pre-release versioning (#653) --- release-please-config.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/release-please-config.json b/release-please-config.json index 2708cc2b7..37def5fe1 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -5,6 +5,8 @@ "$schema": "https://raw.githubusercontent.com/stainless-api/release-please/main/schemas/config.json", "include-v-in-tag": true, "include-component-in-tag": false, + "versioning": "prerelease", + "prerelease": true, "bump-minor-pre-major": true, "bump-patch-for-minor-pre-major": false, "pull-request-header": "Automated Release PR", From a5ec493eb8d0503d3f102a52e9fb0841be786d18 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 2 Feb 2024 16:54:16 +0000 Subject: [PATCH 271/725] chore(internal): re-order pagination import (#656) --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 417f52e38..80bf95b0d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. import * as Core from './core'; -import * as Pagination from './pagination'; import * as Errors from './error'; import { type Agent } from './_shims/index'; import * as Uploads from './uploads'; +import * as Pagination from 'openai/pagination'; import * as API from 'openai/resources/index'; export interface ClientOptions { From 4eda2d235d8047dd767275549257de7a6959d01d Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 2 Feb 2024 17:57:09 +0000 Subject: [PATCH 272/725] chore(internal): enable building when git installed (#657) --- package.json | 5 ++++- scripts/check-is-in-git-install.sh | 9 +++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100755 scripts/check-is-in-git-install.sh diff --git a/package.json b/package.json index 2abd85d9b..1a0a4b464 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,9 @@ "repository": "github:openai/openai-node", "license": "Apache-2.0", "packageManager": "yarn@1.22.21", + "files": [ + "*" + ], "private": false, "scripts": { "test": "bin/check-test-server && yarn jest", @@ -16,7 +19,7 @@ "prepack": "echo 'to pack, run yarn build && (cd dist; yarn pack)' && exit 1", "prepublishOnly": "echo 'to publish, run yarn build && (cd dist; yarn publish)' && exit 1", "format": "prettier --write --cache --cache-strategy metadata . !dist", - "prepare": "if [ $(basename $(dirname $PWD)) = 'node_modules' ]; then npm run build; fi", + "prepare": "if ./scripts/check-is-in-git-install.sh; then npm run build; fi", "tsn": "ts-node -r tsconfig-paths/register", "lint": "eslint --ext ts,js .", "fix": "eslint --fix --ext ts,js ." diff --git a/scripts/check-is-in-git-install.sh b/scripts/check-is-in-git-install.sh new file mode 100755 index 000000000..36bcedc20 --- /dev/null +++ b/scripts/check-is-in-git-install.sh @@ -0,0 +1,9 @@ +#!/bin/bash +# Check if you happen to call prepare for a repository that's already in node_modules. +[ "$(basename "$(dirname "$PWD")")" = 'node_modules' ] || +# The name of the containing directory that 'npm` uses, which looks like +# $HOME/.npm/_cacache/git-cloneXXXXXX +[ "$(basename "$(dirname "$PWD")")" = 'tmp' ] || +# The name of the containing directory that 'yarn` uses, which looks like +# $(yarn cache dir)/.tmp/XXXXX +[ "$(basename "$(dirname "$PWD")")" = '.tmp' ] From 54e4f643256b497bdbd5e61637cf0782393b89c8 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 2 Feb 2024 19:53:33 +0000 Subject: [PATCH 273/725] docs: add a CONTRIBUTING.md (#659) --- CONTRIBUTING.md | 107 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..61f37370f --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,107 @@ +## Setting up the environment + +This repository uses [`yarn@v1`](https://classic.yarnpkg.com/lang/en/docs/install/#mac-stable). +Other package managers may work but are not officially supported for development. + +To setup the repository, run: + +```bash +yarn +yarn build +``` + +This will install all the required dependencies and build output files to `dist/`. + +## Modifying/Adding code + +Most of the SDK is generated code, and any modified code will be overridden on the next generation. The +`src/lib/` and `examples/` directories are exceptions and will never be overridden. + +## Adding and running examples + +All files in the `examples/` directory are not modified by the Stainless generator and can be freely edited or +added to. + +```bash +// add an example to examples/.ts + +#!/usr/bin/env -S npm run tsn -T +… +``` + +``` +chmod +x examples/.ts +# run the example against your api +yarn tsn -T examples/.ts +``` + +## Using the repository from source + +If you’d like to use the repository from source, you can either install from git or link to a cloned repository: + +To install via git: + +```bash +npm install --save git+ssh://git@github.com:openai/openai-node.git +``` + +Alternatively, to link a local copy of the repo: + +```bash +# Clone +git clone https://www.github.com/openai/openai-node +cd openai-node + +# With yarn +yarn link +cd ../my-package +yarn link openai + +# With pnpm +pnpm link --global +cd ../my-package +pnpm link -—global openai +``` + +## Running tests + +Most tests will require you to [setup a mock server](https://github.com/stoplightio/prism) against the OpenAPI spec to run the tests. + +```bash +npx prism path/to/your/openapi.yml +``` + +```bash +yarn run test +``` + +## Linting and formatting + +This repository uses [prettier](https://www.npmjs.com/package/prettier) and +[eslint](https://www.npmjs.com/package/eslint) to format the code in the repository. + +To lint: + +```bash +yarn lint +``` + +To format and fix all lint issues automatically: + +```bash +yarn fix +``` + +## Publishing and releases + +Changes made to this repository via the automated release PR pipeline should publish to npm automatically. If +the changes aren't made through the automated pipeline, you may want to make releases manually. + +### Publish with a GitHub workflow + +You can release to package managers by using [the `Publish NPM` GitHub action](https://www.github.com/openai/openai-node/actions/workflows/publish-npm.yml). This will require a setup organization or repository secret to be set up. + +### Publish manually + +If you need to manually release a package, you can run the `bin/publish-npm` script with an `NPM_TOKEN` set on +the environment. From 282ff9b37b0da42ffa86cfa095f9e27099d61f45 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 5 Feb 2024 05:06:16 +0000 Subject: [PATCH 274/725] release: 4.26.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 16 ++++++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 21 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bfca8a016..3200ca75e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.26.0" + ".": "4.26.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2dc86a5a9..1b3d876f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## 4.26.1 (2024-02-05) + +Full Changelog: [v4.26.0...v4.26.1](https://github.com/openai/openai-node/compare/v4.26.0...v4.26.1) + +### Chores + +* **internal:** enable building when git installed ([#657](https://github.com/openai/openai-node/issues/657)) ([8c80a7d](https://github.com/openai/openai-node/commit/8c80a7d6d36155901a19d1f9cd1fec17b89e261e)) +* **internal:** re-order pagination import ([#656](https://github.com/openai/openai-node/issues/656)) ([21ae54e](https://github.com/openai/openai-node/commit/21ae54ea2cc2779e440909782a6ac8b70f88ec1f)) +* **internal:** support pre-release versioning ([#653](https://github.com/openai/openai-node/issues/653)) ([0c3859f](https://github.com/openai/openai-node/commit/0c3859f88164ae3eb6ec8c29e8889a50861cb35b)) +* **test:** add delay between ecosystem tests retry ([#651](https://github.com/openai/openai-node/issues/651)) ([6a4cc5c](https://github.com/openai/openai-node/commit/6a4cc5cea36ae408c8c1eb2ea0ea02f96ffb77b7)) + + +### Documentation + +* add a CONTRIBUTING.md ([#659](https://github.com/openai/openai-node/issues/659)) ([8ea58b0](https://github.com/openai/openai-node/commit/8ea58b0b9e7382a3b3af852a9a3a288a485ad33a)) + ## 4.26.0 (2024-01-25) Full Changelog: [v4.25.0...v4.26.0](https://github.com/openai/openai-node/compare/v4.25.0...v4.26.0) diff --git a/README.md b/README.md index 6ea01927d..a8fcd3679 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.26.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.26.1/mod.ts'; ``` diff --git a/build-deno b/build-deno index b7d9fde35..11e308a3e 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.26.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.26.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 1a0a4b464..842aef862 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.26.0", + "version": "4.26.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 37c76d044..085c0b0ee 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.26.0'; // x-release-please-version +export const VERSION = '4.26.1'; // x-release-please-version From 9b2d5be896d3e4da08a9bb5bbdf7ba7bacca8caf Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 6 Feb 2024 01:09:17 +0000 Subject: [PATCH 275/725] feat(api): add `timestamp_granularities`, add `gpt-3.5-turbo-0125` model (#661) --- src/resources/audio/transcriptions.ts | 7 +++++++ src/resources/chat/completions.ts | 5 +++-- tests/api-resources/audio/transcriptions.test.ts | 7 +++++-- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index aaf62bd29..7f381c5a3 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -59,6 +59,13 @@ export interface TranscriptionCreateParams { * automatically increase the temperature until certain thresholds are hit. */ temperature?: number; + + /** + * The timestamp granularities to populate for this transcription. Any of these + * options: `word`, or `segment`. Note: There is no additional latency for segment + * timestamps, but generating word timestamps incurs additional latency. + */ + timestamp_granularities?: Array<'word' | 'segment'>; } export namespace Transcriptions { diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index d3fddeacd..2a5216745 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -675,6 +675,7 @@ export interface ChatCompletionCreateParamsBase { | 'gpt-3.5-turbo-0301' | 'gpt-3.5-turbo-0613' | 'gpt-3.5-turbo-1106' + | 'gpt-3.5-turbo-0125' | 'gpt-3.5-turbo-16k-0613'; /** @@ -757,7 +758,7 @@ export interface ChatCompletionCreateParamsBase { /** * An object specifying the format that the model must output. Compatible with * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * `gpt-3.5-turbo-1106`. + * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -878,7 +879,7 @@ export namespace ChatCompletionCreateParams { /** * An object specifying the format that the model must output. Compatible with * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * `gpt-3.5-turbo-1106`. + * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. diff --git a/tests/api-resources/audio/transcriptions.test.ts b/tests/api-resources/audio/transcriptions.test.ts index cc23c130f..271946f1e 100644 --- a/tests/api-resources/audio/transcriptions.test.ts +++ b/tests/api-resources/audio/transcriptions.test.ts @@ -9,7 +9,8 @@ const openai = new OpenAI({ }); describe('resource transcriptions', () => { - test('create: only required params', async () => { + // test is currently broken + test.skip('create: only required params', async () => { const responsePromise = openai.audio.transcriptions.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), model: 'whisper-1', @@ -23,7 +24,8 @@ describe('resource transcriptions', () => { expect(dataAndResponse.response).toBe(rawResponse); }); - test('create: required and optional params', async () => { + // test is currently broken + test.skip('create: required and optional params', async () => { const response = await openai.audio.transcriptions.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), model: 'whisper-1', @@ -31,6 +33,7 @@ describe('resource transcriptions', () => { prompt: 'string', response_format: 'json', temperature: 0, + timestamp_granularities: ['word', 'segment'], }); }); }); From a20dec85f8aee75fe40908c1d1a9cf191ee7eabb Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 6 Feb 2024 10:14:01 +0000 Subject: [PATCH 276/725] chore(internal): fix retry mechanism for ecosystem-test (#663) --- ecosystem-tests/cli.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index c52a16cb7..c84c479d4 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -142,13 +142,13 @@ function parseArgs() { description: 'number of parallel jobs to run', }, retry: { - type: 'count', + type: 'number', default: 0, description: 'number of times to retry failing jobs', }, retryDelay: { type: 'number', - default: 100, + default: 1000, description: 'delay between retries in ms', }, parallel: { From e7a7636482556459add0d8dade9b91d4ea839bd8 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 6 Feb 2024 18:47:25 +0000 Subject: [PATCH 277/725] chore: respect `application/vnd.api+json` content-type header (#664) --- src/core.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/core.ts b/src/core.ts index d7c1fb831..a94251808 100644 --- a/src/core.ts +++ b/src/core.ts @@ -62,7 +62,9 @@ async function defaultParseResponse(props: APIResponseProps): Promise { } const contentType = response.headers.get('content-type'); - if (contentType?.includes('application/json')) { + const isJSON = + contentType?.includes('application/json') || contentType?.includes('application/vnd.api+json'); + if (isJSON) { const json = await response.json(); debug('response', response.status, response.url, response.headers, json); From 291bcab4b79190e0e42e20d0420db01bdf5ad79a Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 8 Feb 2024 05:07:36 +0000 Subject: [PATCH 278/725] release: 4.27.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 19 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3200ca75e..66ff287b5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.26.1" + ".": "4.27.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b3d876f2..42bc43a99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 4.27.0 (2024-02-08) + +Full Changelog: [v4.26.1...v4.27.0](https://github.com/openai/openai-node/compare/v4.26.1...v4.27.0) + +### Features + +* **api:** add `timestamp_granularities`, add `gpt-3.5-turbo-0125` model ([#661](https://github.com/openai/openai-node/issues/661)) ([5016806](https://github.com/openai/openai-node/commit/50168066862f66b529bae29f4564741300303246)) + + +### Chores + +* **internal:** fix retry mechanism for ecosystem-test ([#663](https://github.com/openai/openai-node/issues/663)) ([0eb7ed5](https://github.com/openai/openai-node/commit/0eb7ed5ca3f7c7b29c316fc7d725d834cee73989)) +* respect `application/vnd.api+json` content-type header ([#664](https://github.com/openai/openai-node/issues/664)) ([f4fad54](https://github.com/openai/openai-node/commit/f4fad549c5c366d8dd8b936b7699639b895e82a1)) + ## 4.26.1 (2024-02-05) Full Changelog: [v4.26.0...v4.26.1](https://github.com/openai/openai-node/compare/v4.26.0...v4.26.1) diff --git a/README.md b/README.md index a8fcd3679..cb5d6f3ea 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.26.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.27.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index 11e308a3e..3c928a831 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.26.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.27.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 842aef862..b4ca2f388 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.26.1", + "version": "4.27.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 085c0b0ee..c7359cde3 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.26.1'; // x-release-please-version +export const VERSION = '4.27.0'; // x-release-please-version From dcb66281d449358d3d35ca69c5094fb5285026dc Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 8 Feb 2024 18:37:59 -0500 Subject: [PATCH 279/725] test: unskip transcription tests (#667) --- tests/api-resources/audio/transcriptions.test.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/api-resources/audio/transcriptions.test.ts b/tests/api-resources/audio/transcriptions.test.ts index 271946f1e..33652af53 100644 --- a/tests/api-resources/audio/transcriptions.test.ts +++ b/tests/api-resources/audio/transcriptions.test.ts @@ -9,8 +9,7 @@ const openai = new OpenAI({ }); describe('resource transcriptions', () => { - // test is currently broken - test.skip('create: only required params', async () => { + test('create: only required params', async () => { const responsePromise = openai.audio.transcriptions.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), model: 'whisper-1', @@ -24,8 +23,7 @@ describe('resource transcriptions', () => { expect(dataAndResponse.response).toBe(rawResponse); }); - // test is currently broken - test.skip('create: required and optional params', async () => { + test('create: required and optional params', async () => { const response = await openai.audio.transcriptions.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), model: 'whisper-1', From 2f45024f2aa526efdfee329762dd86a506d2d116 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 12 Feb 2024 00:06:38 -0500 Subject: [PATCH 280/725] release: 4.27.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 4 ++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 66ff287b5..6a1f05fcc 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.27.0" + ".": "4.27.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 42bc43a99..f0e2d8696 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 4.27.1 (2024-02-12) + +Full Changelog: [v4.27.0...v4.27.1](https://github.com/openai/openai-node/compare/v4.27.0...v4.27.1) + ## 4.27.0 (2024-02-08) Full Changelog: [v4.26.1...v4.27.0](https://github.com/openai/openai-node/compare/v4.26.1...v4.27.0) diff --git a/README.md b/README.md index cb5d6f3ea..91077f209 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.27.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.27.1/mod.ts'; ``` diff --git a/build-deno b/build-deno index 3c928a831..261bcad07 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.27.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.27.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index b4ca2f388..cb3323a85 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.27.0", + "version": "4.27.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index c7359cde3..4474994e5 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.27.0'; // x-release-please-version +export const VERSION = '4.27.1'; // x-release-please-version From 0ab363de477910ea2fedb5ac3d4c50b3e49798eb Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 12 Feb 2024 09:01:28 -0500 Subject: [PATCH 281/725] feat(api): updates (#669) --- src/resources/chat/completions.ts | 6 ++++++ tests/api-resources/chat/completions.test.ts | 1 + 2 files changed, 7 insertions(+) diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 2a5216745..17c279940 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -708,6 +708,12 @@ export interface ChatCompletionCreateParamsBase { */ functions?: Array; + /** + * An unique identifier to a custom instance to execute the request. The requesting + * organization is required to have access to the instance. + */ + instance_id?: string | null; + /** * Modify the likelihood of specified tokens appearing in the completion. * diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 49f3562b0..f097f3249 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -30,6 +30,7 @@ describe('resource completions', () => { frequency_penalty: -2, function_call: 'none', functions: [{ description: 'string', name: 'string', parameters: { foo: 'bar' } }], + instance_id: 'string', logit_bias: { foo: 0 }, logprobs: true, max_tokens: 0, From e33a2a881c123e17fb92e2139b3cab6cd1f0d6c8 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 13 Feb 2024 00:06:00 -0500 Subject: [PATCH 282/725] release: 4.28.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6a1f05fcc..2cb1bcea1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.27.1" + ".": "4.28.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f0e2d8696..cc193b5a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.28.0 (2024-02-13) + +Full Changelog: [v4.27.1...v4.28.0](https://github.com/openai/openai-node/compare/v4.27.1...v4.28.0) + +### Features + +* **api:** updates ([#669](https://github.com/openai/openai-node/issues/669)) ([e1900f9](https://github.com/openai/openai-node/commit/e1900f97ee3f4758d47a7eb4659e30abe3750c99)) + ## 4.27.1 (2024-02-12) Full Changelog: [v4.27.0...v4.27.1](https://github.com/openai/openai-node/compare/v4.27.0...v4.27.1) diff --git a/README.md b/README.md index 91077f209..51c08079a 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.27.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.28.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index 261bcad07..4e6734b72 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.27.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.28.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index cb3323a85..17645e824 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.27.1", + "version": "4.28.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 4474994e5..690b47c3c 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.27.1'; // x-release-please-version +export const VERSION = '4.28.0'; // x-release-please-version From 7664f51c75d32318fbc7aefd934c72ec921cb556 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 14 Feb 2024 15:16:30 -0500 Subject: [PATCH 283/725] chore(ci): move github release logic to github app (#671) --- .github/workflows/create-releases.yml | 64 --------------------------- .github/workflows/publish-deno.yml | 8 +++- .github/workflows/publish-npm.yml | 8 +++- .github/workflows/release-doctor.yml | 1 - bin/check-release-environment | 4 -- 5 files changed, 12 insertions(+), 73 deletions(-) delete mode 100644 .github/workflows/create-releases.yml diff --git a/.github/workflows/create-releases.yml b/.github/workflows/create-releases.yml deleted file mode 100644 index 7ecd6282a..000000000 --- a/.github/workflows/create-releases.yml +++ /dev/null @@ -1,64 +0,0 @@ -name: Create releases -on: - schedule: - - cron: '0 5 * * *' # every day at 5am UTC - push: - branches: - - master - -jobs: - release: - name: release - if: github.ref == 'refs/heads/master' && github.repository == 'openai/openai-node' - runs-on: ubuntu-latest - environment: publish - - steps: - - uses: actions/checkout@v3 - - - uses: stainless-api/trigger-release-please@v1 - id: release - with: - repo: ${{ github.event.repository.full_name }} - stainless-api-key: ${{ secrets.STAINLESS_API_KEY }} - - - name: Generate a token - id: generate_token - uses: actions/create-github-app-token@v1 - with: - app-id: ${{ secrets.APP_ID }} - private-key: ${{ secrets.APP_PRIVATE_KEY }} - owner: 'openai' - repositories: 'openai-node,openai-deno-build' - - - name: Set up Node - if: ${{ steps.release.outputs.releases_created }} - uses: actions/setup-node@v3 - with: - node-version: '18' - - - name: Set up Deno - if: ${{ steps.release.outputs.releases_created }} - uses: denoland/setup-deno@v1 - with: - deno-version: v1.35.1 - - - name: Install dependencies - if: ${{ steps.release.outputs.releases_created }} - run: | - yarn install - - - name: Publish to NPM - if: ${{ steps.release.outputs.releases_created }} - run: | - bash ./bin/publish-npm - env: - NPM_TOKEN: ${{ secrets.OPENAI_NPM_TOKEN || secrets.NPM_TOKEN }} - - - name: Publish to Deno - if: ${{ steps.release.outputs.releases_created }} - run: | - bash ./scripts/git-publish-deno.sh - env: - DENO_PUSH_REMOTE_URL: https://username:${{ steps.generate_token.outputs.token }}@github.com/openai/openai-deno-build.git - DENO_PUSH_BRANCH: main diff --git a/.github/workflows/publish-deno.yml b/.github/workflows/publish-deno.yml index 578b592b3..38d2a69b4 100644 --- a/.github/workflows/publish-deno.yml +++ b/.github/workflows/publish-deno.yml @@ -1,9 +1,13 @@ -# workflow for re-running publishing to Deno in case it fails for some reason -# you can run this workflow by navigating to https://www.github.com/openai/openai-node/actions/workflows/publish-deno.yml +# This workflow is triggered when a GitHub release is created. +# It can also be run manually to re-publish to Deno in case it failed for some reason. +# You can run this workflow by navigating to https://www.github.com/openai/openai-node/actions/workflows/publish-deno.yml name: Publish Deno on: workflow_dispatch: + release: + types: [published] + jobs: publish: name: publish diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml index 2258ec560..96e0a6c48 100644 --- a/.github/workflows/publish-npm.yml +++ b/.github/workflows/publish-npm.yml @@ -1,9 +1,13 @@ -# workflow for re-running publishing to NPM in case it fails for some reason -# you can run this workflow by navigating to https://www.github.com/openai/openai-node/actions/workflows/publish-npm.yml +# This workflow is triggered when a GitHub release is created. +# It can also be run manually to re-publish to NPM in case it failed for some reason. +# You can run this workflow by navigating to https://www.github.com/openai/openai-node/actions/workflows/publish-npm.yml name: Publish NPM on: workflow_dispatch: + release: + types: [published] + jobs: publish: name: publish diff --git a/.github/workflows/release-doctor.yml b/.github/workflows/release-doctor.yml index b640869d0..819ef9f8e 100644 --- a/.github/workflows/release-doctor.yml +++ b/.github/workflows/release-doctor.yml @@ -19,5 +19,4 @@ jobs: run: | bash ./bin/check-release-environment env: - STAINLESS_API_KEY: ${{ secrets.STAINLESS_API_KEY }} NPM_TOKEN: ${{ secrets.OPENAI_NPM_TOKEN || secrets.NPM_TOKEN }} diff --git a/bin/check-release-environment b/bin/check-release-environment index fdd847176..69bd03ea6 100644 --- a/bin/check-release-environment +++ b/bin/check-release-environment @@ -2,10 +2,6 @@ errors=() -if [ -z "${STAINLESS_API_KEY}" ]; then - errors+=("The STAINLESS_API_KEY secret has not been set. Please contact Stainless for an API key & set it in your organization secrets on GitHub.") -fi - if [ -z "${NPM_TOKEN}" ]; then errors+=("The OPENAI_NPM_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets") fi From 76286b08db2ea2dabd45b5ea7c9a1b746e0720bd Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 15 Feb 2024 14:37:22 -0500 Subject: [PATCH 284/725] chore(internal): refactor release environment script (#674) --- bin/check-release-environment | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/check-release-environment b/bin/check-release-environment index 69bd03ea6..68536cedb 100644 --- a/bin/check-release-environment +++ b/bin/check-release-environment @@ -6,9 +6,9 @@ if [ -z "${NPM_TOKEN}" ]; then errors+=("The OPENAI_NPM_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets") fi -len=${#errors[@]} +lenErrors=${#errors[@]} -if [[ len -gt 0 ]]; then +if [[ lenErrors -gt 0 ]]; then echo -e "Found the following errors in the release environment:\n" for error in "${errors[@]}"; do From 6e3ede26a6ad19db0e5180bcedbabaebff4458b7 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 19 Feb 2024 00:06:28 -0500 Subject: [PATCH 285/725] release: 4.28.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2cb1bcea1..118f6dd3e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.28.0" + ".": "4.28.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index cc193b5a8..d78f95c38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 4.28.1 (2024-02-19) + +Full Changelog: [v4.28.0...v4.28.1](https://github.com/openai/openai-node/compare/v4.28.0...v4.28.1) + +### Chores + +* **ci:** move github release logic to github app ([#671](https://github.com/openai/openai-node/issues/671)) ([ecca6bc](https://github.com/openai/openai-node/commit/ecca6bc2eea391ee53f1a1d6cac9665199447ae0)) +* **internal:** refactor release environment script ([#674](https://github.com/openai/openai-node/issues/674)) ([27d3770](https://github.com/openai/openai-node/commit/27d37705d17e05c3761ccefcf09c4e2018eb5772)) + ## 4.28.0 (2024-02-13) Full Changelog: [v4.27.1...v4.28.0](https://github.com/openai/openai-node/compare/v4.27.1...v4.28.0) diff --git a/README.md b/README.md index 51c08079a..1c68bdfd9 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.28.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.28.1/mod.ts'; ``` diff --git a/build-deno b/build-deno index 4e6734b72..71a31e271 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.28.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.28.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 17645e824..5a7dcf6aa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.28.0", + "version": "4.28.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 690b47c3c..2dea2e16b 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.28.0'; // x-release-please-version +export const VERSION = '4.28.1'; // x-release-please-version From f4ed900220c0eee16422c4d1fd92d82f778ec062 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 19 Feb 2024 10:56:53 -0500 Subject: [PATCH 286/725] fix(api): remove non-GA instance_id param (#677) --- src/resources/chat/completions.ts | 6 ------ tests/api-resources/chat/completions.test.ts | 1 - 2 files changed, 7 deletions(-) diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 17c279940..2a5216745 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -708,12 +708,6 @@ export interface ChatCompletionCreateParamsBase { */ functions?: Array; - /** - * An unique identifier to a custom instance to execute the request. The requesting - * organization is required to have access to the instance. - */ - instance_id?: string | null; - /** * Modify the likelihood of specified tokens appearing in the completion. * diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index f097f3249..49f3562b0 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -30,7 +30,6 @@ describe('resource completions', () => { frequency_penalty: -2, function_call: 'none', functions: [{ description: 'string', name: 'string', parameters: { foo: 'bar' } }], - instance_id: 'string', logit_bias: { foo: 0 }, logprobs: true, max_tokens: 0, From 3e0299b9725602fb46243a75d15e04687ade40fd Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 18:58:01 +0000 Subject: [PATCH 287/725] release: 4.28.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 118f6dd3e..43b442203 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.28.1" + ".": "4.28.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d78f95c38..a5cb3742f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.28.2 (2024-02-19) + +Full Changelog: [v4.28.1...v4.28.2](https://github.com/openai/openai-node/compare/v4.28.1...v4.28.2) + +### Bug Fixes + +* **api:** remove non-GA instance_id param ([#677](https://github.com/openai/openai-node/issues/677)) ([4d0d4da](https://github.com/openai/openai-node/commit/4d0d4daf3bfca0089c5258a136542513e6b372e6)) + ## 4.28.1 (2024-02-19) Full Changelog: [v4.28.0...v4.28.1](https://github.com/openai/openai-node/compare/v4.28.0...v4.28.1) diff --git a/README.md b/README.md index 1c68bdfd9..e7ecfadea 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.28.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.28.2/mod.ts'; ``` diff --git a/build-deno b/build-deno index 71a31e271..a08d75571 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.28.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.28.2/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 5a7dcf6aa..7f5cf7a78 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.28.1", + "version": "4.28.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 2dea2e16b..3dc311705 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.28.1'; // x-release-please-version +export const VERSION = '4.28.2'; // x-release-please-version From aef8eabcfc9bb16b19c7b0b2b199cee1c8bad5e0 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 20 Feb 2024 13:08:35 -0500 Subject: [PATCH 288/725] fix(ci): revert "move github release logic to github app" (#680) --- .github/workflows/create-releases.yml | 64 +++++++++++++++++++++++++++ .github/workflows/publish-deno.yml | 8 +--- .github/workflows/publish-npm.yml | 8 +--- .github/workflows/release-doctor.yml | 1 + bin/check-release-environment | 4 ++ 5 files changed, 73 insertions(+), 12 deletions(-) create mode 100644 .github/workflows/create-releases.yml diff --git a/.github/workflows/create-releases.yml b/.github/workflows/create-releases.yml new file mode 100644 index 000000000..7ecd6282a --- /dev/null +++ b/.github/workflows/create-releases.yml @@ -0,0 +1,64 @@ +name: Create releases +on: + schedule: + - cron: '0 5 * * *' # every day at 5am UTC + push: + branches: + - master + +jobs: + release: + name: release + if: github.ref == 'refs/heads/master' && github.repository == 'openai/openai-node' + runs-on: ubuntu-latest + environment: publish + + steps: + - uses: actions/checkout@v3 + + - uses: stainless-api/trigger-release-please@v1 + id: release + with: + repo: ${{ github.event.repository.full_name }} + stainless-api-key: ${{ secrets.STAINLESS_API_KEY }} + + - name: Generate a token + id: generate_token + uses: actions/create-github-app-token@v1 + with: + app-id: ${{ secrets.APP_ID }} + private-key: ${{ secrets.APP_PRIVATE_KEY }} + owner: 'openai' + repositories: 'openai-node,openai-deno-build' + + - name: Set up Node + if: ${{ steps.release.outputs.releases_created }} + uses: actions/setup-node@v3 + with: + node-version: '18' + + - name: Set up Deno + if: ${{ steps.release.outputs.releases_created }} + uses: denoland/setup-deno@v1 + with: + deno-version: v1.35.1 + + - name: Install dependencies + if: ${{ steps.release.outputs.releases_created }} + run: | + yarn install + + - name: Publish to NPM + if: ${{ steps.release.outputs.releases_created }} + run: | + bash ./bin/publish-npm + env: + NPM_TOKEN: ${{ secrets.OPENAI_NPM_TOKEN || secrets.NPM_TOKEN }} + + - name: Publish to Deno + if: ${{ steps.release.outputs.releases_created }} + run: | + bash ./scripts/git-publish-deno.sh + env: + DENO_PUSH_REMOTE_URL: https://username:${{ steps.generate_token.outputs.token }}@github.com/openai/openai-deno-build.git + DENO_PUSH_BRANCH: main diff --git a/.github/workflows/publish-deno.yml b/.github/workflows/publish-deno.yml index 38d2a69b4..578b592b3 100644 --- a/.github/workflows/publish-deno.yml +++ b/.github/workflows/publish-deno.yml @@ -1,13 +1,9 @@ -# This workflow is triggered when a GitHub release is created. -# It can also be run manually to re-publish to Deno in case it failed for some reason. -# You can run this workflow by navigating to https://www.github.com/openai/openai-node/actions/workflows/publish-deno.yml +# workflow for re-running publishing to Deno in case it fails for some reason +# you can run this workflow by navigating to https://www.github.com/openai/openai-node/actions/workflows/publish-deno.yml name: Publish Deno on: workflow_dispatch: - release: - types: [published] - jobs: publish: name: publish diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml index 96e0a6c48..2258ec560 100644 --- a/.github/workflows/publish-npm.yml +++ b/.github/workflows/publish-npm.yml @@ -1,13 +1,9 @@ -# This workflow is triggered when a GitHub release is created. -# It can also be run manually to re-publish to NPM in case it failed for some reason. -# You can run this workflow by navigating to https://www.github.com/openai/openai-node/actions/workflows/publish-npm.yml +# workflow for re-running publishing to NPM in case it fails for some reason +# you can run this workflow by navigating to https://www.github.com/openai/openai-node/actions/workflows/publish-npm.yml name: Publish NPM on: workflow_dispatch: - release: - types: [published] - jobs: publish: name: publish diff --git a/.github/workflows/release-doctor.yml b/.github/workflows/release-doctor.yml index 819ef9f8e..b640869d0 100644 --- a/.github/workflows/release-doctor.yml +++ b/.github/workflows/release-doctor.yml @@ -19,4 +19,5 @@ jobs: run: | bash ./bin/check-release-environment env: + STAINLESS_API_KEY: ${{ secrets.STAINLESS_API_KEY }} NPM_TOKEN: ${{ secrets.OPENAI_NPM_TOKEN || secrets.NPM_TOKEN }} diff --git a/bin/check-release-environment b/bin/check-release-environment index 68536cedb..9651d95c8 100644 --- a/bin/check-release-environment +++ b/bin/check-release-environment @@ -2,6 +2,10 @@ errors=() +if [ -z "${STAINLESS_API_KEY}" ]; then + errors+=("The STAINLESS_API_KEY secret has not been set. Please contact Stainless for an API key & set it in your organization secrets on GitHub.") +fi + if [ -z "${NPM_TOKEN}" ]; then errors+=("The OPENAI_NPM_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets") fi From fa88266e2cd231fa78c2e12006e488472332a694 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 20 Feb 2024 13:08:55 -0500 Subject: [PATCH 289/725] release: 4.28.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 43b442203..8d5375100 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.28.2" + ".": "4.28.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a5cb3742f..274b8e8a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.28.3 (2024-02-20) + +Full Changelog: [v4.28.2...v4.28.3](https://github.com/openai/openai-node/compare/v4.28.2...v4.28.3) + +### Bug Fixes + +* **ci:** revert "move github release logic to github app" ([#680](https://github.com/openai/openai-node/issues/680)) ([8b4009a](https://github.com/openai/openai-node/commit/8b4009af05a2e0824f99d3cf8cd9063f234ae470)) + ## 4.28.2 (2024-02-19) Full Changelog: [v4.28.1...v4.28.2](https://github.com/openai/openai-node/compare/v4.28.1...v4.28.2) diff --git a/README.md b/README.md index e7ecfadea..c7779e79a 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.28.2/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.28.3/mod.ts'; ``` diff --git a/build-deno b/build-deno index a08d75571..c8215c85d 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.28.2/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.28.3/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 7f5cf7a78..455c0d180 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.28.2", + "version": "4.28.3", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 3dc311705..3975f7a3e 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.28.2'; // x-release-please-version +export const VERSION = '4.28.3'; // x-release-please-version From 3159e6bdcc815501147db1203f6472c38fbda177 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 22 Feb 2024 16:21:21 +0000 Subject: [PATCH 290/725] chore: update dependency @types/ws to v8.5.10 (#683) --- ecosystem-tests/node-ts-cjs-auto/package-lock.json | 6 +++--- ecosystem-tests/node-ts-cjs/package-lock.json | 6 +++--- ecosystem-tests/node-ts4.5-jest27/package-lock.json | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/ecosystem-tests/node-ts-cjs-auto/package-lock.json b/ecosystem-tests/node-ts-cjs-auto/package-lock.json index 56cf77290..df381f1b5 100644 --- a/ecosystem-tests/node-ts-cjs-auto/package-lock.json +++ b/ecosystem-tests/node-ts-cjs-auto/package-lock.json @@ -1121,9 +1121,9 @@ "dev": true }, "node_modules/@types/ws": { - "version": "8.5.5", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", - "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", + "version": "8.5.10", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz", + "integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==", "dev": true, "dependencies": { "@types/node": "*" diff --git a/ecosystem-tests/node-ts-cjs/package-lock.json b/ecosystem-tests/node-ts-cjs/package-lock.json index f770cacac..c39fc8f1c 100644 --- a/ecosystem-tests/node-ts-cjs/package-lock.json +++ b/ecosystem-tests/node-ts-cjs/package-lock.json @@ -1163,9 +1163,9 @@ "dev": true }, "node_modules/@types/ws": { - "version": "8.5.5", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", - "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", + "version": "8.5.10", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz", + "integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==", "dev": true, "dependencies": { "@types/node": "*" diff --git a/ecosystem-tests/node-ts4.5-jest27/package-lock.json b/ecosystem-tests/node-ts4.5-jest27/package-lock.json index 682b0f7a6..f46e12de9 100644 --- a/ecosystem-tests/node-ts4.5-jest27/package-lock.json +++ b/ecosystem-tests/node-ts4.5-jest27/package-lock.json @@ -1096,9 +1096,9 @@ "dev": true }, "node_modules/@types/ws": { - "version": "8.5.5", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", - "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", + "version": "8.5.10", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz", + "integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==", "dev": true, "dependencies": { "@types/node": "*" From 684f139c0d913e64db171fe5877c7c5980e29813 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 22 Feb 2024 12:59:26 -0500 Subject: [PATCH 291/725] chore(ci): update actions/setup-node action to v4 (#685) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b342025cc..0f699bc95 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v3 - name: Set up Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: '18' From 90a733e6ff714e6fef3c71ae36e18eee6787a666 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 22 Feb 2024 15:16:53 -0500 Subject: [PATCH 292/725] chore(types): extract run status to a named type (#686) --- .github/workflows/ci.yml | 2 +- api.md | 1 + src/resources/beta/threads/index.ts | 1 + src/resources/beta/threads/runs/index.ts | 1 + src/resources/beta/threads/runs/runs.ts | 26 ++++++++++++++++-------- src/resources/beta/threads/threads.ts | 1 + 6 files changed, 22 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f699bc95..f51c7a308 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: if: github.repository == 'openai/openai-node' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Node uses: actions/setup-node@v4 diff --git a/api.md b/api.md index 68d8545cc..ff3180cba 100644 --- a/api.md +++ b/api.md @@ -221,6 +221,7 @@ Types: - RequiredActionFunctionToolCall - Run +- RunStatus Methods: diff --git a/src/resources/beta/threads/index.ts b/src/resources/beta/threads/index.ts index 53e26a5c6..54a02dd03 100644 --- a/src/resources/beta/threads/index.ts +++ b/src/resources/beta/threads/index.ts @@ -14,6 +14,7 @@ export { export { RequiredActionFunctionToolCall, Run, + RunStatus, RunCreateParams, RunUpdateParams, RunListParams, diff --git a/src/resources/beta/threads/runs/index.ts b/src/resources/beta/threads/runs/index.ts index a2261f961..b11736c5c 100644 --- a/src/resources/beta/threads/runs/index.ts +++ b/src/resources/beta/threads/runs/index.ts @@ -14,6 +14,7 @@ export { export { RequiredActionFunctionToolCall, Run, + RunStatus, RunCreateParams, RunUpdateParams, RunListParams, diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 749d2c7f6..9582a060b 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -242,15 +242,7 @@ export interface Run { * `requires_action`, `cancelling`, `cancelled`, `failed`, `completed`, or * `expired`. */ - status: - | 'queued' - | 'in_progress' - | 'requires_action' - | 'cancelling' - | 'cancelled' - | 'failed' - | 'completed' - | 'expired'; + status: RunStatus; /** * The ID of the [thread](https://platform.openai.com/docs/api-reference/threads) @@ -361,6 +353,21 @@ export namespace Run { } } +/** + * The status of the run, which can be either `queued`, `in_progress`, + * `requires_action`, `cancelling`, `cancelled`, `failed`, `completed`, or + * `expired`. + */ +export type RunStatus = + | 'queued' + | 'in_progress' + | 'requires_action' + | 'cancelling' + | 'cancelled' + | 'failed' + | 'completed' + | 'expired'; + export interface RunCreateParams { /** * The ID of the @@ -486,6 +493,7 @@ export namespace RunSubmitToolOutputsParams { export namespace Runs { export import RequiredActionFunctionToolCall = RunsAPI.RequiredActionFunctionToolCall; export import Run = RunsAPI.Run; + export import RunStatus = RunsAPI.RunStatus; export import RunsPage = RunsAPI.RunsPage; export import RunCreateParams = RunsAPI.RunCreateParams; export import RunUpdateParams = RunsAPI.RunUpdateParams; diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 8bbe1804f..5aa1f8c25 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -298,6 +298,7 @@ export namespace Threads { export import Runs = RunsAPI.Runs; export import RequiredActionFunctionToolCall = RunsAPI.RequiredActionFunctionToolCall; export import Run = RunsAPI.Run; + export import RunStatus = RunsAPI.RunStatus; export import RunsPage = RunsAPI.RunsPage; export import RunCreateParams = RunsAPI.RunCreateParams; export import RunUpdateParams = RunsAPI.RunUpdateParams; From 0ae349cf18f307a3e901149de8411caaa370fb95 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 23 Feb 2024 06:35:12 -0500 Subject: [PATCH 293/725] chore: update @types/react to 18.2.58, @types/react-dom to 18.2.19 (#688) --- ecosystem-tests/vercel-edge/package-lock.json | 16 ++++++++-------- ecosystem-tests/vercel-edge/package.json | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ecosystem-tests/vercel-edge/package-lock.json b/ecosystem-tests/vercel-edge/package-lock.json index 6b44e0774..d1c67b718 100644 --- a/ecosystem-tests/vercel-edge/package-lock.json +++ b/ecosystem-tests/vercel-edge/package-lock.json @@ -15,8 +15,8 @@ }, "devDependencies": { "@types/node": "20.3.3", - "@types/react": "18.2.13", - "@types/react-dom": "18.2.6", + "@types/react": "18.2.58", + "@types/react-dom": "18.2.19", "edge-runtime": "^2.4.3", "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", @@ -1562,9 +1562,9 @@ "dev": true }, "node_modules/@types/react": { - "version": "18.2.13", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.13.tgz", - "integrity": "sha512-vJ+zElvi/Zn9cVXB5slX2xL8PZodPCwPRDpittQdw43JR2AJ5k3vKdgJJyneV/cYgIbLQUwXa9JVDvUZXGba+Q==", + "version": "18.2.58", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.58.tgz", + "integrity": "sha512-TaGvMNhxvG2Q0K0aYxiKfNDS5m5ZsoIBBbtfUorxdH4NGSXIlYvZxLJI+9Dd3KjeB3780bciLyAb7ylO8pLhPw==", "dev": true, "dependencies": { "@types/prop-types": "*", @@ -1573,9 +1573,9 @@ } }, "node_modules/@types/react-dom": { - "version": "18.2.6", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.6.tgz", - "integrity": "sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==", + "version": "18.2.19", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.19.tgz", + "integrity": "sha512-aZvQL6uUbIJpjZk4U8JZGbau9KDeAwMfmhyWorxgBkqDIEf6ROjRozcmPIicqsUwPUjbkDfHKgGee1Lq65APcA==", "dev": true, "dependencies": { "@types/react": "*" diff --git a/ecosystem-tests/vercel-edge/package.json b/ecosystem-tests/vercel-edge/package.json index 9ebff4bbc..506a9d08c 100644 --- a/ecosystem-tests/vercel-edge/package.json +++ b/ecosystem-tests/vercel-edge/package.json @@ -21,8 +21,8 @@ }, "devDependencies": { "@types/node": "20.3.3", - "@types/react": "18.2.13", - "@types/react-dom": "18.2.6", + "@types/react": "18.2.58", + "@types/react-dom": "18.2.19", "edge-runtime": "^2.4.3", "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", From 5601376ef6cee6c456d94983dbc6745e2cf2ce08 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 23 Feb 2024 09:51:32 -0500 Subject: [PATCH 294/725] chore: update dependency next to v13.5.6 (#689) --- ecosystem-tests/vercel-edge/package-lock.json | 127 ++++++++---------- ecosystem-tests/vercel-edge/package.json | 2 +- 2 files changed, 60 insertions(+), 69 deletions(-) diff --git a/ecosystem-tests/vercel-edge/package-lock.json b/ecosystem-tests/vercel-edge/package-lock.json index d1c67b718..ebac7eb81 100644 --- a/ecosystem-tests/vercel-edge/package-lock.json +++ b/ecosystem-tests/vercel-edge/package-lock.json @@ -9,7 +9,7 @@ "version": "0.1.0", "dependencies": { "ai": "2.1.34", - "next": "13.4.6", + "next": "13.5.6", "react": "18.2.0", "react-dom": "18.2.0" }, @@ -1171,14 +1171,14 @@ } }, "node_modules/@next/env": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.6.tgz", - "integrity": "sha512-nqUxEtvDqFhmV1/awSg0K2XHNwkftNaiUqCYO9e6+MYmqNObpKVl7OgMkGaQ2SZnFx5YqF0t60ZJTlyJIDAijg==" + "version": "13.5.6", + "resolved": "https://registry.npmjs.org/@next/env/-/env-13.5.6.tgz", + "integrity": "sha512-Yac/bV5sBGkkEXmAX5FWPS9Mmo2rthrOPRQQNfycJPkjUAUclomCPH7QFVCDQ4Mp2k2K1SSM6m0zrxYrOwtFQw==" }, "node_modules/@next/swc-darwin-arm64": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.6.tgz", - "integrity": "sha512-ahi6VP98o4HV19rkOXPSUu+ovfHfUxbJQ7VVJ7gL2FnZRr7onEFC1oGQ6NQHpm8CxpIzSSBW79kumlFMOmZVjg==", + "version": "13.5.6", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.5.6.tgz", + "integrity": "sha512-5nvXMzKtZfvcu4BhtV0KH1oGv4XEW+B+jOfmBdpFI3C7FrB/MfujRpWYSBBO64+qbW8pkZiSyQv9eiwnn5VIQA==", "cpu": [ "arm64" ], @@ -1191,9 +1191,9 @@ } }, "node_modules/@next/swc-darwin-x64": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.6.tgz", - "integrity": "sha512-13cXxKFsPJIJKzUqrU5XB1mc0xbUgYsRcdH6/rB8c4NMEbWGdtD4QoK9ShN31TZdePpD4k416Ur7p+deMIxnnA==", + "version": "13.5.6", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.5.6.tgz", + "integrity": "sha512-6cgBfxg98oOCSr4BckWjLLgiVwlL3vlLj8hXg2b+nDgm4bC/qVXXLfpLB9FHdoDu4057hzywbxKvmYGmi7yUzA==", "cpu": [ "x64" ], @@ -1206,9 +1206,9 @@ } }, "node_modules/@next/swc-linux-arm64-gnu": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.6.tgz", - "integrity": "sha512-Ti+NMHEjTNktCVxNjeWbYgmZvA2AqMMI2AMlzkXsU7W4pXCMhrryAmAIoo+7YdJbsx01JQWYVxGe62G6DoCLaA==", + "version": "13.5.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.5.6.tgz", + "integrity": "sha512-txagBbj1e1w47YQjcKgSU4rRVQ7uF29YpnlHV5xuVUsgCUf2FmyfJ3CPjZUvpIeXCJAoMCFAoGnbtX86BK7+sg==", "cpu": [ "arm64" ], @@ -1221,9 +1221,9 @@ } }, "node_modules/@next/swc-linux-arm64-musl": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.6.tgz", - "integrity": "sha512-OHoC6gO7XfjstgwR+z6UHKlvhqJfyMtNaJidjx3sEcfaDwS7R2lqR5AABi8PuilGgi0BO0O0sCXqLlpp3a0emQ==", + "version": "13.5.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.5.6.tgz", + "integrity": "sha512-cGd+H8amifT86ZldVJtAKDxUqeFyLWW+v2NlBULnLAdWsiuuN8TuhVBt8ZNpCqcAuoruoSWynvMWixTFcroq+Q==", "cpu": [ "arm64" ], @@ -1236,9 +1236,9 @@ } }, "node_modules/@next/swc-linux-x64-gnu": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.6.tgz", - "integrity": "sha512-zHZxPGkUlpfNJCboUrFqwlwEX5vI9LSN70b8XEb0DYzzlrZyCyOi7hwDp/+3Urm9AB7YCAJkgR5Sp1XBVjHdfQ==", + "version": "13.5.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.5.6.tgz", + "integrity": "sha512-Mc2b4xiIWKXIhBy2NBTwOxGD3nHLmq4keFk+d4/WL5fMsB8XdJRdtUlL87SqVCTSaf1BRuQQf1HvXZcy+rq3Nw==", "cpu": [ "x64" ], @@ -1251,9 +1251,9 @@ } }, "node_modules/@next/swc-linux-x64-musl": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.6.tgz", - "integrity": "sha512-K/Y8lYGTwTpv5ME8PSJxwxLolaDRdVy+lOd9yMRMiQE0BLUhtxtCWC9ypV42uh9WpLjoaD0joOsB9Q6mbrSGJg==", + "version": "13.5.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.5.6.tgz", + "integrity": "sha512-CFHvP9Qz98NruJiUnCe61O6GveKKHpJLloXbDSWRhqhkJdZD2zU5hG+gtVJR//tyW897izuHpM6Gtf6+sNgJPQ==", "cpu": [ "x64" ], @@ -1266,9 +1266,9 @@ } }, "node_modules/@next/swc-win32-arm64-msvc": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.6.tgz", - "integrity": "sha512-U6LtxEUrjBL2tpW+Kr1nHCSJWNeIed7U7l5o7FiKGGwGgIlFi4UHDiLI6TQ2lxi20fAU33CsruV3U0GuzMlXIw==", + "version": "13.5.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.5.6.tgz", + "integrity": "sha512-aFv1ejfkbS7PUa1qVPwzDHjQWQtknzAZWGTKYIAaS4NMtBlk3VyA6AYn593pqNanlicewqyl2jUhQAaFV/qXsg==", "cpu": [ "arm64" ], @@ -1281,9 +1281,9 @@ } }, "node_modules/@next/swc-win32-ia32-msvc": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.6.tgz", - "integrity": "sha512-eEBeAqpCfhdPSlCZCayjCiyIllVqy4tcqvm1xmg3BgJG0G5ITiMM4Cw2WVeRSgWDJqQGRyyb+q8Y2ltzhXOWsQ==", + "version": "13.5.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.5.6.tgz", + "integrity": "sha512-XqqpHgEIlBHvzwG8sp/JXMFkLAfGLqkbVsyN+/Ih1mR8INb6YCc2x/Mbwi6hsAgUnqQztz8cvEbHJUbSl7RHDg==", "cpu": [ "ia32" ], @@ -1296,9 +1296,9 @@ } }, "node_modules/@next/swc-win32-x64-msvc": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.6.tgz", - "integrity": "sha512-OrZs94AuO3ZS5tnqlyPRNgfWvboXaDQCi5aXGve3o3C+Sj0ctMUV9+Do+0zMvvLRumR8E0PTWKvtz9n5vzIsWw==", + "version": "13.5.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.5.6.tgz", + "integrity": "sha512-Cqfe1YmOS7k+5mGu92nl5ULkzpKuxJrP3+4AEuPmrpFZ3BHxTY3TnHmU1On3bFmFFs6FbTcdF58CCUProGpIGQ==", "cpu": [ "x64" ], @@ -1410,9 +1410,9 @@ } }, "node_modules/@swc/helpers": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", - "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.2.tgz", + "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==", "dependencies": { "tslib": "^2.4.0" } @@ -5064,39 +5064,37 @@ "dev": true }, "node_modules/next": { - "version": "13.4.6", - "resolved": "https://registry.npmjs.org/next/-/next-13.4.6.tgz", - "integrity": "sha512-sjVqjxU+U2aXZnYt4Ud6CTLNNwWjdSfMgemGpIQJcN3Z7Jni9xRWbR0ie5fQzCg87aLqQVhKA2ud2gPoqJ9lGw==", + "version": "13.5.6", + "resolved": "https://registry.npmjs.org/next/-/next-13.5.6.tgz", + "integrity": "sha512-Y2wTcTbO4WwEsVb4A8VSnOsG1I9ok+h74q0ZdxkwM3EODqrs4pasq7O0iUxbcS9VtWMicG7f3+HAj0r1+NtKSw==", "dependencies": { - "@next/env": "13.4.6", - "@swc/helpers": "0.5.1", + "@next/env": "13.5.6", + "@swc/helpers": "0.5.2", "busboy": "1.6.0", "caniuse-lite": "^1.0.30001406", - "postcss": "8.4.14", + "postcss": "8.4.31", "styled-jsx": "5.1.1", - "watchpack": "2.4.0", - "zod": "3.21.4" + "watchpack": "2.4.0" }, "bin": { "next": "dist/bin/next" }, "engines": { - "node": ">=16.8.0" + "node": ">=16.14.0" }, "optionalDependencies": { - "@next/swc-darwin-arm64": "13.4.6", - "@next/swc-darwin-x64": "13.4.6", - "@next/swc-linux-arm64-gnu": "13.4.6", - "@next/swc-linux-arm64-musl": "13.4.6", - "@next/swc-linux-x64-gnu": "13.4.6", - "@next/swc-linux-x64-musl": "13.4.6", - "@next/swc-win32-arm64-msvc": "13.4.6", - "@next/swc-win32-ia32-msvc": "13.4.6", - "@next/swc-win32-x64-msvc": "13.4.6" + "@next/swc-darwin-arm64": "13.5.6", + "@next/swc-darwin-x64": "13.5.6", + "@next/swc-linux-arm64-gnu": "13.5.6", + "@next/swc-linux-arm64-musl": "13.5.6", + "@next/swc-linux-x64-gnu": "13.5.6", + "@next/swc-linux-x64-musl": "13.5.6", + "@next/swc-win32-arm64-msvc": "13.5.6", + "@next/swc-win32-ia32-msvc": "13.5.6", + "@next/swc-win32-x64-msvc": "13.5.6" }, "peerDependencies": { "@opentelemetry/api": "^1.1.0", - "fibers": ">= 3.1.0", "react": "^18.2.0", "react-dom": "^18.2.0", "sass": "^1.3.0" @@ -5105,9 +5103,6 @@ "@opentelemetry/api": { "optional": true }, - "fibers": { - "optional": true - }, "sass": { "optional": true } @@ -5419,9 +5414,9 @@ } }, "node_modules/postcss": { - "version": "8.4.14", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", - "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", "funding": [ { "type": "opencollective", @@ -5430,10 +5425,14 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], "dependencies": { - "nanoid": "^3.3.4", + "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" }, @@ -6715,14 +6714,6 @@ "funding": { "url": "https://github.com/sponsors/sindresorhus" } - }, - "node_modules/zod": { - "version": "3.21.4", - "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", - "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", - "funding": { - "url": "https://github.com/sponsors/colinhacks" - } } } } diff --git a/ecosystem-tests/vercel-edge/package.json b/ecosystem-tests/vercel-edge/package.json index 506a9d08c..171ba9c1a 100644 --- a/ecosystem-tests/vercel-edge/package.json +++ b/ecosystem-tests/vercel-edge/package.json @@ -15,7 +15,7 @@ }, "dependencies": { "ai": "2.1.34", - "next": "13.4.6", + "next": "13.5.6", "react": "18.2.0", "react-dom": "18.2.0" }, From e84773e3813a2f71cd542c3b04eb9842d99eb0ca Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 23 Feb 2024 10:31:41 -0500 Subject: [PATCH 295/725] chore: update dependency @types/node to v20.11.20 (#690) --- .../node-ts-cjs-auto/package-lock.json | 17 +++++++++++++---- ecosystem-tests/node-ts-cjs/package-lock.json | 17 +++++++++++++---- .../node-ts-esm-auto/package-lock.json | 17 +++++++++++++---- .../node-ts-esm-web/package-lock.json | 17 +++++++++++++---- ecosystem-tests/node-ts-esm/package-lock.json | 17 +++++++++++++---- .../node-ts4.5-jest27/package-lock.json | 17 +++++++++++++---- 6 files changed, 78 insertions(+), 24 deletions(-) diff --git a/ecosystem-tests/node-ts-cjs-auto/package-lock.json b/ecosystem-tests/node-ts-cjs-auto/package-lock.json index df381f1b5..a11f9814d 100644 --- a/ecosystem-tests/node-ts-cjs-auto/package-lock.json +++ b/ecosystem-tests/node-ts-cjs-auto/package-lock.json @@ -1093,10 +1093,13 @@ } }, "node_modules/@types/node": { - "version": "20.5.7", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.7.tgz", - "integrity": "sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==", - "dev": true + "version": "20.11.20", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.20.tgz", + "integrity": "sha512-7/rR21OS+fq8IyHTgtLkDK949uzsa6n8BkziAKtPVpugIkO6D+/ooXMvzXxDnZrmtXVfjb1bKQafYpb8s89LOg==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } }, "node_modules/@types/node-fetch": { "version": "2.6.4", @@ -3684,6 +3687,12 @@ "node": ">=4.2.0" } }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true + }, "node_modules/update-browserslist-db": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", diff --git a/ecosystem-tests/node-ts-cjs/package-lock.json b/ecosystem-tests/node-ts-cjs/package-lock.json index c39fc8f1c..c5280c5b5 100644 --- a/ecosystem-tests/node-ts-cjs/package-lock.json +++ b/ecosystem-tests/node-ts-cjs/package-lock.json @@ -1135,10 +1135,13 @@ } }, "node_modules/@types/node": { - "version": "20.5.7", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.7.tgz", - "integrity": "sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==", - "dev": true + "version": "20.11.20", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.20.tgz", + "integrity": "sha512-7/rR21OS+fq8IyHTgtLkDK949uzsa6n8BkziAKtPVpugIkO6D+/ooXMvzXxDnZrmtXVfjb1bKQafYpb8s89LOg==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } }, "node_modules/@types/node-fetch": { "version": "2.6.4", @@ -4244,6 +4247,12 @@ "node": ">=4.2.0" } }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true + }, "node_modules/universalify": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", diff --git a/ecosystem-tests/node-ts-esm-auto/package-lock.json b/ecosystem-tests/node-ts-esm-auto/package-lock.json index 1123560d4..4bce04f80 100644 --- a/ecosystem-tests/node-ts-esm-auto/package-lock.json +++ b/ecosystem-tests/node-ts-esm-auto/package-lock.json @@ -1157,10 +1157,13 @@ } }, "node_modules/@types/node": { - "version": "20.5.7", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.7.tgz", - "integrity": "sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==", - "dev": true + "version": "20.11.20", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.20.tgz", + "integrity": "sha512-7/rR21OS+fq8IyHTgtLkDK949uzsa6n8BkziAKtPVpugIkO6D+/ooXMvzXxDnZrmtXVfjb1bKQafYpb8s89LOg==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } }, "node_modules/@types/stack-utils": { "version": "2.0.3", @@ -3812,6 +3815,12 @@ "node": ">=4.2.0" } }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true + }, "node_modules/update-browserslist-db": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", diff --git a/ecosystem-tests/node-ts-esm-web/package-lock.json b/ecosystem-tests/node-ts-esm-web/package-lock.json index a2b14d348..b96128a4e 100644 --- a/ecosystem-tests/node-ts-esm-web/package-lock.json +++ b/ecosystem-tests/node-ts-esm-web/package-lock.json @@ -1157,10 +1157,13 @@ } }, "node_modules/@types/node": { - "version": "20.5.7", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.7.tgz", - "integrity": "sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==", - "dev": true + "version": "20.11.20", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.20.tgz", + "integrity": "sha512-7/rR21OS+fq8IyHTgtLkDK949uzsa6n8BkziAKtPVpugIkO6D+/ooXMvzXxDnZrmtXVfjb1bKQafYpb8s89LOg==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } }, "node_modules/@types/stack-utils": { "version": "2.0.3", @@ -3812,6 +3815,12 @@ "node": ">=4.2.0" } }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true + }, "node_modules/update-browserslist-db": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", diff --git a/ecosystem-tests/node-ts-esm/package-lock.json b/ecosystem-tests/node-ts-esm/package-lock.json index 480a700fe..4aecff6ca 100644 --- a/ecosystem-tests/node-ts-esm/package-lock.json +++ b/ecosystem-tests/node-ts-esm/package-lock.json @@ -1157,10 +1157,13 @@ } }, "node_modules/@types/node": { - "version": "20.5.7", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.7.tgz", - "integrity": "sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==", - "dev": true + "version": "20.11.20", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.20.tgz", + "integrity": "sha512-7/rR21OS+fq8IyHTgtLkDK949uzsa6n8BkziAKtPVpugIkO6D+/ooXMvzXxDnZrmtXVfjb1bKQafYpb8s89LOg==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } }, "node_modules/@types/stack-utils": { "version": "2.0.3", @@ -3812,6 +3815,12 @@ "node": ">=4.2.0" } }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true + }, "node_modules/update-browserslist-db": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", diff --git a/ecosystem-tests/node-ts4.5-jest27/package-lock.json b/ecosystem-tests/node-ts4.5-jest27/package-lock.json index f46e12de9..76813597f 100644 --- a/ecosystem-tests/node-ts4.5-jest27/package-lock.json +++ b/ecosystem-tests/node-ts4.5-jest27/package-lock.json @@ -1068,10 +1068,13 @@ } }, "node_modules/@types/node": { - "version": "20.6.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.6.0.tgz", - "integrity": "sha512-najjVq5KN2vsH2U/xyh2opaSEz6cZMR2SetLIlxlj08nOcmPOemJmUK2o4kUzfLqfrWE0PIrNeE16XhYDd3nqg==", - "dev": true + "version": "20.11.20", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.20.tgz", + "integrity": "sha512-7/rR21OS+fq8IyHTgtLkDK949uzsa6n8BkziAKtPVpugIkO6D+/ooXMvzXxDnZrmtXVfjb1bKQafYpb8s89LOg==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } }, "node_modules/@types/node-fetch": { "version": "2.6.5", @@ -4117,6 +4120,12 @@ "node": ">=4.2.0" } }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true + }, "node_modules/universalify": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", From 0372eaaf6f33bfbc3cb6294a2fd6b3bab9e7ba80 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 23 Feb 2024 19:18:24 -0500 Subject: [PATCH 296/725] feat(api): add wav and pcm to response_format (#691) --- src/resources/audio/speech.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/resources/audio/speech.ts b/src/resources/audio/speech.ts index faa281686..d5ef09118 100644 --- a/src/resources/audio/speech.ts +++ b/src/resources/audio/speech.ts @@ -35,9 +35,13 @@ export interface SpeechCreateParams { voice: 'alloy' | 'echo' | 'fable' | 'onyx' | 'nova' | 'shimmer'; /** - * The format to audio in. Supported formats are `mp3`, `opus`, `aac`, and `flac`. + * The format to return audio in. Supported formats are `mp3`, `opus`, `aac`, + * `flac`, `pcm`, and `wav`. + * + * The `pcm` audio format, similar to `wav` but without a header, utilizes a 24kHz + * sample rate, mono channel, and 16-bit depth in signed little-endian format. */ - response_format?: 'mp3' | 'opus' | 'aac' | 'flac'; + response_format?: 'mp3' | 'opus' | 'aac' | 'flac' | 'pcm' | 'wav'; /** * The speed of the generated audio. Select a value from `0.25` to `4.0`. `1.0` is From 5961cb8cea11065efd1ffee9db14f19ad7054ad5 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sat, 24 Feb 2024 16:17:31 +0100 Subject: [PATCH 297/725] chore(internal): fix ecosystem tests (#693) --- .../node-ts-cjs-auto/moduleResolution/node/type-tests.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/ecosystem-tests/node-ts-cjs-auto/moduleResolution/node/type-tests.ts b/ecosystem-tests/node-ts-cjs-auto/moduleResolution/node/type-tests.ts index a3c4f383b..2621b2b47 100644 --- a/ecosystem-tests/node-ts-cjs-auto/moduleResolution/node/type-tests.ts +++ b/ecosystem-tests/node-ts-cjs-auto/moduleResolution/node/type-tests.ts @@ -9,6 +9,5 @@ async function typeTests() { model: 'whisper-1', }) .asResponse(); - // @ts-expect-error this doesn't work with "moduleResolution": "node" response.body; } From 6175eca426b15990be5e5cdb0e8497e547f87d8a Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 28 Feb 2024 06:06:00 +0100 Subject: [PATCH 298/725] release: 4.28.4 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 19 +++++++++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 24 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8d5375100..5934251e9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.28.3" + ".": "4.28.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 274b8e8a5..68ebe3767 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## 4.28.4 (2024-02-28) + +Full Changelog: [v4.28.3...v4.28.4](https://github.com/openai/openai-node/compare/v4.28.3...v4.28.4) + +### Features + +* **api:** add wav and pcm to response_format ([#691](https://github.com/openai/openai-node/issues/691)) ([b1c6171](https://github.com/openai/openai-node/commit/b1c61711961a62a4d7b47909a68ecd65231a66af)) + + +### Chores + +* **ci:** update actions/setup-node action to v4 ([#685](https://github.com/openai/openai-node/issues/685)) ([f2704d5](https://github.com/openai/openai-node/commit/f2704d5f1580c0f1d31584ef88702cde8f6804d4)) +* **internal:** fix ecosystem tests ([#693](https://github.com/openai/openai-node/issues/693)) ([616624d](https://github.com/openai/openai-node/commit/616624d3d9fd10ce254ce0d435b2b73ed11679f2)) +* **types:** extract run status to a named type ([#686](https://github.com/openai/openai-node/issues/686)) ([b3b3b8e](https://github.com/openai/openai-node/commit/b3b3b8ea20e0f311d3bd53dfd22ccc04f5dce5f7)) +* update @types/react to 18.2.58, @types/react-dom to 18.2.19 ([#688](https://github.com/openai/openai-node/issues/688)) ([2a0d0b1](https://github.com/openai/openai-node/commit/2a0d0b1cb197eef25e42bbba88ee90c37d623f24)) +* update dependency @types/node to v20.11.20 ([#690](https://github.com/openai/openai-node/issues/690)) ([4ca005b](https://github.com/openai/openai-node/commit/4ca005be082d6c50fe95da6148896b62080bfe07)) +* update dependency @types/ws to v8.5.10 ([#683](https://github.com/openai/openai-node/issues/683)) ([a617268](https://github.com/openai/openai-node/commit/a6172683a3390422984ad282ac4940781493e772)) +* update dependency next to v13.5.6 ([#689](https://github.com/openai/openai-node/issues/689)) ([abb3b66](https://github.com/openai/openai-node/commit/abb3b6674b8f9f8ff9c2cc61629a31883ae4d8c8)) + ## 4.28.3 (2024-02-20) Full Changelog: [v4.28.2...v4.28.3](https://github.com/openai/openai-node/compare/v4.28.2...v4.28.3) diff --git a/README.md b/README.md index c7779e79a..ef174634e 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.28.3/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.28.4/mod.ts'; ``` diff --git a/build-deno b/build-deno index c8215c85d..74d994d08 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.28.3/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.28.4/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 455c0d180..65d6046f6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.28.3", + "version": "4.28.4", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 3975f7a3e..9dd894067 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.28.3'; // x-release-please-version +export const VERSION = '4.28.4'; // x-release-please-version From 08c5974033dfdb3e60ad50305e2a9aafd586d3f2 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 17:39:28 +0100 Subject: [PATCH 299/725] docs(contributing): improve wording (#696) --- CONTRIBUTING.md | 6 +++--- README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 61f37370f..693e9ea70 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -3,7 +3,7 @@ This repository uses [`yarn@v1`](https://classic.yarnpkg.com/lang/en/docs/install/#mac-stable). Other package managers may work but are not officially supported for development. -To setup the repository, run: +To set up the repository, run: ```bash yarn @@ -65,7 +65,7 @@ pnpm link -—global openai ## Running tests -Most tests will require you to [setup a mock server](https://github.com/stoplightio/prism) against the OpenAPI spec to run the tests. +Most tests require you to [set up a mock server](https://github.com/stoplightio/prism) against the OpenAPI spec to run the tests. ```bash npx prism path/to/your/openapi.yml @@ -99,7 +99,7 @@ the changes aren't made through the automated pipeline, you may want to make rel ### Publish with a GitHub workflow -You can release to package managers by using [the `Publish NPM` GitHub action](https://www.github.com/openai/openai-node/actions/workflows/publish-npm.yml). This will require a setup organization or repository secret to be set up. +You can release to package managers by using [the `Publish NPM` GitHub action](https://www.github.com/openai/openai-node/actions/workflows/publish-npm.yml). This requires a setup organization or repository secret to be set up. ### Publish manually diff --git a/README.md b/README.md index ef174634e..e8ff603e9 100644 --- a/README.md +++ b/README.md @@ -424,7 +424,7 @@ import OpenAI from 'openai'; ``` To do the inverse, add `import "openai/shims/node"` (which does import polyfills). -This can also be useful if you are getting the wrong TypeScript types for `Response` - more details [here](https://github.com/openai/openai-node/tree/master/src/_shims#readme). +This can also be useful if you are getting the wrong TypeScript types for `Response` ([more details](https://github.com/openai/openai-node/tree/master/src/_shims#readme)). You may also provide a custom `fetch` function when instantiating the client, which can be used to inspect or alter the `Request` or `Response` before/after each request: From c3fee07c78fef9115da353fab8f5e399f81cdc93 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 29 Feb 2024 21:56:48 +0100 Subject: [PATCH 300/725] docs(readme): fix typo in custom fetch implementation (#698) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e8ff603e9..68d356f8f 100644 --- a/README.md +++ b/README.md @@ -434,7 +434,7 @@ import { fetch } from 'undici'; // as one example import OpenAI from 'openai'; const client = new OpenAI({ - fetch: async (url: RequestInfo, init?: RequestInfo): Promise => { + fetch: async (url: RequestInfo, init?: RequestInit): Promise => { console.log('About to make a request', url, init); const response = await fetch(url, init); console.log('Got response', response); From 181a5dddb650f1b060b88cbe3bf7293ddfecebdf Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 1 Mar 2024 01:32:50 +0100 Subject: [PATCH 301/725] fix(ChatCompletionStream): abort on async iterator break and handle errors (#699) `break`-ing the async iterator did not previously abort the request which increases usage. Errors are now handled more effectively in the async iterator. --- src/lib/ChatCompletionRunFunctions.test.ts | 53 +++++++++++++++++++++- src/lib/ChatCompletionStream.ts | 35 +++++++++++--- 2 files changed, 81 insertions(+), 7 deletions(-) diff --git a/src/lib/ChatCompletionRunFunctions.test.ts b/src/lib/ChatCompletionRunFunctions.test.ts index bb360b217..b524218ae 100644 --- a/src/lib/ChatCompletionRunFunctions.test.ts +++ b/src/lib/ChatCompletionRunFunctions.test.ts @@ -1,5 +1,5 @@ import OpenAI from 'openai'; -import { OpenAIError } from 'openai/error'; +import { OpenAIError, APIConnectionError } from 'openai/error'; import { PassThrough } from 'stream'; import { ParsingToolFunction, @@ -2207,6 +2207,7 @@ describe('resource completions', () => { await listener.sanityCheck(); }); }); + describe('stream', () => { test('successful flow', async () => { const { fetch, handleRequest } = mockStreamingChatCompletionFetch(); @@ -2273,5 +2274,55 @@ describe('resource completions', () => { expect(listener.finalMessage).toEqual({ role: 'assistant', content: 'The weather is great today!' }); await listener.sanityCheck(); }); + test('handles network errors', async () => { + const { fetch, handleRequest } = mockFetch(); + + const openai = new OpenAI({ apiKey: '...', fetch }); + + const stream = openai.beta.chat.completions.stream( + { + max_tokens: 1024, + model: 'gpt-3.5-turbo', + messages: [{ role: 'user', content: 'Say hello there!' }], + }, + { maxRetries: 0 }, + ); + + handleRequest(async () => { + throw new Error('mock request error'); + }).catch(() => {}); + + async function runStream() { + await stream.done(); + } + + await expect(runStream).rejects.toThrow(APIConnectionError); + }); + test('handles network errors on async iterator', async () => { + const { fetch, handleRequest } = mockFetch(); + + const openai = new OpenAI({ apiKey: '...', fetch }); + + const stream = openai.beta.chat.completions.stream( + { + max_tokens: 1024, + model: 'gpt-3.5-turbo', + messages: [{ role: 'user', content: 'Say hello there!' }], + }, + { maxRetries: 0 }, + ); + + handleRequest(async () => { + throw new Error('mock request error'); + }).catch(() => {}); + + async function runStream() { + for await (const _event of stream) { + continue; + } + } + + await expect(runStream).rejects.toThrow(APIConnectionError); + }); }); }); diff --git a/src/lib/ChatCompletionStream.ts b/src/lib/ChatCompletionStream.ts index a2aa7032e..2ea040383 100644 --- a/src/lib/ChatCompletionStream.ts +++ b/src/lib/ChatCompletionStream.ts @@ -210,13 +210,16 @@ export class ChatCompletionStream [Symbol.asyncIterator](): AsyncIterator { const pushQueue: ChatCompletionChunk[] = []; - const readQueue: ((chunk: ChatCompletionChunk | undefined) => void)[] = []; + const readQueue: { + resolve: (chunk: ChatCompletionChunk | undefined) => void; + reject: (err: unknown) => void; + }[] = []; let done = false; this.on('chunk', (chunk) => { const reader = readQueue.shift(); if (reader) { - reader(chunk); + reader.resolve(chunk); } else { pushQueue.push(chunk); } @@ -225,7 +228,23 @@ export class ChatCompletionStream this.on('end', () => { done = true; for (const reader of readQueue) { - reader(undefined); + reader.resolve(undefined); + } + readQueue.length = 0; + }); + + this.on('abort', (err) => { + done = true; + for (const reader of readQueue) { + reader.reject(err); + } + readQueue.length = 0; + }); + + this.on('error', (err) => { + done = true; + for (const reader of readQueue) { + reader.reject(err); } readQueue.length = 0; }); @@ -236,13 +255,17 @@ export class ChatCompletionStream if (done) { return { value: undefined, done: true }; } - return new Promise((resolve) => readQueue.push(resolve)).then( - (chunk) => (chunk ? { value: chunk, done: false } : { value: undefined, done: true }), - ); + return new Promise((resolve, reject) => + readQueue.push({ resolve, reject }), + ).then((chunk) => (chunk ? { value: chunk, done: false } : { value: undefined, done: true })); } const chunk = pushQueue.shift()!; return { value: chunk, done: false }; }, + return: async () => { + this.abort(); + return { value: undefined, done: true }; + }, }; } From 18d9cb729d23871976368e8b5c40515661a8bd4b Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 1 Mar 2024 14:57:12 +0100 Subject: [PATCH 302/725] chore(docs): mention install from git repo (#700) --- CONTRIBUTING.md | 2 ++ README.md | 1 + 2 files changed, 3 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 693e9ea70..297322d17 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -43,6 +43,8 @@ To install via git: ```bash npm install --save git+ssh://git@github.com:openai/openai-node.git +# or +yarn add git+ssh://git@github.com:openai/openai-node.git ``` Alternatively, to link a local copy of the repo: diff --git a/README.md b/README.md index 68d356f8f..dd3ac15c0 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ To learn how to use the OpenAI API, check out our [API Reference](https://platfo ## Installation ```sh +# install from NPM npm install --save openai # or yarn add openai From c21ef88b650b996dd0cf97f36294db464573b531 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 4 Mar 2024 19:17:09 +0100 Subject: [PATCH 303/725] chore(api): update docs (#703) --- src/resources/audio/speech.ts | 9 +++------ src/resources/audio/transcriptions.ts | 18 ++++++++++++++---- src/resources/audio/translations.ts | 3 ++- src/resources/beta/threads/runs/runs.ts | 4 ++-- src/resources/chat/completions.ts | 14 +++++++++----- src/resources/images.ts | 9 ++++++--- src/resources/moderations.ts | 8 +++----- 7 files changed, 39 insertions(+), 26 deletions(-) diff --git a/src/resources/audio/speech.ts b/src/resources/audio/speech.ts index d5ef09118..7d0ee2195 100644 --- a/src/resources/audio/speech.ts +++ b/src/resources/audio/speech.ts @@ -35,13 +35,10 @@ export interface SpeechCreateParams { voice: 'alloy' | 'echo' | 'fable' | 'onyx' | 'nova' | 'shimmer'; /** - * The format to return audio in. Supported formats are `mp3`, `opus`, `aac`, - * `flac`, `pcm`, and `wav`. - * - * The `pcm` audio format, similar to `wav` but without a header, utilizes a 24kHz - * sample rate, mono channel, and 16-bit depth in signed little-endian format. + * The format to audio in. Supported formats are `mp3`, `opus`, `aac`, `flac`, + * `wav`, and `pcm`. */ - response_format?: 'mp3' | 'opus' | 'aac' | 'flac' | 'pcm' | 'wav'; + response_format?: 'mp3' | 'opus' | 'aac' | 'flac' | 'wav' | 'pcm'; /** * The speed of the generated audio. Select a value from `0.25` to `4.0`. `1.0` is diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index 7f381c5a3..ab2079ed6 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -14,7 +14,14 @@ export class Transcriptions extends APIResource { } } +/** + * Represents a transcription response returned by model, based on the provided + * input. + */ export interface Transcription { + /** + * The transcribed text. + */ text: string; } @@ -26,7 +33,8 @@ export interface TranscriptionCreateParams { file: Uploadable; /** - * ID of the model to use. Only `whisper-1` is currently available. + * ID of the model to use. Only `whisper-1` (which is powered by our open source + * Whisper V2 model) is currently available. */ model: (string & {}) | 'whisper-1'; @@ -61,9 +69,11 @@ export interface TranscriptionCreateParams { temperature?: number; /** - * The timestamp granularities to populate for this transcription. Any of these - * options: `word`, or `segment`. Note: There is no additional latency for segment - * timestamps, but generating word timestamps incurs additional latency. + * The timestamp granularities to populate for this transcription. + * `response_format` must be set `verbose_json` to use timestamp granularities. + * Either or both of these options are supported: `word`, or `segment`. Note: There + * is no additional latency for segment timestamps, but generating word timestamps + * incurs additional latency. */ timestamp_granularities?: Array<'word' | 'segment'>; } diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index 54583ce1f..e68a714fb 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -26,7 +26,8 @@ export interface TranslationCreateParams { file: Uploadable; /** - * ID of the model to use. Only `whisper-1` is currently available. + * ID of the model to use. Only `whisper-1` (which is powered by our open source + * Whisper V2 model) is currently available. */ model: (string & {}) | 'whisper-1'; diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 9582a060b..9a0bc00dd 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -270,9 +270,9 @@ export namespace Run { */ export interface LastError { /** - * One of `server_error` or `rate_limit_exceeded`. + * One of `server_error`, `rate_limit_exceeded`, or `invalid_prompt`. */ - code: 'server_error' | 'rate_limit_exceeded'; + code: 'server_error' | 'rate_limit_exceeded' | 'invalid_prompt'; /** * A human-readable description of the error. diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 2a5216745..44627eb85 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -546,7 +546,9 @@ export interface ChatCompletionTokenLogprob { bytes: Array | null; /** - * The log probability of this token. + * The log probability of this token, if it is within the top 20 most likely + * tokens. Otherwise, the value `-9999.0` is used to signify that the token is very + * unlikely. */ logprob: number; @@ -574,7 +576,9 @@ export namespace ChatCompletionTokenLogprob { bytes: Array | null; /** - * The log probability of this token. + * The log probability of this token, if it is within the top 20 most likely + * tokens. Otherwise, the value `-9999.0` is used to signify that the token is very + * unlikely. */ logprob: number; } @@ -827,9 +831,9 @@ export interface ChatCompletionCreateParamsBase { tools?: Array; /** - * An integer between 0 and 5 specifying the number of most likely tokens to return - * at each token position, each with an associated log probability. `logprobs` must - * be set to `true` if this parameter is used. + * An integer between 0 and 20 specifying the number of most likely tokens to + * return at each token position, each with an associated log probability. + * `logprobs` must be set to `true` if this parameter is used. */ top_logprobs?: number | null; diff --git a/src/resources/images.ts b/src/resources/images.ts index 4bc654903..bc5b9edc0 100644 --- a/src/resources/images.ts +++ b/src/resources/images.ts @@ -80,7 +80,8 @@ export interface ImageCreateVariationParams { /** * The format in which the generated images are returned. Must be one of `url` or - * `b64_json`. + * `b64_json`. URLs are only valid for 60 minutes after the image has been + * generated. */ response_format?: 'url' | 'b64_json' | null; @@ -131,7 +132,8 @@ export interface ImageEditParams { /** * The format in which the generated images are returned. Must be one of `url` or - * `b64_json`. + * `b64_json`. URLs are only valid for 60 minutes after the image has been + * generated. */ response_format?: 'url' | 'b64_json' | null; @@ -176,7 +178,8 @@ export interface ImageGenerateParams { /** * The format in which the generated images are returned. Must be one of `url` or - * `b64_json`. + * `b64_json`. URLs are only valid for 60 minutes after the image has been + * generated. */ response_format?: 'url' | 'b64_json' | null; diff --git a/src/resources/moderations.ts b/src/resources/moderations.ts index 8bde6ecca..a43006ccf 100644 --- a/src/resources/moderations.ts +++ b/src/resources/moderations.ts @@ -6,7 +6,7 @@ import * as ModerationsAPI from 'openai/resources/moderations'; export class Moderations extends APIResource { /** - * Classifies if text violates OpenAI's Content Policy + * Classifies if text is potentially harmful. */ create( body: ModerationCreateParams, @@ -28,8 +28,7 @@ export interface Moderation { category_scores: Moderation.CategoryScores; /** - * Whether the content violates - * [OpenAI's usage policies](/policies/usage-policies). + * Whether any of the below categories are flagged. */ flagged: boolean; } @@ -170,8 +169,7 @@ export namespace Moderation { } /** - * Represents policy compliance report by OpenAI's content moderation model against - * a given input. + * Represents if a given text input is potentially harmful. */ export interface ModerationCreateResponse { /** From 34e128fad382d1aeac9912d85c50291c4882d298 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 4 Mar 2024 21:53:09 +0100 Subject: [PATCH 304/725] chore: fix error handler in readme (#704) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dd3ac15c0..1cfb2537a 100644 --- a/README.md +++ b/README.md @@ -275,7 +275,7 @@ a subclass of `APIError` will be thrown: async function main() { const job = await openai.fineTuning.jobs .create({ model: 'gpt-3.5-turbo', training_file: 'file-abc123' }) - .catch((err) => { + .catch(async (err) => { if (err instanceof OpenAI.APIError) { console.log(err.status); // 400 console.log(err.name); // BadRequestError From 588b30f6f5604387cb2ade716b6cf693e1175cec Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 5 Mar 2024 12:10:53 +0100 Subject: [PATCH 305/725] docs(readme): fix https proxy example (#705) --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1cfb2537a..1207d5d24 100644 --- a/README.md +++ b/README.md @@ -456,7 +456,7 @@ If you would like to disable or customize this behavior, for example to use the ```ts import http from 'http'; -import HttpsProxyAgent from 'https-proxy-agent'; +import { HttpsProxyAgent } from 'https-proxy-agent'; // Configure the default for all requests: const openai = new OpenAI({ @@ -465,9 +465,8 @@ const openai = new OpenAI({ // Override per-request: await openai.models.list({ - baseURL: 'http://localhost:8080/test-api', httpAgent: new http.Agent({ keepAlive: false }), -}) +}); ``` ## Semantic Versioning From 753bced18a57cd4a7739e8e03a7b7933048be79f Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 6 Mar 2024 17:42:34 +0100 Subject: [PATCH 306/725] fix(streaming): correctly handle trailing new lines in byte chunks (#708) --- src/streaming.ts | 8 +++++++- tests/streaming.test.ts | 42 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 tests/streaming.test.ts diff --git a/src/streaming.ts b/src/streaming.ts index 7d8b4442a..1b59bce20 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -267,7 +267,7 @@ class SSEDecoder { * * https://github.com/encode/httpx/blob/920333ea98118e9cf617f246905d7b202510941c/httpx/_decoders.py#L258 */ -class LineDecoder { +export class LineDecoder { // prettier-ignore static NEWLINE_CHARS = new Set(['\n', '\r', '\x0b', '\x0c', '\x1c', '\x1d', '\x1e', '\x85', '\u2028', '\u2029']); static NEWLINE_REGEXP = /\r\n|[\n\r\x0b\x0c\x1c\x1d\x1e\x85\u2028\u2029]/g; @@ -300,6 +300,12 @@ class LineDecoder { const trailingNewline = LineDecoder.NEWLINE_CHARS.has(text[text.length - 1] || ''); let lines = text.split(LineDecoder.NEWLINE_REGEXP); + // if there is a trailing new line then the last entry will be an empty + // string which we don't care about + if (trailingNewline) { + lines.pop(); + } + if (lines.length === 1 && !trailingNewline) { this.buffer.push(lines[0]!); return []; diff --git a/tests/streaming.test.ts b/tests/streaming.test.ts new file mode 100644 index 000000000..45cf6f6cd --- /dev/null +++ b/tests/streaming.test.ts @@ -0,0 +1,42 @@ +import { LineDecoder } from 'openai/streaming'; + +function decodeChunks(chunks: string[], decoder?: LineDecoder): string[] { + if (!decoder) { + decoder = new LineDecoder(); + } + + const lines = []; + for (const chunk of chunks) { + lines.push(...decoder.decode(chunk)); + } + + return lines; +} + +describe('line decoder', () => { + test('basic', () => { + // baz is not included because the line hasn't ended yet + expect(decodeChunks(['foo', ' bar\nbaz'])).toEqual(['foo bar']); + }); + + test('basic with \\r', () => { + // baz is not included because the line hasn't ended yet + expect(decodeChunks(['foo', ' bar\r\nbaz'])).toEqual(['foo bar']); + }); + + test('trailing new lines', () => { + expect(decodeChunks(['foo', ' bar', 'baz\n', 'thing\n'])).toEqual(['foo barbaz', 'thing']); + }); + + test('trailing new lines with \\r', () => { + expect(decodeChunks(['foo', ' bar', 'baz\r\n', 'thing\r\n'])).toEqual(['foo barbaz', 'thing']); + }); + + test('escaped new lines', () => { + expect(decodeChunks(['foo', ' bar\\nbaz\n'])).toEqual(['foo bar\\nbaz']); + }); + + test('escaped new lines with \\r', () => { + expect(decodeChunks(['foo', ' bar\\r\\nbaz\n'])).toEqual(['foo bar\\r\\nbaz']); + }); +}); From e0deb2285fb35fac8096ebfe6ed5f9dcd1a8b7f0 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 6 Mar 2024 19:13:10 +0100 Subject: [PATCH 307/725] chore(types): fix accidental exposure of Buffer type to cloudflare (#709) --- src/streaming.ts | 13 ++++++++++++- tests/streaming.test.ts | 15 +-------------- 2 files changed, 13 insertions(+), 15 deletions(-) diff --git a/src/streaming.ts b/src/streaming.ts index 1b59bce20..7b0466a3c 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -267,7 +267,7 @@ class SSEDecoder { * * https://github.com/encode/httpx/blob/920333ea98118e9cf617f246905d7b202510941c/httpx/_decoders.py#L258 */ -export class LineDecoder { +class LineDecoder { // prettier-ignore static NEWLINE_CHARS = new Set(['\n', '\r', '\x0b', '\x0c', '\x1c', '\x1d', '\x1e', '\x85', '\u2028', '\u2029']); static NEWLINE_REGEXP = /\r\n|[\n\r\x0b\x0c\x1c\x1d\x1e\x85\u2028\u2029]/g; @@ -372,6 +372,17 @@ export class LineDecoder { } } +/** This is an internal helper function that's just used for testing */ +export function _decodeChunks(chunks: string[]): string[] { + const decoder = new LineDecoder(); + const lines = []; + for (const chunk of chunks) { + lines.push(...decoder.decode(chunk)); + } + + return lines; +} + function partition(str: string, delimiter: string): [string, string, string] { const index = str.indexOf(delimiter); if (index !== -1) { diff --git a/tests/streaming.test.ts b/tests/streaming.test.ts index 45cf6f6cd..479b2a341 100644 --- a/tests/streaming.test.ts +++ b/tests/streaming.test.ts @@ -1,17 +1,4 @@ -import { LineDecoder } from 'openai/streaming'; - -function decodeChunks(chunks: string[], decoder?: LineDecoder): string[] { - if (!decoder) { - decoder = new LineDecoder(); - } - - const lines = []; - for (const chunk of chunks) { - lines.push(...decoder.decode(chunk)); - } - - return lines; -} +import { _decodeChunks as decodeChunks } from 'openai/streaming'; describe('line decoder', () => { test('basic', () => { From 0825acf85cd50d02b63a875481aadd5ec6cc6aad Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 6 Mar 2024 21:12:48 +0100 Subject: [PATCH 308/725] docs: remove extraneous --save and yarn install instructions (#710) --- CONTRIBUTING.md | 4 +--- README.md | 5 +---- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 297322d17..d9e64025d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -42,9 +42,7 @@ If you’d like to use the repository from source, you can either install from g To install via git: ```bash -npm install --save git+ssh://git@github.com:openai/openai-node.git -# or -yarn add git+ssh://git@github.com:openai/openai-node.git +npm install git+ssh://git@github.com:openai/openai-node.git ``` Alternatively, to link a local copy of the repo: diff --git a/README.md b/README.md index 1207d5d24..28262aaca 100644 --- a/README.md +++ b/README.md @@ -11,10 +11,7 @@ To learn how to use the OpenAI API, check out our [API Reference](https://platfo ## Installation ```sh -# install from NPM -npm install --save openai -# or -yarn add openai +npm install openai ``` You can import in Deno via: From 50206a06974d558d9df7d8649cc2c71822e67472 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 7 Mar 2024 19:13:22 +0100 Subject: [PATCH 309/725] docs: use @deprecated decorator for deprecated params (#711) --- src/resources/chat/completions.ts | 30 ++++++++++++++++++------------ src/resources/files.ts | 8 ++++---- 2 files changed, 22 insertions(+), 16 deletions(-) diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 44627eb85..c2d6da0be 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -133,8 +133,8 @@ export interface ChatCompletionAssistantMessageParam { content?: string | null; /** - * Deprecated and replaced by `tool_calls`. The name and arguments of a function - * that should be called, as generated by the model. + * @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of + * a function that should be called, as generated by the model. */ function_call?: ChatCompletionAssistantMessageParam.FunctionCall; @@ -152,8 +152,8 @@ export interface ChatCompletionAssistantMessageParam { export namespace ChatCompletionAssistantMessageParam { /** - * Deprecated and replaced by `tool_calls`. The name and arguments of a function - * that should be called, as generated by the model. + * @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of + * a function that should be called, as generated by the model. */ export interface FunctionCall { /** @@ -250,8 +250,8 @@ export namespace ChatCompletionChunk { content?: string | null; /** - * Deprecated and replaced by `tool_calls`. The name and arguments of a function - * that should be called, as generated by the model. + * @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of + * a function that should be called, as generated by the model. */ function_call?: Delta.FunctionCall; @@ -265,8 +265,8 @@ export namespace ChatCompletionChunk { export namespace Delta { /** - * Deprecated and replaced by `tool_calls`. The name and arguments of a function - * that should be called, as generated by the model. + * @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of + * a function that should be called, as generated by the model. */ export interface FunctionCall { /** @@ -378,6 +378,9 @@ export interface ChatCompletionFunctionCallOption { name: string; } +/** + * @deprecated + */ export interface ChatCompletionFunctionMessageParam { /** * The contents of the function message. @@ -410,8 +413,8 @@ export interface ChatCompletionMessage { role: 'assistant'; /** - * Deprecated and replaced by `tool_calls`. The name and arguments of a function - * that should be called, as generated by the model. + * @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of + * a function that should be called, as generated by the model. */ function_call?: ChatCompletionMessage.FunctionCall; @@ -423,8 +426,8 @@ export interface ChatCompletionMessage { export namespace ChatCompletionMessage { /** - * Deprecated and replaced by `tool_calls`. The name and arguments of a function - * that should be called, as generated by the model. + * @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of + * a function that should be called, as generated by the model. */ export interface FunctionCall { /** @@ -855,6 +858,9 @@ export interface ChatCompletionCreateParamsBase { } export namespace ChatCompletionCreateParams { + /** + * @deprecated + */ export interface Function { /** * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain diff --git a/src/resources/files.ts b/src/resources/files.ts index db8f3a66a..cda487a63 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -154,14 +154,14 @@ export interface FileObject { purpose: 'fine-tune' | 'fine-tune-results' | 'assistants' | 'assistants_output'; /** - * Deprecated. The current status of the file, which can be either `uploaded`, - * `processed`, or `error`. + * @deprecated: Deprecated. The current status of the file, which can be either + * `uploaded`, `processed`, or `error`. */ status: 'uploaded' | 'processed' | 'error'; /** - * Deprecated. For details on why a fine-tuning training file failed validation, - * see the `error` field on `fine_tuning.job`. + * @deprecated: Deprecated. For details on why a fine-tuning training file failed + * validation, see the `error` field on `fine_tuning.job`. */ status_details?: string; } From c71ad7062dc778a3675b104650b21877e811956b Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 7 Mar 2024 21:10:51 +0100 Subject: [PATCH 310/725] chore(internal): add explicit type annotation to decoder (#712) --- src/streaming.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/streaming.ts b/src/streaming.ts index 7b0466a3c..f90c5d89a 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -375,7 +375,7 @@ class LineDecoder { /** This is an internal helper function that's just used for testing */ export function _decodeChunks(chunks: string[]): string[] { const decoder = new LineDecoder(); - const lines = []; + const lines: string[] = []; for (const chunk of chunks) { lines.push(...decoder.decode(chunk)); } From beea0c7c6b6b8611f3b95c02fb35e74855f7ba03 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 13 Mar 2024 01:06:20 -0400 Subject: [PATCH 311/725] release: 4.28.5 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 27 +++++++++++++++++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 32 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5934251e9..2813cb972 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.28.4" + ".": "4.28.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 68ebe3767..8798e4b66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## 4.28.5 (2024-03-13) + +Full Changelog: [v4.28.4...v4.28.5](https://github.com/openai/openai-node/compare/v4.28.4...v4.28.5) + +### Bug Fixes + +* **ChatCompletionStream:** abort on async iterator break and handle errors ([#699](https://github.com/openai/openai-node/issues/699)) ([ac417a2](https://github.com/openai/openai-node/commit/ac417a2db31919d2b52f2eb2e38f9c67a8f73254)) +* **streaming:** correctly handle trailing new lines in byte chunks ([#708](https://github.com/openai/openai-node/issues/708)) ([4753be2](https://github.com/openai/openai-node/commit/4753be272b1d1dade7a769cf350b829fc639f36e)) + + +### Chores + +* **api:** update docs ([#703](https://github.com/openai/openai-node/issues/703)) ([e1db98b](https://github.com/openai/openai-node/commit/e1db98bef29d200e2e401e3f5d7b2db6839c7836)) +* **docs:** mention install from git repo ([#700](https://github.com/openai/openai-node/issues/700)) ([c081bdb](https://github.com/openai/openai-node/commit/c081bdbb55585e63370496d324dc6f94d86424d1)) +* fix error handler in readme ([#704](https://github.com/openai/openai-node/issues/704)) ([4ff790a](https://github.com/openai/openai-node/commit/4ff790a67cf876191e04ad0e369e447e080b78a7)) +* **internal:** add explicit type annotation to decoder ([#712](https://github.com/openai/openai-node/issues/712)) ([d728e99](https://github.com/openai/openai-node/commit/d728e9923554e4c72c9efa3bd528561400d50ad8)) +* **types:** fix accidental exposure of Buffer type to cloudflare ([#709](https://github.com/openai/openai-node/issues/709)) ([0323ecb](https://github.com/openai/openai-node/commit/0323ecb98ddbd8910fc5719c8bab5175b945d2ab)) + + +### Documentation + +* **contributing:** improve wording ([#696](https://github.com/openai/openai-node/issues/696)) ([940d569](https://github.com/openai/openai-node/commit/940d5695f4cacddbb58e3bfc50fec28c468c7e63)) +* **readme:** fix https proxy example ([#705](https://github.com/openai/openai-node/issues/705)) ([d144789](https://github.com/openai/openai-node/commit/d1447890a556d37928b628f6449bb80de224d207)) +* **readme:** fix typo in custom fetch implementation ([#698](https://github.com/openai/openai-node/issues/698)) ([64041fd](https://github.com/openai/openai-node/commit/64041fd33da569eccae64afe4e50ee803017b20b)) +* remove extraneous --save and yarn install instructions ([#710](https://github.com/openai/openai-node/issues/710)) ([8ec216d](https://github.com/openai/openai-node/commit/8ec216d6b72ee4d67e26786f06c93af18d042117)) +* use [@deprecated](https://github.com/deprecated) decorator for deprecated params ([#711](https://github.com/openai/openai-node/issues/711)) ([4688ef4](https://github.com/openai/openai-node/commit/4688ef4b36e9f383a3abf6cdb31d498163a7bb9e)) + ## 4.28.4 (2024-02-28) Full Changelog: [v4.28.3...v4.28.4](https://github.com/openai/openai-node/compare/v4.28.3...v4.28.4) diff --git a/README.md b/README.md index 28262aaca..24d38ac79 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.28.4/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.28.5/mod.ts'; ``` diff --git a/build-deno b/build-deno index 74d994d08..fb739cc50 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.28.4/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.28.5/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 65d6046f6..d51c4ca96 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.28.4", + "version": "4.28.5", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 9dd894067..516e764d1 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.28.4'; // x-release-please-version +export const VERSION = '4.28.5'; // x-release-please-version From 7d27d286876d0a575d91a4752f401126fe93d2a3 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 13 Mar 2024 16:30:47 -0400 Subject: [PATCH 312/725] feat(assistants): add support for streaming (#714) See the reference docs for more information: https://platform.openai.com/docs/api-reference/assistants-streaming We've also improved some of the names for the types in the assistants beta, non exhaustive list: - `CodeToolCall` -> `CodeInterpreterToolCall` - `MessageContentImageFile` -> `ImageFileContentBlock` - `MessageContentText` -> `TextContentBlock` - `ThreadMessage` -> `Message` - `ThreadMessageDeleted` -> `MessageDeleted` --- api.md | 58 +- examples/assistant-stream-raw.ts | 39 + examples/assistant-stream.ts | 48 + examples/assistants.ts | 57 ++ src/index.ts | 1 + src/lib/AbstractAssistantStreamRunner.ts | 340 +++++++ src/lib/AssistantStream.ts | 698 +++++++++++++++ src/resources/beta/assistants/assistants.ts | 844 ++++++++++++++++-- src/resources/beta/assistants/index.ts | 9 + src/resources/beta/beta.ts | 12 + src/resources/beta/index.ts | 12 + src/resources/beta/threads/index.ts | 35 +- src/resources/beta/threads/messages/index.ts | 26 +- .../beta/threads/messages/messages.ts | 426 +++++++-- src/resources/beta/threads/runs/index.ts | 19 +- src/resources/beta/threads/runs/runs.ts | 281 ++++-- src/resources/beta/threads/runs/steps.ts | 259 +++++- src/resources/beta/threads/threads.ts | 207 ++++- src/resources/chat/completions.ts | 2 +- src/resources/completions.ts | 2 + src/resources/shared.ts | 10 + src/streaming.ts | 14 + .../beta/threads/runs/runs.test.ts | 2 + .../beta/threads/threads.test.ts | 1 + tests/streaming/assistants/assistant.test.ts | 32 + 25 files changed, 3155 insertions(+), 279 deletions(-) create mode 100644 examples/assistant-stream-raw.ts create mode 100644 examples/assistant-stream.ts create mode 100644 examples/assistants.ts create mode 100644 src/lib/AbstractAssistantStreamRunner.ts create mode 100644 src/lib/AssistantStream.ts create mode 100644 tests/streaming/assistants/assistant.test.ts diff --git a/api.md b/api.md index ff3180cba..504a103c7 100644 --- a/api.md +++ b/api.md @@ -2,6 +2,7 @@ Types: +- ErrorObject - FunctionDefinition - FunctionParameters @@ -177,6 +178,15 @@ Types: - Assistant - AssistantDeleted +- AssistantStreamEvent +- AssistantTool +- CodeInterpreterTool +- FunctionTool +- MessageStreamEvent +- RetrievalTool +- RunStepStreamEvent +- RunStreamEvent +- ThreadStreamEvent Methods: @@ -214,6 +224,7 @@ Methods: - client.beta.threads.update(threadId, { ...params }) -> Thread - client.beta.threads.del(threadId) -> ThreadDeleted - client.beta.threads.createAndRun({ ...params }) -> Run +- client.beta.threads.createAndRunStream(body, options?) -> AssistantStream ### Runs @@ -231,16 +242,29 @@ Methods: - client.beta.threads.runs.list(threadId, { ...params }) -> RunsPage - client.beta.threads.runs.cancel(threadId, runId) -> Run - client.beta.threads.runs.submitToolOutputs(threadId, runId, { ...params }) -> Run +- client.beta.threads.runs.createAndStream(threadId, body, options?) -> AssistantStream +- client.beta.threads.runs.submitToolOutputsStream(threadId, runId, body, options?) -> AssistantStream #### Steps Types: -- CodeToolCall +- CodeInterpreterLogs +- CodeInterpreterOutputImage +- CodeInterpreterToolCall +- CodeInterpreterToolCallDelta - FunctionToolCall +- FunctionToolCallDelta - MessageCreationStepDetails - RetrievalToolCall +- RetrievalToolCallDelta - RunStep +- RunStepDelta +- RunStepDeltaEvent +- RunStepDeltaMessageDelta +- ToolCall +- ToolCallDelta +- ToolCallDeltaObject - ToolCallsStepDetails Methods: @@ -252,17 +276,33 @@ Methods: Types: -- MessageContentImageFile -- MessageContentText -- ThreadMessage -- ThreadMessageDeleted +- Annotation +- AnnotationDelta +- FileCitationAnnotation +- FileCitationDeltaAnnotation +- FilePathAnnotation +- FilePathDeltaAnnotation +- ImageFile +- ImageFileContentBlock +- ImageFileDelta +- ImageFileDeltaBlock +- Message +- MessageContent +- MessageContentDelta +- MessageDeleted +- MessageDelta +- MessageDeltaEvent +- Text +- TextContentBlock +- TextDelta +- TextDeltaBlock Methods: -- client.beta.threads.messages.create(threadId, { ...params }) -> ThreadMessage -- client.beta.threads.messages.retrieve(threadId, messageId) -> ThreadMessage -- client.beta.threads.messages.update(threadId, messageId, { ...params }) -> ThreadMessage -- client.beta.threads.messages.list(threadId, { ...params }) -> ThreadMessagesPage +- client.beta.threads.messages.create(threadId, { ...params }) -> Message +- client.beta.threads.messages.retrieve(threadId, messageId) -> Message +- client.beta.threads.messages.update(threadId, messageId, { ...params }) -> Message +- client.beta.threads.messages.list(threadId, { ...params }) -> MessagesPage #### Files diff --git a/examples/assistant-stream-raw.ts b/examples/assistant-stream-raw.ts new file mode 100644 index 000000000..a882d219a --- /dev/null +++ b/examples/assistant-stream-raw.ts @@ -0,0 +1,39 @@ +import OpenAI from 'openai'; + +const openai = new OpenAI(); + +async function main() { + const assistant = await openai.beta.assistants.create({ + model: 'gpt-4-1106-preview', + name: 'Math Tutor', + instructions: 'You are a personal math tutor. Write and run code to answer math questions.', + }); + + const thread = await openai.beta.threads.create({ + messages: [ + { + role: 'user', + content: '"I need to solve the equation `3x + 11 = 14`. Can you help me?"', + }, + ], + }); + + const stream = await openai.beta.threads.runs.create(thread.id, { + assistant_id: assistant.id, + additional_instructions: 'Please address the user as Jane Doe. The user has a premium account.', + stream: true, + }); + + for await (const event of stream) { + if (event.event === 'thread.message.delta') { + const chunk = event.data.delta.content?.[0]; + if (chunk && 'text' in chunk) { + process.stdout.write(chunk.text.value); + } + } + } + + console.log(); +} + +main(); diff --git a/examples/assistant-stream.ts b/examples/assistant-stream.ts new file mode 100644 index 000000000..36c4ed152 --- /dev/null +++ b/examples/assistant-stream.ts @@ -0,0 +1,48 @@ +#!/usr/bin/env -S npm run tsn -T + +import OpenAI from 'openai'; + +/** + * Example of streaming a response from an assistant + */ + +const openai = new OpenAI(); + +async function main() { + const assistant = await openai.beta.assistants.create({ + model: 'gpt-4-1106-preview', + name: 'Math Tutor', + instructions: 'You are a personal math tutor. Write and run code to answer math questions.', + }); + + let assistantId = assistant.id; + console.log('Created Assistant with Id: ' + assistantId); + + const thread = await openai.beta.threads.create({ + messages: [ + { + role: 'user', + content: '"I need to solve the equation `3x + 11 = 14`. Can you help me?"', + }, + ], + }); + + let threadId = thread.id; + console.log('Created thread with Id: ' + threadId); + + const run = openai.beta.threads.runs + .createAndStream(threadId, { + assistant_id: assistantId, + }) + //Subscribe to streaming events and log them + .on('event', (event) => console.log(event)) + .on('textDelta', (delta, snapshot) => console.log(snapshot)) + .on('messageDelta', (delta, snapshot) => console.log(snapshot)) + .on('run', (run) => console.log(run)) + .on('messageDelta', (delta, snapshot) => console.log(snapshot)) + .on('connect', () => console.log()); + const result = await run.finalRun(); + console.log('Run Result' + result); +} + +main(); diff --git a/examples/assistants.ts b/examples/assistants.ts new file mode 100644 index 000000000..bbc2f80ce --- /dev/null +++ b/examples/assistants.ts @@ -0,0 +1,57 @@ +#!/usr/bin/env -S npm run tsn -T + +import OpenAI from 'openai'; +import { sleep } from 'openai/core'; + +/** + * Example of polling for a complete response from an assistant + */ + +const openai = new OpenAI(); + +async function main() { + const assistant = await openai.beta.assistants.create({ + model: 'gpt-4-1106-preview', + name: 'Math Tutor', + instructions: 'You are a personal math tutor. Write and run code to answer math questions.', + // tools = [], + }); + + let assistantId = assistant.id; + console.log('Created Assistant with Id: ' + assistantId); + + const thread = await openai.beta.threads.create({ + messages: [ + { + role: 'user', + content: '"I need to solve the equation `3x + 11 = 14`. Can you help me?"', + }, + ], + }); + + let threadId = thread.id; + console.log('Created thread with Id: ' + threadId); + + const run = await openai.beta.threads.runs.create(thread.id, { + assistant_id: assistantId, + additional_instructions: 'Please address the user as Jane Doe. The user has a premium account.', + }); + + console.log('Created run with Id: ' + run.id); + + while (true) { + const result = await openai.beta.threads.runs.retrieve(thread.id, run.id); + if (result.status == 'completed') { + const messages = await openai.beta.threads.messages.list(thread.id); + for (const message of messages.getPaginatedItems()) { + console.log(message); + } + break; + } else { + console.log('Waiting for completion. Current status: ' + result.status); + await sleep(5000); + } + } +} + +main(); diff --git a/src/index.ts b/src/index.ts index 80bf95b0d..7b3033fa9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -285,6 +285,7 @@ export namespace OpenAI { export import Beta = API.Beta; + export import ErrorObject = API.ErrorObject; export import FunctionDefinition = API.FunctionDefinition; export import FunctionParameters = API.FunctionParameters; } diff --git a/src/lib/AbstractAssistantStreamRunner.ts b/src/lib/AbstractAssistantStreamRunner.ts new file mode 100644 index 000000000..b600f0df3 --- /dev/null +++ b/src/lib/AbstractAssistantStreamRunner.ts @@ -0,0 +1,340 @@ +import * as Core from 'openai/core'; +import { APIUserAbortError, OpenAIError } from 'openai/error'; +import { Run, RunSubmitToolOutputsParamsBase } from 'openai/resources/beta/threads/runs/runs'; +import { RunCreateParamsBase, Runs } from 'openai/resources/beta/threads/runs/runs'; +import { ThreadCreateAndRunParamsBase, Threads } from 'openai/resources/beta/threads/threads'; + +export abstract class AbstractAssistantStreamRunner< + Events extends CustomEvents = AbstractAssistantRunnerEvents, +> { + controller: AbortController = new AbortController(); + + #connectedPromise: Promise; + #resolveConnectedPromise: () => void = () => {}; + #rejectConnectedPromise: (error: OpenAIError) => void = () => {}; + + #endPromise: Promise; + #resolveEndPromise: () => void = () => {}; + #rejectEndPromise: (error: OpenAIError) => void = () => {}; + + #listeners: { [Event in keyof Events]?: ListenersForEvent } = {}; + + #ended = false; + #errored = false; + #aborted = false; + #catchingPromiseCreated = false; + + constructor() { + this.#connectedPromise = new Promise((resolve, reject) => { + this.#resolveConnectedPromise = resolve; + this.#rejectConnectedPromise = reject; + }); + + this.#endPromise = new Promise((resolve, reject) => { + this.#resolveEndPromise = resolve; + this.#rejectEndPromise = reject; + }); + + // Don't let these promises cause unhandled rejection errors. + // we will manually cause an unhandled rejection error later + // if the user hasn't registered any error listener or called + // any promise-returning method. + this.#connectedPromise.catch(() => {}); + this.#endPromise.catch(() => {}); + } + + protected _run(executor: () => Promise) { + // Unfortunately if we call `executor()` immediately we get runtime errors about + // references to `this` before the `super()` constructor call returns. + setTimeout(() => { + executor().then(() => { + // this._emitFinal(); + this._emit('end'); + }, this.#handleError); + }, 0); + } + + protected _addRun(run: Run): Run { + return run; + } + + protected _connected() { + if (this.ended) return; + this.#resolveConnectedPromise(); + this._emit('connect'); + } + + get ended(): boolean { + return this.#ended; + } + + get errored(): boolean { + return this.#errored; + } + + get aborted(): boolean { + return this.#aborted; + } + + abort() { + this.controller.abort(); + } + + /** + * Adds the listener function to the end of the listeners array for the event. + * No checks are made to see if the listener has already been added. Multiple calls passing + * the same combination of event and listener will result in the listener being added, and + * called, multiple times. + * @returns this ChatCompletionStream, so that calls can be chained + */ + on(event: Event, listener: ListenerForEvent): this { + const listeners: ListenersForEvent = + this.#listeners[event] || (this.#listeners[event] = []); + listeners.push({ listener }); + return this; + } + + /** + * Removes the specified listener from the listener array for the event. + * off() will remove, at most, one instance of a listener from the listener array. If any single + * listener has been added multiple times to the listener array for the specified event, then + * off() must be called multiple times to remove each instance. + * @returns this ChatCompletionStream, so that calls can be chained + */ + off(event: Event, listener: ListenerForEvent): this { + const listeners = this.#listeners[event]; + if (!listeners) return this; + const index = listeners.findIndex((l) => l.listener === listener); + if (index >= 0) listeners.splice(index, 1); + return this; + } + + /** + * Adds a one-time listener function for the event. The next time the event is triggered, + * this listener is removed and then invoked. + * @returns this ChatCompletionStream, so that calls can be chained + */ + once(event: Event, listener: ListenerForEvent): this { + const listeners: ListenersForEvent = + this.#listeners[event] || (this.#listeners[event] = []); + listeners.push({ listener, once: true }); + return this; + } + + /** + * This is similar to `.once()`, but returns a Promise that resolves the next time + * the event is triggered, instead of calling a listener callback. + * @returns a Promise that resolves the next time given event is triggered, + * or rejects if an error is emitted. (If you request the 'error' event, + * returns a promise that resolves with the error). + * + * Example: + * + * const message = await stream.emitted('message') // rejects if the stream errors + */ + emitted( + event: Event, + ): Promise< + EventParameters extends [infer Param] ? Param + : EventParameters extends [] ? void + : EventParameters + > { + return new Promise((resolve, reject) => { + this.#catchingPromiseCreated = true; + if (event !== 'error') this.once('error', reject); + this.once(event, resolve as any); + }); + } + + async done(): Promise { + this.#catchingPromiseCreated = true; + await this.#endPromise; + } + + #handleError = (error: unknown) => { + this.#errored = true; + if (error instanceof Error && error.name === 'AbortError') { + error = new APIUserAbortError(); + } + if (error instanceof APIUserAbortError) { + this.#aborted = true; + return this._emit('abort', error); + } + if (error instanceof OpenAIError) { + return this._emit('error', error); + } + if (error instanceof Error) { + const openAIError: OpenAIError = new OpenAIError(error.message); + // @ts-ignore + openAIError.cause = error; + return this._emit('error', openAIError); + } + return this._emit('error', new OpenAIError(String(error))); + }; + + protected _emit(event: Event, ...args: EventParameters) { + // make sure we don't emit any events after end + if (this.#ended) { + return; + } + + if (event === 'end') { + this.#ended = true; + this.#resolveEndPromise(); + } + + const listeners: ListenersForEvent | undefined = this.#listeners[event]; + if (listeners) { + this.#listeners[event] = listeners.filter((l) => !l.once) as any; + listeners.forEach(({ listener }: any) => listener(...args)); + } + + if (event === 'abort') { + const error = args[0] as APIUserAbortError; + if (!this.#catchingPromiseCreated && !listeners?.length) { + Promise.reject(error); + } + this.#rejectConnectedPromise(error); + this.#rejectEndPromise(error); + this._emit('end'); + return; + } + + if (event === 'error') { + // NOTE: _emit('error', error) should only be called from #handleError(). + + const error = args[0] as OpenAIError; + if (!this.#catchingPromiseCreated && !listeners?.length) { + // Trigger an unhandled rejection if the user hasn't registered any error handlers. + // If you are seeing stack traces here, make sure to handle errors via either: + // - runner.on('error', () => ...) + // - await runner.done() + // - await runner.finalChatCompletion() + // - etc. + Promise.reject(error); + } + this.#rejectConnectedPromise(error); + this.#rejectEndPromise(error); + this._emit('end'); + } + } + + protected async _threadAssistantStream( + body: ThreadCreateAndRunParamsBase, + thread: Threads, + options?: Core.RequestOptions, + ): Promise { + return await this._createThreadAssistantStream(thread, body, options); + } + + protected async _runAssistantStream( + threadId: string, + runs: Runs, + params: RunCreateParamsBase, + options?: Core.RequestOptions, + ): Promise { + return await this._createAssistantStream(runs, threadId, params, options); + } + + protected async _runToolAssistantStream( + threadId: string, + runId: string, + runs: Runs, + params: RunSubmitToolOutputsParamsBase, + options?: Core.RequestOptions, + ): Promise { + return await this._createToolAssistantStream(runs, threadId, runId, params, options); + } + + protected async _createThreadAssistantStream( + thread: Threads, + body: ThreadCreateAndRunParamsBase, + options?: Core.RequestOptions, + ): Promise { + const signal = options?.signal; + if (signal) { + if (signal.aborted) this.controller.abort(); + signal.addEventListener('abort', () => this.controller.abort()); + } + // this.#validateParams(params); + + const runResult = await thread.createAndRun( + { ...body, stream: false }, + { ...options, signal: this.controller.signal }, + ); + this._connected(); + return this._addRun(runResult as Run); + } + + protected async _createToolAssistantStream( + run: Runs, + threadId: string, + runId: string, + params: RunSubmitToolOutputsParamsBase, + options?: Core.RequestOptions, + ): Promise { + const signal = options?.signal; + if (signal) { + if (signal.aborted) this.controller.abort(); + signal.addEventListener('abort', () => this.controller.abort()); + } + + const runResult = await run.submitToolOutputs( + threadId, + runId, + { ...params, stream: false }, + { ...options, signal: this.controller.signal }, + ); + this._connected(); + return this._addRun(runResult as Run); + } + + protected async _createAssistantStream( + run: Runs, + threadId: string, + params: RunCreateParamsBase, + options?: Core.RequestOptions, + ): Promise { + const signal = options?.signal; + if (signal) { + if (signal.aborted) this.controller.abort(); + signal.addEventListener('abort', () => this.controller.abort()); + } + // this.#validateParams(params); + + const runResult = await run.create( + threadId, + { ...params, stream: false }, + { ...options, signal: this.controller.signal }, + ); + this._connected(); + return this._addRun(runResult as Run); + } +} + +type CustomEvents = { + [k in Event]: k extends keyof AbstractAssistantRunnerEvents ? AbstractAssistantRunnerEvents[k] + : (...args: any[]) => void; +}; + +type ListenerForEvent, Event extends keyof Events> = Event extends ( + keyof AbstractAssistantRunnerEvents +) ? + AbstractAssistantRunnerEvents[Event] +: Events[Event]; + +type ListenersForEvent, Event extends keyof Events> = Array<{ + listener: ListenerForEvent; + once?: boolean; +}>; +type EventParameters, Event extends keyof Events> = Parameters< + ListenerForEvent +>; + +export interface AbstractAssistantRunnerEvents { + connect: () => void; + run: (run: Run) => void; + error: (error: OpenAIError) => void; + abort: (error: APIUserAbortError) => void; + end: () => void; +} diff --git a/src/lib/AssistantStream.ts b/src/lib/AssistantStream.ts new file mode 100644 index 000000000..d70cb7358 --- /dev/null +++ b/src/lib/AssistantStream.ts @@ -0,0 +1,698 @@ +import { + TextContentBlock, + ImageFileContentBlock, + Message, + MessageContentDelta, + Text, + ImageFile, + TextDelta, + Messages, +} from 'openai/resources/beta/threads/messages/messages'; +import * as Core from 'openai/core'; +import { RequestOptions } from 'openai/core'; +import { + Run, + RunCreateParamsBase, + RunCreateParamsStreaming, + Runs, + RunSubmitToolOutputsParamsBase, + RunSubmitToolOutputsParamsStreaming, +} from 'openai/resources/beta/threads/runs/runs'; +import { + AbstractAssistantRunnerEvents, + AbstractAssistantStreamRunner, +} from './AbstractAssistantStreamRunner'; +import { type ReadableStream } from 'openai/_shims/index'; +import { Stream } from 'openai/streaming'; +import { APIUserAbortError, OpenAIError } from 'openai/error'; +import { + AssistantStreamEvent, + MessageStreamEvent, + RunStepStreamEvent, + RunStreamEvent, +} from 'openai/resources/beta/assistants/assistants'; +import { RunStep, RunStepDelta, ToolCall, ToolCallDelta } from 'openai/resources/beta/threads/runs/steps'; +import { ThreadCreateAndRunParamsBase, Threads } from 'openai/resources/beta/threads/threads'; +import MessageDelta = Messages.MessageDelta; + +export interface AssistantStreamEvents extends AbstractAssistantRunnerEvents { + //New event structure + messageCreated: (message: Message) => void; + messageDelta: (message: MessageDelta, snapshot: Message) => void; + messageDone: (message: Message) => void; + + runStepCreated: (runStep: RunStep) => void; + runStepDelta: (delta: RunStepDelta, snapshot: Runs.RunStep) => void; + runStepDone: (runStep: Runs.RunStep, snapshot: Runs.RunStep) => void; + + toolCallCreated: (toolCall: ToolCall) => void; + toolCallDelta: (delta: ToolCallDelta, snapshot: ToolCall) => void; + toolCallDone: (toolCall: ToolCall) => void; + + textCreated: (content: Text) => void; + textDelta: (delta: TextDelta, snapshot: Text) => void; + textDone: (content: Text, snapshot: Message) => void; + + //No created or delta as this is not streamed + imageFileDone: (content: ImageFile, snapshot: Message) => void; + + end: () => void; + + event: (event: AssistantStreamEvent) => void; +} + +export type ThreadCreateAndRunParamsBaseStream = Omit & { + stream?: true; +}; + +export type RunCreateParamsBaseStream = Omit & { + stream?: true; +}; + +export type RunSubmitToolOutputsParamsStream = Omit & { + stream?: true; +}; + +export class AssistantStream + extends AbstractAssistantStreamRunner + implements AsyncIterable +{ + //Track all events in a single list for reference + #events: AssistantStreamEvent[] = []; + + //Used to accumulate deltas + //We are accumulating many types so the value here is not strict + #runStepSnapshots: { [id: string]: Runs.RunStep } = {}; + #messageSnapshots: { [id: string]: Message } = {}; + #messageSnapshot: Message | undefined; + #finalRun: Run | undefined; + #currentContentIndex: number | undefined; + #currentContent: TextContentBlock | ImageFileContentBlock | undefined; + #currentToolCallIndex: number | undefined; + #currentToolCall: ToolCall | undefined; + + //For current snapshot methods + #currentEvent: AssistantStreamEvent | undefined; + #currentRunSnapshot: Run | undefined; + #currentRunStepSnapshot: Runs.RunStep | undefined; + + [Symbol.asyncIterator](): AsyncIterator { + const pushQueue: AssistantStreamEvent[] = []; + const readQueue: { + resolve: (chunk: AssistantStreamEvent | undefined) => void; + reject: (err: unknown) => void; + }[] = []; + let done = false; + + //Catch all for passing along all events + this.on('event', (event) => { + const reader = readQueue.shift(); + if (reader) { + reader.resolve(event); + } else { + pushQueue.push(event); + } + }); + + this.on('end', () => { + done = true; + for (const reader of readQueue) { + reader.resolve(undefined); + } + readQueue.length = 0; + }); + + this.on('abort', (err) => { + done = true; + for (const reader of readQueue) { + reader.reject(err); + } + readQueue.length = 0; + }); + + this.on('error', (err) => { + done = true; + for (const reader of readQueue) { + reader.reject(err); + } + readQueue.length = 0; + }); + + return { + next: async (): Promise> => { + if (!pushQueue.length) { + if (done) { + return { value: undefined, done: true }; + } + return new Promise((resolve, reject) => + readQueue.push({ resolve, reject }), + ).then((chunk) => (chunk ? { value: chunk, done: false } : { value: undefined, done: true })); + } + const chunk = pushQueue.shift()!; + return { value: chunk, done: false }; + }, + return: async () => { + this.abort(); + return { value: undefined, done: true }; + }, + }; + } + + toReadableStream(): ReadableStream { + const stream = new Stream(this[Symbol.asyncIterator].bind(this), this.controller); + return stream.toReadableStream(); + } + + static createToolAssistantStream( + threadId: string, + runId: string, + runs: Runs, + body: RunSubmitToolOutputsParamsStream, + options: RequestOptions | undefined, + ) { + const runner = new AssistantStream(); + runner._run(() => + runner._runToolAssistantStream(threadId, runId, runs, body, { + ...options, + headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'stream' }, + }), + ); + return runner; + } + + protected override async _createToolAssistantStream( + run: Runs, + threadId: string, + runId: string, + params: RunSubmitToolOutputsParamsStream, + options?: Core.RequestOptions, + ): Promise { + const signal = options?.signal; + if (signal) { + if (signal.aborted) this.controller.abort(); + signal.addEventListener('abort', () => this.controller.abort()); + } + + const body: RunSubmitToolOutputsParamsStreaming = { ...params, stream: true }; + const stream = await run.submitToolOutputs(threadId, runId, body, { + ...options, + signal: this.controller.signal, + }); + + this._connected(); + + for await (const event of stream) { + this.#addEvent(event); + } + if (stream.controller.signal?.aborted) { + throw new APIUserAbortError(); + } + + return this._addRun(this.#endRequest()); + } + + static createThreadAssistantStream( + body: ThreadCreateAndRunParamsBaseStream, + thread: Threads, + options?: RequestOptions, + ) { + const runner = new AssistantStream(); + runner._run(() => + runner._threadAssistantStream(body, thread, { + ...options, + headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'stream' }, + }), + ); + return runner; + } + + static createAssistantStream( + threadId: string, + runs: Runs, + params: RunCreateParamsBaseStream, + options?: RequestOptions, + ) { + const runner = new AssistantStream(); + runner._run(() => + runner._runAssistantStream(threadId, runs, params, { + ...options, + headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'stream' }, + }), + ); + return runner; + } + + currentEvent(): AssistantStreamEvent | undefined { + return this.#currentEvent; + } + + currentRun(): Run | undefined { + return this.#currentRunSnapshot; + } + + currentMessageSnapshot(): Message | undefined { + return this.#messageSnapshot; + } + + currentRunStepSnapshot(): Runs.RunStep | undefined { + return this.#currentRunStepSnapshot; + } + + async finalRunSteps(): Promise { + await this.done(); + + return Object.values(this.#runStepSnapshots); + } + + async finalMessages(): Promise { + await this.done(); + + return Object.values(this.#messageSnapshots); + } + + async finalRun(): Promise { + await this.done(); + if (!this.#finalRun) throw Error('Final run was not received.'); + + return this.#finalRun; + } + + protected override async _createThreadAssistantStream( + thread: Threads, + params: ThreadCreateAndRunParamsBase, + options?: Core.RequestOptions, + ): Promise { + const signal = options?.signal; + if (signal) { + if (signal.aborted) this.controller.abort(); + signal.addEventListener('abort', () => this.controller.abort()); + } + + const body: RunCreateParamsStreaming = { ...params, stream: true }; + const stream = await thread.createAndRun(body, { ...options, signal: this.controller.signal }); + + this._connected(); + + for await (const event of stream) { + this.#addEvent(event); + } + if (stream.controller.signal?.aborted) { + throw new APIUserAbortError(); + } + + return this._addRun(this.#endRequest()); + } + + protected override async _createAssistantStream( + run: Runs, + threadId: string, + params: RunCreateParamsBase, + options?: Core.RequestOptions, + ): Promise { + const signal = options?.signal; + if (signal) { + if (signal.aborted) this.controller.abort(); + signal.addEventListener('abort', () => this.controller.abort()); + } + + const body: RunCreateParamsStreaming = { ...params, stream: true }; + const stream = await run.create(threadId, body, { ...options, signal: this.controller.signal }); + + this._connected(); + + for await (const event of stream) { + this.#addEvent(event); + } + if (stream.controller.signal?.aborted) { + throw new APIUserAbortError(); + } + + return this._addRun(this.#endRequest()); + } + + #addEvent(event: AssistantStreamEvent) { + if (this.ended) return; + + this.#currentEvent = event; + + this.#handleEvent(event); + + switch (event.event) { + case 'thread.created': + //No action on this event. + break; + + case 'thread.run.created': + case 'thread.run.queued': + case 'thread.run.in_progress': + case 'thread.run.requires_action': + case 'thread.run.completed': + case 'thread.run.failed': + case 'thread.run.cancelling': + case 'thread.run.cancelled': + case 'thread.run.expired': + this.#handleRun(event); + break; + + case 'thread.run.step.created': + case 'thread.run.step.in_progress': + case 'thread.run.step.delta': + case 'thread.run.step.completed': + case 'thread.run.step.failed': + case 'thread.run.step.cancelled': + case 'thread.run.step.expired': + this.#handleRunStep(event); + break; + + case 'thread.message.created': + case 'thread.message.in_progress': + case 'thread.message.delta': + case 'thread.message.completed': + case 'thread.message.incomplete': + this.#handleMessage(event); + break; + + case 'error': + //This is included for completeness, but errors are processed in the SSE event processing so this should not occur + throw new Error( + 'Encountered an error event in event processing - errors should be processed earlier', + ); + } + } + + #endRequest(): Run { + if (this.ended) { + throw new OpenAIError(`stream has ended, this shouldn't happen`); + } + + if (!this.#finalRun) throw Error('Final run has been been received'); + + return this.#finalRun; + } + + #handleMessage(event: MessageStreamEvent) { + const [accumulatedMessage, newContent] = this.#accumulateMessage(event, this.#messageSnapshot); + this.#messageSnapshot = accumulatedMessage; + this.#messageSnapshots[accumulatedMessage.id] = accumulatedMessage; + + for (const content of newContent) { + const snapshotContent = accumulatedMessage.content[content.index]; + if (snapshotContent?.type == 'text') { + this._emit('textCreated', snapshotContent.text); + } + } + + switch (event.event) { + case 'thread.message.created': + this._emit('messageCreated', event.data); + break; + + case 'thread.message.in_progress': + break; + + case 'thread.message.delta': + this._emit('messageDelta', event.data.delta, accumulatedMessage); + + if (event.data.delta.content) { + for (const content of event.data.delta.content) { + //If it is text delta, emit a text delta event + if (content.type == 'text' && content.text) { + let textDelta = content.text; + let snapshot = accumulatedMessage.content[content.index]; + if (snapshot && snapshot.type == 'text') { + this._emit('textDelta', textDelta, snapshot.text); + } else { + throw Error('The snapshot associated with this text delta is not text or missing'); + } + } + + if (content.index != this.#currentContentIndex) { + //See if we have in progress content + if (this.#currentContent) { + switch (this.#currentContent.type) { + case 'text': + this._emit('textDone', this.#currentContent.text, this.#messageSnapshot); + break; + case 'image_file': + this._emit('imageFileDone', this.#currentContent.image_file, this.#messageSnapshot); + break; + } + } + + this.#currentContentIndex = content.index; + } + + this.#currentContent = accumulatedMessage.content[content.index]; + } + } + + break; + + case 'thread.message.completed': + case 'thread.message.incomplete': + //We emit the latest content we were working on on completion (including incomplete) + if (this.#currentContentIndex !== undefined) { + const currentContent = event.data.content[this.#currentContentIndex]; + if (currentContent) { + switch (currentContent.type) { + case 'image_file': + this._emit('imageFileDone', currentContent.image_file, this.#messageSnapshot); + break; + case 'text': + this._emit('textDone', currentContent.text, this.#messageSnapshot); + break; + } + } + } + + if (this.#messageSnapshot) { + this._emit('messageDone', event.data); + } + + this.#messageSnapshot = undefined; + } + } + + #handleRunStep(event: RunStepStreamEvent) { + const accumulatedRunStep = this.#accumulateRunStep(event); + this.#currentRunStepSnapshot = accumulatedRunStep; + + switch (event.event) { + case 'thread.run.step.created': + this._emit('runStepCreated', event.data); + break; + case 'thread.run.step.delta': + const delta = event.data.delta; + if ( + delta.step_details && + delta.step_details.type == 'tool_calls' && + delta.step_details.tool_calls && + accumulatedRunStep.step_details.type == 'tool_calls' + ) { + for (const toolCall of delta.step_details.tool_calls) { + if (toolCall.index == this.#currentToolCallIndex) { + this._emit( + 'toolCallDelta', + toolCall, + accumulatedRunStep.step_details.tool_calls[toolCall.index] as ToolCall, + ); + } else { + if (this.#currentToolCall) { + this._emit('toolCallDone', this.#currentToolCall); + } + + this.#currentToolCallIndex = toolCall.index; + this.#currentToolCall = accumulatedRunStep.step_details.tool_calls[toolCall.index]; + if (this.#currentToolCall) this._emit('toolCallCreated', this.#currentToolCall); + } + } + } + + this._emit('runStepDelta', event.data.delta, accumulatedRunStep); + break; + case 'thread.run.step.completed': + case 'thread.run.step.failed': + case 'thread.run.step.cancelled': + case 'thread.run.step.expired': + this.#currentRunStepSnapshot = undefined; + const details = event.data.step_details; + if (details.type == 'tool_calls') { + if (this.#currentToolCall) { + this._emit('toolCallDone', this.#currentToolCall as ToolCall); + this.#currentToolCall = undefined; + } + } + this._emit('runStepDone', event.data, accumulatedRunStep); + break; + case 'thread.run.step.in_progress': + break; + } + } + + #handleEvent(event: AssistantStreamEvent) { + this.#events.push(event); + this._emit('event', event); + } + + #accumulateRunStep(event: RunStepStreamEvent): Runs.RunStep { + switch (event.event) { + case 'thread.run.step.created': + this.#runStepSnapshots[event.data.id] = event.data; + return event.data; + + case 'thread.run.step.delta': + let snapshot = this.#runStepSnapshots[event.data.id] as Runs.RunStep; + if (!snapshot) { + throw Error('Received a RunStepDelta before creation of a snapshot'); + } + + let data = event.data; + + if (data.delta) { + const accumulated = AssistantStream.accumulateDelta(snapshot, data.delta) as Runs.RunStep; + this.#runStepSnapshots[event.data.id] = accumulated; + } + + return this.#runStepSnapshots[event.data.id] as Runs.RunStep; + + case 'thread.run.step.completed': + case 'thread.run.step.failed': + case 'thread.run.step.cancelled': + case 'thread.run.step.expired': + case 'thread.run.step.in_progress': + this.#runStepSnapshots[event.data.id] = event.data; + break; + } + + if (this.#runStepSnapshots[event.data.id]) return this.#runStepSnapshots[event.data.id] as Runs.RunStep; + throw new Error('No snapshot available'); + } + + #accumulateMessage( + event: AssistantStreamEvent, + snapshot: Message | undefined, + ): [Message, MessageContentDelta[]] { + let newContent: MessageContentDelta[] = []; + + switch (event.event) { + case 'thread.message.created': + //On creation the snapshot is just the initial message + return [event.data, newContent]; + + case 'thread.message.delta': + if (!snapshot) { + throw Error( + 'Received a delta with no existing snapshot (there should be one from message creation)', + ); + } + + let data = event.data; + + //If this delta does not have content, nothing to process + if (data.delta.content) { + for (const contentElement of data.delta.content) { + if (contentElement.index in snapshot.content) { + let currentContent = snapshot.content[contentElement.index]; + snapshot.content[contentElement.index] = this.#accumulateContent( + contentElement, + currentContent, + ); + } else { + snapshot.content[contentElement.index] = contentElement as + | TextContentBlock + | ImageFileContentBlock; + //This is a new element + newContent.push(contentElement); + } + } + } + + return [snapshot, newContent]; + + case 'thread.message.in_progress': + case 'thread.message.completed': + case 'thread.message.incomplete': + //No changes on other thread events + if (snapshot) { + return [snapshot, newContent]; + } else { + throw Error('Received thread message event with no existing snapshot'); + } + } + throw Error('Tried to accumulate a non-message event'); + } + + #accumulateContent( + contentElement: MessageContentDelta, + currentContent: TextContentBlock | ImageFileContentBlock | undefined, + ): TextContentBlock | ImageFileContentBlock { + return AssistantStream.accumulateDelta(currentContent as unknown as Record, contentElement) as + | TextContentBlock + | ImageFileContentBlock; + } + + static accumulateDelta(acc: Record, delta: Record): Record { + for (const [key, deltaValue] of Object.entries(delta)) { + if (!acc.hasOwnProperty(key)) { + acc[key] = deltaValue; + continue; + } + + let accValue = acc[key]; + if (accValue === null || accValue === undefined) { + acc[key] = deltaValue; + continue; + } + + // We don't accumulate these special properties + if (key === 'index' || key === 'type') { + acc[key] = deltaValue; + continue; + } + + // Type-specific accumulation logic + if (typeof accValue === 'string' && typeof deltaValue === 'string') { + accValue += deltaValue; + } else if (typeof accValue === 'number' && typeof deltaValue === 'number') { + accValue += deltaValue; + } else if (Core.isObj(accValue) && Core.isObj(deltaValue)) { + accValue = this.accumulateDelta(accValue as Record, deltaValue as Record); + } else if (Array.isArray(accValue) && Array.isArray(deltaValue)) { + if (accValue.every((x) => typeof x === 'string' || typeof x === 'number')) { + accValue.push(...deltaValue); // Use spread syntax for efficient addition + continue; + } + } else { + throw Error(`Unhandled record type: ${key}, deltaValue: ${deltaValue}, accValue: ${accValue}`); + } + acc[key] = accValue; + } + + return acc; + } + + #handleRun(event: RunStreamEvent) { + this.#currentRunSnapshot = event.data; + switch (event.event) { + case 'thread.run.created': + break; + case 'thread.run.queued': + break; + case 'thread.run.in_progress': + break; + case 'thread.run.requires_action': + case 'thread.run.cancelled': + case 'thread.run.failed': + case 'thread.run.completed': + case 'thread.run.expired': + this.#finalRun = event.data; + if (this.#currentToolCall) { + this._emit('toolCallDone', this.#currentToolCall); + this.#currentToolCall = undefined; + } + break; + case 'thread.run.cancelling': + break; + } + } +} diff --git a/src/resources/beta/assistants/assistants.ts b/src/resources/beta/assistants/assistants.ts index 08abb2c91..b4e92fd92 100644 --- a/src/resources/beta/assistants/assistants.ts +++ b/src/resources/beta/assistants/assistants.ts @@ -6,6 +6,10 @@ import { isRequestOptions } from 'openai/core'; import * as AssistantsAPI from 'openai/resources/beta/assistants/assistants'; import * as Shared from 'openai/resources/shared'; import * as FilesAPI from 'openai/resources/beta/assistants/files'; +import * as ThreadsAPI from 'openai/resources/beta/threads/threads'; +import * as MessagesAPI from 'openai/resources/beta/threads/messages/messages'; +import * as RunsAPI from 'openai/resources/beta/threads/runs/runs'; +import * as StepsAPI from 'openai/resources/beta/threads/runs/steps'; import { CursorPage, type CursorPageParams } from 'openai/pagination'; export class Assistants extends APIResource { @@ -145,40 +149,777 @@ export interface Assistant { * A list of tool enabled on the assistant. There can be a maximum of 128 tools per * assistant. Tools can be of types `code_interpreter`, `retrieval`, or `function`. */ - tools: Array; + tools: Array; } -export namespace Assistant { - export interface CodeInterpreter { +export interface AssistantDeleted { + id: string; + + deleted: boolean; + + object: 'assistant.deleted'; +} + +/** + * Represents an event emitted when streaming a Run. + * + * Each event in a server-sent events stream has an `event` and `data` property: + * + * ``` + * event: thread.created + * data: {"id": "thread_123", "object": "thread", ...} + * ``` + * + * We emit events whenever a new object is created, transitions to a new state, or + * is being streamed in parts (deltas). For example, we emit `thread.run.created` + * when a new run is created, `thread.run.completed` when a run completes, and so + * on. When an Assistant chooses to create a message during a run, we emit a + * `thread.message.created event`, a `thread.message.in_progress` event, many + * `thread.message.delta` events, and finally a `thread.message.completed` event. + * + * We may add additional events over time, so we recommend handling unknown events + * gracefully in your code. See the + * [Assistants API quickstart](https://platform.openai.com/docs/assistants/overview) + * to learn how to integrate the Assistants API with streaming. + */ +export type AssistantStreamEvent = + | AssistantStreamEvent.ThreadCreated + | AssistantStreamEvent.ThreadRunCreated + | AssistantStreamEvent.ThreadRunQueued + | AssistantStreamEvent.ThreadRunInProgress + | AssistantStreamEvent.ThreadRunRequiresAction + | AssistantStreamEvent.ThreadRunCompleted + | AssistantStreamEvent.ThreadRunFailed + | AssistantStreamEvent.ThreadRunCancelling + | AssistantStreamEvent.ThreadRunCancelled + | AssistantStreamEvent.ThreadRunExpired + | AssistantStreamEvent.ThreadRunStepCreated + | AssistantStreamEvent.ThreadRunStepInProgress + | AssistantStreamEvent.ThreadRunStepDelta + | AssistantStreamEvent.ThreadRunStepCompleted + | AssistantStreamEvent.ThreadRunStepFailed + | AssistantStreamEvent.ThreadRunStepCancelled + | AssistantStreamEvent.ThreadRunStepExpired + | AssistantStreamEvent.ThreadMessageCreated + | AssistantStreamEvent.ThreadMessageInProgress + | AssistantStreamEvent.ThreadMessageDelta + | AssistantStreamEvent.ThreadMessageCompleted + | AssistantStreamEvent.ThreadMessageIncomplete + | AssistantStreamEvent.ErrorEvent; + +export namespace AssistantStreamEvent { + /** + * Occurs when a new + * [thread](https://platform.openai.com/docs/api-reference/threads/object) is + * created. + */ + export interface ThreadCreated { + /** + * Represents a thread that contains + * [messages](https://platform.openai.com/docs/api-reference/messages). + */ + data: ThreadsAPI.Thread; + + event: 'thread.created'; + } + + /** + * Occurs when a new + * [run](https://platform.openai.com/docs/api-reference/runs/object) is created. + */ + export interface ThreadRunCreated { + /** + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: RunsAPI.Run; + + event: 'thread.run.created'; + } + + /** + * Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) + * moves to a `queued` status. + */ + export interface ThreadRunQueued { + /** + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: RunsAPI.Run; + + event: 'thread.run.queued'; + } + + /** + * Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) + * moves to an `in_progress` status. + */ + export interface ThreadRunInProgress { + /** + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: RunsAPI.Run; + + event: 'thread.run.in_progress'; + } + + /** + * Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) + * moves to a `requires_action` status. + */ + export interface ThreadRunRequiresAction { + /** + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: RunsAPI.Run; + + event: 'thread.run.requires_action'; + } + + /** + * Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) + * is completed. + */ + export interface ThreadRunCompleted { + /** + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: RunsAPI.Run; + + event: 'thread.run.completed'; + } + + /** + * Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) + * fails. + */ + export interface ThreadRunFailed { + /** + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: RunsAPI.Run; + + event: 'thread.run.failed'; + } + + /** + * Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) + * moves to a `cancelling` status. + */ + export interface ThreadRunCancelling { + /** + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: RunsAPI.Run; + + event: 'thread.run.cancelling'; + } + + /** + * Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) + * is cancelled. + */ + export interface ThreadRunCancelled { /** - * The type of tool being defined: `code_interpreter` + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). */ - type: 'code_interpreter'; + data: RunsAPI.Run; + + event: 'thread.run.cancelled'; } - export interface Retrieval { + /** + * Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) + * expires. + */ + export interface ThreadRunExpired { /** - * The type of tool being defined: `retrieval` + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). */ - type: 'retrieval'; + data: RunsAPI.Run; + + event: 'thread.run.expired'; } - export interface Function { - function: Shared.FunctionDefinition; + /** + * Occurs when a + * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) is + * created. + */ + export interface ThreadRunStepCreated { + /** + * Represents a step in execution of a run. + */ + data: StepsAPI.RunStep; + + event: 'thread.run.step.created'; + } + /** + * Occurs when a + * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) + * moves to an `in_progress` state. + */ + export interface ThreadRunStepInProgress { /** - * The type of tool being defined: `function` + * Represents a step in execution of a run. */ - type: 'function'; + data: StepsAPI.RunStep; + + event: 'thread.run.step.in_progress'; + } + + /** + * Occurs when parts of a + * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) are + * being streamed. + */ + export interface ThreadRunStepDelta { + /** + * Represents a run step delta i.e. any changed fields on a run step during + * streaming. + */ + data: StepsAPI.RunStepDeltaEvent; + + event: 'thread.run.step.delta'; + } + + /** + * Occurs when a + * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) is + * completed. + */ + export interface ThreadRunStepCompleted { + /** + * Represents a step in execution of a run. + */ + data: StepsAPI.RunStep; + + event: 'thread.run.step.completed'; + } + + /** + * Occurs when a + * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) + * fails. + */ + export interface ThreadRunStepFailed { + /** + * Represents a step in execution of a run. + */ + data: StepsAPI.RunStep; + + event: 'thread.run.step.failed'; + } + + /** + * Occurs when a + * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) is + * cancelled. + */ + export interface ThreadRunStepCancelled { + /** + * Represents a step in execution of a run. + */ + data: StepsAPI.RunStep; + + event: 'thread.run.step.cancelled'; + } + + /** + * Occurs when a + * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) + * expires. + */ + export interface ThreadRunStepExpired { + /** + * Represents a step in execution of a run. + */ + data: StepsAPI.RunStep; + + event: 'thread.run.step.expired'; + } + + /** + * Occurs when a + * [message](https://platform.openai.com/docs/api-reference/messages/object) is + * created. + */ + export interface ThreadMessageCreated { + /** + * Represents a message within a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: MessagesAPI.Message; + + event: 'thread.message.created'; + } + + /** + * Occurs when a + * [message](https://platform.openai.com/docs/api-reference/messages/object) moves + * to an `in_progress` state. + */ + export interface ThreadMessageInProgress { + /** + * Represents a message within a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: MessagesAPI.Message; + + event: 'thread.message.in_progress'; + } + + /** + * Occurs when parts of a + * [Message](https://platform.openai.com/docs/api-reference/messages/object) are + * being streamed. + */ + export interface ThreadMessageDelta { + /** + * Represents a message delta i.e. any changed fields on a message during + * streaming. + */ + data: MessagesAPI.MessageDeltaEvent; + + event: 'thread.message.delta'; + } + + /** + * Occurs when a + * [message](https://platform.openai.com/docs/api-reference/messages/object) is + * completed. + */ + export interface ThreadMessageCompleted { + /** + * Represents a message within a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: MessagesAPI.Message; + + event: 'thread.message.completed'; + } + + /** + * Occurs when a + * [message](https://platform.openai.com/docs/api-reference/messages/object) ends + * before it is completed. + */ + export interface ThreadMessageIncomplete { + /** + * Represents a message within a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: MessagesAPI.Message; + + event: 'thread.message.incomplete'; + } + + /** + * Occurs when an + * [error](https://platform.openai.com/docs/guides/error-codes/api-errors) occurs. + * This can happen due to an internal server error or a timeout. + */ + export interface ErrorEvent { + data: Shared.ErrorObject; + + event: 'error'; } } -export interface AssistantDeleted { - id: string; +export type AssistantTool = CodeInterpreterTool | RetrievalTool | FunctionTool; - deleted: boolean; +export interface CodeInterpreterTool { + /** + * The type of tool being defined: `code_interpreter` + */ + type: 'code_interpreter'; +} - object: 'assistant.deleted'; +export interface FunctionTool { + function: Shared.FunctionDefinition; + + /** + * The type of tool being defined: `function` + */ + type: 'function'; +} + +/** + * Occurs when a + * [message](https://platform.openai.com/docs/api-reference/messages/object) is + * created. + */ +export type MessageStreamEvent = + | MessageStreamEvent.ThreadMessageCreated + | MessageStreamEvent.ThreadMessageInProgress + | MessageStreamEvent.ThreadMessageDelta + | MessageStreamEvent.ThreadMessageCompleted + | MessageStreamEvent.ThreadMessageIncomplete; + +export namespace MessageStreamEvent { + /** + * Occurs when a + * [message](https://platform.openai.com/docs/api-reference/messages/object) is + * created. + */ + export interface ThreadMessageCreated { + /** + * Represents a message within a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: MessagesAPI.Message; + + event: 'thread.message.created'; + } + + /** + * Occurs when a + * [message](https://platform.openai.com/docs/api-reference/messages/object) moves + * to an `in_progress` state. + */ + export interface ThreadMessageInProgress { + /** + * Represents a message within a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: MessagesAPI.Message; + + event: 'thread.message.in_progress'; + } + + /** + * Occurs when parts of a + * [Message](https://platform.openai.com/docs/api-reference/messages/object) are + * being streamed. + */ + export interface ThreadMessageDelta { + /** + * Represents a message delta i.e. any changed fields on a message during + * streaming. + */ + data: MessagesAPI.MessageDeltaEvent; + + event: 'thread.message.delta'; + } + + /** + * Occurs when a + * [message](https://platform.openai.com/docs/api-reference/messages/object) is + * completed. + */ + export interface ThreadMessageCompleted { + /** + * Represents a message within a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: MessagesAPI.Message; + + event: 'thread.message.completed'; + } + + /** + * Occurs when a + * [message](https://platform.openai.com/docs/api-reference/messages/object) ends + * before it is completed. + */ + export interface ThreadMessageIncomplete { + /** + * Represents a message within a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: MessagesAPI.Message; + + event: 'thread.message.incomplete'; + } +} + +export interface RetrievalTool { + /** + * The type of tool being defined: `retrieval` + */ + type: 'retrieval'; +} + +/** + * Occurs when a + * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) is + * created. + */ +export type RunStepStreamEvent = + | RunStepStreamEvent.ThreadRunStepCreated + | RunStepStreamEvent.ThreadRunStepInProgress + | RunStepStreamEvent.ThreadRunStepDelta + | RunStepStreamEvent.ThreadRunStepCompleted + | RunStepStreamEvent.ThreadRunStepFailed + | RunStepStreamEvent.ThreadRunStepCancelled + | RunStepStreamEvent.ThreadRunStepExpired; + +export namespace RunStepStreamEvent { + /** + * Occurs when a + * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) is + * created. + */ + export interface ThreadRunStepCreated { + /** + * Represents a step in execution of a run. + */ + data: StepsAPI.RunStep; + + event: 'thread.run.step.created'; + } + + /** + * Occurs when a + * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) + * moves to an `in_progress` state. + */ + export interface ThreadRunStepInProgress { + /** + * Represents a step in execution of a run. + */ + data: StepsAPI.RunStep; + + event: 'thread.run.step.in_progress'; + } + + /** + * Occurs when parts of a + * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) are + * being streamed. + */ + export interface ThreadRunStepDelta { + /** + * Represents a run step delta i.e. any changed fields on a run step during + * streaming. + */ + data: StepsAPI.RunStepDeltaEvent; + + event: 'thread.run.step.delta'; + } + + /** + * Occurs when a + * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) is + * completed. + */ + export interface ThreadRunStepCompleted { + /** + * Represents a step in execution of a run. + */ + data: StepsAPI.RunStep; + + event: 'thread.run.step.completed'; + } + + /** + * Occurs when a + * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) + * fails. + */ + export interface ThreadRunStepFailed { + /** + * Represents a step in execution of a run. + */ + data: StepsAPI.RunStep; + + event: 'thread.run.step.failed'; + } + + /** + * Occurs when a + * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) is + * cancelled. + */ + export interface ThreadRunStepCancelled { + /** + * Represents a step in execution of a run. + */ + data: StepsAPI.RunStep; + + event: 'thread.run.step.cancelled'; + } + + /** + * Occurs when a + * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) + * expires. + */ + export interface ThreadRunStepExpired { + /** + * Represents a step in execution of a run. + */ + data: StepsAPI.RunStep; + + event: 'thread.run.step.expired'; + } +} + +/** + * Occurs when a new + * [run](https://platform.openai.com/docs/api-reference/runs/object) is created. + */ +export type RunStreamEvent = + | RunStreamEvent.ThreadRunCreated + | RunStreamEvent.ThreadRunQueued + | RunStreamEvent.ThreadRunInProgress + | RunStreamEvent.ThreadRunRequiresAction + | RunStreamEvent.ThreadRunCompleted + | RunStreamEvent.ThreadRunFailed + | RunStreamEvent.ThreadRunCancelling + | RunStreamEvent.ThreadRunCancelled + | RunStreamEvent.ThreadRunExpired; + +export namespace RunStreamEvent { + /** + * Occurs when a new + * [run](https://platform.openai.com/docs/api-reference/runs/object) is created. + */ + export interface ThreadRunCreated { + /** + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: RunsAPI.Run; + + event: 'thread.run.created'; + } + + /** + * Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) + * moves to a `queued` status. + */ + export interface ThreadRunQueued { + /** + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: RunsAPI.Run; + + event: 'thread.run.queued'; + } + + /** + * Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) + * moves to an `in_progress` status. + */ + export interface ThreadRunInProgress { + /** + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: RunsAPI.Run; + + event: 'thread.run.in_progress'; + } + + /** + * Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) + * moves to a `requires_action` status. + */ + export interface ThreadRunRequiresAction { + /** + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: RunsAPI.Run; + + event: 'thread.run.requires_action'; + } + + /** + * Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) + * is completed. + */ + export interface ThreadRunCompleted { + /** + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: RunsAPI.Run; + + event: 'thread.run.completed'; + } + + /** + * Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) + * fails. + */ + export interface ThreadRunFailed { + /** + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: RunsAPI.Run; + + event: 'thread.run.failed'; + } + + /** + * Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) + * moves to a `cancelling` status. + */ + export interface ThreadRunCancelling { + /** + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: RunsAPI.Run; + + event: 'thread.run.cancelling'; + } + + /** + * Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) + * is cancelled. + */ + export interface ThreadRunCancelled { + /** + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: RunsAPI.Run; + + event: 'thread.run.cancelled'; + } + + /** + * Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) + * expires. + */ + export interface ThreadRunExpired { + /** + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: RunsAPI.Run; + + event: 'thread.run.expired'; + } +} + +/** + * Occurs when a new + * [thread](https://platform.openai.com/docs/api-reference/threads/object) is + * created. + */ +export interface ThreadStreamEvent { + /** + * Represents a thread that contains + * [messages](https://platform.openai.com/docs/api-reference/messages). + */ + data: ThreadsAPI.Thread; + + event: 'thread.created'; } export interface AssistantCreateParams { @@ -226,36 +967,7 @@ export interface AssistantCreateParams { * A list of tool enabled on the assistant. There can be a maximum of 128 tools per * assistant. Tools can be of types `code_interpreter`, `retrieval`, or `function`. */ - tools?: Array< - | AssistantCreateParams.AssistantToolsCode - | AssistantCreateParams.AssistantToolsRetrieval - | AssistantCreateParams.AssistantToolsFunction - >; -} - -export namespace AssistantCreateParams { - export interface AssistantToolsCode { - /** - * The type of tool being defined: `code_interpreter` - */ - type: 'code_interpreter'; - } - - export interface AssistantToolsRetrieval { - /** - * The type of tool being defined: `retrieval` - */ - type: 'retrieval'; - } - - export interface AssistantToolsFunction { - function: Shared.FunctionDefinition; - - /** - * The type of tool being defined: `function` - */ - type: 'function'; - } + tools?: Array; } export interface AssistantUpdateParams { @@ -305,36 +1017,7 @@ export interface AssistantUpdateParams { * A list of tool enabled on the assistant. There can be a maximum of 128 tools per * assistant. Tools can be of types `code_interpreter`, `retrieval`, or `function`. */ - tools?: Array< - | AssistantUpdateParams.AssistantToolsCode - | AssistantUpdateParams.AssistantToolsRetrieval - | AssistantUpdateParams.AssistantToolsFunction - >; -} - -export namespace AssistantUpdateParams { - export interface AssistantToolsCode { - /** - * The type of tool being defined: `code_interpreter` - */ - type: 'code_interpreter'; - } - - export interface AssistantToolsRetrieval { - /** - * The type of tool being defined: `retrieval` - */ - type: 'retrieval'; - } - - export interface AssistantToolsFunction { - function: Shared.FunctionDefinition; - - /** - * The type of tool being defined: `function` - */ - type: 'function'; - } + tools?: Array; } export interface AssistantListParams extends CursorPageParams { @@ -356,6 +1039,15 @@ export interface AssistantListParams extends CursorPageParams { export namespace Assistants { export import Assistant = AssistantsAPI.Assistant; export import AssistantDeleted = AssistantsAPI.AssistantDeleted; + export import AssistantStreamEvent = AssistantsAPI.AssistantStreamEvent; + export import AssistantTool = AssistantsAPI.AssistantTool; + export import CodeInterpreterTool = AssistantsAPI.CodeInterpreterTool; + export import FunctionTool = AssistantsAPI.FunctionTool; + export import MessageStreamEvent = AssistantsAPI.MessageStreamEvent; + export import RetrievalTool = AssistantsAPI.RetrievalTool; + export import RunStepStreamEvent = AssistantsAPI.RunStepStreamEvent; + export import RunStreamEvent = AssistantsAPI.RunStreamEvent; + export import ThreadStreamEvent = AssistantsAPI.ThreadStreamEvent; export import AssistantsPage = AssistantsAPI.AssistantsPage; export import AssistantCreateParams = AssistantsAPI.AssistantCreateParams; export import AssistantUpdateParams = AssistantsAPI.AssistantUpdateParams; diff --git a/src/resources/beta/assistants/index.ts b/src/resources/beta/assistants/index.ts index 5236bc8de..0ae8c9c67 100644 --- a/src/resources/beta/assistants/index.ts +++ b/src/resources/beta/assistants/index.ts @@ -3,6 +3,15 @@ export { Assistant, AssistantDeleted, + AssistantStreamEvent, + AssistantTool, + CodeInterpreterTool, + FunctionTool, + MessageStreamEvent, + RetrievalTool, + RunStepStreamEvent, + RunStreamEvent, + ThreadStreamEvent, AssistantCreateParams, AssistantUpdateParams, AssistantListParams, diff --git a/src/resources/beta/beta.ts b/src/resources/beta/beta.ts index 5fd99990d..74056ed1d 100644 --- a/src/resources/beta/beta.ts +++ b/src/resources/beta/beta.ts @@ -16,6 +16,15 @@ export namespace Beta { export import Assistants = AssistantsAPI.Assistants; export import Assistant = AssistantsAPI.Assistant; export import AssistantDeleted = AssistantsAPI.AssistantDeleted; + export import AssistantStreamEvent = AssistantsAPI.AssistantStreamEvent; + export import AssistantTool = AssistantsAPI.AssistantTool; + export import CodeInterpreterTool = AssistantsAPI.CodeInterpreterTool; + export import FunctionTool = AssistantsAPI.FunctionTool; + export import MessageStreamEvent = AssistantsAPI.MessageStreamEvent; + export import RetrievalTool = AssistantsAPI.RetrievalTool; + export import RunStepStreamEvent = AssistantsAPI.RunStepStreamEvent; + export import RunStreamEvent = AssistantsAPI.RunStreamEvent; + export import ThreadStreamEvent = AssistantsAPI.ThreadStreamEvent; export import AssistantsPage = AssistantsAPI.AssistantsPage; export import AssistantCreateParams = AssistantsAPI.AssistantCreateParams; export import AssistantUpdateParams = AssistantsAPI.AssistantUpdateParams; @@ -26,4 +35,7 @@ export namespace Beta { export import ThreadCreateParams = ThreadsAPI.ThreadCreateParams; export import ThreadUpdateParams = ThreadsAPI.ThreadUpdateParams; export import ThreadCreateAndRunParams = ThreadsAPI.ThreadCreateAndRunParams; + export import ThreadCreateAndRunParamsNonStreaming = ThreadsAPI.ThreadCreateAndRunParamsNonStreaming; + export import ThreadCreateAndRunParamsStreaming = ThreadsAPI.ThreadCreateAndRunParamsStreaming; + export import ThreadCreateAndRunStreamParams = ThreadsAPI.ThreadCreateAndRunStreamParams; } diff --git a/src/resources/beta/index.ts b/src/resources/beta/index.ts index 4ed7e84b1..d8770c29a 100644 --- a/src/resources/beta/index.ts +++ b/src/resources/beta/index.ts @@ -3,6 +3,15 @@ export { Assistant, AssistantDeleted, + AssistantStreamEvent, + AssistantTool, + CodeInterpreterTool, + FunctionTool, + MessageStreamEvent, + RetrievalTool, + RunStepStreamEvent, + RunStreamEvent, + ThreadStreamEvent, AssistantCreateParams, AssistantUpdateParams, AssistantListParams, @@ -17,5 +26,8 @@ export { ThreadCreateParams, ThreadUpdateParams, ThreadCreateAndRunParams, + ThreadCreateAndRunParamsNonStreaming, + ThreadCreateAndRunParamsStreaming, + ThreadCreateAndRunStreamParams, Threads, } from './threads/index'; diff --git a/src/resources/beta/threads/index.ts b/src/resources/beta/threads/index.ts index 54a02dd03..3585be846 100644 --- a/src/resources/beta/threads/index.ts +++ b/src/resources/beta/threads/index.ts @@ -1,14 +1,30 @@ // File generated from our OpenAPI spec by Stainless. export { - MessageContentImageFile, - MessageContentText, - ThreadMessage, - ThreadMessageDeleted, + Annotation, + AnnotationDelta, + FileCitationAnnotation, + FileCitationDeltaAnnotation, + FilePathAnnotation, + FilePathDeltaAnnotation, + ImageFile, + ImageFileContentBlock, + ImageFileDelta, + ImageFileDeltaBlock, + Message, + MessageContent, + MessageContentDelta, + MessageDeleted, + MessageDelta, + MessageDeltaEvent, + Text, + TextContentBlock, + TextDelta, + TextDeltaBlock, MessageCreateParams, MessageUpdateParams, MessageListParams, - ThreadMessagesPage, + MessagesPage, Messages, } from './messages/index'; export { @@ -16,9 +32,15 @@ export { Run, RunStatus, RunCreateParams, + RunCreateParamsNonStreaming, + RunCreateParamsStreaming, RunUpdateParams, RunListParams, + RunCreateAndStreamParams, RunSubmitToolOutputsParams, + RunSubmitToolOutputsParamsNonStreaming, + RunSubmitToolOutputsParamsStreaming, + RunSubmitToolOutputsStreamParams, RunsPage, Runs, } from './runs/index'; @@ -28,5 +50,8 @@ export { ThreadCreateParams, ThreadUpdateParams, ThreadCreateAndRunParams, + ThreadCreateAndRunParamsNonStreaming, + ThreadCreateAndRunParamsStreaming, + ThreadCreateAndRunStreamParams, Threads, } from './threads'; diff --git a/src/resources/beta/threads/messages/index.ts b/src/resources/beta/threads/messages/index.ts index cde22c2a9..f68edbbd4 100644 --- a/src/resources/beta/threads/messages/index.ts +++ b/src/resources/beta/threads/messages/index.ts @@ -1,14 +1,30 @@ // File generated from our OpenAPI spec by Stainless. export { - MessageContentImageFile, - MessageContentText, - ThreadMessage, - ThreadMessageDeleted, + Annotation, + AnnotationDelta, + FileCitationAnnotation, + FileCitationDeltaAnnotation, + FilePathAnnotation, + FilePathDeltaAnnotation, + ImageFile, + ImageFileContentBlock, + ImageFileDelta, + ImageFileDeltaBlock, + Message, + MessageContent, + MessageContentDelta, + MessageDeleted, + MessageDelta, + MessageDeltaEvent, + Text, + TextContentBlock, + TextDelta, + TextDeltaBlock, MessageCreateParams, MessageUpdateParams, MessageListParams, - ThreadMessagesPage, + MessagesPage, Messages, } from './messages'; export { MessageFile, FileListParams, MessageFilesPage, Files } from './files'; diff --git a/src/resources/beta/threads/messages/messages.ts b/src/resources/beta/threads/messages/messages.ts index 40b436829..b38a4bbf0 100644 --- a/src/resources/beta/threads/messages/messages.ts +++ b/src/resources/beta/threads/messages/messages.ts @@ -17,7 +17,7 @@ export class Messages extends APIResource { threadId: string, body: MessageCreateParams, options?: Core.RequestOptions, - ): Core.APIPromise { + ): Core.APIPromise { return this._client.post(`/threads/${threadId}/messages`, { body, ...options, @@ -28,11 +28,7 @@ export class Messages extends APIResource { /** * Retrieve a message. */ - retrieve( - threadId: string, - messageId: string, - options?: Core.RequestOptions, - ): Core.APIPromise { + retrieve(threadId: string, messageId: string, options?: Core.RequestOptions): Core.APIPromise { return this._client.get(`/threads/${threadId}/messages/${messageId}`, { ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, @@ -47,7 +43,7 @@ export class Messages extends APIResource { messageId: string, body: MessageUpdateParams, options?: Core.RequestOptions, - ): Core.APIPromise { + ): Core.APIPromise { return this._client.post(`/threads/${threadId}/messages/${messageId}`, { body, ...options, @@ -62,17 +58,17 @@ export class Messages extends APIResource { threadId: string, query?: MessageListParams, options?: Core.RequestOptions, - ): Core.PagePromise; - list(threadId: string, options?: Core.RequestOptions): Core.PagePromise; + ): Core.PagePromise; + list(threadId: string, options?: Core.RequestOptions): Core.PagePromise; list( threadId: string, query: MessageListParams | Core.RequestOptions = {}, options?: Core.RequestOptions, - ): Core.PagePromise { + ): Core.PagePromise { if (isRequestOptions(query)) { return this.list(threadId, {}, query); } - return this._client.getAPIList(`/threads/${threadId}/messages`, ThreadMessagesPage, { + return this._client.getAPIList(`/threads/${threadId}/messages`, MessagesPage, { query, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, @@ -80,129 +76,220 @@ export class Messages extends APIResource { } } -export class ThreadMessagesPage extends CursorPage {} +export class MessagesPage extends CursorPage {} /** - * References an image [File](https://platform.openai.com/docs/api-reference/files) - * in the content of a message. + * A citation within the message that points to a specific quote from a specific + * File associated with the assistant or the message. Generated when the assistant + * uses the "retrieval" tool to search files. + */ +export type Annotation = FileCitationAnnotation | FilePathAnnotation; + +/** + * A citation within the message that points to a specific quote from a specific + * File associated with the assistant or the message. Generated when the assistant + * uses the "retrieval" tool to search files. + */ +export type AnnotationDelta = FileCitationDeltaAnnotation | FilePathDeltaAnnotation; + +/** + * A citation within the message that points to a specific quote from a specific + * File associated with the assistant or the message. Generated when the assistant + * uses the "retrieval" tool to search files. */ -export interface MessageContentImageFile { - image_file: MessageContentImageFile.ImageFile; +export interface FileCitationAnnotation { + end_index: number; + + file_citation: FileCitationAnnotation.FileCitation; + + start_index: number; /** - * Always `image_file`. + * The text in the message content that needs to be replaced. */ - type: 'image_file'; + text: string; + + /** + * Always `file_citation`. + */ + type: 'file_citation'; } -export namespace MessageContentImageFile { - export interface ImageFile { +export namespace FileCitationAnnotation { + export interface FileCitation { /** - * The [File](https://platform.openai.com/docs/api-reference/files) ID of the image - * in the message content. + * The ID of the specific File the citation is from. */ file_id: string; + + /** + * The specific quote in the file. + */ + quote: string; } } /** - * The text content that is part of a message. + * A citation within the message that points to a specific quote from a specific + * File associated with the assistant or the message. Generated when the assistant + * uses the "retrieval" tool to search files. */ -export interface MessageContentText { - text: MessageContentText.Text; +export interface FileCitationDeltaAnnotation { + /** + * The index of the annotation in the text content part. + */ + index: number; /** - * Always `text`. + * Always `file_citation`. */ - type: 'text'; + type: 'file_citation'; + + end_index?: number; + + file_citation?: FileCitationDeltaAnnotation.FileCitation; + + start_index?: number; + + /** + * The text in the message content that needs to be replaced. + */ + text?: string; } -export namespace MessageContentText { - export interface Text { - annotations: Array; +export namespace FileCitationDeltaAnnotation { + export interface FileCitation { + /** + * The ID of the specific File the citation is from. + */ + file_id?: string; /** - * The data that makes up the text. + * The specific quote in the file. */ - value: string; + quote?: string; } +} + +/** + * A URL for the file that's generated when the assistant used the + * `code_interpreter` tool to generate a file. + */ +export interface FilePathAnnotation { + end_index: number; + + file_path: FilePathAnnotation.FilePath; + + start_index: number; + + /** + * The text in the message content that needs to be replaced. + */ + text: string; + + /** + * Always `file_path`. + */ + type: 'file_path'; +} - export namespace Text { +export namespace FilePathAnnotation { + export interface FilePath { /** - * A citation within the message that points to a specific quote from a specific - * File associated with the assistant or the message. Generated when the assistant - * uses the "retrieval" tool to search files. + * The ID of the file that was generated. */ - export interface FileCitation { - end_index: number; + file_id: string; + } +} + +/** + * A URL for the file that's generated when the assistant used the + * `code_interpreter` tool to generate a file. + */ +export interface FilePathDeltaAnnotation { + /** + * The index of the annotation in the text content part. + */ + index: number; - file_citation: FileCitation.FileCitation; + /** + * Always `file_path`. + */ + type: 'file_path'; - start_index: number; + end_index?: number; - /** - * The text in the message content that needs to be replaced. - */ - text: string; + file_path?: FilePathDeltaAnnotation.FilePath; - /** - * Always `file_citation`. - */ - type: 'file_citation'; - } + start_index?: number; - export namespace FileCitation { - export interface FileCitation { - /** - * The ID of the specific File the citation is from. - */ - file_id: string; - - /** - * The specific quote in the file. - */ - quote: string; - } - } + /** + * The text in the message content that needs to be replaced. + */ + text?: string; +} +export namespace FilePathDeltaAnnotation { + export interface FilePath { /** - * A URL for the file that's generated when the assistant used the - * `code_interpreter` tool to generate a file. + * The ID of the file that was generated. */ - export interface FilePath { - end_index: number; + file_id?: string; + } +} - file_path: FilePath.FilePath; +export interface ImageFile { + /** + * The [File](https://platform.openai.com/docs/api-reference/files) ID of the image + * in the message content. + */ + file_id: string; +} - start_index: number; +/** + * References an image [File](https://platform.openai.com/docs/api-reference/files) + * in the content of a message. + */ +export interface ImageFileContentBlock { + image_file: ImageFile; - /** - * The text in the message content that needs to be replaced. - */ - text: string; + /** + * Always `image_file`. + */ + type: 'image_file'; +} - /** - * Always `file_path`. - */ - type: 'file_path'; - } +export interface ImageFileDelta { + /** + * The [File](https://platform.openai.com/docs/api-reference/files) ID of the image + * in the message content. + */ + file_id?: string; +} - export namespace FilePath { - export interface FilePath { - /** - * The ID of the file that was generated. - */ - file_id: string; - } - } - } +/** + * References an image [File](https://platform.openai.com/docs/api-reference/files) + * in the content of a message. + */ +export interface ImageFileDeltaBlock { + /** + * The index of the content part in the message. + */ + index: number; + + /** + * Always `image_file`. + */ + type: 'image_file'; + + image_file?: ImageFileDelta; } /** * Represents a message within a * [thread](https://platform.openai.com/docs/api-reference/threads). */ -export interface ThreadMessage { +export interface Message { /** * The identifier, which can be referenced in API endpoints. */ @@ -215,10 +302,15 @@ export interface ThreadMessage { */ assistant_id: string | null; + /** + * The Unix timestamp (in seconds) for when the message was completed. + */ + completed_at: number | null; + /** * The content of the message in array of text and/or images. */ - content: Array; + content: Array; /** * The Unix timestamp (in seconds) for when the message was created. @@ -232,6 +324,16 @@ export interface ThreadMessage { */ file_ids: Array; + /** + * The Unix timestamp (in seconds) for when the message was marked as incomplete. + */ + incomplete_at: number | null; + + /** + * On an incomplete message, details about why the message is incomplete. + */ + incomplete_details: Message.IncompleteDetails | null; + /** * Set of 16 key-value pairs that can be attached to an object. This can be useful * for storing additional information about the object in a structured format. Keys @@ -257,6 +359,12 @@ export interface ThreadMessage { */ run_id: string | null; + /** + * The status of the message, which can be either `in_progress`, `incomplete`, or + * `completed`. + */ + status: 'in_progress' | 'incomplete' | 'completed'; + /** * The [thread](https://platform.openai.com/docs/api-reference/threads) ID that * this message belongs to. @@ -264,7 +372,31 @@ export interface ThreadMessage { thread_id: string; } -export interface ThreadMessageDeleted { +export namespace Message { + /** + * On an incomplete message, details about why the message is incomplete. + */ + export interface IncompleteDetails { + /** + * The reason the message is incomplete. + */ + reason: 'content_filter' | 'max_tokens' | 'run_cancelled' | 'run_expired' | 'run_failed'; + } +} + +/** + * References an image [File](https://platform.openai.com/docs/api-reference/files) + * in the content of a message. + */ +export type MessageContent = ImageFileContentBlock | TextContentBlock; + +/** + * References an image [File](https://platform.openai.com/docs/api-reference/files) + * in the content of a message. + */ +export type MessageContentDelta = ImageFileDeltaBlock | TextDeltaBlock; + +export interface MessageDeleted { id: string; deleted: boolean; @@ -272,6 +404,96 @@ export interface ThreadMessageDeleted { object: 'thread.message.deleted'; } +/** + * The delta containing the fields that have changed on the Message. + */ +export interface MessageDelta { + /** + * The content of the message in array of text and/or images. + */ + content?: Array; + + /** + * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs that + * the assistant should use. Useful for tools like retrieval and code_interpreter + * that can access files. A maximum of 10 files can be attached to a message. + */ + file_ids?: Array; + + /** + * The entity that produced the message. One of `user` or `assistant`. + */ + role?: 'user' | 'assistant'; +} + +/** + * Represents a message delta i.e. any changed fields on a message during + * streaming. + */ +export interface MessageDeltaEvent { + /** + * The identifier of the message, which can be referenced in API endpoints. + */ + id: string; + + /** + * The delta containing the fields that have changed on the Message. + */ + delta: MessageDelta; + + /** + * The object type, which is always `thread.message.delta`. + */ + object: 'thread.message.delta'; +} + +export interface Text { + annotations: Array; + + /** + * The data that makes up the text. + */ + value: string; +} + +/** + * The text content that is part of a message. + */ +export interface TextContentBlock { + text: Text; + + /** + * Always `text`. + */ + type: 'text'; +} + +export interface TextDelta { + annotations?: Array; + + /** + * The data that makes up the text. + */ + value?: string; +} + +/** + * The text content that is part of a message. + */ +export interface TextDeltaBlock { + /** + * The index of the content part in the message. + */ + index: number; + + /** + * Always `text`. + */ + type: 'text'; + + text?: TextDelta; +} + export interface MessageCreateParams { /** * The content of the message. @@ -328,11 +550,27 @@ export interface MessageListParams extends CursorPageParams { } export namespace Messages { - export import MessageContentImageFile = MessagesAPI.MessageContentImageFile; - export import MessageContentText = MessagesAPI.MessageContentText; - export import ThreadMessage = MessagesAPI.ThreadMessage; - export import ThreadMessageDeleted = MessagesAPI.ThreadMessageDeleted; - export import ThreadMessagesPage = MessagesAPI.ThreadMessagesPage; + export import Annotation = MessagesAPI.Annotation; + export import AnnotationDelta = MessagesAPI.AnnotationDelta; + export import FileCitationAnnotation = MessagesAPI.FileCitationAnnotation; + export import FileCitationDeltaAnnotation = MessagesAPI.FileCitationDeltaAnnotation; + export import FilePathAnnotation = MessagesAPI.FilePathAnnotation; + export import FilePathDeltaAnnotation = MessagesAPI.FilePathDeltaAnnotation; + export import ImageFile = MessagesAPI.ImageFile; + export import ImageFileContentBlock = MessagesAPI.ImageFileContentBlock; + export import ImageFileDelta = MessagesAPI.ImageFileDelta; + export import ImageFileDeltaBlock = MessagesAPI.ImageFileDeltaBlock; + export import Message = MessagesAPI.Message; + export import MessageContent = MessagesAPI.MessageContent; + export import MessageContentDelta = MessagesAPI.MessageContentDelta; + export import MessageDeleted = MessagesAPI.MessageDeleted; + export import MessageDelta = MessagesAPI.MessageDelta; + export import MessageDeltaEvent = MessagesAPI.MessageDeltaEvent; + export import Text = MessagesAPI.Text; + export import TextContentBlock = MessagesAPI.TextContentBlock; + export import TextDelta = MessagesAPI.TextDelta; + export import TextDeltaBlock = MessagesAPI.TextDeltaBlock; + export import MessagesPage = MessagesAPI.MessagesPage; export import MessageCreateParams = MessagesAPI.MessageCreateParams; export import MessageUpdateParams = MessagesAPI.MessageUpdateParams; export import MessageListParams = MessagesAPI.MessageListParams; diff --git a/src/resources/beta/threads/runs/index.ts b/src/resources/beta/threads/runs/index.ts index b11736c5c..7fa34637a 100644 --- a/src/resources/beta/threads/runs/index.ts +++ b/src/resources/beta/threads/runs/index.ts @@ -1,11 +1,22 @@ // File generated from our OpenAPI spec by Stainless. export { - CodeToolCall, + CodeInterpreterLogs, + CodeInterpreterOutputImage, + CodeInterpreterToolCall, + CodeInterpreterToolCallDelta, FunctionToolCall, + FunctionToolCallDelta, MessageCreationStepDetails, RetrievalToolCall, + RetrievalToolCallDelta, RunStep, + RunStepDelta, + RunStepDeltaEvent, + RunStepDeltaMessageDelta, + ToolCall, + ToolCallDelta, + ToolCallDeltaObject, ToolCallsStepDetails, StepListParams, RunStepsPage, @@ -16,9 +27,15 @@ export { Run, RunStatus, RunCreateParams, + RunCreateParamsNonStreaming, + RunCreateParamsStreaming, RunUpdateParams, RunListParams, + RunCreateAndStreamParams, RunSubmitToolOutputsParams, + RunSubmitToolOutputsParamsNonStreaming, + RunSubmitToolOutputsParamsStreaming, + RunSubmitToolOutputsStreamParams, RunsPage, Runs, } from './runs'; diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 9a0bc00dd..8fe09ecc6 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -1,12 +1,16 @@ // File generated from our OpenAPI spec by Stainless. import * as Core from 'openai/core'; +import { APIPromise } from 'openai/core'; import { APIResource } from 'openai/resource'; import { isRequestOptions } from 'openai/core'; +import { AssistantStream, RunCreateParamsBaseStream } from 'openai/lib/AssistantStream'; +import { RunSubmitToolOutputsParamsStream } from 'openai/lib/AssistantStream'; import * as RunsAPI from 'openai/resources/beta/threads/runs/runs'; -import * as Shared from 'openai/resources/shared'; +import * as AssistantsAPI from 'openai/resources/beta/assistants/assistants'; import * as StepsAPI from 'openai/resources/beta/threads/runs/steps'; import { CursorPage, type CursorPageParams } from 'openai/pagination'; +import { Stream } from 'openai/streaming'; export class Runs extends APIResource { steps: StepsAPI.Steps = new StepsAPI.Steps(this._client); @@ -14,12 +18,28 @@ export class Runs extends APIResource { /** * Create a run. */ - create(threadId: string, body: RunCreateParams, options?: Core.RequestOptions): Core.APIPromise { + create(threadId: string, body: RunCreateParamsNonStreaming, options?: Core.RequestOptions): APIPromise; + create( + threadId: string, + body: RunCreateParamsStreaming, + options?: Core.RequestOptions, + ): APIPromise>; + create( + threadId: string, + body: RunCreateParamsBase, + options?: Core.RequestOptions, + ): APIPromise | Run>; + create( + threadId: string, + body: RunCreateParams, + options?: Core.RequestOptions, + ): APIPromise | APIPromise> { return this._client.post(`/threads/${threadId}/runs`, { body, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, - }); + stream: body.stream ?? false, + }) as APIPromise | APIPromise>; } /** @@ -82,23 +102,72 @@ export class Runs extends APIResource { }); } + /** + * Create a Run stream + */ + createAndStream( + threadId: string, + body: RunCreateParamsBaseStream, + options?: Core.RequestOptions, + ): AssistantStream { + return AssistantStream.createAssistantStream(threadId, this._client.beta.threads.runs, body, options); + } + /** * When a run has the `status: "requires_action"` and `required_action.type` is * `submit_tool_outputs`, this endpoint can be used to submit the outputs from the * tool calls once they're all completed. All outputs must be submitted in a single * request. */ + submitToolOutputs( + threadId: string, + runId: string, + body: RunSubmitToolOutputsParamsNonStreaming, + options?: Core.RequestOptions, + ): APIPromise; + submitToolOutputs( + threadId: string, + runId: string, + body: RunSubmitToolOutputsParamsStreaming, + options?: Core.RequestOptions, + ): APIPromise>; + submitToolOutputs( + threadId: string, + runId: string, + body: RunSubmitToolOutputsParamsBase, + options?: Core.RequestOptions, + ): APIPromise | Run>; submitToolOutputs( threadId: string, runId: string, body: RunSubmitToolOutputsParams, options?: Core.RequestOptions, - ): Core.APIPromise { + ): APIPromise | APIPromise> { return this._client.post(`/threads/${threadId}/runs/${runId}/submit_tool_outputs`, { body, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, - }); + stream: body.stream ?? false, + }) as APIPromise | APIPromise>; + } + + /** + * Submit the tool outputs from a previous run and stream the run to a terminal + * state. + */ + submitToolOutputsStream( + threadId: string, + runId: string, + body: RunSubmitToolOutputsParamsStream, + options?: Core.RequestOptions, + ): AssistantStream { + return AssistantStream.createToolAssistantStream( + threadId, + runId, + this._client.beta.threads.runs, + body, + options, + ); } } @@ -180,7 +249,7 @@ export interface Run { /** * The Unix timestamp (in seconds) for when the run will expire. */ - expires_at: number; + expires_at: number | null; /** * The Unix timestamp (in seconds) for when the run failed. @@ -255,7 +324,7 @@ export interface Run { * [assistant](https://platform.openai.com/docs/api-reference/assistants) used for * this run. */ - tools: Array; + tools: Array; /** * Usage statistics related to the run. This value will be `null` if the run is not @@ -308,29 +377,6 @@ export namespace Run { } } - export interface AssistantToolsCode { - /** - * The type of tool being defined: `code_interpreter` - */ - type: 'code_interpreter'; - } - - export interface AssistantToolsRetrieval { - /** - * The type of tool being defined: `retrieval` - */ - type: 'retrieval'; - } - - export interface AssistantToolsFunction { - function: Shared.FunctionDefinition; - - /** - * The type of tool being defined: `function` - */ - type: 'function'; - } - /** * Usage statistics related to the run. This value will be `null` if the run is not * in a terminal state (i.e. `in_progress`, `queued`, etc.). @@ -368,7 +414,9 @@ export type RunStatus = | 'completed' | 'expired'; -export interface RunCreateParams { +export type RunCreateParams = RunCreateParamsNonStreaming | RunCreateParamsStreaming; + +export interface RunCreateParamsBase { /** * The ID of the * [assistant](https://platform.openai.com/docs/api-reference/assistants) to use to @@ -406,40 +454,41 @@ export interface RunCreateParams { */ model?: string | null; + /** + * If `true`, returns a stream of events that happen during the Run as server-sent + * events, terminating when the Run enters a terminal state with a `data: [DONE]` + * message. + */ + stream?: boolean | null; + /** * Override the tools the assistant can use for this run. This is useful for * modifying the behavior on a per-run basis. */ - tools?: Array< - | RunCreateParams.AssistantToolsCode - | RunCreateParams.AssistantToolsRetrieval - | RunCreateParams.AssistantToolsFunction - > | null; + tools?: Array | null; } export namespace RunCreateParams { - export interface AssistantToolsCode { - /** - * The type of tool being defined: `code_interpreter` - */ - type: 'code_interpreter'; - } - - export interface AssistantToolsRetrieval { - /** - * The type of tool being defined: `retrieval` - */ - type: 'retrieval'; - } + export type RunCreateParamsNonStreaming = RunsAPI.RunCreateParamsNonStreaming; + export type RunCreateParamsStreaming = RunsAPI.RunCreateParamsStreaming; +} - export interface AssistantToolsFunction { - function: Shared.FunctionDefinition; +export interface RunCreateParamsNonStreaming extends RunCreateParamsBase { + /** + * If `true`, returns a stream of events that happen during the Run as server-sent + * events, terminating when the Run enters a terminal state with a `data: [DONE]` + * message. + */ + stream?: false | null; +} - /** - * The type of tool being defined: `function` - */ - type: 'function'; - } +export interface RunCreateParamsStreaming extends RunCreateParamsBase { + /** + * If `true`, returns a stream of events that happen during the Run as server-sent + * events, terminating when the Run enters a terminal state with a `data: [DONE]` + * message. + */ + stream: true; } export interface RunUpdateParams { @@ -468,11 +517,67 @@ export interface RunListParams extends CursorPageParams { order?: 'asc' | 'desc'; } -export interface RunSubmitToolOutputsParams { +export interface RunCreateAndStreamParams { + /** + * The ID of the + * [assistant](https://platform.openai.com/docs/api-reference/assistants) to use to + * execute this run. + */ + assistant_id: string; + + /** + * Appends additional instructions at the end of the instructions for the run. This + * is useful for modifying the behavior on a per-run basis without overriding other + * instructions. + */ + additional_instructions?: string | null; + + /** + * Overrides the + * [instructions](https://platform.openai.com/docs/api-reference/assistants/createAssistant) + * of the assistant. This is useful for modifying the behavior on a per-run basis. + */ + instructions?: string | null; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + + /** + * The ID of the [Model](https://platform.openai.com/docs/api-reference/models) to + * be used to execute this run. If a value is provided here, it will override the + * model associated with the assistant. If not, the model associated with the + * assistant will be used. + */ + model?: string | null; + + /** + * Override the tools the assistant can use for this run. This is useful for + * modifying the behavior on a per-run basis. + */ + tools?: Array | null; +} + +export type RunSubmitToolOutputsParams = + | RunSubmitToolOutputsParamsNonStreaming + | RunSubmitToolOutputsParamsStreaming; + +export interface RunSubmitToolOutputsParamsBase { /** * A list of tools for which the outputs are being submitted. */ tool_outputs: Array; + + /** + * If `true`, returns a stream of events that happen during the Run as server-sent + * events, terminating when the Run enters a terminal state with a `data: [DONE]` + * message. + */ + stream?: boolean | null; } export namespace RunSubmitToolOutputsParams { @@ -488,6 +593,49 @@ export namespace RunSubmitToolOutputsParams { */ tool_call_id?: string; } + + export type RunSubmitToolOutputsParamsNonStreaming = RunsAPI.RunSubmitToolOutputsParamsNonStreaming; + export type RunSubmitToolOutputsParamsStreaming = RunsAPI.RunSubmitToolOutputsParamsStreaming; +} + +export interface RunSubmitToolOutputsParamsNonStreaming extends RunSubmitToolOutputsParamsBase { + /** + * If `true`, returns a stream of events that happen during the Run as server-sent + * events, terminating when the Run enters a terminal state with a `data: [DONE]` + * message. + */ + stream?: false | null; +} + +export interface RunSubmitToolOutputsParamsStreaming extends RunSubmitToolOutputsParamsBase { + /** + * If `true`, returns a stream of events that happen during the Run as server-sent + * events, terminating when the Run enters a terminal state with a `data: [DONE]` + * message. + */ + stream: true; +} + +export interface RunSubmitToolOutputsStreamParams { + /** + * A list of tools for which the outputs are being submitted. + */ + tool_outputs: Array; +} + +export namespace RunSubmitToolOutputsStreamParams { + export interface ToolOutput { + /** + * The output of the tool call to be submitted to continue the run. + */ + output?: string; + + /** + * The ID of the tool call in the `required_action` object within the run object + * the output is being submitted for. + */ + tool_call_id?: string; + } } export namespace Runs { @@ -496,15 +644,32 @@ export namespace Runs { export import RunStatus = RunsAPI.RunStatus; export import RunsPage = RunsAPI.RunsPage; export import RunCreateParams = RunsAPI.RunCreateParams; + export import RunCreateParamsNonStreaming = RunsAPI.RunCreateParamsNonStreaming; + export import RunCreateParamsStreaming = RunsAPI.RunCreateParamsStreaming; export import RunUpdateParams = RunsAPI.RunUpdateParams; export import RunListParams = RunsAPI.RunListParams; + export import RunCreateAndStreamParams = RunsAPI.RunCreateAndStreamParams; export import RunSubmitToolOutputsParams = RunsAPI.RunSubmitToolOutputsParams; + export import RunSubmitToolOutputsParamsNonStreaming = RunsAPI.RunSubmitToolOutputsParamsNonStreaming; + export import RunSubmitToolOutputsParamsStreaming = RunsAPI.RunSubmitToolOutputsParamsStreaming; + export import RunSubmitToolOutputsStreamParams = RunsAPI.RunSubmitToolOutputsStreamParams; export import Steps = StepsAPI.Steps; - export import CodeToolCall = StepsAPI.CodeToolCall; + export import CodeInterpreterLogs = StepsAPI.CodeInterpreterLogs; + export import CodeInterpreterOutputImage = StepsAPI.CodeInterpreterOutputImage; + export import CodeInterpreterToolCall = StepsAPI.CodeInterpreterToolCall; + export import CodeInterpreterToolCallDelta = StepsAPI.CodeInterpreterToolCallDelta; export import FunctionToolCall = StepsAPI.FunctionToolCall; + export import FunctionToolCallDelta = StepsAPI.FunctionToolCallDelta; export import MessageCreationStepDetails = StepsAPI.MessageCreationStepDetails; export import RetrievalToolCall = StepsAPI.RetrievalToolCall; + export import RetrievalToolCallDelta = StepsAPI.RetrievalToolCallDelta; export import RunStep = StepsAPI.RunStep; + export import RunStepDelta = StepsAPI.RunStepDelta; + export import RunStepDeltaEvent = StepsAPI.RunStepDeltaEvent; + export import RunStepDeltaMessageDelta = StepsAPI.RunStepDeltaMessageDelta; + export import ToolCall = StepsAPI.ToolCall; + export import ToolCallDelta = StepsAPI.ToolCallDelta; + export import ToolCallDeltaObject = StepsAPI.ToolCallDeltaObject; export import ToolCallsStepDetails = StepsAPI.ToolCallsStepDetails; export import RunStepsPage = StepsAPI.RunStepsPage; export import StepListParams = StepsAPI.StepListParams; diff --git a/src/resources/beta/threads/runs/steps.ts b/src/resources/beta/threads/runs/steps.ts index c574c94d1..4218e9769 100644 --- a/src/resources/beta/threads/runs/steps.ts +++ b/src/resources/beta/threads/runs/steps.ts @@ -55,10 +55,54 @@ export class Steps extends APIResource { export class RunStepsPage extends CursorPage {} +/** + * Text output from the Code Interpreter tool call as part of a run step. + */ +export interface CodeInterpreterLogs { + /** + * The index of the output in the outputs array. + */ + index: number; + + /** + * Always `logs`. + */ + type: 'logs'; + + /** + * The text output from the Code Interpreter tool call. + */ + logs?: string; +} + +export interface CodeInterpreterOutputImage { + /** + * The index of the output in the outputs array. + */ + index: number; + + /** + * Always `image`. + */ + type: 'image'; + + image?: CodeInterpreterOutputImage.Image; +} + +export namespace CodeInterpreterOutputImage { + export interface Image { + /** + * The [file](https://platform.openai.com/docs/api-reference/files) ID of the + * image. + */ + file_id?: string; + } +} + /** * Details of the Code Interpreter tool call the run step was involved in. */ -export interface CodeToolCall { +export interface CodeInterpreterToolCall { /** * The ID of the tool call. */ @@ -67,7 +111,7 @@ export interface CodeToolCall { /** * The Code Interpreter tool call definition. */ - code_interpreter: CodeToolCall.CodeInterpreter; + code_interpreter: CodeInterpreterToolCall.CodeInterpreter; /** * The type of tool call. This is always going to be `code_interpreter` for this @@ -76,7 +120,7 @@ export interface CodeToolCall { type: 'code_interpreter'; } -export namespace CodeToolCall { +export namespace CodeInterpreterToolCall { /** * The Code Interpreter tool call definition. */ @@ -131,6 +175,51 @@ export namespace CodeToolCall { } } +/** + * Details of the Code Interpreter tool call the run step was involved in. + */ +export interface CodeInterpreterToolCallDelta { + /** + * The index of the tool call in the tool calls array. + */ + index: number; + + /** + * The type of tool call. This is always going to be `code_interpreter` for this + * type of tool call. + */ + type: 'code_interpreter'; + + /** + * The ID of the tool call. + */ + id?: string; + + /** + * The Code Interpreter tool call definition. + */ + code_interpreter?: CodeInterpreterToolCallDelta.CodeInterpreter; +} + +export namespace CodeInterpreterToolCallDelta { + /** + * The Code Interpreter tool call definition. + */ + export interface CodeInterpreter { + /** + * The input to the Code Interpreter tool call. + */ + input?: string; + + /** + * The outputs from the Code Interpreter tool call. Code Interpreter can output one + * or more items, including text (`logs`) or images (`image`). Each of these are + * represented by a different object type. + */ + outputs?: Array; + } +} + export interface FunctionToolCall { /** * The ID of the tool call object. @@ -173,6 +262,53 @@ export namespace FunctionToolCall { } } +export interface FunctionToolCallDelta { + /** + * The index of the tool call in the tool calls array. + */ + index: number; + + /** + * The type of tool call. This is always going to be `function` for this type of + * tool call. + */ + type: 'function'; + + /** + * The ID of the tool call object. + */ + id?: string; + + /** + * The definition of the function that was called. + */ + function?: FunctionToolCallDelta.Function; +} + +export namespace FunctionToolCallDelta { + /** + * The definition of the function that was called. + */ + export interface Function { + /** + * The arguments passed to the function. + */ + arguments?: string; + + /** + * The name of the function. + */ + name?: string; + + /** + * The output of the function. This will be `null` if the outputs have not been + * [submitted](https://platform.openai.com/docs/api-reference/runs/submitToolOutputs) + * yet. + */ + output?: string | null; + } +} + /** * Details of the message creation by the run step. */ @@ -212,6 +348,29 @@ export interface RetrievalToolCall { type: 'retrieval'; } +export interface RetrievalToolCallDelta { + /** + * The index of the tool call in the tool calls array. + */ + index: number; + + /** + * The type of tool call. This is always going to be `retrieval` for this type of + * tool call. + */ + type: 'retrieval'; + + /** + * The ID of the tool call object. + */ + id?: string; + + /** + * For now, this is always going to be an empty object. + */ + retrieval?: unknown; +} + /** * Represents a step in execution of a run. */ @@ -347,6 +506,85 @@ export namespace RunStep { } } +/** + * The delta containing the fields that have changed on the run step. + */ +export interface RunStepDelta { + /** + * The details of the run step. + */ + step_details?: RunStepDeltaMessageDelta | ToolCallDeltaObject; +} + +/** + * Represents a run step delta i.e. any changed fields on a run step during + * streaming. + */ +export interface RunStepDeltaEvent { + /** + * The identifier of the run step, which can be referenced in API endpoints. + */ + id: string; + + /** + * The delta containing the fields that have changed on the run step. + */ + delta: RunStepDelta; + + /** + * The object type, which is always `thread.run.step.delta`. + */ + object: 'thread.run.step.delta'; +} + +/** + * Details of the message creation by the run step. + */ +export interface RunStepDeltaMessageDelta { + /** + * Always `message_creation`. + */ + type: 'message_creation'; + + message_creation?: RunStepDeltaMessageDelta.MessageCreation; +} + +export namespace RunStepDeltaMessageDelta { + export interface MessageCreation { + /** + * The ID of the message that was created by this run step. + */ + message_id?: string; + } +} + +/** + * Details of the Code Interpreter tool call the run step was involved in. + */ +export type ToolCall = CodeInterpreterToolCall | RetrievalToolCall | FunctionToolCall; + +/** + * Details of the Code Interpreter tool call the run step was involved in. + */ +export type ToolCallDelta = CodeInterpreterToolCallDelta | RetrievalToolCallDelta | FunctionToolCallDelta; + +/** + * Details of the tool call. + */ +export interface ToolCallDeltaObject { + /** + * Always `tool_calls`. + */ + type: 'tool_calls'; + + /** + * An array of tool calls the run step was involved in. These can be associated + * with one of three types of tools: `code_interpreter`, `retrieval`, or + * `function`. + */ + tool_calls?: Array; +} + /** * Details of the tool call. */ @@ -356,7 +594,7 @@ export interface ToolCallsStepDetails { * with one of three types of tools: `code_interpreter`, `retrieval`, or * `function`. */ - tool_calls: Array; + tool_calls: Array; /** * Always `tool_calls`. @@ -381,11 +619,22 @@ export interface StepListParams extends CursorPageParams { } export namespace Steps { - export import CodeToolCall = StepsAPI.CodeToolCall; + export import CodeInterpreterLogs = StepsAPI.CodeInterpreterLogs; + export import CodeInterpreterOutputImage = StepsAPI.CodeInterpreterOutputImage; + export import CodeInterpreterToolCall = StepsAPI.CodeInterpreterToolCall; + export import CodeInterpreterToolCallDelta = StepsAPI.CodeInterpreterToolCallDelta; export import FunctionToolCall = StepsAPI.FunctionToolCall; + export import FunctionToolCallDelta = StepsAPI.FunctionToolCallDelta; export import MessageCreationStepDetails = StepsAPI.MessageCreationStepDetails; export import RetrievalToolCall = StepsAPI.RetrievalToolCall; + export import RetrievalToolCallDelta = StepsAPI.RetrievalToolCallDelta; export import RunStep = StepsAPI.RunStep; + export import RunStepDelta = StepsAPI.RunStepDelta; + export import RunStepDeltaEvent = StepsAPI.RunStepDeltaEvent; + export import RunStepDeltaMessageDelta = StepsAPI.RunStepDeltaMessageDelta; + export import ToolCall = StepsAPI.ToolCall; + export import ToolCallDelta = StepsAPI.ToolCallDelta; + export import ToolCallDeltaObject = StepsAPI.ToolCallDeltaObject; export import ToolCallsStepDetails = StepsAPI.ToolCallsStepDetails; export import RunStepsPage = StepsAPI.RunStepsPage; export import StepListParams = StepsAPI.StepListParams; diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 5aa1f8c25..cbde41f89 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -1,12 +1,15 @@ // File generated from our OpenAPI spec by Stainless. import * as Core from 'openai/core'; +import { APIPromise } from 'openai/core'; import { APIResource } from 'openai/resource'; import { isRequestOptions } from 'openai/core'; +import { AssistantStream, ThreadCreateAndRunParamsBaseStream } from 'openai/lib/AssistantStream'; import * as ThreadsAPI from 'openai/resources/beta/threads/threads'; -import * as Shared from 'openai/resources/shared'; +import * as AssistantsAPI from 'openai/resources/beta/assistants/assistants'; import * as MessagesAPI from 'openai/resources/beta/threads/messages/messages'; import * as RunsAPI from 'openai/resources/beta/threads/runs/runs'; +import { Stream } from 'openai/streaming'; export class Threads extends APIResource { runs: RunsAPI.Runs = new RunsAPI.Runs(this._client); @@ -65,12 +68,38 @@ export class Threads extends APIResource { /** * Create a thread and run it in one request. */ - createAndRun(body: ThreadCreateAndRunParams, options?: Core.RequestOptions): Core.APIPromise { + createAndRun( + body: ThreadCreateAndRunParamsNonStreaming, + options?: Core.RequestOptions, + ): APIPromise; + createAndRun( + body: ThreadCreateAndRunParamsStreaming, + options?: Core.RequestOptions, + ): APIPromise>; + createAndRun( + body: ThreadCreateAndRunParamsBase, + options?: Core.RequestOptions, + ): APIPromise | RunsAPI.Run>; + createAndRun( + body: ThreadCreateAndRunParams, + options?: Core.RequestOptions, + ): APIPromise | APIPromise> { return this._client.post('/threads/runs', { body, ...options, headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, - }); + stream: body.stream ?? false, + }) as APIPromise | APIPromise>; + } + + /** + * Create a thread and stream the run back + */ + createAndRunStream( + body: ThreadCreateAndRunParamsBaseStream, + options?: Core.RequestOptions, + ): AssistantStream { + return AssistantStream.createThreadAssistantStream(body, this._client.beta.threads, options); } } @@ -168,7 +197,11 @@ export interface ThreadUpdateParams { metadata?: unknown | null; } -export interface ThreadCreateAndRunParams { +export type ThreadCreateAndRunParams = + | ThreadCreateAndRunParamsNonStreaming + | ThreadCreateAndRunParamsStreaming; + +export interface ThreadCreateAndRunParamsBase { /** * The ID of the * [assistant](https://platform.openai.com/docs/api-reference/assistants) to use to @@ -198,6 +231,13 @@ export interface ThreadCreateAndRunParams { */ model?: string | null; + /** + * If `true`, returns a stream of events that happen during the Run as server-sent + * events, terminating when the Run enters a terminal state with a `data: [DONE]` + * message. + */ + stream?: boolean | null; + /** * If no thread is provided, an empty thread will be created. */ @@ -208,9 +248,7 @@ export interface ThreadCreateAndRunParams { * modifying the behavior on a per-run basis. */ tools?: Array< - | ThreadCreateAndRunParams.AssistantToolsCode - | ThreadCreateAndRunParams.AssistantToolsRetrieval - | ThreadCreateAndRunParams.AssistantToolsFunction + AssistantsAPI.CodeInterpreterTool | AssistantsAPI.RetrievalTool | AssistantsAPI.FunctionTool > | null; } @@ -265,27 +303,121 @@ export namespace ThreadCreateAndRunParams { } } - export interface AssistantToolsCode { + export type ThreadCreateAndRunParamsNonStreaming = ThreadsAPI.ThreadCreateAndRunParamsNonStreaming; + export type ThreadCreateAndRunParamsStreaming = ThreadsAPI.ThreadCreateAndRunParamsStreaming; +} + +export interface ThreadCreateAndRunParamsNonStreaming extends ThreadCreateAndRunParamsBase { + /** + * If `true`, returns a stream of events that happen during the Run as server-sent + * events, terminating when the Run enters a terminal state with a `data: [DONE]` + * message. + */ + stream?: false | null; +} + +export interface ThreadCreateAndRunParamsStreaming extends ThreadCreateAndRunParamsBase { + /** + * If `true`, returns a stream of events that happen during the Run as server-sent + * events, terminating when the Run enters a terminal state with a `data: [DONE]` + * message. + */ + stream: true; +} + +export interface ThreadCreateAndRunStreamParams { + /** + * The ID of the + * [assistant](https://platform.openai.com/docs/api-reference/assistants) to use to + * execute this run. + */ + assistant_id: string; + + /** + * Override the default system message of the assistant. This is useful for + * modifying the behavior on a per-run basis. + */ + instructions?: string | null; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + + /** + * The ID of the [Model](https://platform.openai.com/docs/api-reference/models) to + * be used to execute this run. If a value is provided here, it will override the + * model associated with the assistant. If not, the model associated with the + * assistant will be used. + */ + model?: string | null; + + /** + * If no thread is provided, an empty thread will be created. + */ + thread?: ThreadCreateAndRunStreamParams.Thread; + + /** + * Override the tools the assistant can use for this run. This is useful for + * modifying the behavior on a per-run basis. + */ + tools?: Array< + AssistantsAPI.CodeInterpreterTool | AssistantsAPI.RetrievalTool | AssistantsAPI.FunctionTool + > | null; +} + +export namespace ThreadCreateAndRunStreamParams { + /** + * If no thread is provided, an empty thread will be created. + */ + export interface Thread { /** - * The type of tool being defined: `code_interpreter` + * A list of [messages](https://platform.openai.com/docs/api-reference/messages) to + * start the thread with. */ - type: 'code_interpreter'; - } + messages?: Array; - export interface AssistantToolsRetrieval { /** - * The type of tool being defined: `retrieval` + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. */ - type: 'retrieval'; + metadata?: unknown | null; } - export interface AssistantToolsFunction { - function: Shared.FunctionDefinition; + export namespace Thread { + export interface Message { + /** + * The content of the message. + */ + content: string; + + /** + * The role of the entity that is creating the message. Currently only `user` is + * supported. + */ + role: 'user'; - /** - * The type of tool being defined: `function` - */ - type: 'function'; + /** + * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that + * the message should use. There can be a maximum of 10 files attached to a + * message. Useful for tools like `retrieval` and `code_interpreter` that can + * access and use files. + */ + file_ids?: Array; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + } } } @@ -295,21 +427,46 @@ export namespace Threads { export import ThreadCreateParams = ThreadsAPI.ThreadCreateParams; export import ThreadUpdateParams = ThreadsAPI.ThreadUpdateParams; export import ThreadCreateAndRunParams = ThreadsAPI.ThreadCreateAndRunParams; + export import ThreadCreateAndRunParamsNonStreaming = ThreadsAPI.ThreadCreateAndRunParamsNonStreaming; + export import ThreadCreateAndRunParamsStreaming = ThreadsAPI.ThreadCreateAndRunParamsStreaming; + export import ThreadCreateAndRunStreamParams = ThreadsAPI.ThreadCreateAndRunStreamParams; export import Runs = RunsAPI.Runs; export import RequiredActionFunctionToolCall = RunsAPI.RequiredActionFunctionToolCall; export import Run = RunsAPI.Run; export import RunStatus = RunsAPI.RunStatus; export import RunsPage = RunsAPI.RunsPage; export import RunCreateParams = RunsAPI.RunCreateParams; + export import RunCreateParamsNonStreaming = RunsAPI.RunCreateParamsNonStreaming; + export import RunCreateParamsStreaming = RunsAPI.RunCreateParamsStreaming; export import RunUpdateParams = RunsAPI.RunUpdateParams; export import RunListParams = RunsAPI.RunListParams; + export import RunCreateAndStreamParams = RunsAPI.RunCreateAndStreamParams; export import RunSubmitToolOutputsParams = RunsAPI.RunSubmitToolOutputsParams; + export import RunSubmitToolOutputsParamsNonStreaming = RunsAPI.RunSubmitToolOutputsParamsNonStreaming; + export import RunSubmitToolOutputsParamsStreaming = RunsAPI.RunSubmitToolOutputsParamsStreaming; + export import RunSubmitToolOutputsStreamParams = RunsAPI.RunSubmitToolOutputsStreamParams; export import Messages = MessagesAPI.Messages; - export import MessageContentImageFile = MessagesAPI.MessageContentImageFile; - export import MessageContentText = MessagesAPI.MessageContentText; - export import ThreadMessage = MessagesAPI.ThreadMessage; - export import ThreadMessageDeleted = MessagesAPI.ThreadMessageDeleted; - export import ThreadMessagesPage = MessagesAPI.ThreadMessagesPage; + export import Annotation = MessagesAPI.Annotation; + export import AnnotationDelta = MessagesAPI.AnnotationDelta; + export import FileCitationAnnotation = MessagesAPI.FileCitationAnnotation; + export import FileCitationDeltaAnnotation = MessagesAPI.FileCitationDeltaAnnotation; + export import FilePathAnnotation = MessagesAPI.FilePathAnnotation; + export import FilePathDeltaAnnotation = MessagesAPI.FilePathDeltaAnnotation; + export import ImageFile = MessagesAPI.ImageFile; + export import ImageFileContentBlock = MessagesAPI.ImageFileContentBlock; + export import ImageFileDelta = MessagesAPI.ImageFileDelta; + export import ImageFileDeltaBlock = MessagesAPI.ImageFileDeltaBlock; + export import Message = MessagesAPI.Message; + export import MessageContent = MessagesAPI.MessageContent; + export import MessageContentDelta = MessagesAPI.MessageContentDelta; + export import MessageDeleted = MessagesAPI.MessageDeleted; + export import MessageDelta = MessagesAPI.MessageDelta; + export import MessageDeltaEvent = MessagesAPI.MessageDeltaEvent; + export import Text = MessagesAPI.Text; + export import TextContentBlock = MessagesAPI.TextContentBlock; + export import TextDelta = MessagesAPI.TextDelta; + export import TextDeltaBlock = MessagesAPI.TextDeltaBlock; + export import MessagesPage = MessagesAPI.MessagesPage; export import MessageCreateParams = MessagesAPI.MessageCreateParams; export import MessageUpdateParams = MessagesAPI.MessageUpdateParams; export import MessageListParams = MessagesAPI.MessageListParams; diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index c2d6da0be..41216a8e3 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -829,7 +829,7 @@ export interface ChatCompletionCreateParamsBase { /** * A list of tools the model may call. Currently, only functions are supported as a * tool. Use this to provide a list of functions the model may generate JSON inputs - * for. + * for. A max of 128 functions are supported. */ tools?: Array; diff --git a/src/resources/completions.ts b/src/resources/completions.ts index f3e262f5f..83ecb3e99 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -253,6 +253,8 @@ export interface CompletionCreateParamsBase { /** * The suffix that comes after a completion of inserted text. + * + * This parameter is only supported for `gpt-3.5-turbo-instruct`. */ suffix?: string | null; diff --git a/src/resources/shared.ts b/src/resources/shared.ts index 05ab66383..a6b2c11bd 100644 --- a/src/resources/shared.ts +++ b/src/resources/shared.ts @@ -1,5 +1,15 @@ // File generated from our OpenAPI spec by Stainless. +export interface ErrorObject { + code: string | null; + + message: string; + + param: string | null; + + type: string; +} + export interface FunctionDefinition { /** * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain diff --git a/src/streaming.ts b/src/streaming.ts index f90c5d89a..c452737aa 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -78,6 +78,20 @@ export class Stream implements AsyncIterable { } yield data; + } else { + let data; + try { + data = JSON.parse(sse.data); + } catch (e) { + console.error(`Could not parse message into JSON:`, sse.data); + console.error(`From chunk:`, sse.raw); + throw e; + } + // TODO: Is this where the error should be thrown? + if (sse.event == 'error') { + throw new APIError(undefined, data.error, data.message, undefined); + } + yield { event: sse.event, data: data } as any; } } done = true; diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts index 5a720afce..45f17040a 100644 --- a/tests/api-resources/beta/threads/runs/runs.test.ts +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -27,6 +27,7 @@ describe('resource runs', () => { instructions: 'string', metadata: {}, model: 'string', + stream: false, tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], }); }); @@ -127,6 +128,7 @@ describe('resource runs', () => { { tool_call_id: 'string', output: 'string' }, { tool_call_id: 'string', output: 'string' }, ], + stream: false, }); }); }); diff --git a/tests/api-resources/beta/threads/threads.test.ts b/tests/api-resources/beta/threads/threads.test.ts index fc9fef723..9243dc11c 100644 --- a/tests/api-resources/beta/threads/threads.test.ts +++ b/tests/api-resources/beta/threads/threads.test.ts @@ -108,6 +108,7 @@ describe('resource threads', () => { instructions: 'string', metadata: {}, model: 'string', + stream: false, thread: { messages: [ { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, diff --git a/tests/streaming/assistants/assistant.test.ts b/tests/streaming/assistants/assistant.test.ts new file mode 100644 index 000000000..e8db3d585 --- /dev/null +++ b/tests/streaming/assistants/assistant.test.ts @@ -0,0 +1,32 @@ +import OpenAI from 'openai'; +import { AssistantStream } from 'openai/lib/AssistantStream'; + +const openai = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('assistant tests', () => { + test('delta accumulation', () => { + expect(AssistantStream.accumulateDelta({}, {})).toEqual({}); + expect(AssistantStream.accumulateDelta({}, { a: 'apple' })).toEqual({ a: 'apple' }); + + // strings + expect(AssistantStream.accumulateDelta({ a: 'foo' }, { a: ' bar' })).toEqual({ a: 'foo bar' }); + + // dictionaries + expect(AssistantStream.accumulateDelta({ a: { foo: '1' } }, { a: { bar: '2' } })).toEqual({ + a: { + foo: '1', + bar: '2', + }, + }); + expect(AssistantStream.accumulateDelta({ a: { foo: 'hello,' } }, { a: { foo: ' world' } })).toEqual({ + a: { foo: 'hello, world' }, + }); + + expect(AssistantStream.accumulateDelta({}, { a: null })).toEqual({ a: null }); + expect(AssistantStream.accumulateDelta({ a: null }, { a: 'apple' })).toEqual({ a: 'apple' }); + expect(AssistantStream.accumulateDelta({ a: null }, { a: null })).toEqual({ a: null }); + }); +}); From 993669b502416096e4fa3b9f300bf0746ecbec63 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 13 Mar 2024 16:31:06 -0400 Subject: [PATCH 313/725] release: 4.29.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2813cb972..2f6cf24a7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.28.5" + ".": "4.29.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8798e4b66..19dfcc620 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.29.0 (2024-03-13) + +Full Changelog: [v4.28.5...v4.29.0](https://github.com/openai/openai-node/compare/v4.28.5...v4.29.0) + +### Features + +* **assistants:** add support for streaming ([#714](https://github.com/openai/openai-node/issues/714)) ([7d27d28](https://github.com/openai/openai-node/commit/7d27d286876d0a575d91a4752f401126fe93d2a3)) + ## 4.28.5 (2024-03-13) Full Changelog: [v4.28.4...v4.28.5](https://github.com/openai/openai-node/compare/v4.28.4...v4.28.5) diff --git a/README.md b/README.md index 24d38ac79..93ae9f044 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.28.5/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.29.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index fb739cc50..c49755fda 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.28.5/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.29.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index d51c4ca96..ce6396c2e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.28.5", + "version": "4.29.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 516e764d1..0de2f3538 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.28.5'; // x-release-please-version +export const VERSION = '4.29.0'; // x-release-please-version From bc9a1ca308020a88c29d409edc06cdfca8cbf8f5 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 15 Mar 2024 13:31:36 -0400 Subject: [PATCH 314/725] docs(readme): assistant streaming (#719) --- helpers.md | 158 ++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 145 insertions(+), 13 deletions(-) diff --git a/helpers.md b/helpers.md index 76423ee07..9f01a126a 100644 --- a/helpers.md +++ b/helpers.md @@ -1,6 +1,140 @@ -# Chat Completion Helpers +# Streaming Helpers -## Streaming Responses +OpenAI supports streaming responses when interacting with the [Chat](#chat-streaming) or [Assistant](#assistant-streaming-api) APIs. + +## Assistant Streaming API + +OpenAI supports streaming responses from Assistants. The SDK provides convenience wrappers around the API +so you can subscribe to the types of events you are interested in as well as receive accumulated responses. + +More information can be found in the documentation: [Assistant Streaming](https://platform.openai.com/docs/assistants/overview?lang=node.js) + +#### An example of creating a run and subscribing to some events + +```ts +const run = openai.beta.threads.runs + .createAndStream(thread.id, { + assistant_id: assistant.id, + }) + .on('textCreated', (text) => process.stdout.write('\nassistant > ')) + .on('textDelta', (textDelta, snapshot) => process.stdout.write(textDelta.value)) + .on('toolCallCreated', (toolCall) => process.stdout.write(`\nassistant > ${toolCall.type}\n\n`)) + .on('toolCallDelta', (toolCallDelta, snapshot) => { + if (toolCallDelta.type === 'code_interpreter') { + if (toolCallDelta.code_interpreter.input) { + process.stdout.write(toolCallDelta.code_interpreter.input); + } + if (toolCallDelta.code_interpreter.outputs) { + process.stdout.write('\noutput >\n'); + toolCallDelta.code_interpreter.outputs.forEach((output) => { + if (output.type === 'logs') { + process.stdout.write(`\n${output.logs}\n`); + } + }); + } + } + }); +``` + +### Assistant Events + +The assistant API provides events you can subscribe to for the following events. + +```ts +.on('event', (event: AssistantStreamEvent) => ...) +``` + +This allows you to subscribe to all the possible raw events sent by the OpenAI streaming API. +In many cases it will be more convenient to subscribe to a more specific set of events for your use case. + +More information on the types of events can be found here: [Events](https://platform.openai.com/docs/api-reference/assistants-streaming/events) + +```ts +.on('runStepCreated', (runStep: RunStep) => ...) +.on('runStepDelta', (delta: RunStepDelta, snapshot: RunStep) => ...) +.on('runStepDone', (runStep: RunStep) => ...) +``` + +These events allow you to subscribe to the creation, delta and completion of a RunStep. + +For more information on how Runs and RunSteps work see the documentation [Runs and RunSteps](https://platform.openai.com/docs/assistants/how-it-works/runs-and-run-steps) + +```ts +.on('messageCreated', (message: Message) => ...) +.on('messageDelta', (delta: MessageDelta, snapshot: Message) => ...) +.on('messageDone', (message: Message) => ...) +``` + +This allows you to subscribe to Message creation, delta and completion events. Messages can contain +different types of content that can be sent from a model (and events are available for specific content types). +For convenience, the delta event includes both the incremental update and an accumulated snapshot of the content. + +More information on messages can be found +on in the documentation page [Message](https://platform.openai.com/docs/api-reference/messages/object). + +```ts +.on('textCreated', (content: Text) => ...) +.on('textDelta', (delta: RunStepDelta, snapshot: Text) => ...) +.on('textDone', (content: Text, snapshot: Message) => ...) +``` + +These events allow you to subscribe to the creation, delta and completion of a Text content (a specific type of message). +For convenience, the delta event includes both the incremental update and an accumulated snapshot of the content. + +```ts +.on('imageFileDone', (content: ImageFile, snapshot: Message) => ...) +``` + +Image files are not sent incrementally so an event is provided for when a image file is available. + +```ts +.on('toolCallCreated', (toolCall: ToolCall) => ...) +.on('toolCallDelta', (delta: RunStepDelta, snapshot: ToolCall) => ...) +.on('toolCallDone', (toolCall: ToolCall) => ...) +``` + +These events allow you to subscribe to events for the creation, delta and completion of a ToolCall. + +More information on tools can be found here [Tools](https://platform.openai.com/docs/assistants/tools) + +```ts +.on('end', () => ...) +``` + +The last event send when a stream ends. + +### Assistant Methods + +The assistant streaming object also provides a few methods for convenience: + +```ts +.currentEvent() + +.currentRun() + +.currentMessageSnapshot() + +.currentRunStepSnapshot() +``` + +These methods are provided to allow you to access additional context from within event handlers. In many cases +the handlers should include all the information you need for processing, but if additional context is required it +can be accessed. + +Note: There is not always a relevant context in certain situations (these will be undefined in those cases). + +```ts +await.finalMessages(); + +await.finalRunSteps(); +``` + +These methods are provided for convenience to collect information at the end of a stream. Calling these events +will trigger consumption of the stream until completion and then return the relevant accumulated objects. + +## Chat Streaming + +### Streaming Responses ```ts openai.chat.completions.stream({ stream?: false, … }, options?): ChatCompletionStreamingRunner @@ -18,7 +152,7 @@ If you need to cancel a stream, you can `break` from a `for await` loop or call See an example of streaming helpers in action in [`examples/stream.ts`](examples/stream.ts). -## Automated Function Calls +### Automated Function Calls ```ts openai.chat.completions.runTools({ stream: false, … }, options?): ChatCompletionRunner @@ -69,9 +203,7 @@ See an example of automated function calls in action in Note, `runFunctions` was also previously available, but has been deprecated in favor of `runTools`. -## Runner API - -### Events +### Chat Events #### `.on('connect', () => …)` @@ -148,7 +280,7 @@ The event fired at the end, returning the total usage of the call. The last event fired in the stream. -### Methods +### Chat Methods #### `.abort()` @@ -190,7 +322,7 @@ A promise which resolves with the last message with a `role: "function"`. Throws A promise which resolves with the total usage. -### Fields +### Chat Fields #### `.messages` @@ -200,9 +332,9 @@ A mutable array of all messages in the conversation. The underlying `AbortController` for the runner. -## Examples +### Chat Examples -### Abort on a function call +#### Abort on a function call If you have a function call flow which you intend to _end_ with a certain function call, then you can use the second argument `runner` given to the function to either mutate `runner.messages` or call `runner.abort()`. @@ -238,7 +370,7 @@ async function main() { main(); ``` -### Integrate with `zod` +#### Integrate with `zod` [`zod`](https://www.npmjs.com/package/zod) is a schema validation library which can help with validating the assistant's response to make sure it conforms to a schema. Paired with [`zod-to-json-schema`](https://www.npmjs.com/package/zod-to-json-schema), the validation schema also acts as the `parameters` JSON Schema passed to the API. @@ -287,10 +419,10 @@ main(); See a more fully-fledged example in [`examples/function-call-helpers-zod.ts`](examples/function-call-helpers-zod.ts). -### Integrate with Next.JS +#### Integrate with Next.JS See an example of a Next.JS integration here [`examples/stream-to-client-next.ts`](examples/stream-to-client-next.ts). -### Proxy Streaming to a Browser +#### Proxy Streaming to a Browser See an example of using express to stream to a browser here [`examples/stream-to-client-express.ts`](examples/stream-to-client-express.ts). From 4760ccc4be8b0951414eb443d186d3c506731195 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 15 Mar 2024 13:31:56 -0400 Subject: [PATCH 315/725] release: 4.29.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2f6cf24a7..ded4849c4 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.29.0" + ".": "4.29.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 19dfcc620..741a701b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.29.1 (2024-03-15) + +Full Changelog: [v4.29.0...v4.29.1](https://github.com/openai/openai-node/compare/v4.29.0...v4.29.1) + +### Documentation + +* **readme:** assistant streaming ([#719](https://github.com/openai/openai-node/issues/719)) ([bc9a1ca](https://github.com/openai/openai-node/commit/bc9a1ca308020a88c29d409edc06cdfca8cbf8f5)) + ## 4.29.0 (2024-03-13) Full Changelog: [v4.28.5...v4.29.0](https://github.com/openai/openai-node/compare/v4.28.5...v4.29.0) diff --git a/README.md b/README.md index 93ae9f044..68d337e81 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.29.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.29.1/mod.ts'; ``` diff --git a/build-deno b/build-deno index c49755fda..c08e26dbc 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.29.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.29.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index ce6396c2e..8a6398765 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.29.0", + "version": "4.29.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 0de2f3538..8acef11c3 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.29.0'; // x-release-please-version +export const VERSION = '4.29.1'; // x-release-please-version From 05ff8f7671fe6ce5d9517034f76a166a0bd27803 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 18 Mar 2024 22:27:15 -0400 Subject: [PATCH 316/725] docs: fix typo in CONTRIBUTING.md (#722) --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d9e64025d..9e8f669a7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -68,7 +68,7 @@ pnpm link -—global openai Most tests require you to [set up a mock server](https://github.com/stoplightio/prism) against the OpenAPI spec to run the tests. ```bash -npx prism path/to/your/openapi.yml +npx prism mock path/to/your/openapi.yml ``` ```bash From 139e205ed1ed30cb1df982d852a093dcea945aba Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 19 Mar 2024 06:42:30 -0400 Subject: [PATCH 317/725] chore(internal): update generated pragma comment (#724) --- src/error.ts | 2 +- src/index.ts | 2 +- src/pagination.ts | 2 +- src/resource.ts | 2 +- src/resources/audio/audio.ts | 2 +- src/resources/audio/index.ts | 2 +- src/resources/audio/speech.ts | 2 +- src/resources/audio/transcriptions.ts | 2 +- src/resources/audio/translations.ts | 2 +- src/resources/beta/assistants/assistants.ts | 2 +- src/resources/beta/assistants/files.ts | 2 +- src/resources/beta/assistants/index.ts | 2 +- src/resources/beta/beta.ts | 2 +- src/resources/beta/chat/chat.ts | 2 +- src/resources/beta/chat/completions.ts | 2 +- src/resources/beta/chat/index.ts | 2 +- src/resources/beta/index.ts | 2 +- src/resources/beta/threads/index.ts | 2 +- src/resources/beta/threads/messages/files.ts | 2 +- src/resources/beta/threads/messages/index.ts | 2 +- src/resources/beta/threads/messages/messages.ts | 2 +- src/resources/beta/threads/runs/index.ts | 2 +- src/resources/beta/threads/runs/runs.ts | 2 +- src/resources/beta/threads/runs/steps.ts | 2 +- src/resources/beta/threads/threads.ts | 2 +- src/resources/chat/chat.ts | 2 +- src/resources/chat/completions.ts | 2 +- src/resources/chat/index.ts | 2 +- src/resources/completions.ts | 2 +- src/resources/embeddings.ts | 2 +- src/resources/files.ts | 2 +- src/resources/fine-tuning/fine-tuning.ts | 2 +- src/resources/fine-tuning/index.ts | 2 +- src/resources/fine-tuning/jobs.ts | 2 +- src/resources/images.ts | 2 +- src/resources/index.ts | 2 +- src/resources/models.ts | 2 +- src/resources/moderations.ts | 2 +- src/resources/shared.ts | 2 +- tests/api-resources/audio/speech.test.ts | 2 +- tests/api-resources/audio/transcriptions.test.ts | 2 +- tests/api-resources/audio/translations.test.ts | 2 +- tests/api-resources/beta/assistants/assistants.test.ts | 2 +- tests/api-resources/beta/assistants/files.test.ts | 2 +- tests/api-resources/beta/threads/messages/files.test.ts | 2 +- tests/api-resources/beta/threads/messages/messages.test.ts | 2 +- tests/api-resources/beta/threads/runs/runs.test.ts | 2 +- tests/api-resources/beta/threads/runs/steps.test.ts | 2 +- tests/api-resources/beta/threads/threads.test.ts | 2 +- tests/api-resources/chat/completions.test.ts | 2 +- tests/api-resources/completions.test.ts | 2 +- tests/api-resources/embeddings.test.ts | 2 +- tests/api-resources/files.test.ts | 2 +- tests/api-resources/fine-tuning/jobs.test.ts | 2 +- tests/api-resources/images.test.ts | 2 +- tests/api-resources/models.test.ts | 2 +- tests/api-resources/moderations.test.ts | 2 +- tests/index.test.ts | 2 +- 58 files changed, 58 insertions(+), 58 deletions(-) diff --git a/src/error.ts b/src/error.ts index fd7477ad2..deac34c5d 100644 --- a/src/error.ts +++ b/src/error.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { castToError, Headers } from './core'; diff --git a/src/index.ts b/src/index.ts index 7b3033fa9..9a2b2eaad 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from './core'; import * as Errors from './error'; diff --git a/src/pagination.ts b/src/pagination.ts index 5d890a140..63644e333 100644 --- a/src/pagination.ts +++ b/src/pagination.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { AbstractPage, Response, APIClient, FinalRequestOptions, PageInfo } from './core'; diff --git a/src/resource.ts b/src/resource.ts index 0bf87cf33..87847c879 100644 --- a/src/resource.ts +++ b/src/resource.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import type { OpenAI } from './index'; diff --git a/src/resources/audio/audio.ts b/src/resources/audio/audio.ts index 960577b0d..f3fcba4c3 100644 --- a/src/resources/audio/audio.ts +++ b/src/resources/audio/audio.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'openai/resource'; import * as SpeechAPI from 'openai/resources/audio/speech'; diff --git a/src/resources/audio/index.ts b/src/resources/audio/index.ts index 17c81d3bb..31732a267 100644 --- a/src/resources/audio/index.ts +++ b/src/resources/audio/index.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. export { Audio } from './audio'; export { SpeechCreateParams, Speech } from './speech'; diff --git a/src/resources/audio/speech.ts b/src/resources/audio/speech.ts index 7d0ee2195..4b83bae3e 100644 --- a/src/resources/audio/speech.ts +++ b/src/resources/audio/speech.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index ab2079ed6..f01e8556d 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index e68a714fb..234933236 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; diff --git a/src/resources/beta/assistants/assistants.ts b/src/resources/beta/assistants/assistants.ts index b4e92fd92..1e8ca6ee9 100644 --- a/src/resources/beta/assistants/assistants.ts +++ b/src/resources/beta/assistants/assistants.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; diff --git a/src/resources/beta/assistants/files.ts b/src/resources/beta/assistants/files.ts index 7de700e50..51fd0c0d8 100644 --- a/src/resources/beta/assistants/files.ts +++ b/src/resources/beta/assistants/files.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; diff --git a/src/resources/beta/assistants/index.ts b/src/resources/beta/assistants/index.ts index 0ae8c9c67..c191d338b 100644 --- a/src/resources/beta/assistants/index.ts +++ b/src/resources/beta/assistants/index.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. export { Assistant, diff --git a/src/resources/beta/beta.ts b/src/resources/beta/beta.ts index 74056ed1d..43ee8c7e7 100644 --- a/src/resources/beta/beta.ts +++ b/src/resources/beta/beta.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'openai/resource'; import * as AssistantsAPI from 'openai/resources/beta/assistants/assistants'; diff --git a/src/resources/beta/chat/chat.ts b/src/resources/beta/chat/chat.ts index a9cadc681..2b4a7a404 100644 --- a/src/resources/beta/chat/chat.ts +++ b/src/resources/beta/chat/chat.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'openai/resource'; import * as CompletionsAPI from 'openai/resources/beta/chat/completions'; diff --git a/src/resources/beta/chat/completions.ts b/src/resources/beta/chat/completions.ts index e7f89f5cf..95fd0ac79 100644 --- a/src/resources/beta/chat/completions.ts +++ b/src/resources/beta/chat/completions.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; diff --git a/src/resources/beta/chat/index.ts b/src/resources/beta/chat/index.ts index 8d0ee40ae..23b1b8ff3 100644 --- a/src/resources/beta/chat/index.ts +++ b/src/resources/beta/chat/index.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. export { Chat } from './chat'; export { Completions } from './completions'; diff --git a/src/resources/beta/index.ts b/src/resources/beta/index.ts index d8770c29a..7f35730fb 100644 --- a/src/resources/beta/index.ts +++ b/src/resources/beta/index.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. export { Assistant, diff --git a/src/resources/beta/threads/index.ts b/src/resources/beta/threads/index.ts index 3585be846..097a52819 100644 --- a/src/resources/beta/threads/index.ts +++ b/src/resources/beta/threads/index.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. export { Annotation, diff --git a/src/resources/beta/threads/messages/files.ts b/src/resources/beta/threads/messages/files.ts index 72c01bb97..994b09d5f 100644 --- a/src/resources/beta/threads/messages/files.ts +++ b/src/resources/beta/threads/messages/files.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; diff --git a/src/resources/beta/threads/messages/index.ts b/src/resources/beta/threads/messages/index.ts index f68edbbd4..ef446d012 100644 --- a/src/resources/beta/threads/messages/index.ts +++ b/src/resources/beta/threads/messages/index.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. export { Annotation, diff --git a/src/resources/beta/threads/messages/messages.ts b/src/resources/beta/threads/messages/messages.ts index b38a4bbf0..a2f2aaf1c 100644 --- a/src/resources/beta/threads/messages/messages.ts +++ b/src/resources/beta/threads/messages/messages.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; diff --git a/src/resources/beta/threads/runs/index.ts b/src/resources/beta/threads/runs/index.ts index 7fa34637a..636b5d850 100644 --- a/src/resources/beta/threads/runs/index.ts +++ b/src/resources/beta/threads/runs/index.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. export { CodeInterpreterLogs, diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 8fe09ecc6..a28dd9ae9 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'openai/core'; import { APIPromise } from 'openai/core'; diff --git a/src/resources/beta/threads/runs/steps.ts b/src/resources/beta/threads/runs/steps.ts index 4218e9769..f0816fdb2 100644 --- a/src/resources/beta/threads/runs/steps.ts +++ b/src/resources/beta/threads/runs/steps.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index cbde41f89..266f6709e 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'openai/core'; import { APIPromise } from 'openai/core'; diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 07c7700dc..6c7bccb22 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'openai/resource'; import * as CompletionsAPI from 'openai/resources/chat/completions'; diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 41216a8e3..8119639f2 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'openai/core'; import { APIPromise } from 'openai/core'; diff --git a/src/resources/chat/index.ts b/src/resources/chat/index.ts index b8b69e453..78a7516ed 100644 --- a/src/resources/chat/index.ts +++ b/src/resources/chat/index.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. export { Chat } from './chat'; export { diff --git a/src/resources/completions.ts b/src/resources/completions.ts index 83ecb3e99..b64c3a166 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'openai/core'; import { APIPromise } from 'openai/core'; diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index 3f59d2a7c..208ceb240 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; diff --git a/src/resources/files.ts b/src/resources/files.ts index cda487a63..820c7a1fa 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; diff --git a/src/resources/fine-tuning/fine-tuning.ts b/src/resources/fine-tuning/fine-tuning.ts index 5d2d27ac3..e62f8f09c 100644 --- a/src/resources/fine-tuning/fine-tuning.ts +++ b/src/resources/fine-tuning/fine-tuning.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'openai/resource'; import * as JobsAPI from 'openai/resources/fine-tuning/jobs'; diff --git a/src/resources/fine-tuning/index.ts b/src/resources/fine-tuning/index.ts index c2cac49ac..2885f62f4 100644 --- a/src/resources/fine-tuning/index.ts +++ b/src/resources/fine-tuning/index.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. export { FineTuning } from './fine-tuning'; export { diff --git a/src/resources/fine-tuning/jobs.ts b/src/resources/fine-tuning/jobs.ts index 7bc216d7c..eb77405ca 100644 --- a/src/resources/fine-tuning/jobs.ts +++ b/src/resources/fine-tuning/jobs.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; diff --git a/src/resources/images.ts b/src/resources/images.ts index bc5b9edc0..95f0b6ff2 100644 --- a/src/resources/images.ts +++ b/src/resources/images.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; diff --git a/src/resources/index.ts b/src/resources/index.ts index 16ce85123..a9741f5fd 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. export * from './chat/index'; export * from './shared'; diff --git a/src/resources/models.ts b/src/resources/models.ts index 6c6c3379c..4d5bc57e9 100644 --- a/src/resources/models.ts +++ b/src/resources/models.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; diff --git a/src/resources/moderations.ts b/src/resources/moderations.ts index a43006ccf..b9b9d7fc6 100644 --- a/src/resources/moderations.ts +++ b/src/resources/moderations.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; diff --git a/src/resources/shared.ts b/src/resources/shared.ts index a6b2c11bd..93fa05fa4 100644 --- a/src/resources/shared.ts +++ b/src/resources/shared.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. export interface ErrorObject { code: string | null; diff --git a/tests/api-resources/audio/speech.test.ts b/tests/api-resources/audio/speech.test.ts index b0cf1a71c..18302ce9a 100644 --- a/tests/api-resources/audio/speech.test.ts +++ b/tests/api-resources/audio/speech.test.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import OpenAI from 'openai'; diff --git a/tests/api-resources/audio/transcriptions.test.ts b/tests/api-resources/audio/transcriptions.test.ts index 33652af53..3fc4ca22b 100644 --- a/tests/api-resources/audio/transcriptions.test.ts +++ b/tests/api-resources/audio/transcriptions.test.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import OpenAI, { toFile } from 'openai'; import { Response } from 'node-fetch'; diff --git a/tests/api-resources/audio/translations.test.ts b/tests/api-resources/audio/translations.test.ts index 723625f6e..0853bedfb 100644 --- a/tests/api-resources/audio/translations.test.ts +++ b/tests/api-resources/audio/translations.test.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import OpenAI, { toFile } from 'openai'; import { Response } from 'node-fetch'; diff --git a/tests/api-resources/beta/assistants/assistants.test.ts b/tests/api-resources/beta/assistants/assistants.test.ts index 60ca0a6e2..b11075d06 100644 --- a/tests/api-resources/beta/assistants/assistants.test.ts +++ b/tests/api-resources/beta/assistants/assistants.test.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import OpenAI from 'openai'; import { Response } from 'node-fetch'; diff --git a/tests/api-resources/beta/assistants/files.test.ts b/tests/api-resources/beta/assistants/files.test.ts index 8db328442..e285b4664 100644 --- a/tests/api-resources/beta/assistants/files.test.ts +++ b/tests/api-resources/beta/assistants/files.test.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import OpenAI from 'openai'; import { Response } from 'node-fetch'; diff --git a/tests/api-resources/beta/threads/messages/files.test.ts b/tests/api-resources/beta/threads/messages/files.test.ts index b4a00a868..58c8813fe 100644 --- a/tests/api-resources/beta/threads/messages/files.test.ts +++ b/tests/api-resources/beta/threads/messages/files.test.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import OpenAI from 'openai'; import { Response } from 'node-fetch'; diff --git a/tests/api-resources/beta/threads/messages/messages.test.ts b/tests/api-resources/beta/threads/messages/messages.test.ts index 35538efb9..3a80bfe1e 100644 --- a/tests/api-resources/beta/threads/messages/messages.test.ts +++ b/tests/api-resources/beta/threads/messages/messages.test.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import OpenAI from 'openai'; import { Response } from 'node-fetch'; diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts index 45f17040a..5e1b363fd 100644 --- a/tests/api-resources/beta/threads/runs/runs.test.ts +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import OpenAI from 'openai'; import { Response } from 'node-fetch'; diff --git a/tests/api-resources/beta/threads/runs/steps.test.ts b/tests/api-resources/beta/threads/runs/steps.test.ts index 76eec269a..76495a1a3 100644 --- a/tests/api-resources/beta/threads/runs/steps.test.ts +++ b/tests/api-resources/beta/threads/runs/steps.test.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import OpenAI from 'openai'; import { Response } from 'node-fetch'; diff --git a/tests/api-resources/beta/threads/threads.test.ts b/tests/api-resources/beta/threads/threads.test.ts index 9243dc11c..24cb815a7 100644 --- a/tests/api-resources/beta/threads/threads.test.ts +++ b/tests/api-resources/beta/threads/threads.test.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import OpenAI from 'openai'; import { Response } from 'node-fetch'; diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 49f3562b0..e0ccb3910 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import OpenAI from 'openai'; import { Response } from 'node-fetch'; diff --git a/tests/api-resources/completions.test.ts b/tests/api-resources/completions.test.ts index 85fc68498..2641bf7e3 100644 --- a/tests/api-resources/completions.test.ts +++ b/tests/api-resources/completions.test.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import OpenAI from 'openai'; import { Response } from 'node-fetch'; diff --git a/tests/api-resources/embeddings.test.ts b/tests/api-resources/embeddings.test.ts index bcb5ffbba..d4e1f3240 100644 --- a/tests/api-resources/embeddings.test.ts +++ b/tests/api-resources/embeddings.test.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import OpenAI from 'openai'; import { Response } from 'node-fetch'; diff --git a/tests/api-resources/files.test.ts b/tests/api-resources/files.test.ts index 9e6373aba..514f42e3a 100644 --- a/tests/api-resources/files.test.ts +++ b/tests/api-resources/files.test.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import OpenAI, { toFile } from 'openai'; import { Response } from 'node-fetch'; diff --git a/tests/api-resources/fine-tuning/jobs.test.ts b/tests/api-resources/fine-tuning/jobs.test.ts index 22f457303..d8f230abd 100644 --- a/tests/api-resources/fine-tuning/jobs.test.ts +++ b/tests/api-resources/fine-tuning/jobs.test.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import OpenAI from 'openai'; import { Response } from 'node-fetch'; diff --git a/tests/api-resources/images.test.ts b/tests/api-resources/images.test.ts index 418a55eb0..33d633a63 100644 --- a/tests/api-resources/images.test.ts +++ b/tests/api-resources/images.test.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import OpenAI, { toFile } from 'openai'; import { Response } from 'node-fetch'; diff --git a/tests/api-resources/models.test.ts b/tests/api-resources/models.test.ts index 91eb0d055..ca1f98365 100644 --- a/tests/api-resources/models.test.ts +++ b/tests/api-resources/models.test.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import OpenAI from 'openai'; import { Response } from 'node-fetch'; diff --git a/tests/api-resources/moderations.test.ts b/tests/api-resources/moderations.test.ts index ad315df5d..ef7298fa9 100644 --- a/tests/api-resources/moderations.test.ts +++ b/tests/api-resources/moderations.test.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import OpenAI from 'openai'; import { Response } from 'node-fetch'; diff --git a/tests/index.test.ts b/tests/index.test.ts index 3fb42a80a..cd5f2a0a9 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -1,4 +1,4 @@ -// File generated from our OpenAPI spec by Stainless. +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import OpenAI from 'openai'; import { APIUserAbortError } from 'openai'; From 6a2c41b0ce833eba0cdea6a7d221697f3be26abb Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 19 Mar 2024 10:13:42 -0400 Subject: [PATCH 318/725] docs: assistant improvements (#725) --- README.md | 31 +++++++++++++++++++++++++++++++ helpers.md | 37 ++++++++++++++++++++++++++++++------- 2 files changed, 61 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 68d337e81..1eca06c85 100644 --- a/README.md +++ b/README.md @@ -100,6 +100,37 @@ Documentation for each method, request param, and response field are available i > [!IMPORTANT] > Previous versions of this SDK used a `Configuration` class. See the [v3 to v4 migration guide](https://github.com/openai/openai-node/discussions/217). +### Streaming Helpers + +The SDK also includes helpers to process streams and handle the incoming events. + +```ts +const run = openai.beta.threads.runs + .createAndStream(thread.id, { + assistant_id: assistant.id, + }) + .on('textCreated', (text) => process.stdout.write('\nassistant > ')) + .on('textDelta', (textDelta, snapshot) => process.stdout.write(textDelta.value)) + .on('toolCallCreated', (toolCall) => process.stdout.write(`\nassistant > ${toolCall.type}\n\n`)) + .on('toolCallDelta', (toolCallDelta, snapshot) => { + if (toolCallDelta.type === 'code_interpreter') { + if (toolCallDelta.code_interpreter.input) { + process.stdout.write(toolCallDelta.code_interpreter.input); + } + if (toolCallDelta.code_interpreter.outputs) { + process.stdout.write('\noutput >\n'); + toolCallDelta.code_interpreter.outputs.forEach((output) => { + if (output.type === 'logs') { + process.stdout.write(`\n${output.logs}\n`); + } + }); + } + } + }); +``` + +More information on streaming helpers can be found in the dedicated documentation: [helpers.md](helpers.md) + ### Streaming responses This library provides several conveniences for streaming chat completions, for example: diff --git a/helpers.md b/helpers.md index 9f01a126a..9a94a618e 100644 --- a/helpers.md +++ b/helpers.md @@ -36,6 +36,29 @@ const run = openai.beta.threads.runs }); ``` +### Starting a stream + +There are three helper methods for creating streams: + +```ts +openai.beta.threads.runs.createAndStream(); +``` + +This method can be used to start and stream the response to an existing run with an associated thread +that is already populated with messages. + +```ts +openai.beta.threads.createAndRunStream(); +``` + +This method can be used to add a message to a thread, start a run and then stream the response. + +```ts +openai.beta.threads.runs.submitToolOutputsStream(); +``` + +This method can be used to submit a tool output to a run waiting on the output and start a stream. + ### Assistant Events The assistant API provides events you can subscribe to for the following events. @@ -108,25 +131,25 @@ The last event send when a stream ends. The assistant streaming object also provides a few methods for convenience: ```ts -.currentEvent() +.currentEvent(): AssistantStreamEvent | undefined -.currentRun() +.currentRun(): Run | undefined -.currentMessageSnapshot() +.currentMessageSnapshot(): Message -.currentRunStepSnapshot() +.currentRunStepSnapshot(): Runs.RunStep ``` These methods are provided to allow you to access additional context from within event handlers. In many cases the handlers should include all the information you need for processing, but if additional context is required it can be accessed. -Note: There is not always a relevant context in certain situations (these will be undefined in those cases). +Note: There is not always a relevant context in certain situations (these will be `undefined` in those cases). ```ts -await.finalMessages(); +await .finalMessages() : Promise -await.finalRunSteps(); +await .finalRunSteps(): Promise ``` These methods are provided for convenience to collect information at the end of a stream. Calling these events From dda3f6890cf6a6b8f885a6470240b3036eab3b09 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 19 Mar 2024 10:14:03 -0400 Subject: [PATCH 319/725] release: 4.29.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 19 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ded4849c4..fc4efb3a0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.29.1" + ".": "4.29.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 741a701b3..497a341af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 4.29.2 (2024-03-19) + +Full Changelog: [v4.29.1...v4.29.2](https://github.com/openai/openai-node/compare/v4.29.1...v4.29.2) + +### Chores + +* **internal:** update generated pragma comment ([#724](https://github.com/openai/openai-node/issues/724)) ([139e205](https://github.com/openai/openai-node/commit/139e205ed1ed30cb1df982d852a093dcea945aba)) + + +### Documentation + +* assistant improvements ([#725](https://github.com/openai/openai-node/issues/725)) ([6a2c41b](https://github.com/openai/openai-node/commit/6a2c41b0ce833eba0cdea6a7d221697f3be26abb)) +* fix typo in CONTRIBUTING.md ([#722](https://github.com/openai/openai-node/issues/722)) ([05ff8f7](https://github.com/openai/openai-node/commit/05ff8f7671fe6ce5d9517034f76a166a0bd27803)) + ## 4.29.1 (2024-03-15) Full Changelog: [v4.29.0...v4.29.1](https://github.com/openai/openai-node/compare/v4.29.0...v4.29.1) diff --git a/README.md b/README.md index 1eca06c85..9699fca42 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.29.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.29.2/mod.ts'; ``` diff --git a/build-deno b/build-deno index c08e26dbc..25569475f 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.29.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.29.2/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 8a6398765..25994c236 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.29.1", + "version": "4.29.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 8acef11c3..a9177ff54 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.29.1'; // x-release-please-version +export const VERSION = '4.29.2'; // x-release-please-version From 7d87199f5245e9c5a4ebee34e15838ae5ce47100 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 19 Mar 2024 19:00:03 -0400 Subject: [PATCH 320/725] fix(internal): make toFile use input file's options (#727) --- src/uploads.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/uploads.ts b/src/uploads.ts index 2398baf35..081827c9a 100644 --- a/src/uploads.ts +++ b/src/uploads.ts @@ -102,11 +102,14 @@ export type ToFileInput = Uploadable | Exclude | AsyncIter export async function toFile( value: ToFileInput | PromiseLike, name?: string | null | undefined, - options: FilePropertyBag | undefined = {}, + options?: FilePropertyBag | undefined, ): Promise { // If it's a promise, resolve it. value = await value; + // Use the file's options if there isn't one provided + options ??= isFileLike(value) ? { lastModified: value.lastModified, type: value.type } : {}; + if (isResponseLike(value)) { const blob = await value.blob(); name ||= new URL(value.url).pathname.split(/[\\/]/).pop() ?? 'unknown_file'; From 3c59fa750cf25fc65395482794b8c3b90f826674 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 20 Mar 2024 16:01:47 -0400 Subject: [PATCH 321/725] docs(readme): consistent use of sentence case in headings (#729) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9699fca42..a7bf62f94 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ async function main() { main(); ``` -## Streaming Responses +## Streaming responses We provide support for streaming responses using Server Sent Events (SSE). @@ -256,7 +256,7 @@ Note that `runFunctions` was previously available as well, but has been deprecat Read more about various examples such as with integrating with [zod](helpers.md#integrate-with-zod), [next.js](helpers.md#integrate-wtih-next-js), and [proxying a stream to the browser](helpers.md#proxy-streaming-to-a-browser). -## File Uploads +## File uploads Request parameters that correspond to file uploads can be passed in many different forms: @@ -497,7 +497,7 @@ await openai.models.list({ }); ``` -## Semantic Versioning +## Semantic versioning This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions: From a7cc3e15bf2ed64bf02a559d2956a3f89f43e5ff Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 20 Mar 2024 23:26:10 -0400 Subject: [PATCH 322/725] docs(readme): document how to make undocumented requests (#730) --- README.md | 50 ++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 48 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a7bf62f94..6676cba0d 100644 --- a/README.md +++ b/README.md @@ -437,7 +437,51 @@ console.log(raw.headers.get('X-My-Header')); console.log(chatCompletion); ``` -## Customizing the fetch client +### Making custom/undocumented requests + +This library is typed for convenient access to the documented API. If you need to access undocumented +endpoints, params, or response properties, the library can still be used. + +#### Undocumented endpoints + +To make requests to undocumented endpoints, you can use `client.get`, `client.post`, and other HTTP verbs. +Options on the client, such as retries, will be respected when making these requests. + +```ts +await client.post('/some/path', { + body: { some_prop: 'foo' }, + query: { some_query_arg: 'bar' }, +}); +``` + +#### Undocumented params + +To make requests using undocumented parameters, you may use `// @ts-expect-error` on the undocumented +parameter. This library doesn't validate at runtime that the request matches the type, so any extra values you +send will be sent as-is. + +```ts +client.foo.create({ + foo: 'my_param', + bar: 12, + // @ts-expect-error baz is not yet public + baz: 'undocumented option', +}); +``` + +For requests with the `GET` verb, any extra params will be in the query, all other requests will send the +extra param in the body. + +If you want to explicitly send an extra argument, you can do so with the `query`, `body`, and `headers` request +options. + +#### Undocumented properties + +To access undocumented response properties, you may access the response object with `// @ts-expect-error` on +the response object, or cast the response object to the requisite type. Like the request params, we do not +validate or strip extra properties from the response from the API. + +### Customizing the fetch client By default, this library uses `node-fetch` in Node, and expects a global `fetch` function in other environments. @@ -455,6 +499,8 @@ import OpenAI from 'openai'; To do the inverse, add `import "openai/shims/node"` (which does import polyfills). This can also be useful if you are getting the wrong TypeScript types for `Response` ([more details](https://github.com/openai/openai-node/tree/master/src/_shims#readme)). +### Logging and middleware + You may also provide a custom `fetch` function when instantiating the client, which can be used to inspect or alter the `Request` or `Response` before/after each request: @@ -475,7 +521,7 @@ const client = new OpenAI({ Note that if given a `DEBUG=true` environment variable, this library will log all requests and responses automatically. This is intended for debugging purposes only and may change in the future without notice. -## Configuring an HTTP(S) Agent (e.g., for proxies) +### Configuring an HTTP(S) Agent (e.g., for proxies) By default, this library uses a stable agent for all http/https requests to reuse TCP connections, eliminating many TCP & TLS handshakes and shaving around 100ms off most requests. From 1b5f9027728341061ec40b32e1010928db5253fc Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 21 Mar 2024 11:55:15 -0400 Subject: [PATCH 323/725] fix: handle process.env being undefined in debug func (#733) --- src/core.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.ts b/src/core.ts index a94251808..4364c7a3c 100644 --- a/src/core.ts +++ b/src/core.ts @@ -1075,7 +1075,7 @@ function applyHeadersMut(targetHeaders: Headers, newHeaders: Headers): void { } export function debug(action: string, ...args: any[]) { - if (typeof process !== 'undefined' && process.env['DEBUG'] === 'true') { + if (typeof process !== 'undefined' && process?.env?.['DEBUG'] === 'true') { console.log(`OpenAI:DEBUG:${action}`, ...args); } } From f2925e54f32f972ab439d4a6d36a422ec56524c3 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 25 Mar 2024 07:30:00 -0400 Subject: [PATCH 324/725] fix(client): correctly send deno version header (#736) --- src/core.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core.ts b/src/core.ts index 4364c7a3c..39fe0f97f 100644 --- a/src/core.ts +++ b/src/core.ts @@ -818,7 +818,8 @@ const getPlatformProperties = (): PlatformProperties => { 'X-Stainless-OS': normalizePlatform(Deno.build.os), 'X-Stainless-Arch': normalizeArch(Deno.build.arch), 'X-Stainless-Runtime': 'deno', - 'X-Stainless-Runtime-Version': Deno.version, + 'X-Stainless-Runtime-Version': + typeof Deno.version === 'string' ? Deno.version : Deno.version?.deno ?? 'unknown', }; } if (typeof EdgeRuntime !== 'undefined') { From 1b1d357314d9b1995c9787fec9fa8514fd384886 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 26 Mar 2024 19:08:47 -0400 Subject: [PATCH 325/725] chore(internal): add type (#737) --- src/streaming.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/streaming.ts b/src/streaming.ts index c452737aa..6b0f2a345 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -201,7 +201,7 @@ export class Stream implements AsyncIterable { async start() { iter = self[Symbol.asyncIterator](); }, - async pull(ctrl) { + async pull(ctrl: any) { try { const { value, done } = await iter.next(); if (done) return ctrl.close(); From 3dcaa345a7395e80cb91f32c5b2361a5dd8d1222 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 27 Mar 2024 19:51:22 +0000 Subject: [PATCH 326/725] feat: assistant fromReadableStream (#738) --- src/lib/AssistantStream.ts | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/src/lib/AssistantStream.ts b/src/lib/AssistantStream.ts index d70cb7358..c0a176db5 100644 --- a/src/lib/AssistantStream.ts +++ b/src/lib/AssistantStream.ts @@ -158,6 +158,32 @@ export class AssistantStream }; } + static fromReadableStream(stream: ReadableStream): AssistantStream { + const runner = new AssistantStream(); + runner._run(() => runner._fromReadableStream(stream)); + return runner; + } + + protected async _fromReadableStream( + readableStream: ReadableStream, + options?: Core.RequestOptions, + ): Promise { + const signal = options?.signal; + if (signal) { + if (signal.aborted) this.controller.abort(); + signal.addEventListener('abort', () => this.controller.abort()); + } + this._connected(); + const stream = Stream.fromReadableStream(readableStream, this.controller); + for await (const event of stream) { + this.#handleEvent(event); + } + if (stream.controller.signal?.aborted) { + throw new APIUserAbortError(); + } + return this._addRun(this.#endRequest()); + } + toReadableStream(): ReadableStream { const stream = new Stream(this[Symbol.asyncIterator].bind(this), this.controller); return stream.toReadableStream(); @@ -385,7 +411,7 @@ export class AssistantStream throw new OpenAIError(`stream has ended, this shouldn't happen`); } - if (!this.#finalRun) throw Error('Final run has been been received'); + if (!this.#finalRun) throw Error('Final run has not been received'); return this.#finalRun; } From 237388533476b8b34fbda7ce5fbb9b466dae9c3c Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 27 Mar 2024 20:38:46 +0000 Subject: [PATCH 327/725] fix(example): correcting example (#739) --- examples/assistant-stream-raw.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/assistant-stream-raw.ts b/examples/assistant-stream-raw.ts index a882d219a..399064807 100644 --- a/examples/assistant-stream-raw.ts +++ b/examples/assistant-stream-raw.ts @@ -1,3 +1,5 @@ +#!/usr/bin/env -S npm run tsn -T + import OpenAI from 'openai'; const openai = new OpenAI(); @@ -27,7 +29,7 @@ async function main() { for await (const event of stream) { if (event.event === 'thread.message.delta') { const chunk = event.data.delta.content?.[0]; - if (chunk && 'text' in chunk) { + if (chunk && 'text' in chunk && chunk.text.value) { process.stdout.write(chunk.text.value); } } From 540d9ca9b9d84df6987fdedf640c2fa761417f2e Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 28 Mar 2024 05:06:39 +0000 Subject: [PATCH 328/725] release: 4.30.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 27 +++++++++++++++++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 32 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index fc4efb3a0..1e5205f3f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.29.2" + ".": "4.30.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 497a341af..bbc1785dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## 4.30.0 (2024-03-28) + +Full Changelog: [v4.29.2...v4.30.0](https://github.com/openai/openai-node/compare/v4.29.2...v4.30.0) + +### Features + +* assistant fromReadableStream ([#738](https://github.com/openai/openai-node/issues/738)) ([8f4ba18](https://github.com/openai/openai-node/commit/8f4ba18268797d6c54c393d701b13c7ff2aa71bc)) + + +### Bug Fixes + +* **client:** correctly send deno version header ([#736](https://github.com/openai/openai-node/issues/736)) ([b7ea175](https://github.com/openai/openai-node/commit/b7ea175b2854909de77b920dd25613f1d2daefd6)) +* **example:** correcting example ([#739](https://github.com/openai/openai-node/issues/739)) ([a819551](https://github.com/openai/openai-node/commit/a81955175da24e196490a38850bbf6f9b6779ea8)) +* handle process.env being undefined in debug func ([#733](https://github.com/openai/openai-node/issues/733)) ([2baa149](https://github.com/openai/openai-node/commit/2baa1491f7834f779ca49c3027d2344ead412dd2)) +* **internal:** make toFile use input file's options ([#727](https://github.com/openai/openai-node/issues/727)) ([15880d7](https://github.com/openai/openai-node/commit/15880d77b6c1cf58a6b9cfdbf7ae4442cdbddbd6)) + + +### Chores + +* **internal:** add type ([#737](https://github.com/openai/openai-node/issues/737)) ([18c1989](https://github.com/openai/openai-node/commit/18c19891f783019517d7961fe03c4d98de0fcf93)) + + +### Documentation + +* **readme:** consistent use of sentence case in headings ([#729](https://github.com/openai/openai-node/issues/729)) ([7e515fd](https://github.com/openai/openai-node/commit/7e515fde433ebfb7871d75d53915eef05a08a916)) +* **readme:** document how to make undocumented requests ([#730](https://github.com/openai/openai-node/issues/730)) ([a06d861](https://github.com/openai/openai-node/commit/a06d861a015eeee411fa2c6ed9bf3000313cfc03)) + ## 4.29.2 (2024-03-19) Full Changelog: [v4.29.1...v4.29.2](https://github.com/openai/openai-node/compare/v4.29.1...v4.29.2) diff --git a/README.md b/README.md index 6676cba0d..892c0ca1b 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.29.2/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.30.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index 25569475f..6290acb0c 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.29.2/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.30.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 25994c236..57fa7aec6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.29.2", + "version": "4.30.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index a9177ff54..2eb76a884 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.29.2'; // x-release-please-version +export const VERSION = '4.30.0'; // x-release-please-version From 7741b186fe7b04bf69594b1fb106e1deba3e52e0 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 29 Mar 2024 20:28:58 +0000 Subject: [PATCH 329/725] fix(streaming): trigger all event handlers with fromReadableStream (#741) --- src/lib/AssistantStream.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/AssistantStream.ts b/src/lib/AssistantStream.ts index c0a176db5..ece0ec65c 100644 --- a/src/lib/AssistantStream.ts +++ b/src/lib/AssistantStream.ts @@ -176,7 +176,7 @@ export class AssistantStream this._connected(); const stream = Stream.fromReadableStream(readableStream, this.controller); for await (const event of stream) { - this.#handleEvent(event); + this.#addEvent(event); } if (stream.controller.signal?.aborted) { throw new APIUserAbortError(); From 149d60e80ac5ab5b12a10a38f9b0d159dffd56ae Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 29 Mar 2024 21:08:19 +0000 Subject: [PATCH 330/725] feat(api): adding temperature parameter (#742) --- .../beta/threads/messages/messages.ts | 16 ++++--- src/resources/beta/threads/runs/runs.ts | 19 ++++++++ src/resources/beta/threads/threads.ts | 44 +++++++++++++++---- .../beta/threads/runs/runs.test.ts | 1 + .../beta/threads/threads.test.ts | 1 + 5 files changed, 66 insertions(+), 15 deletions(-) diff --git a/src/resources/beta/threads/messages/messages.ts b/src/resources/beta/threads/messages/messages.ts index a2f2aaf1c..1c37eb2ff 100644 --- a/src/resources/beta/threads/messages/messages.ts +++ b/src/resources/beta/threads/messages/messages.ts @@ -353,9 +353,9 @@ export interface Message { role: 'user' | 'assistant'; /** - * If applicable, the ID of the - * [run](https://platform.openai.com/docs/api-reference/runs) associated with the - * authoring of this message. + * The ID of the [run](https://platform.openai.com/docs/api-reference/runs) + * associated with the creation of this message. Value is `null` when messages are + * created manually using the create message or create thread endpoints. */ run_id: string | null; @@ -501,10 +501,14 @@ export interface MessageCreateParams { content: string; /** - * The role of the entity that is creating the message. Currently only `user` is - * supported. + * The role of the entity that is creating the message. Allowed values include: + * + * - `user`: Indicates the message is sent by an actual user and should be used in + * most cases to represent user-generated messages. + * - `assistant`: Indicates the message is generated by the assistant. Use this + * value to insert messages from the assistant into the conversation. */ - role: 'user'; + role: 'user' | 'assistant'; /** * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index a28dd9ae9..54c671131 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -331,6 +331,11 @@ export interface Run { * in a terminal state (i.e. `in_progress`, `queued`, etc.). */ usage: Run.Usage | null; + + /** + * The sampling temperature used for this run. If not set, defaults to 1. + */ + temperature?: number | null; } export namespace Run { @@ -461,6 +466,13 @@ export interface RunCreateParamsBase { */ stream?: boolean | null; + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. + */ + temperature?: number | null; + /** * Override the tools the assistant can use for this run. This is useful for * modifying the behavior on a per-run basis. @@ -555,6 +567,13 @@ export interface RunCreateAndStreamParams { */ model?: string | null; + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. + */ + temperature?: number | null; + /** * Override the tools the assistant can use for this run. This is useful for * modifying the behavior on a per-run basis. diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 266f6709e..9b4785850 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -164,10 +164,14 @@ export namespace ThreadCreateParams { content: string; /** - * The role of the entity that is creating the message. Currently only `user` is - * supported. + * The role of the entity that is creating the message. Allowed values include: + * + * - `user`: Indicates the message is sent by an actual user and should be used in + * most cases to represent user-generated messages. + * - `assistant`: Indicates the message is generated by the assistant. Use this + * value to insert messages from the assistant into the conversation. */ - role: 'user'; + role: 'user' | 'assistant'; /** * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that @@ -238,6 +242,13 @@ export interface ThreadCreateAndRunParamsBase { */ stream?: boolean | null; + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. + */ + temperature?: number | null; + /** * If no thread is provided, an empty thread will be created. */ @@ -280,10 +291,14 @@ export namespace ThreadCreateAndRunParams { content: string; /** - * The role of the entity that is creating the message. Currently only `user` is - * supported. + * The role of the entity that is creating the message. Allowed values include: + * + * - `user`: Indicates the message is sent by an actual user and should be used in + * most cases to represent user-generated messages. + * - `assistant`: Indicates the message is generated by the assistant. Use this + * value to insert messages from the assistant into the conversation. */ - role: 'user'; + role: 'user' | 'assistant'; /** * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that @@ -355,6 +370,13 @@ export interface ThreadCreateAndRunStreamParams { */ model?: string | null; + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. + */ + temperature?: number | null; + /** * If no thread is provided, an empty thread will be created. */ @@ -397,10 +419,14 @@ export namespace ThreadCreateAndRunStreamParams { content: string; /** - * The role of the entity that is creating the message. Currently only `user` is - * supported. + * The role of the entity that is creating the message. Allowed values include: + * + * - `user`: Indicates the message is sent by an actual user and should be used in + * most cases to represent user-generated messages. + * - `assistant`: Indicates the message is generated by the assistant. Use this + * value to insert messages from the assistant into the conversation. */ - role: 'user'; + role: 'user' | 'assistant'; /** * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts index 5e1b363fd..5f17c1b58 100644 --- a/tests/api-resources/beta/threads/runs/runs.test.ts +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -28,6 +28,7 @@ describe('resource runs', () => { metadata: {}, model: 'string', stream: false, + temperature: 1, tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], }); }); diff --git a/tests/api-resources/beta/threads/threads.test.ts b/tests/api-resources/beta/threads/threads.test.ts index 24cb815a7..3606019bd 100644 --- a/tests/api-resources/beta/threads/threads.test.ts +++ b/tests/api-resources/beta/threads/threads.test.ts @@ -109,6 +109,7 @@ describe('resource threads', () => { metadata: {}, model: 'string', stream: false, + temperature: 1, thread: { messages: [ { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, From abb0be7bcc6777e2efa8682c8a044842addb755a Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sat, 30 Mar 2024 05:06:22 +0000 Subject: [PATCH 331/725] release: 4.31.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1e5205f3f..485bcd4e9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.30.0" + ".": "4.31.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index bbc1785dc..6a28f8d3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.31.0 (2024-03-30) + +Full Changelog: [v4.30.0...v4.31.0](https://github.com/openai/openai-node/compare/v4.30.0...v4.31.0) + +### Features + +* **api:** adding temperature parameter ([#742](https://github.com/openai/openai-node/issues/742)) ([b173b05](https://github.com/openai/openai-node/commit/b173b05eb52266d8f2c835ec4ed71cba8cdc609b)) + + +### Bug Fixes + +* **streaming:** trigger all event handlers with fromReadableStream ([#741](https://github.com/openai/openai-node/issues/741)) ([7b1e593](https://github.com/openai/openai-node/commit/7b1e5937d97b309ed51928b4388dcde74abda8dc)) + ## 4.30.0 (2024-03-28) Full Changelog: [v4.29.2...v4.30.0](https://github.com/openai/openai-node/compare/v4.29.2...v4.30.0) diff --git a/README.md b/README.md index 892c0ca1b..787dd25ae 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.30.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.31.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index 6290acb0c..66639030f 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.30.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.31.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 57fa7aec6..250e0939a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.30.0", + "version": "4.31.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 2eb76a884..8eb5423f5 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.30.0'; // x-release-please-version +export const VERSION = '4.31.0'; // x-release-please-version From 60bc77f87e860e86b702c506cf9e1a725b81a697 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sat, 30 Mar 2024 20:44:38 +0000 Subject: [PATCH 332/725] docs(readme): change undocumented params wording (#744) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 787dd25ae..6707707b2 100644 --- a/README.md +++ b/README.md @@ -454,7 +454,7 @@ await client.post('/some/path', { }); ``` -#### Undocumented params +#### Undocumented request params To make requests using undocumented parameters, you may use `// @ts-expect-error` on the undocumented parameter. This library doesn't validate at runtime that the request matches the type, so any extra values you @@ -475,7 +475,7 @@ extra param in the body. If you want to explicitly send an extra argument, you can do so with the `query`, `body`, and `headers` request options. -#### Undocumented properties +#### Undocumented response properties To access undocumented response properties, you may access the response object with `// @ts-expect-error` on the response object, or cast the response object to the requisite type. Like the request params, we do not From 767bec025dd349c3a982a0aa62b134692d9a3ad2 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 1 Apr 2024 22:52:20 +0200 Subject: [PATCH 333/725] feat(api): add support for filtering messages by run_id (#747) --- src/resources/beta/threads/messages/messages.ts | 5 +++++ tests/api-resources/beta/threads/messages/messages.test.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/resources/beta/threads/messages/messages.ts b/src/resources/beta/threads/messages/messages.ts index 1c37eb2ff..28026f3ff 100644 --- a/src/resources/beta/threads/messages/messages.ts +++ b/src/resources/beta/threads/messages/messages.ts @@ -551,6 +551,11 @@ export interface MessageListParams extends CursorPageParams { * order and `desc` for descending order. */ order?: 'asc' | 'desc'; + + /** + * Filter messages by the run ID that generated them. + */ + run_id?: string; } export namespace Messages { diff --git a/tests/api-resources/beta/threads/messages/messages.test.ts b/tests/api-resources/beta/threads/messages/messages.test.ts index 3a80bfe1e..7f62944e0 100644 --- a/tests/api-resources/beta/threads/messages/messages.test.ts +++ b/tests/api-resources/beta/threads/messages/messages.test.ts @@ -81,7 +81,7 @@ describe('resource messages', () => { await expect( openai.beta.threads.messages.list( 'string', - { after: 'string', before: 'string', limit: 0, order: 'asc' }, + { after: 'string', before: 'string', limit: 0, order: 'asc', run_id: 'string' }, { path: '/_stainless_unknown_path' }, ), ).rejects.toThrow(OpenAI.NotFoundError); From bc202fcdd9d3f54ff028b7f809b784f26fbf9b29 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 1 Apr 2024 23:13:12 +0200 Subject: [PATCH 334/725] chore(deps): remove unused dependency digest-fetch (#748) --- package.json | 1 - tsconfig.build.json | 1 - tsconfig.deno.json | 1 - tsconfig.json | 1 - typings/digest-fetch/index.d.ts | 33 ----------------------------- yarn.lock | 37 --------------------------------- 6 files changed, 74 deletions(-) delete mode 100644 typings/digest-fetch/index.d.ts diff --git a/package.json b/package.json index 250e0939a..6fb9f1789 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,6 @@ "@types/node-fetch": "^2.6.4", "abort-controller": "^3.0.0", "agentkeepalive": "^4.2.1", - "digest-fetch": "^1.3.0", "form-data-encoder": "1.7.2", "formdata-node": "^4.3.2", "node-fetch": "^2.6.7", diff --git a/tsconfig.build.json b/tsconfig.build.json index 6adad0d06..45811cb8b 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -7,7 +7,6 @@ "paths": { "openai/*": ["dist/src/*"], "openai": ["dist/src/index.ts"], - "digest-fetch": ["./typings/digest-fetch"] }, "noEmit": false, "declaration": true, diff --git a/tsconfig.deno.json b/tsconfig.deno.json index 5d6467665..d0e9473d9 100644 --- a/tsconfig.deno.json +++ b/tsconfig.deno.json @@ -9,7 +9,6 @@ "openai/_shims/auto/*": ["deno/_shims/auto/*-deno"], "openai/*": ["deno/*"], "openai": ["deno/index.ts"], - "digest-fetch": ["./typings/digest-fetch"] }, "noEmit": true, "declaration": true, diff --git a/tsconfig.json b/tsconfig.json index 9908b2c80..5f99085fc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,7 +12,6 @@ "openai/_shims/auto/*": ["src/_shims/auto/*-node"], "openai/*": ["src/*"], "openai": ["src/index.ts"], - "digest-fetch": ["./typings/digest-fetch"] }, "noEmit": true, diff --git a/typings/digest-fetch/index.d.ts b/typings/digest-fetch/index.d.ts deleted file mode 100644 index f6bcbfda9..000000000 --- a/typings/digest-fetch/index.d.ts +++ /dev/null @@ -1,33 +0,0 @@ -declare module 'digest-fetch'; - -import type { RequestInfo, RequestInit, Response } from 'node-fetch'; - -type Algorithm = 'MD5' | 'MD5-sess'; - -type Options = { - algorithm?: Algorithm; - statusCode?: number; - cnonceSize?: number; - basic?: boolean; - precomputeHash?: boolean; - logger?: typeof console; -}; - -class DigestClient { - user: string; - password: string; - - private nonceRaw: string; - private logger?: typeof console; - private precomputedHash?: boolean; - private statusCode?: number; - private basic: boolean; - private cnonceSize: number; - private hasAuth: boolean; - private digest: { nc: number; algorithm: Algorithm; realm: string }; - - constructor(user: string, password: string, options: Options = {}); - async fetch(url: RequestInfo, options: RequestInit = {}): Promise; -} - -export default DigestClient; diff --git a/yarn.lock b/yarn.lock index a79485a26..9cef21d9b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1076,11 +1076,6 @@ balanced-match@^1.0.0: resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== -base-64@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb" - integrity sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA== - big-integer@^1.6.44: version "1.6.52" resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.52.tgz#60a887f3047614a8e1bffe5d7173490a97dc8c85" @@ -1193,11 +1188,6 @@ char-regex@^1.0.2: resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== -charenc@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" - integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA== - ci-info@^3.2.0: version "3.9.0" resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" @@ -1305,11 +1295,6 @@ cross-spawn@^7.0.2, cross-spawn@^7.0.3: shebang-command "^2.0.0" which "^2.0.1" -crypt@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" - integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow== - debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" @@ -1380,14 +1365,6 @@ diff@^4.0.1: resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== -digest-fetch@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/digest-fetch/-/digest-fetch-1.3.0.tgz#898e69264d00012a23cf26e8a3e40320143fc661" - integrity sha512-CGJuv6iKNM7QyZlM2T3sPAdZWd/p9zQiRNS9G+9COUCwzWFTs0Xp8NF5iePx7wtvhDykReiRRrSeNb4oMmB8lA== - dependencies: - base-64 "^0.1.0" - md5 "^2.3.0" - dir-glob@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" @@ -1934,11 +1911,6 @@ is-arrayish@^0.2.1: resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== -is-buffer@~1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== - is-core-module@^2.13.0: version "2.13.1" resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" @@ -2553,15 +2525,6 @@ makeerror@1.0.12: dependencies: tmpl "1.0.5" -md5@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" - integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g== - dependencies: - charenc "0.0.2" - crypt "0.0.2" - is-buffer "~1.1.6" - merge-stream@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" From 8031df3675c36cb654e37a63edbc7e5b02b05bac Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 2 Apr 2024 00:38:55 +0200 Subject: [PATCH 335/725] feat(api): run polling helpers (#749) refactor: rename createAndStream to stream --- README.md | 19 +- api.md | 5 + examples/assistant-stream-raw.ts | 0 examples/assistant-stream.ts | 2 +- examples/assistants.ts | 22 +-- helpers.md | 4 +- src/resources/beta/beta.ts | 1 + src/resources/beta/index.ts | 1 + src/resources/beta/threads/index.ts | 4 + src/resources/beta/threads/runs/index.ts | 3 + src/resources/beta/threads/runs/runs.ts | 224 ++++++++++++++++++++++- src/resources/beta/threads/threads.ts | 124 +++++++++++++ 12 files changed, 389 insertions(+), 20 deletions(-) mode change 100644 => 100755 examples/assistant-stream-raw.ts mode change 100644 => 100755 examples/assistant-stream.ts mode change 100644 => 100755 examples/assistants.ts diff --git a/README.md b/README.md index 6707707b2..1ff9c757d 100644 --- a/README.md +++ b/README.md @@ -100,13 +100,30 @@ Documentation for each method, request param, and response field are available i > [!IMPORTANT] > Previous versions of this SDK used a `Configuration` class. See the [v3 to v4 migration guide](https://github.com/openai/openai-node/discussions/217). +### Polling Helpers + +When interacting with the API some actions such as starting a Run may take time to complete. The SDK includes +helper functions which will poll the status until it reaches a terminal state and then return the resulting object. +If an API method results in an action which could benefit from polling there will be a corresponding version of the +method ending in 'AndPoll'. + +For instance to create a Run and poll until it reaches a terminal state you can run: + +```ts +const run = await openai.beta.threads.runs.createAndPoll(thread.id, { + assistant_id: assistantId, +}); +``` + +More information on the lifecycle of a Run can be found in the [Run Lifecycle Documentation](https://platform.openai.com/docs/assistants/how-it-works/run-lifecycle) + ### Streaming Helpers The SDK also includes helpers to process streams and handle the incoming events. ```ts const run = openai.beta.threads.runs - .createAndStream(thread.id, { + .stream(thread.id, { assistant_id: assistant.id, }) .on('textCreated', (text) => process.stdout.write('\nassistant > ')) diff --git a/api.md b/api.md index 504a103c7..2f82dd17b 100644 --- a/api.md +++ b/api.md @@ -224,6 +224,7 @@ Methods: - client.beta.threads.update(threadId, { ...params }) -> Thread - client.beta.threads.del(threadId) -> ThreadDeleted - client.beta.threads.createAndRun({ ...params }) -> Run +- client.beta.threads.createAndRunPoll(body, options?) -> Promise<Threads.Run> - client.beta.threads.createAndRunStream(body, options?) -> AssistantStream ### Runs @@ -242,7 +243,11 @@ Methods: - client.beta.threads.runs.list(threadId, { ...params }) -> RunsPage - client.beta.threads.runs.cancel(threadId, runId) -> Run - client.beta.threads.runs.submitToolOutputs(threadId, runId, { ...params }) -> Run +- client.beta.threads.runs.createAndPoll(threadId, body, options?) -> Promise<Run> - client.beta.threads.runs.createAndStream(threadId, body, options?) -> AssistantStream +- client.beta.threads.runs.poll(threadId, runId, options?) -> Promise<Run> +- client.beta.threads.runs.stream(threadId, body, options?) -> AssistantStream +- client.beta.threads.runs.submitToolOutputsAndPoll(threadId, runId, body, options?) -> Promise<Run> - client.beta.threads.runs.submitToolOutputsStream(threadId, runId, body, options?) -> AssistantStream #### Steps diff --git a/examples/assistant-stream-raw.ts b/examples/assistant-stream-raw.ts old mode 100644 new mode 100755 diff --git a/examples/assistant-stream.ts b/examples/assistant-stream.ts old mode 100644 new mode 100755 index 36c4ed152..6c71bf23b --- a/examples/assistant-stream.ts +++ b/examples/assistant-stream.ts @@ -31,7 +31,7 @@ async function main() { console.log('Created thread with Id: ' + threadId); const run = openai.beta.threads.runs - .createAndStream(threadId, { + .stream(threadId, { assistant_id: assistantId, }) //Subscribe to streaming events and log them diff --git a/examples/assistants.ts b/examples/assistants.ts old mode 100644 new mode 100755 index bbc2f80ce..40238ac86 --- a/examples/assistants.ts +++ b/examples/assistants.ts @@ -1,7 +1,6 @@ #!/usr/bin/env -S npm run tsn -T import OpenAI from 'openai'; -import { sleep } from 'openai/core'; /** * Example of polling for a complete response from an assistant @@ -32,24 +31,17 @@ async function main() { let threadId = thread.id; console.log('Created thread with Id: ' + threadId); - const run = await openai.beta.threads.runs.create(thread.id, { + const run = await openai.beta.threads.runs.createAndPoll(thread.id, { assistant_id: assistantId, additional_instructions: 'Please address the user as Jane Doe. The user has a premium account.', }); - console.log('Created run with Id: ' + run.id); - - while (true) { - const result = await openai.beta.threads.runs.retrieve(thread.id, run.id); - if (result.status == 'completed') { - const messages = await openai.beta.threads.messages.list(thread.id); - for (const message of messages.getPaginatedItems()) { - console.log(message); - } - break; - } else { - console.log('Waiting for completion. Current status: ' + result.status); - await sleep(5000); + console.log('Run finished with status: ' + run.status); + + if (run.status == 'completed') { + const messages = await openai.beta.threads.messages.list(thread.id); + for (const message of messages.getPaginatedItems()) { + console.log(message); } } } diff --git a/helpers.md b/helpers.md index 9a94a618e..7a34c3023 100644 --- a/helpers.md +++ b/helpers.md @@ -13,7 +13,7 @@ More information can be found in the documentation: [Assistant Streaming](https: ```ts const run = openai.beta.threads.runs - .createAndStream(thread.id, { + .stream(thread.id, { assistant_id: assistant.id, }) .on('textCreated', (text) => process.stdout.write('\nassistant > ')) @@ -41,7 +41,7 @@ const run = openai.beta.threads.runs There are three helper methods for creating streams: ```ts -openai.beta.threads.runs.createAndStream(); +openai.beta.threads.runs.stream(); ``` This method can be used to start and stream the response to an existing run with an associated thread diff --git a/src/resources/beta/beta.ts b/src/resources/beta/beta.ts index 43ee8c7e7..7d4457319 100644 --- a/src/resources/beta/beta.ts +++ b/src/resources/beta/beta.ts @@ -37,5 +37,6 @@ export namespace Beta { export import ThreadCreateAndRunParams = ThreadsAPI.ThreadCreateAndRunParams; export import ThreadCreateAndRunParamsNonStreaming = ThreadsAPI.ThreadCreateAndRunParamsNonStreaming; export import ThreadCreateAndRunParamsStreaming = ThreadsAPI.ThreadCreateAndRunParamsStreaming; + export import ThreadCreateAndRunPollParams = ThreadsAPI.ThreadCreateAndRunPollParams; export import ThreadCreateAndRunStreamParams = ThreadsAPI.ThreadCreateAndRunStreamParams; } diff --git a/src/resources/beta/index.ts b/src/resources/beta/index.ts index 7f35730fb..e43ff7315 100644 --- a/src/resources/beta/index.ts +++ b/src/resources/beta/index.ts @@ -28,6 +28,7 @@ export { ThreadCreateAndRunParams, ThreadCreateAndRunParamsNonStreaming, ThreadCreateAndRunParamsStreaming, + ThreadCreateAndRunPollParams, ThreadCreateAndRunStreamParams, Threads, } from './threads/index'; diff --git a/src/resources/beta/threads/index.ts b/src/resources/beta/threads/index.ts index 097a52819..ac2f9a4fa 100644 --- a/src/resources/beta/threads/index.ts +++ b/src/resources/beta/threads/index.ts @@ -36,10 +36,13 @@ export { RunCreateParamsStreaming, RunUpdateParams, RunListParams, + RunCreateAndPollParams, RunCreateAndStreamParams, + RunStreamParams, RunSubmitToolOutputsParams, RunSubmitToolOutputsParamsNonStreaming, RunSubmitToolOutputsParamsStreaming, + RunSubmitToolOutputsAndPollParams, RunSubmitToolOutputsStreamParams, RunsPage, Runs, @@ -52,6 +55,7 @@ export { ThreadCreateAndRunParams, ThreadCreateAndRunParamsNonStreaming, ThreadCreateAndRunParamsStreaming, + ThreadCreateAndRunPollParams, ThreadCreateAndRunStreamParams, Threads, } from './threads'; diff --git a/src/resources/beta/threads/runs/index.ts b/src/resources/beta/threads/runs/index.ts index 636b5d850..c9b2d1ef5 100644 --- a/src/resources/beta/threads/runs/index.ts +++ b/src/resources/beta/threads/runs/index.ts @@ -31,10 +31,13 @@ export { RunCreateParamsStreaming, RunUpdateParams, RunListParams, + RunCreateAndPollParams, RunCreateAndStreamParams, + RunStreamParams, RunSubmitToolOutputsParams, RunSubmitToolOutputsParamsNonStreaming, RunSubmitToolOutputsParamsStreaming, + RunSubmitToolOutputsAndPollParams, RunSubmitToolOutputsStreamParams, RunsPage, Runs, diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 54c671131..5dfc7d595 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -5,6 +5,7 @@ import { APIPromise } from 'openai/core'; import { APIResource } from 'openai/resource'; import { isRequestOptions } from 'openai/core'; import { AssistantStream, RunCreateParamsBaseStream } from 'openai/lib/AssistantStream'; +import { sleep } from 'openai/core'; import { RunSubmitToolOutputsParamsStream } from 'openai/lib/AssistantStream'; import * as RunsAPI from 'openai/resources/beta/threads/runs/runs'; import * as AssistantsAPI from 'openai/resources/beta/assistants/assistants'; @@ -102,8 +103,24 @@ export class Runs extends APIResource { }); } + /** + * A helper to create a run an poll for a terminal state. More information on Run + * lifecycles can be found here: + * https://platform.openai.com/docs/assistants/how-it-works/runs-and-run-steps + */ + async createAndPoll( + threadId: string, + body: RunCreateParamsNonStreaming, + options?: Core.RequestOptions & { pollIntervalMs?: number }, + ): Promise { + const run = await this.create(threadId, body, options); + return await this.poll(threadId, run.id, options); + } + /** * Create a Run stream + * + * @deprecated use `stream` instead */ createAndStream( threadId: string, @@ -113,6 +130,66 @@ export class Runs extends APIResource { return AssistantStream.createAssistantStream(threadId, this._client.beta.threads.runs, body, options); } + /** + * A helper to poll a run status until it reaches a terminal state. More + * information on Run lifecycles can be found here: + * https://platform.openai.com/docs/assistants/how-it-works/runs-and-run-steps + */ + async poll( + threadId: string, + runId: string, + options?: Core.RequestOptions & { pollIntervalMs?: number }, + ): Promise { + const headers: { [key: string]: string } = { ...options?.headers, 'X-Stainless-Poll-Helper': 'true' }; + + if (options?.pollIntervalMs) { + headers['X-Stainless-Custom-Poll-Interval'] = options.pollIntervalMs.toString(); + } + + while (true) { + const { data: run, response } = await this.retrieve(threadId, runId, { + ...options, + headers: { ...options?.headers, ...headers }, + }).withResponse(); + + switch (run.status) { + //If we are in any sort of intermediate state we poll + case 'queued': + case 'in_progress': + case 'cancelling': + let sleepInterval = 5000; + + if (options?.pollIntervalMs) { + sleepInterval = options.pollIntervalMs; + } else { + const headerInterval = response.headers.get('openai-poll-after-ms'); + if (headerInterval) { + const headerIntervalMs = parseInt(headerInterval); + if (!isNaN(headerIntervalMs)) { + sleepInterval = headerIntervalMs; + } + } + } + await sleep(sleepInterval); + break; + //We return the run in any terminal state. + case 'requires_action': + case 'cancelled': + case 'completed': + case 'failed': + case 'expired': + return run; + } + } + } + + /** + * Create a Run stream + */ + stream(threadId: string, body: RunCreateParamsBaseStream, options?: Core.RequestOptions): AssistantStream { + return AssistantStream.createAssistantStream(threadId, this._client.beta.threads.runs, body, options); + } + /** * When a run has the `status: "requires_action"` and `required_action.type` is * `submit_tool_outputs`, this endpoint can be used to submit the outputs from the @@ -151,9 +228,25 @@ export class Runs extends APIResource { }) as APIPromise | APIPromise>; } + /** + * A helper to submit a tool output to a run and poll for a terminal run state. + * More information on Run lifecycles can be found here: + * https://platform.openai.com/docs/assistants/how-it-works/runs-and-run-steps + */ + async submitToolOutputsAndPoll( + threadId: string, + runId: string, + body: RunSubmitToolOutputsParamsNonStreaming, + options?: Core.RequestOptions & { pollIntervalMs?: number }, + ): Promise { + const run = await this.submitToolOutputs(threadId, runId, body, options); + return await this.poll(threadId, run.id, options); + } + /** * Submit the tool outputs from a previous run and stream the run to a terminal - * state. + * state. More information on Run lifecycles can be found here: + * https://platform.openai.com/docs/assistants/how-it-works/runs-and-run-steps */ submitToolOutputsStream( threadId: string, @@ -529,6 +622,58 @@ export interface RunListParams extends CursorPageParams { order?: 'asc' | 'desc'; } +export interface RunCreateAndPollParams { + /** + * The ID of the + * [assistant](https://platform.openai.com/docs/api-reference/assistants) to use to + * execute this run. + */ + assistant_id: string; + + /** + * Appends additional instructions at the end of the instructions for the run. This + * is useful for modifying the behavior on a per-run basis without overriding other + * instructions. + */ + additional_instructions?: string | null; + + /** + * Overrides the + * [instructions](https://platform.openai.com/docs/api-reference/assistants/createAssistant) + * of the assistant. This is useful for modifying the behavior on a per-run basis. + */ + instructions?: string | null; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + + /** + * The ID of the [Model](https://platform.openai.com/docs/api-reference/models) to + * be used to execute this run. If a value is provided here, it will override the + * model associated with the assistant. If not, the model associated with the + * assistant will be used. + */ + model?: string | null; + + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. + */ + temperature?: number | null; + + /** + * Override the tools the assistant can use for this run. This is useful for + * modifying the behavior on a per-run basis. + */ + tools?: Array | null; +} + export interface RunCreateAndStreamParams { /** * The ID of the @@ -581,6 +726,58 @@ export interface RunCreateAndStreamParams { tools?: Array | null; } +export interface RunStreamParams { + /** + * The ID of the + * [assistant](https://platform.openai.com/docs/api-reference/assistants) to use to + * execute this run. + */ + assistant_id: string; + + /** + * Appends additional instructions at the end of the instructions for the run. This + * is useful for modifying the behavior on a per-run basis without overriding other + * instructions. + */ + additional_instructions?: string | null; + + /** + * Overrides the + * [instructions](https://platform.openai.com/docs/api-reference/assistants/createAssistant) + * of the assistant. This is useful for modifying the behavior on a per-run basis. + */ + instructions?: string | null; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + + /** + * The ID of the [Model](https://platform.openai.com/docs/api-reference/models) to + * be used to execute this run. If a value is provided here, it will override the + * model associated with the assistant. If not, the model associated with the + * assistant will be used. + */ + model?: string | null; + + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. + */ + temperature?: number | null; + + /** + * Override the tools the assistant can use for this run. This is useful for + * modifying the behavior on a per-run basis. + */ + tools?: Array | null; +} + export type RunSubmitToolOutputsParams = | RunSubmitToolOutputsParamsNonStreaming | RunSubmitToolOutputsParamsStreaming; @@ -635,6 +832,28 @@ export interface RunSubmitToolOutputsParamsStreaming extends RunSubmitToolOutput stream: true; } +export interface RunSubmitToolOutputsAndPollParams { + /** + * A list of tools for which the outputs are being submitted. + */ + tool_outputs: Array; +} + +export namespace RunSubmitToolOutputsAndPollParams { + export interface ToolOutput { + /** + * The output of the tool call to be submitted to continue the run. + */ + output?: string; + + /** + * The ID of the tool call in the `required_action` object within the run object + * the output is being submitted for. + */ + tool_call_id?: string; + } +} + export interface RunSubmitToolOutputsStreamParams { /** * A list of tools for which the outputs are being submitted. @@ -667,10 +886,13 @@ export namespace Runs { export import RunCreateParamsStreaming = RunsAPI.RunCreateParamsStreaming; export import RunUpdateParams = RunsAPI.RunUpdateParams; export import RunListParams = RunsAPI.RunListParams; + export import RunCreateAndPollParams = RunsAPI.RunCreateAndPollParams; export import RunCreateAndStreamParams = RunsAPI.RunCreateAndStreamParams; + export import RunStreamParams = RunsAPI.RunStreamParams; export import RunSubmitToolOutputsParams = RunsAPI.RunSubmitToolOutputsParams; export import RunSubmitToolOutputsParamsNonStreaming = RunsAPI.RunSubmitToolOutputsParamsNonStreaming; export import RunSubmitToolOutputsParamsStreaming = RunsAPI.RunSubmitToolOutputsParamsStreaming; + export import RunSubmitToolOutputsAndPollParams = RunsAPI.RunSubmitToolOutputsAndPollParams; export import RunSubmitToolOutputsStreamParams = RunsAPI.RunSubmitToolOutputsStreamParams; export import Steps = StepsAPI.Steps; export import CodeInterpreterLogs = StepsAPI.CodeInterpreterLogs; diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 9b4785850..1b4b3f7d5 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -92,6 +92,19 @@ export class Threads extends APIResource { }) as APIPromise | APIPromise>; } + /** + * A helper to create a thread, start a run and then poll for a terminal state. + * More information on Run lifecycles can be found here: + * https://platform.openai.com/docs/assistants/how-it-works/runs-and-run-steps + */ + async createAndRunPoll( + body: ThreadCreateAndRunParamsNonStreaming, + options?: Core.RequestOptions & { pollIntervalMs?: number }, + ): Promise { + const run = await this.createAndRun(body, options); + return await this.runs.poll(run.thread_id, run.id, options); + } + /** * Create a thread and stream the run back */ @@ -340,6 +353,113 @@ export interface ThreadCreateAndRunParamsStreaming extends ThreadCreateAndRunPar stream: true; } +export interface ThreadCreateAndRunPollParams { + /** + * The ID of the + * [assistant](https://platform.openai.com/docs/api-reference/assistants) to use to + * execute this run. + */ + assistant_id: string; + + /** + * Override the default system message of the assistant. This is useful for + * modifying the behavior on a per-run basis. + */ + instructions?: string | null; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + + /** + * The ID of the [Model](https://platform.openai.com/docs/api-reference/models) to + * be used to execute this run. If a value is provided here, it will override the + * model associated with the assistant. If not, the model associated with the + * assistant will be used. + */ + model?: string | null; + + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. + */ + temperature?: number | null; + + /** + * If no thread is provided, an empty thread will be created. + */ + thread?: ThreadCreateAndRunPollParams.Thread; + + /** + * Override the tools the assistant can use for this run. This is useful for + * modifying the behavior on a per-run basis. + */ + tools?: Array< + AssistantsAPI.CodeInterpreterTool | AssistantsAPI.RetrievalTool | AssistantsAPI.FunctionTool + > | null; +} + +export namespace ThreadCreateAndRunPollParams { + /** + * If no thread is provided, an empty thread will be created. + */ + export interface Thread { + /** + * A list of [messages](https://platform.openai.com/docs/api-reference/messages) to + * start the thread with. + */ + messages?: Array; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + } + + export namespace Thread { + export interface Message { + /** + * The content of the message. + */ + content: string; + + /** + * The role of the entity that is creating the message. Allowed values include: + * + * - `user`: Indicates the message is sent by an actual user and should be used in + * most cases to represent user-generated messages. + * - `assistant`: Indicates the message is generated by the assistant. Use this + * value to insert messages from the assistant into the conversation. + */ + role: 'user' | 'assistant'; + + /** + * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that + * the message should use. There can be a maximum of 10 files attached to a + * message. Useful for tools like `retrieval` and `code_interpreter` that can + * access and use files. + */ + file_ids?: Array; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + } + } +} + export interface ThreadCreateAndRunStreamParams { /** * The ID of the @@ -455,6 +575,7 @@ export namespace Threads { export import ThreadCreateAndRunParams = ThreadsAPI.ThreadCreateAndRunParams; export import ThreadCreateAndRunParamsNonStreaming = ThreadsAPI.ThreadCreateAndRunParamsNonStreaming; export import ThreadCreateAndRunParamsStreaming = ThreadsAPI.ThreadCreateAndRunParamsStreaming; + export import ThreadCreateAndRunPollParams = ThreadsAPI.ThreadCreateAndRunPollParams; export import ThreadCreateAndRunStreamParams = ThreadsAPI.ThreadCreateAndRunStreamParams; export import Runs = RunsAPI.Runs; export import RequiredActionFunctionToolCall = RunsAPI.RequiredActionFunctionToolCall; @@ -466,10 +587,13 @@ export namespace Threads { export import RunCreateParamsStreaming = RunsAPI.RunCreateParamsStreaming; export import RunUpdateParams = RunsAPI.RunUpdateParams; export import RunListParams = RunsAPI.RunListParams; + export import RunCreateAndPollParams = RunsAPI.RunCreateAndPollParams; export import RunCreateAndStreamParams = RunsAPI.RunCreateAndStreamParams; + export import RunStreamParams = RunsAPI.RunStreamParams; export import RunSubmitToolOutputsParams = RunsAPI.RunSubmitToolOutputsParams; export import RunSubmitToolOutputsParamsNonStreaming = RunsAPI.RunSubmitToolOutputsParamsNonStreaming; export import RunSubmitToolOutputsParamsStreaming = RunsAPI.RunSubmitToolOutputsParamsStreaming; + export import RunSubmitToolOutputsAndPollParams = RunsAPI.RunSubmitToolOutputsAndPollParams; export import RunSubmitToolOutputsStreamParams = RunsAPI.RunSubmitToolOutputsStreamParams; export import Messages = MessagesAPI.Messages; export import Annotation = MessagesAPI.Annotation; From 445b795c4ef4c109e69d1e3d74b179f238e5782c Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 2 Apr 2024 00:39:14 +0200 Subject: [PATCH 336/725] release: 4.32.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 24 ++++++++++++++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 29 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 485bcd4e9..a2b09ee37 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.31.0" + ".": "4.32.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a28f8d3c..3be8b4c02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## 4.32.0 (2024-04-01) + +Full Changelog: [v4.31.0...v4.32.0](https://github.com/openai/openai-node/compare/v4.31.0...v4.32.0) + +### Features + +* **api:** add support for filtering messages by run_id ([#747](https://github.com/openai/openai-node/issues/747)) ([9a397ac](https://github.com/openai/openai-node/commit/9a397acffa9f10c3f48e86e3bdb3851770f87b42)) +* **api:** run polling helpers ([#749](https://github.com/openai/openai-node/issues/749)) ([02920ae](https://github.com/openai/openai-node/commit/02920ae082480fc7a7ffe9fa583d053a40dc7120)) + + +### Chores + +* **deps:** remove unused dependency digest-fetch ([#748](https://github.com/openai/openai-node/issues/748)) ([5376837](https://github.com/openai/openai-node/commit/537683734d39dd956a7dcef4339c1167ce6fe13c)) + + +### Documentation + +* **readme:** change undocumented params wording ([#744](https://github.com/openai/openai-node/issues/744)) ([8796691](https://github.com/openai/openai-node/commit/87966911045275db86844dfdcde59653edaef264)) + + +### Refactors + +* rename createAndStream to stream ([02920ae](https://github.com/openai/openai-node/commit/02920ae082480fc7a7ffe9fa583d053a40dc7120)) + ## 4.31.0 (2024-03-30) Full Changelog: [v4.30.0...v4.31.0](https://github.com/openai/openai-node/compare/v4.30.0...v4.31.0) diff --git a/README.md b/README.md index 1ff9c757d..2adc81afc 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.31.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.32.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index 66639030f..19eefa7c3 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.31.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.32.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 6fb9f1789..11fa0c5e2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.31.0", + "version": "4.32.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 8eb5423f5..7e04c79b5 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.31.0'; // x-release-please-version +export const VERSION = '4.32.0'; // x-release-please-version From 5b41d1077f219b8feb7557cfab98caf7b5de560d Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 2 Apr 2024 15:02:43 +0200 Subject: [PATCH 337/725] chore(deps): bump yarn to v1.22.22 (#751) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 11fa0c5e2..e10df6850 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "type": "commonjs", "repository": "github:openai/openai-node", "license": "Apache-2.0", - "packageManager": "yarn@1.22.21", + "packageManager": "yarn@1.22.22", "files": [ "*" ], From b3269eb0cbeb17415de0863f5cb28c4a9f8b643f Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 2 Apr 2024 15:03:03 +0200 Subject: [PATCH 338/725] release: 4.32.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a2b09ee37..27308d159 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.32.0" + ".": "4.32.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3be8b4c02..a1702ad3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.32.1 (2024-04-02) + +Full Changelog: [v4.32.0...v4.32.1](https://github.com/openai/openai-node/compare/v4.32.0...v4.32.1) + +### Chores + +* **deps:** bump yarn to v1.22.22 ([#751](https://github.com/openai/openai-node/issues/751)) ([5b41d10](https://github.com/openai/openai-node/commit/5b41d1077f219b8feb7557cfab98caf7b5de560d)) + ## 4.32.0 (2024-04-01) Full Changelog: [v4.31.0...v4.32.0](https://github.com/openai/openai-node/compare/v4.31.0...v4.32.0) diff --git a/README.md b/README.md index 2adc81afc..aae0367b6 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.32.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.32.1/mod.ts'; ``` diff --git a/build-deno b/build-deno index 19eefa7c3..a56b6af13 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.32.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.32.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index e10df6850..4d87ed952 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.32.0", + "version": "4.32.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 7e04c79b5..c2e5453c3 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.32.0'; // x-release-please-version +export const VERSION = '4.32.1'; // x-release-please-version From 2bd3294ed564492def05a61906e02ae5f2aba6c4 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 2 Apr 2024 19:33:02 +0200 Subject: [PATCH 339/725] chore(tests): bump ecosystem tests dependencies (#753) --- .../cloudflare-worker/package-lock.json | 14 ++-- .../node-ts-cjs-auto/package-lock.json | 20 ++--- .../node-ts-cjs-web/package-lock.json | 48 ++++-------- ecosystem-tests/node-ts-cjs/package-lock.json | 48 ++++-------- .../node-ts-esm-auto/package-lock.json | 26 +++---- .../node-ts-esm-web/package-lock.json | 26 +++---- ecosystem-tests/node-ts-esm/package-lock.json | 26 +++---- .../node-ts4.5-jest27/package-lock.json | 16 ++-- .../node-ts4.5-jest27/package.json | 4 +- .../ts-browser-webpack/package-lock.json | 20 ++--- ecosystem-tests/vercel-edge/package-lock.json | 78 ++++++++++--------- ecosystem-tests/vercel-edge/package.json | 4 +- 12 files changed, 152 insertions(+), 178 deletions(-) diff --git a/ecosystem-tests/cloudflare-worker/package-lock.json b/ecosystem-tests/cloudflare-worker/package-lock.json index 7e86792db..dd42f0b36 100644 --- a/ecosystem-tests/cloudflare-worker/package-lock.json +++ b/ecosystem-tests/cloudflare-worker/package-lock.json @@ -5206,9 +5206,9 @@ } }, "node_modules/ts-jest": { - "version": "29.1.1", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", - "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", + "version": "29.1.2", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.2.tgz", + "integrity": "sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==", "dev": true, "dependencies": { "bs-logger": "0.x", @@ -5224,7 +5224,7 @@ "ts-jest": "cli.js" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^16.10.0 || ^18.0.0 || >=20.0.0" }, "peerDependencies": { "@babel/core": ">=7.0.0-beta.0 <8", @@ -5261,9 +5261,9 @@ } }, "node_modules/ts-jest/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" diff --git a/ecosystem-tests/node-ts-cjs-auto/package-lock.json b/ecosystem-tests/node-ts-cjs-auto/package-lock.json index a11f9814d..c3880beb2 100644 --- a/ecosystem-tests/node-ts-cjs-auto/package-lock.json +++ b/ecosystem-tests/node-ts-cjs-auto/package-lock.json @@ -1093,22 +1093,22 @@ } }, "node_modules/@types/node": { - "version": "20.11.20", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.20.tgz", - "integrity": "sha512-7/rR21OS+fq8IyHTgtLkDK949uzsa6n8BkziAKtPVpugIkO6D+/ooXMvzXxDnZrmtXVfjb1bKQafYpb8s89LOg==", + "version": "20.11.30", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.30.tgz", + "integrity": "sha512-dHM6ZxwlmuZaRmUPfv1p+KrdD1Dci04FbdEm/9wEMouFqxYoFl5aMkt0VMAUtYRQDyYvD41WJLukhq/ha3YuTw==", "dev": true, "dependencies": { "undici-types": "~5.26.4" } }, "node_modules/@types/node-fetch": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", - "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", "dev": true, "dependencies": { "@types/node": "*", - "form-data": "^3.0.0" + "form-data": "^4.0.0" } }, "node_modules/@types/prettier": { @@ -1783,9 +1783,9 @@ } }, "node_modules/form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dev": true, "dependencies": { "asynckit": "^0.4.0", diff --git a/ecosystem-tests/node-ts-cjs-web/package-lock.json b/ecosystem-tests/node-ts-cjs-web/package-lock.json index cd721ae53..ff6fb3bac 100644 --- a/ecosystem-tests/node-ts-cjs-web/package-lock.json +++ b/ecosystem-tests/node-ts-cjs-web/package-lock.json @@ -1143,13 +1143,13 @@ "dev": true }, "node_modules/@types/node-fetch": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", - "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", "dev": true, "dependencies": { "@types/node": "*", - "form-data": "^3.0.0" + "form-data": "^4.0.0" } }, "node_modules/@types/stack-utils": { @@ -2082,9 +2082,9 @@ } }, "node_modules/form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dev": true, "dependencies": { "asynckit": "^0.4.0", @@ -3208,20 +3208,6 @@ } } }, - "node_modules/jsdom/node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/jsdom/node_modules/tr46": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", @@ -4150,9 +4136,9 @@ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" }, "node_modules/ts-jest": { - "version": "29.1.1", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", - "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", + "version": "29.1.2", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.2.tgz", + "integrity": "sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==", "dev": true, "dependencies": { "bs-logger": "0.x", @@ -4168,7 +4154,7 @@ "ts-jest": "cli.js" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^16.10.0 || ^18.0.0 || >=20.0.0" }, "peerDependencies": { "@babel/core": ">=7.0.0-beta.0 <8", @@ -4205,9 +4191,9 @@ } }, "node_modules/ts-jest/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -4391,9 +4377,9 @@ } }, "node_modules/whatwg-fetch": { - "version": "3.6.19", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.19.tgz", - "integrity": "sha512-d67JP4dHSbm2TrpFj8AbO8DnL1JXL5J9u0Kq2xW6d0TFDbCA3Muhdt8orXC22utleTVj7Prqt82baN6RBvnEgw==", + "version": "3.6.20", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", + "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==", "dev": true }, "node_modules/whatwg-mimetype": { diff --git a/ecosystem-tests/node-ts-cjs/package-lock.json b/ecosystem-tests/node-ts-cjs/package-lock.json index c5280c5b5..c9493b515 100644 --- a/ecosystem-tests/node-ts-cjs/package-lock.json +++ b/ecosystem-tests/node-ts-cjs/package-lock.json @@ -1135,22 +1135,22 @@ } }, "node_modules/@types/node": { - "version": "20.11.20", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.20.tgz", - "integrity": "sha512-7/rR21OS+fq8IyHTgtLkDK949uzsa6n8BkziAKtPVpugIkO6D+/ooXMvzXxDnZrmtXVfjb1bKQafYpb8s89LOg==", + "version": "20.11.30", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.30.tgz", + "integrity": "sha512-dHM6ZxwlmuZaRmUPfv1p+KrdD1Dci04FbdEm/9wEMouFqxYoFl5aMkt0VMAUtYRQDyYvD41WJLukhq/ha3YuTw==", "dev": true, "dependencies": { "undici-types": "~5.26.4" } }, "node_modules/@types/node-fetch": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", - "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", "dev": true, "dependencies": { "@types/node": "*", - "form-data": "^3.0.0" + "form-data": "^4.0.0" } }, "node_modules/@types/stack-utils": { @@ -2069,9 +2069,9 @@ } }, "node_modules/form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dev": true, "dependencies": { "asynckit": "^0.4.0", @@ -3175,20 +3175,6 @@ } } }, - "node_modules/jsdom/node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/jsdom/node_modules/tr46": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", @@ -4117,9 +4103,9 @@ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" }, "node_modules/ts-jest": { - "version": "29.1.1", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", - "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", + "version": "29.1.2", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.2.tgz", + "integrity": "sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==", "dev": true, "dependencies": { "bs-logger": "0.x", @@ -4135,7 +4121,7 @@ "ts-jest": "cli.js" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^16.10.0 || ^18.0.0 || >=20.0.0" }, "peerDependencies": { "@babel/core": ">=7.0.0-beta.0 <8", @@ -4172,9 +4158,9 @@ } }, "node_modules/ts-jest/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" diff --git a/ecosystem-tests/node-ts-esm-auto/package-lock.json b/ecosystem-tests/node-ts-esm-auto/package-lock.json index 4bce04f80..3e4438d05 100644 --- a/ecosystem-tests/node-ts-esm-auto/package-lock.json +++ b/ecosystem-tests/node-ts-esm-auto/package-lock.json @@ -1157,9 +1157,9 @@ } }, "node_modules/@types/node": { - "version": "20.11.20", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.20.tgz", - "integrity": "sha512-7/rR21OS+fq8IyHTgtLkDK949uzsa6n8BkziAKtPVpugIkO6D+/ooXMvzXxDnZrmtXVfjb1bKQafYpb8s89LOg==", + "version": "20.11.30", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.30.tgz", + "integrity": "sha512-dHM6ZxwlmuZaRmUPfv1p+KrdD1Dci04FbdEm/9wEMouFqxYoFl5aMkt0VMAUtYRQDyYvD41WJLukhq/ha3YuTw==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -3663,9 +3663,9 @@ } }, "node_modules/ts-jest": { - "version": "29.1.1", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", - "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", + "version": "29.1.2", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.2.tgz", + "integrity": "sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==", "dev": true, "dependencies": { "bs-logger": "0.x", @@ -3681,7 +3681,7 @@ "ts-jest": "cli.js" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^16.10.0 || ^18.0.0 || >=20.0.0" }, "peerDependencies": { "@babel/core": ">=7.0.0-beta.0 <8", @@ -3718,9 +3718,9 @@ } }, "node_modules/ts-jest/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -3739,9 +3739,9 @@ "dev": true }, "node_modules/ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", + "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", "dev": true, "dependencies": { "@cspotcode/source-map-support": "^0.8.0", diff --git a/ecosystem-tests/node-ts-esm-web/package-lock.json b/ecosystem-tests/node-ts-esm-web/package-lock.json index b96128a4e..118bf0909 100644 --- a/ecosystem-tests/node-ts-esm-web/package-lock.json +++ b/ecosystem-tests/node-ts-esm-web/package-lock.json @@ -1157,9 +1157,9 @@ } }, "node_modules/@types/node": { - "version": "20.11.20", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.20.tgz", - "integrity": "sha512-7/rR21OS+fq8IyHTgtLkDK949uzsa6n8BkziAKtPVpugIkO6D+/ooXMvzXxDnZrmtXVfjb1bKQafYpb8s89LOg==", + "version": "20.11.30", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.30.tgz", + "integrity": "sha512-dHM6ZxwlmuZaRmUPfv1p+KrdD1Dci04FbdEm/9wEMouFqxYoFl5aMkt0VMAUtYRQDyYvD41WJLukhq/ha3YuTw==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -3663,9 +3663,9 @@ } }, "node_modules/ts-jest": { - "version": "29.1.1", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", - "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", + "version": "29.1.2", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.2.tgz", + "integrity": "sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==", "dev": true, "dependencies": { "bs-logger": "0.x", @@ -3681,7 +3681,7 @@ "ts-jest": "cli.js" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^16.10.0 || ^18.0.0 || >=20.0.0" }, "peerDependencies": { "@babel/core": ">=7.0.0-beta.0 <8", @@ -3718,9 +3718,9 @@ } }, "node_modules/ts-jest/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -3739,9 +3739,9 @@ "dev": true }, "node_modules/ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", + "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", "dev": true, "dependencies": { "@cspotcode/source-map-support": "^0.8.0", diff --git a/ecosystem-tests/node-ts-esm/package-lock.json b/ecosystem-tests/node-ts-esm/package-lock.json index 4aecff6ca..cb5b8eaa8 100644 --- a/ecosystem-tests/node-ts-esm/package-lock.json +++ b/ecosystem-tests/node-ts-esm/package-lock.json @@ -1157,9 +1157,9 @@ } }, "node_modules/@types/node": { - "version": "20.11.20", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.20.tgz", - "integrity": "sha512-7/rR21OS+fq8IyHTgtLkDK949uzsa6n8BkziAKtPVpugIkO6D+/ooXMvzXxDnZrmtXVfjb1bKQafYpb8s89LOg==", + "version": "20.11.30", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.30.tgz", + "integrity": "sha512-dHM6ZxwlmuZaRmUPfv1p+KrdD1Dci04FbdEm/9wEMouFqxYoFl5aMkt0VMAUtYRQDyYvD41WJLukhq/ha3YuTw==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -3663,9 +3663,9 @@ } }, "node_modules/ts-jest": { - "version": "29.1.1", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", - "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", + "version": "29.1.2", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.2.tgz", + "integrity": "sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==", "dev": true, "dependencies": { "bs-logger": "0.x", @@ -3681,7 +3681,7 @@ "ts-jest": "cli.js" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^16.10.0 || ^18.0.0 || >=20.0.0" }, "peerDependencies": { "@babel/core": ">=7.0.0-beta.0 <8", @@ -3718,9 +3718,9 @@ } }, "node_modules/ts-jest/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -3739,9 +3739,9 @@ "dev": true }, "node_modules/ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", + "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", "dev": true, "dependencies": { "@cspotcode/source-map-support": "^0.8.0", diff --git a/ecosystem-tests/node-ts4.5-jest27/package-lock.json b/ecosystem-tests/node-ts4.5-jest27/package-lock.json index 76813597f..bedd114f8 100644 --- a/ecosystem-tests/node-ts4.5-jest27/package-lock.json +++ b/ecosystem-tests/node-ts4.5-jest27/package-lock.json @@ -14,13 +14,13 @@ }, "devDependencies": { "@types/jest": "27.5.2", - "@types/node": "^20.4.2", + "@types/node": "20.11.20", "@types/node-fetch": "^2.6.1", "@types/ws": "^8.5.4", "fastest-levenshtein": "^1.0.16", "jest": "27.5.1", "ts-jest": "27.1.5", - "typescript": "4.5.4" + "typescript": "4.5.5" } }, "node_modules/@ampproject/remapping": { @@ -1077,9 +1077,9 @@ } }, "node_modules/@types/node-fetch": { - "version": "2.6.5", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.5.tgz", - "integrity": "sha512-OZsUlr2nxvkqUFLSaY2ZbA+P1q22q+KrlxWOn/38RX+u5kTkYL2mTujEpzUhGkS+K/QCYp9oagfXG39XOzyySg==", + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", "dev": true, "dependencies": { "@types/node": "*", @@ -4108,9 +4108,9 @@ } }, "node_modules/typescript": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.4.tgz", - "integrity": "sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg==", + "version": "4.5.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.5.tgz", + "integrity": "sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA==", "dev": true, "bin": { "tsc": "bin/tsc", diff --git a/ecosystem-tests/node-ts4.5-jest27/package.json b/ecosystem-tests/node-ts4.5-jest27/package.json index 1740acae8..ae76bcc9c 100644 --- a/ecosystem-tests/node-ts4.5-jest27/package.json +++ b/ecosystem-tests/node-ts4.5-jest27/package.json @@ -13,13 +13,13 @@ "tsconfig-paths": "^4.0.0" }, "devDependencies": { - "@types/node": "^20.4.2", + "@types/node": "20.11.20", "@types/node-fetch": "^2.6.1", "@types/jest": "27.5.2", "@types/ws": "^8.5.4", "fastest-levenshtein": "^1.0.16", "jest": "27.5.1", "ts-jest": "27.1.5", - "typescript": "4.5.4" + "typescript": "4.5.5" } } diff --git a/ecosystem-tests/ts-browser-webpack/package-lock.json b/ecosystem-tests/ts-browser-webpack/package-lock.json index b8f507e9b..686d0c2f9 100644 --- a/ecosystem-tests/ts-browser-webpack/package-lock.json +++ b/ecosystem-tests/ts-browser-webpack/package-lock.json @@ -6604,9 +6604,9 @@ "dev": true }, "node_modules/ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", + "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", "dev": true, "dependencies": { "@cspotcode/source-map-support": "^0.8.0", @@ -6978,9 +6978,9 @@ } }, "node_modules/webpack-dev-middleware": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", - "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz", + "integrity": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==", "dev": true, "dependencies": { "colorette": "^2.0.10", @@ -7001,9 +7001,9 @@ } }, "node_modules/webpack-dev-server": { - "version": "4.15.1", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz", - "integrity": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==", + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.2.tgz", + "integrity": "sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==", "dev": true, "dependencies": { "@types/bonjour": "^3.5.9", @@ -7034,7 +7034,7 @@ "serve-index": "^1.9.1", "sockjs": "^0.3.24", "spdy": "^4.0.2", - "webpack-dev-middleware": "^5.3.1", + "webpack-dev-middleware": "^5.3.4", "ws": "^8.13.0" }, "bin": { diff --git a/ecosystem-tests/vercel-edge/package-lock.json b/ecosystem-tests/vercel-edge/package-lock.json index ebac7eb81..fdfe2952d 100644 --- a/ecosystem-tests/vercel-edge/package-lock.json +++ b/ecosystem-tests/vercel-edge/package-lock.json @@ -15,8 +15,8 @@ }, "devDependencies": { "@types/node": "20.3.3", - "@types/react": "18.2.58", - "@types/react-dom": "18.2.19", + "@types/react": "18.2.74", + "@types/react-dom": "18.2.23", "edge-runtime": "^2.4.3", "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", @@ -730,9 +730,9 @@ } }, "node_modules/@edge-runtime/format": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@edge-runtime/format/-/format-2.2.0.tgz", - "integrity": "sha512-gPrS6AVw/qJJL0vcxMXv4kFXCU3ZTCD1uuJpwX15YxHV8BgU9OG5v9LrkkXcr96PBT/9epypfNJMhlWADuEziw==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@edge-runtime/format/-/format-2.2.1.tgz", + "integrity": "sha512-JQTRVuiusQLNNLe2W9tnzBlV/GvSVcozLl4XZHk5swnRZ/v6jp8TqR8P7sqmJsQqblDZ3EztcWmLDbhRje/+8g==", "dev": true, "engines": { "node": ">=16" @@ -747,22 +747,31 @@ "node": ">=14" } }, + "node_modules/@edge-runtime/ponyfill": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@edge-runtime/ponyfill/-/ponyfill-2.4.2.tgz", + "integrity": "sha512-oN17GjFr69chu6sDLvXxdhg0Qe8EZviGSuqzR9qOiKh4MhFYGdBBcqRNzdmYeAdeRzOW2mM9yil4RftUQ7sUOA==", + "dev": true, + "engines": { + "node": ">=16" + } + }, "node_modules/@edge-runtime/primitives": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-3.1.0.tgz", - "integrity": "sha512-yxr1QM/lC8nrU38zxePeDqVeIjwsJ83gKGTH8YJ4CoHTv3q+6xEeqRIT+/9IPX/FApWYtnxHauhNqr6CHRj5YA==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@edge-runtime/primitives/-/primitives-4.1.0.tgz", + "integrity": "sha512-Vw0lbJ2lvRUqc7/soqygUX216Xb8T3WBZ987oywz6aJqRxcwSVWwr9e+Nqo2m9bxobA9mdbWNNoRY6S9eko1EQ==", "dev": true, "engines": { "node": ">=16" } }, "node_modules/@edge-runtime/vm": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.1.0.tgz", - "integrity": "sha512-Y2JZgJP+4byI17SiDeEZhvBUvJ+om7E5ll/jrS7aGRpet5qKnJSsGep6xxhMjqT/j8ulFvTMN/kdlMMy5pEKBQ==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@edge-runtime/vm/-/vm-3.2.0.tgz", + "integrity": "sha512-0dEVyRLM/lG4gp1R/Ik5bfPl/1wX00xFwd5KcNH602tzBa09oF7pbTKETEhR1GjZ75K6OJnYFu8II2dyMhONMw==", "dev": true, "dependencies": { - "@edge-runtime/primitives": "3.1.0" + "@edge-runtime/primitives": "4.1.0" }, "engines": { "node": ">=16" @@ -1562,31 +1571,24 @@ "dev": true }, "node_modules/@types/react": { - "version": "18.2.58", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.58.tgz", - "integrity": "sha512-TaGvMNhxvG2Q0K0aYxiKfNDS5m5ZsoIBBbtfUorxdH4NGSXIlYvZxLJI+9Dd3KjeB3780bciLyAb7ylO8pLhPw==", + "version": "18.2.74", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.74.tgz", + "integrity": "sha512-9AEqNZZyBx8OdZpxzQlaFEVCSFUM2YXJH46yPOiOpm078k6ZLOCcuAzGum/zK8YBwY+dbahVNbHrbgrAwIRlqw==", "dev": true, "dependencies": { "@types/prop-types": "*", - "@types/scheduler": "*", "csstype": "^3.0.2" } }, "node_modules/@types/react-dom": { - "version": "18.2.19", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.19.tgz", - "integrity": "sha512-aZvQL6uUbIJpjZk4U8JZGbau9KDeAwMfmhyWorxgBkqDIEf6ROjRozcmPIicqsUwPUjbkDfHKgGee1Lq65APcA==", + "version": "18.2.23", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.23.tgz", + "integrity": "sha512-ZQ71wgGOTmDYpnav2knkjr3qXdAFu0vsk8Ci5w3pGAIdj7/kKAyn+VsQDhXsmzzzepAiI9leWMmubXz690AI/A==", "dev": true, "dependencies": { "@types/react": "*" } }, - "node_modules/@types/scheduler": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", - "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==", - "dev": true - }, "node_modules/@types/stack-utils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", @@ -2940,17 +2942,17 @@ "dev": true }, "node_modules/edge-runtime": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.5.0.tgz", - "integrity": "sha512-QgDNX6R+RPwhY3+vqHpvYE4XUoB/cFG60nGBKu9pmPOJxQleeTCj2F5CHimIpNqex9h1Cy2Y3tuQ+Vq2GzmZIA==", + "version": "2.5.9", + "resolved": "https://registry.npmjs.org/edge-runtime/-/edge-runtime-2.5.9.tgz", + "integrity": "sha512-pk+k0oK0PVXdlT4oRp4lwh+unuKB7Ng4iZ2HB+EZ7QCEQizX360Rp/F4aRpgpRgdP2ufB35N+1KppHmYjqIGSg==", "dev": true, "dependencies": { - "@edge-runtime/format": "2.2.0", - "@edge-runtime/vm": "3.1.0", + "@edge-runtime/format": "2.2.1", + "@edge-runtime/ponyfill": "2.4.2", + "@edge-runtime/vm": "3.2.0", "async-listen": "3.0.1", "mri": "1.2.0", "picocolors": "1.0.0", - "pretty-bytes": "5.6.0", "pretty-ms": "7.0.1", "signal-exit": "4.0.2", "time-span": "4.0.0" @@ -6249,9 +6251,9 @@ "dev": true }, "node_modules/ts-jest": { - "version": "29.1.1", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", - "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", + "version": "29.1.2", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.2.tgz", + "integrity": "sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==", "dev": true, "dependencies": { "bs-logger": "0.x", @@ -6267,7 +6269,7 @@ "ts-jest": "cli.js" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^16.10.0 || ^18.0.0 || >=20.0.0" }, "peerDependencies": { "@babel/core": ">=7.0.0-beta.0 <8", @@ -6292,9 +6294,9 @@ } }, "node_modules/ts-jest/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" diff --git a/ecosystem-tests/vercel-edge/package.json b/ecosystem-tests/vercel-edge/package.json index 171ba9c1a..48223796c 100644 --- a/ecosystem-tests/vercel-edge/package.json +++ b/ecosystem-tests/vercel-edge/package.json @@ -21,8 +21,8 @@ }, "devDependencies": { "@types/node": "20.3.3", - "@types/react": "18.2.58", - "@types/react-dom": "18.2.19", + "@types/react": "18.2.74", + "@types/react-dom": "18.2.23", "edge-runtime": "^2.4.3", "fastest-levenshtein": "^1.0.16", "jest": "^29.5.0", From c5eb4eaf7f7422bb3f9745d85c908d238d065fb3 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 2 Apr 2024 19:57:39 +0200 Subject: [PATCH 340/725] fix(tests): update wrangler to v3.19.0 (CVE-2023-7080) (#755) --- .../cloudflare-worker/package-lock.json | 750 ++++-------------- 1 file changed, 146 insertions(+), 604 deletions(-) diff --git a/ecosystem-tests/cloudflare-worker/package-lock.json b/ecosystem-tests/cloudflare-worker/package-lock.json index dd42f0b36..0673bb27c 100644 --- a/ecosystem-tests/cloudflare-worker/package-lock.json +++ b/ecosystem-tests/cloudflare-worker/package-lock.json @@ -671,9 +671,9 @@ } }, "node_modules/@cloudflare/workerd-darwin-64": { - "version": "1.20230814.1", - "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20230814.1.tgz", - "integrity": "sha512-aQUO7q7qXl+SVtOiMMlVKLNOSeL6GX43RKeflwzsD74dGgyHPiSfw5KCvXhkVbyN7u+yYF6HyFdaIvHLfn5jyA==", + "version": "1.20231030.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20231030.0.tgz", + "integrity": "sha512-J4PQ9utPxLya9yHdMMx3AZeC5M/6FxcoYw6jo9jbDDFTy+a4Gslqf4Im9We3aeOEdPXa3tgQHVQOSelJSZLhIw==", "cpu": [ "x64" ], @@ -687,9 +687,9 @@ } }, "node_modules/@cloudflare/workerd-darwin-arm64": { - "version": "1.20230814.1", - "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20230814.1.tgz", - "integrity": "sha512-U2mcgi+AiuI/4EY5Wk/GmygiNoCNw/V2mcHmxESqe4r6XbJYOzBdEsjnqJ05rqd0JlEM8m64jRtE6/qBnQHygg==", + "version": "1.20231030.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20231030.0.tgz", + "integrity": "sha512-WSJJjm11Del4hSneiNB7wTXGtBXI4QMCH9l5qf4iT5PAW8cESGcCmdHtWDWDtGAAGcvmLT04KNvmum92vRKKQQ==", "cpu": [ "arm64" ], @@ -703,9 +703,9 @@ } }, "node_modules/@cloudflare/workerd-linux-64": { - "version": "1.20230814.1", - "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20230814.1.tgz", - "integrity": "sha512-Q4kITXLTCuG2i2Z01fbb5AjVRRIf3+lS4ZVsFbTbIwtcOOG4Ozcw7ee7tKsFES7hFqR4Eg9gMG4/aS0mmi+L2g==", + "version": "1.20231030.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20231030.0.tgz", + "integrity": "sha512-2HUeRTvoCC17fxE0qdBeR7J9dO8j4A8ZbdcvY8pZxdk+zERU6+N03RTbk/dQMU488PwiDvcC3zZqS4gwLfVT8g==", "cpu": [ "x64" ], @@ -719,9 +719,9 @@ } }, "node_modules/@cloudflare/workerd-linux-arm64": { - "version": "1.20230814.1", - "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20230814.1.tgz", - "integrity": "sha512-BX5SaksXw+pkREVw3Rw2eSNXplqZw+14CcwW/5x/4oq/C6yn5qCvKxJfM7pukJGMI4wkJPOYops7B3g27FB/HA==", + "version": "1.20231030.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20231030.0.tgz", + "integrity": "sha512-4/GK5zHh+9JbUI6Z5xTCM0ZmpKKHk7vu9thmHjUxtz+o8Ne9DoD7DlDvXQWgMF6XGaTubDWyp3ttn+Qv8jDFuQ==", "cpu": [ "arm64" ], @@ -735,9 +735,9 @@ } }, "node_modules/@cloudflare/workerd-windows-64": { - "version": "1.20230814.1", - "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20230814.1.tgz", - "integrity": "sha512-GWHqfyhsG/1wm2W8afkYX3q3fWXUWWD8NGtHfAs6ZVTHdW3mmYyMhKR0lc6ptBwz5i5aXRlP2S+CxxxwwDbKpw==", + "version": "1.20231030.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20231030.0.tgz", + "integrity": "sha512-fb/Jgj8Yqy3PO1jLhk7mTrHMkR8jklpbQFud6rL/aMAn5d6MQbaSrYOCjzkKGp0Zng8D2LIzSl+Fc0C9Sggxjg==", "cpu": [ "x64" ], @@ -757,18 +757,18 @@ "dev": true }, "node_modules/@esbuild-plugins/node-globals-polyfill": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@esbuild-plugins/node-globals-polyfill/-/node-globals-polyfill-0.1.1.tgz", - "integrity": "sha512-MR0oAA+mlnJWrt1RQVQ+4VYuRJW/P2YmRTv1AsplObyvuBMnPHiizUF95HHYiSsMGLhyGtWufaq2XQg6+iurBg==", + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@esbuild-plugins/node-globals-polyfill/-/node-globals-polyfill-0.2.3.tgz", + "integrity": "sha512-r3MIryXDeXDOZh7ih1l/yE9ZLORCd5e8vWg02azWRGj5SPTuoh69A2AIyn0Z31V/kHBfZ4HgWJ+OK3GTTwLmnw==", "dev": true, "peerDependencies": { "esbuild": "*" } }, "node_modules/@esbuild-plugins/node-modules-polyfill": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/@esbuild-plugins/node-modules-polyfill/-/node-modules-polyfill-0.1.4.tgz", - "integrity": "sha512-uZbcXi0zbmKC/050p3gJnne5Qdzw8vkXIv+c2BW0Lsc1ji1SkrxbKPUy5Efr0blbTu1SL8w4eyfpnSdPg3G0Qg==", + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@esbuild-plugins/node-modules-polyfill/-/node-modules-polyfill-0.2.2.tgz", + "integrity": "sha512-LXV7QsWJxRuMYvKbiznh+U1ilIop3g2TeKRzUxOG5X3YITc8JyyTa90BmLwqqv0YnX4v32CSlG+vsziZp9dMvA==", "dev": true, "dependencies": { "escape-string-regexp": "^4.0.0", @@ -791,9 +791,9 @@ } }, "node_modules/@esbuild/android-arm": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.16.3.tgz", - "integrity": "sha512-mueuEoh+s1eRbSJqq9KNBQwI4QhQV6sRXIfTyLXSHGMpyew61rOK4qY21uKbXl1iBoMb0AdL1deWFCQVlN2qHA==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.19.tgz", + "integrity": "sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==", "cpu": [ "arm" ], @@ -807,9 +807,9 @@ } }, "node_modules/@esbuild/android-arm64": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.16.3.tgz", - "integrity": "sha512-RolFVeinkeraDvN/OoRf1F/lP0KUfGNb5jxy/vkIMeRRChkrX/HTYN6TYZosRJs3a1+8wqpxAo5PI5hFmxyPRg==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz", + "integrity": "sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==", "cpu": [ "arm64" ], @@ -823,9 +823,9 @@ } }, "node_modules/@esbuild/android-x64": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.16.3.tgz", - "integrity": "sha512-SFpTUcIT1bIJuCCBMCQWq1bL2gPTjWoLZdjmIhjdcQHaUfV41OQfho6Ici5uvvkMmZRXIUGpM3GxysP/EU7ifQ==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.19.tgz", + "integrity": "sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==", "cpu": [ "x64" ], @@ -839,9 +839,9 @@ } }, "node_modules/@esbuild/darwin-arm64": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.16.3.tgz", - "integrity": "sha512-DO8WykMyB+N9mIDfI/Hug70Dk1KipavlGAecxS3jDUwAbTpDXj0Lcwzw9svkhxfpCagDmpaTMgxWK8/C/XcXvw==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz", + "integrity": "sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==", "cpu": [ "arm64" ], @@ -855,9 +855,9 @@ } }, "node_modules/@esbuild/darwin-x64": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.16.3.tgz", - "integrity": "sha512-uEqZQ2omc6BvWqdCiyZ5+XmxuHEi1SPzpVxXCSSV2+Sh7sbXbpeNhHIeFrIpRjAs0lI1FmA1iIOxFozKBhKgRQ==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz", + "integrity": "sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==", "cpu": [ "x64" ], @@ -871,9 +871,9 @@ } }, "node_modules/@esbuild/freebsd-arm64": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.3.tgz", - "integrity": "sha512-nJansp3sSXakNkOD5i5mIz2Is/HjzIhFs49b1tjrPrpCmwgBmH9SSzhC/Z1UqlkivqMYkhfPwMw1dGFUuwmXhw==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz", + "integrity": "sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==", "cpu": [ "arm64" ], @@ -887,9 +887,9 @@ } }, "node_modules/@esbuild/freebsd-x64": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.16.3.tgz", - "integrity": "sha512-TfoDzLw+QHfc4a8aKtGSQ96Wa+6eimljjkq9HKR0rHlU83vw8aldMOUSJTUDxbcUdcgnJzPaX8/vGWm7vyV7ug==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz", + "integrity": "sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==", "cpu": [ "x64" ], @@ -903,9 +903,9 @@ } }, "node_modules/@esbuild/linux-arm": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.16.3.tgz", - "integrity": "sha512-VwswmSYwVAAq6LysV59Fyqk3UIjbhuc6wb3vEcJ7HEJUtFuLK9uXWuFoH1lulEbE4+5GjtHi3MHX+w1gNHdOWQ==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz", + "integrity": "sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==", "cpu": [ "arm" ], @@ -919,9 +919,9 @@ } }, "node_modules/@esbuild/linux-arm64": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.16.3.tgz", - "integrity": "sha512-7I3RlsnxEFCHVZNBLb2w7unamgZ5sVwO0/ikE2GaYvYuUQs9Qte/w7TqWcXHtCwxvZx/2+F97ndiUQAWs47ZfQ==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz", + "integrity": "sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==", "cpu": [ "arm64" ], @@ -935,9 +935,9 @@ } }, "node_modules/@esbuild/linux-ia32": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.16.3.tgz", - "integrity": "sha512-X8FDDxM9cqda2rJE+iblQhIMYY49LfvW4kaEjoFbTTQ4Go8G96Smj2w3BRTwA8IHGoi9dPOPGAX63dhuv19UqA==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz", + "integrity": "sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==", "cpu": [ "ia32" ], @@ -951,9 +951,9 @@ } }, "node_modules/@esbuild/linux-loong64": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.16.3.tgz", - "integrity": "sha512-hIbeejCOyO0X9ujfIIOKjBjNAs9XD/YdJ9JXAy1lHA+8UXuOqbFe4ErMCqMr8dhlMGBuvcQYGF7+kO7waj2KHw==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz", + "integrity": "sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==", "cpu": [ "loong64" ], @@ -967,9 +967,9 @@ } }, "node_modules/@esbuild/linux-mips64el": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.16.3.tgz", - "integrity": "sha512-znFRzICT/V8VZQMt6rjb21MtAVJv/3dmKRMlohlShrbVXdBuOdDrGb+C2cZGQAR8RFyRe7HS6klmHq103WpmVw==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz", + "integrity": "sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==", "cpu": [ "mips64el" ], @@ -983,9 +983,9 @@ } }, "node_modules/@esbuild/linux-ppc64": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.16.3.tgz", - "integrity": "sha512-EV7LuEybxhXrVTDpbqWF2yehYRNz5e5p+u3oQUS2+ZFpknyi1NXxr8URk4ykR8Efm7iu04//4sBg249yNOwy5Q==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz", + "integrity": "sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==", "cpu": [ "ppc64" ], @@ -999,9 +999,9 @@ } }, "node_modules/@esbuild/linux-riscv64": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.16.3.tgz", - "integrity": "sha512-uDxqFOcLzFIJ+r/pkTTSE9lsCEaV/Y6rMlQjUI9BkzASEChYL/aSQjZjchtEmdnVxDKETnUAmsaZ4pqK1eE5BQ==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz", + "integrity": "sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==", "cpu": [ "riscv64" ], @@ -1015,9 +1015,9 @@ } }, "node_modules/@esbuild/linux-s390x": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.16.3.tgz", - "integrity": "sha512-NbeREhzSxYwFhnCAQOQZmajsPYtX71Ufej3IQ8W2Gxskfz9DK58ENEju4SbpIj48VenktRASC52N5Fhyf/aliQ==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz", + "integrity": "sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==", "cpu": [ "s390x" ], @@ -1031,9 +1031,9 @@ } }, "node_modules/@esbuild/linux-x64": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.16.3.tgz", - "integrity": "sha512-SDiG0nCixYO9JgpehoKgScwic7vXXndfasjnD5DLbp1xltANzqZ425l7LSdHynt19UWOcDjG9wJJzSElsPvk0w==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz", + "integrity": "sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==", "cpu": [ "x64" ], @@ -1047,9 +1047,9 @@ } }, "node_modules/@esbuild/netbsd-x64": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.16.3.tgz", - "integrity": "sha512-AzbsJqiHEq1I/tUvOfAzCY15h4/7Ivp3ff/o1GpP16n48JMNAtbW0qui2WCgoIZArEHD0SUQ95gvR0oSO7ZbdA==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz", + "integrity": "sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==", "cpu": [ "x64" ], @@ -1063,9 +1063,9 @@ } }, "node_modules/@esbuild/openbsd-x64": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.16.3.tgz", - "integrity": "sha512-gSABi8qHl8k3Cbi/4toAzHiykuBuWLZs43JomTcXkjMZVkp0gj3gg9mO+9HJW/8GB5H89RX/V0QP4JGL7YEEVg==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz", + "integrity": "sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==", "cpu": [ "x64" ], @@ -1079,9 +1079,9 @@ } }, "node_modules/@esbuild/sunos-x64": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.16.3.tgz", - "integrity": "sha512-SF9Kch5Ete4reovvRO6yNjMxrvlfT0F0Flm+NPoUw5Z4Q3r1d23LFTgaLwm3Cp0iGbrU/MoUI+ZqwCv5XJijCw==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz", + "integrity": "sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==", "cpu": [ "x64" ], @@ -1095,9 +1095,9 @@ } }, "node_modules/@esbuild/win32-arm64": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.16.3.tgz", - "integrity": "sha512-u5aBonZIyGopAZyOnoPAA6fGsDeHByZ9CnEzyML9NqntK6D/xl5jteZUKm/p6nD09+v3pTM6TuUIqSPcChk5gg==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz", + "integrity": "sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==", "cpu": [ "arm64" ], @@ -1111,9 +1111,9 @@ } }, "node_modules/@esbuild/win32-ia32": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.16.3.tgz", - "integrity": "sha512-GlgVq1WpvOEhNioh74TKelwla9KDuAaLZrdxuuUgsP2vayxeLgVc+rbpIv0IYF4+tlIzq2vRhofV+KGLD+37EQ==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz", + "integrity": "sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==", "cpu": [ "ia32" ], @@ -1127,9 +1127,9 @@ } }, "node_modules/@esbuild/win32-x64": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.16.3.tgz", - "integrity": "sha512-5/JuTd8OWW8UzEtyf19fbrtMJENza+C9JoPIkvItgTBQ1FO2ZLvjbPO6Xs54vk0s5JB5QsfieUEshRQfu7ZHow==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz", + "integrity": "sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==", "cpu": [ "x64" ], @@ -1881,37 +1881,6 @@ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/better-sqlite3": { - "version": "8.5.2", - "resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-8.5.2.tgz", - "integrity": "sha512-w/EZ/jwuZF+/47mAVC2+rhR2X/gwkZ+fd1pbX7Y90D5NRaRzDQcxrHY10t6ijGiYIonCVsBSF5v1cay07bP5sg==", - "dev": true, - "hasInstallScript": true, - "dependencies": { - "bindings": "^1.5.0", - "prebuild-install": "^7.1.0" - } - }, "node_modules/binary-extensions": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", @@ -1921,26 +1890,6 @@ "node": ">=8" } }, - "node_modules/bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "dev": true, - "dependencies": { - "file-uri-to-path": "1.0.0" - } - }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, "node_modules/blake3-wasm": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/blake3-wasm/-/blake3-wasm-2.1.5.tgz", @@ -2028,30 +1977,6 @@ "node-int64": "^0.4.0" } }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", @@ -2179,12 +2104,6 @@ "fsevents": "~2.3.2" } }, - "node_modules/chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "dev": true - }, "node_modules/ci-info": { "version": "3.8.0", "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", @@ -2347,21 +2266,6 @@ } } }, - "node_modules/decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "dev": true, - "dependencies": { - "mimic-response": "^3.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/dedent": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", @@ -2376,15 +2280,6 @@ } } }, - "node_modules/deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "dev": true, - "engines": { - "node": ">=4.0.0" - } - }, "node_modules/deepmerge": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", @@ -2403,15 +2298,6 @@ "node": ">=0.4.0" } }, - "node_modules/detect-libc": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.2.tgz", - "integrity": "sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/detect-newline": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", @@ -2460,15 +2346,6 @@ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "dependencies": { - "once": "^1.4.0" - } - }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -2479,9 +2356,9 @@ } }, "node_modules/esbuild": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.16.3.tgz", - "integrity": "sha512-71f7EjPWTiSguen8X/kxEpkAS7BFHwtQKisCDDV3Y4GLGWBaoSCyD5uXkaUew6JDzA9FEN1W23mdnSwW9kqCeg==", + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.19.tgz", + "integrity": "sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==", "dev": true, "hasInstallScript": true, "bin": { @@ -2491,28 +2368,28 @@ "node": ">=12" }, "optionalDependencies": { - "@esbuild/android-arm": "0.16.3", - "@esbuild/android-arm64": "0.16.3", - "@esbuild/android-x64": "0.16.3", - "@esbuild/darwin-arm64": "0.16.3", - "@esbuild/darwin-x64": "0.16.3", - "@esbuild/freebsd-arm64": "0.16.3", - "@esbuild/freebsd-x64": "0.16.3", - "@esbuild/linux-arm": "0.16.3", - "@esbuild/linux-arm64": "0.16.3", - "@esbuild/linux-ia32": "0.16.3", - "@esbuild/linux-loong64": "0.16.3", - "@esbuild/linux-mips64el": "0.16.3", - "@esbuild/linux-ppc64": "0.16.3", - "@esbuild/linux-riscv64": "0.16.3", - "@esbuild/linux-s390x": "0.16.3", - "@esbuild/linux-x64": "0.16.3", - "@esbuild/netbsd-x64": "0.16.3", - "@esbuild/openbsd-x64": "0.16.3", - "@esbuild/sunos-x64": "0.16.3", - "@esbuild/win32-arm64": "0.16.3", - "@esbuild/win32-ia32": "0.16.3", - "@esbuild/win32-x64": "0.16.3" + "@esbuild/android-arm": "0.17.19", + "@esbuild/android-arm64": "0.17.19", + "@esbuild/android-x64": "0.17.19", + "@esbuild/darwin-arm64": "0.17.19", + "@esbuild/darwin-x64": "0.17.19", + "@esbuild/freebsd-arm64": "0.17.19", + "@esbuild/freebsd-x64": "0.17.19", + "@esbuild/linux-arm": "0.17.19", + "@esbuild/linux-arm64": "0.17.19", + "@esbuild/linux-ia32": "0.17.19", + "@esbuild/linux-loong64": "0.17.19", + "@esbuild/linux-mips64el": "0.17.19", + "@esbuild/linux-ppc64": "0.17.19", + "@esbuild/linux-riscv64": "0.17.19", + "@esbuild/linux-s390x": "0.17.19", + "@esbuild/linux-x64": "0.17.19", + "@esbuild/netbsd-x64": "0.17.19", + "@esbuild/openbsd-x64": "0.17.19", + "@esbuild/sunos-x64": "0.17.19", + "@esbuild/win32-arm64": "0.17.19", + "@esbuild/win32-ia32": "0.17.19", + "@esbuild/win32-x64": "0.17.19" } }, "node_modules/escalade": { @@ -2611,15 +2488,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/expand-template": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", - "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/expect": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", @@ -2682,12 +2550,6 @@ "node": "^12.20 || >= 14.13" } }, - "node_modules/file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "dev": true - }, "node_modules/fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -2764,12 +2626,6 @@ "integrity": "sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==", "dev": true }, - "node_modules/fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "dev": true - }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -2854,12 +2710,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/github-from-package": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", - "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==", - "dev": true - }, "node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", @@ -2940,12 +2790,6 @@ "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, - "node_modules/http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true - }, "node_modules/human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", @@ -2955,26 +2799,6 @@ "node": ">=10.17.0" } }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, "node_modules/import-local": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", @@ -3019,12 +2843,6 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true - }, "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", @@ -4075,54 +3893,32 @@ "node": ">=6" } }, - "node_modules/mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/miniflare": { - "version": "3.20230814.1", - "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-3.20230814.1.tgz", - "integrity": "sha512-LMgqd1Ut0+fnlvQepVbbBYQczQnyuuap8bgUwOyPETka0S9NR9NxMQSNaBgVZ0uOaG7xMJ/OVTRlz+TGB86PWA==", + "version": "3.20231030.3", + "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-3.20231030.3.tgz", + "integrity": "sha512-lquHSh0XiO8uoWDujOLHtDS9mkUTJTc5C5amiQ6A++5y0f+DWiMqbDBvvwjlYf4Dvqk6ChFya9dztk7fg2ZVxA==", "dev": true, "dependencies": { "acorn": "^8.8.0", "acorn-walk": "^8.2.0", - "better-sqlite3": "^8.1.0", "capnp-ts": "^0.7.0", "exit-hook": "^2.2.1", "glob-to-regexp": "^0.4.1", - "http-cache-semantics": "^4.1.0", - "kleur": "^4.1.5", - "set-cookie-parser": "^2.6.0", "source-map-support": "0.5.21", "stoppable": "^1.1.0", - "undici": "^5.13.0", - "workerd": "1.20230814.1", + "undici": "^5.22.1", + "workerd": "1.20231030.0", "ws": "^8.11.0", "youch": "^3.2.2", "zod": "^3.20.6" }, + "bin": { + "miniflare": "bootstrap.js" + }, "engines": { "node": ">=16.13" } }, - "node_modules/miniflare/node_modules/kleur": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", - "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/miniflare/node_modules/source-map-support": { "version": "0.5.21", "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", @@ -4154,12 +3950,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/mkdirp-classic": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", - "dev": true - }, "node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", @@ -4193,63 +3983,12 @@ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/napi-build-utils": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", - "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==", - "dev": true - }, "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, - "node_modules/node-abi": { - "version": "3.47.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.47.0.tgz", - "integrity": "sha512-2s6B2CWZM//kPgwnuI0KrYwNjfdByE25zvAaEpq9IH4zcNsarH8Ihu/UuX6XMPEogDAxkuUFeZn60pXNHAqn3A==", - "dev": true, - "dependencies": { - "semver": "^7.3.5" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/node-abi/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/node-abi/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/node-abi/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/node-domexception": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", @@ -4507,32 +4246,6 @@ "node": ">=8" } }, - "node_modules/prebuild-install": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.1.tgz", - "integrity": "sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==", - "dev": true, - "dependencies": { - "detect-libc": "^2.0.0", - "expand-template": "^2.0.3", - "github-from-package": "0.0.0", - "minimist": "^1.2.3", - "mkdirp-classic": "^0.5.3", - "napi-build-utils": "^1.0.1", - "node-abi": "^3.3.0", - "pump": "^3.0.0", - "rc": "^1.2.7", - "simple-get": "^4.0.0", - "tar-fs": "^2.0.0", - "tunnel-agent": "^0.6.0" - }, - "bin": { - "prebuild-install": "bin.js" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/pretty-format": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", @@ -4599,16 +4312,6 @@ "node": ">= 0.10" } }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, "node_modules/pure-rand": { "version": "6.0.4", "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", @@ -4625,50 +4328,12 @@ } ] }, - "node_modules/rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "dev": true, - "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "bin": { - "rc": "cli.js" - } - }, - "node_modules/rc/node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/react-is": { "version": "18.2.0", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", "dev": true }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", @@ -4776,26 +4441,6 @@ "tslib": "^2.1.0" } }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, "node_modules/selfsigned": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", @@ -4817,12 +4462,6 @@ "semver": "bin/semver.js" } }, - "node_modules/set-cookie-parser": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.6.0.tgz", - "integrity": "sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==", - "dev": true - }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", @@ -4850,51 +4489,6 @@ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, - "node_modules/simple-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", - "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/simple-get": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", - "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "decompress-response": "^6.0.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - } - }, "node_modules/sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", @@ -5028,15 +4622,6 @@ "node": ">=10.0.0" } }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, "node_modules/string-length": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", @@ -5130,34 +4715,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/tar-fs": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", - "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", - "dev": true, - "dependencies": { - "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^2.1.4" - } - }, - "node_modules/tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "dev": true, - "dependencies": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/test-exclude": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", @@ -5287,18 +4844,6 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", "dev": true }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", - "dev": true, - "dependencies": { - "safe-buffer": "^5.0.1" - }, - "engines": { - "node": "*" - } - }, "node_modules/type-detect": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", @@ -5375,12 +4920,6 @@ "browserslist": ">= 4.21.0" } }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, "node_modules/v8-to-istanbul": { "version": "9.2.0", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", @@ -5447,9 +4986,9 @@ } }, "node_modules/workerd": { - "version": "1.20230814.1", - "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20230814.1.tgz", - "integrity": "sha512-zJeSEteXuAD+bpYJT8WvzTAHvIAkKPVxOV+Jy6zCLKz5e08N3OUbAF+wrvGWc8b2aB1sj+IYsdXfkv4puH+qXQ==", + "version": "1.20231030.0", + "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20231030.0.tgz", + "integrity": "sha512-+FSW+d31f8RrjHanFf/R9A+Z0csf3OtsvzdPmAKuwuZm/5HrBv83cvG9fFeTxl7/nI6irUUXIRF9xcj/NomQzQ==", "dev": true, "hasInstallScript": true, "bin": { @@ -5459,30 +4998,32 @@ "node": ">=16" }, "optionalDependencies": { - "@cloudflare/workerd-darwin-64": "1.20230814.1", - "@cloudflare/workerd-darwin-arm64": "1.20230814.1", - "@cloudflare/workerd-linux-64": "1.20230814.1", - "@cloudflare/workerd-linux-arm64": "1.20230814.1", - "@cloudflare/workerd-windows-64": "1.20230814.1" + "@cloudflare/workerd-darwin-64": "1.20231030.0", + "@cloudflare/workerd-darwin-arm64": "1.20231030.0", + "@cloudflare/workerd-linux-64": "1.20231030.0", + "@cloudflare/workerd-linux-arm64": "1.20231030.0", + "@cloudflare/workerd-windows-64": "1.20231030.0" } }, "node_modules/wrangler": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-3.6.0.tgz", - "integrity": "sha512-GWs4+gIUK+086svW/TgFhhxxrl/hdW2L7WASbdc10dJT7yFmCXse0SnHiqWUxbFu3ScP2t3a3LszJ08wwolWHg==", + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-3.19.0.tgz", + "integrity": "sha512-pY7xWqkQn6DJ+1vz9YHz2pCftEmK+JCTj9sqnucp0NZnlUiILDmBWegsjjCLZycgfiA62J213N7NvjLPr2LB8w==", "dev": true, "dependencies": { "@cloudflare/kv-asset-handler": "^0.2.0", - "@esbuild-plugins/node-globals-polyfill": "^0.1.1", - "@esbuild-plugins/node-modules-polyfill": "^0.1.4", + "@esbuild-plugins/node-globals-polyfill": "^0.2.3", + "@esbuild-plugins/node-modules-polyfill": "^0.2.2", "blake3-wasm": "^2.1.5", "chokidar": "^3.5.3", - "esbuild": "0.16.3", - "miniflare": "3.20230814.1", + "esbuild": "0.17.19", + "miniflare": "3.20231030.3", "nanoid": "^3.3.3", "path-to-regexp": "^6.2.0", + "resolve.exports": "^2.0.2", "selfsigned": "^2.0.1", - "source-map": "^0.7.4", + "source-map": "0.6.1", + "source-map-support": "0.5.21", "xxhash-wasm": "^1.0.1" }, "bin": { @@ -5490,19 +5031,20 @@ "wrangler2": "bin/wrangler.js" }, "engines": { - "node": ">=16.13.0" + "node": ">=16.17.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, - "node_modules/wrangler/node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "node_modules/wrangler/node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, - "engines": { - "node": ">= 8" + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" } }, "node_modules/wrap-ansi": { From e2d5d2bcac0aaa48c98931381a1fdc53c16c73f0 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 4 Apr 2024 07:32:06 -0400 Subject: [PATCH 341/725] fix(streaming): handle special line characters and fix multi-byte character decoding (#757) --- src/streaming.ts | 120 +++++++++++++++----- tests/streaming.test.ts | 245 +++++++++++++++++++++++++++++++++++++++- 2 files changed, 338 insertions(+), 27 deletions(-) diff --git a/src/streaming.ts b/src/streaming.ts index 6b0f2a345..722a8f69c 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -23,29 +23,6 @@ export class Stream implements AsyncIterable { static fromSSEResponse(response: Response, controller: AbortController) { let consumed = false; - const decoder = new SSEDecoder(); - - async function* iterMessages(): AsyncGenerator { - if (!response.body) { - controller.abort(); - throw new OpenAIError(`Attempted to iterate over a response with no body`); - } - - const lineDecoder = new LineDecoder(); - - const iter = readableStreamAsyncIterable(response.body); - for await (const chunk of iter) { - for (const line of lineDecoder.decode(chunk)) { - const sse = decoder.decode(line); - if (sse) yield sse; - } - } - - for (const line of lineDecoder.flush()) { - const sse = decoder.decode(line); - if (sse) yield sse; - } - } async function* iterator(): AsyncIterator { if (consumed) { @@ -54,7 +31,7 @@ export class Stream implements AsyncIterable { consumed = true; let done = false; try { - for await (const sse of iterMessages()) { + for await (const sse of _iterSSEMessages(response, controller)) { if (done) continue; if (sse.data.startsWith('[DONE]')) { @@ -220,6 +197,97 @@ export class Stream implements AsyncIterable { } } +export async function* _iterSSEMessages( + response: Response, + controller: AbortController, +): AsyncGenerator { + if (!response.body) { + controller.abort(); + throw new OpenAIError(`Attempted to iterate over a response with no body`); + } + + const sseDecoder = new SSEDecoder(); + const lineDecoder = new LineDecoder(); + + const iter = readableStreamAsyncIterable(response.body); + for await (const sseChunk of iterSSEChunks(iter)) { + for (const line of lineDecoder.decode(sseChunk)) { + const sse = sseDecoder.decode(line); + if (sse) yield sse; + } + } + + for (const line of lineDecoder.flush()) { + const sse = sseDecoder.decode(line); + if (sse) yield sse; + } +} + +/** + * Given an async iterable iterator, iterates over it and yields full + * SSE chunks, i.e. yields when a double new-line is encountered. + */ +async function* iterSSEChunks(iterator: AsyncIterableIterator): AsyncGenerator { + let data = new Uint8Array(); + + for await (const chunk of iterator) { + if (chunk == null) { + continue; + } + + const binaryChunk = + chunk instanceof ArrayBuffer ? new Uint8Array(chunk) + : typeof chunk === 'string' ? new TextEncoder().encode(chunk) + : chunk; + + let newData = new Uint8Array(data.length + binaryChunk.length); + newData.set(data); + newData.set(binaryChunk, data.length); + data = newData; + + let patternIndex; + while ((patternIndex = findDoubleNewlineIndex(data)) !== -1) { + yield data.slice(0, patternIndex); + data = data.slice(patternIndex); + } + } + + if (data.length > 0) { + yield data; + } +} + +function findDoubleNewlineIndex(buffer: Uint8Array): number { + // This function searches the buffer for the end patterns (\r\r, \n\n, \r\n\r\n) + // and returns the index right after the first occurrence of any pattern, + // or -1 if none of the patterns are found. + const newline = 0x0a; // \n + const carriage = 0x0d; // \r + + for (let i = 0; i < buffer.length - 2; i++) { + if (buffer[i] === newline && buffer[i + 1] === newline) { + // \n\n + return i + 2; + } + if (buffer[i] === carriage && buffer[i + 1] === carriage) { + // \r\r + return i + 2; + } + if ( + buffer[i] === carriage && + buffer[i + 1] === newline && + i + 3 < buffer.length && + buffer[i + 2] === carriage && + buffer[i + 3] === newline + ) { + // \r\n\r\n + return i + 4; + } + } + + return -1; +} + class SSEDecoder { private data: string[]; private event: string | null; @@ -283,8 +351,8 @@ class SSEDecoder { */ class LineDecoder { // prettier-ignore - static NEWLINE_CHARS = new Set(['\n', '\r', '\x0b', '\x0c', '\x1c', '\x1d', '\x1e', '\x85', '\u2028', '\u2029']); - static NEWLINE_REGEXP = /\r\n|[\n\r\x0b\x0c\x1c\x1d\x1e\x85\u2028\u2029]/g; + static NEWLINE_CHARS = new Set(['\n', '\r']); + static NEWLINE_REGEXP = /\r\n|[\n\r]/g; buffer: string[]; trailingCR: boolean; diff --git a/tests/streaming.test.ts b/tests/streaming.test.ts index 479b2a341..6fe9a5781 100644 --- a/tests/streaming.test.ts +++ b/tests/streaming.test.ts @@ -1,4 +1,7 @@ -import { _decodeChunks as decodeChunks } from 'openai/streaming'; +import { Response } from 'node-fetch'; +import { PassThrough } from 'stream'; +import assert from 'assert'; +import { _iterSSEMessages, _decodeChunks as decodeChunks } from 'openai/streaming'; describe('line decoder', () => { test('basic', () => { @@ -27,3 +30,243 @@ describe('line decoder', () => { expect(decodeChunks(['foo', ' bar\\r\\nbaz\n'])).toEqual(['foo bar\\r\\nbaz']); }); }); + +describe('streaming decoding', () => { + test('basic', async () => { + async function* body(): AsyncGenerator { + yield Buffer.from('event: completion\n'); + yield Buffer.from('data: {"foo":true}\n'); + yield Buffer.from('\n'); + } + + const stream = _iterSSEMessages(new Response(await iteratorToStream(body())), new AbortController())[ + Symbol.asyncIterator + ](); + + let event = await stream.next(); + assert(event.value); + expect(JSON.parse(event.value.data)).toEqual({ foo: true }); + + event = await stream.next(); + expect(event.done).toBeTruthy(); + }); + + test('data without event', async () => { + async function* body(): AsyncGenerator { + yield Buffer.from('data: {"foo":true}\n'); + yield Buffer.from('\n'); + } + + const stream = _iterSSEMessages(new Response(await iteratorToStream(body())), new AbortController())[ + Symbol.asyncIterator + ](); + + let event = await stream.next(); + assert(event.value); + expect(event.value.event).toBeNull(); + expect(JSON.parse(event.value.data)).toEqual({ foo: true }); + + event = await stream.next(); + expect(event.done).toBeTruthy(); + }); + + test('event without data', async () => { + async function* body(): AsyncGenerator { + yield Buffer.from('event: foo\n'); + yield Buffer.from('\n'); + } + + const stream = _iterSSEMessages(new Response(await iteratorToStream(body())), new AbortController())[ + Symbol.asyncIterator + ](); + + let event = await stream.next(); + assert(event.value); + expect(event.value.event).toEqual('foo'); + expect(event.value.data).toEqual(''); + + event = await stream.next(); + expect(event.done).toBeTruthy(); + }); + + test('multiple events', async () => { + async function* body(): AsyncGenerator { + yield Buffer.from('event: foo\n'); + yield Buffer.from('\n'); + yield Buffer.from('event: ping\n'); + yield Buffer.from('\n'); + } + + const stream = _iterSSEMessages(new Response(await iteratorToStream(body())), new AbortController())[ + Symbol.asyncIterator + ](); + + let event = await stream.next(); + assert(event.value); + expect(event.value.event).toEqual('foo'); + expect(event.value.data).toEqual(''); + + event = await stream.next(); + assert(event.value); + expect(event.value.event).toEqual('ping'); + expect(event.value.data).toEqual(''); + + event = await stream.next(); + expect(event.done).toBeTruthy(); + }); + + test('multiple events with data', async () => { + async function* body(): AsyncGenerator { + yield Buffer.from('event: foo\n'); + yield Buffer.from('data: {"foo":true}\n'); + yield Buffer.from('\n'); + yield Buffer.from('event: ping\n'); + yield Buffer.from('data: {"bar":false}\n'); + yield Buffer.from('\n'); + } + + const stream = _iterSSEMessages(new Response(await iteratorToStream(body())), new AbortController())[ + Symbol.asyncIterator + ](); + + let event = await stream.next(); + assert(event.value); + expect(event.value.event).toEqual('foo'); + expect(JSON.parse(event.value.data)).toEqual({ foo: true }); + + event = await stream.next(); + assert(event.value); + expect(event.value.event).toEqual('ping'); + expect(JSON.parse(event.value.data)).toEqual({ bar: false }); + + event = await stream.next(); + expect(event.done).toBeTruthy(); + }); + + test('multiple data lines with empty line', async () => { + async function* body(): AsyncGenerator { + yield Buffer.from('event: ping\n'); + yield Buffer.from('data: {\n'); + yield Buffer.from('data: "foo":\n'); + yield Buffer.from('data: \n'); + yield Buffer.from('data:\n'); + yield Buffer.from('data: true}\n'); + yield Buffer.from('\n\n'); + } + + const stream = _iterSSEMessages(new Response(await iteratorToStream(body())), new AbortController())[ + Symbol.asyncIterator + ](); + + let event = await stream.next(); + assert(event.value); + expect(event.value.event).toEqual('ping'); + expect(JSON.parse(event.value.data)).toEqual({ foo: true }); + expect(event.value.data).toEqual('{\n"foo":\n\n\ntrue}'); + + event = await stream.next(); + expect(event.done).toBeTruthy(); + }); + + test('data json escaped double new line', async () => { + async function* body(): AsyncGenerator { + yield Buffer.from('event: ping\n'); + yield Buffer.from('data: {"foo": "my long\\n\\ncontent"}'); + yield Buffer.from('\n\n'); + } + + const stream = _iterSSEMessages(new Response(await iteratorToStream(body())), new AbortController())[ + Symbol.asyncIterator + ](); + + let event = await stream.next(); + assert(event.value); + expect(event.value.event).toEqual('ping'); + expect(JSON.parse(event.value.data)).toEqual({ foo: 'my long\n\ncontent' }); + + event = await stream.next(); + expect(event.done).toBeTruthy(); + }); + + test('special new line characters', async () => { + async function* body(): AsyncGenerator { + yield Buffer.from('data: {"content": "culpa "}\n'); + yield Buffer.from('\n'); + yield Buffer.from('data: {"content": "'); + yield Buffer.from([0xe2, 0x80, 0xa8]); + yield Buffer.from('"}\n'); + yield Buffer.from('\n'); + yield Buffer.from('data: {"content": "foo"}\n'); + yield Buffer.from('\n'); + } + + const stream = _iterSSEMessages(new Response(await iteratorToStream(body())), new AbortController())[ + Symbol.asyncIterator + ](); + + let event = await stream.next(); + assert(event.value); + expect(JSON.parse(event.value.data)).toEqual({ content: 'culpa ' }); + + event = await stream.next(); + assert(event.value); + expect(JSON.parse(event.value.data)).toEqual({ content: Buffer.from([0xe2, 0x80, 0xa8]).toString() }); + + event = await stream.next(); + assert(event.value); + expect(JSON.parse(event.value.data)).toEqual({ content: 'foo' }); + + event = await stream.next(); + expect(event.done).toBeTruthy(); + }); + + test('multi-byte characters across chunks', async () => { + async function* body(): AsyncGenerator { + yield Buffer.from('event: completion\n'); + yield Buffer.from('data: {"content": "'); + // bytes taken from the string 'известни' and arbitrarily split + // so that some multi-byte characters span multiple chunks + yield Buffer.from([0xd0]); + yield Buffer.from([0xb8, 0xd0, 0xb7, 0xd0]); + yield Buffer.from([0xb2, 0xd0, 0xb5, 0xd1, 0x81, 0xd1, 0x82, 0xd0, 0xbd, 0xd0, 0xb8]); + yield Buffer.from('"}\n'); + yield Buffer.from('\n'); + } + + const stream = _iterSSEMessages(new Response(await iteratorToStream(body())), new AbortController())[ + Symbol.asyncIterator + ](); + + let event = await stream.next(); + assert(event.value); + expect(event.value.event).toEqual('completion'); + expect(JSON.parse(event.value.data)).toEqual({ content: 'известни' }); + + event = await stream.next(); + expect(event.done).toBeTruthy(); + }); +}); + +async function iteratorToStream(iterator: AsyncGenerator): Promise { + const parts: unknown[] = []; + + for await (const chunk of iterator) { + parts.push(chunk); + } + + let index = 0; + + const stream = new PassThrough({ + read() { + const value = parts[index]; + if (value === undefined) { + stream.end(); + } else { + index += 1; + stream.write(value); + } + }, + }); + + return stream; +} From 4999e9b691965c31c8979c5ce32fdb75c577dcf9 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 4 Apr 2024 07:32:26 -0400 Subject: [PATCH 342/725] release: 4.32.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 19 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 27308d159..d6b720422 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.32.1" + ".": "4.32.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a1702ad3b..22748a5bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 4.32.2 (2024-04-04) + +Full Changelog: [v4.32.1...v4.32.2](https://github.com/openai/openai-node/compare/v4.32.1...v4.32.2) + +### Bug Fixes + +* **streaming:** handle special line characters and fix multi-byte character decoding ([#757](https://github.com/openai/openai-node/issues/757)) ([8dcdda2](https://github.com/openai/openai-node/commit/8dcdda2b0d1d86486eea5fd47d24a8d26fde4c19)) +* **tests:** update wrangler to v3.19.0 (CVE-2023-7080) ([#755](https://github.com/openai/openai-node/issues/755)) ([47ca41d](https://github.com/openai/openai-node/commit/47ca41da9a739b2e04b721cb1fe843e5dd152465)) + + +### Chores + +* **tests:** bump ecosystem tests dependencies ([#753](https://github.com/openai/openai-node/issues/753)) ([3f86ea2](https://github.com/openai/openai-node/commit/3f86ea2205c90e05bcbe582491a4bed01075a5b1)) + ## 4.32.1 (2024-04-02) Full Changelog: [v4.32.0...v4.32.1](https://github.com/openai/openai-node/compare/v4.32.0...v4.32.1) diff --git a/README.md b/README.md index aae0367b6..ba4b69838 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.32.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.32.2/mod.ts'; ``` diff --git a/build-deno b/build-deno index a56b6af13..8d0ee6da9 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.32.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.32.2/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 4d87ed952..3d0107223 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.32.1", + "version": "4.32.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index c2e5453c3..ecc4c1a71 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.32.1'; // x-release-please-version +export const VERSION = '4.32.2'; // x-release-please-version From 4f38d4df907fe99f3757da6b58b422b4e663e67c Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 5 Apr 2024 08:36:22 -0400 Subject: [PATCH 343/725] feat(api): add additional messages when creating thread run (#759) --- src/resources/beta/threads/runs/runs.ts | 158 ++++++++++++++++++ .../beta/threads/runs/runs.test.ts | 5 + 2 files changed, 163 insertions(+) diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 5dfc7d595..04234a74f 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -529,6 +529,11 @@ export interface RunCreateParamsBase { */ additional_instructions?: string | null; + /** + * Adds additional messages to the thread before creating the run. + */ + additional_messages?: Array | null; + /** * Overrides the * [instructions](https://platform.openai.com/docs/api-reference/assistants/createAssistant) @@ -574,6 +579,39 @@ export interface RunCreateParamsBase { } export namespace RunCreateParams { + export interface AdditionalMessage { + /** + * The content of the message. + */ + content: string; + + /** + * The role of the entity that is creating the message. Allowed values include: + * + * - `user`: Indicates the message is sent by an actual user and should be used in + * most cases to represent user-generated messages. + * - `assistant`: Indicates the message is generated by the assistant. Use this + * value to insert messages from the assistant into the conversation. + */ + role: 'user' | 'assistant'; + + /** + * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that + * the message should use. There can be a maximum of 10 files attached to a + * message. Useful for tools like `retrieval` and `code_interpreter` that can + * access and use files. + */ + file_ids?: Array; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + } + export type RunCreateParamsNonStreaming = RunsAPI.RunCreateParamsNonStreaming; export type RunCreateParamsStreaming = RunsAPI.RunCreateParamsStreaming; } @@ -637,6 +675,11 @@ export interface RunCreateAndPollParams { */ additional_instructions?: string | null; + /** + * Adds additional messages to the thread before creating the run. + */ + additional_messages?: Array | null; + /** * Overrides the * [instructions](https://platform.openai.com/docs/api-reference/assistants/createAssistant) @@ -674,6 +717,41 @@ export interface RunCreateAndPollParams { tools?: Array | null; } +export namespace RunCreateAndPollParams { + export interface AdditionalMessage { + /** + * The content of the message. + */ + content: string; + + /** + * The role of the entity that is creating the message. Allowed values include: + * + * - `user`: Indicates the message is sent by an actual user and should be used in + * most cases to represent user-generated messages. + * - `assistant`: Indicates the message is generated by the assistant. Use this + * value to insert messages from the assistant into the conversation. + */ + role: 'user' | 'assistant'; + + /** + * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that + * the message should use. There can be a maximum of 10 files attached to a + * message. Useful for tools like `retrieval` and `code_interpreter` that can + * access and use files. + */ + file_ids?: Array; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + } +} + export interface RunCreateAndStreamParams { /** * The ID of the @@ -689,6 +767,11 @@ export interface RunCreateAndStreamParams { */ additional_instructions?: string | null; + /** + * Adds additional messages to the thread before creating the run. + */ + additional_messages?: Array | null; + /** * Overrides the * [instructions](https://platform.openai.com/docs/api-reference/assistants/createAssistant) @@ -726,6 +809,41 @@ export interface RunCreateAndStreamParams { tools?: Array | null; } +export namespace RunCreateAndStreamParams { + export interface AdditionalMessage { + /** + * The content of the message. + */ + content: string; + + /** + * The role of the entity that is creating the message. Allowed values include: + * + * - `user`: Indicates the message is sent by an actual user and should be used in + * most cases to represent user-generated messages. + * - `assistant`: Indicates the message is generated by the assistant. Use this + * value to insert messages from the assistant into the conversation. + */ + role: 'user' | 'assistant'; + + /** + * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that + * the message should use. There can be a maximum of 10 files attached to a + * message. Useful for tools like `retrieval` and `code_interpreter` that can + * access and use files. + */ + file_ids?: Array; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + } +} + export interface RunStreamParams { /** * The ID of the @@ -741,6 +859,11 @@ export interface RunStreamParams { */ additional_instructions?: string | null; + /** + * Adds additional messages to the thread before creating the run. + */ + additional_messages?: Array | null; + /** * Overrides the * [instructions](https://platform.openai.com/docs/api-reference/assistants/createAssistant) @@ -778,6 +901,41 @@ export interface RunStreamParams { tools?: Array | null; } +export namespace RunStreamParams { + export interface AdditionalMessage { + /** + * The content of the message. + */ + content: string; + + /** + * The role of the entity that is creating the message. Allowed values include: + * + * - `user`: Indicates the message is sent by an actual user and should be used in + * most cases to represent user-generated messages. + * - `assistant`: Indicates the message is generated by the assistant. Use this + * value to insert messages from the assistant into the conversation. + */ + role: 'user' | 'assistant'; + + /** + * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that + * the message should use. There can be a maximum of 10 files attached to a + * message. Useful for tools like `retrieval` and `code_interpreter` that can + * access and use files. + */ + file_ids?: Array; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + } +} + export type RunSubmitToolOutputsParams = | RunSubmitToolOutputsParamsNonStreaming | RunSubmitToolOutputsParamsStreaming; diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts index 5f17c1b58..2911cfd53 100644 --- a/tests/api-resources/beta/threads/runs/runs.test.ts +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -24,6 +24,11 @@ describe('resource runs', () => { const response = await openai.beta.threads.runs.create('string', { assistant_id: 'string', additional_instructions: 'string', + additional_messages: [ + { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, + { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, + { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, + ], instructions: 'string', metadata: {}, model: 'string', From 018ac718ccf6a96798ef8f91906b3b652aa50919 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 5 Apr 2024 08:36:43 -0400 Subject: [PATCH 344/725] release: 4.33.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d6b720422..e5b450ff3 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.32.2" + ".": "4.33.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 22748a5bd..f865d94f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.33.0 (2024-04-05) + +Full Changelog: [v4.32.2...v4.33.0](https://github.com/openai/openai-node/compare/v4.32.2...v4.33.0) + +### Features + +* **api:** add additional messages when creating thread run ([#759](https://github.com/openai/openai-node/issues/759)) ([f1fdb41](https://github.com/openai/openai-node/commit/f1fdb410e087f9b94faeda0558de573ec1118601)) + ## 4.32.2 (2024-04-04) Full Changelog: [v4.32.1...v4.32.2](https://github.com/openai/openai-node/compare/v4.32.1...v4.32.2) diff --git a/README.md b/README.md index ba4b69838..62c8967c6 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.32.2/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.33.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index 8d0ee6da9..bbe96faae 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.32.2/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.33.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 3d0107223..490a9e492 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.32.2", + "version": "4.33.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index ecc4c1a71..6726dc21c 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.32.2'; // x-release-please-version +export const VERSION = '4.33.0'; // x-release-please-version From fcf748dbbd23f972ff9fd81a8b2a35232a2d6e5c Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 11 Apr 2024 12:12:38 -0400 Subject: [PATCH 345/725] chore(internal): improve ecosystem tests (#761) --- .gitignore | 5 + .prettierignore | 2 +- ecosystem-tests/cli.ts | 226 +++++++++++++++++++++++---- ecosystem-tests/deno/deno.jsonc | 4 + ecosystem-tests/deno/deno.lock | 32 ++-- ecosystem-tests/deno/import_map.json | 6 - ecosystem-tests/deno/main_test.ts | 5 +- 7 files changed, 229 insertions(+), 51 deletions(-) delete mode 100644 ecosystem-tests/deno/import_map.json diff --git a/.gitignore b/.gitignore index 58b3944a1..31b12ac63 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,8 @@ dist /deno /*.tgz .idea/ +tmp +.pack +ecosystem-tests/deno/package.json +ecosystem-tests/*/openai.tgz + diff --git a/.prettierignore b/.prettierignore index fc6160fb1..3548c5af9 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,5 +1,5 @@ CHANGELOG.md -/ecosystem-tests +/ecosystem-tests/*/** /node_modules /deno diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index c84c479d4..a3c1f27a4 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -5,16 +5,19 @@ import assert from 'assert'; import path from 'path'; const TAR_NAME = 'openai.tgz'; -const PACK_FILE = `.pack/${TAR_NAME}`; +const PACK_FOLDER = '.pack'; +const PACK_FILE = `${PACK_FOLDER}/${TAR_NAME}`; const IS_CI = Boolean(process.env['CI'] && process.env['CI'] !== 'false'); async function defaultNodeRunner() { await installPackage(); await run('npm', ['run', 'tsc']); - if (state.live) await run('npm', ['test']); + if (state.live) { + await run('npm', ['test']); + } } -const projects = { +const projectRunners = { 'node-ts-cjs': defaultNodeRunner, 'node-ts-cjs-web': defaultNodeRunner, 'node-ts-cjs-auto': defaultNodeRunner, @@ -76,30 +79,17 @@ const projects = { } }, deno: async () => { + // we don't need to explicitly install the package here + // because our deno setup relies on `rootDir/deno` to exist + // which is an artifact produced from our build process await run('deno', ['task', 'install']); - await installPackage(); - const packFile = getPackFile(); - - const openaiDir = path.resolve( - process.cwd(), - 'node_modules', - '.deno', - 'openai@3.3.0', - 'node_modules', - 'openai', - ); - - await run('sh', ['-c', 'rm -rf *'], { cwd: openaiDir, stdio: 'inherit' }); - await run('tar', ['xzf', path.resolve(packFile)], { cwd: openaiDir, stdio: 'inherit' }); - await run('sh', ['-c', 'mv package/* .'], { cwd: openaiDir, stdio: 'inherit' }); - await run('sh', ['-c', 'rm -rf package'], { cwd: openaiDir, stdio: 'inherit' }); - await run('deno', ['task', 'check']); + if (state.live) await run('deno', ['task', 'test']); }, }; -const projectNames = Object.keys(projects) as Array; +let projectNames = Object.keys(projectRunners) as Array; const projectNamesSet = new Set(projectNames); function parseArgs() { @@ -118,6 +108,11 @@ function parseArgs() { type: 'boolean', default: false, }, + skip: { + type: 'array', + default: [], + description: 'Skip one or more projects. Separate project names with a space.', + }, skipPack: { type: 'boolean', default: false, @@ -156,6 +151,10 @@ function parseArgs() { default: false, description: 'run all projects in parallel (jobs = # projects)', }, + noCleanup: { + type: 'boolean', + default: false, + }, }) .help().argv; } @@ -165,9 +164,32 @@ type Args = Awaited>; let state: Args & { rootDir: string }; async function main() { + if (!process.env['OPENAI_API_KEY']) { + console.error(`Error: The environment variable OPENAI_API_KEY must be set. Run the command + $echo 'OPENAI_API_KEY = "'"\${OPENAI_API_KEY}"'"' >> ecosystem-tests/cloudflare-worker/wrangler.toml`); + process.exit(0); + } + const args = (await parseArgs()) as Args; console.error(`args:`, args); + // Some projects, e.g. Deno can be slow to run, so offer the option to skip them. Example: + // --skip=deno node-ts-cjs + if (args.skip.length > 0) { + args.skip.forEach((projectName, idx) => { + // Ensure the inputted project name is lower case + args.skip[idx] = (projectName + '').toLowerCase(); + }); + + projectNames = projectNames.filter((projectName) => (args.skip as string[]).indexOf(projectName) < 0); + + args.skip.forEach((projectName) => { + projectNamesSet.delete(projectName as any); + }); + } + + const tmpFolderPath = path.resolve(process.cwd(), 'tmp'); + const rootDir = await packageDir(); console.error(`rootDir:`, rootDir); @@ -191,8 +213,63 @@ async function main() { const failed: typeof projectNames = []; + let cleanupWasRun = false; + + // Cleanup the various artifacts created as part of executing this script + async function runCleanup() { + if (cleanupWasRun) { + return; + } + cleanupWasRun = true; + + // Restore the original files in the ecosystem-tests folders from before + // npm install was run + await fileCache.restoreFiles(tmpFolderPath); + + const packFolderPath = path.join(process.cwd(), PACK_FOLDER); + + try { + // Clean up the .pack folder if this was the process that created it. + await fs.unlink(PACK_FILE); + await fs.rmdir(packFolderPath); + } catch (err) { + console.log('Failed to delete .pack folder', err); + } + + for (let i = 0; i < projectNames.length; i++) { + const projectName = (projectNames as any)[i] as string; + + await defaultNodeCleanup(projectName).catch((err: any) => { + console.error('Error: Cleanup of file artifacts failed for project', projectName, err); + }); + } + } + + async function runCleanupAndExit() { + await runCleanup(); + + process.exit(1); + } + + if (!(await fileExists(tmpFolderPath))) { + await fs.mkdir(tmpFolderPath); + } + let { jobs } = args; - if (args.parallel) jobs = projectsToRun.length; + if (args.parallel) { + jobs = projectsToRun.length; + } + + if (!args.noCleanup) { + // The cleanup code is only executed from the parent script that runs + // multiple projects. + process.on('SIGINT', runCleanupAndExit); + process.on('SIGTERM', runCleanupAndExit); + process.on('exit', runCleanup); + + await fileCache.cacheFiles(tmpFolderPath); + } + if (jobs > 1) { const queue = [...projectsToRun]; const runningProjects = new Set(); @@ -225,7 +302,9 @@ async function main() { [...Array(jobs).keys()].map(async () => { while (queue.length) { const project = queue.shift(); - if (!project) break; + if (!project) { + break; + } // preserve interleaved ordering of writes to stdout/stderr const chunks: { dest: 'stdout' | 'stderr'; data: string | Buffer }[] = []; @@ -238,6 +317,7 @@ async function main() { __filename, project, '--skip-pack', + '--noCleanup', `--retry=${args.retry}`, ...(args.live ? ['--live'] : []), ...(args.verbose ? ['--verbose'] : []), @@ -248,6 +328,7 @@ async function main() { ); child.stdout?.on('data', (data) => chunks.push({ dest: 'stdout', data })); child.stderr?.on('data', (data) => chunks.push({ dest: 'stderr', data })); + await child; } catch (error) { failed.push(project); @@ -255,7 +336,10 @@ async function main() { runningProjects.delete(project); } - if (IS_CI) console.log(`::group::${failed.includes(project) ? '❌' : '✅'} ${project}`); + if (IS_CI) { + console.log(`::group::${failed.includes(project) ? '❌' : '✅'} ${project}`); + } + for (const { data } of chunks) { process.stdout.write(data); } @@ -268,7 +352,7 @@ async function main() { clearProgress(); } else { for (const project of projectsToRun) { - const fn = projects[project]; + const fn = projectRunners[project]; await withChdir(path.join(rootDir, 'ecosystem-tests', project), async () => { console.error('\n'); @@ -294,6 +378,10 @@ async function main() { } } + if (!args.noCleanup) { + await runCleanup(); + } + if (failed.length) { console.error(`${failed.length} project(s) failed - ${failed.join(', ')}`); process.exit(1); @@ -340,10 +428,15 @@ async function buildPackage() { return; } - if (!(await pathExists('.pack'))) { - await fs.mkdir('.pack'); + if (!(await pathExists(PACK_FOLDER))) { + await fs.mkdir(PACK_FOLDER); } + // Run our build script to ensure all of our build artifacts are up to date. + // This matters the most for deno as it directly relies on build artifacts + // instead of the pack file + await run('yarn', ['build']); + const proc = await run('npm', ['pack', '--ignore-scripts', '--json'], { cwd: path.join(process.cwd(), 'dist'), alwaysPipe: true, @@ -366,6 +459,11 @@ async function installPackage() { return; } + try { + // Ensure that there is a clean node_modules folder. + await run('rm', ['-rf', `./node_modules`]); + } catch (err) {} + const packFile = getPackFile(); await fs.copyFile(packFile, `./${TAR_NAME}`); return await run('npm', ['install', '-D', `./${TAR_NAME}`]); @@ -440,6 +538,80 @@ export const packageDir = async (): Promise => { throw new Error('Package directory not found'); }; +// Caches files that are modified by this script, e.g. package.json, +// so that they can be restored when the script either finishes or is +// terminated +const fileCache = (() => { + const filesToCache: Array = ['package.json', 'package-lock.json', 'deno.lock', 'bun.lockb']; + + return { + // Copy existing files from each ecosystem-tests project folder to the ./tmp folder + cacheFiles: async (tmpFolderPath: string) => { + for (let i = 0; i < projectNames.length; i++) { + const projectName = (projectNames as any)[i] as string; + const projectPath = path.resolve(process.cwd(), 'ecosystem-tests', projectName); + + for (let j = 0; j < filesToCache.length; j++) { + const fileName = filesToCache[j] || ''; + + const filePath = path.resolve(projectPath, fileName); + if (await fileExists(filePath)) { + const tmpProjectPath = path.resolve(tmpFolderPath, projectName); + + if (!(await fileExists(tmpProjectPath))) { + await fs.mkdir(tmpProjectPath); + } + await fs.copyFile(filePath, path.resolve(tmpProjectPath, fileName)); + } + } + } + }, + + // Restore the original files to each ecosystem-tests project folder from the ./tmp folder + restoreFiles: async (tmpFolderPath: string) => { + for (let i = 0; i < projectNames.length; i++) { + const projectName = (projectNames as any)[i] as string; + + const projectPath = path.resolve(process.cwd(), 'ecosystem-tests', projectName); + const tmpProjectPath = path.resolve(tmpFolderPath, projectName); + + for (let j = 0; j < filesToCache.length; j++) { + const fileName = filesToCache[j] || ''; + + const filePath = path.resolve(tmpProjectPath, fileName); + if (await fileExists(filePath)) { + await fs.rename(filePath, path.resolve(projectPath, fileName)); + } + } + await fs.rmdir(tmpProjectPath); + } + }, + }; +})(); + +async function defaultNodeCleanup(projectName: string) { + try { + const projectPath = path.resolve(process.cwd(), 'ecosystem-tests', projectName); + + const packFilePath = path.resolve(projectPath, TAR_NAME); + + if (await fileExists(packFilePath)) { + await fs.unlink(packFilePath); + } + } catch (err) { + console.error('Cleanup failed for project', projectName, err); + } +} + +async function fileExists(filePath: string) { + try { + await fs.stat(filePath); + return true; + } catch { + return false; + } +} + main().catch((err) => { console.error(err); process.exit(1); diff --git a/ecosystem-tests/deno/deno.jsonc b/ecosystem-tests/deno/deno.jsonc index ba78e9d30..7de05f2ba 100644 --- a/ecosystem-tests/deno/deno.jsonc +++ b/ecosystem-tests/deno/deno.jsonc @@ -3,5 +3,9 @@ "install": "deno install --node-modules-dir main_test.ts -f", "check": "deno lint && deno check main_test.ts", "test": "deno test --allow-env --allow-net --allow-read --node-modules-dir" + }, + "imports": { + "openai": "../../deno/mod.ts", + "openai/": "../../deno/" } } diff --git a/ecosystem-tests/deno/deno.lock b/ecosystem-tests/deno/deno.lock index 17a25fcbc..aa22a1427 100644 --- a/ecosystem-tests/deno/deno.lock +++ b/ecosystem-tests/deno/deno.lock @@ -1,20 +1,14 @@ { - "version": "2", - "remote": { - "https://deno.land/std@0.192.0/fmt/colors.ts": "d67e3cd9f472535241a8e410d33423980bec45047e343577554d3356e1f0ef4e", - "https://deno.land/std@0.192.0/testing/_diff.ts": "1a3c044aedf77647d6cac86b798c6417603361b66b54c53331b312caeb447aea", - "https://deno.land/std@0.192.0/testing/_format.ts": "a69126e8a469009adf4cf2a50af889aca364c349797e63174884a52ff75cf4c7", - "https://deno.land/std@0.192.0/testing/asserts.ts": "e16d98b4d73ffc4ed498d717307a12500ae4f2cbe668f1a215632d19fcffc22f" - }, - "npm": { + "version": "3", + "packages": { "specifiers": { - "@types/node@^20.3.1": "@types/node@20.3.1", - "node-fetch@^3.0.0": "node-fetch@3.3.1", - "openai": "openai@3.3.0", - "ts-node@^10.9.1": "ts-node@10.9.1_@types+node@20.3.1_typescript@5.1.3", - "typescript@^5.1.3": "typescript@5.1.3" + "npm:@types/node@^20.3.1": "npm:@types/node@20.3.1", + "npm:node-fetch@^3.0.0": "npm:node-fetch@3.3.1", + "npm:openai": "npm:openai@3.3.0", + "npm:ts-node@^10.9.1": "npm:ts-node@10.9.1_@types+node@20.3.1_typescript@5.1.3", + "npm:typescript@^5.1.3": "npm:typescript@5.1.3" }, - "packages": { + "npm": { "@cspotcode/source-map-support@0.8.1": { "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", "dependencies": { @@ -195,5 +189,15 @@ "dependencies": {} } } + }, + "redirects": { + "https://deno.land/x/fastest_levenshtein/mod.ts": "https://deno.land/x/fastest_levenshtein@1.0.10/mod.ts" + }, + "remote": { + "https://deno.land/std@0.192.0/fmt/colors.ts": "d67e3cd9f472535241a8e410d33423980bec45047e343577554d3356e1f0ef4e", + "https://deno.land/std@0.192.0/testing/_diff.ts": "1a3c044aedf77647d6cac86b798c6417603361b66b54c53331b312caeb447aea", + "https://deno.land/std@0.192.0/testing/_format.ts": "a69126e8a469009adf4cf2a50af889aca364c349797e63174884a52ff75cf4c7", + "https://deno.land/std@0.192.0/testing/asserts.ts": "e16d98b4d73ffc4ed498d717307a12500ae4f2cbe668f1a215632d19fcffc22f", + "https://deno.land/x/fastest_levenshtein@1.0.10/mod.ts": "aea49d54b6bb37082b2377da2ea068331da07b2a515621d8eff97538b7157b40" } } diff --git a/ecosystem-tests/deno/import_map.json b/ecosystem-tests/deno/import_map.json deleted file mode 100644 index 941f5396b..000000000 --- a/ecosystem-tests/deno/import_map.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "imports": { - "/": "./", - "./": "./" - } -} diff --git a/ecosystem-tests/deno/main_test.ts b/ecosystem-tests/deno/main_test.ts index b841b4053..b27c9079b 100644 --- a/ecosystem-tests/deno/main_test.ts +++ b/ecosystem-tests/deno/main_test.ts @@ -1,7 +1,6 @@ import { assertEquals, AssertionError } from 'https://deno.land/std@0.192.0/testing/asserts.ts'; -import OpenAI, { toFile } from 'npm:openai@3.3.0'; import { distance } from 'https://deno.land/x/fastest_levenshtein/mod.ts'; -import { ChatCompletion } from 'npm:openai@3.3.0/resources/chat/completions'; +import OpenAI, { toFile } from 'openai'; const url = 'https://audio-samples.github.io/samples/mp3/blizzard_biased/sample-1.mp3'; const filename = 'sample-1.mp3'; @@ -66,7 +65,7 @@ Deno.test(async function rawResponse() { offset += chunk.length; } - const json: ChatCompletion = JSON.parse(new TextDecoder().decode(merged)); + const json: OpenAI.ChatCompletion = JSON.parse(new TextDecoder().decode(merged)); assertSimilar(json.choices[0]?.message.content || '', 'This is a test', 10); }); From b6acf54baab7e6cbf6ce3ad1d6c70197cc0181d0 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 12 Apr 2024 12:52:04 -0400 Subject: [PATCH 346/725] chore(internal): formatting (#763) --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f51c7a308..d6c83025f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,3 +28,5 @@ jobs: - name: Check types run: | yarn build + + From a22c6f3e7ffc2367c71cdec106b9803dd26b6397 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 12 Apr 2024 12:52:29 -0400 Subject: [PATCH 347/725] release: 4.33.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e5b450ff3..bd6b3284c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.33.0" + ".": "4.33.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f865d94f7..f3067e694 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 4.33.1 (2024-04-12) + +Full Changelog: [v4.33.0...v4.33.1](https://github.com/openai/openai-node/compare/v4.33.0...v4.33.1) + +### Chores + +* **internal:** formatting ([#763](https://github.com/openai/openai-node/issues/763)) ([b6acf54](https://github.com/openai/openai-node/commit/b6acf54baab7e6cbf6ce3ad1d6c70197cc0181d0)) +* **internal:** improve ecosystem tests ([#761](https://github.com/openai/openai-node/issues/761)) ([fcf748d](https://github.com/openai/openai-node/commit/fcf748dbbd23f972ff9fd81a8b2a35232a2d6e5c)) + ## 4.33.0 (2024-04-05) Full Changelog: [v4.32.2...v4.33.0](https://github.com/openai/openai-node/compare/v4.32.2...v4.33.0) diff --git a/README.md b/README.md index 62c8967c6..2d1ae6089 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.33.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.33.1/mod.ts'; ``` diff --git a/build-deno b/build-deno index bbe96faae..c06cd3bcf 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.33.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.33.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 490a9e492..998b6a2c7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.33.0", + "version": "4.33.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 6726dc21c..0d8f2ffd7 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.33.0'; // x-release-please-version +export const VERSION = '4.33.1'; // x-release-please-version From 01f01881c457fa6bebf8ac923941c6628037b9ac Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 15 Apr 2024 15:04:29 -0400 Subject: [PATCH 348/725] feat(api): updates (#766) --- .stats.yml | 2 +- api.md | 32 +- src/resources/beta/assistants/assistants.ts | 27 +- src/resources/beta/beta.ts | 5 + src/resources/beta/index.ts | 9 +- src/resources/beta/threads/index.ts | 29 +- src/resources/beta/threads/runs/runs.ts | 421 +++++++++++++++++- src/resources/beta/threads/threads.ts | 323 +++++++++++++- src/resources/chat/completions.ts | 5 +- src/resources/fine-tuning/fine-tuning.ts | 5 +- src/resources/fine-tuning/index.ts | 5 +- src/resources/fine-tuning/jobs/checkpoints.ts | 108 +++++ src/resources/fine-tuning/jobs/index.ts | 21 + src/resources/fine-tuning/{ => jobs}/jobs.ts | 135 +++++- .../beta/assistants/assistants.test.ts | 4 +- .../beta/threads/runs/runs.test.ts | 7 +- .../beta/threads/threads.test.ts | 7 +- tests/api-resources/chat/completions.test.ts | 4 +- .../fine-tuning/jobs/checkpoints.test.ts | 42 ++ .../fine-tuning/{ => jobs}/jobs.test.ts | 30 ++ 20 files changed, 1177 insertions(+), 44 deletions(-) create mode 100644 src/resources/fine-tuning/jobs/checkpoints.ts create mode 100644 src/resources/fine-tuning/jobs/index.ts rename src/resources/fine-tuning/{ => jobs}/jobs.ts (66%) create mode 100644 tests/api-resources/fine-tuning/jobs/checkpoints.test.ts rename tests/api-resources/fine-tuning/{ => jobs}/jobs.test.ts (87%) diff --git a/.stats.yml b/.stats.yml index c550abf3c..284caebf4 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1 +1 @@ -configured_endpoints: 51 +configured_endpoints: 52 diff --git a/api.md b/api.md index 2f82dd17b..c6a2bf273 100644 --- a/api.md +++ b/api.md @@ -149,16 +149,29 @@ Methods: Types: -- FineTuningJob -- FineTuningJobEvent +- FineTuningJob +- FineTuningJobEvent +- FineTuningJobIntegration +- FineTuningJobWandbIntegration +- FineTuningJobWandbIntegrationObject Methods: -- client.fineTuning.jobs.create({ ...params }) -> FineTuningJob -- client.fineTuning.jobs.retrieve(fineTuningJobId) -> FineTuningJob -- client.fineTuning.jobs.list({ ...params }) -> FineTuningJobsPage -- client.fineTuning.jobs.cancel(fineTuningJobId) -> FineTuningJob -- client.fineTuning.jobs.listEvents(fineTuningJobId, { ...params }) -> FineTuningJobEventsPage +- client.fineTuning.jobs.create({ ...params }) -> FineTuningJob +- client.fineTuning.jobs.retrieve(fineTuningJobId) -> FineTuningJob +- client.fineTuning.jobs.list({ ...params }) -> FineTuningJobsPage +- client.fineTuning.jobs.cancel(fineTuningJobId) -> FineTuningJob +- client.fineTuning.jobs.listEvents(fineTuningJobId, { ...params }) -> FineTuningJobEventsPage + +### Checkpoints + +Types: + +- FineTuningJobCheckpoint + +Methods: + +- client.fineTuning.jobs.checkpoints.list(fineTuningJobId, { ...params }) -> FineTuningJobCheckpointsPage # Beta @@ -214,6 +227,11 @@ Methods: Types: +- AssistantResponseFormat +- AssistantResponseFormatOption +- AssistantToolChoice +- AssistantToolChoiceFunction +- AssistantToolChoiceOption - Thread - ThreadDeleted diff --git a/src/resources/beta/assistants/assistants.ts b/src/resources/beta/assistants/assistants.ts index 1e8ca6ee9..fc9afe2ae 100644 --- a/src/resources/beta/assistants/assistants.ts +++ b/src/resources/beta/assistants/assistants.ts @@ -113,7 +113,7 @@ export interface Assistant { file_ids: Array; /** - * The system instructions that the assistant uses. The maximum length is 32768 + * The system instructions that the assistant uses. The maximum length is 256,000 * characters. */ instructions: string | null; @@ -930,7 +930,26 @@ export interface AssistantCreateParams { * [Model overview](https://platform.openai.com/docs/models/overview) for * descriptions of them. */ - model: string; + model: + | (string & {}) + | 'gpt-4-turbo' + | 'gpt-4-turbo-2024-04-09' + | 'gpt-4-0125-preview' + | 'gpt-4-turbo-preview' + | 'gpt-4-1106-preview' + | 'gpt-4-vision-preview' + | 'gpt-4' + | 'gpt-4-0314' + | 'gpt-4-0613' + | 'gpt-4-32k' + | 'gpt-4-32k-0314' + | 'gpt-4-32k-0613' + | 'gpt-3.5-turbo' + | 'gpt-3.5-turbo-16k' + | 'gpt-3.5-turbo-0613' + | 'gpt-3.5-turbo-1106' + | 'gpt-3.5-turbo-0125' + | 'gpt-3.5-turbo-16k-0613'; /** * The description of the assistant. The maximum length is 512 characters. @@ -945,7 +964,7 @@ export interface AssistantCreateParams { file_ids?: Array; /** - * The system instructions that the assistant uses. The maximum length is 32768 + * The system instructions that the assistant uses. The maximum length is 256,000 * characters. */ instructions?: string | null; @@ -986,7 +1005,7 @@ export interface AssistantUpdateParams { file_ids?: Array; /** - * The system instructions that the assistant uses. The maximum length is 32768 + * The system instructions that the assistant uses. The maximum length is 256,000 * characters. */ instructions?: string | null; diff --git a/src/resources/beta/beta.ts b/src/resources/beta/beta.ts index 7d4457319..8f8148f9b 100644 --- a/src/resources/beta/beta.ts +++ b/src/resources/beta/beta.ts @@ -30,6 +30,11 @@ export namespace Beta { export import AssistantUpdateParams = AssistantsAPI.AssistantUpdateParams; export import AssistantListParams = AssistantsAPI.AssistantListParams; export import Threads = ThreadsAPI.Threads; + export import AssistantResponseFormat = ThreadsAPI.AssistantResponseFormat; + export import AssistantResponseFormatOption = ThreadsAPI.AssistantResponseFormatOption; + export import AssistantToolChoice = ThreadsAPI.AssistantToolChoice; + export import AssistantToolChoiceFunction = ThreadsAPI.AssistantToolChoiceFunction; + export import AssistantToolChoiceOption = ThreadsAPI.AssistantToolChoiceOption; export import Thread = ThreadsAPI.Thread; export import ThreadDeleted = ThreadsAPI.ThreadDeleted; export import ThreadCreateParams = ThreadsAPI.ThreadCreateParams; diff --git a/src/resources/beta/index.ts b/src/resources/beta/index.ts index e43ff7315..54407edb3 100644 --- a/src/resources/beta/index.ts +++ b/src/resources/beta/index.ts @@ -18,9 +18,12 @@ export { AssistantsPage, Assistants, } from './assistants/index'; -export { Beta } from './beta'; -export { Chat } from './chat/index'; export { + AssistantResponseFormat, + AssistantResponseFormatOption, + AssistantToolChoice, + AssistantToolChoiceFunction, + AssistantToolChoiceOption, Thread, ThreadDeleted, ThreadCreateParams, @@ -32,3 +35,5 @@ export { ThreadCreateAndRunStreamParams, Threads, } from './threads/index'; +export { Beta } from './beta'; +export { Chat } from './chat/index'; diff --git a/src/resources/beta/threads/index.ts b/src/resources/beta/threads/index.ts index ac2f9a4fa..5f41766a9 100644 --- a/src/resources/beta/threads/index.ts +++ b/src/resources/beta/threads/index.ts @@ -27,6 +27,23 @@ export { MessagesPage, Messages, } from './messages/index'; +export { + AssistantResponseFormat, + AssistantResponseFormatOption, + AssistantToolChoice, + AssistantToolChoiceFunction, + AssistantToolChoiceOption, + Thread, + ThreadDeleted, + ThreadCreateParams, + ThreadUpdateParams, + ThreadCreateAndRunParams, + ThreadCreateAndRunParamsNonStreaming, + ThreadCreateAndRunParamsStreaming, + ThreadCreateAndRunPollParams, + ThreadCreateAndRunStreamParams, + Threads, +} from './threads'; export { RequiredActionFunctionToolCall, Run, @@ -47,15 +64,3 @@ export { RunsPage, Runs, } from './runs/index'; -export { - Thread, - ThreadDeleted, - ThreadCreateParams, - ThreadUpdateParams, - ThreadCreateAndRunParams, - ThreadCreateAndRunParamsNonStreaming, - ThreadCreateAndRunParamsStreaming, - ThreadCreateAndRunPollParams, - ThreadCreateAndRunStreamParams, - Threads, -} from './threads'; diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 04234a74f..4cfa6c36e 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -9,6 +9,7 @@ import { sleep } from 'openai/core'; import { RunSubmitToolOutputsParamsStream } from 'openai/lib/AssistantStream'; import * as RunsAPI from 'openai/resources/beta/threads/runs/runs'; import * as AssistantsAPI from 'openai/resources/beta/assistants/assistants'; +import * as ThreadsAPI from 'openai/resources/beta/threads/threads'; import * as StepsAPI from 'openai/resources/beta/threads/runs/steps'; import { CursorPage, type CursorPageParams } from 'openai/pagination'; import { Stream } from 'openai/streaming'; @@ -356,6 +357,12 @@ export interface Run { */ file_ids: Array; + /** + * Details on why the run is incomplete. Will be `null` if the run is not + * incomplete. + */ + incomplete_details: Run.IncompleteDetails | null; + /** * The instructions that the * [assistant](https://platform.openai.com/docs/api-reference/assistants) used for @@ -368,6 +375,18 @@ export interface Run { */ last_error: Run.LastError | null; + /** + * The maximum number of completion tokens specified to have been used over the + * course of the run. + */ + max_completion_tokens: number | null; + + /** + * The maximum number of prompt tokens specified to have been used over the course + * of the run. + */ + max_prompt_tokens: number | null; + /** * Set of 16 key-value pairs that can be attached to an object. This can be useful * for storing additional information about the object in a structured format. Keys @@ -394,6 +413,24 @@ export interface Run { */ required_action: Run.RequiredAction | null; + /** + * Specifies the format that the model must output. Compatible with + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and + * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * + * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * message the model generates is valid JSON. + * + * **Important:** when using JSON mode, you **must** also instruct the model to + * produce JSON yourself via a system or user message. Without this, the model may + * generate an unending stream of whitespace until the generation reaches the token + * limit, resulting in a long-running and seemingly "stuck" request. Also note that + * the message content may be partially cut off if `finish_reason="length"`, which + * indicates the generation exceeded `max_tokens` or the conversation exceeded the + * max context length. + */ + response_format: ThreadsAPI.AssistantResponseFormatOption | null; + /** * The Unix timestamp (in seconds) for when the run was started. */ @@ -412,6 +449,16 @@ export interface Run { */ thread_id: string; + /** + * Controls which (if any) tool is called by the model. `none` means the model will + * not call any tools and instead generates a message. `auto` is the default value + * and means the model can pick between generating a message or calling a tool. + * Specifying a particular tool like `{"type": "TOOL_TYPE"}` or + * `{"type": "function", "function": {"name": "my_function"}}` forces the model to + * call that tool. + */ + tool_choice: ThreadsAPI.AssistantToolChoiceOption | null; + /** * The list of tools that the * [assistant](https://platform.openai.com/docs/api-reference/assistants) used for @@ -419,6 +466,8 @@ export interface Run { */ tools: Array; + truncation_strategy: Run.TruncationStrategy | null; + /** * Usage statistics related to the run. This value will be `null` if the run is not * in a terminal state (i.e. `in_progress`, `queued`, etc.). @@ -432,6 +481,18 @@ export interface Run { } export namespace Run { + /** + * Details on why the run is incomplete. Will be `null` if the run is not + * incomplete. + */ + export interface IncompleteDetails { + /** + * The reason why the run is incomplete. This will point to which specific token + * limit was reached over the course of the run. + */ + reason?: 'max_completion_tokens' | 'max_prompt_tokens'; + } + /** * The last error associated with this run. Will be `null` if there are no errors. */ @@ -475,6 +536,22 @@ export namespace Run { } } + export interface TruncationStrategy { + /** + * The truncation strategy to use for the thread. The default is `auto`. If set to + * `last_messages`, the thread will be truncated to the n most recent messages in + * the thread. When set to `auto`, messages in the middle of the thread will be + * dropped to fit the context length of the model, `max_prompt_tokens`. + */ + type: 'auto' | 'last_messages'; + + /** + * The number of most recent messages from the thread when constructing the context + * for the run. + */ + last_messages?: number | null; + } + /** * Usage statistics related to the run. This value will be `null` if the run is not * in a terminal state (i.e. `in_progress`, `queued`, etc.). @@ -541,6 +618,24 @@ export interface RunCreateParamsBase { */ instructions?: string | null; + /** + * The maximum number of completion tokens that may be used over the course of the + * run. The run will make a best effort to use only the number of completion tokens + * specified, across multiple turns of the run. If the run exceeds the number of + * completion tokens specified, the run will end with status `complete`. See + * `incomplete_details` for more info. + */ + max_completion_tokens?: number | null; + + /** + * The maximum number of prompt tokens that may be used over the course of the run. + * The run will make a best effort to use only the number of prompt tokens + * specified, across multiple turns of the run. If the run exceeds the number of + * prompt tokens specified, the run will end with status `complete`. See + * `incomplete_details` for more info. + */ + max_prompt_tokens?: number | null; + /** * Set of 16 key-value pairs that can be attached to an object. This can be useful * for storing additional information about the object in a structured format. Keys @@ -555,7 +650,45 @@ export interface RunCreateParamsBase { * model associated with the assistant. If not, the model associated with the * assistant will be used. */ - model?: string | null; + model?: + | (string & {}) + | 'gpt-4-turbo' + | 'gpt-4-turbo-2024-04-09' + | 'gpt-4-0125-preview' + | 'gpt-4-turbo-preview' + | 'gpt-4-1106-preview' + | 'gpt-4-vision-preview' + | 'gpt-4' + | 'gpt-4-0314' + | 'gpt-4-0613' + | 'gpt-4-32k' + | 'gpt-4-32k-0314' + | 'gpt-4-32k-0613' + | 'gpt-3.5-turbo' + | 'gpt-3.5-turbo-16k' + | 'gpt-3.5-turbo-0613' + | 'gpt-3.5-turbo-1106' + | 'gpt-3.5-turbo-0125' + | 'gpt-3.5-turbo-16k-0613' + | null; + + /** + * Specifies the format that the model must output. Compatible with + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and + * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * + * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * message the model generates is valid JSON. + * + * **Important:** when using JSON mode, you **must** also instruct the model to + * produce JSON yourself via a system or user message. Without this, the model may + * generate an unending stream of whitespace until the generation reaches the token + * limit, resulting in a long-running and seemingly "stuck" request. Also note that + * the message content may be partially cut off if `finish_reason="length"`, which + * indicates the generation exceeded `max_tokens` or the conversation exceeded the + * max context length. + */ + response_format?: ThreadsAPI.AssistantResponseFormatOption | null; /** * If `true`, returns a stream of events that happen during the Run as server-sent @@ -571,11 +704,23 @@ export interface RunCreateParamsBase { */ temperature?: number | null; + /** + * Controls which (if any) tool is called by the model. `none` means the model will + * not call any tools and instead generates a message. `auto` is the default value + * and means the model can pick between generating a message or calling a tool. + * Specifying a particular tool like `{"type": "TOOL_TYPE"}` or + * `{"type": "function", "function": {"name": "my_function"}}` forces the model to + * call that tool. + */ + tool_choice?: ThreadsAPI.AssistantToolChoiceOption | null; + /** * Override the tools the assistant can use for this run. This is useful for * modifying the behavior on a per-run basis. */ tools?: Array | null; + + truncation_strategy?: RunCreateParams.TruncationStrategy | null; } export namespace RunCreateParams { @@ -612,6 +757,22 @@ export namespace RunCreateParams { metadata?: unknown | null; } + export interface TruncationStrategy { + /** + * The truncation strategy to use for the thread. The default is `auto`. If set to + * `last_messages`, the thread will be truncated to the n most recent messages in + * the thread. When set to `auto`, messages in the middle of the thread will be + * dropped to fit the context length of the model, `max_prompt_tokens`. + */ + type: 'auto' | 'last_messages'; + + /** + * The number of most recent messages from the thread when constructing the context + * for the run. + */ + last_messages?: number | null; + } + export type RunCreateParamsNonStreaming = RunsAPI.RunCreateParamsNonStreaming; export type RunCreateParamsStreaming = RunsAPI.RunCreateParamsStreaming; } @@ -687,6 +848,24 @@ export interface RunCreateAndPollParams { */ instructions?: string | null; + /** + * The maximum number of completion tokens that may be used over the course of the + * run. The run will make a best effort to use only the number of completion tokens + * specified, across multiple turns of the run. If the run exceeds the number of + * completion tokens specified, the run will end with status `complete`. See + * `incomplete_details` for more info. + */ + max_completion_tokens?: number | null; + + /** + * The maximum number of prompt tokens that may be used over the course of the run. + * The run will make a best effort to use only the number of prompt tokens + * specified, across multiple turns of the run. If the run exceeds the number of + * prompt tokens specified, the run will end with status `complete`. See + * `incomplete_details` for more info. + */ + max_prompt_tokens?: number | null; + /** * Set of 16 key-value pairs that can be attached to an object. This can be useful * for storing additional information about the object in a structured format. Keys @@ -701,7 +880,45 @@ export interface RunCreateAndPollParams { * model associated with the assistant. If not, the model associated with the * assistant will be used. */ - model?: string | null; + model?: + | (string & {}) + | 'gpt-4-turbo' + | 'gpt-4-turbo-2024-04-09' + | 'gpt-4-0125-preview' + | 'gpt-4-turbo-preview' + | 'gpt-4-1106-preview' + | 'gpt-4-vision-preview' + | 'gpt-4' + | 'gpt-4-0314' + | 'gpt-4-0613' + | 'gpt-4-32k' + | 'gpt-4-32k-0314' + | 'gpt-4-32k-0613' + | 'gpt-3.5-turbo' + | 'gpt-3.5-turbo-16k' + | 'gpt-3.5-turbo-0613' + | 'gpt-3.5-turbo-1106' + | 'gpt-3.5-turbo-0125' + | 'gpt-3.5-turbo-16k-0613' + | null; + + /** + * Specifies the format that the model must output. Compatible with + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and + * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * + * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * message the model generates is valid JSON. + * + * **Important:** when using JSON mode, you **must** also instruct the model to + * produce JSON yourself via a system or user message. Without this, the model may + * generate an unending stream of whitespace until the generation reaches the token + * limit, resulting in a long-running and seemingly "stuck" request. Also note that + * the message content may be partially cut off if `finish_reason="length"`, which + * indicates the generation exceeded `max_tokens` or the conversation exceeded the + * max context length. + */ + response_format?: ThreadsAPI.AssistantResponseFormatOption | null; /** * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will @@ -710,11 +927,23 @@ export interface RunCreateAndPollParams { */ temperature?: number | null; + /** + * Controls which (if any) tool is called by the model. `none` means the model will + * not call any tools and instead generates a message. `auto` is the default value + * and means the model can pick between generating a message or calling a tool. + * Specifying a particular tool like `{"type": "TOOL_TYPE"}` or + * `{"type": "function", "function": {"name": "my_function"}}` forces the model to + * call that tool. + */ + tool_choice?: ThreadsAPI.AssistantToolChoiceOption | null; + /** * Override the tools the assistant can use for this run. This is useful for * modifying the behavior on a per-run basis. */ tools?: Array | null; + + truncation_strategy?: RunCreateAndPollParams.TruncationStrategy | null; } export namespace RunCreateAndPollParams { @@ -750,6 +979,22 @@ export namespace RunCreateAndPollParams { */ metadata?: unknown | null; } + + export interface TruncationStrategy { + /** + * The truncation strategy to use for the thread. The default is `auto`. If set to + * `last_messages`, the thread will be truncated to the n most recent messages in + * the thread. When set to `auto`, messages in the middle of the thread will be + * dropped to fit the context length of the model, `max_prompt_tokens`. + */ + type: 'auto' | 'last_messages'; + + /** + * The number of most recent messages from the thread when constructing the context + * for the run. + */ + last_messages?: number | null; + } } export interface RunCreateAndStreamParams { @@ -779,6 +1024,24 @@ export interface RunCreateAndStreamParams { */ instructions?: string | null; + /** + * The maximum number of completion tokens that may be used over the course of the + * run. The run will make a best effort to use only the number of completion tokens + * specified, across multiple turns of the run. If the run exceeds the number of + * completion tokens specified, the run will end with status `complete`. See + * `incomplete_details` for more info. + */ + max_completion_tokens?: number | null; + + /** + * The maximum number of prompt tokens that may be used over the course of the run. + * The run will make a best effort to use only the number of prompt tokens + * specified, across multiple turns of the run. If the run exceeds the number of + * prompt tokens specified, the run will end with status `complete`. See + * `incomplete_details` for more info. + */ + max_prompt_tokens?: number | null; + /** * Set of 16 key-value pairs that can be attached to an object. This can be useful * for storing additional information about the object in a structured format. Keys @@ -793,7 +1056,45 @@ export interface RunCreateAndStreamParams { * model associated with the assistant. If not, the model associated with the * assistant will be used. */ - model?: string | null; + model?: + | (string & {}) + | 'gpt-4-turbo' + | 'gpt-4-turbo-2024-04-09' + | 'gpt-4-0125-preview' + | 'gpt-4-turbo-preview' + | 'gpt-4-1106-preview' + | 'gpt-4-vision-preview' + | 'gpt-4' + | 'gpt-4-0314' + | 'gpt-4-0613' + | 'gpt-4-32k' + | 'gpt-4-32k-0314' + | 'gpt-4-32k-0613' + | 'gpt-3.5-turbo' + | 'gpt-3.5-turbo-16k' + | 'gpt-3.5-turbo-0613' + | 'gpt-3.5-turbo-1106' + | 'gpt-3.5-turbo-0125' + | 'gpt-3.5-turbo-16k-0613' + | null; + + /** + * Specifies the format that the model must output. Compatible with + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and + * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * + * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * message the model generates is valid JSON. + * + * **Important:** when using JSON mode, you **must** also instruct the model to + * produce JSON yourself via a system or user message. Without this, the model may + * generate an unending stream of whitespace until the generation reaches the token + * limit, resulting in a long-running and seemingly "stuck" request. Also note that + * the message content may be partially cut off if `finish_reason="length"`, which + * indicates the generation exceeded `max_tokens` or the conversation exceeded the + * max context length. + */ + response_format?: ThreadsAPI.AssistantResponseFormatOption | null; /** * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will @@ -802,11 +1103,23 @@ export interface RunCreateAndStreamParams { */ temperature?: number | null; + /** + * Controls which (if any) tool is called by the model. `none` means the model will + * not call any tools and instead generates a message. `auto` is the default value + * and means the model can pick between generating a message or calling a tool. + * Specifying a particular tool like `{"type": "TOOL_TYPE"}` or + * `{"type": "function", "function": {"name": "my_function"}}` forces the model to + * call that tool. + */ + tool_choice?: ThreadsAPI.AssistantToolChoiceOption | null; + /** * Override the tools the assistant can use for this run. This is useful for * modifying the behavior on a per-run basis. */ tools?: Array | null; + + truncation_strategy?: RunCreateAndStreamParams.TruncationStrategy | null; } export namespace RunCreateAndStreamParams { @@ -842,6 +1155,22 @@ export namespace RunCreateAndStreamParams { */ metadata?: unknown | null; } + + export interface TruncationStrategy { + /** + * The truncation strategy to use for the thread. The default is `auto`. If set to + * `last_messages`, the thread will be truncated to the n most recent messages in + * the thread. When set to `auto`, messages in the middle of the thread will be + * dropped to fit the context length of the model, `max_prompt_tokens`. + */ + type: 'auto' | 'last_messages'; + + /** + * The number of most recent messages from the thread when constructing the context + * for the run. + */ + last_messages?: number | null; + } } export interface RunStreamParams { @@ -871,6 +1200,24 @@ export interface RunStreamParams { */ instructions?: string | null; + /** + * The maximum number of completion tokens that may be used over the course of the + * run. The run will make a best effort to use only the number of completion tokens + * specified, across multiple turns of the run. If the run exceeds the number of + * completion tokens specified, the run will end with status `complete`. See + * `incomplete_details` for more info. + */ + max_completion_tokens?: number | null; + + /** + * The maximum number of prompt tokens that may be used over the course of the run. + * The run will make a best effort to use only the number of prompt tokens + * specified, across multiple turns of the run. If the run exceeds the number of + * prompt tokens specified, the run will end with status `complete`. See + * `incomplete_details` for more info. + */ + max_prompt_tokens?: number | null; + /** * Set of 16 key-value pairs that can be attached to an object. This can be useful * for storing additional information about the object in a structured format. Keys @@ -885,7 +1232,45 @@ export interface RunStreamParams { * model associated with the assistant. If not, the model associated with the * assistant will be used. */ - model?: string | null; + model?: + | (string & {}) + | 'gpt-4-turbo' + | 'gpt-4-turbo-2024-04-09' + | 'gpt-4-0125-preview' + | 'gpt-4-turbo-preview' + | 'gpt-4-1106-preview' + | 'gpt-4-vision-preview' + | 'gpt-4' + | 'gpt-4-0314' + | 'gpt-4-0613' + | 'gpt-4-32k' + | 'gpt-4-32k-0314' + | 'gpt-4-32k-0613' + | 'gpt-3.5-turbo' + | 'gpt-3.5-turbo-16k' + | 'gpt-3.5-turbo-0613' + | 'gpt-3.5-turbo-1106' + | 'gpt-3.5-turbo-0125' + | 'gpt-3.5-turbo-16k-0613' + | null; + + /** + * Specifies the format that the model must output. Compatible with + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and + * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * + * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * message the model generates is valid JSON. + * + * **Important:** when using JSON mode, you **must** also instruct the model to + * produce JSON yourself via a system or user message. Without this, the model may + * generate an unending stream of whitespace until the generation reaches the token + * limit, resulting in a long-running and seemingly "stuck" request. Also note that + * the message content may be partially cut off if `finish_reason="length"`, which + * indicates the generation exceeded `max_tokens` or the conversation exceeded the + * max context length. + */ + response_format?: ThreadsAPI.AssistantResponseFormatOption | null; /** * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will @@ -894,11 +1279,23 @@ export interface RunStreamParams { */ temperature?: number | null; + /** + * Controls which (if any) tool is called by the model. `none` means the model will + * not call any tools and instead generates a message. `auto` is the default value + * and means the model can pick between generating a message or calling a tool. + * Specifying a particular tool like `{"type": "TOOL_TYPE"}` or + * `{"type": "function", "function": {"name": "my_function"}}` forces the model to + * call that tool. + */ + tool_choice?: ThreadsAPI.AssistantToolChoiceOption | null; + /** * Override the tools the assistant can use for this run. This is useful for * modifying the behavior on a per-run basis. */ tools?: Array | null; + + truncation_strategy?: RunStreamParams.TruncationStrategy | null; } export namespace RunStreamParams { @@ -934,6 +1331,22 @@ export namespace RunStreamParams { */ metadata?: unknown | null; } + + export interface TruncationStrategy { + /** + * The truncation strategy to use for the thread. The default is `auto`. If set to + * `last_messages`, the thread will be truncated to the n most recent messages in + * the thread. When set to `auto`, messages in the middle of the thread will be + * dropped to fit the context length of the model, `max_prompt_tokens`. + */ + type: 'auto' | 'last_messages'; + + /** + * The number of most recent messages from the thread when constructing the context + * for the run. + */ + last_messages?: number | null; + } } export type RunSubmitToolOutputsParams = diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 1b4b3f7d5..29682c308 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -116,6 +116,66 @@ export class Threads extends APIResource { } } +/** + * An object describing the expected output of the model. If `json_object` only + * `function` type `tools` are allowed to be passed to the Run. If `text` the model + * can return text or any value needed. + */ +export interface AssistantResponseFormat { + /** + * Must be one of `text` or `json_object`. + */ + type?: 'text' | 'json_object'; +} + +/** + * Specifies the format that the model must output. Compatible with + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and + * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * + * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * message the model generates is valid JSON. + * + * **Important:** when using JSON mode, you **must** also instruct the model to + * produce JSON yourself via a system or user message. Without this, the model may + * generate an unending stream of whitespace until the generation reaches the token + * limit, resulting in a long-running and seemingly "stuck" request. Also note that + * the message content may be partially cut off if `finish_reason="length"`, which + * indicates the generation exceeded `max_tokens` or the conversation exceeded the + * max context length. + */ +export type AssistantResponseFormatOption = 'none' | 'auto' | AssistantResponseFormat; + +/** + * Specifies a tool the model should use. Use to force the model to call a specific + * tool. + */ +export interface AssistantToolChoice { + /** + * The type of the tool. If type is `function`, the function name must be set + */ + type: 'function' | 'code_interpreter' | 'retrieval'; + + function?: AssistantToolChoiceFunction; +} + +export interface AssistantToolChoiceFunction { + /** + * The name of the function to call. + */ + name: string; +} + +/** + * Controls which (if any) tool is called by the model. `none` means the model will + * not call any tools and instead generates a message. `auto` is the default value + * and means the model can pick between generating a message or calling a tool. + * Specifying a particular tool like `{"type": "TOOL_TYPE"}` or + * `{"type": "function", "function": {"name": "my_function"}}` forces the model to + * call that tool. + */ +export type AssistantToolChoiceOption = 'none' | 'auto' | AssistantToolChoice; + /** * Represents a thread that contains * [messages](https://platform.openai.com/docs/api-reference/messages). @@ -232,6 +292,24 @@ export interface ThreadCreateAndRunParamsBase { */ instructions?: string | null; + /** + * The maximum number of completion tokens that may be used over the course of the + * run. The run will make a best effort to use only the number of completion tokens + * specified, across multiple turns of the run. If the run exceeds the number of + * completion tokens specified, the run will end with status `complete`. See + * `incomplete_details` for more info. + */ + max_completion_tokens?: number | null; + + /** + * The maximum number of prompt tokens that may be used over the course of the run. + * The run will make a best effort to use only the number of prompt tokens + * specified, across multiple turns of the run. If the run exceeds the number of + * prompt tokens specified, the run will end with status `complete`. See + * `incomplete_details` for more info. + */ + max_prompt_tokens?: number | null; + /** * Set of 16 key-value pairs that can be attached to an object. This can be useful * for storing additional information about the object in a structured format. Keys @@ -246,7 +324,45 @@ export interface ThreadCreateAndRunParamsBase { * model associated with the assistant. If not, the model associated with the * assistant will be used. */ - model?: string | null; + model?: + | (string & {}) + | 'gpt-4-turbo' + | 'gpt-4-turbo-2024-04-09' + | 'gpt-4-0125-preview' + | 'gpt-4-turbo-preview' + | 'gpt-4-1106-preview' + | 'gpt-4-vision-preview' + | 'gpt-4' + | 'gpt-4-0314' + | 'gpt-4-0613' + | 'gpt-4-32k' + | 'gpt-4-32k-0314' + | 'gpt-4-32k-0613' + | 'gpt-3.5-turbo' + | 'gpt-3.5-turbo-16k' + | 'gpt-3.5-turbo-0613' + | 'gpt-3.5-turbo-1106' + | 'gpt-3.5-turbo-0125' + | 'gpt-3.5-turbo-16k-0613' + | null; + + /** + * Specifies the format that the model must output. Compatible with + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and + * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * + * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * message the model generates is valid JSON. + * + * **Important:** when using JSON mode, you **must** also instruct the model to + * produce JSON yourself via a system or user message. Without this, the model may + * generate an unending stream of whitespace until the generation reaches the token + * limit, resulting in a long-running and seemingly "stuck" request. Also note that + * the message content may be partially cut off if `finish_reason="length"`, which + * indicates the generation exceeded `max_tokens` or the conversation exceeded the + * max context length. + */ + response_format?: AssistantResponseFormatOption | null; /** * If `true`, returns a stream of events that happen during the Run as server-sent @@ -267,6 +383,16 @@ export interface ThreadCreateAndRunParamsBase { */ thread?: ThreadCreateAndRunParams.Thread; + /** + * Controls which (if any) tool is called by the model. `none` means the model will + * not call any tools and instead generates a message. `auto` is the default value + * and means the model can pick between generating a message or calling a tool. + * Specifying a particular tool like `{"type": "TOOL_TYPE"}` or + * `{"type": "function", "function": {"name": "my_function"}}` forces the model to + * call that tool. + */ + tool_choice?: AssistantToolChoiceOption | null; + /** * Override the tools the assistant can use for this run. This is useful for * modifying the behavior on a per-run basis. @@ -274,6 +400,8 @@ export interface ThreadCreateAndRunParamsBase { tools?: Array< AssistantsAPI.CodeInterpreterTool | AssistantsAPI.RetrievalTool | AssistantsAPI.FunctionTool > | null; + + truncation_strategy?: ThreadCreateAndRunParams.TruncationStrategy | null; } export namespace ThreadCreateAndRunParams { @@ -331,6 +459,22 @@ export namespace ThreadCreateAndRunParams { } } + export interface TruncationStrategy { + /** + * The truncation strategy to use for the thread. The default is `auto`. If set to + * `last_messages`, the thread will be truncated to the n most recent messages in + * the thread. When set to `auto`, messages in the middle of the thread will be + * dropped to fit the context length of the model, `max_prompt_tokens`. + */ + type: 'auto' | 'last_messages'; + + /** + * The number of most recent messages from the thread when constructing the context + * for the run. + */ + last_messages?: number | null; + } + export type ThreadCreateAndRunParamsNonStreaming = ThreadsAPI.ThreadCreateAndRunParamsNonStreaming; export type ThreadCreateAndRunParamsStreaming = ThreadsAPI.ThreadCreateAndRunParamsStreaming; } @@ -367,6 +511,24 @@ export interface ThreadCreateAndRunPollParams { */ instructions?: string | null; + /** + * The maximum number of completion tokens that may be used over the course of the + * run. The run will make a best effort to use only the number of completion tokens + * specified, across multiple turns of the run. If the run exceeds the number of + * completion tokens specified, the run will end with status `complete`. See + * `incomplete_details` for more info. + */ + max_completion_tokens?: number | null; + + /** + * The maximum number of prompt tokens that may be used over the course of the run. + * The run will make a best effort to use only the number of prompt tokens + * specified, across multiple turns of the run. If the run exceeds the number of + * prompt tokens specified, the run will end with status `complete`. See + * `incomplete_details` for more info. + */ + max_prompt_tokens?: number | null; + /** * Set of 16 key-value pairs that can be attached to an object. This can be useful * for storing additional information about the object in a structured format. Keys @@ -381,7 +543,45 @@ export interface ThreadCreateAndRunPollParams { * model associated with the assistant. If not, the model associated with the * assistant will be used. */ - model?: string | null; + model?: + | (string & {}) + | 'gpt-4-turbo' + | 'gpt-4-turbo-2024-04-09' + | 'gpt-4-0125-preview' + | 'gpt-4-turbo-preview' + | 'gpt-4-1106-preview' + | 'gpt-4-vision-preview' + | 'gpt-4' + | 'gpt-4-0314' + | 'gpt-4-0613' + | 'gpt-4-32k' + | 'gpt-4-32k-0314' + | 'gpt-4-32k-0613' + | 'gpt-3.5-turbo' + | 'gpt-3.5-turbo-16k' + | 'gpt-3.5-turbo-0613' + | 'gpt-3.5-turbo-1106' + | 'gpt-3.5-turbo-0125' + | 'gpt-3.5-turbo-16k-0613' + | null; + + /** + * Specifies the format that the model must output. Compatible with + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and + * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * + * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * message the model generates is valid JSON. + * + * **Important:** when using JSON mode, you **must** also instruct the model to + * produce JSON yourself via a system or user message. Without this, the model may + * generate an unending stream of whitespace until the generation reaches the token + * limit, resulting in a long-running and seemingly "stuck" request. Also note that + * the message content may be partially cut off if `finish_reason="length"`, which + * indicates the generation exceeded `max_tokens` or the conversation exceeded the + * max context length. + */ + response_format?: AssistantResponseFormatOption | null; /** * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will @@ -395,6 +595,16 @@ export interface ThreadCreateAndRunPollParams { */ thread?: ThreadCreateAndRunPollParams.Thread; + /** + * Controls which (if any) tool is called by the model. `none` means the model will + * not call any tools and instead generates a message. `auto` is the default value + * and means the model can pick between generating a message or calling a tool. + * Specifying a particular tool like `{"type": "TOOL_TYPE"}` or + * `{"type": "function", "function": {"name": "my_function"}}` forces the model to + * call that tool. + */ + tool_choice?: AssistantToolChoiceOption | null; + /** * Override the tools the assistant can use for this run. This is useful for * modifying the behavior on a per-run basis. @@ -402,6 +612,8 @@ export interface ThreadCreateAndRunPollParams { tools?: Array< AssistantsAPI.CodeInterpreterTool | AssistantsAPI.RetrievalTool | AssistantsAPI.FunctionTool > | null; + + truncation_strategy?: ThreadCreateAndRunPollParams.TruncationStrategy | null; } export namespace ThreadCreateAndRunPollParams { @@ -458,6 +670,22 @@ export namespace ThreadCreateAndRunPollParams { metadata?: unknown | null; } } + + export interface TruncationStrategy { + /** + * The truncation strategy to use for the thread. The default is `auto`. If set to + * `last_messages`, the thread will be truncated to the n most recent messages in + * the thread. When set to `auto`, messages in the middle of the thread will be + * dropped to fit the context length of the model, `max_prompt_tokens`. + */ + type: 'auto' | 'last_messages'; + + /** + * The number of most recent messages from the thread when constructing the context + * for the run. + */ + last_messages?: number | null; + } } export interface ThreadCreateAndRunStreamParams { @@ -474,6 +702,24 @@ export interface ThreadCreateAndRunStreamParams { */ instructions?: string | null; + /** + * The maximum number of completion tokens that may be used over the course of the + * run. The run will make a best effort to use only the number of completion tokens + * specified, across multiple turns of the run. If the run exceeds the number of + * completion tokens specified, the run will end with status `complete`. See + * `incomplete_details` for more info. + */ + max_completion_tokens?: number | null; + + /** + * The maximum number of prompt tokens that may be used over the course of the run. + * The run will make a best effort to use only the number of prompt tokens + * specified, across multiple turns of the run. If the run exceeds the number of + * prompt tokens specified, the run will end with status `complete`. See + * `incomplete_details` for more info. + */ + max_prompt_tokens?: number | null; + /** * Set of 16 key-value pairs that can be attached to an object. This can be useful * for storing additional information about the object in a structured format. Keys @@ -488,7 +734,45 @@ export interface ThreadCreateAndRunStreamParams { * model associated with the assistant. If not, the model associated with the * assistant will be used. */ - model?: string | null; + model?: + | (string & {}) + | 'gpt-4-turbo' + | 'gpt-4-turbo-2024-04-09' + | 'gpt-4-0125-preview' + | 'gpt-4-turbo-preview' + | 'gpt-4-1106-preview' + | 'gpt-4-vision-preview' + | 'gpt-4' + | 'gpt-4-0314' + | 'gpt-4-0613' + | 'gpt-4-32k' + | 'gpt-4-32k-0314' + | 'gpt-4-32k-0613' + | 'gpt-3.5-turbo' + | 'gpt-3.5-turbo-16k' + | 'gpt-3.5-turbo-0613' + | 'gpt-3.5-turbo-1106' + | 'gpt-3.5-turbo-0125' + | 'gpt-3.5-turbo-16k-0613' + | null; + + /** + * Specifies the format that the model must output. Compatible with + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and + * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * + * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * message the model generates is valid JSON. + * + * **Important:** when using JSON mode, you **must** also instruct the model to + * produce JSON yourself via a system or user message. Without this, the model may + * generate an unending stream of whitespace until the generation reaches the token + * limit, resulting in a long-running and seemingly "stuck" request. Also note that + * the message content may be partially cut off if `finish_reason="length"`, which + * indicates the generation exceeded `max_tokens` or the conversation exceeded the + * max context length. + */ + response_format?: AssistantResponseFormatOption | null; /** * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will @@ -502,6 +786,16 @@ export interface ThreadCreateAndRunStreamParams { */ thread?: ThreadCreateAndRunStreamParams.Thread; + /** + * Controls which (if any) tool is called by the model. `none` means the model will + * not call any tools and instead generates a message. `auto` is the default value + * and means the model can pick between generating a message or calling a tool. + * Specifying a particular tool like `{"type": "TOOL_TYPE"}` or + * `{"type": "function", "function": {"name": "my_function"}}` forces the model to + * call that tool. + */ + tool_choice?: AssistantToolChoiceOption | null; + /** * Override the tools the assistant can use for this run. This is useful for * modifying the behavior on a per-run basis. @@ -509,6 +803,8 @@ export interface ThreadCreateAndRunStreamParams { tools?: Array< AssistantsAPI.CodeInterpreterTool | AssistantsAPI.RetrievalTool | AssistantsAPI.FunctionTool > | null; + + truncation_strategy?: ThreadCreateAndRunStreamParams.TruncationStrategy | null; } export namespace ThreadCreateAndRunStreamParams { @@ -565,9 +861,30 @@ export namespace ThreadCreateAndRunStreamParams { metadata?: unknown | null; } } + + export interface TruncationStrategy { + /** + * The truncation strategy to use for the thread. The default is `auto`. If set to + * `last_messages`, the thread will be truncated to the n most recent messages in + * the thread. When set to `auto`, messages in the middle of the thread will be + * dropped to fit the context length of the model, `max_prompt_tokens`. + */ + type: 'auto' | 'last_messages'; + + /** + * The number of most recent messages from the thread when constructing the context + * for the run. + */ + last_messages?: number | null; + } } export namespace Threads { + export import AssistantResponseFormat = ThreadsAPI.AssistantResponseFormat; + export import AssistantResponseFormatOption = ThreadsAPI.AssistantResponseFormatOption; + export import AssistantToolChoice = ThreadsAPI.AssistantToolChoice; + export import AssistantToolChoiceFunction = ThreadsAPI.AssistantToolChoiceFunction; + export import AssistantToolChoiceOption = ThreadsAPI.AssistantToolChoiceOption; export import Thread = ThreadsAPI.Thread; export import ThreadDeleted = ThreadsAPI.ThreadDeleted; export import ThreadCreateParams = ThreadsAPI.ThreadCreateParams; diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 8119639f2..2288265ea 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -667,6 +667,8 @@ export interface ChatCompletionCreateParamsBase { */ model: | (string & {}) + | 'gpt-4-turbo' + | 'gpt-4-turbo-2024-04-09' | 'gpt-4-0125-preview' | 'gpt-4-turbo-preview' | 'gpt-4-1106-preview' @@ -730,8 +732,7 @@ export interface ChatCompletionCreateParamsBase { /** * Whether to return log probabilities of the output tokens or not. If true, * returns the log probabilities of each output token returned in the `content` of - * `message`. This option is currently not available on the `gpt-4-vision-preview` - * model. + * `message`. */ logprobs?: boolean | null; diff --git a/src/resources/fine-tuning/fine-tuning.ts b/src/resources/fine-tuning/fine-tuning.ts index e62f8f09c..c8d688b0c 100644 --- a/src/resources/fine-tuning/fine-tuning.ts +++ b/src/resources/fine-tuning/fine-tuning.ts @@ -1,7 +1,7 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'openai/resource'; -import * as JobsAPI from 'openai/resources/fine-tuning/jobs'; +import * as JobsAPI from 'openai/resources/fine-tuning/jobs/jobs'; export class FineTuning extends APIResource { jobs: JobsAPI.Jobs = new JobsAPI.Jobs(this._client); @@ -11,6 +11,9 @@ export namespace FineTuning { export import Jobs = JobsAPI.Jobs; export import FineTuningJob = JobsAPI.FineTuningJob; export import FineTuningJobEvent = JobsAPI.FineTuningJobEvent; + export import FineTuningJobIntegration = JobsAPI.FineTuningJobIntegration; + export import FineTuningJobWandbIntegration = JobsAPI.FineTuningJobWandbIntegration; + export import FineTuningJobWandbIntegrationObject = JobsAPI.FineTuningJobWandbIntegrationObject; export import FineTuningJobsPage = JobsAPI.FineTuningJobsPage; export import FineTuningJobEventsPage = JobsAPI.FineTuningJobEventsPage; export import JobCreateParams = JobsAPI.JobCreateParams; diff --git a/src/resources/fine-tuning/index.ts b/src/resources/fine-tuning/index.ts index 2885f62f4..1d8739a0a 100644 --- a/src/resources/fine-tuning/index.ts +++ b/src/resources/fine-tuning/index.ts @@ -4,10 +4,13 @@ export { FineTuning } from './fine-tuning'; export { FineTuningJob, FineTuningJobEvent, + FineTuningJobIntegration, + FineTuningJobWandbIntegration, + FineTuningJobWandbIntegrationObject, JobCreateParams, JobListParams, JobListEventsParams, FineTuningJobsPage, FineTuningJobEventsPage, Jobs, -} from './jobs'; +} from './jobs/index'; diff --git a/src/resources/fine-tuning/jobs/checkpoints.ts b/src/resources/fine-tuning/jobs/checkpoints.ts new file mode 100644 index 000000000..468cb3001 --- /dev/null +++ b/src/resources/fine-tuning/jobs/checkpoints.ts @@ -0,0 +1,108 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; +import { isRequestOptions } from 'openai/core'; +import * as CheckpointsAPI from 'openai/resources/fine-tuning/jobs/checkpoints'; +import { CursorPage, type CursorPageParams } from 'openai/pagination'; + +export class Checkpoints extends APIResource { + /** + * List checkpoints for a fine-tuning job. + */ + list( + fineTuningJobId: string, + query?: CheckpointListParams, + options?: Core.RequestOptions, + ): Core.PagePromise; + list( + fineTuningJobId: string, + options?: Core.RequestOptions, + ): Core.PagePromise; + list( + fineTuningJobId: string, + query: CheckpointListParams | Core.RequestOptions = {}, + options?: Core.RequestOptions, + ): Core.PagePromise { + if (isRequestOptions(query)) { + return this.list(fineTuningJobId, {}, query); + } + return this._client.getAPIList( + `/fine_tuning/jobs/${fineTuningJobId}/checkpoints`, + FineTuningJobCheckpointsPage, + { query, ...options }, + ); + } +} + +export class FineTuningJobCheckpointsPage extends CursorPage {} + +/** + * The `fine_tuning.job.checkpoint` object represents a model checkpoint for a + * fine-tuning job that is ready to use. + */ +export interface FineTuningJobCheckpoint { + /** + * The checkpoint identifier, which can be referenced in the API endpoints. + */ + id: string; + + /** + * The Unix timestamp (in seconds) for when the checkpoint was created. + */ + created_at: number; + + /** + * The name of the fine-tuned checkpoint model that is created. + */ + fine_tuned_model_checkpoint: string; + + /** + * The name of the fine-tuning job that this checkpoint was created from. + */ + fine_tuning_job_id: string; + + /** + * Metrics at the step number during the fine-tuning job. + */ + metrics: FineTuningJobCheckpoint.Metrics; + + /** + * The object type, which is always "fine_tuning.job.checkpoint". + */ + object: 'fine_tuning.job.checkpoint'; + + /** + * The step number that the checkpoint was created at. + */ + step_number: number; +} + +export namespace FineTuningJobCheckpoint { + /** + * Metrics at the step number during the fine-tuning job. + */ + export interface Metrics { + full_valid_loss?: number; + + full_valid_mean_token_accuracy?: number; + + step?: number; + + train_loss?: number; + + train_mean_token_accuracy?: number; + + valid_loss?: number; + + valid_mean_token_accuracy?: number; + } +} + +export interface CheckpointListParams extends CursorPageParams {} + +export namespace Checkpoints { + export import FineTuningJobCheckpoint = CheckpointsAPI.FineTuningJobCheckpoint; + export import FineTuningJobCheckpointsPage = CheckpointsAPI.FineTuningJobCheckpointsPage; + export import CheckpointListParams = CheckpointsAPI.CheckpointListParams; +} diff --git a/src/resources/fine-tuning/jobs/index.ts b/src/resources/fine-tuning/jobs/index.ts new file mode 100644 index 000000000..275c776e9 --- /dev/null +++ b/src/resources/fine-tuning/jobs/index.ts @@ -0,0 +1,21 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +export { + FineTuningJob, + FineTuningJobEvent, + FineTuningJobIntegration, + FineTuningJobWandbIntegration, + FineTuningJobWandbIntegrationObject, + JobCreateParams, + JobListParams, + JobListEventsParams, + FineTuningJobsPage, + FineTuningJobEventsPage, + Jobs, +} from './jobs'; +export { + FineTuningJobCheckpoint, + CheckpointListParams, + FineTuningJobCheckpointsPage, + Checkpoints, +} from './checkpoints'; diff --git a/src/resources/fine-tuning/jobs.ts b/src/resources/fine-tuning/jobs/jobs.ts similarity index 66% rename from src/resources/fine-tuning/jobs.ts rename to src/resources/fine-tuning/jobs/jobs.ts index eb77405ca..10b3d38d2 100644 --- a/src/resources/fine-tuning/jobs.ts +++ b/src/resources/fine-tuning/jobs/jobs.ts @@ -3,10 +3,13 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; import { isRequestOptions } from 'openai/core'; -import * as JobsAPI from 'openai/resources/fine-tuning/jobs'; +import * as JobsAPI from 'openai/resources/fine-tuning/jobs/jobs'; +import * as CheckpointsAPI from 'openai/resources/fine-tuning/jobs/checkpoints'; import { CursorPage, type CursorPageParams } from 'openai/pagination'; export class Jobs extends APIResource { + checkpoints: CheckpointsAPI.Checkpoints = new CheckpointsAPI.Checkpoints(this._client); + /** * Creates a fine-tuning job which begins the process of creating a new model from * a given dataset. @@ -147,6 +150,11 @@ export interface FineTuningJob { */ result_files: Array; + /** + * The seed used for the fine-tuning job. + */ + seed: number; + /** * The current status of the fine-tuning job, which can be either * `validating_files`, `queued`, `running`, `succeeded`, `failed`, or `cancelled`. @@ -171,6 +179,11 @@ export interface FineTuningJob { * [Files API](https://platform.openai.com/docs/api-reference/files/retrieve-contents). */ validation_file: string | null; + + /** + * A list of integrations to enable for this fine-tuning job. + */ + integrations?: Array | null; } export namespace FineTuningJob { @@ -227,6 +240,56 @@ export interface FineTuningJobEvent { object: 'fine_tuning.job.event'; } +export type FineTuningJobIntegration = FineTuningJobWandbIntegrationObject; + +/** + * The settings for your integration with Weights and Biases. This payload + * specifies the project that metrics will be sent to. Optionally, you can set an + * explicit display name for your run, add tags to your run, and set a default + * entity (team, username, etc) to be associated with your run. + */ +export interface FineTuningJobWandbIntegration { + /** + * The name of the project that the new run will be created under. + */ + project: string; + + /** + * The entity to use for the run. This allows you to set the team or username of + * the WandB user that you would like associated with the run. If not set, the + * default entity for the registered WandB API key is used. + */ + entity?: string | null; + + /** + * A display name to set for the run. If not set, we will use the Job ID as the + * name. + */ + name?: string | null; + + /** + * A list of tags to be attached to the newly created run. These tags are passed + * through directly to WandB. Some default tags are generated by OpenAI: + * "openai/finetune", "openai/{base-model}", "openai/{ftjob-abcdef}". + */ + tags?: Array; +} + +export interface FineTuningJobWandbIntegrationObject { + /** + * The type of the integration being enabled for the fine-tuning job + */ + type: 'wandb'; + + /** + * The settings for your integration with Weights and Biases. This payload + * specifies the project that metrics will be sent to. Optionally, you can set an + * explicit display name for your run, add tags to your run, and set a default + * entity (team, username, etc) to be associated with your run. + */ + wandb: FineTuningJobWandbIntegration; +} + export interface JobCreateParams { /** * The name of the model to fine-tune. You can select one of the @@ -253,6 +316,18 @@ export interface JobCreateParams { */ hyperparameters?: JobCreateParams.Hyperparameters; + /** + * A list of integrations to enable for your fine-tuning job. + */ + integrations?: Array | null; + + /** + * The seed controls the reproducibility of the job. Passing in the same seed and + * job parameters should produce the same results, but may differ in rare cases. If + * a seed is not specified, one will be generated for you. + */ + seed?: number | null; + /** * A string of up to 18 characters that will be added to your fine-tuned model * name. @@ -302,6 +377,57 @@ export namespace JobCreateParams { */ n_epochs?: 'auto' | number; } + + export interface Integration { + /** + * The type of integration to enable. Currently, only "wandb" (Weights and Biases) + * is supported. + */ + type: 'wandb'; + + /** + * The settings for your integration with Weights and Biases. This payload + * specifies the project that metrics will be sent to. Optionally, you can set an + * explicit display name for your run, add tags to your run, and set a default + * entity (team, username, etc) to be associated with your run. + */ + wandb: Integration.Wandb; + } + + export namespace Integration { + /** + * The settings for your integration with Weights and Biases. This payload + * specifies the project that metrics will be sent to. Optionally, you can set an + * explicit display name for your run, add tags to your run, and set a default + * entity (team, username, etc) to be associated with your run. + */ + export interface Wandb { + /** + * The name of the project that the new run will be created under. + */ + project: string; + + /** + * The entity to use for the run. This allows you to set the team or username of + * the WandB user that you would like associated with the run. If not set, the + * default entity for the registered WandB API key is used. + */ + entity?: string | null; + + /** + * A display name to set for the run. If not set, we will use the Job ID as the + * name. + */ + name?: string | null; + + /** + * A list of tags to be attached to the newly created run. These tags are passed + * through directly to WandB. Some default tags are generated by OpenAI: + * "openai/finetune", "openai/{base-model}", "openai/{ftjob-abcdef}". + */ + tags?: Array; + } + } } export interface JobListParams extends CursorPageParams {} @@ -311,9 +437,16 @@ export interface JobListEventsParams extends CursorPageParams {} export namespace Jobs { export import FineTuningJob = JobsAPI.FineTuningJob; export import FineTuningJobEvent = JobsAPI.FineTuningJobEvent; + export import FineTuningJobIntegration = JobsAPI.FineTuningJobIntegration; + export import FineTuningJobWandbIntegration = JobsAPI.FineTuningJobWandbIntegration; + export import FineTuningJobWandbIntegrationObject = JobsAPI.FineTuningJobWandbIntegrationObject; export import FineTuningJobsPage = JobsAPI.FineTuningJobsPage; export import FineTuningJobEventsPage = JobsAPI.FineTuningJobEventsPage; export import JobCreateParams = JobsAPI.JobCreateParams; export import JobListParams = JobsAPI.JobListParams; export import JobListEventsParams = JobsAPI.JobListEventsParams; + export import Checkpoints = CheckpointsAPI.Checkpoints; + export import FineTuningJobCheckpoint = CheckpointsAPI.FineTuningJobCheckpoint; + export import FineTuningJobCheckpointsPage = CheckpointsAPI.FineTuningJobCheckpointsPage; + export import CheckpointListParams = CheckpointsAPI.CheckpointListParams; } diff --git a/tests/api-resources/beta/assistants/assistants.test.ts b/tests/api-resources/beta/assistants/assistants.test.ts index b11075d06..62282148d 100644 --- a/tests/api-resources/beta/assistants/assistants.test.ts +++ b/tests/api-resources/beta/assistants/assistants.test.ts @@ -10,7 +10,7 @@ const openai = new OpenAI({ describe('resource assistants', () => { test('create: only required params', async () => { - const responsePromise = openai.beta.assistants.create({ model: 'string' }); + const responsePromise = openai.beta.assistants.create({ model: 'gpt-4-turbo' }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -22,7 +22,7 @@ describe('resource assistants', () => { test('create: required and optional params', async () => { const response = await openai.beta.assistants.create({ - model: 'string', + model: 'gpt-4-turbo', description: 'string', file_ids: ['string', 'string', 'string'], instructions: 'string', diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts index 2911cfd53..2489d56e2 100644 --- a/tests/api-resources/beta/threads/runs/runs.test.ts +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -30,11 +30,16 @@ describe('resource runs', () => { { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, ], instructions: 'string', + max_completion_tokens: 256, + max_prompt_tokens: 256, metadata: {}, - model: 'string', + model: 'gpt-4-turbo', + response_format: 'none', stream: false, temperature: 1, + tool_choice: 'none', tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], + truncation_strategy: { type: 'auto', last_messages: 1 }, }); }); diff --git a/tests/api-resources/beta/threads/threads.test.ts b/tests/api-resources/beta/threads/threads.test.ts index 3606019bd..028a150f4 100644 --- a/tests/api-resources/beta/threads/threads.test.ts +++ b/tests/api-resources/beta/threads/threads.test.ts @@ -106,8 +106,11 @@ describe('resource threads', () => { const response = await openai.beta.threads.createAndRun({ assistant_id: 'string', instructions: 'string', + max_completion_tokens: 256, + max_prompt_tokens: 256, metadata: {}, - model: 'string', + model: 'gpt-4-turbo', + response_format: 'none', stream: false, temperature: 1, thread: { @@ -118,7 +121,9 @@ describe('resource threads', () => { ], metadata: {}, }, + tool_choice: 'none', tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], + truncation_strategy: { type: 'auto', last_messages: 1 }, }); }); }); diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index e0ccb3910..bd398b91d 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -12,7 +12,7 @@ describe('resource completions', () => { test('create: only required params', async () => { const responsePromise = openai.chat.completions.create({ messages: [{ content: 'string', role: 'system' }], - model: 'gpt-3.5-turbo', + model: 'gpt-4-turbo', }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); @@ -26,7 +26,7 @@ describe('resource completions', () => { test('create: required and optional params', async () => { const response = await openai.chat.completions.create({ messages: [{ content: 'string', role: 'system', name: 'string' }], - model: 'gpt-3.5-turbo', + model: 'gpt-4-turbo', frequency_penalty: -2, function_call: 'none', functions: [{ description: 'string', name: 'string', parameters: { foo: 'bar' } }], diff --git a/tests/api-resources/fine-tuning/jobs/checkpoints.test.ts b/tests/api-resources/fine-tuning/jobs/checkpoints.test.ts new file mode 100644 index 000000000..1844d7c87 --- /dev/null +++ b/tests/api-resources/fine-tuning/jobs/checkpoints.test.ts @@ -0,0 +1,42 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import OpenAI from 'openai'; +import { Response } from 'node-fetch'; + +const openai = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('resource checkpoints', () => { + test('list', async () => { + const responsePromise = openai.fineTuning.jobs.checkpoints.list('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('list: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.fineTuning.jobs.checkpoints.list('ft-AF1WoRqd3aJAHsqc9NY7iL8F', { + path: '/_stainless_unknown_path', + }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('list: request options and params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.fineTuning.jobs.checkpoints.list( + 'ft-AF1WoRqd3aJAHsqc9NY7iL8F', + { after: 'string', limit: 0 }, + { path: '/_stainless_unknown_path' }, + ), + ).rejects.toThrow(OpenAI.NotFoundError); + }); +}); diff --git a/tests/api-resources/fine-tuning/jobs.test.ts b/tests/api-resources/fine-tuning/jobs/jobs.test.ts similarity index 87% rename from tests/api-resources/fine-tuning/jobs.test.ts rename to tests/api-resources/fine-tuning/jobs/jobs.test.ts index d8f230abd..d2207cd97 100644 --- a/tests/api-resources/fine-tuning/jobs.test.ts +++ b/tests/api-resources/fine-tuning/jobs/jobs.test.ts @@ -28,6 +28,36 @@ describe('resource jobs', () => { model: 'gpt-3.5-turbo', training_file: 'file-abc123', hyperparameters: { batch_size: 'auto', learning_rate_multiplier: 'auto', n_epochs: 'auto' }, + integrations: [ + { + type: 'wandb', + wandb: { + project: 'my-wandb-project', + name: 'string', + entity: 'string', + tags: ['custom-tag', 'custom-tag', 'custom-tag'], + }, + }, + { + type: 'wandb', + wandb: { + project: 'my-wandb-project', + name: 'string', + entity: 'string', + tags: ['custom-tag', 'custom-tag', 'custom-tag'], + }, + }, + { + type: 'wandb', + wandb: { + project: 'my-wandb-project', + name: 'string', + entity: 'string', + tags: ['custom-tag', 'custom-tag', 'custom-tag'], + }, + }, + ], + seed: 42, suffix: 'x', validation_file: 'file-abc123', }); From 0c75bbdb2022a5acf4e4b5e2997854f7784e46b7 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 15 Apr 2024 16:09:44 -0400 Subject: [PATCH 349/725] feat(api): add batch API (#768) https://platform.openai.com/docs/api-reference/batch/create --- .stats.yml | 2 +- api.md | 14 ++ src/index.ts | 7 + src/resources/batches.ts | 225 ++++++++++++++++++++++++++++ src/resources/index.ts | 1 + tests/api-resources/batches.test.ts | 71 +++++++++ 6 files changed, 319 insertions(+), 1 deletion(-) create mode 100644 src/resources/batches.ts create mode 100644 tests/api-resources/batches.test.ts diff --git a/.stats.yml b/.stats.yml index 284caebf4..47c2bce1c 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1 +1 @@ -configured_endpoints: 52 +configured_endpoints: 55 diff --git a/api.md b/api.md index c6a2bf273..02030dc07 100644 --- a/api.md +++ b/api.md @@ -337,3 +337,17 @@ Methods: - client.beta.threads.messages.files.retrieve(threadId, messageId, fileId) -> MessageFile - client.beta.threads.messages.files.list(threadId, messageId, { ...params }) -> MessageFilesPage + +# Batches + +Types: + +- Batch +- BatchError +- BatchRequestCounts + +Methods: + +- client.batches.create({ ...params }) -> Batch +- client.batches.retrieve(batchId) -> Batch +- client.batches.cancel(batchId) -> Batch diff --git a/src/index.ts b/src/index.ts index 9a2b2eaad..84fdd3979 100644 --- a/src/index.ts +++ b/src/index.ts @@ -150,6 +150,7 @@ export class OpenAI extends Core.APIClient { models: API.Models = new API.Models(this); fineTuning: API.FineTuning = new API.FineTuning(this); beta: API.Beta = new API.Beta(this); + batches: API.Batches = new API.Batches(this); protected override defaultQuery(): Core.DefaultQuery | undefined { return this._options.defaultQuery; @@ -285,6 +286,12 @@ export namespace OpenAI { export import Beta = API.Beta; + export import Batches = API.Batches; + export import Batch = API.Batch; + export import BatchError = API.BatchError; + export import BatchRequestCounts = API.BatchRequestCounts; + export import BatchCreateParams = API.BatchCreateParams; + export import ErrorObject = API.ErrorObject; export import FunctionDefinition = API.FunctionDefinition; export import FunctionParameters = API.FunctionParameters; diff --git a/src/resources/batches.ts b/src/resources/batches.ts new file mode 100644 index 000000000..75b491a16 --- /dev/null +++ b/src/resources/batches.ts @@ -0,0 +1,225 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; +import * as BatchesAPI from 'openai/resources/batches'; + +export class Batches extends APIResource { + /** + * Creates and executes a batch from an uploaded file of requests + */ + create(body: BatchCreateParams, options?: Core.RequestOptions): Core.APIPromise { + return this._client.post('/batches', { body, ...options }); + } + + /** + * Retrieves a batch. + */ + retrieve(batchId: string, options?: Core.RequestOptions): Core.APIPromise { + return this._client.get(`/batches/${batchId}`, options); + } + + /** + * Cancels an in-progress batch. + */ + cancel(batchId: string, options?: Core.RequestOptions): Core.APIPromise { + return this._client.post(`/batches/${batchId}/cancel`, options); + } +} + +export interface Batch { + id: string; + + /** + * The time frame within which the batch should be processed. + */ + completion_window: string; + + /** + * The Unix timestamp (in seconds) for when the batch was created. + */ + created_at: string; + + /** + * The OpenAI API endpoint used by the batch. + */ + endpoint: string; + + /** + * The ID of the input file for the batch. + */ + input_file_id: string; + + /** + * The object type, which is always `batch`. + */ + object: 'batch'; + + /** + * The current status of the batch. + */ + status: + | 'validating' + | 'failed' + | 'in_progress' + | 'finalizing' + | 'completed' + | 'expired' + | 'cancelling' + | 'cancelled'; + + /** + * The Unix timestamp (in seconds) for when the batch was cancelled. + */ + cancelled_at?: string; + + /** + * The Unix timestamp (in seconds) for when the batch started cancelling. + */ + cancelling_at?: string; + + /** + * The Unix timestamp (in seconds) for when the batch was completed. + */ + completed_at?: string; + + /** + * The ID of the file containing the outputs of requests with errors. + */ + error_file_id?: string; + + errors?: Batch.Errors; + + /** + * The Unix timestamp (in seconds) for when the batch expired. + */ + expired_at?: string; + + /** + * The Unix timestamp (in seconds) for when the batch will expire. + */ + expires_at?: string; + + /** + * The Unix timestamp (in seconds) for when the batch failed. + */ + failed_at?: string; + + /** + * The Unix timestamp (in seconds) for when the batch started finalizing. + */ + finalizing_at?: string; + + /** + * The Unix timestamp (in seconds) for when the batch started processing. + */ + in_progress_at?: string; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + + /** + * The ID of the file containing the outputs of successfully executed requests. + */ + output_file_id?: string; + + /** + * The request counts for different statuses within the batch. + */ + request_counts?: BatchRequestCounts; +} + +export namespace Batch { + export interface Errors { + data?: Array; + + /** + * The object type, which is always `list`. + */ + object?: string; + } +} + +export interface BatchError { + /** + * An error code identifying the error type. + */ + code?: string; + + /** + * The line number of the input file where the error occurred, if applicable. + */ + line?: number | null; + + /** + * A human-readable message providing more details about the error. + */ + message?: string; + + /** + * The name of the parameter that caused the error, if applicable. + */ + param?: string | null; +} + +/** + * The request counts for different statuses within the batch. + */ +export interface BatchRequestCounts { + /** + * Number of requests that have been completed successfully. + */ + completed: number; + + /** + * Number of requests that have failed. + */ + failed: number; + + /** + * Total number of requests in the batch. + */ + total: number; +} + +export interface BatchCreateParams { + /** + * The time frame within which the batch should be processed. Currently only `24h` + * is supported. + */ + completion_window: '24h'; + + /** + * The endpoint to be used for all requests in the batch. Currently only + * `/v1/chat/completions` is supported. + */ + endpoint: '/v1/chat/completions'; + + /** + * The ID of an uploaded file that contains requests for the new batch. + * + * See [upload file](https://platform.openai.com/docs/api-reference/files/create) + * for how to upload a file. + * + * Your input file must be formatted as a JSONL file, and must be uploaded with the + * purpose `batch`. + */ + input_file_id: string; + + /** + * Optional custom metadata for the batch. + */ + metadata?: Record | null; +} + +export namespace Batches { + export import Batch = BatchesAPI.Batch; + export import BatchError = BatchesAPI.BatchError; + export import BatchRequestCounts = BatchesAPI.BatchRequestCounts; + export import BatchCreateParams = BatchesAPI.BatchCreateParams; +} diff --git a/src/resources/index.ts b/src/resources/index.ts index a9741f5fd..282e57ea1 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -3,6 +3,7 @@ export * from './chat/index'; export * from './shared'; export { Audio } from './audio/audio'; +export { Batch, BatchError, BatchRequestCounts, BatchCreateParams, Batches } from './batches'; export { Beta } from './beta/beta'; export { Completion, diff --git a/tests/api-resources/batches.test.ts b/tests/api-resources/batches.test.ts new file mode 100644 index 000000000..e4a9015d1 --- /dev/null +++ b/tests/api-resources/batches.test.ts @@ -0,0 +1,71 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import OpenAI from 'openai'; +import { Response } from 'node-fetch'; + +const openai = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('resource batches', () => { + test('create: only required params', async () => { + const responsePromise = openai.batches.create({ + completion_window: '24h', + endpoint: '/v1/chat/completions', + input_file_id: 'string', + }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('create: required and optional params', async () => { + const response = await openai.batches.create({ + completion_window: '24h', + endpoint: '/v1/chat/completions', + input_file_id: 'string', + metadata: { foo: 'string' }, + }); + }); + + test('retrieve', async () => { + const responsePromise = openai.batches.retrieve('string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('retrieve: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect(openai.batches.retrieve('string', { path: '/_stainless_unknown_path' })).rejects.toThrow( + OpenAI.NotFoundError, + ); + }); + + test('cancel', async () => { + const responsePromise = openai.batches.cancel('string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('cancel: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect(openai.batches.cancel('string', { path: '/_stainless_unknown_path' })).rejects.toThrow( + OpenAI.NotFoundError, + ); + }); +}); From 56f4821ac2f86e60231c31c1e007d68176100c7c Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 15 Apr 2024 16:10:04 -0400 Subject: [PATCH 350/725] release: 4.34.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bd6b3284c..80372a7f2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.33.1" + ".": "4.34.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f3067e694..4a253da33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 4.34.0 (2024-04-15) + +Full Changelog: [v4.33.1...v4.34.0](https://github.com/openai/openai-node/compare/v4.33.1...v4.34.0) + +### Features + +* **api:** add batch API ([#768](https://github.com/openai/openai-node/issues/768)) ([7fe34f2](https://github.com/openai/openai-node/commit/7fe34f2d0bda9c1cb116a593f02bd0cc15a52e12)) +* **api:** updates ([#766](https://github.com/openai/openai-node/issues/766)) ([52bcc47](https://github.com/openai/openai-node/commit/52bcc47043e4c3ffe15ae9e7ac0fa87e2493aad9)) + ## 4.33.1 (2024-04-12) Full Changelog: [v4.33.0...v4.33.1](https://github.com/openai/openai-node/compare/v4.33.0...v4.33.1) diff --git a/README.md b/README.md index 2d1ae6089..774fd6b76 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.33.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.34.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index c06cd3bcf..d9e64064c 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.33.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.34.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 998b6a2c7..a821e7f72 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.33.1", + "version": "4.34.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 0d8f2ffd7..3577d3d22 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.33.1'; // x-release-please-version +export const VERSION = '4.34.0'; // x-release-please-version From 8cdd7ea9a28455c84f2babaea998fde228287146 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 15 Apr 2024 17:33:50 -0400 Subject: [PATCH 351/725] feat(errors): add request_id property (#769) --- src/error.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/error.ts b/src/error.ts index deac34c5d..19a60598a 100644 --- a/src/error.ts +++ b/src/error.ts @@ -13,6 +13,8 @@ export class APIError extends OpenAIError { readonly param: string | null | undefined; readonly type: string | undefined; + readonly request_id: string | null | undefined; + constructor( status: number | undefined, error: Object | undefined, @@ -22,6 +24,7 @@ export class APIError extends OpenAIError { super(`${APIError.makeMessage(status, error, message)}`); this.status = status; this.headers = headers; + this.request_id = headers?.['x-request-id']; const data = error as Record; this.error = data; From 116e38aae33a2d7b88c27d783a95b41e56500600 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 15 Apr 2024 17:34:10 -0400 Subject: [PATCH 352/725] release: 4.35.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 80372a7f2..c63d8fd43 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.34.0" + ".": "4.35.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a253da33..48a52d258 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.35.0 (2024-04-15) + +Full Changelog: [v4.34.0...v4.35.0](https://github.com/openai/openai-node/compare/v4.34.0...v4.35.0) + +### Features + +* **errors:** add request_id property ([#769](https://github.com/openai/openai-node/issues/769)) ([43aa6a1](https://github.com/openai/openai-node/commit/43aa6a19cfb1448903dfaddc4da3def2eda9cbab)) + ## 4.34.0 (2024-04-15) Full Changelog: [v4.33.1...v4.34.0](https://github.com/openai/openai-node/compare/v4.33.1...v4.34.0) diff --git a/README.md b/README.md index 774fd6b76..c32fcfcd9 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.34.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.35.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index d9e64064c..ffdb2cb9d 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.34.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.35.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index a821e7f72..d57fe15cd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.34.0", + "version": "4.35.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 3577d3d22..7ca672a0d 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.34.0'; // x-release-please-version +export const VERSION = '4.35.0'; // x-release-please-version From 7fa4400668977e4265bd26591a4712546e54892f Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 16 Apr 2024 09:17:37 -0400 Subject: [PATCH 353/725] feat(client): add header OpenAI-Project (#772) --- src/index.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/index.ts b/src/index.ts index 84fdd3979..91267cfc0 100644 --- a/src/index.ts +++ b/src/index.ts @@ -18,6 +18,11 @@ export interface ClientOptions { */ organization?: string | null | undefined; + /** + * Defaults to process.env['OPENAI_PROJECT_ID']. + */ + project?: string | null | undefined; + /** * Override the default base URL for the API, e.g., "https://api.example.com/v2/" * @@ -85,6 +90,7 @@ export interface ClientOptions { export class OpenAI extends Core.APIClient { apiKey: string; organization: string | null; + project: string | null; private _options: ClientOptions; @@ -93,6 +99,7 @@ export class OpenAI extends Core.APIClient { * * @param {string | undefined} [opts.apiKey=process.env['OPENAI_API_KEY'] ?? undefined] * @param {string | null | undefined} [opts.organization=process.env['OPENAI_ORG_ID'] ?? null] + * @param {string | null | undefined} [opts.project=process.env['OPENAI_PROJECT_ID'] ?? null] * @param {string} [opts.baseURL=process.env['OPENAI_BASE_URL'] ?? https://api.openai.com/v1] - Override the default base URL for the API. * @param {number} [opts.timeout=10 minutes] - The maximum amount of time (in milliseconds) the client will wait for a response before timing out. * @param {number} [opts.httpAgent] - An HTTP agent used to manage HTTP(s) connections. @@ -106,6 +113,7 @@ export class OpenAI extends Core.APIClient { baseURL = Core.readEnv('OPENAI_BASE_URL'), apiKey = Core.readEnv('OPENAI_API_KEY'), organization = Core.readEnv('OPENAI_ORG_ID') ?? null, + project = Core.readEnv('OPENAI_PROJECT_ID') ?? null, ...opts }: ClientOptions = {}) { if (apiKey === undefined) { @@ -117,6 +125,7 @@ export class OpenAI extends Core.APIClient { const options: ClientOptions = { apiKey, organization, + project, ...opts, baseURL: baseURL || `https://api.openai.com/v1`, }; @@ -138,6 +147,7 @@ export class OpenAI extends Core.APIClient { this.apiKey = apiKey; this.organization = organization; + this.project = project; } completions: API.Completions = new API.Completions(this); @@ -160,6 +170,7 @@ export class OpenAI extends Core.APIClient { return { ...super.defaultHeaders(opts), 'OpenAI-Organization': this.organization, + 'OpenAI-Project': this.project, ...this._options.defaultHeaders, }; } From be0dd9f7b5341adbb32ae3f55853405d6c4039f0 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 16 Apr 2024 11:37:59 -0400 Subject: [PATCH 354/725] build: configure UTF-8 locale in devcontainer (#774) --- .devcontainer/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index d03365a2b..8ea34be96 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -7,6 +7,10 @@ RUN apt-get update && apt-get install -y \ yarnpkg \ && apt-get clean autoclean +# Ensure UTF-8 encoding +ENV LANG=C.UTF-8 +ENV LC_ALL=C.UTF-8 + # Yarn RUN ln -sf /usr/bin/yarnpkg /usr/bin/yarn From 9dfc744169262d1a57a7be0453780dd77a726b6f Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 16 Apr 2024 12:54:04 -0400 Subject: [PATCH 355/725] feat: extract chat models to a named enum (#775) --- api.md | 4 ++++ src/index.ts | 1 + src/resources/chat/chat.ts | 23 +++++++++++++++++++++++ src/resources/chat/completions.ts | 23 ++--------------------- src/resources/chat/index.ts | 2 +- 5 files changed, 31 insertions(+), 22 deletions(-) diff --git a/api.md b/api.md index 02030dc07..7557ce133 100644 --- a/api.md +++ b/api.md @@ -20,6 +20,10 @@ Methods: # Chat +Types: + +- ChatModel + ## Completions Types: diff --git a/src/index.ts b/src/index.ts index 91267cfc0..7a776b2c1 100644 --- a/src/index.ts +++ b/src/index.ts @@ -238,6 +238,7 @@ export namespace OpenAI { export import CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; export import Chat = API.Chat; + export import ChatModel = API.ChatModel; export import ChatCompletion = API.ChatCompletion; export import ChatCompletionAssistantMessageParam = API.ChatCompletionAssistantMessageParam; export import ChatCompletionChunk = API.ChatCompletionChunk; diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 6c7bccb22..fa681ed64 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -1,13 +1,36 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'openai/resource'; +import * as ChatAPI from 'openai/resources/chat/chat'; import * as CompletionsAPI from 'openai/resources/chat/completions'; export class Chat extends APIResource { completions: CompletionsAPI.Completions = new CompletionsAPI.Completions(this._client); } +export type ChatModel = + | 'gpt-4-turbo' + | 'gpt-4-turbo-2024-04-09' + | 'gpt-4-0125-preview' + | 'gpt-4-turbo-preview' + | 'gpt-4-1106-preview' + | 'gpt-4-vision-preview' + | 'gpt-4' + | 'gpt-4-0314' + | 'gpt-4-0613' + | 'gpt-4-32k' + | 'gpt-4-32k-0314' + | 'gpt-4-32k-0613' + | 'gpt-3.5-turbo' + | 'gpt-3.5-turbo-16k' + | 'gpt-3.5-turbo-0301' + | 'gpt-3.5-turbo-0613' + | 'gpt-3.5-turbo-1106' + | 'gpt-3.5-turbo-0125' + | 'gpt-3.5-turbo-16k-0613'; + export namespace Chat { + export import ChatModel = ChatAPI.ChatModel; export import Completions = CompletionsAPI.Completions; export import ChatCompletion = CompletionsAPI.ChatCompletion; export import ChatCompletionAssistantMessageParam = CompletionsAPI.ChatCompletionAssistantMessageParam; diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 2288265ea..b9672f52b 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -6,6 +6,7 @@ import { APIResource } from 'openai/resource'; import * as ChatCompletionsAPI from 'openai/resources/chat/completions'; import * as CompletionsAPI from 'openai/resources/completions'; import * as Shared from 'openai/resources/shared'; +import * as ChatAPI from 'openai/resources/chat/chat'; import { Stream } from 'openai/streaming'; export class Completions extends APIResource { @@ -665,27 +666,7 @@ export interface ChatCompletionCreateParamsBase { * [model endpoint compatibility](https://platform.openai.com/docs/models/model-endpoint-compatibility) * table for details on which models work with the Chat API. */ - model: - | (string & {}) - | 'gpt-4-turbo' - | 'gpt-4-turbo-2024-04-09' - | 'gpt-4-0125-preview' - | 'gpt-4-turbo-preview' - | 'gpt-4-1106-preview' - | 'gpt-4-vision-preview' - | 'gpt-4' - | 'gpt-4-0314' - | 'gpt-4-0613' - | 'gpt-4-32k' - | 'gpt-4-32k-0314' - | 'gpt-4-32k-0613' - | 'gpt-3.5-turbo' - | 'gpt-3.5-turbo-16k' - | 'gpt-3.5-turbo-0301' - | 'gpt-3.5-turbo-0613' - | 'gpt-3.5-turbo-1106' - | 'gpt-3.5-turbo-0125' - | 'gpt-3.5-turbo-16k-0613'; + model: (string & {}) | ChatAPI.ChatModel; /** * Number between -2.0 and 2.0. Positive values penalize new tokens based on their diff --git a/src/resources/chat/index.ts b/src/resources/chat/index.ts index 78a7516ed..ef72bbbc9 100644 --- a/src/resources/chat/index.ts +++ b/src/resources/chat/index.ts @@ -1,6 +1,5 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -export { Chat } from './chat'; export { ChatCompletion, ChatCompletionAssistantMessageParam, @@ -30,3 +29,4 @@ export { CompletionCreateParamsStreaming, Completions, } from './completions'; +export { ChatModel, Chat } from './chat'; From 6f72e7ad3e4e151c9334f4449d1c3555255c2793 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 16 Apr 2024 12:54:23 -0400 Subject: [PATCH 356/725] release: 4.36.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 19 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c63d8fd43..c1ce2c41b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.35.0" + ".": "4.36.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 48a52d258..3ddd03a8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 4.36.0 (2024-04-16) + +Full Changelog: [v4.35.0...v4.36.0](https://github.com/openai/openai-node/compare/v4.35.0...v4.36.0) + +### Features + +* **client:** add header OpenAI-Project ([#772](https://github.com/openai/openai-node/issues/772)) ([bb4df37](https://github.com/openai/openai-node/commit/bb4df3722082fb44b7d4feb7a47df796149150a2)) +* extract chat models to a named enum ([#775](https://github.com/openai/openai-node/issues/775)) ([141d2ed](https://github.com/openai/openai-node/commit/141d2ed308141dc751869353208e4d0632d3650c)) + + +### Build System + +* configure UTF-8 locale in devcontainer ([#774](https://github.com/openai/openai-node/issues/774)) ([bebf4f0](https://github.com/openai/openai-node/commit/bebf4f0ca1f884f8747caff0f0e065aafffde096)) + ## 4.35.0 (2024-04-15) Full Changelog: [v4.34.0...v4.35.0](https://github.com/openai/openai-node/compare/v4.34.0...v4.35.0) diff --git a/README.md b/README.md index c32fcfcd9..406434e6d 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.35.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.36.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index ffdb2cb9d..6389062ec 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.35.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.36.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index d57fe15cd..e848ce857 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.35.0", + "version": "4.36.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 7ca672a0d..460925cae 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.35.0'; // x-release-please-version +export const VERSION = '4.36.0'; // x-release-please-version From 0a1234dde22618ceb88954a8e480b6715b36f5b7 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 17 Apr 2024 12:34:49 -0400 Subject: [PATCH 357/725] feat(api): add vector stores (#776) --- .stats.yml | 2 +- README.md | 16 +- api.md | 156 +++-- helpers.md | 23 +- src/lib/AssistantStream.ts | 4 +- src/lib/Util.ts | 23 + .../beta/{assistants => }/assistants.ts | 298 +++++++-- src/resources/beta/assistants/files.ts | 154 ----- src/resources/beta/assistants/index.ts | 28 - src/resources/beta/beta.ts | 13 +- src/resources/beta/index.ts | 13 +- src/resources/beta/threads/index.ts | 2 +- .../beta/threads/{messages => }/messages.ts | 71 +- src/resources/beta/threads/messages/files.ts | 105 --- src/resources/beta/threads/messages/index.ts | 30 - src/resources/beta/threads/runs/index.ts | 4 +- src/resources/beta/threads/runs/runs.ts | 130 ++-- src/resources/beta/threads/runs/steps.ts | 98 +-- src/resources/beta/threads/threads.ts | 608 ++++++++++++++++-- .../beta/vector-stores/file-batches.ts | 292 +++++++++ src/resources/beta/vector-stores/files.ts | 277 ++++++++ src/resources/beta/vector-stores/index.ts | 25 + .../beta/vector-stores/vector-stores.ts | 318 +++++++++ src/resources/fine-tuning/jobs/jobs.ts | 2 +- .../beta/{assistants => }/assistants.test.ts | 11 +- .../threads/{messages => }/messages.test.ts | 6 +- .../beta/threads/messages/files.test.ts | 65 -- .../beta/threads/runs/runs.test.ts | 34 +- .../beta/threads/threads.test.ts | 85 ++- .../beta/vector-stores/file-batches.test.ts | 98 +++ .../files.test.ts | 22 +- .../beta/vector-stores/vector-stores.test.ts | 97 +++ 32 files changed, 2420 insertions(+), 690 deletions(-) create mode 100644 src/lib/Util.ts rename src/resources/beta/{assistants => }/assistants.ts (74%) delete mode 100644 src/resources/beta/assistants/files.ts delete mode 100644 src/resources/beta/assistants/index.ts rename src/resources/beta/threads/{messages => }/messages.ts (89%) delete mode 100644 src/resources/beta/threads/messages/files.ts delete mode 100644 src/resources/beta/threads/messages/index.ts create mode 100644 src/resources/beta/vector-stores/file-batches.ts create mode 100644 src/resources/beta/vector-stores/files.ts create mode 100644 src/resources/beta/vector-stores/index.ts create mode 100644 src/resources/beta/vector-stores/vector-stores.ts rename tests/api-resources/beta/{assistants => }/assistants.test.ts (93%) rename tests/api-resources/beta/threads/{messages => }/messages.test.ts (93%) delete mode 100644 tests/api-resources/beta/threads/messages/files.test.ts create mode 100644 tests/api-resources/beta/vector-stores/file-batches.test.ts rename tests/api-resources/beta/{assistants => vector-stores}/files.test.ts (77%) create mode 100644 tests/api-resources/beta/vector-stores/vector-stores.test.ts diff --git a/.stats.yml b/.stats.yml index 47c2bce1c..2814bb777 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1 +1 @@ -configured_endpoints: 55 +configured_endpoints: 62 diff --git a/README.md b/README.md index 406434e6d..b75320e78 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ Documentation for each method, request param, and response field are available i ### Polling Helpers -When interacting with the API some actions such as starting a Run may take time to complete. The SDK includes +When interacting with the API some actions such as starting a Run and adding files to vector stores are asynchronous and take time to complete. The SDK includes helper functions which will poll the status until it reaches a terminal state and then return the resulting object. If an API method results in an action which could benefit from polling there will be a corresponding version of the method ending in 'AndPoll'. @@ -117,6 +117,20 @@ const run = await openai.beta.threads.runs.createAndPoll(thread.id, { More information on the lifecycle of a Run can be found in the [Run Lifecycle Documentation](https://platform.openai.com/docs/assistants/how-it-works/run-lifecycle) +### Bulk Upload Helpers + +When creating an interacting with vector stores, you can use the polling helpers to monitor the status of operations. +For convenience, we also provide a bulk upload helper to allow you to simultaneously upload several files at once. + +```ts +const fileList = [ + createReadStream('/home/data/example.pdf'), + ... +]; + +const batch = await openai.vectorStores.fileBatches.uploadAndPoll(vectorStore.id, fileList); +``` + ### Streaming Helpers The SDK also includes helpers to process streams and handle the incoming events. diff --git a/api.md b/api.md index 7557ce133..8161fb2c7 100644 --- a/api.md +++ b/api.md @@ -179,53 +179,88 @@ Methods: # Beta -## Chat +## VectorStores -### Completions +Types: + +- VectorStore +- VectorStoreDeleted Methods: -- client.beta.chat.completions.runFunctions(body, options?) -> ChatCompletionRunner | ChatCompletionStreamingRunner -- client.beta.chat.completions.runTools(body, options?) -> ChatCompletionRunner | ChatCompletionStreamingRunner -- client.beta.chat.completions.stream(body, options?) -> ChatCompletionStream +- client.beta.vectorStores.create({ ...params }) -> VectorStore +- client.beta.vectorStores.retrieve(vectorStoreId) -> VectorStore +- client.beta.vectorStores.update(vectorStoreId, { ...params }) -> VectorStore +- client.beta.vectorStores.list({ ...params }) -> VectorStoresPage +- client.beta.vectorStores.del(vectorStoreId) -> VectorStoreDeleted -## Assistants +### Files Types: -- Assistant -- AssistantDeleted -- AssistantStreamEvent -- AssistantTool -- CodeInterpreterTool -- FunctionTool -- MessageStreamEvent -- RetrievalTool -- RunStepStreamEvent -- RunStreamEvent -- ThreadStreamEvent +- VectorStoreFile +- VectorStoreFileDeleted Methods: -- client.beta.assistants.create({ ...params }) -> Assistant -- client.beta.assistants.retrieve(assistantId) -> Assistant -- client.beta.assistants.update(assistantId, { ...params }) -> Assistant -- client.beta.assistants.list({ ...params }) -> AssistantsPage -- client.beta.assistants.del(assistantId) -> AssistantDeleted +- client.beta.vectorStores.files.create(vectorStoreId, { ...params }) -> VectorStoreFile +- client.beta.vectorStores.files.retrieve(vectorStoreId, fileId) -> VectorStoreFile +- client.beta.vectorStores.files.list(vectorStoreId, { ...params }) -> VectorStoreFilesPage +- client.beta.vectorStores.files.del(vectorStoreId, fileId) -> VectorStoreFileDeleted +- client.beta.vectorStores.files.createAndPoll(vectorStoreId, body, options?) -> Promise<VectorStoreFile> +- client.beta.vectorStores.files.poll(vectorStoreId, fileId, options?) -> Promise<VectorStoreFile> +- client.beta.vectorStores.files.upload(vectorStoreId, file, options?) -> Promise<VectorStoreFile> +- client.beta.vectorStores.files.uploadAndPoll(vectorStoreId, file, options?) -> Promise<VectorStoreFile> -### Files +### FileBatches Types: -- AssistantFile -- FileDeleteResponse +- VectorStoreFileBatch Methods: -- client.beta.assistants.files.create(assistantId, { ...params }) -> AssistantFile -- client.beta.assistants.files.retrieve(assistantId, fileId) -> AssistantFile -- client.beta.assistants.files.list(assistantId, { ...params }) -> AssistantFilesPage -- client.beta.assistants.files.del(assistantId, fileId) -> FileDeleteResponse +- client.beta.vectorStores.fileBatches.create(vectorStoreId, { ...params }) -> VectorStoreFileBatch +- client.beta.vectorStores.fileBatches.retrieve(vectorStoreId, batchId) -> VectorStoreFileBatch +- client.beta.vectorStores.fileBatches.cancel(vectorStoreId, batchId) -> VectorStoreFileBatch +- client.beta.vectorStores.fileBatches.listFiles(vectorStoreId, batchId, { ...params }) -> VectorStoreFilesPage +- client.beta.vectorStores.fileBatches.createAndPoll(vectorStoreId, body, options?) -> Promise<VectorStoreFileBatch> +- client.beta.vectorStores.fileBatches.poll(vectorStoreId, batchId, options?) -> Promise<VectorStoreFileBatch> +- client.beta.vectorStores.fileBatches.uploadAndPoll(vectorStoreId, { files, fileIds = [] }, options?) -> Promise<VectorStoreFileBatch> + +## Chat + +### Completions + +Methods: + +- client.beta.chat.completions.runFunctions(body, options?) -> ChatCompletionRunner | ChatCompletionStreamingRunner +- client.beta.chat.completions.runTools(body, options?) -> ChatCompletionRunner | ChatCompletionStreamingRunner +- client.beta.chat.completions.stream(body, options?) -> ChatCompletionStream + +## Assistants + +Types: + +- Assistant +- AssistantDeleted +- AssistantStreamEvent +- AssistantTool +- CodeInterpreterTool +- FileSearchTool +- FunctionTool +- MessageStreamEvent +- RunStepStreamEvent +- RunStreamEvent +- ThreadStreamEvent + +Methods: + +- client.beta.assistants.create({ ...params }) -> Assistant +- client.beta.assistants.retrieve(assistantId) -> Assistant +- client.beta.assistants.update(assistantId, { ...params }) -> Assistant +- client.beta.assistants.list({ ...params }) -> AssistantsPage +- client.beta.assistants.del(assistantId) -> AssistantDeleted ## Threads @@ -280,11 +315,11 @@ Types: - CodeInterpreterOutputImage - CodeInterpreterToolCall - CodeInterpreterToolCallDelta +- FileSearchToolCall +- FileSearchToolCallDelta - FunctionToolCall - FunctionToolCallDelta - MessageCreationStepDetails -- RetrievalToolCall -- RetrievalToolCallDelta - RunStep - RunStepDelta - RunStepDeltaEvent @@ -303,44 +338,33 @@ Methods: Types: -- Annotation -- AnnotationDelta -- FileCitationAnnotation -- FileCitationDeltaAnnotation -- FilePathAnnotation -- FilePathDeltaAnnotation -- ImageFile -- ImageFileContentBlock -- ImageFileDelta -- ImageFileDeltaBlock -- Message -- MessageContent -- MessageContentDelta -- MessageDeleted -- MessageDelta -- MessageDeltaEvent -- Text -- TextContentBlock -- TextDelta -- TextDeltaBlock - -Methods: - -- client.beta.threads.messages.create(threadId, { ...params }) -> Message -- client.beta.threads.messages.retrieve(threadId, messageId) -> Message -- client.beta.threads.messages.update(threadId, messageId, { ...params }) -> Message -- client.beta.threads.messages.list(threadId, { ...params }) -> MessagesPage - -#### Files - -Types: - -- MessageFile +- Annotation +- AnnotationDelta +- FileCitationAnnotation +- FileCitationDeltaAnnotation +- FilePathAnnotation +- FilePathDeltaAnnotation +- ImageFile +- ImageFileContentBlock +- ImageFileDelta +- ImageFileDeltaBlock +- Message +- MessageContent +- MessageContentDelta +- MessageDeleted +- MessageDelta +- MessageDeltaEvent +- Text +- TextContentBlock +- TextDelta +- TextDeltaBlock Methods: -- client.beta.threads.messages.files.retrieve(threadId, messageId, fileId) -> MessageFile -- client.beta.threads.messages.files.list(threadId, messageId, { ...params }) -> MessageFilesPage +- client.beta.threads.messages.create(threadId, { ...params }) -> Message +- client.beta.threads.messages.retrieve(threadId, messageId) -> Message +- client.beta.threads.messages.update(threadId, messageId, { ...params }) -> Message +- client.beta.threads.messages.list(threadId, { ...params }) -> MessagesPage # Batches diff --git a/helpers.md b/helpers.md index 7a34c3023..dda1ab26b 100644 --- a/helpers.md +++ b/helpers.md @@ -1,4 +1,4 @@ -# Streaming Helpers +# Helpers OpenAI supports streaming responses when interacting with the [Chat](#chat-streaming) or [Assistant](#assistant-streaming-api) APIs. @@ -449,3 +449,24 @@ See an example of a Next.JS integration here [`examples/stream-to-client-next.ts #### Proxy Streaming to a Browser See an example of using express to stream to a browser here [`examples/stream-to-client-express.ts`](examples/stream-to-client-express.ts). + +# Polling Helpers + +When interacting with the API some actions such as starting a Run and adding files to vector stores are asynchronous and take time to complete. +The SDK includes helper functions which will poll the status until it reaches a terminal state and then return the resulting object. +If an API method results in an action which could benefit from polling there will be a corresponding version of the +method ending in `_AndPoll`. + +All methods also allow you to set the polling frequency, how often the API is checked for an update, via a function argument (`pollIntervalMs`). + +The polling methods are: + +```ts +client.beta.threads.createAndRunPoll(...) +client.beta.threads.runs.createAndPoll((...) +client.beta.threads.runs.submitToolOutputsAndPoll((...) +client.beta.vectorStores.files.uploadAndPoll((...) +client.beta.vectorStores.files.createAndPoll((...) +client.beta.vectorStores.fileBatches.createAndPoll((...) +client.beta.vectorStores.fileBatches.uploadAndPoll((...) +``` diff --git a/src/lib/AssistantStream.ts b/src/lib/AssistantStream.ts index ece0ec65c..a2974826c 100644 --- a/src/lib/AssistantStream.ts +++ b/src/lib/AssistantStream.ts @@ -7,7 +7,7 @@ import { ImageFile, TextDelta, Messages, -} from 'openai/resources/beta/threads/messages/messages'; +} from 'openai/resources/beta/threads/messages'; import * as Core from 'openai/core'; import { RequestOptions } from 'openai/core'; import { @@ -30,7 +30,7 @@ import { MessageStreamEvent, RunStepStreamEvent, RunStreamEvent, -} from 'openai/resources/beta/assistants/assistants'; +} from 'openai/resources/beta/assistants'; import { RunStep, RunStepDelta, ToolCall, ToolCallDelta } from 'openai/resources/beta/threads/runs/steps'; import { ThreadCreateAndRunParamsBase, Threads } from 'openai/resources/beta/threads/threads'; import MessageDelta = Messages.MessageDelta; diff --git a/src/lib/Util.ts b/src/lib/Util.ts new file mode 100644 index 000000000..ae09b8a91 --- /dev/null +++ b/src/lib/Util.ts @@ -0,0 +1,23 @@ +/** + * Like `Promise.allSettled()` but throws an error if any promises are rejected. + */ +export const allSettledWithThrow = async (promises: Promise[]): Promise => { + const results = await Promise.allSettled(promises); + const rejected = results.filter((result): result is PromiseRejectedResult => result.status === 'rejected'); + if (rejected.length) { + for (const result of rejected) { + console.error(result.reason); + } + + throw new Error(`${rejected.length} promise(s) failed - see the above errors`); + } + + // Note: TS was complaining about using `.filter().map()` here for some reason + const values: R[] = []; + for (const result of results) { + if (result.status === 'fulfilled') { + values.push(result.value); + } + } + return values; +}; diff --git a/src/resources/beta/assistants/assistants.ts b/src/resources/beta/assistants.ts similarity index 74% rename from src/resources/beta/assistants/assistants.ts rename to src/resources/beta/assistants.ts index fc9afe2ae..c0827848e 100644 --- a/src/resources/beta/assistants/assistants.ts +++ b/src/resources/beta/assistants.ts @@ -3,18 +3,15 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; import { isRequestOptions } from 'openai/core'; -import * as AssistantsAPI from 'openai/resources/beta/assistants/assistants'; +import * as AssistantsAPI from 'openai/resources/beta/assistants'; import * as Shared from 'openai/resources/shared'; -import * as FilesAPI from 'openai/resources/beta/assistants/files'; +import * as MessagesAPI from 'openai/resources/beta/threads/messages'; import * as ThreadsAPI from 'openai/resources/beta/threads/threads'; -import * as MessagesAPI from 'openai/resources/beta/threads/messages/messages'; import * as RunsAPI from 'openai/resources/beta/threads/runs/runs'; import * as StepsAPI from 'openai/resources/beta/threads/runs/steps'; import { CursorPage, type CursorPageParams } from 'openai/pagination'; export class Assistants extends APIResource { - files: FilesAPI.Files = new FilesAPI.Files(this._client); - /** * Create an assistant with a model and instructions. */ @@ -22,7 +19,7 @@ export class Assistants extends APIResource { return this._client.post('/assistants', { body, ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } @@ -32,7 +29,7 @@ export class Assistants extends APIResource { retrieve(assistantId: string, options?: Core.RequestOptions): Core.APIPromise { return this._client.get(`/assistants/${assistantId}`, { ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } @@ -47,7 +44,7 @@ export class Assistants extends APIResource { return this._client.post(`/assistants/${assistantId}`, { body, ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } @@ -69,7 +66,7 @@ export class Assistants extends APIResource { return this._client.getAPIList('/assistants', AssistantsPage, { query, ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } @@ -79,7 +76,7 @@ export class Assistants extends APIResource { del(assistantId: string, options?: Core.RequestOptions): Core.APIPromise { return this._client.delete(`/assistants/${assistantId}`, { ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } } @@ -105,13 +102,6 @@ export interface Assistant { */ description: string | null; - /** - * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs - * attached to this assistant. There can be a maximum of 20 files attached to the - * assistant. Files are ordered by their creation date in ascending order. - */ - file_ids: Array; - /** * The system instructions that the assistant uses. The maximum length is 256,000 * characters. @@ -147,9 +137,53 @@ export interface Assistant { /** * A list of tool enabled on the assistant. There can be a maximum of 128 tools per - * assistant. Tools can be of types `code_interpreter`, `retrieval`, or `function`. + * assistant. Tools can be of types `code_interpreter`, `file_search`, or + * `function`. */ tools: Array; + + /** + * A set of resources that are used by the assistant's tools. The resources are + * specific to the type of tool. For example, the `code_interpreter` tool requires + * a list of file IDs, while the `file_search` tool requires a list of vector store + * IDs. + */ + tool_resources?: Assistant.ToolResources | null; +} + +export namespace Assistant { + /** + * A set of resources that are used by the assistant's tools. The resources are + * specific to the type of tool. For example, the `code_interpreter` tool requires + * a list of file IDs, while the `file_search` tool requires a list of vector store + * IDs. + */ + export interface ToolResources { + code_interpreter?: ToolResources.CodeInterpreter; + + file_search?: ToolResources.FileSearch; + } + + export namespace ToolResources { + export interface CodeInterpreter { + /** + * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs made + * available to the `code_interpreter`` tool. There can be a maximum of 20 files + * associated with the tool. + */ + file_ids?: Array; + } + + export interface FileSearch { + /** + * The ID of the + * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) + * attached to this assistant. There can be a maximum of 1 vector store attached to + * the assistant. + */ + vector_store_ids?: Array; + } + } } export interface AssistantDeleted { @@ -535,7 +569,7 @@ export namespace AssistantStreamEvent { } } -export type AssistantTool = CodeInterpreterTool | RetrievalTool | FunctionTool; +export type AssistantTool = CodeInterpreterTool | FileSearchTool | FunctionTool; export interface CodeInterpreterTool { /** @@ -544,6 +578,13 @@ export interface CodeInterpreterTool { type: 'code_interpreter'; } +export interface FileSearchTool { + /** + * The type of tool being defined: `file_search` + */ + type: 'file_search'; +} + export interface FunctionTool { function: Shared.FunctionDefinition; @@ -642,13 +683,6 @@ export namespace MessageStreamEvent { } } -export interface RetrievalTool { - /** - * The type of tool being defined: `retrieval` - */ - type: 'retrieval'; -} - /** * Occurs when a * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) is @@ -956,13 +990,6 @@ export interface AssistantCreateParams { */ description?: string | null; - /** - * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs - * attached to this assistant. There can be a maximum of 20 files attached to the - * assistant. Files are ordered by their creation date in ascending order. - */ - file_ids?: Array; - /** * The system instructions that the assistant uses. The maximum length is 256,000 * characters. @@ -982,27 +1009,123 @@ export interface AssistantCreateParams { */ name?: string | null; + /** + * Specifies the format that the model must output. Compatible with + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and + * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * + * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * message the model generates is valid JSON. + * + * **Important:** when using JSON mode, you **must** also instruct the model to + * produce JSON yourself via a system or user message. Without this, the model may + * generate an unending stream of whitespace until the generation reaches the token + * limit, resulting in a long-running and seemingly "stuck" request. Also note that + * the message content may be partially cut off if `finish_reason="length"`, which + * indicates the generation exceeded `max_tokens` or the conversation exceeded the + * max context length. + */ + response_format?: ThreadsAPI.AssistantResponseFormatOption | null; + + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. + */ + temperature?: number | null; + + /** + * A set of resources that are used by the assistant's tools. The resources are + * specific to the type of tool. For example, the `code_interpreter` tool requires + * a list of file IDs, while the `file_search` tool requires a list of vector store + * IDs. + */ + tool_resources?: AssistantCreateParams.ToolResources | null; + /** * A list of tool enabled on the assistant. There can be a maximum of 128 tools per - * assistant. Tools can be of types `code_interpreter`, `retrieval`, or `function`. + * assistant. Tools can be of types `code_interpreter`, `file_search`, or + * `function`. */ tools?: Array; + + /** + * An alternative to sampling with temperature, called nucleus sampling, where the + * model considers the results of the tokens with top_p probability mass. So 0.1 + * means only the tokens comprising the top 10% probability mass are considered. + * + * We generally recommend altering this or temperature but not both. + */ + top_p?: number | null; } -export interface AssistantUpdateParams { +export namespace AssistantCreateParams { /** - * The description of the assistant. The maximum length is 512 characters. + * A set of resources that are used by the assistant's tools. The resources are + * specific to the type of tool. For example, the `code_interpreter` tool requires + * a list of file IDs, while the `file_search` tool requires a list of vector store + * IDs. */ - description?: string | null; + export interface ToolResources { + code_interpreter?: ToolResources.CodeInterpreter; + + file_search?: ToolResources.FileSearch; + } + + export namespace ToolResources { + export interface CodeInterpreter { + /** + * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs made + * available to the `code_interpreter` tool. There can be a maximum of 20 files + * associated with the tool. + */ + file_ids?: Array; + } + + export interface FileSearch { + /** + * The + * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) + * attached to this assistant. There can be a maximum of 1 vector store attached to + * the assistant. + */ + vector_store_ids?: Array; + + /** + * A helper to create a + * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) + * with file_ids and attach it to this assistant. There can be a maximum of 1 + * vector store attached to the assistant. + */ + vector_stores?: Array; + } + export namespace FileSearch { + export interface VectorStore { + /** + * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs to + * add to the vector store. There can be a maximum of 10000 files in a vector + * store. + */ + file_ids?: Array; + + /** + * Set of 16 key-value pairs that can be attached to a vector store. This can be + * useful for storing additional information about the vector store in a structured + * format. Keys can be a maximum of 64 characters long and values can be a maxium + * of 512 characters long. + */ + metadata?: unknown; + } + } + } +} + +export interface AssistantUpdateParams { /** - * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs - * attached to this assistant. There can be a maximum of 20 files attached to the - * assistant. Files are ordered by their creation date in ascending order. If a - * file was previously attached to the list but does not show up in the list, it - * will be deleted from the assistant. + * The description of the assistant. The maximum length is 512 characters. */ - file_ids?: Array; + description?: string | null; /** * The system instructions that the assistant uses. The maximum length is 256,000 @@ -1032,11 +1155,90 @@ export interface AssistantUpdateParams { */ name?: string | null; + /** + * Specifies the format that the model must output. Compatible with + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and + * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * + * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * message the model generates is valid JSON. + * + * **Important:** when using JSON mode, you **must** also instruct the model to + * produce JSON yourself via a system or user message. Without this, the model may + * generate an unending stream of whitespace until the generation reaches the token + * limit, resulting in a long-running and seemingly "stuck" request. Also note that + * the message content may be partially cut off if `finish_reason="length"`, which + * indicates the generation exceeded `max_tokens` or the conversation exceeded the + * max context length. + */ + response_format?: ThreadsAPI.AssistantResponseFormatOption | null; + + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. + */ + temperature?: number | null; + + /** + * A set of resources that are used by the assistant's tools. The resources are + * specific to the type of tool. For example, the `code_interpreter` tool requires + * a list of file IDs, while the `file_search` tool requires a list of vector store + * IDs. + */ + tool_resources?: AssistantUpdateParams.ToolResources | null; + /** * A list of tool enabled on the assistant. There can be a maximum of 128 tools per - * assistant. Tools can be of types `code_interpreter`, `retrieval`, or `function`. + * assistant. Tools can be of types `code_interpreter`, `file_search`, or + * `function`. */ tools?: Array; + + /** + * An alternative to sampling with temperature, called nucleus sampling, where the + * model considers the results of the tokens with top_p probability mass. So 0.1 + * means only the tokens comprising the top 10% probability mass are considered. + * + * We generally recommend altering this or temperature but not both. + */ + top_p?: number | null; +} + +export namespace AssistantUpdateParams { + /** + * A set of resources that are used by the assistant's tools. The resources are + * specific to the type of tool. For example, the `code_interpreter` tool requires + * a list of file IDs, while the `file_search` tool requires a list of vector store + * IDs. + */ + export interface ToolResources { + code_interpreter?: ToolResources.CodeInterpreter; + + file_search?: ToolResources.FileSearch; + } + + export namespace ToolResources { + export interface CodeInterpreter { + /** + * Overrides the list of + * [file](https://platform.openai.com/docs/api-reference/files) IDs made available + * to the `code_interpreter` tool. There can be a maximum of 20 files associated + * with the tool. + */ + file_ids?: Array; + } + + export interface FileSearch { + /** + * Overrides the + * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) + * attached to this assistant. There can be a maximum of 1 vector store attached to + * the assistant. + */ + vector_store_ids?: Array; + } + } } export interface AssistantListParams extends CursorPageParams { @@ -1061,9 +1263,9 @@ export namespace Assistants { export import AssistantStreamEvent = AssistantsAPI.AssistantStreamEvent; export import AssistantTool = AssistantsAPI.AssistantTool; export import CodeInterpreterTool = AssistantsAPI.CodeInterpreterTool; + export import FileSearchTool = AssistantsAPI.FileSearchTool; export import FunctionTool = AssistantsAPI.FunctionTool; export import MessageStreamEvent = AssistantsAPI.MessageStreamEvent; - export import RetrievalTool = AssistantsAPI.RetrievalTool; export import RunStepStreamEvent = AssistantsAPI.RunStepStreamEvent; export import RunStreamEvent = AssistantsAPI.RunStreamEvent; export import ThreadStreamEvent = AssistantsAPI.ThreadStreamEvent; @@ -1071,10 +1273,4 @@ export namespace Assistants { export import AssistantCreateParams = AssistantsAPI.AssistantCreateParams; export import AssistantUpdateParams = AssistantsAPI.AssistantUpdateParams; export import AssistantListParams = AssistantsAPI.AssistantListParams; - export import Files = FilesAPI.Files; - export import AssistantFile = FilesAPI.AssistantFile; - export import FileDeleteResponse = FilesAPI.FileDeleteResponse; - export import AssistantFilesPage = FilesAPI.AssistantFilesPage; - export import FileCreateParams = FilesAPI.FileCreateParams; - export import FileListParams = FilesAPI.FileListParams; } diff --git a/src/resources/beta/assistants/files.ts b/src/resources/beta/assistants/files.ts deleted file mode 100644 index 51fd0c0d8..000000000 --- a/src/resources/beta/assistants/files.ts +++ /dev/null @@ -1,154 +0,0 @@ -// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. - -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import { isRequestOptions } from 'openai/core'; -import * as FilesAPI from 'openai/resources/beta/assistants/files'; -import { CursorPage, type CursorPageParams } from 'openai/pagination'; - -export class Files extends APIResource { - /** - * Create an assistant file by attaching a - * [File](https://platform.openai.com/docs/api-reference/files) to an - * [assistant](https://platform.openai.com/docs/api-reference/assistants). - */ - create( - assistantId: string, - body: FileCreateParams, - options?: Core.RequestOptions, - ): Core.APIPromise { - return this._client.post(`/assistants/${assistantId}/files`, { - body, - ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, - }); - } - - /** - * Retrieves an AssistantFile. - */ - retrieve( - assistantId: string, - fileId: string, - options?: Core.RequestOptions, - ): Core.APIPromise { - return this._client.get(`/assistants/${assistantId}/files/${fileId}`, { - ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, - }); - } - - /** - * Returns a list of assistant files. - */ - list( - assistantId: string, - query?: FileListParams, - options?: Core.RequestOptions, - ): Core.PagePromise; - list( - assistantId: string, - options?: Core.RequestOptions, - ): Core.PagePromise; - list( - assistantId: string, - query: FileListParams | Core.RequestOptions = {}, - options?: Core.RequestOptions, - ): Core.PagePromise { - if (isRequestOptions(query)) { - return this.list(assistantId, {}, query); - } - return this._client.getAPIList(`/assistants/${assistantId}/files`, AssistantFilesPage, { - query, - ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, - }); - } - - /** - * Delete an assistant file. - */ - del( - assistantId: string, - fileId: string, - options?: Core.RequestOptions, - ): Core.APIPromise { - return this._client.delete(`/assistants/${assistantId}/files/${fileId}`, { - ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, - }); - } -} - -export class AssistantFilesPage extends CursorPage {} - -/** - * A list of [Files](https://platform.openai.com/docs/api-reference/files) attached - * to an `assistant`. - */ -export interface AssistantFile { - /** - * The identifier, which can be referenced in API endpoints. - */ - id: string; - - /** - * The assistant ID that the file is attached to. - */ - assistant_id: string; - - /** - * The Unix timestamp (in seconds) for when the assistant file was created. - */ - created_at: number; - - /** - * The object type, which is always `assistant.file`. - */ - object: 'assistant.file'; -} - -/** - * Deletes the association between the assistant and the file, but does not delete - * the [File](https://platform.openai.com/docs/api-reference/files) object itself. - */ -export interface FileDeleteResponse { - id: string; - - deleted: boolean; - - object: 'assistant.file.deleted'; -} - -export interface FileCreateParams { - /** - * A [File](https://platform.openai.com/docs/api-reference/files) ID (with - * `purpose="assistants"`) that the assistant should use. Useful for tools like - * `retrieval` and `code_interpreter` that can access files. - */ - file_id: string; -} - -export interface FileListParams extends CursorPageParams { - /** - * A cursor for use in pagination. `before` is an object ID that defines your place - * in the list. For instance, if you make a list request and receive 100 objects, - * ending with obj_foo, your subsequent call can include before=obj_foo in order to - * fetch the previous page of the list. - */ - before?: string; - - /** - * Sort order by the `created_at` timestamp of the objects. `asc` for ascending - * order and `desc` for descending order. - */ - order?: 'asc' | 'desc'; -} - -export namespace Files { - export import AssistantFile = FilesAPI.AssistantFile; - export import FileDeleteResponse = FilesAPI.FileDeleteResponse; - export import AssistantFilesPage = FilesAPI.AssistantFilesPage; - export import FileCreateParams = FilesAPI.FileCreateParams; - export import FileListParams = FilesAPI.FileListParams; -} diff --git a/src/resources/beta/assistants/index.ts b/src/resources/beta/assistants/index.ts deleted file mode 100644 index c191d338b..000000000 --- a/src/resources/beta/assistants/index.ts +++ /dev/null @@ -1,28 +0,0 @@ -// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. - -export { - Assistant, - AssistantDeleted, - AssistantStreamEvent, - AssistantTool, - CodeInterpreterTool, - FunctionTool, - MessageStreamEvent, - RetrievalTool, - RunStepStreamEvent, - RunStreamEvent, - ThreadStreamEvent, - AssistantCreateParams, - AssistantUpdateParams, - AssistantListParams, - AssistantsPage, - Assistants, -} from './assistants'; -export { - AssistantFile, - FileDeleteResponse, - FileCreateParams, - FileListParams, - AssistantFilesPage, - Files, -} from './files'; diff --git a/src/resources/beta/beta.ts b/src/resources/beta/beta.ts index 8f8148f9b..ff79d5242 100644 --- a/src/resources/beta/beta.ts +++ b/src/resources/beta/beta.ts @@ -1,17 +1,26 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'openai/resource'; -import * as AssistantsAPI from 'openai/resources/beta/assistants/assistants'; +import * as AssistantsAPI from 'openai/resources/beta/assistants'; import * as ChatAPI from 'openai/resources/beta/chat/chat'; import * as ThreadsAPI from 'openai/resources/beta/threads/threads'; +import * as VectorStoresAPI from 'openai/resources/beta/vector-stores/vector-stores'; export class Beta extends APIResource { + vectorStores: VectorStoresAPI.VectorStores = new VectorStoresAPI.VectorStores(this._client); chat: ChatAPI.Chat = new ChatAPI.Chat(this._client); assistants: AssistantsAPI.Assistants = new AssistantsAPI.Assistants(this._client); threads: ThreadsAPI.Threads = new ThreadsAPI.Threads(this._client); } export namespace Beta { + export import VectorStores = VectorStoresAPI.VectorStores; + export import VectorStore = VectorStoresAPI.VectorStore; + export import VectorStoreDeleted = VectorStoresAPI.VectorStoreDeleted; + export import VectorStoresPage = VectorStoresAPI.VectorStoresPage; + export import VectorStoreCreateParams = VectorStoresAPI.VectorStoreCreateParams; + export import VectorStoreUpdateParams = VectorStoresAPI.VectorStoreUpdateParams; + export import VectorStoreListParams = VectorStoresAPI.VectorStoreListParams; export import Chat = ChatAPI.Chat; export import Assistants = AssistantsAPI.Assistants; export import Assistant = AssistantsAPI.Assistant; @@ -19,9 +28,9 @@ export namespace Beta { export import AssistantStreamEvent = AssistantsAPI.AssistantStreamEvent; export import AssistantTool = AssistantsAPI.AssistantTool; export import CodeInterpreterTool = AssistantsAPI.CodeInterpreterTool; + export import FileSearchTool = AssistantsAPI.FileSearchTool; export import FunctionTool = AssistantsAPI.FunctionTool; export import MessageStreamEvent = AssistantsAPI.MessageStreamEvent; - export import RetrievalTool = AssistantsAPI.RetrievalTool; export import RunStepStreamEvent = AssistantsAPI.RunStepStreamEvent; export import RunStreamEvent = AssistantsAPI.RunStreamEvent; export import ThreadStreamEvent = AssistantsAPI.ThreadStreamEvent; diff --git a/src/resources/beta/index.ts b/src/resources/beta/index.ts index 54407edb3..029cd084c 100644 --- a/src/resources/beta/index.ts +++ b/src/resources/beta/index.ts @@ -6,9 +6,9 @@ export { AssistantStreamEvent, AssistantTool, CodeInterpreterTool, + FileSearchTool, FunctionTool, MessageStreamEvent, - RetrievalTool, RunStepStreamEvent, RunStreamEvent, ThreadStreamEvent, @@ -17,7 +17,7 @@ export { AssistantListParams, AssistantsPage, Assistants, -} from './assistants/index'; +} from './assistants'; export { AssistantResponseFormat, AssistantResponseFormatOption, @@ -37,3 +37,12 @@ export { } from './threads/index'; export { Beta } from './beta'; export { Chat } from './chat/index'; +export { + VectorStore, + VectorStoreDeleted, + VectorStoreCreateParams, + VectorStoreUpdateParams, + VectorStoreListParams, + VectorStoresPage, + VectorStores, +} from './vector-stores/index'; diff --git a/src/resources/beta/threads/index.ts b/src/resources/beta/threads/index.ts index 5f41766a9..d0ebb1798 100644 --- a/src/resources/beta/threads/index.ts +++ b/src/resources/beta/threads/index.ts @@ -26,7 +26,7 @@ export { MessageListParams, MessagesPage, Messages, -} from './messages/index'; +} from './messages'; export { AssistantResponseFormat, AssistantResponseFormatOption, diff --git a/src/resources/beta/threads/messages/messages.ts b/src/resources/beta/threads/messages.ts similarity index 89% rename from src/resources/beta/threads/messages/messages.ts rename to src/resources/beta/threads/messages.ts index 28026f3ff..f17b8508d 100644 --- a/src/resources/beta/threads/messages/messages.ts +++ b/src/resources/beta/threads/messages.ts @@ -3,13 +3,10 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; import { isRequestOptions } from 'openai/core'; -import * as MessagesAPI from 'openai/resources/beta/threads/messages/messages'; -import * as FilesAPI from 'openai/resources/beta/threads/messages/files'; +import * as MessagesAPI from 'openai/resources/beta/threads/messages'; import { CursorPage, type CursorPageParams } from 'openai/pagination'; export class Messages extends APIResource { - files: FilesAPI.Files = new FilesAPI.Files(this._client); - /** * Create a message. */ @@ -21,7 +18,7 @@ export class Messages extends APIResource { return this._client.post(`/threads/${threadId}/messages`, { body, ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } @@ -31,7 +28,7 @@ export class Messages extends APIResource { retrieve(threadId: string, messageId: string, options?: Core.RequestOptions): Core.APIPromise { return this._client.get(`/threads/${threadId}/messages/${messageId}`, { ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } @@ -47,7 +44,7 @@ export class Messages extends APIResource { return this._client.post(`/threads/${threadId}/messages/${messageId}`, { body, ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } @@ -71,7 +68,7 @@ export class Messages extends APIResource { return this._client.getAPIList(`/threads/${threadId}/messages`, MessagesPage, { query, ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } } @@ -81,21 +78,21 @@ export class MessagesPage extends CursorPage {} /** * A citation within the message that points to a specific quote from a specific * File associated with the assistant or the message. Generated when the assistant - * uses the "retrieval" tool to search files. + * uses the "file_search" tool to search files. */ export type Annotation = FileCitationAnnotation | FilePathAnnotation; /** * A citation within the message that points to a specific quote from a specific * File associated with the assistant or the message. Generated when the assistant - * uses the "retrieval" tool to search files. + * uses the "file_search" tool to search files. */ export type AnnotationDelta = FileCitationDeltaAnnotation | FilePathDeltaAnnotation; /** * A citation within the message that points to a specific quote from a specific * File associated with the assistant or the message. Generated when the assistant - * uses the "retrieval" tool to search files. + * uses the "file_search" tool to search files. */ export interface FileCitationAnnotation { end_index: number; @@ -132,7 +129,7 @@ export namespace FileCitationAnnotation { /** * A citation within the message that points to a specific quote from a specific * File associated with the assistant or the message. Generated when the assistant - * uses the "retrieval" tool to search files. + * uses the "file_search" tool to search files. */ export interface FileCitationDeltaAnnotation { /** @@ -302,6 +299,11 @@ export interface Message { */ assistant_id: string | null; + /** + * A list of files attached to the message, and the tools they were added to. + */ + attachments: Array | null; + /** * The Unix timestamp (in seconds) for when the message was completed. */ @@ -317,13 +319,6 @@ export interface Message { */ created_at: number; - /** - * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs that - * the assistant should use. Useful for tools like retrieval and code_interpreter - * that can access files. A maximum of 10 files can be attached to a message. - */ - file_ids: Array; - /** * The Unix timestamp (in seconds) for when the message was marked as incomplete. */ @@ -373,6 +368,15 @@ export interface Message { } export namespace Message { + export interface Attachment { + add_to?: Array<'file_search' | 'code_interpreter'>; + + /** + * The ID of the file to attach to the message. + */ + file_id?: string; + } + /** * On an incomplete message, details about why the message is incomplete. */ @@ -413,13 +417,6 @@ export interface MessageDelta { */ content?: Array; - /** - * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs that - * the assistant should use. Useful for tools like retrieval and code_interpreter - * that can access files. A maximum of 10 files can be attached to a message. - */ - file_ids?: Array; - /** * The entity that produced the message. One of `user` or `assistant`. */ @@ -511,12 +508,9 @@ export interface MessageCreateParams { role: 'user' | 'assistant'; /** - * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that - * the message should use. There can be a maximum of 10 files attached to a - * message. Useful for tools like `retrieval` and `code_interpreter` that can - * access and use files. + * A list of files attached to the message, and the tools they should be added to. */ - file_ids?: Array; + attachments?: Array | null; /** * Set of 16 key-value pairs that can be attached to an object. This can be useful @@ -527,6 +521,17 @@ export interface MessageCreateParams { metadata?: unknown | null; } +export namespace MessageCreateParams { + export interface Attachment { + add_to?: Array<'file_search' | 'code_interpreter'>; + + /** + * The ID of the file to attach to the message. + */ + file_id?: string; + } +} + export interface MessageUpdateParams { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful @@ -583,8 +588,4 @@ export namespace Messages { export import MessageCreateParams = MessagesAPI.MessageCreateParams; export import MessageUpdateParams = MessagesAPI.MessageUpdateParams; export import MessageListParams = MessagesAPI.MessageListParams; - export import Files = FilesAPI.Files; - export import MessageFile = FilesAPI.MessageFile; - export import MessageFilesPage = FilesAPI.MessageFilesPage; - export import FileListParams = FilesAPI.FileListParams; } diff --git a/src/resources/beta/threads/messages/files.ts b/src/resources/beta/threads/messages/files.ts deleted file mode 100644 index 994b09d5f..000000000 --- a/src/resources/beta/threads/messages/files.ts +++ /dev/null @@ -1,105 +0,0 @@ -// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. - -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import { isRequestOptions } from 'openai/core'; -import * as FilesAPI from 'openai/resources/beta/threads/messages/files'; -import { CursorPage, type CursorPageParams } from 'openai/pagination'; - -export class Files extends APIResource { - /** - * Retrieves a message file. - */ - retrieve( - threadId: string, - messageId: string, - fileId: string, - options?: Core.RequestOptions, - ): Core.APIPromise { - return this._client.get(`/threads/${threadId}/messages/${messageId}/files/${fileId}`, { - ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, - }); - } - - /** - * Returns a list of message files. - */ - list( - threadId: string, - messageId: string, - query?: FileListParams, - options?: Core.RequestOptions, - ): Core.PagePromise; - list( - threadId: string, - messageId: string, - options?: Core.RequestOptions, - ): Core.PagePromise; - list( - threadId: string, - messageId: string, - query: FileListParams | Core.RequestOptions = {}, - options?: Core.RequestOptions, - ): Core.PagePromise { - if (isRequestOptions(query)) { - return this.list(threadId, messageId, {}, query); - } - return this._client.getAPIList(`/threads/${threadId}/messages/${messageId}/files`, MessageFilesPage, { - query, - ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, - }); - } -} - -export class MessageFilesPage extends CursorPage {} - -/** - * A list of files attached to a `message`. - */ -export interface MessageFile { - /** - * The identifier, which can be referenced in API endpoints. - */ - id: string; - - /** - * The Unix timestamp (in seconds) for when the message file was created. - */ - created_at: number; - - /** - * The ID of the [message](https://platform.openai.com/docs/api-reference/messages) - * that the [File](https://platform.openai.com/docs/api-reference/files) is - * attached to. - */ - message_id: string; - - /** - * The object type, which is always `thread.message.file`. - */ - object: 'thread.message.file'; -} - -export interface FileListParams extends CursorPageParams { - /** - * A cursor for use in pagination. `before` is an object ID that defines your place - * in the list. For instance, if you make a list request and receive 100 objects, - * ending with obj_foo, your subsequent call can include before=obj_foo in order to - * fetch the previous page of the list. - */ - before?: string; - - /** - * Sort order by the `created_at` timestamp of the objects. `asc` for ascending - * order and `desc` for descending order. - */ - order?: 'asc' | 'desc'; -} - -export namespace Files { - export import MessageFile = FilesAPI.MessageFile; - export import MessageFilesPage = FilesAPI.MessageFilesPage; - export import FileListParams = FilesAPI.FileListParams; -} diff --git a/src/resources/beta/threads/messages/index.ts b/src/resources/beta/threads/messages/index.ts deleted file mode 100644 index ef446d012..000000000 --- a/src/resources/beta/threads/messages/index.ts +++ /dev/null @@ -1,30 +0,0 @@ -// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. - -export { - Annotation, - AnnotationDelta, - FileCitationAnnotation, - FileCitationDeltaAnnotation, - FilePathAnnotation, - FilePathDeltaAnnotation, - ImageFile, - ImageFileContentBlock, - ImageFileDelta, - ImageFileDeltaBlock, - Message, - MessageContent, - MessageContentDelta, - MessageDeleted, - MessageDelta, - MessageDeltaEvent, - Text, - TextContentBlock, - TextDelta, - TextDeltaBlock, - MessageCreateParams, - MessageUpdateParams, - MessageListParams, - MessagesPage, - Messages, -} from './messages'; -export { MessageFile, FileListParams, MessageFilesPage, Files } from './files'; diff --git a/src/resources/beta/threads/runs/index.ts b/src/resources/beta/threads/runs/index.ts index c9b2d1ef5..d216195cb 100644 --- a/src/resources/beta/threads/runs/index.ts +++ b/src/resources/beta/threads/runs/index.ts @@ -5,11 +5,11 @@ export { CodeInterpreterOutputImage, CodeInterpreterToolCall, CodeInterpreterToolCallDelta, + FileSearchToolCall, + FileSearchToolCallDelta, FunctionToolCall, FunctionToolCallDelta, MessageCreationStepDetails, - RetrievalToolCall, - RetrievalToolCallDelta, RunStep, RunStepDelta, RunStepDeltaEvent, diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 4cfa6c36e..9e42f8a20 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -8,7 +8,7 @@ import { AssistantStream, RunCreateParamsBaseStream } from 'openai/lib/Assistant import { sleep } from 'openai/core'; import { RunSubmitToolOutputsParamsStream } from 'openai/lib/AssistantStream'; import * as RunsAPI from 'openai/resources/beta/threads/runs/runs'; -import * as AssistantsAPI from 'openai/resources/beta/assistants/assistants'; +import * as AssistantsAPI from 'openai/resources/beta/assistants'; import * as ThreadsAPI from 'openai/resources/beta/threads/threads'; import * as StepsAPI from 'openai/resources/beta/threads/runs/steps'; import { CursorPage, type CursorPageParams } from 'openai/pagination'; @@ -39,7 +39,7 @@ export class Runs extends APIResource { return this._client.post(`/threads/${threadId}/runs`, { body, ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, stream: body.stream ?? false, }) as APIPromise | APIPromise>; } @@ -50,7 +50,7 @@ export class Runs extends APIResource { retrieve(threadId: string, runId: string, options?: Core.RequestOptions): Core.APIPromise { return this._client.get(`/threads/${threadId}/runs/${runId}`, { ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } @@ -66,7 +66,7 @@ export class Runs extends APIResource { return this._client.post(`/threads/${threadId}/runs/${runId}`, { body, ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } @@ -90,7 +90,7 @@ export class Runs extends APIResource { return this._client.getAPIList(`/threads/${threadId}/runs`, RunsPage, { query, ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } @@ -100,7 +100,7 @@ export class Runs extends APIResource { cancel(threadId: string, runId: string, options?: Core.RequestOptions): Core.APIPromise { return this._client.post(`/threads/${threadId}/runs/${runId}/cancel`, { ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } @@ -224,7 +224,7 @@ export class Runs extends APIResource { return this._client.post(`/threads/${threadId}/runs/${runId}/submit_tool_outputs`, { body, ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, stream: body.stream ?? false, }) as APIPromise | APIPromise>; } @@ -350,13 +350,6 @@ export interface Run { */ failed_at: number | null; - /** - * The list of [File](https://platform.openai.com/docs/api-reference/files) IDs the - * [assistant](https://platform.openai.com/docs/api-reference/assistants) used for - * this run. - */ - file_ids: Array; - /** * Details on why the run is incomplete. Will be `null` if the run is not * incomplete. @@ -478,6 +471,11 @@ export interface Run { * The sampling temperature used for this run. If not set, defaults to 1. */ temperature?: number | null; + + /** + * The nucleus sampling value used for this run. If not set, defaults to 1. + */ + top_p?: number | null; } export namespace Run { @@ -720,6 +718,13 @@ export interface RunCreateParamsBase { */ tools?: Array | null; + /** + * An alternative to sampling with temperature, called nucleus sampling, where the + * model considers the results of the tokens with top_p probability mass. So 0.1 + * means only the tokens comprising the top 10% probability mass are considered. + */ + top_p?: number | null; + truncation_strategy?: RunCreateParams.TruncationStrategy | null; } @@ -741,12 +746,9 @@ export namespace RunCreateParams { role: 'user' | 'assistant'; /** - * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that - * the message should use. There can be a maximum of 10 files attached to a - * message. Useful for tools like `retrieval` and `code_interpreter` that can - * access and use files. + * A list of files attached to the message, and the tools they should be added to. */ - file_ids?: Array; + attachments?: Array | null; /** * Set of 16 key-value pairs that can be attached to an object. This can be useful @@ -757,6 +759,17 @@ export namespace RunCreateParams { metadata?: unknown | null; } + export namespace AdditionalMessage { + export interface Attachment { + add_to?: Array<'file_search' | 'code_interpreter'>; + + /** + * The ID of the file to attach to the message. + */ + file_id?: string; + } + } + export interface TruncationStrategy { /** * The truncation strategy to use for the thread. The default is `auto`. If set to @@ -943,6 +956,13 @@ export interface RunCreateAndPollParams { */ tools?: Array | null; + /** + * An alternative to sampling with temperature, called nucleus sampling, where the + * model considers the results of the tokens with top_p probability mass. So 0.1 + * means only the tokens comprising the top 10% probability mass are considered. + */ + top_p?: number | null; + truncation_strategy?: RunCreateAndPollParams.TruncationStrategy | null; } @@ -964,12 +984,9 @@ export namespace RunCreateAndPollParams { role: 'user' | 'assistant'; /** - * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that - * the message should use. There can be a maximum of 10 files attached to a - * message. Useful for tools like `retrieval` and `code_interpreter` that can - * access and use files. + * A list of files attached to the message, and the tools they should be added to. */ - file_ids?: Array; + attachments?: Array | null; /** * Set of 16 key-value pairs that can be attached to an object. This can be useful @@ -980,6 +997,17 @@ export namespace RunCreateAndPollParams { metadata?: unknown | null; } + export namespace AdditionalMessage { + export interface Attachment { + add_to?: Array<'file_search' | 'code_interpreter'>; + + /** + * The ID of the file to attach to the message. + */ + file_id?: string; + } + } + export interface TruncationStrategy { /** * The truncation strategy to use for the thread. The default is `auto`. If set to @@ -1119,6 +1147,13 @@ export interface RunCreateAndStreamParams { */ tools?: Array | null; + /** + * An alternative to sampling with temperature, called nucleus sampling, where the + * model considers the results of the tokens with top_p probability mass. So 0.1 + * means only the tokens comprising the top 10% probability mass are considered. + */ + top_p?: number | null; + truncation_strategy?: RunCreateAndStreamParams.TruncationStrategy | null; } @@ -1140,12 +1175,9 @@ export namespace RunCreateAndStreamParams { role: 'user' | 'assistant'; /** - * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that - * the message should use. There can be a maximum of 10 files attached to a - * message. Useful for tools like `retrieval` and `code_interpreter` that can - * access and use files. + * A list of files attached to the message, and the tools they should be added to. */ - file_ids?: Array; + attachments?: Array | null; /** * Set of 16 key-value pairs that can be attached to an object. This can be useful @@ -1156,6 +1188,17 @@ export namespace RunCreateAndStreamParams { metadata?: unknown | null; } + export namespace AdditionalMessage { + export interface Attachment { + add_to?: Array<'file_search' | 'code_interpreter'>; + + /** + * The ID of the file to attach to the message. + */ + file_id?: string; + } + } + export interface TruncationStrategy { /** * The truncation strategy to use for the thread. The default is `auto`. If set to @@ -1295,6 +1338,13 @@ export interface RunStreamParams { */ tools?: Array | null; + /** + * An alternative to sampling with temperature, called nucleus sampling, where the + * model considers the results of the tokens with top_p probability mass. So 0.1 + * means only the tokens comprising the top 10% probability mass are considered. + */ + top_p?: number | null; + truncation_strategy?: RunStreamParams.TruncationStrategy | null; } @@ -1316,12 +1366,9 @@ export namespace RunStreamParams { role: 'user' | 'assistant'; /** - * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that - * the message should use. There can be a maximum of 10 files attached to a - * message. Useful for tools like `retrieval` and `code_interpreter` that can - * access and use files. + * A list of files attached to the message, and the tools they should be added to. */ - file_ids?: Array; + attachments?: Array | null; /** * Set of 16 key-value pairs that can be attached to an object. This can be useful @@ -1332,6 +1379,17 @@ export namespace RunStreamParams { metadata?: unknown | null; } + export namespace AdditionalMessage { + export interface Attachment { + add_to?: Array<'file_search' | 'code_interpreter'>; + + /** + * The ID of the file to attach to the message. + */ + file_id?: string; + } + } + export interface TruncationStrategy { /** * The truncation strategy to use for the thread. The default is `auto`. If set to @@ -1470,11 +1528,11 @@ export namespace Runs { export import CodeInterpreterOutputImage = StepsAPI.CodeInterpreterOutputImage; export import CodeInterpreterToolCall = StepsAPI.CodeInterpreterToolCall; export import CodeInterpreterToolCallDelta = StepsAPI.CodeInterpreterToolCallDelta; + export import FileSearchToolCall = StepsAPI.FileSearchToolCall; + export import FileSearchToolCallDelta = StepsAPI.FileSearchToolCallDelta; export import FunctionToolCall = StepsAPI.FunctionToolCall; export import FunctionToolCallDelta = StepsAPI.FunctionToolCallDelta; export import MessageCreationStepDetails = StepsAPI.MessageCreationStepDetails; - export import RetrievalToolCall = StepsAPI.RetrievalToolCall; - export import RetrievalToolCallDelta = StepsAPI.RetrievalToolCallDelta; export import RunStep = StepsAPI.RunStep; export import RunStepDelta = StepsAPI.RunStepDelta; export import RunStepDeltaEvent = StepsAPI.RunStepDeltaEvent; diff --git a/src/resources/beta/threads/runs/steps.ts b/src/resources/beta/threads/runs/steps.ts index f0816fdb2..203741f4b 100644 --- a/src/resources/beta/threads/runs/steps.ts +++ b/src/resources/beta/threads/runs/steps.ts @@ -18,7 +18,7 @@ export class Steps extends APIResource { ): Core.APIPromise { return this._client.get(`/threads/${threadId}/runs/${runId}/steps/${stepId}`, { ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } @@ -48,7 +48,7 @@ export class Steps extends APIResource { return this._client.getAPIList(`/threads/${threadId}/runs/${runId}/steps`, RunStepsPage, { query, ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } } @@ -220,6 +220,47 @@ export namespace CodeInterpreterToolCallDelta { } } +export interface FileSearchToolCall { + /** + * The ID of the tool call object. + */ + id: string; + + /** + * For now, this is always going to be an empty object. + */ + file_search: unknown; + + /** + * The type of tool call. This is always going to be `file_search` for this type of + * tool call. + */ + type: 'file_search'; +} + +export interface FileSearchToolCallDelta { + /** + * For now, this is always going to be an empty object. + */ + file_search: unknown; + + /** + * The index of the tool call in the tool calls array. + */ + index: number; + + /** + * The type of tool call. This is always going to be `file_search` for this type of + * tool call. + */ + type: 'file_search'; + + /** + * The ID of the tool call object. + */ + id?: string; +} + export interface FunctionToolCall { /** * The ID of the tool call object. @@ -330,47 +371,6 @@ export namespace MessageCreationStepDetails { } } -export interface RetrievalToolCall { - /** - * The ID of the tool call object. - */ - id: string; - - /** - * For now, this is always going to be an empty object. - */ - retrieval: unknown; - - /** - * The type of tool call. This is always going to be `retrieval` for this type of - * tool call. - */ - type: 'retrieval'; -} - -export interface RetrievalToolCallDelta { - /** - * The index of the tool call in the tool calls array. - */ - index: number; - - /** - * The type of tool call. This is always going to be `retrieval` for this type of - * tool call. - */ - type: 'retrieval'; - - /** - * The ID of the tool call object. - */ - id?: string; - - /** - * For now, this is always going to be an empty object. - */ - retrieval?: unknown; -} - /** * Represents a step in execution of a run. */ @@ -561,12 +561,12 @@ export namespace RunStepDeltaMessageDelta { /** * Details of the Code Interpreter tool call the run step was involved in. */ -export type ToolCall = CodeInterpreterToolCall | RetrievalToolCall | FunctionToolCall; +export type ToolCall = CodeInterpreterToolCall | FileSearchToolCall | FunctionToolCall; /** * Details of the Code Interpreter tool call the run step was involved in. */ -export type ToolCallDelta = CodeInterpreterToolCallDelta | RetrievalToolCallDelta | FunctionToolCallDelta; +export type ToolCallDelta = CodeInterpreterToolCallDelta | FileSearchToolCallDelta | FunctionToolCallDelta; /** * Details of the tool call. @@ -579,7 +579,7 @@ export interface ToolCallDeltaObject { /** * An array of tool calls the run step was involved in. These can be associated - * with one of three types of tools: `code_interpreter`, `retrieval`, or + * with one of three types of tools: `code_interpreter`, `file_search`, or * `function`. */ tool_calls?: Array; @@ -591,7 +591,7 @@ export interface ToolCallDeltaObject { export interface ToolCallsStepDetails { /** * An array of tool calls the run step was involved in. These can be associated - * with one of three types of tools: `code_interpreter`, `retrieval`, or + * with one of three types of tools: `code_interpreter`, `file_search`, or * `function`. */ tool_calls: Array; @@ -623,11 +623,11 @@ export namespace Steps { export import CodeInterpreterOutputImage = StepsAPI.CodeInterpreterOutputImage; export import CodeInterpreterToolCall = StepsAPI.CodeInterpreterToolCall; export import CodeInterpreterToolCallDelta = StepsAPI.CodeInterpreterToolCallDelta; + export import FileSearchToolCall = StepsAPI.FileSearchToolCall; + export import FileSearchToolCallDelta = StepsAPI.FileSearchToolCallDelta; export import FunctionToolCall = StepsAPI.FunctionToolCall; export import FunctionToolCallDelta = StepsAPI.FunctionToolCallDelta; export import MessageCreationStepDetails = StepsAPI.MessageCreationStepDetails; - export import RetrievalToolCall = StepsAPI.RetrievalToolCall; - export import RetrievalToolCallDelta = StepsAPI.RetrievalToolCallDelta; export import RunStep = StepsAPI.RunStep; export import RunStepDelta = StepsAPI.RunStepDelta; export import RunStepDeltaEvent = StepsAPI.RunStepDeltaEvent; diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 29682c308..f3590ed80 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -6,8 +6,8 @@ import { APIResource } from 'openai/resource'; import { isRequestOptions } from 'openai/core'; import { AssistantStream, ThreadCreateAndRunParamsBaseStream } from 'openai/lib/AssistantStream'; import * as ThreadsAPI from 'openai/resources/beta/threads/threads'; -import * as AssistantsAPI from 'openai/resources/beta/assistants/assistants'; -import * as MessagesAPI from 'openai/resources/beta/threads/messages/messages'; +import * as AssistantsAPI from 'openai/resources/beta/assistants'; +import * as MessagesAPI from 'openai/resources/beta/threads/messages'; import * as RunsAPI from 'openai/resources/beta/threads/runs/runs'; import { Stream } from 'openai/streaming'; @@ -30,7 +30,7 @@ export class Threads extends APIResource { return this._client.post('/threads', { body, ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } @@ -40,7 +40,7 @@ export class Threads extends APIResource { retrieve(threadId: string, options?: Core.RequestOptions): Core.APIPromise { return this._client.get(`/threads/${threadId}`, { ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } @@ -51,7 +51,7 @@ export class Threads extends APIResource { return this._client.post(`/threads/${threadId}`, { body, ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } @@ -61,7 +61,7 @@ export class Threads extends APIResource { del(threadId: string, options?: Core.RequestOptions): Core.APIPromise { return this._client.delete(`/threads/${threadId}`, { ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } @@ -87,7 +87,7 @@ export class Threads extends APIResource { return this._client.post('/threads/runs', { body, ...options, - headers: { 'OpenAI-Beta': 'assistants=v1', ...options?.headers }, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, stream: body.stream ?? false, }) as APIPromise | APIPromise>; } @@ -154,7 +154,7 @@ export interface AssistantToolChoice { /** * The type of the tool. If type is `function`, the function name must be set */ - type: 'function' | 'code_interpreter' | 'retrieval'; + type: 'function' | 'code_interpreter' | 'file_search'; function?: AssistantToolChoiceFunction; } @@ -203,6 +203,49 @@ export interface Thread { * The object type, which is always `thread`. */ object: 'thread'; + + /** + * A set of resources that are made available to the assistant's tools in this + * thread. The resources are specific to the type of tool. For example, the + * `code_interpreter` tool requires a list of file IDs, while the `file_search` + * tool requires a list of vector store IDs. + */ + tool_resources: Thread.ToolResources | null; +} + +export namespace Thread { + /** + * A set of resources that are made available to the assistant's tools in this + * thread. The resources are specific to the type of tool. For example, the + * `code_interpreter` tool requires a list of file IDs, while the `file_search` + * tool requires a list of vector store IDs. + */ + export interface ToolResources { + code_interpreter?: ToolResources.CodeInterpreter; + + file_search?: ToolResources.FileSearch; + } + + export namespace ToolResources { + export interface CodeInterpreter { + /** + * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs made + * available to the `code_interpreter` tool. There can be a maximum of 20 files + * associated with the tool. + */ + file_ids?: Array; + } + + export interface FileSearch { + /** + * The + * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) + * attached to this thread. There can be a maximum of 1 vector store attached to + * the thread. + */ + vector_store_ids?: Array; + } + } } export interface ThreadDeleted { @@ -227,6 +270,14 @@ export interface ThreadCreateParams { * characters long. */ metadata?: unknown | null; + + /** + * A set of resources that are made available to the assistant's tools in this + * thread. The resources are specific to the type of tool. For example, the + * `code_interpreter` tool requires a list of file IDs, while the `file_search` + * tool requires a list of vector store IDs. + */ + tool_resources?: ThreadCreateParams.ToolResources | null; } export namespace ThreadCreateParams { @@ -247,12 +298,9 @@ export namespace ThreadCreateParams { role: 'user' | 'assistant'; /** - * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that - * the message should use. There can be a maximum of 10 files attached to a - * message. Useful for tools like `retrieval` and `code_interpreter` that can - * access and use files. + * A list of files attached to the message, and the tools they should be added to. */ - file_ids?: Array; + attachments?: Array | null; /** * Set of 16 key-value pairs that can be attached to an object. This can be useful @@ -262,6 +310,77 @@ export namespace ThreadCreateParams { */ metadata?: unknown | null; } + + export namespace Message { + export interface Attachment { + add_to?: Array<'file_search' | 'code_interpreter'>; + + /** + * The ID of the file to attach to the message. + */ + file_id?: string; + } + } + + /** + * A set of resources that are made available to the assistant's tools in this + * thread. The resources are specific to the type of tool. For example, the + * `code_interpreter` tool requires a list of file IDs, while the `file_search` + * tool requires a list of vector store IDs. + */ + export interface ToolResources { + code_interpreter?: ToolResources.CodeInterpreter; + + file_search?: ToolResources.FileSearch; + } + + export namespace ToolResources { + export interface CodeInterpreter { + /** + * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs made + * available to the `code_interpreter` tool. There can be a maximum of 20 files + * associated with the tool. + */ + file_ids?: Array; + } + + export interface FileSearch { + /** + * The + * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) + * attached to this thread. There can be a maximum of 1 vector store attached to + * the thread. + */ + vector_store_ids?: Array; + + /** + * A helper to create a + * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) + * with file_ids and attach it to this thread. There can be a maximum of 1 vector + * store attached to the thread. + */ + vector_stores?: Array; + } + + export namespace FileSearch { + export interface VectorStore { + /** + * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs to + * add to the vector store. There can be a maximum of 10000 files in a vector + * store. + */ + file_ids?: Array; + + /** + * Set of 16 key-value pairs that can be attached to a vector store. This can be + * useful for storing additional information about the vector store in a structured + * format. Keys can be a maximum of 64 characters long and values can be a maxium + * of 512 characters long. + */ + metadata?: unknown; + } + } + } } export interface ThreadUpdateParams { @@ -272,6 +391,49 @@ export interface ThreadUpdateParams { * characters long. */ metadata?: unknown | null; + + /** + * A set of resources that are made available to the assistant's tools in this + * thread. The resources are specific to the type of tool. For example, the + * `code_interpreter` tool requires a list of file IDs, while the `file_search` + * tool requires a list of vector store IDs. + */ + tool_resources?: ThreadUpdateParams.ToolResources | null; +} + +export namespace ThreadUpdateParams { + /** + * A set of resources that are made available to the assistant's tools in this + * thread. The resources are specific to the type of tool. For example, the + * `code_interpreter` tool requires a list of file IDs, while the `file_search` + * tool requires a list of vector store IDs. + */ + export interface ToolResources { + code_interpreter?: ToolResources.CodeInterpreter; + + file_search?: ToolResources.FileSearch; + } + + export namespace ToolResources { + export interface CodeInterpreter { + /** + * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs made + * available to the `code_interpreter` tool. There can be a maximum of 20 files + * associated with the tool. + */ + file_ids?: Array; + } + + export interface FileSearch { + /** + * The + * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) + * attached to this thread. There can be a maximum of 1 vector store attached to + * the thread. + */ + vector_store_ids?: Array; + } + } } export type ThreadCreateAndRunParams = @@ -296,7 +458,7 @@ export interface ThreadCreateAndRunParamsBase { * The maximum number of completion tokens that may be used over the course of the * run. The run will make a best effort to use only the number of completion tokens * specified, across multiple turns of the run. If the run exceeds the number of - * completion tokens specified, the run will end with status `complete`. See + * completion tokens specified, the run will end with status `incomplete`. See * `incomplete_details` for more info. */ max_completion_tokens?: number | null; @@ -305,7 +467,7 @@ export interface ThreadCreateAndRunParamsBase { * The maximum number of prompt tokens that may be used over the course of the run. * The run will make a best effort to use only the number of prompt tokens * specified, across multiple turns of the run. If the run exceeds the number of - * prompt tokens specified, the run will end with status `complete`. See + * prompt tokens specified, the run will end with status `incomplete`. See * `incomplete_details` for more info. */ max_prompt_tokens?: number | null; @@ -393,14 +555,29 @@ export interface ThreadCreateAndRunParamsBase { */ tool_choice?: AssistantToolChoiceOption | null; + /** + * A set of resources that are used by the assistant's tools. The resources are + * specific to the type of tool. For example, the `code_interpreter` tool requires + * a list of file IDs, while the `file_search` tool requires a list of vector store + * IDs. + */ + tool_resources?: ThreadCreateAndRunParams.ToolResources | null; + /** * Override the tools the assistant can use for this run. This is useful for * modifying the behavior on a per-run basis. */ tools?: Array< - AssistantsAPI.CodeInterpreterTool | AssistantsAPI.RetrievalTool | AssistantsAPI.FunctionTool + AssistantsAPI.CodeInterpreterTool | AssistantsAPI.FileSearchTool | AssistantsAPI.FunctionTool > | null; + /** + * An alternative to sampling with temperature, called nucleus sampling, where the + * model considers the results of the tokens with top_p probability mass. So 0.1 + * means only the tokens comprising the top 10% probability mass are considered. + */ + top_p?: number | null; + truncation_strategy?: ThreadCreateAndRunParams.TruncationStrategy | null; } @@ -422,6 +599,14 @@ export namespace ThreadCreateAndRunParams { * characters long. */ metadata?: unknown | null; + + /** + * A set of resources that are made available to the assistant's tools in this + * thread. The resources are specific to the type of tool. For example, the + * `code_interpreter` tool requires a list of file IDs, while the `file_search` + * tool requires a list of vector store IDs. + */ + tool_resources?: Thread.ToolResources | null; } export namespace Thread { @@ -442,12 +627,9 @@ export namespace ThreadCreateAndRunParams { role: 'user' | 'assistant'; /** - * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that - * the message should use. There can be a maximum of 10 files attached to a - * message. Useful for tools like `retrieval` and `code_interpreter` that can - * access and use files. + * A list of files attached to the message, and the tools they should be added to. */ - file_ids?: Array; + attachments?: Array | null; /** * Set of 16 key-value pairs that can be attached to an object. This can be useful @@ -457,6 +639,110 @@ export namespace ThreadCreateAndRunParams { */ metadata?: unknown | null; } + + export namespace Message { + export interface Attachment { + add_to?: Array<'file_search' | 'code_interpreter'>; + + /** + * The ID of the file to attach to the message. + */ + file_id?: string; + } + } + + /** + * A set of resources that are made available to the assistant's tools in this + * thread. The resources are specific to the type of tool. For example, the + * `code_interpreter` tool requires a list of file IDs, while the `file_search` + * tool requires a list of vector store IDs. + */ + export interface ToolResources { + code_interpreter?: ToolResources.CodeInterpreter; + + file_search?: ToolResources.FileSearch; + } + + export namespace ToolResources { + export interface CodeInterpreter { + /** + * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs made + * available to the `code_interpreter` tool. There can be a maximum of 20 files + * associated with the tool. + */ + file_ids?: Array; + } + + export interface FileSearch { + /** + * The + * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) + * attached to this thread. There can be a maximum of 1 vector store attached to + * the thread. + */ + vector_store_ids?: Array; + + /** + * A helper to create a + * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) + * with file_ids and attach it to this thread. There can be a maximum of 1 vector + * store attached to the thread. + */ + vector_stores?: Array; + } + + export namespace FileSearch { + export interface VectorStore { + /** + * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs to + * add to the vector store. There can be a maximum of 10000 files in a vector + * store. + */ + file_ids?: Array; + + /** + * Set of 16 key-value pairs that can be attached to a vector store. This can be + * useful for storing additional information about the vector store in a structured + * format. Keys can be a maximum of 64 characters long and values can be a maxium + * of 512 characters long. + */ + metadata?: unknown; + } + } + } + } + + /** + * A set of resources that are used by the assistant's tools. The resources are + * specific to the type of tool. For example, the `code_interpreter` tool requires + * a list of file IDs, while the `file_search` tool requires a list of vector store + * IDs. + */ + export interface ToolResources { + code_interpreter?: ToolResources.CodeInterpreter; + + file_search?: ToolResources.FileSearch; + } + + export namespace ToolResources { + export interface CodeInterpreter { + /** + * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs made + * available to the `code_interpreter` tool. There can be a maximum of 20 files + * associated with the tool. + */ + file_ids?: Array; + } + + export interface FileSearch { + /** + * The ID of the + * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) + * attached to this assistant. There can be a maximum of 1 vector store attached to + * the assistant. + */ + vector_store_ids?: Array; + } } export interface TruncationStrategy { @@ -515,7 +801,7 @@ export interface ThreadCreateAndRunPollParams { * The maximum number of completion tokens that may be used over the course of the * run. The run will make a best effort to use only the number of completion tokens * specified, across multiple turns of the run. If the run exceeds the number of - * completion tokens specified, the run will end with status `complete`. See + * completion tokens specified, the run will end with status `incomplete`. See * `incomplete_details` for more info. */ max_completion_tokens?: number | null; @@ -524,7 +810,7 @@ export interface ThreadCreateAndRunPollParams { * The maximum number of prompt tokens that may be used over the course of the run. * The run will make a best effort to use only the number of prompt tokens * specified, across multiple turns of the run. If the run exceeds the number of - * prompt tokens specified, the run will end with status `complete`. See + * prompt tokens specified, the run will end with status `incomplete`. See * `incomplete_details` for more info. */ max_prompt_tokens?: number | null; @@ -605,14 +891,29 @@ export interface ThreadCreateAndRunPollParams { */ tool_choice?: AssistantToolChoiceOption | null; + /** + * A set of resources that are used by the assistant's tools. The resources are + * specific to the type of tool. For example, the `code_interpreter` tool requires + * a list of file IDs, while the `file_search` tool requires a list of vector store + * IDs. + */ + tool_resources?: ThreadCreateAndRunPollParams.ToolResources | null; + /** * Override the tools the assistant can use for this run. This is useful for * modifying the behavior on a per-run basis. */ tools?: Array< - AssistantsAPI.CodeInterpreterTool | AssistantsAPI.RetrievalTool | AssistantsAPI.FunctionTool + AssistantsAPI.CodeInterpreterTool | AssistantsAPI.FileSearchTool | AssistantsAPI.FunctionTool > | null; + /** + * An alternative to sampling with temperature, called nucleus sampling, where the + * model considers the results of the tokens with top_p probability mass. So 0.1 + * means only the tokens comprising the top 10% probability mass are considered. + */ + top_p?: number | null; + truncation_strategy?: ThreadCreateAndRunPollParams.TruncationStrategy | null; } @@ -634,6 +935,14 @@ export namespace ThreadCreateAndRunPollParams { * characters long. */ metadata?: unknown | null; + + /** + * A set of resources that are made available to the assistant's tools in this + * thread. The resources are specific to the type of tool. For example, the + * `code_interpreter` tool requires a list of file IDs, while the `file_search` + * tool requires a list of vector store IDs. + */ + tool_resources?: Thread.ToolResources | null; } export namespace Thread { @@ -654,12 +963,9 @@ export namespace ThreadCreateAndRunPollParams { role: 'user' | 'assistant'; /** - * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that - * the message should use. There can be a maximum of 10 files attached to a - * message. Useful for tools like `retrieval` and `code_interpreter` that can - * access and use files. + * A list of files attached to the message, and the tools they should be added to. */ - file_ids?: Array; + attachments?: Array | null; /** * Set of 16 key-value pairs that can be attached to an object. This can be useful @@ -669,6 +975,110 @@ export namespace ThreadCreateAndRunPollParams { */ metadata?: unknown | null; } + + export namespace Message { + export interface Attachment { + add_to?: Array<'file_search' | 'code_interpreter'>; + + /** + * The ID of the file to attach to the message. + */ + file_id?: string; + } + } + + /** + * A set of resources that are made available to the assistant's tools in this + * thread. The resources are specific to the type of tool. For example, the + * `code_interpreter` tool requires a list of file IDs, while the `file_search` + * tool requires a list of vector store IDs. + */ + export interface ToolResources { + code_interpreter?: ToolResources.CodeInterpreter; + + file_search?: ToolResources.FileSearch; + } + + export namespace ToolResources { + export interface CodeInterpreter { + /** + * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs made + * available to the `code_interpreter` tool. There can be a maximum of 20 files + * associated with the tool. + */ + file_ids?: Array; + } + + export interface FileSearch { + /** + * The + * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) + * attached to this thread. There can be a maximum of 1 vector store attached to + * the thread. + */ + vector_store_ids?: Array; + + /** + * A helper to create a + * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) + * with file_ids and attach it to this thread. There can be a maximum of 1 vector + * store attached to the thread. + */ + vector_stores?: Array; + } + + export namespace FileSearch { + export interface VectorStore { + /** + * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs to + * add to the vector store. There can be a maximum of 10000 files in a vector + * store. + */ + file_ids?: Array; + + /** + * Set of 16 key-value pairs that can be attached to a vector store. This can be + * useful for storing additional information about the vector store in a structured + * format. Keys can be a maximum of 64 characters long and values can be a maxium + * of 512 characters long. + */ + metadata?: unknown; + } + } + } + } + + /** + * A set of resources that are used by the assistant's tools. The resources are + * specific to the type of tool. For example, the `code_interpreter` tool requires + * a list of file IDs, while the `file_search` tool requires a list of vector store + * IDs. + */ + export interface ToolResources { + code_interpreter?: ToolResources.CodeInterpreter; + + file_search?: ToolResources.FileSearch; + } + + export namespace ToolResources { + export interface CodeInterpreter { + /** + * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs made + * available to the `code_interpreter` tool. There can be a maximum of 20 files + * associated with the tool. + */ + file_ids?: Array; + } + + export interface FileSearch { + /** + * The ID of the + * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) + * attached to this assistant. There can be a maximum of 1 vector store attached to + * the assistant. + */ + vector_store_ids?: Array; + } } export interface TruncationStrategy { @@ -706,7 +1116,7 @@ export interface ThreadCreateAndRunStreamParams { * The maximum number of completion tokens that may be used over the course of the * run. The run will make a best effort to use only the number of completion tokens * specified, across multiple turns of the run. If the run exceeds the number of - * completion tokens specified, the run will end with status `complete`. See + * completion tokens specified, the run will end with status `incomplete`. See * `incomplete_details` for more info. */ max_completion_tokens?: number | null; @@ -715,7 +1125,7 @@ export interface ThreadCreateAndRunStreamParams { * The maximum number of prompt tokens that may be used over the course of the run. * The run will make a best effort to use only the number of prompt tokens * specified, across multiple turns of the run. If the run exceeds the number of - * prompt tokens specified, the run will end with status `complete`. See + * prompt tokens specified, the run will end with status `incomplete`. See * `incomplete_details` for more info. */ max_prompt_tokens?: number | null; @@ -796,14 +1206,29 @@ export interface ThreadCreateAndRunStreamParams { */ tool_choice?: AssistantToolChoiceOption | null; + /** + * A set of resources that are used by the assistant's tools. The resources are + * specific to the type of tool. For example, the `code_interpreter` tool requires + * a list of file IDs, while the `file_search` tool requires a list of vector store + * IDs. + */ + tool_resources?: ThreadCreateAndRunStreamParams.ToolResources | null; + /** * Override the tools the assistant can use for this run. This is useful for * modifying the behavior on a per-run basis. */ tools?: Array< - AssistantsAPI.CodeInterpreterTool | AssistantsAPI.RetrievalTool | AssistantsAPI.FunctionTool + AssistantsAPI.CodeInterpreterTool | AssistantsAPI.FileSearchTool | AssistantsAPI.FunctionTool > | null; + /** + * An alternative to sampling with temperature, called nucleus sampling, where the + * model considers the results of the tokens with top_p probability mass. So 0.1 + * means only the tokens comprising the top 10% probability mass are considered. + */ + top_p?: number | null; + truncation_strategy?: ThreadCreateAndRunStreamParams.TruncationStrategy | null; } @@ -825,6 +1250,14 @@ export namespace ThreadCreateAndRunStreamParams { * characters long. */ metadata?: unknown | null; + + /** + * A set of resources that are made available to the assistant's tools in this + * thread. The resources are specific to the type of tool. For example, the + * `code_interpreter` tool requires a list of file IDs, while the `file_search` + * tool requires a list of vector store IDs. + */ + tool_resources?: Thread.ToolResources | null; } export namespace Thread { @@ -845,12 +1278,9 @@ export namespace ThreadCreateAndRunStreamParams { role: 'user' | 'assistant'; /** - * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that - * the message should use. There can be a maximum of 10 files attached to a - * message. Useful for tools like `retrieval` and `code_interpreter` that can - * access and use files. + * A list of files attached to the message, and the tools they should be added to. */ - file_ids?: Array; + attachments?: Array | null; /** * Set of 16 key-value pairs that can be attached to an object. This can be useful @@ -860,6 +1290,110 @@ export namespace ThreadCreateAndRunStreamParams { */ metadata?: unknown | null; } + + export namespace Message { + export interface Attachment { + add_to?: Array<'file_search' | 'code_interpreter'>; + + /** + * The ID of the file to attach to the message. + */ + file_id?: string; + } + } + + /** + * A set of resources that are made available to the assistant's tools in this + * thread. The resources are specific to the type of tool. For example, the + * `code_interpreter` tool requires a list of file IDs, while the `file_search` + * tool requires a list of vector store IDs. + */ + export interface ToolResources { + code_interpreter?: ToolResources.CodeInterpreter; + + file_search?: ToolResources.FileSearch; + } + + export namespace ToolResources { + export interface CodeInterpreter { + /** + * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs made + * available to the `code_interpreter` tool. There can be a maximum of 20 files + * associated with the tool. + */ + file_ids?: Array; + } + + export interface FileSearch { + /** + * The + * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) + * attached to this thread. There can be a maximum of 1 vector store attached to + * the thread. + */ + vector_store_ids?: Array; + + /** + * A helper to create a + * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) + * with file_ids and attach it to this thread. There can be a maximum of 1 vector + * store attached to the thread. + */ + vector_stores?: Array; + } + + export namespace FileSearch { + export interface VectorStore { + /** + * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs to + * add to the vector store. There can be a maximum of 10000 files in a vector + * store. + */ + file_ids?: Array; + + /** + * Set of 16 key-value pairs that can be attached to a vector store. This can be + * useful for storing additional information about the vector store in a structured + * format. Keys can be a maximum of 64 characters long and values can be a maxium + * of 512 characters long. + */ + metadata?: unknown; + } + } + } + } + + /** + * A set of resources that are used by the assistant's tools. The resources are + * specific to the type of tool. For example, the `code_interpreter` tool requires + * a list of file IDs, while the `file_search` tool requires a list of vector store + * IDs. + */ + export interface ToolResources { + code_interpreter?: ToolResources.CodeInterpreter; + + file_search?: ToolResources.FileSearch; + } + + export namespace ToolResources { + export interface CodeInterpreter { + /** + * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs made + * available to the `code_interpreter` tool. There can be a maximum of 20 files + * associated with the tool. + */ + file_ids?: Array; + } + + export interface FileSearch { + /** + * The ID of the + * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) + * attached to this assistant. There can be a maximum of 1 vector store attached to + * the assistant. + */ + vector_store_ids?: Array; + } } export interface TruncationStrategy { diff --git a/src/resources/beta/vector-stores/file-batches.ts b/src/resources/beta/vector-stores/file-batches.ts new file mode 100644 index 000000000..3ccdd0108 --- /dev/null +++ b/src/resources/beta/vector-stores/file-batches.ts @@ -0,0 +1,292 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; +import { isRequestOptions } from 'openai/core'; +import { sleep } from 'openai/core'; +import { Uploadable } from 'openai/core'; +import { allSettledWithThrow } from 'openai/lib/Util'; +import * as FileBatchesAPI from 'openai/resources/beta/vector-stores/file-batches'; +import * as FilesAPI from 'openai/resources/beta/vector-stores/files'; +import { VectorStoreFilesPage } from 'openai/resources/beta/vector-stores/files'; +import { type CursorPageParams } from 'openai/pagination'; + +export class FileBatches extends APIResource { + /** + * Create a vector store file batch. + */ + create( + vectorStoreId: string, + body: FileBatchCreateParams, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this._client.post(`/vector_stores/${vectorStoreId}/file_batches`, { + body, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, + }); + } + + /** + * Retrieves a vector store file batch. + */ + retrieve( + vectorStoreId: string, + batchId: string, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this._client.get(`/vector_stores/${vectorStoreId}/file_batches/${batchId}`, { + ...options, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, + }); + } + + /** + * Cancel a vector store file batch. This attempts to cancel the processing of + * files in this batch as soon as possible. + */ + cancel( + vectorStoreId: string, + batchId: string, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this._client.post(`/vector_stores/${vectorStoreId}/file_batches/${batchId}/cancel`, { + ...options, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, + }); + } + + /** + * Create a vector store batch and poll until all files have been processed. + */ + async createAndPoll( + vectorStoreId: string, + body: FileBatchCreateParams, + options?: Core.RequestOptions & { pollIntervalMs?: number }, + ): Promise { + const batch = await this.create(vectorStoreId, body); + return await this.poll(vectorStoreId, batch.id, options); + } + + /** + * Returns a list of vector store files in a batch. + */ + listFiles( + vectorStoreId: string, + batchId: string, + query?: FileBatchListFilesParams, + options?: Core.RequestOptions, + ): Core.PagePromise; + listFiles( + vectorStoreId: string, + batchId: string, + options?: Core.RequestOptions, + ): Core.PagePromise; + listFiles( + vectorStoreId: string, + batchId: string, + query: FileBatchListFilesParams | Core.RequestOptions = {}, + options?: Core.RequestOptions, + ): Core.PagePromise { + if (isRequestOptions(query)) { + return this.listFiles(vectorStoreId, batchId, {}, query); + } + return this._client.getAPIList( + `/vector_stores/${vectorStoreId}/file_batches/${batchId}/files`, + VectorStoreFilesPage, + { query, ...options, headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers } }, + ); + } + + /** + * Wait for the given file batch to be processed. + * + * Note: this will return even if one of the files failed to process, you need to + * check batch.file_counts.failed_count to handle this case. + */ + async poll( + vectorStoreId: string, + batchId: string, + options?: Core.RequestOptions & { pollIntervalMs?: number }, + ): Promise { + const headers: { [key: string]: string } = { ...options?.headers, 'X-Stainless-Poll-Helper': 'true' }; + if (options?.pollIntervalMs) { + headers['X-Stainless-Custom-Poll-Interval'] = options.pollIntervalMs.toString(); + } + + while (true) { + const { data: batch, response } = await this.retrieve(vectorStoreId, batchId, { + ...options, + headers, + }).withResponse(); + + switch (batch.status) { + case 'in_progress': + let sleepInterval = 5000; + + if (options?.pollIntervalMs) { + sleepInterval = options.pollIntervalMs; + } else { + const headerInterval = response.headers.get('openai-poll-after-ms'); + if (headerInterval) { + const headerIntervalMs = parseInt(headerInterval); + if (!isNaN(headerIntervalMs)) { + sleepInterval = headerIntervalMs; + } + } + } + await sleep(sleepInterval); + break; + case 'failed': + case 'completed': + return batch; + } + } + } + + /** + * Uploads the given files concurrently and then creates a vector store file batch. + * + * The concurrency limit is configurable using the `maxConcurrency` parameter. + */ + async uploadAndPoll( + vectorStoreId: string, + { files, fileIds = [] }: { files: Uploadable[]; fileIds?: string[] }, + options?: Core.RequestOptions & { pollIntervalMs?: number; maxConcurrency?: number }, + ): Promise { + if (files === null || files.length == 0) { + throw new Error('No files provided to process.'); + } + + const configuredConcurrency = options?.maxConcurrency ?? 5; + //We cap the number of workers at the number of files (so we don't start any unnecessary workers) + const concurrencyLimit = Math.min(configuredConcurrency, files.length); + + const client = this._client; + const fileIterator = files.values(); + const allFileIds: string[] = [...fileIds]; + + //This code is based on this design. The libraries don't accommodate our environment limits. + // https://stackoverflow.com/questions/40639432/what-is-the-best-way-to-limit-concurrency-when-using-es6s-promise-all + async function processFiles(iterator: IterableIterator) { + for (let item of iterator) { + const fileObj = await client.files.create({ file: item, purpose: 'assistants' }, options); + allFileIds.push(fileObj.id); + } + } + + //Start workers to process results + const workers = Array(concurrencyLimit).fill(fileIterator).map(processFiles); + + //Wait for all processing to complete. + await allSettledWithThrow(workers); + + return await this.createAndPoll(vectorStoreId, { + file_ids: allFileIds, + }); + } +} + +/** + * A batch of files attached to a vector store. + */ +export interface VectorStoreFileBatch { + /** + * The identifier, which can be referenced in API endpoints. + */ + id: string; + + /** + * The Unix timestamp (in seconds) for when the vector store files batch was + * created. + */ + created_at: number; + + file_counts: VectorStoreFileBatch.FileCounts; + + /** + * The object type, which is always `vector_store.file_batch`. + */ + object: 'vector_store.files_batch'; + + /** + * The status of the vector store files batch, which can be either `in_progress`, + * `completed`, `cancelled` or `failed`. + */ + status: 'in_progress' | 'completed' | 'cancelled' | 'failed'; + + /** + * The ID of the + * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) + * that the [File](https://platform.openai.com/docs/api-reference/files) is + * attached to. + */ + vector_store_id: string; +} + +export namespace VectorStoreFileBatch { + export interface FileCounts { + /** + * The number of files that where cancelled. + */ + cancelled: number; + + /** + * The number of files that have been processed. + */ + completed: number; + + /** + * The number of files that have failed to process. + */ + failed: number; + + /** + * The number of files that are currently being processed. + */ + in_progress: number; + + /** + * The total number of files. + */ + total: number; + } +} + +export interface FileBatchCreateParams { + /** + * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that + * the vector store should use. Useful for tools like `file_search` that can access + * files. + */ + file_ids: Array; +} + +export interface FileBatchListFilesParams extends CursorPageParams { + /** + * A cursor for use in pagination. `before` is an object ID that defines your place + * in the list. For instance, if you make a list request and receive 100 objects, + * ending with obj_foo, your subsequent call can include before=obj_foo in order to + * fetch the previous page of the list. + */ + before?: string; + + /** + * Filter by file status. One of `in_progress`, `completed`, `failed`, `cancelled`. + */ + filter?: 'in_progress' | 'completed' | 'failed' | 'cancelled'; + + /** + * Sort order by the `created_at` timestamp of the objects. `asc` for ascending + * order and `desc` for descending order. + */ + order?: 'asc' | 'desc'; +} + +export namespace FileBatches { + export import VectorStoreFileBatch = FileBatchesAPI.VectorStoreFileBatch; + export import FileBatchCreateParams = FileBatchesAPI.FileBatchCreateParams; + export import FileBatchListFilesParams = FileBatchesAPI.FileBatchListFilesParams; +} + +export { VectorStoreFilesPage }; diff --git a/src/resources/beta/vector-stores/files.ts b/src/resources/beta/vector-stores/files.ts new file mode 100644 index 000000000..40b97e9a9 --- /dev/null +++ b/src/resources/beta/vector-stores/files.ts @@ -0,0 +1,277 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; +import { isRequestOptions } from 'openai/core'; +import { sleep, Uploadable } from 'openai/core'; +import * as FilesAPI from 'openai/resources/beta/vector-stores/files'; +import { CursorPage, type CursorPageParams } from 'openai/pagination'; + +export class Files extends APIResource { + /** + * Create a vector store file by attaching a + * [File](https://platform.openai.com/docs/api-reference/files) to a + * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object). + */ + create( + vectorStoreId: string, + body: FileCreateParams, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this._client.post(`/vector_stores/${vectorStoreId}/files`, { + body, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, + }); + } + + /** + * Retrieves a vector store file. + */ + retrieve( + vectorStoreId: string, + fileId: string, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this._client.get(`/vector_stores/${vectorStoreId}/files/${fileId}`, { + ...options, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, + }); + } + + /** + * Returns a list of vector store files. + */ + list( + vectorStoreId: string, + query?: FileListParams, + options?: Core.RequestOptions, + ): Core.PagePromise; + list( + vectorStoreId: string, + options?: Core.RequestOptions, + ): Core.PagePromise; + list( + vectorStoreId: string, + query: FileListParams | Core.RequestOptions = {}, + options?: Core.RequestOptions, + ): Core.PagePromise { + if (isRequestOptions(query)) { + return this.list(vectorStoreId, {}, query); + } + return this._client.getAPIList(`/vector_stores/${vectorStoreId}/files`, VectorStoreFilesPage, { + query, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, + }); + } + + /** + * Delete a vector store file. This will remove the file from the vector store but + * the file itself will not be deleted. To delete the file, use the + * [delete file](https://platform.openai.com/docs/api-reference/files/delete) + * endpoint. + */ + del( + vectorStoreId: string, + fileId: string, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this._client.delete(`/vector_stores/${vectorStoreId}/files/${fileId}`, { + ...options, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, + }); + } + + /** + * Attach a file to the given vector store and wait for it to be processed. + */ + async createAndPoll( + vectorStoreId: string, + body: FileCreateParams, + options?: Core.RequestOptions & { pollIntervalMs?: number }, + ): Promise { + const file = await this.create(vectorStoreId, body, options); + return await this.poll(vectorStoreId, file.id, options); + } + + /** + * Wait for the vector store file to finish processing. + * + * Note: this will return even if the file failed to process, you need to check + * file.last_error and file.status to handle these cases + */ + async poll( + vectorStoreId: string, + fileId: string, + options?: Core.RequestOptions & { pollIntervalMs?: number }, + ): Promise { + const headers: { [key: string]: string } = { ...options?.headers, 'X-Stainless-Poll-Helper': 'true' }; + if (options?.pollIntervalMs) { + headers['X-Stainless-Custom-Poll-Interval'] = options.pollIntervalMs.toString(); + } + while (true) { + const fileResponse = await this.retrieve(vectorStoreId, fileId, { + ...options, + headers, + }).withResponse(); + + const file = fileResponse.data; + + switch (file.status) { + case 'in_progress': + let sleepInterval = 5000; + + if (options?.pollIntervalMs) { + sleepInterval = options.pollIntervalMs; + } else { + const headerInterval = fileResponse.response.headers.get('openai-poll-after-ms'); + if (headerInterval) { + const headerIntervalMs = parseInt(headerInterval); + if (!isNaN(headerIntervalMs)) { + sleepInterval = headerIntervalMs; + } + } + } + await sleep(sleepInterval); + break; + case 'failed': + case 'completed': + return file; + } + } + } + + /** + * Upload a file to the `files` API and then attach it to the given vector store. + * Note the file will be asynchronously processed (you can use the alternative + * polling helper method to wait for processing to complete). + */ + async upload( + vectorStoreId: string, + file: Uploadable, + options?: Core.RequestOptions, + ): Promise { + const fileInfo = await this._client.files.create({ file: file, purpose: 'assistants' }, options); + return this.create(vectorStoreId, { file_id: fileInfo.id }, options); + } + + /** + * Add a file to a vector store and poll until processing is complete. + */ + async uploadAndPoll( + vectorStoreId: string, + file: Uploadable, + options?: Core.RequestOptions & { pollIntervalMs?: number }, + ): Promise { + const fileInfo = await this._client.files.create({ file: file, purpose: 'assistants' }, options); + return await this.poll(vectorStoreId, fileInfo.id, options); + } +} + +export class VectorStoreFilesPage extends CursorPage {} + +/** + * A list of files attached to a vector store. + */ +export interface VectorStoreFile { + /** + * The identifier, which can be referenced in API endpoints. + */ + id: string; + + /** + * The Unix timestamp (in seconds) for when the vector store file was created. + */ + created_at: number; + + /** + * The last error associated with this vector store file. Will be `null` if there + * are no errors. + */ + last_error: VectorStoreFile.LastError | null; + + /** + * The object type, which is always `vector_store.file`. + */ + object: 'vector_store.file'; + + /** + * The status of the vector store file, which can be either `in_progress`, + * `completed`, `cancelled`, or `failed`. The status `completed` indicates that the + * vector store file is ready for use. + */ + status: 'in_progress' | 'completed' | 'cancelled' | 'failed'; + + /** + * The ID of the + * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) + * that the [File](https://platform.openai.com/docs/api-reference/files) is + * attached to. + */ + vector_store_id: string; +} + +export namespace VectorStoreFile { + /** + * The last error associated with this vector store file. Will be `null` if there + * are no errors. + */ + export interface LastError { + /** + * One of `server_error` or `rate_limit_exceeded`. + */ + code: 'internal_error' | 'file_not_found' | 'parsing_error' | 'unhandled_mime_type'; + + /** + * A human-readable description of the error. + */ + message: string; + } +} + +export interface VectorStoreFileDeleted { + id: string; + + deleted: boolean; + + object: 'vector_store.file.deleted'; +} + +export interface FileCreateParams { + /** + * A [File](https://platform.openai.com/docs/api-reference/files) ID that the + * vector store should use. Useful for tools like `file_search` that can access + * files. + */ + file_id: string; +} + +export interface FileListParams extends CursorPageParams { + /** + * A cursor for use in pagination. `before` is an object ID that defines your place + * in the list. For instance, if you make a list request and receive 100 objects, + * ending with obj_foo, your subsequent call can include before=obj_foo in order to + * fetch the previous page of the list. + */ + before?: string; + + /** + * Filter by file status. One of `in_progress`, `completed`, `failed`, `cancelled`. + */ + filter?: 'in_progress' | 'completed' | 'failed' | 'cancelled'; + + /** + * Sort order by the `created_at` timestamp of the objects. `asc` for ascending + * order and `desc` for descending order. + */ + order?: 'asc' | 'desc'; +} + +export namespace Files { + export import VectorStoreFile = FilesAPI.VectorStoreFile; + export import VectorStoreFileDeleted = FilesAPI.VectorStoreFileDeleted; + export import VectorStoreFilesPage = FilesAPI.VectorStoreFilesPage; + export import FileCreateParams = FilesAPI.FileCreateParams; + export import FileListParams = FilesAPI.FileListParams; +} diff --git a/src/resources/beta/vector-stores/index.ts b/src/resources/beta/vector-stores/index.ts new file mode 100644 index 000000000..8fb787ccd --- /dev/null +++ b/src/resources/beta/vector-stores/index.ts @@ -0,0 +1,25 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +export { + VectorStore, + VectorStoreDeleted, + VectorStoreCreateParams, + VectorStoreUpdateParams, + VectorStoreListParams, + VectorStoresPage, + VectorStores, +} from './vector-stores'; +export { + VectorStoreFile, + VectorStoreFileDeleted, + FileCreateParams, + FileListParams, + VectorStoreFilesPage, + Files, +} from './files'; +export { + VectorStoreFileBatch, + FileBatchCreateParams, + FileBatchListFilesParams, + FileBatches, +} from './file-batches'; diff --git a/src/resources/beta/vector-stores/vector-stores.ts b/src/resources/beta/vector-stores/vector-stores.ts new file mode 100644 index 000000000..892d06aa4 --- /dev/null +++ b/src/resources/beta/vector-stores/vector-stores.ts @@ -0,0 +1,318 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import * as Core from 'openai/core'; +import { APIResource } from 'openai/resource'; +import { isRequestOptions } from 'openai/core'; +import * as VectorStoresAPI from 'openai/resources/beta/vector-stores/vector-stores'; +import * as FileBatchesAPI from 'openai/resources/beta/vector-stores/file-batches'; +import * as FilesAPI from 'openai/resources/beta/vector-stores/files'; +import { CursorPage, type CursorPageParams } from 'openai/pagination'; + +export class VectorStores extends APIResource { + files: FilesAPI.Files = new FilesAPI.Files(this._client); + fileBatches: FileBatchesAPI.FileBatches = new FileBatchesAPI.FileBatches(this._client); + + /** + * Create a vector store. + */ + create(body: VectorStoreCreateParams, options?: Core.RequestOptions): Core.APIPromise { + return this._client.post('/vector_stores', { + body, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, + }); + } + + /** + * Retrieves a vector store. + */ + retrieve(vectorStoreId: string, options?: Core.RequestOptions): Core.APIPromise { + return this._client.get(`/vector_stores/${vectorStoreId}`, { + ...options, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, + }); + } + + /** + * Modifies a vector store. + */ + update( + vectorStoreId: string, + body: VectorStoreUpdateParams, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this._client.post(`/vector_stores/${vectorStoreId}`, { + body, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, + }); + } + + /** + * Returns a list of vector stores. + */ + list( + query?: VectorStoreListParams, + options?: Core.RequestOptions, + ): Core.PagePromise; + list(options?: Core.RequestOptions): Core.PagePromise; + list( + query: VectorStoreListParams | Core.RequestOptions = {}, + options?: Core.RequestOptions, + ): Core.PagePromise { + if (isRequestOptions(query)) { + return this.list({}, query); + } + return this._client.getAPIList('/vector_stores', VectorStoresPage, { + query, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, + }); + } + + /** + * Delete a vector store. + */ + del(vectorStoreId: string, options?: Core.RequestOptions): Core.APIPromise { + return this._client.delete(`/vector_stores/${vectorStoreId}`, { + ...options, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, + }); + } +} + +export class VectorStoresPage extends CursorPage {} + +/** + * A vector store is a collection of processed files can be used by the + * `file_search` tool. + */ +export interface VectorStore { + /** + * The identifier, which can be referenced in API endpoints. + */ + id: string; + + /** + * The byte size of the vector store. + */ + bytes: number; + + /** + * The Unix timestamp (in seconds) for when the vector store was created. + */ + created_at: number; + + file_counts: VectorStore.FileCounts; + + /** + * The Unix timestamp (in seconds) for when the vector store was last active. + */ + last_active_at: number | null; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata: unknown | null; + + /** + * The name of the vector store. + */ + name: string; + + /** + * The object type, which is always `vector_store`. + */ + object: 'vector_store'; + + /** + * The status of the vector store, which can be either `expired`, `in_progress`, or + * `completed`. A status of `completed` indicates that the vector store is ready + * for use. + */ + status: 'expired' | 'in_progress' | 'completed'; + + /** + * The expiration policy for a vector store. + */ + expires_after?: VectorStore.ExpiresAfter; + + /** + * The Unix timestamp (in seconds) for when the vector store will expire. + */ + expires_at?: number | null; +} + +export namespace VectorStore { + export interface FileCounts { + /** + * The number of files that were cancelled. + */ + cancelled: number; + + /** + * The number of files that have been successfully processed. + */ + completed: number; + + /** + * The number of files that have failed to process. + */ + failed: number; + + /** + * The number of files that are currently being processed. + */ + in_progress: number; + + /** + * The total number of files. + */ + total: number; + } + + /** + * The expiration policy for a vector store. + */ + export interface ExpiresAfter { + /** + * Anchor timestamp after which the expiration policy applies. Supported anchors: + * `last_active_at`. + */ + anchor: 'last_active_at'; + + /** + * The number of days after the anchor time that the vector store will expire. + */ + days: number; + } +} + +export interface VectorStoreDeleted { + id: string; + + deleted: boolean; + + object: 'vector_store.deleted'; +} + +export interface VectorStoreCreateParams { + /** + * The expiration policy for a vector store. + */ + expires_after?: VectorStoreCreateParams.ExpiresAfter; + + /** + * A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that + * the vector store should use. Useful for tools like `file_search` that can access + * files. + */ + file_ids?: Array; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + + /** + * The name of the vector store. + */ + name?: string; +} + +export namespace VectorStoreCreateParams { + /** + * The expiration policy for a vector store. + */ + export interface ExpiresAfter { + /** + * Anchor timestamp after which the expiration policy applies. Supported anchors: + * `last_active_at`. + */ + anchor: 'last_active_at'; + + /** + * The number of days after the anchor time that the vector store will expire. + */ + days: number; + } +} + +export interface VectorStoreUpdateParams { + /** + * The expiration policy for a vector store. + */ + expires_after?: VectorStoreUpdateParams.ExpiresAfter | null; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maxium of 512 + * characters long. + */ + metadata?: unknown | null; + + /** + * The name of the vector store. + */ + name?: string | null; +} + +export namespace VectorStoreUpdateParams { + /** + * The expiration policy for a vector store. + */ + export interface ExpiresAfter { + /** + * Anchor timestamp after which the expiration policy applies. Supported anchors: + * `last_active_at`. + */ + anchor: 'last_active_at'; + + /** + * The number of days after the anchor time that the vector store will expire. + */ + days: number; + } +} + +export interface VectorStoreListParams extends CursorPageParams { + /** + * A cursor for use in pagination. `before` is an object ID that defines your place + * in the list. For instance, if you make a list request and receive 100 objects, + * ending with obj_foo, your subsequent call can include before=obj_foo in order to + * fetch the previous page of the list. + */ + before?: string; + + /** + * Sort order by the `created_at` timestamp of the objects. `asc` for ascending + * order and `desc` for descending order. + */ + order?: 'asc' | 'desc'; +} + +export namespace VectorStores { + export import VectorStore = VectorStoresAPI.VectorStore; + export import VectorStoreDeleted = VectorStoresAPI.VectorStoreDeleted; + export import VectorStoresPage = VectorStoresAPI.VectorStoresPage; + export import VectorStoreCreateParams = VectorStoresAPI.VectorStoreCreateParams; + export import VectorStoreUpdateParams = VectorStoresAPI.VectorStoreUpdateParams; + export import VectorStoreListParams = VectorStoresAPI.VectorStoreListParams; + export import Files = FilesAPI.Files; + export import VectorStoreFile = FilesAPI.VectorStoreFile; + export import VectorStoreFileDeleted = FilesAPI.VectorStoreFileDeleted; + export import VectorStoreFilesPage = FilesAPI.VectorStoreFilesPage; + export import FileCreateParams = FilesAPI.FileCreateParams; + export import FileListParams = FilesAPI.FileListParams; + export import FileBatches = FileBatchesAPI.FileBatches; + export import VectorStoreFileBatch = FileBatchesAPI.VectorStoreFileBatch; + export import FileBatchCreateParams = FileBatchesAPI.FileBatchCreateParams; + export import FileBatchListFilesParams = FileBatchesAPI.FileBatchListFilesParams; +} diff --git a/src/resources/fine-tuning/jobs/jobs.ts b/src/resources/fine-tuning/jobs/jobs.ts index 10b3d38d2..2469cce07 100644 --- a/src/resources/fine-tuning/jobs/jobs.ts +++ b/src/resources/fine-tuning/jobs/jobs.ts @@ -300,7 +300,7 @@ export interface JobCreateParams { /** * The ID of an uploaded file that contains training data. * - * See [upload file](https://platform.openai.com/docs/api-reference/files/upload) + * See [upload file](https://platform.openai.com/docs/api-reference/files/create) * for how to upload a file. * * Your dataset must be formatted as a JSONL file. Additionally, you must upload diff --git a/tests/api-resources/beta/assistants/assistants.test.ts b/tests/api-resources/beta/assistants.test.ts similarity index 93% rename from tests/api-resources/beta/assistants/assistants.test.ts rename to tests/api-resources/beta/assistants.test.ts index 62282148d..56ce8446a 100644 --- a/tests/api-resources/beta/assistants/assistants.test.ts +++ b/tests/api-resources/beta/assistants.test.ts @@ -24,11 +24,20 @@ describe('resource assistants', () => { const response = await openai.beta.assistants.create({ model: 'gpt-4-turbo', description: 'string', - file_ids: ['string', 'string', 'string'], instructions: 'string', metadata: {}, name: 'string', + response_format: 'none', + temperature: 1, + tool_resources: { + code_interpreter: { file_ids: ['string', 'string', 'string'] }, + file_search: { + vector_store_ids: ['string'], + vector_stores: [{ file_ids: ['string', 'string', 'string'], metadata: {} }], + }, + }, tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], + top_p: 1, }); }); diff --git a/tests/api-resources/beta/threads/messages/messages.test.ts b/tests/api-resources/beta/threads/messages.test.ts similarity index 93% rename from tests/api-resources/beta/threads/messages/messages.test.ts rename to tests/api-resources/beta/threads/messages.test.ts index 7f62944e0..a0a025869 100644 --- a/tests/api-resources/beta/threads/messages/messages.test.ts +++ b/tests/api-resources/beta/threads/messages.test.ts @@ -24,7 +24,11 @@ describe('resource messages', () => { const response = await openai.beta.threads.messages.create('string', { content: 'x', role: 'user', - file_ids: ['string'], + attachments: [ + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + ], metadata: {}, }); }); diff --git a/tests/api-resources/beta/threads/messages/files.test.ts b/tests/api-resources/beta/threads/messages/files.test.ts deleted file mode 100644 index 58c8813fe..000000000 --- a/tests/api-resources/beta/threads/messages/files.test.ts +++ /dev/null @@ -1,65 +0,0 @@ -// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. - -import OpenAI from 'openai'; -import { Response } from 'node-fetch'; - -const openai = new OpenAI({ - apiKey: 'My API Key', - baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', -}); - -describe('resource files', () => { - test('retrieve', async () => { - const responsePromise = openai.beta.threads.messages.files.retrieve( - 'thread_abc123', - 'msg_abc123', - 'file-abc123', - ); - const rawResponse = await responsePromise.asResponse(); - expect(rawResponse).toBeInstanceOf(Response); - const response = await responsePromise; - expect(response).not.toBeInstanceOf(Response); - const dataAndResponse = await responsePromise.withResponse(); - expect(dataAndResponse.data).toBe(response); - expect(dataAndResponse.response).toBe(rawResponse); - }); - - test('retrieve: request options instead of params are passed correctly', async () => { - // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect( - openai.beta.threads.messages.files.retrieve('thread_abc123', 'msg_abc123', 'file-abc123', { - path: '/_stainless_unknown_path', - }), - ).rejects.toThrow(OpenAI.NotFoundError); - }); - - test('list', async () => { - const responsePromise = openai.beta.threads.messages.files.list('string', 'string'); - const rawResponse = await responsePromise.asResponse(); - expect(rawResponse).toBeInstanceOf(Response); - const response = await responsePromise; - expect(response).not.toBeInstanceOf(Response); - const dataAndResponse = await responsePromise.withResponse(); - expect(dataAndResponse.data).toBe(response); - expect(dataAndResponse.response).toBe(rawResponse); - }); - - test('list: request options instead of params are passed correctly', async () => { - // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect( - openai.beta.threads.messages.files.list('string', 'string', { path: '/_stainless_unknown_path' }), - ).rejects.toThrow(OpenAI.NotFoundError); - }); - - test('list: request options and params are passed correctly', async () => { - // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect( - openai.beta.threads.messages.files.list( - 'string', - 'string', - { after: 'string', before: 'string', limit: 0, order: 'asc' }, - { path: '/_stainless_unknown_path' }, - ), - ).rejects.toThrow(OpenAI.NotFoundError); - }); -}); diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts index 2489d56e2..4a3743ca0 100644 --- a/tests/api-resources/beta/threads/runs/runs.test.ts +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -25,9 +25,36 @@ describe('resource runs', () => { assistant_id: 'string', additional_instructions: 'string', additional_messages: [ - { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, - { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, - { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, + { + role: 'user', + content: 'x', + attachments: [ + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + ], + metadata: {}, + }, + { + role: 'user', + content: 'x', + attachments: [ + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + ], + metadata: {}, + }, + { + role: 'user', + content: 'x', + attachments: [ + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + ], + metadata: {}, + }, ], instructions: 'string', max_completion_tokens: 256, @@ -39,6 +66,7 @@ describe('resource runs', () => { temperature: 1, tool_choice: 'none', tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], + top_p: 1, truncation_strategy: { type: 'auto', last_messages: 1 }, }); }); diff --git a/tests/api-resources/beta/threads/threads.test.ts b/tests/api-resources/beta/threads/threads.test.ts index 028a150f4..0a5f70af4 100644 --- a/tests/api-resources/beta/threads/threads.test.ts +++ b/tests/api-resources/beta/threads/threads.test.ts @@ -33,11 +33,45 @@ describe('resource threads', () => { openai.beta.threads.create( { messages: [ - { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, - { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, - { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, + { + role: 'user', + content: 'x', + attachments: [ + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + ], + metadata: {}, + }, + { + role: 'user', + content: 'x', + attachments: [ + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + ], + metadata: {}, + }, + { + role: 'user', + content: 'x', + attachments: [ + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + ], + metadata: {}, + }, ], metadata: {}, + tool_resources: { + code_interpreter: { file_ids: ['string', 'string', 'string'] }, + file_search: { + vector_store_ids: ['string'], + vector_stores: [{ file_ids: ['string', 'string', 'string'], metadata: {} }], + }, + }, }, { path: '/_stainless_unknown_path' }, ), @@ -115,14 +149,53 @@ describe('resource threads', () => { temperature: 1, thread: { messages: [ - { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, - { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, - { role: 'user', content: 'x', file_ids: ['string'], metadata: {} }, + { + role: 'user', + content: 'x', + attachments: [ + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + ], + metadata: {}, + }, + { + role: 'user', + content: 'x', + attachments: [ + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + ], + metadata: {}, + }, + { + role: 'user', + content: 'x', + attachments: [ + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + ], + metadata: {}, + }, ], + tool_resources: { + code_interpreter: { file_ids: ['string', 'string', 'string'] }, + file_search: { + vector_store_ids: ['string'], + vector_stores: [{ file_ids: ['string', 'string', 'string'], metadata: {} }], + }, + }, metadata: {}, }, tool_choice: 'none', + tool_resources: { + code_interpreter: { file_ids: ['string', 'string', 'string'] }, + file_search: { vector_store_ids: ['string'] }, + }, tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], + top_p: 1, truncation_strategy: { type: 'auto', last_messages: 1 }, }); }); diff --git a/tests/api-resources/beta/vector-stores/file-batches.test.ts b/tests/api-resources/beta/vector-stores/file-batches.test.ts new file mode 100644 index 000000000..782b33a0c --- /dev/null +++ b/tests/api-resources/beta/vector-stores/file-batches.test.ts @@ -0,0 +1,98 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import OpenAI from 'openai'; +import { Response } from 'node-fetch'; + +const openai = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('resource fileBatches', () => { + test('create: only required params', async () => { + const responsePromise = openai.beta.vectorStores.fileBatches.create('vs_abc123', { + file_ids: ['string'], + }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('create: required and optional params', async () => { + const response = await openai.beta.vectorStores.fileBatches.create('vs_abc123', { file_ids: ['string'] }); + }); + + test('retrieve', async () => { + const responsePromise = openai.beta.vectorStores.fileBatches.retrieve('vs_abc123', 'vsfb_abc123'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('retrieve: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.vectorStores.fileBatches.retrieve('vs_abc123', 'vsfb_abc123', { + path: '/_stainless_unknown_path', + }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('cancel', async () => { + const responsePromise = openai.beta.vectorStores.fileBatches.cancel('string', 'string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('cancel: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.vectorStores.fileBatches.cancel('string', 'string', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('listFiles', async () => { + const responsePromise = openai.beta.vectorStores.fileBatches.listFiles('string', 'string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('listFiles: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.vectorStores.fileBatches.listFiles('string', 'string', { + path: '/_stainless_unknown_path', + }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('listFiles: request options and params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.vectorStores.fileBatches.listFiles( + 'string', + 'string', + { after: 'string', before: 'string', filter: 'in_progress', limit: 0, order: 'asc' }, + { path: '/_stainless_unknown_path' }, + ), + ).rejects.toThrow(OpenAI.NotFoundError); + }); +}); diff --git a/tests/api-resources/beta/assistants/files.test.ts b/tests/api-resources/beta/vector-stores/files.test.ts similarity index 77% rename from tests/api-resources/beta/assistants/files.test.ts rename to tests/api-resources/beta/vector-stores/files.test.ts index e285b4664..03340753c 100644 --- a/tests/api-resources/beta/assistants/files.test.ts +++ b/tests/api-resources/beta/vector-stores/files.test.ts @@ -10,7 +10,7 @@ const openai = new OpenAI({ describe('resource files', () => { test('create: only required params', async () => { - const responsePromise = openai.beta.assistants.files.create('file-abc123', { file_id: 'string' }); + const responsePromise = openai.beta.vectorStores.files.create('vs_abc123', { file_id: 'string' }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -21,11 +21,11 @@ describe('resource files', () => { }); test('create: required and optional params', async () => { - const response = await openai.beta.assistants.files.create('file-abc123', { file_id: 'string' }); + const response = await openai.beta.vectorStores.files.create('vs_abc123', { file_id: 'string' }); }); test('retrieve', async () => { - const responsePromise = openai.beta.assistants.files.retrieve('string', 'string'); + const responsePromise = openai.beta.vectorStores.files.retrieve('vs_abc123', 'file-abc123'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -38,12 +38,14 @@ describe('resource files', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.assistants.files.retrieve('string', 'string', { path: '/_stainless_unknown_path' }), + openai.beta.vectorStores.files.retrieve('vs_abc123', 'file-abc123', { + path: '/_stainless_unknown_path', + }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('list', async () => { - const responsePromise = openai.beta.assistants.files.list('string'); + const responsePromise = openai.beta.vectorStores.files.list('string'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -56,23 +58,23 @@ describe('resource files', () => { test('list: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.assistants.files.list('string', { path: '/_stainless_unknown_path' }), + openai.beta.vectorStores.files.list('string', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('list: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.assistants.files.list( + openai.beta.vectorStores.files.list( 'string', - { after: 'string', before: 'string', limit: 0, order: 'asc' }, + { after: 'string', before: 'string', filter: 'in_progress', limit: 0, order: 'asc' }, { path: '/_stainless_unknown_path' }, ), ).rejects.toThrow(OpenAI.NotFoundError); }); test('del', async () => { - const responsePromise = openai.beta.assistants.files.del('string', 'string'); + const responsePromise = openai.beta.vectorStores.files.del('string', 'string'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -85,7 +87,7 @@ describe('resource files', () => { test('del: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.assistants.files.del('string', 'string', { path: '/_stainless_unknown_path' }), + openai.beta.vectorStores.files.del('string', 'string', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); }); diff --git a/tests/api-resources/beta/vector-stores/vector-stores.test.ts b/tests/api-resources/beta/vector-stores/vector-stores.test.ts new file mode 100644 index 000000000..445fa9ebf --- /dev/null +++ b/tests/api-resources/beta/vector-stores/vector-stores.test.ts @@ -0,0 +1,97 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import OpenAI from 'openai'; +import { Response } from 'node-fetch'; + +const openai = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('resource vectorStores', () => { + test('create', async () => { + const responsePromise = openai.beta.vectorStores.create({}); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('retrieve', async () => { + const responsePromise = openai.beta.vectorStores.retrieve('string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('retrieve: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.vectorStores.retrieve('string', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('update', async () => { + const responsePromise = openai.beta.vectorStores.update('string', {}); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('list', async () => { + const responsePromise = openai.beta.vectorStores.list(); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('list: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect(openai.beta.vectorStores.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( + OpenAI.NotFoundError, + ); + }); + + test('list: request options and params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.vectorStores.list( + { after: 'string', before: 'string', limit: 0, order: 'asc' }, + { path: '/_stainless_unknown_path' }, + ), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('del', async () => { + const responsePromise = openai.beta.vectorStores.del('string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('del: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.vectorStores.del('string', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); +}); From c2c998d3227469f9aa10d0427211d666fd2b2274 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 17 Apr 2024 12:35:09 -0400 Subject: [PATCH 358/725] release: 4.37.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c1ce2c41b..ad4acf8c5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.36.0" + ".": "4.37.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ddd03a8b..4dd6cfb63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.37.0 (2024-04-17) + +Full Changelog: [v4.36.0...v4.37.0](https://github.com/openai/openai-node/compare/v4.36.0...v4.37.0) + +### Features + +* **api:** add vector stores ([#776](https://github.com/openai/openai-node/issues/776)) ([8bb929b](https://github.com/openai/openai-node/commit/8bb929b2ee91c1bec0a00347bf4f7628652d1be3)) + ## 4.36.0 (2024-04-16) Full Changelog: [v4.35.0...v4.36.0](https://github.com/openai/openai-node/compare/v4.35.0...v4.36.0) diff --git a/README.md b/README.md index b75320e78..99cc1cc75 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.36.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.37.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index 6389062ec..fe9744b93 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.36.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.37.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index e848ce857..19ad959ee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.36.0", + "version": "4.37.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 460925cae..33019f3de 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.36.0'; // x-release-please-version +export const VERSION = '4.37.0'; // x-release-please-version From 78f5c3568d95d8e854c04049dc7d5643aa49e93f Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 17 Apr 2024 15:19:44 -0400 Subject: [PATCH 359/725] chore(api): docs and response_format response property (#778) --- src/resources/beta/assistants.ts | 38 ++++++++++- src/resources/beta/threads/runs/runs.ts | 84 +++++++++++++++++++------ src/resources/beta/threads/threads.ts | 46 +++++++++++--- 3 files changed, 140 insertions(+), 28 deletions(-) diff --git a/src/resources/beta/assistants.ts b/src/resources/beta/assistants.ts index c0827848e..a24cee045 100644 --- a/src/resources/beta/assistants.ts +++ b/src/resources/beta/assistants.ts @@ -142,6 +142,31 @@ export interface Assistant { */ tools: Array; + /** + * Specifies the format that the model must output. Compatible with + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and + * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. + * + * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * message the model generates is valid JSON. + * + * **Important:** when using JSON mode, you **must** also instruct the model to + * produce JSON yourself via a system or user message. Without this, the model may + * generate an unending stream of whitespace until the generation reaches the token + * limit, resulting in a long-running and seemingly "stuck" request. Also note that + * the message content may be partially cut off if `finish_reason="length"`, which + * indicates the generation exceeded `max_tokens` or the conversation exceeded the + * max context length. + */ + response_format?: ThreadsAPI.AssistantResponseFormatOption | null; + + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. + */ + temperature?: number | null; + /** * A set of resources that are used by the assistant's tools. The resources are * specific to the type of tool. For example, the `code_interpreter` tool requires @@ -149,6 +174,15 @@ export interface Assistant { * IDs. */ tool_resources?: Assistant.ToolResources | null; + + /** + * An alternative to sampling with temperature, called nucleus sampling, where the + * model considers the results of the tokens with top_p probability mass. So 0.1 + * means only the tokens comprising the top 10% probability mass are considered. + * + * We generally recommend altering this or temperature but not both. + */ + top_p?: number | null; } export namespace Assistant { @@ -1012,7 +1046,7 @@ export interface AssistantCreateParams { /** * Specifies the format that the model must output. Compatible with * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -1158,7 +1192,7 @@ export interface AssistantUpdateParams { /** * Specifies the format that the model must output. Compatible with * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 9e42f8a20..48cfac546 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -409,7 +409,7 @@ export interface Run { /** * Specifies the format that the model must output. Compatible with * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -446,7 +446,7 @@ export interface Run { * Controls which (if any) tool is called by the model. `none` means the model will * not call any tools and instead generates a message. `auto` is the default value * and means the model can pick between generating a message or calling a tool. - * Specifying a particular tool like `{"type": "TOOL_TYPE"}` or + * Specifying a particular tool like `{"type": "file_search"}` or * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that tool. */ @@ -459,6 +459,10 @@ export interface Run { */ tools: Array; + /** + * Controls for how a thread will be truncated prior to the run. Use this to + * control the intial context window of the run. + */ truncation_strategy: Run.TruncationStrategy | null; /** @@ -534,6 +538,10 @@ export namespace Run { } } + /** + * Controls for how a thread will be truncated prior to the run. Use this to + * control the intial context window of the run. + */ export interface TruncationStrategy { /** * The truncation strategy to use for the thread. The default is `auto`. If set to @@ -620,7 +628,7 @@ export interface RunCreateParamsBase { * The maximum number of completion tokens that may be used over the course of the * run. The run will make a best effort to use only the number of completion tokens * specified, across multiple turns of the run. If the run exceeds the number of - * completion tokens specified, the run will end with status `complete`. See + * completion tokens specified, the run will end with status `incomplete`. See * `incomplete_details` for more info. */ max_completion_tokens?: number | null; @@ -629,7 +637,7 @@ export interface RunCreateParamsBase { * The maximum number of prompt tokens that may be used over the course of the run. * The run will make a best effort to use only the number of prompt tokens * specified, across multiple turns of the run. If the run exceeds the number of - * prompt tokens specified, the run will end with status `complete`. See + * prompt tokens specified, the run will end with status `incomplete`. See * `incomplete_details` for more info. */ max_prompt_tokens?: number | null; @@ -673,7 +681,7 @@ export interface RunCreateParamsBase { /** * Specifies the format that the model must output. Compatible with * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -706,7 +714,7 @@ export interface RunCreateParamsBase { * Controls which (if any) tool is called by the model. `none` means the model will * not call any tools and instead generates a message. `auto` is the default value * and means the model can pick between generating a message or calling a tool. - * Specifying a particular tool like `{"type": "TOOL_TYPE"}` or + * Specifying a particular tool like `{"type": "file_search"}` or * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that tool. */ @@ -722,9 +730,15 @@ export interface RunCreateParamsBase { * An alternative to sampling with temperature, called nucleus sampling, where the * model considers the results of the tokens with top_p probability mass. So 0.1 * means only the tokens comprising the top 10% probability mass are considered. + * + * We generally recommend altering this or temperature but not both. */ top_p?: number | null; + /** + * Controls for how a thread will be truncated prior to the run. Use this to + * control the intial context window of the run. + */ truncation_strategy?: RunCreateParams.TruncationStrategy | null; } @@ -770,6 +784,10 @@ export namespace RunCreateParams { } } + /** + * Controls for how a thread will be truncated prior to the run. Use this to + * control the intial context window of the run. + */ export interface TruncationStrategy { /** * The truncation strategy to use for the thread. The default is `auto`. If set to @@ -865,7 +883,7 @@ export interface RunCreateAndPollParams { * The maximum number of completion tokens that may be used over the course of the * run. The run will make a best effort to use only the number of completion tokens * specified, across multiple turns of the run. If the run exceeds the number of - * completion tokens specified, the run will end with status `complete`. See + * completion tokens specified, the run will end with status `incomplete`. See * `incomplete_details` for more info. */ max_completion_tokens?: number | null; @@ -874,7 +892,7 @@ export interface RunCreateAndPollParams { * The maximum number of prompt tokens that may be used over the course of the run. * The run will make a best effort to use only the number of prompt tokens * specified, across multiple turns of the run. If the run exceeds the number of - * prompt tokens specified, the run will end with status `complete`. See + * prompt tokens specified, the run will end with status `incomplete`. See * `incomplete_details` for more info. */ max_prompt_tokens?: number | null; @@ -918,7 +936,7 @@ export interface RunCreateAndPollParams { /** * Specifies the format that the model must output. Compatible with * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -944,7 +962,7 @@ export interface RunCreateAndPollParams { * Controls which (if any) tool is called by the model. `none` means the model will * not call any tools and instead generates a message. `auto` is the default value * and means the model can pick between generating a message or calling a tool. - * Specifying a particular tool like `{"type": "TOOL_TYPE"}` or + * Specifying a particular tool like `{"type": "file_search"}` or * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that tool. */ @@ -960,9 +978,15 @@ export interface RunCreateAndPollParams { * An alternative to sampling with temperature, called nucleus sampling, where the * model considers the results of the tokens with top_p probability mass. So 0.1 * means only the tokens comprising the top 10% probability mass are considered. + * + * We generally recommend altering this or temperature but not both. */ top_p?: number | null; + /** + * Controls for how a thread will be truncated prior to the run. Use this to + * control the intial context window of the run. + */ truncation_strategy?: RunCreateAndPollParams.TruncationStrategy | null; } @@ -1008,6 +1032,10 @@ export namespace RunCreateAndPollParams { } } + /** + * Controls for how a thread will be truncated prior to the run. Use this to + * control the intial context window of the run. + */ export interface TruncationStrategy { /** * The truncation strategy to use for the thread. The default is `auto`. If set to @@ -1056,7 +1084,7 @@ export interface RunCreateAndStreamParams { * The maximum number of completion tokens that may be used over the course of the * run. The run will make a best effort to use only the number of completion tokens * specified, across multiple turns of the run. If the run exceeds the number of - * completion tokens specified, the run will end with status `complete`. See + * completion tokens specified, the run will end with status `incomplete`. See * `incomplete_details` for more info. */ max_completion_tokens?: number | null; @@ -1065,7 +1093,7 @@ export interface RunCreateAndStreamParams { * The maximum number of prompt tokens that may be used over the course of the run. * The run will make a best effort to use only the number of prompt tokens * specified, across multiple turns of the run. If the run exceeds the number of - * prompt tokens specified, the run will end with status `complete`. See + * prompt tokens specified, the run will end with status `incomplete`. See * `incomplete_details` for more info. */ max_prompt_tokens?: number | null; @@ -1109,7 +1137,7 @@ export interface RunCreateAndStreamParams { /** * Specifies the format that the model must output. Compatible with * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -1135,7 +1163,7 @@ export interface RunCreateAndStreamParams { * Controls which (if any) tool is called by the model. `none` means the model will * not call any tools and instead generates a message. `auto` is the default value * and means the model can pick between generating a message or calling a tool. - * Specifying a particular tool like `{"type": "TOOL_TYPE"}` or + * Specifying a particular tool like `{"type": "file_search"}` or * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that tool. */ @@ -1151,9 +1179,15 @@ export interface RunCreateAndStreamParams { * An alternative to sampling with temperature, called nucleus sampling, where the * model considers the results of the tokens with top_p probability mass. So 0.1 * means only the tokens comprising the top 10% probability mass are considered. + * + * We generally recommend altering this or temperature but not both. */ top_p?: number | null; + /** + * Controls for how a thread will be truncated prior to the run. Use this to + * control the intial context window of the run. + */ truncation_strategy?: RunCreateAndStreamParams.TruncationStrategy | null; } @@ -1199,6 +1233,10 @@ export namespace RunCreateAndStreamParams { } } + /** + * Controls for how a thread will be truncated prior to the run. Use this to + * control the intial context window of the run. + */ export interface TruncationStrategy { /** * The truncation strategy to use for the thread. The default is `auto`. If set to @@ -1247,7 +1285,7 @@ export interface RunStreamParams { * The maximum number of completion tokens that may be used over the course of the * run. The run will make a best effort to use only the number of completion tokens * specified, across multiple turns of the run. If the run exceeds the number of - * completion tokens specified, the run will end with status `complete`. See + * completion tokens specified, the run will end with status `incomplete`. See * `incomplete_details` for more info. */ max_completion_tokens?: number | null; @@ -1256,7 +1294,7 @@ export interface RunStreamParams { * The maximum number of prompt tokens that may be used over the course of the run. * The run will make a best effort to use only the number of prompt tokens * specified, across multiple turns of the run. If the run exceeds the number of - * prompt tokens specified, the run will end with status `complete`. See + * prompt tokens specified, the run will end with status `incomplete`. See * `incomplete_details` for more info. */ max_prompt_tokens?: number | null; @@ -1300,7 +1338,7 @@ export interface RunStreamParams { /** * Specifies the format that the model must output. Compatible with * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -1326,7 +1364,7 @@ export interface RunStreamParams { * Controls which (if any) tool is called by the model. `none` means the model will * not call any tools and instead generates a message. `auto` is the default value * and means the model can pick between generating a message or calling a tool. - * Specifying a particular tool like `{"type": "TOOL_TYPE"}` or + * Specifying a particular tool like `{"type": "file_search"}` or * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that tool. */ @@ -1342,9 +1380,15 @@ export interface RunStreamParams { * An alternative to sampling with temperature, called nucleus sampling, where the * model considers the results of the tokens with top_p probability mass. So 0.1 * means only the tokens comprising the top 10% probability mass are considered. + * + * We generally recommend altering this or temperature but not both. */ top_p?: number | null; + /** + * Controls for how a thread will be truncated prior to the run. Use this to + * control the intial context window of the run. + */ truncation_strategy?: RunStreamParams.TruncationStrategy | null; } @@ -1390,6 +1434,10 @@ export namespace RunStreamParams { } } + /** + * Controls for how a thread will be truncated prior to the run. Use this to + * control the intial context window of the run. + */ export interface TruncationStrategy { /** * The truncation strategy to use for the thread. The default is `auto`. If set to diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index f3590ed80..6f1e761de 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -131,7 +131,7 @@ export interface AssistantResponseFormat { /** * Specifies the format that the model must output. Compatible with * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -170,7 +170,7 @@ export interface AssistantToolChoiceFunction { * Controls which (if any) tool is called by the model. `none` means the model will * not call any tools and instead generates a message. `auto` is the default value * and means the model can pick between generating a message or calling a tool. - * Specifying a particular tool like `{"type": "TOOL_TYPE"}` or + * Specifying a particular tool like `{"type": "file_search"}` or * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that tool. */ @@ -511,7 +511,7 @@ export interface ThreadCreateAndRunParamsBase { /** * Specifies the format that the model must output. Compatible with * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -549,7 +549,7 @@ export interface ThreadCreateAndRunParamsBase { * Controls which (if any) tool is called by the model. `none` means the model will * not call any tools and instead generates a message. `auto` is the default value * and means the model can pick between generating a message or calling a tool. - * Specifying a particular tool like `{"type": "TOOL_TYPE"}` or + * Specifying a particular tool like `{"type": "file_search"}` or * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that tool. */ @@ -575,9 +575,15 @@ export interface ThreadCreateAndRunParamsBase { * An alternative to sampling with temperature, called nucleus sampling, where the * model considers the results of the tokens with top_p probability mass. So 0.1 * means only the tokens comprising the top 10% probability mass are considered. + * + * We generally recommend altering this or temperature but not both. */ top_p?: number | null; + /** + * Controls for how a thread will be truncated prior to the run. Use this to + * control the intial context window of the run. + */ truncation_strategy?: ThreadCreateAndRunParams.TruncationStrategy | null; } @@ -745,6 +751,10 @@ export namespace ThreadCreateAndRunParams { } } + /** + * Controls for how a thread will be truncated prior to the run. Use this to + * control the intial context window of the run. + */ export interface TruncationStrategy { /** * The truncation strategy to use for the thread. The default is `auto`. If set to @@ -854,7 +864,7 @@ export interface ThreadCreateAndRunPollParams { /** * Specifies the format that the model must output. Compatible with * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -885,7 +895,7 @@ export interface ThreadCreateAndRunPollParams { * Controls which (if any) tool is called by the model. `none` means the model will * not call any tools and instead generates a message. `auto` is the default value * and means the model can pick between generating a message or calling a tool. - * Specifying a particular tool like `{"type": "TOOL_TYPE"}` or + * Specifying a particular tool like `{"type": "file_search"}` or * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that tool. */ @@ -911,9 +921,15 @@ export interface ThreadCreateAndRunPollParams { * An alternative to sampling with temperature, called nucleus sampling, where the * model considers the results of the tokens with top_p probability mass. So 0.1 * means only the tokens comprising the top 10% probability mass are considered. + * + * We generally recommend altering this or temperature but not both. */ top_p?: number | null; + /** + * Controls for how a thread will be truncated prior to the run. Use this to + * control the intial context window of the run. + */ truncation_strategy?: ThreadCreateAndRunPollParams.TruncationStrategy | null; } @@ -1081,6 +1097,10 @@ export namespace ThreadCreateAndRunPollParams { } } + /** + * Controls for how a thread will be truncated prior to the run. Use this to + * control the intial context window of the run. + */ export interface TruncationStrategy { /** * The truncation strategy to use for the thread. The default is `auto`. If set to @@ -1169,7 +1189,7 @@ export interface ThreadCreateAndRunStreamParams { /** * Specifies the format that the model must output. Compatible with * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -1200,7 +1220,7 @@ export interface ThreadCreateAndRunStreamParams { * Controls which (if any) tool is called by the model. `none` means the model will * not call any tools and instead generates a message. `auto` is the default value * and means the model can pick between generating a message or calling a tool. - * Specifying a particular tool like `{"type": "TOOL_TYPE"}` or + * Specifying a particular tool like `{"type": "file_search"}` or * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that tool. */ @@ -1226,9 +1246,15 @@ export interface ThreadCreateAndRunStreamParams { * An alternative to sampling with temperature, called nucleus sampling, where the * model considers the results of the tokens with top_p probability mass. So 0.1 * means only the tokens comprising the top 10% probability mass are considered. + * + * We generally recommend altering this or temperature but not both. */ top_p?: number | null; + /** + * Controls for how a thread will be truncated prior to the run. Use this to + * control the intial context window of the run. + */ truncation_strategy?: ThreadCreateAndRunStreamParams.TruncationStrategy | null; } @@ -1396,6 +1422,10 @@ export namespace ThreadCreateAndRunStreamParams { } } + /** + * Controls for how a thread will be truncated prior to the run. Use this to + * control the intial context window of the run. + */ export interface TruncationStrategy { /** * The truncation strategy to use for the thread. The default is `auto`. If set to From f3a5360f9ca94c9d04a9141444a617b6cc04df86 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 17 Apr 2024 15:20:05 -0400 Subject: [PATCH 360/725] release: 4.37.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ad4acf8c5..b53631554 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.37.0" + ".": "4.37.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4dd6cfb63..7483847df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.37.1 (2024-04-17) + +Full Changelog: [v4.37.0...v4.37.1](https://github.com/openai/openai-node/compare/v4.37.0...v4.37.1) + +### Chores + +* **api:** docs and response_format response property ([#778](https://github.com/openai/openai-node/issues/778)) ([78f5c35](https://github.com/openai/openai-node/commit/78f5c3568d95d8e854c04049dc7d5643aa49e93f)) + ## 4.37.0 (2024-04-17) Full Changelog: [v4.36.0...v4.37.0](https://github.com/openai/openai-node/compare/v4.36.0...v4.37.0) diff --git a/README.md b/README.md index 99cc1cc75..8c3ee4e08 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.37.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.37.1/mod.ts'; ``` diff --git a/build-deno b/build-deno index fe9744b93..64209f670 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.37.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.37.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 19ad959ee..1adeb496e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.37.0", + "version": "4.37.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 33019f3de..5f2e363d7 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.37.0'; // x-release-please-version +export const VERSION = '4.37.1'; // x-release-please-version From 442138d8cfb484f203350142f2cdb7e05bcfd30d Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 18 Apr 2024 10:48:38 -0400 Subject: [PATCH 361/725] feat(api): batch list endpoint (#781) --- .stats.yml | 2 +- api.md | 1 + src/index.ts | 2 ++ src/resources/batches.ts | 23 +++++++++++++++++++++++ src/resources/index.ts | 10 +++++++++- tests/api-resources/batches.test.ts | 25 +++++++++++++++++++++++++ 6 files changed, 61 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 2814bb777..c9a9bfa4a 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1 +1 @@ -configured_endpoints: 62 +configured_endpoints: 63 diff --git a/api.md b/api.md index 8161fb2c7..e7a8d3a31 100644 --- a/api.md +++ b/api.md @@ -378,4 +378,5 @@ Methods: - client.batches.create({ ...params }) -> Batch - client.batches.retrieve(batchId) -> Batch +- client.batches.list({ ...params }) -> BatchesPage - client.batches.cancel(batchId) -> Batch diff --git a/src/index.ts b/src/index.ts index 7a776b2c1..8beec1e67 100644 --- a/src/index.ts +++ b/src/index.ts @@ -302,7 +302,9 @@ export namespace OpenAI { export import Batch = API.Batch; export import BatchError = API.BatchError; export import BatchRequestCounts = API.BatchRequestCounts; + export import BatchesPage = API.BatchesPage; export import BatchCreateParams = API.BatchCreateParams; + export import BatchListParams = API.BatchListParams; export import ErrorObject = API.ErrorObject; export import FunctionDefinition = API.FunctionDefinition; diff --git a/src/resources/batches.ts b/src/resources/batches.ts index 75b491a16..d0bb891e3 100644 --- a/src/resources/batches.ts +++ b/src/resources/batches.ts @@ -2,7 +2,9 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; +import { isRequestOptions } from 'openai/core'; import * as BatchesAPI from 'openai/resources/batches'; +import { CursorPage, type CursorPageParams } from 'openai/pagination'; export class Batches extends APIResource { /** @@ -19,6 +21,21 @@ export class Batches extends APIResource { return this._client.get(`/batches/${batchId}`, options); } + /** + * List your organization's batches. + */ + list(query?: BatchListParams, options?: Core.RequestOptions): Core.PagePromise; + list(options?: Core.RequestOptions): Core.PagePromise; + list( + query: BatchListParams | Core.RequestOptions = {}, + options?: Core.RequestOptions, + ): Core.PagePromise { + if (isRequestOptions(query)) { + return this.list({}, query); + } + return this._client.getAPIList('/batches', BatchesPage, { query, ...options }); + } + /** * Cancels an in-progress batch. */ @@ -27,6 +44,8 @@ export class Batches extends APIResource { } } +export class BatchesPage extends CursorPage {} + export interface Batch { id: string; @@ -217,9 +236,13 @@ export interface BatchCreateParams { metadata?: Record | null; } +export interface BatchListParams extends CursorPageParams {} + export namespace Batches { export import Batch = BatchesAPI.Batch; export import BatchError = BatchesAPI.BatchError; export import BatchRequestCounts = BatchesAPI.BatchRequestCounts; + export import BatchesPage = BatchesAPI.BatchesPage; export import BatchCreateParams = BatchesAPI.BatchCreateParams; + export import BatchListParams = BatchesAPI.BatchListParams; } diff --git a/src/resources/index.ts b/src/resources/index.ts index 282e57ea1..6f8e8564c 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -3,7 +3,15 @@ export * from './chat/index'; export * from './shared'; export { Audio } from './audio/audio'; -export { Batch, BatchError, BatchRequestCounts, BatchCreateParams, Batches } from './batches'; +export { + Batch, + BatchError, + BatchRequestCounts, + BatchCreateParams, + BatchListParams, + BatchesPage, + Batches, +} from './batches'; export { Beta } from './beta/beta'; export { Completion, diff --git a/tests/api-resources/batches.test.ts b/tests/api-resources/batches.test.ts index e4a9015d1..2cd845de6 100644 --- a/tests/api-resources/batches.test.ts +++ b/tests/api-resources/batches.test.ts @@ -51,6 +51,31 @@ describe('resource batches', () => { ); }); + test('list', async () => { + const responsePromise = openai.batches.list(); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('list: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect(openai.batches.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( + OpenAI.NotFoundError, + ); + }); + + test('list: request options and params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.batches.list({ after: 'string', limit: 0 }, { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + test('cancel', async () => { const responsePromise = openai.batches.cancel('string'); const rawResponse = await responsePromise.asResponse(); From a28e0ba60b59f7a85a03f48a0690477a27b7ca4f Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 18 Apr 2024 10:49:00 -0400 Subject: [PATCH 362/725] release: 4.38.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b53631554..b5441c013 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.37.1" + ".": "4.38.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7483847df..069aa171f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.38.0 (2024-04-18) + +Full Changelog: [v4.37.1...v4.38.0](https://github.com/openai/openai-node/compare/v4.37.1...v4.38.0) + +### Features + +* **api:** batch list endpoint ([#781](https://github.com/openai/openai-node/issues/781)) ([d226759](https://github.com/openai/openai-node/commit/d226759164fbed33198d8bdc315c98e1052dade8)) + ## 4.37.1 (2024-04-17) Full Changelog: [v4.37.0...v4.37.1](https://github.com/openai/openai-node/compare/v4.37.0...v4.37.1) diff --git a/README.md b/README.md index 8c3ee4e08..dade8aa9c 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.37.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.38.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index 64209f670..8706c6633 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.37.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.38.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 1adeb496e..b331e024f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.37.1", + "version": "4.38.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 5f2e363d7..e36007fb9 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.37.1'; // x-release-please-version +export const VERSION = '4.38.0'; // x-release-please-version From 40c7e23900db7a8af43a23a9eb24b363a076a044 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 18 Apr 2024 18:32:30 -0400 Subject: [PATCH 363/725] fix(api): correct types for attachments (#783) --- src/resources/beta/threads/messages.ts | 8 ++--- src/resources/beta/threads/runs/runs.ts | 16 ++++----- src/resources/beta/threads/threads.ts | 16 ++++----- .../beta/threads/messages.test.ts | 6 ++-- .../beta/threads/runs/runs.test.ts | 18 +++++----- .../beta/threads/threads.test.ts | 36 +++++++++---------- 6 files changed, 50 insertions(+), 50 deletions(-) diff --git a/src/resources/beta/threads/messages.ts b/src/resources/beta/threads/messages.ts index f17b8508d..68fee1a94 100644 --- a/src/resources/beta/threads/messages.ts +++ b/src/resources/beta/threads/messages.ts @@ -369,12 +369,12 @@ export interface Message { export namespace Message { export interface Attachment { - add_to?: Array<'file_search' | 'code_interpreter'>; - /** * The ID of the file to attach to the message. */ file_id?: string; + + tools?: Array<'file_search' | 'code_interpreter'>; } /** @@ -523,12 +523,12 @@ export interface MessageCreateParams { export namespace MessageCreateParams { export interface Attachment { - add_to?: Array<'file_search' | 'code_interpreter'>; - /** * The ID of the file to attach to the message. */ file_id?: string; + + tools?: Array<'file_search' | 'code_interpreter'>; } } diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 48cfac546..d48619fba 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -775,12 +775,12 @@ export namespace RunCreateParams { export namespace AdditionalMessage { export interface Attachment { - add_to?: Array<'file_search' | 'code_interpreter'>; - /** * The ID of the file to attach to the message. */ file_id?: string; + + tools?: Array<'file_search' | 'code_interpreter'>; } } @@ -1023,12 +1023,12 @@ export namespace RunCreateAndPollParams { export namespace AdditionalMessage { export interface Attachment { - add_to?: Array<'file_search' | 'code_interpreter'>; - /** * The ID of the file to attach to the message. */ file_id?: string; + + tools?: Array<'file_search' | 'code_interpreter'>; } } @@ -1224,12 +1224,12 @@ export namespace RunCreateAndStreamParams { export namespace AdditionalMessage { export interface Attachment { - add_to?: Array<'file_search' | 'code_interpreter'>; - /** * The ID of the file to attach to the message. */ file_id?: string; + + tools?: Array<'file_search' | 'code_interpreter'>; } } @@ -1425,12 +1425,12 @@ export namespace RunStreamParams { export namespace AdditionalMessage { export interface Attachment { - add_to?: Array<'file_search' | 'code_interpreter'>; - /** * The ID of the file to attach to the message. */ file_id?: string; + + tools?: Array<'file_search' | 'code_interpreter'>; } } diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 6f1e761de..5f325d33a 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -313,12 +313,12 @@ export namespace ThreadCreateParams { export namespace Message { export interface Attachment { - add_to?: Array<'file_search' | 'code_interpreter'>; - /** * The ID of the file to attach to the message. */ file_id?: string; + + tools?: Array<'file_search' | 'code_interpreter'>; } } @@ -648,12 +648,12 @@ export namespace ThreadCreateAndRunParams { export namespace Message { export interface Attachment { - add_to?: Array<'file_search' | 'code_interpreter'>; - /** * The ID of the file to attach to the message. */ file_id?: string; + + tools?: Array<'file_search' | 'code_interpreter'>; } } @@ -994,12 +994,12 @@ export namespace ThreadCreateAndRunPollParams { export namespace Message { export interface Attachment { - add_to?: Array<'file_search' | 'code_interpreter'>; - /** * The ID of the file to attach to the message. */ file_id?: string; + + tools?: Array<'file_search' | 'code_interpreter'>; } } @@ -1319,12 +1319,12 @@ export namespace ThreadCreateAndRunStreamParams { export namespace Message { export interface Attachment { - add_to?: Array<'file_search' | 'code_interpreter'>; - /** * The ID of the file to attach to the message. */ file_id?: string; + + tools?: Array<'file_search' | 'code_interpreter'>; } } diff --git a/tests/api-resources/beta/threads/messages.test.ts b/tests/api-resources/beta/threads/messages.test.ts index a0a025869..61ccebe9f 100644 --- a/tests/api-resources/beta/threads/messages.test.ts +++ b/tests/api-resources/beta/threads/messages.test.ts @@ -25,9 +25,9 @@ describe('resource messages', () => { content: 'x', role: 'user', attachments: [ - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, ], metadata: {}, }); diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts index 4a3743ca0..ea9c0761e 100644 --- a/tests/api-resources/beta/threads/runs/runs.test.ts +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -29,9 +29,9 @@ describe('resource runs', () => { role: 'user', content: 'x', attachments: [ - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, ], metadata: {}, }, @@ -39,9 +39,9 @@ describe('resource runs', () => { role: 'user', content: 'x', attachments: [ - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, ], metadata: {}, }, @@ -49,9 +49,9 @@ describe('resource runs', () => { role: 'user', content: 'x', attachments: [ - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, ], metadata: {}, }, diff --git a/tests/api-resources/beta/threads/threads.test.ts b/tests/api-resources/beta/threads/threads.test.ts index 0a5f70af4..6a697865b 100644 --- a/tests/api-resources/beta/threads/threads.test.ts +++ b/tests/api-resources/beta/threads/threads.test.ts @@ -37,9 +37,9 @@ describe('resource threads', () => { role: 'user', content: 'x', attachments: [ - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, ], metadata: {}, }, @@ -47,9 +47,9 @@ describe('resource threads', () => { role: 'user', content: 'x', attachments: [ - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, ], metadata: {}, }, @@ -57,9 +57,9 @@ describe('resource threads', () => { role: 'user', content: 'x', attachments: [ - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, ], metadata: {}, }, @@ -153,9 +153,9 @@ describe('resource threads', () => { role: 'user', content: 'x', attachments: [ - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, ], metadata: {}, }, @@ -163,9 +163,9 @@ describe('resource threads', () => { role: 'user', content: 'x', attachments: [ - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, ], metadata: {}, }, @@ -173,9 +173,9 @@ describe('resource threads', () => { role: 'user', content: 'x', attachments: [ - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, - { file_id: 'string', add_to: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, ], metadata: {}, }, From 73250098e554f130ba38b36f673b257808ee2f37 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 18 Apr 2024 18:32:50 -0400 Subject: [PATCH 364/725] release: 4.38.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b5441c013..27353849a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.38.0" + ".": "4.38.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 069aa171f..9e0f99a06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.38.1 (2024-04-18) + +Full Changelog: [v4.38.0...v4.38.1](https://github.com/openai/openai-node/compare/v4.38.0...v4.38.1) + +### Bug Fixes + +* **api:** correct types for attachments ([#783](https://github.com/openai/openai-node/issues/783)) ([6893631](https://github.com/openai/openai-node/commit/6893631334f75e232ba130f5dd67f1230b1e5fa0)) + ## 4.38.0 (2024-04-18) Full Changelog: [v4.37.1...v4.38.0](https://github.com/openai/openai-node/compare/v4.37.1...v4.38.0) diff --git a/README.md b/README.md index dade8aa9c..cbc719a7c 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.38.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.38.1/mod.ts'; ``` diff --git a/build-deno b/build-deno index 8706c6633..0c7e2f7c1 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.38.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.38.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index b331e024f..a1ef89c27 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.38.0", + "version": "4.38.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index e36007fb9..dac71224d 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.38.0'; // x-release-please-version +export const VERSION = '4.38.1'; // x-release-please-version From 35fe06e8811d2692f2ae4adc23eb2ad77934592d Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 19 Apr 2024 13:42:26 -0400 Subject: [PATCH 365/725] fix(api): correct types for message attachment tools (#787) --- src/resources/beta/threads/messages.ts | 11 +- src/resources/beta/threads/runs/runs.ts | 20 ++- src/resources/beta/threads/threads.ts | 20 ++- .../beta/threads/messages.test.ts | 15 +- .../beta/threads/runs/runs.test.ts | 81 ++++++++- .../beta/threads/threads.test.ts | 162 ++++++++++++++++-- 6 files changed, 269 insertions(+), 40 deletions(-) diff --git a/src/resources/beta/threads/messages.ts b/src/resources/beta/threads/messages.ts index 68fee1a94..559395ca5 100644 --- a/src/resources/beta/threads/messages.ts +++ b/src/resources/beta/threads/messages.ts @@ -4,6 +4,7 @@ import * as Core from 'openai/core'; import { APIResource } from 'openai/resource'; import { isRequestOptions } from 'openai/core'; import * as MessagesAPI from 'openai/resources/beta/threads/messages'; +import * as AssistantsAPI from 'openai/resources/beta/assistants'; import { CursorPage, type CursorPageParams } from 'openai/pagination'; export class Messages extends APIResource { @@ -374,7 +375,10 @@ export namespace Message { */ file_id?: string; - tools?: Array<'file_search' | 'code_interpreter'>; + /** + * The tools to add this file to. + */ + tools?: Array; } /** @@ -528,7 +532,10 @@ export namespace MessageCreateParams { */ file_id?: string; - tools?: Array<'file_search' | 'code_interpreter'>; + /** + * The tools to add this file to. + */ + tools?: Array; } } diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index d48619fba..a15565450 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -780,7 +780,10 @@ export namespace RunCreateParams { */ file_id?: string; - tools?: Array<'file_search' | 'code_interpreter'>; + /** + * The tools to add this file to. + */ + tools?: Array; } } @@ -1028,7 +1031,10 @@ export namespace RunCreateAndPollParams { */ file_id?: string; - tools?: Array<'file_search' | 'code_interpreter'>; + /** + * The tools to add this file to. + */ + tools?: Array; } } @@ -1229,7 +1235,10 @@ export namespace RunCreateAndStreamParams { */ file_id?: string; - tools?: Array<'file_search' | 'code_interpreter'>; + /** + * The tools to add this file to. + */ + tools?: Array; } } @@ -1430,7 +1439,10 @@ export namespace RunStreamParams { */ file_id?: string; - tools?: Array<'file_search' | 'code_interpreter'>; + /** + * The tools to add this file to. + */ + tools?: Array; } } diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 5f325d33a..81ba31dba 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -318,7 +318,10 @@ export namespace ThreadCreateParams { */ file_id?: string; - tools?: Array<'file_search' | 'code_interpreter'>; + /** + * The tools to add this file to. + */ + tools?: Array; } } @@ -653,7 +656,10 @@ export namespace ThreadCreateAndRunParams { */ file_id?: string; - tools?: Array<'file_search' | 'code_interpreter'>; + /** + * The tools to add this file to. + */ + tools?: Array; } } @@ -999,7 +1005,10 @@ export namespace ThreadCreateAndRunPollParams { */ file_id?: string; - tools?: Array<'file_search' | 'code_interpreter'>; + /** + * The tools to add this file to. + */ + tools?: Array; } } @@ -1324,7 +1333,10 @@ export namespace ThreadCreateAndRunStreamParams { */ file_id?: string; - tools?: Array<'file_search' | 'code_interpreter'>; + /** + * The tools to add this file to. + */ + tools?: Array; } } diff --git a/tests/api-resources/beta/threads/messages.test.ts b/tests/api-resources/beta/threads/messages.test.ts index 61ccebe9f..eb1e78133 100644 --- a/tests/api-resources/beta/threads/messages.test.ts +++ b/tests/api-resources/beta/threads/messages.test.ts @@ -25,9 +25,18 @@ describe('resource messages', () => { content: 'x', role: 'user', attachments: [ - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { + file_id: 'string', + tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], + }, + { + file_id: 'string', + tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], + }, + { + file_id: 'string', + tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], + }, ], metadata: {}, }); diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts index ea9c0761e..85d97c34c 100644 --- a/tests/api-resources/beta/threads/runs/runs.test.ts +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -29,9 +29,30 @@ describe('resource runs', () => { role: 'user', content: 'x', attachments: [ - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, ], metadata: {}, }, @@ -39,9 +60,30 @@ describe('resource runs', () => { role: 'user', content: 'x', attachments: [ - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, ], metadata: {}, }, @@ -49,9 +91,30 @@ describe('resource runs', () => { role: 'user', content: 'x', attachments: [ - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, ], metadata: {}, }, diff --git a/tests/api-resources/beta/threads/threads.test.ts b/tests/api-resources/beta/threads/threads.test.ts index 6a697865b..f2521cd5b 100644 --- a/tests/api-resources/beta/threads/threads.test.ts +++ b/tests/api-resources/beta/threads/threads.test.ts @@ -37,9 +37,30 @@ describe('resource threads', () => { role: 'user', content: 'x', attachments: [ - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, ], metadata: {}, }, @@ -47,9 +68,30 @@ describe('resource threads', () => { role: 'user', content: 'x', attachments: [ - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, ], metadata: {}, }, @@ -57,9 +99,30 @@ describe('resource threads', () => { role: 'user', content: 'x', attachments: [ - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, ], metadata: {}, }, @@ -153,9 +216,30 @@ describe('resource threads', () => { role: 'user', content: 'x', attachments: [ - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, ], metadata: {}, }, @@ -163,9 +247,30 @@ describe('resource threads', () => { role: 'user', content: 'x', attachments: [ - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, ], metadata: {}, }, @@ -173,9 +278,30 @@ describe('resource threads', () => { role: 'user', content: 'x', attachments: [ - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, - { file_id: 'string', tools: ['file_search', 'code_interpreter'] }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, + { + file_id: 'string', + tools: [ + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + { type: 'code_interpreter' }, + ], + }, ], metadata: {}, }, From 4c041e03013dbd7de5bfeb02db42c5e657217167 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 19 Apr 2024 13:42:48 -0400 Subject: [PATCH 366/725] release: 4.38.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 27353849a..898054ccf 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.38.1" + ".": "4.38.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e0f99a06..e43fa8c67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.38.2 (2024-04-19) + +Full Changelog: [v4.38.1...v4.38.2](https://github.com/openai/openai-node/compare/v4.38.1...v4.38.2) + +### Bug Fixes + +* **api:** correct types for message attachment tools ([#787](https://github.com/openai/openai-node/issues/787)) ([8626884](https://github.com/openai/openai-node/commit/8626884abd2494aa081db9e50a2f268b6cebc5df)) + ## 4.38.1 (2024-04-18) Full Changelog: [v4.38.0...v4.38.1](https://github.com/openai/openai-node/compare/v4.38.0...v4.38.1) diff --git a/README.md b/README.md index cbc719a7c..2637372d7 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.38.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.38.2/mod.ts'; ``` diff --git a/build-deno b/build-deno index 0c7e2f7c1..8dfcec58d 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.38.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.38.2/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index a1ef89c27..74ced775c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.38.1", + "version": "4.38.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index dac71224d..cd209780f 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.38.1'; // x-release-please-version +export const VERSION = '4.38.2'; // x-release-please-version From 8947f195b2dfab7ceebe1e0bb5c886e229cd541f Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 22 Apr 2024 07:40:50 -0400 Subject: [PATCH 367/725] chore(internal): use @swc/jest for running tests (#793) --- jest.config.ts | 3 ++ package.json | 2 + src/index.ts | 7 ++-- yarn.lock | 102 +++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 110 insertions(+), 4 deletions(-) diff --git a/jest.config.ts b/jest.config.ts index f746f4bf9..445a87301 100644 --- a/jest.config.ts +++ b/jest.config.ts @@ -3,6 +3,9 @@ import type { JestConfigWithTsJest } from 'ts-jest'; const config: JestConfigWithTsJest = { preset: 'ts-jest/presets/default-esm', testEnvironment: 'node', + transform: { + '^.+\\.(t|j)sx?$': ['@swc/jest', { sourceMaps: 'inline' }], + }, moduleNameMapper: { '^openai$': '/src/index.ts', '^openai/_shims/auto/(.*)$': '/src/_shims/auto/$1-node', diff --git a/package.json b/package.json index 74ced775c..d43a76fe7 100644 --- a/package.json +++ b/package.json @@ -35,6 +35,8 @@ "web-streams-polyfill": "^3.2.1" }, "devDependencies": { + "@swc/core": "^1.3.102", + "@swc/jest": "^0.2.29", "@types/jest": "^29.4.0", "@typescript-eslint/eslint-plugin": "^6.7.0", "@typescript-eslint/parser": "^6.7.0", diff --git a/src/index.ts b/src/index.ts index 8beec1e67..1741a4816 100644 --- a/src/index.ts +++ b/src/index.ts @@ -194,6 +194,9 @@ export class OpenAI extends Core.APIClient { static InternalServerError = Errors.InternalServerError; static PermissionDeniedError = Errors.PermissionDeniedError; static UnprocessableEntityError = Errors.UnprocessableEntityError; + + static toFile = Uploads.toFile; + static fileFromPath = Uploads.fileFromPath; } export const { @@ -216,10 +219,6 @@ export import toFile = Uploads.toFile; export import fileFromPath = Uploads.fileFromPath; export namespace OpenAI { - // Helper functions - export import toFile = Uploads.toFile; - export import fileFromPath = Uploads.fileFromPath; - export import RequestOptions = Core.RequestOptions; export import Page = Pagination.Page; diff --git a/yarn.lock b/yarn.lock index 9cef21d9b..dda4d2e4a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -432,6 +432,13 @@ slash "^3.0.0" strip-ansi "^6.0.0" +"@jest/create-cache-key-function@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/create-cache-key-function/-/create-cache-key-function-29.7.0.tgz#793be38148fab78e65f40ae30c36785f4ad859f0" + integrity sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA== + dependencies: + "@jest/types" "^29.6.3" + "@jest/environment@^29.7.0": version "29.7.0" resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.7.0.tgz#24d61f54ff1f786f3cd4073b4b94416383baf2a7" @@ -662,6 +669,96 @@ dependencies: "@sinonjs/commons" "^3.0.0" +"@swc/core-darwin-arm64@1.4.16": + version "1.4.16" + resolved "https://registry.yarnpkg.com/@swc/core-darwin-arm64/-/core-darwin-arm64-1.4.16.tgz#2cd45d709ce76d448d96bf8d0006849541436611" + integrity sha512-UOCcH1GvjRnnM/LWT6VCGpIk0OhHRq6v1U6QXuPt5wVsgXnXQwnf5k3sG5Cm56hQHDvhRPY6HCsHi/p0oek8oQ== + +"@swc/core-darwin-x64@1.4.16": + version "1.4.16" + resolved "https://registry.yarnpkg.com/@swc/core-darwin-x64/-/core-darwin-x64-1.4.16.tgz#a5bc7d8b1dd850adb0bb95c6b5c742b92201fd01" + integrity sha512-t3bgqFoYLWvyVtVL6KkFNCINEoOrIlyggT/kJRgi1y0aXSr0oVgcrQ4ezJpdeahZZ4N+Q6vT3ffM30yIunELNA== + +"@swc/core-linux-arm-gnueabihf@1.4.16": + version "1.4.16" + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.4.16.tgz#961744908ee5cbb79bc009dcf58cc8b831111f38" + integrity sha512-DvHuwvEF86YvSd0lwnzVcjOTZ0jcxewIbsN0vc/0fqm9qBdMMjr9ox6VCam1n3yYeRtj4VFgrjeNFksqbUejdQ== + +"@swc/core-linux-arm64-gnu@1.4.16": + version "1.4.16" + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.4.16.tgz#43713be3f26757d82d2745dc25f8b63400e0a3d0" + integrity sha512-9Uu5YlPbyCvbidjKtYEsPpyZlu16roOZ5c2tP1vHfnU9bgf5Tz5q5VovSduNxPHx+ed2iC1b1URODHvDzbbDuQ== + +"@swc/core-linux-arm64-musl@1.4.16": + version "1.4.16" + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.4.16.tgz#394a7d030f3a61902bd3947bb9d70d26d42f3c81" + integrity sha512-/YZq/qB1CHpeoL0eMzyqK5/tYZn/rzKoCYDviFU4uduSUIJsDJQuQA/skdqUzqbheOXKAd4mnJ1hT04RbJ8FPQ== + +"@swc/core-linux-x64-gnu@1.4.16": + version "1.4.16" + resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.4.16.tgz#71eb108b784f9d551ee8a35ebcdaed972f567981" + integrity sha512-UUjaW5VTngZYDcA8yQlrFmqs1tLi1TxbKlnaJwoNhel9zRQ0yG1YEVGrzTvv4YApSuIiDK18t+Ip927bwucuVQ== + +"@swc/core-linux-x64-musl@1.4.16": + version "1.4.16" + resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.4.16.tgz#10dbaedb4e3dfc7268e3a9a66ad3431471ef035b" + integrity sha512-aFhxPifevDTwEDKPi4eRYWzC0p/WYJeiFkkpNU5Uc7a7M5iMWPAbPFUbHesdlb9Jfqs5c07oyz86u+/HySBNPQ== + +"@swc/core-win32-arm64-msvc@1.4.16": + version "1.4.16" + resolved "https://registry.yarnpkg.com/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.4.16.tgz#80247adff6c245ff32b44d773c1a148858cd655f" + integrity sha512-bTD43MbhIHL2s5QgCwyleaGwl96Gk/scF2TaVKdUe4QlJCDV/YK9h5oIBAp63ckHtE8GHlH4c8dZNBiAXn4Org== + +"@swc/core-win32-ia32-msvc@1.4.16": + version "1.4.16" + resolved "https://registry.yarnpkg.com/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.4.16.tgz#e540afc3ccf3224267b4ddfb408f9d9737984686" + integrity sha512-/lmZeAN/qV5XbK2SEvi8e2RkIg8FQNYiSA8y2/Zb4gTUMKVO5JMLH0BSWMiIKMstKDPDSxMWgwJaQHF8UMyPmQ== + +"@swc/core-win32-x64-msvc@1.4.16": + version "1.4.16" + resolved "https://registry.yarnpkg.com/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.4.16.tgz#f880939fca32c181adfe7e3abd2b6b7857bd3489" + integrity sha512-BPAfFfODWXtUu6SwaTTftDHvcbDyWBSI/oanUeRbQR5vVWkXoQ3cxLTsDluc3H74IqXS5z1Uyoe0vNo2hB1opA== + +"@swc/core@^1.3.102": + version "1.4.16" + resolved "https://registry.yarnpkg.com/@swc/core/-/core-1.4.16.tgz#d175bae2acfecd53bcbd4293f1fba5ec316634a0" + integrity sha512-Xaf+UBvW6JNuV131uvSNyMXHn+bh6LyKN4tbv7tOUFQpXyz/t9YWRE04emtlUW9Y0qrm/GKFCbY8n3z6BpZbTA== + dependencies: + "@swc/counter" "^0.1.2" + "@swc/types" "^0.1.5" + optionalDependencies: + "@swc/core-darwin-arm64" "1.4.16" + "@swc/core-darwin-x64" "1.4.16" + "@swc/core-linux-arm-gnueabihf" "1.4.16" + "@swc/core-linux-arm64-gnu" "1.4.16" + "@swc/core-linux-arm64-musl" "1.4.16" + "@swc/core-linux-x64-gnu" "1.4.16" + "@swc/core-linux-x64-musl" "1.4.16" + "@swc/core-win32-arm64-msvc" "1.4.16" + "@swc/core-win32-ia32-msvc" "1.4.16" + "@swc/core-win32-x64-msvc" "1.4.16" + +"@swc/counter@^0.1.2", "@swc/counter@^0.1.3": + version "0.1.3" + resolved "https://registry.yarnpkg.com/@swc/counter/-/counter-0.1.3.tgz#cc7463bd02949611c6329596fccd2b0ec782b0e9" + integrity sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ== + +"@swc/jest@^0.2.29": + version "0.2.36" + resolved "https://registry.yarnpkg.com/@swc/jest/-/jest-0.2.36.tgz#2797450a30d28b471997a17e901ccad946fe693e" + integrity sha512-8X80dp81ugxs4a11z1ka43FPhP+/e+mJNXJSxiNYk8gIX/jPBtY4gQTrKu/KIoco8bzKuPI5lUxjfLiGsfvnlw== + dependencies: + "@jest/create-cache-key-function" "^29.7.0" + "@swc/counter" "^0.1.3" + jsonc-parser "^3.2.0" + +"@swc/types@^0.1.5": + version "0.1.6" + resolved "https://registry.yarnpkg.com/@swc/types/-/types-0.1.6.tgz#2f13f748995b247d146de2784d3eb7195410faba" + integrity sha512-/JLo/l2JsT/LRd80C3HfbmVpxOAJ11FO2RCEslFrgzLltoP9j8XIbsyDcfCt2WWyX+CM96rBoNM+IToAkFOugg== + dependencies: + "@swc/counter" "^0.1.3" + "@ts-morph/common@~0.20.0": version "0.20.0" resolved "https://registry.yarnpkg.com/@ts-morph/common/-/common-0.20.0.tgz#3f161996b085ba4519731e4d24c35f6cba5b80af" @@ -2445,6 +2542,11 @@ json5@^2.2.2, json5@^2.2.3: resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== +jsonc-parser@^3.2.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.1.tgz#031904571ccf929d7670ee8c547545081cb37f1a" + integrity sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA== + kleur@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" From 5fb93d5484b52f2b0717d1d579cf91bf88d93a68 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 22 Apr 2024 07:41:11 -0400 Subject: [PATCH 368/725] release: 4.38.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 898054ccf..01fad1d40 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.38.2" + ".": "4.38.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e43fa8c67..f4ad2ee3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.38.3 (2024-04-22) + +Full Changelog: [v4.38.2...v4.38.3](https://github.com/openai/openai-node/compare/v4.38.2...v4.38.3) + +### Chores + +* **internal:** use @swc/jest for running tests ([#793](https://github.com/openai/openai-node/issues/793)) ([8947f19](https://github.com/openai/openai-node/commit/8947f195b2dfab7ceebe1e0bb5c886e229cd541f)) + ## 4.38.2 (2024-04-19) Full Changelog: [v4.38.1...v4.38.2](https://github.com/openai/openai-node/compare/v4.38.1...v4.38.2) diff --git a/README.md b/README.md index 2637372d7..1f763a096 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.38.2/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.38.3/mod.ts'; ``` diff --git a/build-deno b/build-deno index 8dfcec58d..0f27c0f35 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.38.2/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.38.3/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index d43a76fe7..7ccc457c3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.38.2", + "version": "4.38.3", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index cd209780f..848b87c16 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.38.2'; // x-release-please-version +export const VERSION = '4.38.3'; // x-release-please-version From 7d2fd6c66adce9dfb1d95e9e967c866a50b8501c Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 24 Apr 2024 11:58:21 -0400 Subject: [PATCH 369/725] fix(docs): doc improvements (#796) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1f763a096..443960a7b 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ More information on the lifecycle of a Run can be found in the [Run Lifecycle Do ### Bulk Upload Helpers -When creating an interacting with vector stores, you can use the polling helpers to monitor the status of operations. +When creating and interacting with vector stores, you can use the polling helpers to monitor the status of operations. For convenience, we also provide a bulk upload helper to allow you to simultaneously upload several files at once. ```ts From 80d7697be17a0577b5bd5af695f4cf3b425e4109 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 24 Apr 2024 14:33:11 -0400 Subject: [PATCH 370/725] fix(api): change timestamps to unix integers (#798) --- src/resources/batches.ts | 23 ++++++++++--------- src/resources/beta/vector-stores/files.ts | 6 +++++ .../beta/vector-stores/vector-stores.ts | 10 ++++---- 3 files changed, 23 insertions(+), 16 deletions(-) diff --git a/src/resources/batches.ts b/src/resources/batches.ts index d0bb891e3..fb0470dcd 100644 --- a/src/resources/batches.ts +++ b/src/resources/batches.ts @@ -57,7 +57,7 @@ export interface Batch { /** * The Unix timestamp (in seconds) for when the batch was created. */ - created_at: string; + created_at: number; /** * The OpenAI API endpoint used by the batch. @@ -90,17 +90,17 @@ export interface Batch { /** * The Unix timestamp (in seconds) for when the batch was cancelled. */ - cancelled_at?: string; + cancelled_at?: number; /** * The Unix timestamp (in seconds) for when the batch started cancelling. */ - cancelling_at?: string; + cancelling_at?: number; /** * The Unix timestamp (in seconds) for when the batch was completed. */ - completed_at?: string; + completed_at?: number; /** * The ID of the file containing the outputs of requests with errors. @@ -112,27 +112,27 @@ export interface Batch { /** * The Unix timestamp (in seconds) for when the batch expired. */ - expired_at?: string; + expired_at?: number; /** * The Unix timestamp (in seconds) for when the batch will expire. */ - expires_at?: string; + expires_at?: number; /** * The Unix timestamp (in seconds) for when the batch failed. */ - failed_at?: string; + failed_at?: number; /** * The Unix timestamp (in seconds) for when the batch started finalizing. */ - finalizing_at?: string; + finalizing_at?: number; /** * The Unix timestamp (in seconds) for when the batch started processing. */ - in_progress_at?: string; + in_progress_at?: number; /** * Set of 16 key-value pairs that can be attached to an object. This can be useful @@ -225,8 +225,9 @@ export interface BatchCreateParams { * See [upload file](https://platform.openai.com/docs/api-reference/files/create) * for how to upload a file. * - * Your input file must be formatted as a JSONL file, and must be uploaded with the - * purpose `batch`. + * Your input file must be formatted as a + * [JSONL file](https://platform.openai.com/docs/api-reference/batch/requestInput), + * and must be uploaded with the purpose `batch`. */ input_file_id: string; diff --git a/src/resources/beta/vector-stores/files.ts b/src/resources/beta/vector-stores/files.ts index 40b97e9a9..a18211221 100644 --- a/src/resources/beta/vector-stores/files.ts +++ b/src/resources/beta/vector-stores/files.ts @@ -203,6 +203,12 @@ export interface VectorStoreFile { */ status: 'in_progress' | 'completed' | 'cancelled' | 'failed'; + /** + * The total vector store usage in bytes. Note that this may be different from the + * original file size. + */ + usage_bytes: number; + /** * The ID of the * [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) diff --git a/src/resources/beta/vector-stores/vector-stores.ts b/src/resources/beta/vector-stores/vector-stores.ts index 892d06aa4..0409f3af7 100644 --- a/src/resources/beta/vector-stores/vector-stores.ts +++ b/src/resources/beta/vector-stores/vector-stores.ts @@ -93,11 +93,6 @@ export interface VectorStore { */ id: string; - /** - * The byte size of the vector store. - */ - bytes: number; - /** * The Unix timestamp (in seconds) for when the vector store was created. */ @@ -135,6 +130,11 @@ export interface VectorStore { */ status: 'expired' | 'in_progress' | 'completed'; + /** + * The total number of bytes used by the files in the vector store. + */ + usage_bytes: number; + /** * The expiration policy for a vector store. */ From adf0524a01d53d3542bcc4700edc6206b717373b Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 24 Apr 2024 14:33:32 -0400 Subject: [PATCH 371/725] release: 4.38.4 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 01fad1d40..b299eb65b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.38.3" + ".": "4.38.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f4ad2ee3e..06d0e4b32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 4.38.4 (2024-04-24) + +Full Changelog: [v4.38.3...v4.38.4](https://github.com/openai/openai-node/compare/v4.38.3...v4.38.4) + +### Bug Fixes + +* **api:** change timestamps to unix integers ([#798](https://github.com/openai/openai-node/issues/798)) ([7271a6c](https://github.com/openai/openai-node/commit/7271a6cdc7d37151d2cae18fdd20b87d97624a84)) +* **docs:** doc improvements ([#796](https://github.com/openai/openai-node/issues/796)) ([49fcc86](https://github.com/openai/openai-node/commit/49fcc86b44958795a6f5e0901f369653dfbcc637)) + ## 4.38.3 (2024-04-22) Full Changelog: [v4.38.2...v4.38.3](https://github.com/openai/openai-node/compare/v4.38.2...v4.38.3) diff --git a/README.md b/README.md index 443960a7b..328744dc0 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.38.3/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.38.4/mod.ts'; ``` diff --git a/build-deno b/build-deno index 0f27c0f35..1e5c4096d 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.38.3/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.38.4/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 7ccc457c3..7576402c3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.38.3", + "version": "4.38.4", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 848b87c16..6071af9d7 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.38.3'; // x-release-please-version +export const VERSION = '4.38.4'; // x-release-please-version From 5ab7780ea8889818f403a9a89ab19585a7e8972e Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 24 Apr 2024 16:41:16 -0400 Subject: [PATCH 372/725] chore(internal): use actions/checkout@v4 for codeflow (#799) --- .github/workflows/create-releases.yml | 2 +- .github/workflows/publish-deno.yml | 2 +- .github/workflows/publish-npm.yml | 2 +- .github/workflows/release-doctor.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/create-releases.yml b/.github/workflows/create-releases.yml index 7ecd6282a..d6d802e16 100644 --- a/.github/workflows/create-releases.yml +++ b/.github/workflows/create-releases.yml @@ -14,7 +14,7 @@ jobs: environment: publish steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: stainless-api/trigger-release-please@v1 id: release diff --git a/.github/workflows/publish-deno.yml b/.github/workflows/publish-deno.yml index 578b592b3..894c516a0 100644 --- a/.github/workflows/publish-deno.yml +++ b/.github/workflows/publish-deno.yml @@ -11,7 +11,7 @@ jobs: environment: publish steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Generate a token id: generate_token diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml index 2258ec560..5a3711b53 100644 --- a/.github/workflows/publish-npm.yml +++ b/.github/workflows/publish-npm.yml @@ -11,7 +11,7 @@ jobs: environment: publish steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Node uses: actions/setup-node@v3 diff --git a/.github/workflows/release-doctor.yml b/.github/workflows/release-doctor.yml index b640869d0..3bb1d714f 100644 --- a/.github/workflows/release-doctor.yml +++ b/.github/workflows/release-doctor.yml @@ -13,7 +13,7 @@ jobs: if: github.repository == 'openai/openai-node' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next') steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Check release environment run: | From 125a7a46a4eb5a1d828bf5e195b9806964befc3d Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 24 Apr 2024 16:41:38 -0400 Subject: [PATCH 373/725] release: 4.38.5 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b299eb65b..f4b74e8b3 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.38.4" + ".": "4.38.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 06d0e4b32..8c69b6ecc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.38.5 (2024-04-24) + +Full Changelog: [v4.38.4...v4.38.5](https://github.com/openai/openai-node/compare/v4.38.4...v4.38.5) + +### Chores + +* **internal:** use actions/checkout@v4 for codeflow ([#799](https://github.com/openai/openai-node/issues/799)) ([5ab7780](https://github.com/openai/openai-node/commit/5ab7780ea8889818f403a9a89ab19585a7e8972e)) + ## 4.38.4 (2024-04-24) Full Changelog: [v4.38.3...v4.38.4](https://github.com/openai/openai-node/compare/v4.38.3...v4.38.4) diff --git a/README.md b/README.md index 328744dc0..ec0d5a03c 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.38.4/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.38.5/mod.ts'; ``` diff --git a/build-deno b/build-deno index 1e5c4096d..ec2c3f8a5 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.38.4/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.38.5/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index 7576402c3..c67a2fb77 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.38.4", + "version": "4.38.5", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 6071af9d7..bc0a54ad1 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.38.4'; // x-release-please-version +export const VERSION = '4.38.5'; // x-release-please-version From 75afedcedbf28328f7beedf59ebf64d4f8306e39 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 26 Apr 2024 16:30:06 -0400 Subject: [PATCH 374/725] chore(internal): add scripts/test and scripts/mock (#801) --- jest.config.ts | 1 + package.json | 2 +- scripts/mock | 34 ++++++++++++++++++++++++++++++++++ scripts/test | 29 +++++++++++++++++++++++++++++ 4 files changed, 65 insertions(+), 1 deletion(-) create mode 100755 scripts/mock create mode 100755 scripts/test diff --git a/jest.config.ts b/jest.config.ts index 445a87301..56d824cdc 100644 --- a/jest.config.ts +++ b/jest.config.ts @@ -17,6 +17,7 @@ const config: JestConfigWithTsJest = { '/deno/', '/deno_tests/', ], + testPathIgnorePatterns: ['scripts'], }; export default config; diff --git a/package.json b/package.json index c67a2fb77..f94e0590b 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ ], "private": false, "scripts": { - "test": "bin/check-test-server && yarn jest", + "test": "./scripts/test", "build": "bash ./build", "prepack": "echo 'to pack, run yarn build && (cd dist; yarn pack)' && exit 1", "prepublishOnly": "echo 'to publish, run yarn build && (cd dist; yarn publish)' && exit 1", diff --git a/scripts/mock b/scripts/mock new file mode 100755 index 000000000..61c6988a3 --- /dev/null +++ b/scripts/mock @@ -0,0 +1,34 @@ +#!/usr/bin/env bash + +if [ -z "$1" ]; then + URL="$1" + shift +else + URL="$(grep 'openapi_spec_url' .stats.yml | cut -d' ' -f2)" +fi + +# Check if the URL is empty +if [ -z "$URL" ]; then + echo "Error: No OpenAPI spec path/url provided or found in .stats.yml" + exit 1 +fi + +# Run prism mock on the given spec +if [ "$1" == "--daemon" ]; then + npm exec prism mock "$URL" &> .prism.log & + + # Wait for server to come online + while ! grep -q "✖ fatal\|Prism is listening" ".prism.log" ; do + echo -n "." + sleep 0.1 + done + + if grep -q "✖ fatal" ".prism.log"; then + cat .prism.log + exit 1 + fi + + echo +else + npm exec prism mock "$URL" +fi diff --git a/scripts/test b/scripts/test new file mode 100755 index 000000000..f01384e68 --- /dev/null +++ b/scripts/test @@ -0,0 +1,29 @@ +#!/usr/bin/env bash + +function prism_is_running() { + curl --silent "http://localhost:4010/" >/dev/null 2>&1 +} + +kill_server_on_port() { + pids=$(lsof -t -i tcp:"$1" || echo "") + if [ "$pids" != "" ]; then + kill "$pids" + echo "Stopped $pids." + fi +} + +if ! prism_is_running; then + # When we exit this script, make sure to kill the background mock server process + trap 'kill_server_on_port 4010' EXIT + + # Start the dev server + ./scripts/mock --daemon + + # Sanity check and print a nice error message + if ! ./bin/check-test-server; then + exit + fi +fi + +# Run tests +./node_modules/.bin/jest From 11d3f0d8a4ff883e9267d9e9b390c2fea27d718f Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 29 Apr 2024 13:01:36 -0400 Subject: [PATCH 375/725] feat(api): add required tool_choice (#803) --- src/resources/beta/threads/runs/runs.ts | 25 ++++++++++++--------- src/resources/beta/threads/threads.ts | 22 ++++++++++-------- src/resources/chat/completions.ts | 30 ++++++++++++------------- 3 files changed, 43 insertions(+), 34 deletions(-) diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index a15565450..18095886a 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -445,8 +445,9 @@ export interface Run { /** * Controls which (if any) tool is called by the model. `none` means the model will * not call any tools and instead generates a message. `auto` is the default value - * and means the model can pick between generating a message or calling a tool. - * Specifying a particular tool like `{"type": "file_search"}` or + * and means the model can pick between generating a message or calling one or more + * tools. `required` means the model must call one or more tools before responding + * to the user. Specifying a particular tool like `{"type": "file_search"}` or * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that tool. */ @@ -713,8 +714,9 @@ export interface RunCreateParamsBase { /** * Controls which (if any) tool is called by the model. `none` means the model will * not call any tools and instead generates a message. `auto` is the default value - * and means the model can pick between generating a message or calling a tool. - * Specifying a particular tool like `{"type": "file_search"}` or + * and means the model can pick between generating a message or calling one or more + * tools. `required` means the model must call one or more tools before responding + * to the user. Specifying a particular tool like `{"type": "file_search"}` or * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that tool. */ @@ -964,8 +966,9 @@ export interface RunCreateAndPollParams { /** * Controls which (if any) tool is called by the model. `none` means the model will * not call any tools and instead generates a message. `auto` is the default value - * and means the model can pick between generating a message or calling a tool. - * Specifying a particular tool like `{"type": "file_search"}` or + * and means the model can pick between generating a message or calling one or more + * tools. `required` means the model must call one or more tools before responding + * to the user. Specifying a particular tool like `{"type": "file_search"}` or * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that tool. */ @@ -1168,8 +1171,9 @@ export interface RunCreateAndStreamParams { /** * Controls which (if any) tool is called by the model. `none` means the model will * not call any tools and instead generates a message. `auto` is the default value - * and means the model can pick between generating a message or calling a tool. - * Specifying a particular tool like `{"type": "file_search"}` or + * and means the model can pick between generating a message or calling one or more + * tools. `required` means the model must call one or more tools before responding + * to the user. Specifying a particular tool like `{"type": "file_search"}` or * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that tool. */ @@ -1372,8 +1376,9 @@ export interface RunStreamParams { /** * Controls which (if any) tool is called by the model. `none` means the model will * not call any tools and instead generates a message. `auto` is the default value - * and means the model can pick between generating a message or calling a tool. - * Specifying a particular tool like `{"type": "file_search"}` or + * and means the model can pick between generating a message or calling one or more + * tools. `required` means the model must call one or more tools before responding + * to the user. Specifying a particular tool like `{"type": "file_search"}` or * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that tool. */ diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 81ba31dba..b8b3ff2be 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -169,12 +169,13 @@ export interface AssistantToolChoiceFunction { /** * Controls which (if any) tool is called by the model. `none` means the model will * not call any tools and instead generates a message. `auto` is the default value - * and means the model can pick between generating a message or calling a tool. - * Specifying a particular tool like `{"type": "file_search"}` or + * and means the model can pick between generating a message or calling one or more + * tools. `required` means the model must call one or more tools before responding + * to the user. Specifying a particular tool like `{"type": "file_search"}` or * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that tool. */ -export type AssistantToolChoiceOption = 'none' | 'auto' | AssistantToolChoice; +export type AssistantToolChoiceOption = 'none' | 'auto' | 'required' | AssistantToolChoice; /** * Represents a thread that contains @@ -551,8 +552,9 @@ export interface ThreadCreateAndRunParamsBase { /** * Controls which (if any) tool is called by the model. `none` means the model will * not call any tools and instead generates a message. `auto` is the default value - * and means the model can pick between generating a message or calling a tool. - * Specifying a particular tool like `{"type": "file_search"}` or + * and means the model can pick between generating a message or calling one or more + * tools. `required` means the model must call one or more tools before responding + * to the user. Specifying a particular tool like `{"type": "file_search"}` or * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that tool. */ @@ -900,8 +902,9 @@ export interface ThreadCreateAndRunPollParams { /** * Controls which (if any) tool is called by the model. `none` means the model will * not call any tools and instead generates a message. `auto` is the default value - * and means the model can pick between generating a message or calling a tool. - * Specifying a particular tool like `{"type": "file_search"}` or + * and means the model can pick between generating a message or calling one or more + * tools. `required` means the model must call one or more tools before responding + * to the user. Specifying a particular tool like `{"type": "file_search"}` or * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that tool. */ @@ -1228,8 +1231,9 @@ export interface ThreadCreateAndRunStreamParams { /** * Controls which (if any) tool is called by the model. `none` means the model will * not call any tools and instead generates a message. `auto` is the default value - * and means the model can pick between generating a message or calling a tool. - * Specifying a particular tool like `{"type": "file_search"}` or + * and means the model can pick between generating a message or calling one or more + * tools. `required` means the model must call one or more tools before responding + * to the user. Specifying a particular tool like `{"type": "file_search"}` or * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that tool. */ diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index b9672f52b..467b33619 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -598,17 +598,17 @@ export interface ChatCompletionTool { } /** - * Controls which (if any) function is called by the model. `none` means the model - * will not call a function and instead generates a message. `auto` means the model - * can pick between generating a message or calling a function. Specifying a - * particular function via + * Controls which (if any) tool is called by the model. `none` means the model will + * not call any tool and instead generates a message. `auto` means the model can + * pick between generating a message or calling one or more tools. `required` means + * the model must call one or more tools. Specifying a particular tool via * `{"type": "function", "function": {"name": "my_function"}}` forces the model to - * call that function. + * call that tool. * - * `none` is the default when no functions are present. `auto` is the default if - * functions are present. + * `none` is the default when no tools are present. `auto` is the default if tools + * are present. */ -export type ChatCompletionToolChoiceOption = 'none' | 'auto' | ChatCompletionNamedToolChoice; +export type ChatCompletionToolChoiceOption = 'none' | 'auto' | 'required' | ChatCompletionNamedToolChoice; export interface ChatCompletionToolMessageParam { /** @@ -796,15 +796,15 @@ export interface ChatCompletionCreateParamsBase { temperature?: number | null; /** - * Controls which (if any) function is called by the model. `none` means the model - * will not call a function and instead generates a message. `auto` means the model - * can pick between generating a message or calling a function. Specifying a - * particular function via + * Controls which (if any) tool is called by the model. `none` means the model will + * not call any tool and instead generates a message. `auto` means the model can + * pick between generating a message or calling one or more tools. `required` means + * the model must call one or more tools. Specifying a particular tool via * `{"type": "function", "function": {"name": "my_function"}}` forces the model to - * call that function. + * call that tool. * - * `none` is the default when no functions are present. `auto` is the default if - * functions are present. + * `none` is the default when no tools are present. `auto` is the default if tools + * are present. */ tool_choice?: ChatCompletionToolChoiceOption; From 3dabda8c13deb31899cc2aef76fefe4572d09481 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 29 Apr 2024 13:01:58 -0400 Subject: [PATCH 376/725] release: 4.39.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- build-deno | 2 +- package.json | 2 +- src/version.ts | 2 +- 6 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f4b74e8b3..922d48efa 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.38.5" + ".": "4.39.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c69b6ecc..f75ad31ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.39.0 (2024-04-29) + +Full Changelog: [v4.38.5...v4.39.0](https://github.com/openai/openai-node/compare/v4.38.5...v4.39.0) + +### Features + +* **api:** add required tool_choice ([#803](https://github.com/openai/openai-node/issues/803)) ([99693e6](https://github.com/openai/openai-node/commit/99693e61debc67327a45dffb2c10c113341bffd6)) + + +### Chores + +* **internal:** add scripts/test and scripts/mock ([#801](https://github.com/openai/openai-node/issues/801)) ([6656105](https://github.com/openai/openai-node/commit/6656105fa1346a91d17e2b7a5e075f3091310c2f)) + ## 4.38.5 (2024-04-24) Full Changelog: [v4.38.4...v4.38.5](https://github.com/openai/openai-node/compare/v4.38.4...v4.38.5) diff --git a/README.md b/README.md index ec0d5a03c..abad61be4 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.38.5/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.39.0/mod.ts'; ``` diff --git a/build-deno b/build-deno index ec2c3f8a5..bbe4888f7 100755 --- a/build-deno +++ b/build-deno @@ -14,7 +14,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.38.5/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.39.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/package.json b/package.json index f94e0590b..9232d8f7b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.38.5", + "version": "4.39.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index bc0a54ad1..b54588e20 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.38.5'; // x-release-please-version +export const VERSION = '4.39.0'; // x-release-please-version From 928351928054feb56f8797587c70f74d06c2737c Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 30 Apr 2024 11:36:38 -0400 Subject: [PATCH 377/725] chore(internal): refactor scripts (#806) --- bin/check-test-server | 50 ------------------- package.json | 6 +-- release-please-config.json | 2 +- scripts/bootstrap | 9 ++++ build => scripts/build | 15 +++--- build-deno => scripts/build-deno | 4 +- scripts/git-publish-deno.sh | 5 +- scripts/lint | 7 +++ scripts/mock | 10 ++-- scripts/test | 36 ++++++++++--- .../{ => utils}/check-is-in-git-install.sh | 0 scripts/{ => utils}/check-version.cjs | 4 +- scripts/{ => utils}/denoify.ts | 4 +- scripts/{ => utils}/fix-index-exports.cjs | 2 +- .../{ => utils}/make-dist-package-json.cjs | 2 +- scripts/{ => utils}/postprocess-files.cjs | 6 +-- 16 files changed, 82 insertions(+), 80 deletions(-) delete mode 100755 bin/check-test-server create mode 100755 scripts/bootstrap rename build => scripts/build (84%) rename build-deno => scripts/build-deno (93%) create mode 100755 scripts/lint rename scripts/{ => utils}/check-is-in-git-install.sh (100%) rename scripts/{ => utils}/check-version.cjs (82%) rename scripts/{ => utils}/denoify.ts (98%) rename scripts/{ => utils}/fix-index-exports.cjs (86%) rename scripts/{ => utils}/make-dist-package-json.cjs (87%) rename scripts/{ => utils}/postprocess-files.cjs (97%) diff --git a/bin/check-test-server b/bin/check-test-server deleted file mode 100755 index a6fa34950..000000000 --- a/bin/check-test-server +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/env bash - -RED='\033[0;31m' -GREEN='\033[0;32m' -YELLOW='\033[0;33m' -NC='\033[0m' # No Color - -function prism_is_running() { - curl --silent "http://localhost:4010/" >/dev/null 2>&1 -} - -function is_overriding_api_base_url() { - [ -n "$TEST_API_BASE_URL" ] -} - -if is_overriding_api_base_url ; then - # If someone is running the tests against the live API, we can trust they know - # what they're doing and exit early. - echo -e "${GREEN}✔ Running tests against ${TEST_API_BASE_URL}${NC}" - - exit 0 -elif prism_is_running ; then - echo -e "${GREEN}✔ Mock prism server is running with your OpenAPI spec${NC}" - echo - - exit 0 -else - echo -e "${RED}ERROR:${NC} The test suite will not run without a mock Prism server" - echo -e "running against your OpenAPI spec." - echo - echo -e "${YELLOW}To fix:${NC}" - echo - echo -e "1. Install Prism (requires Node 16+):" - echo - echo -e " With npm:" - echo -e " \$ ${YELLOW}npm install -g @stoplight/prism-cli${NC}" - echo - echo -e " With yarn:" - echo -e " \$ ${YELLOW}yarn global add @stoplight/prism-cli${NC}" - echo - echo -e "2. Run the mock server" - echo - echo -e " To run the server, pass in the path of your OpenAPI" - echo -e " spec to the prism command:" - echo - echo -e " \$ ${YELLOW}prism mock path/to/your.openapi.yml${NC}" - echo - - exit 1 -fi diff --git a/package.json b/package.json index 9232d8f7b..35124ee7a 100644 --- a/package.json +++ b/package.json @@ -15,13 +15,13 @@ "private": false, "scripts": { "test": "./scripts/test", - "build": "bash ./build", + "build": "./scripts/build", "prepack": "echo 'to pack, run yarn build && (cd dist; yarn pack)' && exit 1", "prepublishOnly": "echo 'to publish, run yarn build && (cd dist; yarn publish)' && exit 1", "format": "prettier --write --cache --cache-strategy metadata . !dist", - "prepare": "if ./scripts/check-is-in-git-install.sh; then npm run build; fi", + "prepare": "if ./scripts/utils/check-is-in-git-install.sh; then ./scripts/build; fi", "tsn": "ts-node -r tsconfig-paths/register", - "lint": "eslint --ext ts,js .", + "lint": "./scripts/lint", "fix": "eslint --fix --ext ts,js ." }, "dependencies": { diff --git a/release-please-config.json b/release-please-config.json index 37def5fe1..586d57e0b 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -63,6 +63,6 @@ "extra-files": [ "src/version.ts", "README.md", - "build-deno" + "./scripts/build-deno" ] } diff --git a/scripts/bootstrap b/scripts/bootstrap new file mode 100755 index 000000000..6752d0e6b --- /dev/null +++ b/scripts/bootstrap @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +set -e + +cd "$(dirname "$0")/.." + +PACKAGE_MANAGER=$(command -v yarn >/dev/null 2>&1 && echo "yarn" || echo "npm") + +$PACKAGE_MANAGER install diff --git a/build b/scripts/build similarity index 84% rename from build rename to scripts/build index 85d5b4bc8..aa7c61f02 100755 --- a/build +++ b/scripts/build @@ -1,7 +1,10 @@ #!/usr/bin/env bash + set -exuo pipefail -node scripts/check-version.cjs +cd "$(dirname "$0")/.." + +node scripts/utils/check-version.cjs # Build into dist and will publish the package from there, # so that src/resources/foo.ts becomes /resources/foo.js @@ -22,7 +25,7 @@ if [ -e "bin/cli" ]; then fi # this converts the export map paths for the dist directory # and does a few other minor things -node scripts/make-dist-package-json.cjs > dist/package.json +node scripts/utils/make-dist-package-json.cjs > dist/package.json # build to .js/.mjs/.d.ts files npm exec tsc-multi @@ -32,7 +35,7 @@ cp src/_shims/auto/*.{d.ts,js,mjs} dist/_shims/auto # we need to add exports = module.exports = OpenAI Node to index.js; # No way to get that from index.ts because it would cause compile errors # when building .mjs -node scripts/fix-index-exports.cjs +node scripts/utils/fix-index-exports.cjs # with "moduleResolution": "nodenext", if ESM resolves to index.d.ts, # it'll have TS errors on the default import. But if it resolves to # index.d.mts the default import will work (even though both files have @@ -40,14 +43,14 @@ node scripts/fix-index-exports.cjs cp dist/index.d.ts dist/index.d.mts cp tsconfig.dist-src.json dist/src/tsconfig.json -node scripts/postprocess-files.cjs +node scripts/utils/postprocess-files.cjs # make sure that nothing crashes when we require the output CJS or # import the output ESM (cd dist && node -e 'require("openai")') (cd dist && node -e 'import("openai")' --input-type=module) -if command -v deno &> /dev/null && [ -e ./build-deno ] +if command -v deno &> /dev/null && [ -e ./scripts/build-deno ] then - ./build-deno + ./scripts/build-deno fi diff --git a/build-deno b/scripts/build-deno similarity index 93% rename from build-deno rename to scripts/build-deno index bbe4888f7..28002850b 100755 --- a/build-deno +++ b/scripts/build-deno @@ -2,6 +2,8 @@ set -exuo pipefail +cd "$(dirname "$0")/.." + rm -rf deno; mkdir deno cp -rp src/* deno @@ -37,7 +39,7 @@ done for file in LICENSE CHANGELOG.md; do if [ -e "${file}" ]; then cp "${file}" deno; fi done -npm exec ts-node -T -- scripts/denoify.ts +npm exec ts-node -T -- scripts/utils/denoify.ts deno fmt deno deno check deno/mod.ts if [ -e deno_tests ]; then diff --git a/scripts/git-publish-deno.sh b/scripts/git-publish-deno.sh index 4098994f3..701db735e 100755 --- a/scripts/git-publish-deno.sh +++ b/scripts/git-publish-deno.sh @@ -1,6 +1,9 @@ #!/usr/bin/env bash + set -exuo pipefail +cd "$(dirname "$0")/.." + # This script pushes the contents of the `deno` directory to the `deno` branch, # and creates a `vx.x.x-deno` tag, so that Deno users can # import OpenAI from "https://raw.githubusercontent.com/openai/openai-node/vx.x.x-deno/mod.ts" @@ -38,7 +41,7 @@ else : "${DENO_PUSH_RELEASE_TAG:="v$DENO_PUSH_VERSION"}" fi -if [ ! -e deno ]; then ./build; fi +if [ ! -e deno ]; then ./scripts/build; fi # We want to commit and push a branch where everything inside the deno # directory is at root level in the branch. diff --git a/scripts/lint b/scripts/lint new file mode 100755 index 000000000..4f05d6609 --- /dev/null +++ b/scripts/lint @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +set -e + +cd "$(dirname "$0")/.." + +./node_modules/.bin/eslint --ext ts,js . diff --git a/scripts/mock b/scripts/mock index 61c6988a3..2bba22723 100755 --- a/scripts/mock +++ b/scripts/mock @@ -1,6 +1,10 @@ #!/usr/bin/env bash -if [ -z "$1" ]; then +set -e + +cd "$(dirname "$0")/.." + +if [ -n "$1" ]; then URL="$1" shift else @@ -15,7 +19,7 @@ fi # Run prism mock on the given spec if [ "$1" == "--daemon" ]; then - npm exec prism mock "$URL" &> .prism.log & + npm exec --package=@stoplight/prism-cli@~5.3.2 -- prism mock "$URL" &> .prism.log & # Wait for server to come online while ! grep -q "✖ fatal\|Prism is listening" ".prism.log" ; do @@ -30,5 +34,5 @@ if [ "$1" == "--daemon" ]; then echo else - npm exec prism mock "$URL" + npm exec --package=@stoplight/prism-cli@~5.3.2 -- prism mock "$URL" fi diff --git a/scripts/test b/scripts/test index f01384e68..48b637a40 100755 --- a/scripts/test +++ b/scripts/test @@ -1,5 +1,14 @@ #!/usr/bin/env bash +set -e + +cd "$(dirname "$0")/.." + +RED='\033[0;31m' +GREEN='\033[0;32m' +YELLOW='\033[0;33m' +NC='\033[0m' # No Color + function prism_is_running() { curl --silent "http://localhost:4010/" >/dev/null 2>&1 } @@ -12,17 +21,32 @@ kill_server_on_port() { fi } -if ! prism_is_running; then +function is_overriding_api_base_url() { + [ -n "$TEST_API_BASE_URL" ] +} + +if ! is_overriding_api_base_url && ! prism_is_running ; then # When we exit this script, make sure to kill the background mock server process trap 'kill_server_on_port 4010' EXIT # Start the dev server - ./scripts/mock --daemon + ./scripts/mock --daemon &> /dev/null +fi - # Sanity check and print a nice error message - if ! ./bin/check-test-server; then - exit - fi +if ! prism_is_running ; then + echo -e "${RED}ERROR:${NC} The test suite will not run without a mock Prism server" + echo -e "running against your OpenAPI spec." + echo + echo -e "To run the server, pass in the path or url of your OpenAPI" + echo -e "spec to the prism command:" + echo + echo -e " \$ ${YELLOW}npm exec prism mock path/to/your.openapi.yml${NC}" + echo + + exit 1 +else + echo -e "${GREEN}✔ Mock prism server is running with your OpenAPI spec${NC}" + echo fi # Run tests diff --git a/scripts/check-is-in-git-install.sh b/scripts/utils/check-is-in-git-install.sh similarity index 100% rename from scripts/check-is-in-git-install.sh rename to scripts/utils/check-is-in-git-install.sh diff --git a/scripts/check-version.cjs b/scripts/utils/check-version.cjs similarity index 82% rename from scripts/check-version.cjs rename to scripts/utils/check-version.cjs index 50a85669e..86c56dfd3 100644 --- a/scripts/check-version.cjs +++ b/scripts/utils/check-version.cjs @@ -2,14 +2,14 @@ const fs = require('fs'); const path = require('path'); const main = () => { - const pkg = require('../package.json'); + const pkg = require('../../package.json'); const version = pkg['version']; if (!version) throw 'The version property is not set in the package.json file'; if (typeof version !== 'string') { throw `Unexpected type for the package.json version field; got ${typeof version}, expected string`; } - const versionFile = path.resolve(__dirname, '..', 'src', 'version.ts'); + const versionFile = path.resolve(__dirname, '..', '..', 'src', 'version.ts'); const contents = fs.readFileSync(versionFile, 'utf8'); const output = contents.replace(/(export const VERSION = ')(.*)(')/g, `$1${version}$3`); fs.writeFileSync(versionFile, output); diff --git a/scripts/denoify.ts b/scripts/utils/denoify.ts similarity index 98% rename from scripts/denoify.ts rename to scripts/utils/denoify.ts index 9922b7bf8..742bc069f 100644 --- a/scripts/denoify.ts +++ b/scripts/utils/denoify.ts @@ -1,9 +1,9 @@ import path from 'path'; import * as tm from 'ts-morph'; -import { name as pkgName } from '../package.json'; +import { name as pkgName } from '../../package.json'; import fs from 'fs'; -const rootDir = path.resolve(__dirname, '..'); +const rootDir = path.resolve(__dirname, '../..'); const denoDir = path.join(rootDir, 'deno'); const tsConfigFilePath = path.join(rootDir, 'tsconfig.deno.json'); diff --git a/scripts/fix-index-exports.cjs b/scripts/utils/fix-index-exports.cjs similarity index 86% rename from scripts/fix-index-exports.cjs rename to scripts/utils/fix-index-exports.cjs index b61b2ea33..72b0b8fd0 100644 --- a/scripts/fix-index-exports.cjs +++ b/scripts/utils/fix-index-exports.cjs @@ -4,7 +4,7 @@ const path = require('path'); const indexJs = process.env['DIST_PATH'] ? path.resolve(process.env['DIST_PATH'], 'index.js') - : path.resolve(__dirname, '..', 'dist', 'index.js'); + : path.resolve(__dirname, '..', '..', 'dist', 'index.js'); let before = fs.readFileSync(indexJs, 'utf8'); let after = before.replace( diff --git a/scripts/make-dist-package-json.cjs b/scripts/utils/make-dist-package-json.cjs similarity index 87% rename from scripts/make-dist-package-json.cjs rename to scripts/utils/make-dist-package-json.cjs index d4a0a69b3..7c24f56e2 100644 --- a/scripts/make-dist-package-json.cjs +++ b/scripts/utils/make-dist-package-json.cjs @@ -1,4 +1,4 @@ -const pkgJson = require(process.env['PKG_JSON_PATH'] || '../package.json'); +const pkgJson = require(process.env['PKG_JSON_PATH'] || '../../package.json'); function processExportMap(m) { for (const key in m) { diff --git a/scripts/postprocess-files.cjs b/scripts/utils/postprocess-files.cjs similarity index 97% rename from scripts/postprocess-files.cjs rename to scripts/utils/postprocess-files.cjs index 8fd9ec8db..c46a46d07 100644 --- a/scripts/postprocess-files.cjs +++ b/scripts/utils/postprocess-files.cjs @@ -2,12 +2,12 @@ const fs = require('fs'); const path = require('path'); const { parse } = require('@typescript-eslint/parser'); -const pkgImportPath = process.env['PKG_IMPORT_PATH'] ?? 'openai/' +const pkgImportPath = process.env['PKG_IMPORT_PATH'] ?? 'openai/'; const distDir = process.env['DIST_PATH'] ? path.resolve(process.env['DIST_PATH']) - : path.resolve(__dirname, '..', 'dist'); + : path.resolve(__dirname, '..', '..', 'dist'); const distSrcDir = path.join(distDir, 'src'); /** @@ -103,7 +103,7 @@ async function* walk(dir) { } async function postprocess() { - for await (const file of walk(path.resolve(__dirname, '..', 'dist'))) { + for await (const file of walk(path.resolve(__dirname, '..', '..', 'dist'))) { if (!/\.([cm]?js|(\.d)?[cm]?ts)$/.test(file)) continue; const code = await fs.promises.readFile(file, 'utf8'); From ecc2eaec602eb9fe518f011920d8500e01fde01b Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 30 Apr 2024 12:31:37 -0400 Subject: [PATCH 378/725] chore(internal): fix release please for deno (#808) --- release-please-config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-please-config.json b/release-please-config.json index 586d57e0b..0a9347796 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -63,6 +63,6 @@ "extra-files": [ "src/version.ts", "README.md", - "./scripts/build-deno" + "scripts/build-deno" ] } From 61b5b83e82dd723e9584232f3b805ed13e58e13d Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 30 Apr 2024 13:05:06 -0400 Subject: [PATCH 379/725] chore(internal): add link to openapi spec (#810) --- .stats.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.stats.yml b/.stats.yml index c9a9bfa4a..e904583da 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1 +1,2 @@ configured_endpoints: 63 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-0839c14b2b61dad4e830884410cfc3695546682ced009e50583c8bb5c44512d7.yml From 3aaff04b1cdee987ad99261283684ca8b91990cd Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 30 Apr 2024 13:05:27 -0400 Subject: [PATCH 380/725] release: 4.39.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 10 ++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 922d48efa..2781849c1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.39.0" + ".": "4.39.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f75ad31ff..b7b3548fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 4.39.1 (2024-04-30) + +Full Changelog: [v4.39.0...v4.39.1](https://github.com/openai/openai-node/compare/v4.39.0...v4.39.1) + +### Chores + +* **internal:** add link to openapi spec ([#810](https://github.com/openai/openai-node/issues/810)) ([61b5b83](https://github.com/openai/openai-node/commit/61b5b83e82dd723e9584232f3b805ed13e58e13d)) +* **internal:** fix release please for deno ([#808](https://github.com/openai/openai-node/issues/808)) ([ecc2eae](https://github.com/openai/openai-node/commit/ecc2eaec602eb9fe518f011920d8500e01fde01b)) +* **internal:** refactor scripts ([#806](https://github.com/openai/openai-node/issues/806)) ([9283519](https://github.com/openai/openai-node/commit/928351928054feb56f8797587c70f74d06c2737c)) + ## 4.39.0 (2024-04-29) Full Changelog: [v4.38.5...v4.39.0](https://github.com/openai/openai-node/compare/v4.38.5...v4.39.0) diff --git a/README.md b/README.md index abad61be4..4805a65af 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.39.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.39.1/mod.ts'; ``` diff --git a/package.json b/package.json index 35124ee7a..3576a12de 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.39.0", + "version": "4.39.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 28002850b..cffc84e8a 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.39.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.39.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index b54588e20..6e3099397 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.39.0'; // x-release-please-version +export const VERSION = '4.39.1'; // x-release-please-version From 585bdd7371ed9494c686591435e809a77e806dda Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 30 Apr 2024 23:59:44 -0400 Subject: [PATCH 381/725] feat(api): delete messages (#811) --- .github/workflows/ci.yml | 19 ++++++++++++++++++- .gitignore | 1 + .stats.yml | 4 ++-- Brewfile | 1 + api.md | 1 + scripts/bootstrap | 9 +++++++++ scripts/mock | 5 ++++- scripts/test | 10 +++++++--- src/resources/batches.ts | 6 +++--- src/resources/beta/threads/messages.ts | 10 ++++++++++ src/resources/fine-tuning/jobs/jobs.ts | 6 ++++++ .../beta/threads/messages.test.ts | 18 ++++++++++++++++++ 12 files changed, 80 insertions(+), 10 deletions(-) create mode 100644 Brewfile diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6c83025f..d2a8037a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,5 +28,22 @@ jobs: - name: Check types run: | yarn build + test: + name: test + runs-on: ubuntu-latest + if: github.repository == 'openai/openai-node' + + steps: + - uses: actions/checkout@v4 + + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: '18' + + - name: Bootstrap + run: ./scripts/bootstrap + + - name: Run tests + run: ./scripts/test - diff --git a/.gitignore b/.gitignore index 31b12ac63..733d72ecf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ node_modules yarn-error.log codegen.log +Brewfile.lock.json dist /deno /*.tgz diff --git a/.stats.yml b/.stats.yml index e904583da..9797002bf 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ -configured_endpoints: 63 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-0839c14b2b61dad4e830884410cfc3695546682ced009e50583c8bb5c44512d7.yml +configured_endpoints: 64 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-97c9a5f089049dc9eb5cee9475558049003e37e42202cab39e59d75e08b4c613.yml diff --git a/Brewfile b/Brewfile new file mode 100644 index 000000000..e4feee601 --- /dev/null +++ b/Brewfile @@ -0,0 +1 @@ +brew "node" diff --git a/api.md b/api.md index e7a8d3a31..c1ac8cfbd 100644 --- a/api.md +++ b/api.md @@ -365,6 +365,7 @@ Methods: - client.beta.threads.messages.retrieve(threadId, messageId) -> Message - client.beta.threads.messages.update(threadId, messageId, { ...params }) -> Message - client.beta.threads.messages.list(threadId, { ...params }) -> MessagesPage +- client.beta.threads.messages.del(threadId, messageId) -> MessageDeleted # Batches diff --git a/scripts/bootstrap b/scripts/bootstrap index 6752d0e6b..05dd47a61 100755 --- a/scripts/bootstrap +++ b/scripts/bootstrap @@ -4,6 +4,15 @@ set -e cd "$(dirname "$0")/.." +if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ]; then + brew bundle check >/dev/null 2>&1 || { + echo "==> Installing Homebrew dependencies…" + brew bundle + } +fi + +echo "==> Installing Node dependencies…" + PACKAGE_MANAGER=$(command -v yarn >/dev/null 2>&1 && echo "yarn" || echo "npm") $PACKAGE_MANAGER install diff --git a/scripts/mock b/scripts/mock index 2bba22723..5a8c35b72 100755 --- a/scripts/mock +++ b/scripts/mock @@ -4,7 +4,7 @@ set -e cd "$(dirname "$0")/.." -if [ -n "$1" ]; then +if [[ -n "$1" && "$1" != '--'* ]]; then URL="$1" shift else @@ -17,11 +17,14 @@ if [ -z "$URL" ]; then exit 1 fi +echo "==> Starting mock server with URL ${URL}" + # Run prism mock on the given spec if [ "$1" == "--daemon" ]; then npm exec --package=@stoplight/prism-cli@~5.3.2 -- prism mock "$URL" &> .prism.log & # Wait for server to come online + echo -n "Waiting for server" while ! grep -q "✖ fatal\|Prism is listening" ".prism.log" ; do echo -n "." sleep 0.1 diff --git a/scripts/test b/scripts/test index 48b637a40..aa94b72d8 100755 --- a/scripts/test +++ b/scripts/test @@ -30,17 +30,20 @@ if ! is_overriding_api_base_url && ! prism_is_running ; then trap 'kill_server_on_port 4010' EXIT # Start the dev server - ./scripts/mock --daemon &> /dev/null + ./scripts/mock --daemon fi -if ! prism_is_running ; then +if is_overriding_api_base_url ; then + echo -e "${GREEN}✔ Running tests against ${TEST_API_BASE_URL}${NC}" + echo +elif ! prism_is_running ; then echo -e "${RED}ERROR:${NC} The test suite will not run without a mock Prism server" echo -e "running against your OpenAPI spec." echo echo -e "To run the server, pass in the path or url of your OpenAPI" echo -e "spec to the prism command:" echo - echo -e " \$ ${YELLOW}npm exec prism mock path/to/your.openapi.yml${NC}" + echo -e " \$ ${YELLOW}npm exec --package=@stoplight/prism-cli@~5.3.2 -- prism mock path/to/your.openapi.yml${NC}" echo exit 1 @@ -50,4 +53,5 @@ else fi # Run tests +echo "==> Running tests" ./node_modules/.bin/jest diff --git a/src/resources/batches.ts b/src/resources/batches.ts index fb0470dcd..2f6af03e6 100644 --- a/src/resources/batches.ts +++ b/src/resources/batches.ts @@ -214,10 +214,10 @@ export interface BatchCreateParams { completion_window: '24h'; /** - * The endpoint to be used for all requests in the batch. Currently only - * `/v1/chat/completions` is supported. + * The endpoint to be used for all requests in the batch. Currently + * `/v1/chat/completions` and `/v1/embeddings` are supported. */ - endpoint: '/v1/chat/completions'; + endpoint: '/v1/chat/completions' | '/v1/embeddings'; /** * The ID of an uploaded file that contains requests for the new batch. diff --git a/src/resources/beta/threads/messages.ts b/src/resources/beta/threads/messages.ts index 559395ca5..8ce714f58 100644 --- a/src/resources/beta/threads/messages.ts +++ b/src/resources/beta/threads/messages.ts @@ -72,6 +72,16 @@ export class Messages extends APIResource { headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } + + /** + * Deletes a message. + */ + del(threadId: string, messageId: string, options?: Core.RequestOptions): Core.APIPromise { + return this._client.delete(`/threads/${threadId}/messages/${messageId}`, { + ...options, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, + }); + } } export class MessagesPage extends CursorPage {} diff --git a/src/resources/fine-tuning/jobs/jobs.ts b/src/resources/fine-tuning/jobs/jobs.ts index 2469cce07..874d30047 100644 --- a/src/resources/fine-tuning/jobs/jobs.ts +++ b/src/resources/fine-tuning/jobs/jobs.ts @@ -180,6 +180,12 @@ export interface FineTuningJob { */ validation_file: string | null; + /** + * The Unix timestamp (in seconds) for when the fine-tuning job is estimated to + * finish. The value will be null if the fine-tuning job is not running. + */ + estimated_finish?: number | null; + /** * A list of integrations to enable for this fine-tuning job. */ diff --git a/tests/api-resources/beta/threads/messages.test.ts b/tests/api-resources/beta/threads/messages.test.ts index eb1e78133..262ff178d 100644 --- a/tests/api-resources/beta/threads/messages.test.ts +++ b/tests/api-resources/beta/threads/messages.test.ts @@ -99,4 +99,22 @@ describe('resource messages', () => { ), ).rejects.toThrow(OpenAI.NotFoundError); }); + + test('del', async () => { + const responsePromise = openai.beta.threads.messages.del('string', 'string'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('del: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.beta.threads.messages.del('string', 'string', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); }); From 4fdc6fbe064740c3926bfeaeb91219d57e32577e Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 1 May 2024 00:00:04 -0400 Subject: [PATCH 382/725] release: 4.40.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2781849c1..d645df0f2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.39.1" + ".": "4.40.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b7b3548fd..dc79b248c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.40.0 (2024-05-01) + +Full Changelog: [v4.39.1...v4.40.0](https://github.com/openai/openai-node/compare/v4.39.1...v4.40.0) + +### Features + +* **api:** delete messages ([#811](https://github.com/openai/openai-node/issues/811)) ([9e37dbd](https://github.com/openai/openai-node/commit/9e37dbd554e4ca48fda1577b1aad612e9d30534d)) + ## 4.39.1 (2024-04-30) Full Changelog: [v4.39.0...v4.39.1](https://github.com/openai/openai-node/compare/v4.39.0...v4.39.1) diff --git a/README.md b/README.md index 4805a65af..7aba97c47 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.39.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.40.0/mod.ts'; ``` diff --git a/package.json b/package.json index 3576a12de..6038fdfea 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.39.1", + "version": "4.40.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index cffc84e8a..3a9c87b7c 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.39.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.40.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 6e3099397..7bb1bfd37 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.39.1'; // x-release-please-version +export const VERSION = '4.40.0'; // x-release-please-version From 81a6c28c4773a0245ce9c505fc5b98d43df21beb Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 1 May 2024 17:31:45 -0400 Subject: [PATCH 383/725] chore(internal): bump prism version (#813) --- scripts/mock | 4 ++-- scripts/test | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/mock b/scripts/mock index 5a8c35b72..fe89a1d08 100755 --- a/scripts/mock +++ b/scripts/mock @@ -21,7 +21,7 @@ echo "==> Starting mock server with URL ${URL}" # Run prism mock on the given spec if [ "$1" == "--daemon" ]; then - npm exec --package=@stoplight/prism-cli@~5.3.2 -- prism mock "$URL" &> .prism.log & + npm exec --package=@stoplight/prism-cli@~5.8 -- prism mock "$URL" &> .prism.log & # Wait for server to come online echo -n "Waiting for server" @@ -37,5 +37,5 @@ if [ "$1" == "--daemon" ]; then echo else - npm exec --package=@stoplight/prism-cli@~5.3.2 -- prism mock "$URL" + npm exec --package=@stoplight/prism-cli@~5.8 -- prism mock "$URL" fi diff --git a/scripts/test b/scripts/test index aa94b72d8..b62a7cccd 100755 --- a/scripts/test +++ b/scripts/test @@ -54,4 +54,4 @@ fi # Run tests echo "==> Running tests" -./node_modules/.bin/jest +./node_modules/.bin/jest "$@" From d0b915a7514eda5b23d7d1e4420d1d1485ed8d0f Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 2 May 2024 04:16:28 -0400 Subject: [PATCH 384/725] chore(internal): move client class to separate file (#815) --- src/client.ts | 292 +++++++++++++++++++++++++++++++++++++++++++++++++ src/index.ts | 296 +------------------------------------------------- 2 files changed, 298 insertions(+), 290 deletions(-) create mode 100644 src/client.ts diff --git a/src/client.ts b/src/client.ts new file mode 100644 index 000000000..493dcbf82 --- /dev/null +++ b/src/client.ts @@ -0,0 +1,292 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import * as Core from './core'; +import * as Errors from './error'; +import { type Agent } from './_shims/index'; +import * as Uploads from './uploads'; +import * as Pagination from 'openai/pagination'; +import * as API from 'openai/resources/index'; + +export interface ClientOptions { + /** + * Defaults to process.env['OPENAI_API_KEY']. + */ + apiKey?: string | undefined; + + /** + * Defaults to process.env['OPENAI_ORG_ID']. + */ + organization?: string | null | undefined; + + /** + * Defaults to process.env['OPENAI_PROJECT_ID']. + */ + project?: string | null | undefined; + + /** + * Override the default base URL for the API, e.g., "https://api.example.com/v2/" + * + * Defaults to process.env['OPENAI_BASE_URL']. + */ + baseURL?: string | null | undefined; + + /** + * The maximum amount of time (in milliseconds) that the client should wait for a response + * from the server before timing out a single request. + * + * Note that request timeouts are retried by default, so in a worst-case scenario you may wait + * much longer than this timeout before the promise succeeds or fails. + */ + timeout?: number; + + /** + * An HTTP agent used to manage HTTP(S) connections. + * + * If not provided, an agent will be constructed by default in the Node.js environment, + * otherwise no agent is used. + */ + httpAgent?: Agent; + + /** + * Specify a custom `fetch` function implementation. + * + * If not provided, we use `node-fetch` on Node.js and otherwise expect that `fetch` is + * defined globally. + */ + fetch?: Core.Fetch | undefined; + + /** + * The maximum number of times that the client will retry a request in case of a + * temporary failure, like a network error or a 5XX error from the server. + * + * @default 2 + */ + maxRetries?: number; + + /** + * Default headers to include with every request to the API. + * + * These can be removed in individual requests by explicitly setting the + * header to `undefined` or `null` in request options. + */ + defaultHeaders?: Core.Headers; + + /** + * Default query parameters to include with every request to the API. + * + * These can be removed in individual requests by explicitly setting the + * param to `undefined` in request options. + */ + defaultQuery?: Core.DefaultQuery; + + /** + * By default, client-side use of this library is not allowed, as it risks exposing your secret API credentials to attackers. + * Only set this option to `true` if you understand the risks and have appropriate mitigations in place. + */ + dangerouslyAllowBrowser?: boolean; +} + +/** API Client for interfacing with the OpenAI API. */ +export class OpenAI extends Core.APIClient { + apiKey: string; + organization: string | null; + project: string | null; + + private _options: ClientOptions; + + /** + * API Client for interfacing with the OpenAI API. + * + * @param {string | undefined} [opts.apiKey=process.env['OPENAI_API_KEY'] ?? undefined] + * @param {string | null | undefined} [opts.organization=process.env['OPENAI_ORG_ID'] ?? null] + * @param {string | null | undefined} [opts.project=process.env['OPENAI_PROJECT_ID'] ?? null] + * @param {string} [opts.baseURL=process.env['OPENAI_BASE_URL'] ?? https://api.openai.com/v1] - Override the default base URL for the API. + * @param {number} [opts.timeout=10 minutes] - The maximum amount of time (in milliseconds) the client will wait for a response before timing out. + * @param {number} [opts.httpAgent] - An HTTP agent used to manage HTTP(s) connections. + * @param {Core.Fetch} [opts.fetch] - Specify a custom `fetch` function implementation. + * @param {number} [opts.maxRetries=2] - The maximum number of times the client will retry a request. + * @param {Core.Headers} opts.defaultHeaders - Default headers to include with every request to the API. + * @param {Core.DefaultQuery} opts.defaultQuery - Default query parameters to include with every request to the API. + * @param {boolean} [opts.dangerouslyAllowBrowser=false] - By default, client-side use of this library is not allowed, as it risks exposing your secret API credentials to attackers. + */ + constructor({ + baseURL = Core.readEnv('OPENAI_BASE_URL'), + apiKey = Core.readEnv('OPENAI_API_KEY'), + organization = Core.readEnv('OPENAI_ORG_ID') ?? null, + project = Core.readEnv('OPENAI_PROJECT_ID') ?? null, + ...opts + }: ClientOptions = {}) { + if (apiKey === undefined) { + throw new Errors.OpenAIError( + "The OPENAI_API_KEY environment variable is missing or empty; either provide it, or instantiate the OpenAI client with an apiKey option, like new OpenAI({ apiKey: 'My API Key' }).", + ); + } + + const options: ClientOptions = { + apiKey, + organization, + project, + ...opts, + baseURL: baseURL || `https://api.openai.com/v1`, + }; + + if (!options.dangerouslyAllowBrowser && Core.isRunningInBrowser()) { + throw new Errors.OpenAIError( + "It looks like you're running in a browser-like environment.\n\nThis is disabled by default, as it risks exposing your secret API credentials to attackers.\nIf you understand the risks and have appropriate mitigations in place,\nyou can set the `dangerouslyAllowBrowser` option to `true`, e.g.,\n\nnew OpenAI({ apiKey, dangerouslyAllowBrowser: true });\n\nhttps://help.openai.com/en/articles/5112595-best-practices-for-api-key-safety\n", + ); + } + + super({ + baseURL: options.baseURL!, + timeout: options.timeout ?? 600000 /* 10 minutes */, + httpAgent: options.httpAgent, + maxRetries: options.maxRetries, + fetch: options.fetch, + }); + this._options = options; + + this.apiKey = apiKey; + this.organization = organization; + this.project = project; + } + + completions: API.Completions = new API.Completions(this); + chat: API.Chat = new API.Chat(this); + embeddings: API.Embeddings = new API.Embeddings(this); + files: API.Files = new API.Files(this); + images: API.Images = new API.Images(this); + audio: API.Audio = new API.Audio(this); + moderations: API.Moderations = new API.Moderations(this); + models: API.Models = new API.Models(this); + fineTuning: API.FineTuning = new API.FineTuning(this); + beta: API.Beta = new API.Beta(this); + batches: API.Batches = new API.Batches(this); + + protected override defaultQuery(): Core.DefaultQuery | undefined { + return this._options.defaultQuery; + } + + protected override defaultHeaders(opts: Core.FinalRequestOptions): Core.Headers { + return { + ...super.defaultHeaders(opts), + 'OpenAI-Organization': this.organization, + 'OpenAI-Project': this.project, + ...this._options.defaultHeaders, + }; + } + + protected override authHeaders(opts: Core.FinalRequestOptions): Core.Headers { + return { Authorization: `Bearer ${this.apiKey}` }; + } + + static OpenAI = this; + + static OpenAIError = Errors.OpenAIError; + static APIError = Errors.APIError; + static APIConnectionError = Errors.APIConnectionError; + static APIConnectionTimeoutError = Errors.APIConnectionTimeoutError; + static APIUserAbortError = Errors.APIUserAbortError; + static NotFoundError = Errors.NotFoundError; + static ConflictError = Errors.ConflictError; + static RateLimitError = Errors.RateLimitError; + static BadRequestError = Errors.BadRequestError; + static AuthenticationError = Errors.AuthenticationError; + static InternalServerError = Errors.InternalServerError; + static PermissionDeniedError = Errors.PermissionDeniedError; + static UnprocessableEntityError = Errors.UnprocessableEntityError; + + static toFile = Uploads.toFile; + static fileFromPath = Uploads.fileFromPath; +} + +export namespace OpenAI { + export import RequestOptions = Core.RequestOptions; + + export import Page = Pagination.Page; + export import PageResponse = Pagination.PageResponse; + + export import CursorPage = Pagination.CursorPage; + export import CursorPageParams = Pagination.CursorPageParams; + export import CursorPageResponse = Pagination.CursorPageResponse; + + export import Completions = API.Completions; + export import Completion = API.Completion; + export import CompletionChoice = API.CompletionChoice; + export import CompletionUsage = API.CompletionUsage; + export import CompletionCreateParams = API.CompletionCreateParams; + export import CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; + export import CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; + + export import Chat = API.Chat; + export import ChatModel = API.ChatModel; + export import ChatCompletion = API.ChatCompletion; + export import ChatCompletionAssistantMessageParam = API.ChatCompletionAssistantMessageParam; + export import ChatCompletionChunk = API.ChatCompletionChunk; + export import ChatCompletionContentPart = API.ChatCompletionContentPart; + export import ChatCompletionContentPartImage = API.ChatCompletionContentPartImage; + export import ChatCompletionContentPartText = API.ChatCompletionContentPartText; + export import ChatCompletionFunctionCallOption = API.ChatCompletionFunctionCallOption; + export import ChatCompletionFunctionMessageParam = API.ChatCompletionFunctionMessageParam; + export import ChatCompletionMessage = API.ChatCompletionMessage; + export import ChatCompletionMessageParam = API.ChatCompletionMessageParam; + export import ChatCompletionMessageToolCall = API.ChatCompletionMessageToolCall; + export import ChatCompletionNamedToolChoice = API.ChatCompletionNamedToolChoice; + export import ChatCompletionRole = API.ChatCompletionRole; + export import ChatCompletionSystemMessageParam = API.ChatCompletionSystemMessageParam; + export import ChatCompletionTokenLogprob = API.ChatCompletionTokenLogprob; + export import ChatCompletionTool = API.ChatCompletionTool; + export import ChatCompletionToolChoiceOption = API.ChatCompletionToolChoiceOption; + export import ChatCompletionToolMessageParam = API.ChatCompletionToolMessageParam; + export import ChatCompletionUserMessageParam = API.ChatCompletionUserMessageParam; + export import ChatCompletionCreateParams = API.ChatCompletionCreateParams; + export import ChatCompletionCreateParamsNonStreaming = API.ChatCompletionCreateParamsNonStreaming; + export import ChatCompletionCreateParamsStreaming = API.ChatCompletionCreateParamsStreaming; + + export import Embeddings = API.Embeddings; + export import CreateEmbeddingResponse = API.CreateEmbeddingResponse; + export import Embedding = API.Embedding; + export import EmbeddingCreateParams = API.EmbeddingCreateParams; + + export import Files = API.Files; + export import FileContent = API.FileContent; + export import FileDeleted = API.FileDeleted; + export import FileObject = API.FileObject; + export import FileObjectsPage = API.FileObjectsPage; + export import FileCreateParams = API.FileCreateParams; + export import FileListParams = API.FileListParams; + + export import Images = API.Images; + export import Image = API.Image; + export import ImagesResponse = API.ImagesResponse; + export import ImageCreateVariationParams = API.ImageCreateVariationParams; + export import ImageEditParams = API.ImageEditParams; + export import ImageGenerateParams = API.ImageGenerateParams; + + export import Audio = API.Audio; + + export import Moderations = API.Moderations; + export import Moderation = API.Moderation; + export import ModerationCreateResponse = API.ModerationCreateResponse; + export import ModerationCreateParams = API.ModerationCreateParams; + + export import Models = API.Models; + export import Model = API.Model; + export import ModelDeleted = API.ModelDeleted; + export import ModelsPage = API.ModelsPage; + + export import FineTuning = API.FineTuning; + + export import Beta = API.Beta; + + export import Batches = API.Batches; + export import Batch = API.Batch; + export import BatchError = API.BatchError; + export import BatchRequestCounts = API.BatchRequestCounts; + export import BatchesPage = API.BatchesPage; + export import BatchCreateParams = API.BatchCreateParams; + export import BatchListParams = API.BatchListParams; + + export import ErrorObject = API.ErrorObject; + export import FunctionDefinition = API.FunctionDefinition; + export import FunctionParameters = API.FunctionParameters; +} diff --git a/src/index.ts b/src/index.ts index 1741a4816..61989a318 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,203 +1,14 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from './core'; import * as Errors from './error'; -import { type Agent } from './_shims/index'; import * as Uploads from './uploads'; -import * as Pagination from 'openai/pagination'; -import * as API from 'openai/resources/index'; +import { OpenAI } from './client'; -export interface ClientOptions { - /** - * Defaults to process.env['OPENAI_API_KEY']. - */ - apiKey?: string | undefined; - - /** - * Defaults to process.env['OPENAI_ORG_ID']. - */ - organization?: string | null | undefined; - - /** - * Defaults to process.env['OPENAI_PROJECT_ID']. - */ - project?: string | null | undefined; - - /** - * Override the default base URL for the API, e.g., "https://api.example.com/v2/" - * - * Defaults to process.env['OPENAI_BASE_URL']. - */ - baseURL?: string | null | undefined; - - /** - * The maximum amount of time (in milliseconds) that the client should wait for a response - * from the server before timing out a single request. - * - * Note that request timeouts are retried by default, so in a worst-case scenario you may wait - * much longer than this timeout before the promise succeeds or fails. - */ - timeout?: number; - - /** - * An HTTP agent used to manage HTTP(S) connections. - * - * If not provided, an agent will be constructed by default in the Node.js environment, - * otherwise no agent is used. - */ - httpAgent?: Agent; - - /** - * Specify a custom `fetch` function implementation. - * - * If not provided, we use `node-fetch` on Node.js and otherwise expect that `fetch` is - * defined globally. - */ - fetch?: Core.Fetch | undefined; - - /** - * The maximum number of times that the client will retry a request in case of a - * temporary failure, like a network error or a 5XX error from the server. - * - * @default 2 - */ - maxRetries?: number; - - /** - * Default headers to include with every request to the API. - * - * These can be removed in individual requests by explicitly setting the - * header to `undefined` or `null` in request options. - */ - defaultHeaders?: Core.Headers; - - /** - * Default query parameters to include with every request to the API. - * - * These can be removed in individual requests by explicitly setting the - * param to `undefined` in request options. - */ - defaultQuery?: Core.DefaultQuery; - - /** - * By default, client-side use of this library is not allowed, as it risks exposing your secret API credentials to attackers. - * Only set this option to `true` if you understand the risks and have appropriate mitigations in place. - */ - dangerouslyAllowBrowser?: boolean; -} - -/** API Client for interfacing with the OpenAI API. */ -export class OpenAI extends Core.APIClient { - apiKey: string; - organization: string | null; - project: string | null; - - private _options: ClientOptions; - - /** - * API Client for interfacing with the OpenAI API. - * - * @param {string | undefined} [opts.apiKey=process.env['OPENAI_API_KEY'] ?? undefined] - * @param {string | null | undefined} [opts.organization=process.env['OPENAI_ORG_ID'] ?? null] - * @param {string | null | undefined} [opts.project=process.env['OPENAI_PROJECT_ID'] ?? null] - * @param {string} [opts.baseURL=process.env['OPENAI_BASE_URL'] ?? https://api.openai.com/v1] - Override the default base URL for the API. - * @param {number} [opts.timeout=10 minutes] - The maximum amount of time (in milliseconds) the client will wait for a response before timing out. - * @param {number} [opts.httpAgent] - An HTTP agent used to manage HTTP(s) connections. - * @param {Core.Fetch} [opts.fetch] - Specify a custom `fetch` function implementation. - * @param {number} [opts.maxRetries=2] - The maximum number of times the client will retry a request. - * @param {Core.Headers} opts.defaultHeaders - Default headers to include with every request to the API. - * @param {Core.DefaultQuery} opts.defaultQuery - Default query parameters to include with every request to the API. - * @param {boolean} [opts.dangerouslyAllowBrowser=false] - By default, client-side use of this library is not allowed, as it risks exposing your secret API credentials to attackers. - */ - constructor({ - baseURL = Core.readEnv('OPENAI_BASE_URL'), - apiKey = Core.readEnv('OPENAI_API_KEY'), - organization = Core.readEnv('OPENAI_ORG_ID') ?? null, - project = Core.readEnv('OPENAI_PROJECT_ID') ?? null, - ...opts - }: ClientOptions = {}) { - if (apiKey === undefined) { - throw new Errors.OpenAIError( - "The OPENAI_API_KEY environment variable is missing or empty; either provide it, or instantiate the OpenAI client with an apiKey option, like new OpenAI({ apiKey: 'My API Key' }).", - ); - } - - const options: ClientOptions = { - apiKey, - organization, - project, - ...opts, - baseURL: baseURL || `https://api.openai.com/v1`, - }; - - if (!options.dangerouslyAllowBrowser && Core.isRunningInBrowser()) { - throw new Errors.OpenAIError( - "It looks like you're running in a browser-like environment.\n\nThis is disabled by default, as it risks exposing your secret API credentials to attackers.\nIf you understand the risks and have appropriate mitigations in place,\nyou can set the `dangerouslyAllowBrowser` option to `true`, e.g.,\n\nnew OpenAI({ apiKey, dangerouslyAllowBrowser: true });\n\nhttps://help.openai.com/en/articles/5112595-best-practices-for-api-key-safety\n", - ); - } - - super({ - baseURL: options.baseURL!, - timeout: options.timeout ?? 600000 /* 10 minutes */, - httpAgent: options.httpAgent, - maxRetries: options.maxRetries, - fetch: options.fetch, - }); - this._options = options; - - this.apiKey = apiKey; - this.organization = organization; - this.project = project; - } - - completions: API.Completions = new API.Completions(this); - chat: API.Chat = new API.Chat(this); - embeddings: API.Embeddings = new API.Embeddings(this); - files: API.Files = new API.Files(this); - images: API.Images = new API.Images(this); - audio: API.Audio = new API.Audio(this); - moderations: API.Moderations = new API.Moderations(this); - models: API.Models = new API.Models(this); - fineTuning: API.FineTuning = new API.FineTuning(this); - beta: API.Beta = new API.Beta(this); - batches: API.Batches = new API.Batches(this); - - protected override defaultQuery(): Core.DefaultQuery | undefined { - return this._options.defaultQuery; - } - - protected override defaultHeaders(opts: Core.FinalRequestOptions): Core.Headers { - return { - ...super.defaultHeaders(opts), - 'OpenAI-Organization': this.organization, - 'OpenAI-Project': this.project, - ...this._options.defaultHeaders, - }; - } - - protected override authHeaders(opts: Core.FinalRequestOptions): Core.Headers { - return { Authorization: `Bearer ${this.apiKey}` }; - } - - static OpenAI = this; - - static OpenAIError = Errors.OpenAIError; - static APIError = Errors.APIError; - static APIConnectionError = Errors.APIConnectionError; - static APIConnectionTimeoutError = Errors.APIConnectionTimeoutError; - static APIUserAbortError = Errors.APIUserAbortError; - static NotFoundError = Errors.NotFoundError; - static ConflictError = Errors.ConflictError; - static RateLimitError = Errors.RateLimitError; - static BadRequestError = Errors.BadRequestError; - static AuthenticationError = Errors.AuthenticationError; - static InternalServerError = Errors.InternalServerError; - static PermissionDeniedError = Errors.PermissionDeniedError; - static UnprocessableEntityError = Errors.UnprocessableEntityError; +export { OpenAI }; +export default OpenAI; - static toFile = Uploads.toFile; - static fileFromPath = Uploads.fileFromPath; -} +export import toFile = Uploads.toFile; +export import fileFromPath = Uploads.fileFromPath; export const { OpenAIError, @@ -215,99 +26,4 @@ export const { UnprocessableEntityError, } = Errors; -export import toFile = Uploads.toFile; -export import fileFromPath = Uploads.fileFromPath; - -export namespace OpenAI { - export import RequestOptions = Core.RequestOptions; - - export import Page = Pagination.Page; - export import PageResponse = Pagination.PageResponse; - - export import CursorPage = Pagination.CursorPage; - export import CursorPageParams = Pagination.CursorPageParams; - export import CursorPageResponse = Pagination.CursorPageResponse; - - export import Completions = API.Completions; - export import Completion = API.Completion; - export import CompletionChoice = API.CompletionChoice; - export import CompletionUsage = API.CompletionUsage; - export import CompletionCreateParams = API.CompletionCreateParams; - export import CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; - export import CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; - - export import Chat = API.Chat; - export import ChatModel = API.ChatModel; - export import ChatCompletion = API.ChatCompletion; - export import ChatCompletionAssistantMessageParam = API.ChatCompletionAssistantMessageParam; - export import ChatCompletionChunk = API.ChatCompletionChunk; - export import ChatCompletionContentPart = API.ChatCompletionContentPart; - export import ChatCompletionContentPartImage = API.ChatCompletionContentPartImage; - export import ChatCompletionContentPartText = API.ChatCompletionContentPartText; - export import ChatCompletionFunctionCallOption = API.ChatCompletionFunctionCallOption; - export import ChatCompletionFunctionMessageParam = API.ChatCompletionFunctionMessageParam; - export import ChatCompletionMessage = API.ChatCompletionMessage; - export import ChatCompletionMessageParam = API.ChatCompletionMessageParam; - export import ChatCompletionMessageToolCall = API.ChatCompletionMessageToolCall; - export import ChatCompletionNamedToolChoice = API.ChatCompletionNamedToolChoice; - export import ChatCompletionRole = API.ChatCompletionRole; - export import ChatCompletionSystemMessageParam = API.ChatCompletionSystemMessageParam; - export import ChatCompletionTokenLogprob = API.ChatCompletionTokenLogprob; - export import ChatCompletionTool = API.ChatCompletionTool; - export import ChatCompletionToolChoiceOption = API.ChatCompletionToolChoiceOption; - export import ChatCompletionToolMessageParam = API.ChatCompletionToolMessageParam; - export import ChatCompletionUserMessageParam = API.ChatCompletionUserMessageParam; - export import ChatCompletionCreateParams = API.ChatCompletionCreateParams; - export import ChatCompletionCreateParamsNonStreaming = API.ChatCompletionCreateParamsNonStreaming; - export import ChatCompletionCreateParamsStreaming = API.ChatCompletionCreateParamsStreaming; - - export import Embeddings = API.Embeddings; - export import CreateEmbeddingResponse = API.CreateEmbeddingResponse; - export import Embedding = API.Embedding; - export import EmbeddingCreateParams = API.EmbeddingCreateParams; - - export import Files = API.Files; - export import FileContent = API.FileContent; - export import FileDeleted = API.FileDeleted; - export import FileObject = API.FileObject; - export import FileObjectsPage = API.FileObjectsPage; - export import FileCreateParams = API.FileCreateParams; - export import FileListParams = API.FileListParams; - - export import Images = API.Images; - export import Image = API.Image; - export import ImagesResponse = API.ImagesResponse; - export import ImageCreateVariationParams = API.ImageCreateVariationParams; - export import ImageEditParams = API.ImageEditParams; - export import ImageGenerateParams = API.ImageGenerateParams; - - export import Audio = API.Audio; - - export import Moderations = API.Moderations; - export import Moderation = API.Moderation; - export import ModerationCreateResponse = API.ModerationCreateResponse; - export import ModerationCreateParams = API.ModerationCreateParams; - - export import Models = API.Models; - export import Model = API.Model; - export import ModelDeleted = API.ModelDeleted; - export import ModelsPage = API.ModelsPage; - - export import FineTuning = API.FineTuning; - - export import Beta = API.Beta; - - export import Batches = API.Batches; - export import Batch = API.Batch; - export import BatchError = API.BatchError; - export import BatchRequestCounts = API.BatchRequestCounts; - export import BatchesPage = API.BatchesPage; - export import BatchCreateParams = API.BatchCreateParams; - export import BatchListParams = API.BatchListParams; - - export import ErrorObject = API.ErrorObject; - export import FunctionDefinition = API.FunctionDefinition; - export import FunctionParameters = API.FunctionParameters; -} - -export default OpenAI; +export * from './client'; From ab08790b98575b51c705b1ce09ac96b50870fbfb Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 2 May 2024 04:16:49 -0400 Subject: [PATCH 385/725] release: 4.40.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d645df0f2..0493e5bac 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.40.0" + ".": "4.40.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index dc79b248c..6f5a077cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 4.40.1 (2024-05-02) + +Full Changelog: [v4.40.0...v4.40.1](https://github.com/openai/openai-node/compare/v4.40.0...v4.40.1) + +### Chores + +* **internal:** bump prism version ([#813](https://github.com/openai/openai-node/issues/813)) ([81a6c28](https://github.com/openai/openai-node/commit/81a6c28c4773a0245ce9c505fc5b98d43df21beb)) +* **internal:** move client class to separate file ([#815](https://github.com/openai/openai-node/issues/815)) ([d0b915a](https://github.com/openai/openai-node/commit/d0b915a7514eda5b23d7d1e4420d1d1485ed8d0f)) + ## 4.40.0 (2024-05-01) Full Changelog: [v4.39.1...v4.40.0](https://github.com/openai/openai-node/compare/v4.39.1...v4.40.0) diff --git a/README.md b/README.md index 7aba97c47..e6d723367 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.40.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.40.1/mod.ts'; ``` diff --git a/package.json b/package.json index 6038fdfea..416dd8d26 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.40.0", + "version": "4.40.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 3a9c87b7c..67e7626eb 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.40.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.40.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 7bb1bfd37..0dde5072f 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.40.0'; // x-release-please-version +export const VERSION = '4.40.1'; // x-release-please-version From df516b7b349a4f5af218ef358483839e20f700a5 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 3 May 2024 06:17:24 -0400 Subject: [PATCH 386/725] fix(vectorStores): correct uploadAndPoll method (#817) --- src/resources/beta/vector-stores/files.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resources/beta/vector-stores/files.ts b/src/resources/beta/vector-stores/files.ts index a18211221..f8f8cddc5 100644 --- a/src/resources/beta/vector-stores/files.ts +++ b/src/resources/beta/vector-stores/files.ts @@ -164,7 +164,7 @@ export class Files extends APIResource { file: Uploadable, options?: Core.RequestOptions & { pollIntervalMs?: number }, ): Promise { - const fileInfo = await this._client.files.create({ file: file, purpose: 'assistants' }, options); + const fileInfo = await this.upload(vectorStoreId, file, options); return await this.poll(vectorStoreId, fileInfo.id, options); } } From 01c40e7dd71f52e98cf55088ae160a57bfc67569 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 3 May 2024 09:16:05 -0400 Subject: [PATCH 387/725] fix(package): revert recent client file change (#819) this subtly broke some setups that we didn't have tests for --- ecosystem-tests/cli.ts | 4 + ecosystem-tests/node-js/package-lock.json | 244 ++++++++++++++++++ ecosystem-tests/node-js/package.json | 14 + ecosystem-tests/node-js/test.js | 8 + src/client.ts | 292 --------------------- src/index.ts | 296 +++++++++++++++++++++- 6 files changed, 560 insertions(+), 298 deletions(-) create mode 100644 ecosystem-tests/node-js/package-lock.json create mode 100644 ecosystem-tests/node-js/package.json create mode 100644 ecosystem-tests/node-js/test.js delete mode 100644 src/client.ts diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index a3c1f27a4..e315ccd6c 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -25,6 +25,10 @@ const projectRunners = { 'node-ts-esm': defaultNodeRunner, 'node-ts-esm-web': defaultNodeRunner, 'node-ts-esm-auto': defaultNodeRunner, + 'node-js': async () => { + await installPackage(); + await run('node', ['test.js']); + }, 'ts-browser-webpack': async () => { await installPackage(); diff --git a/ecosystem-tests/node-js/package-lock.json b/ecosystem-tests/node-js/package-lock.json new file mode 100644 index 000000000..bb59ccb92 --- /dev/null +++ b/ecosystem-tests/node-js/package-lock.json @@ -0,0 +1,244 @@ +{ + "name": "node-js", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "foo", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "openai": "^4.40.1" + } + }, + "node_modules/@types/node": { + "version": "18.19.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.31.tgz", + "integrity": "sha512-ArgCD39YpyyrtFKIqMDvjz79jto5fcI/SVUs2HwB+f0dAzq68yqOdyaSivLiLugSziTpNXLQrVb7RZFmdZzbhA==", + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@types/node-fetch": { + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", + "dependencies": { + "@types/node": "*", + "form-data": "^4.0.0" + } + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/agentkeepalive": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz", + "integrity": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==", + "dependencies": { + "humanize-ms": "^1.2.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/form-data-encoder": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-1.7.2.tgz", + "integrity": "sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==" + }, + "node_modules/formdata-node": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-4.4.1.tgz", + "integrity": "sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==", + "dependencies": { + "node-domexception": "1.0.0", + "web-streams-polyfill": "4.0.0-beta.3" + }, + "engines": { + "node": ">= 12.20" + } + }, + "node_modules/formdata-node/node_modules/web-streams-polyfill": { + "version": "4.0.0-beta.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz", + "integrity": "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==", + "engines": { + "node": ">= 14" + } + }, + "node_modules/humanize-ms": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", + "dependencies": { + "ms": "^2.0.0" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "engines": { + "node": ">=10.5.0" + } + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/openai": { + "version": "4.40.1", + "resolved": "https://registry.npmjs.org/openai/-/openai-4.40.1.tgz", + "integrity": "sha512-mS7LerF4fY1/we0aKGGwIWtosTJFLKuNbBWMBR/G1TAZUHoktAdod0dqIrlQvSD39uS6jNEEbT7jRsXmzfEPBw==", + "dependencies": { + "@types/node": "^18.11.18", + "@types/node-fetch": "^2.6.4", + "abort-controller": "^3.0.0", + "agentkeepalive": "^4.2.1", + "form-data-encoder": "1.7.2", + "formdata-node": "^4.3.2", + "node-fetch": "^2.6.7", + "web-streams-polyfill": "^3.2.1" + }, + "bin": { + "openai": "bin/cli" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" + }, + "node_modules/web-streams-polyfill": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz", + "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + } + } +} diff --git a/ecosystem-tests/node-js/package.json b/ecosystem-tests/node-js/package.json new file mode 100644 index 000000000..63f858014 --- /dev/null +++ b/ecosystem-tests/node-js/package.json @@ -0,0 +1,14 @@ +{ + "name": "node-js", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "", + "license": "ISC", + "dependencies": { + "openai": "^4.40.1" + } +} diff --git a/ecosystem-tests/node-js/test.js b/ecosystem-tests/node-js/test.js new file mode 100644 index 000000000..7f9f21736 --- /dev/null +++ b/ecosystem-tests/node-js/test.js @@ -0,0 +1,8 @@ +const openaiKey = "a valid OpenAI key" +const OpenAI = require('openai'); + +console.log(OpenAI) + +const openai = new OpenAI({ + apiKey: openaiKey, +}); diff --git a/src/client.ts b/src/client.ts deleted file mode 100644 index 493dcbf82..000000000 --- a/src/client.ts +++ /dev/null @@ -1,292 +0,0 @@ -// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. - -import * as Core from './core'; -import * as Errors from './error'; -import { type Agent } from './_shims/index'; -import * as Uploads from './uploads'; -import * as Pagination from 'openai/pagination'; -import * as API from 'openai/resources/index'; - -export interface ClientOptions { - /** - * Defaults to process.env['OPENAI_API_KEY']. - */ - apiKey?: string | undefined; - - /** - * Defaults to process.env['OPENAI_ORG_ID']. - */ - organization?: string | null | undefined; - - /** - * Defaults to process.env['OPENAI_PROJECT_ID']. - */ - project?: string | null | undefined; - - /** - * Override the default base URL for the API, e.g., "https://api.example.com/v2/" - * - * Defaults to process.env['OPENAI_BASE_URL']. - */ - baseURL?: string | null | undefined; - - /** - * The maximum amount of time (in milliseconds) that the client should wait for a response - * from the server before timing out a single request. - * - * Note that request timeouts are retried by default, so in a worst-case scenario you may wait - * much longer than this timeout before the promise succeeds or fails. - */ - timeout?: number; - - /** - * An HTTP agent used to manage HTTP(S) connections. - * - * If not provided, an agent will be constructed by default in the Node.js environment, - * otherwise no agent is used. - */ - httpAgent?: Agent; - - /** - * Specify a custom `fetch` function implementation. - * - * If not provided, we use `node-fetch` on Node.js and otherwise expect that `fetch` is - * defined globally. - */ - fetch?: Core.Fetch | undefined; - - /** - * The maximum number of times that the client will retry a request in case of a - * temporary failure, like a network error or a 5XX error from the server. - * - * @default 2 - */ - maxRetries?: number; - - /** - * Default headers to include with every request to the API. - * - * These can be removed in individual requests by explicitly setting the - * header to `undefined` or `null` in request options. - */ - defaultHeaders?: Core.Headers; - - /** - * Default query parameters to include with every request to the API. - * - * These can be removed in individual requests by explicitly setting the - * param to `undefined` in request options. - */ - defaultQuery?: Core.DefaultQuery; - - /** - * By default, client-side use of this library is not allowed, as it risks exposing your secret API credentials to attackers. - * Only set this option to `true` if you understand the risks and have appropriate mitigations in place. - */ - dangerouslyAllowBrowser?: boolean; -} - -/** API Client for interfacing with the OpenAI API. */ -export class OpenAI extends Core.APIClient { - apiKey: string; - organization: string | null; - project: string | null; - - private _options: ClientOptions; - - /** - * API Client for interfacing with the OpenAI API. - * - * @param {string | undefined} [opts.apiKey=process.env['OPENAI_API_KEY'] ?? undefined] - * @param {string | null | undefined} [opts.organization=process.env['OPENAI_ORG_ID'] ?? null] - * @param {string | null | undefined} [opts.project=process.env['OPENAI_PROJECT_ID'] ?? null] - * @param {string} [opts.baseURL=process.env['OPENAI_BASE_URL'] ?? https://api.openai.com/v1] - Override the default base URL for the API. - * @param {number} [opts.timeout=10 minutes] - The maximum amount of time (in milliseconds) the client will wait for a response before timing out. - * @param {number} [opts.httpAgent] - An HTTP agent used to manage HTTP(s) connections. - * @param {Core.Fetch} [opts.fetch] - Specify a custom `fetch` function implementation. - * @param {number} [opts.maxRetries=2] - The maximum number of times the client will retry a request. - * @param {Core.Headers} opts.defaultHeaders - Default headers to include with every request to the API. - * @param {Core.DefaultQuery} opts.defaultQuery - Default query parameters to include with every request to the API. - * @param {boolean} [opts.dangerouslyAllowBrowser=false] - By default, client-side use of this library is not allowed, as it risks exposing your secret API credentials to attackers. - */ - constructor({ - baseURL = Core.readEnv('OPENAI_BASE_URL'), - apiKey = Core.readEnv('OPENAI_API_KEY'), - organization = Core.readEnv('OPENAI_ORG_ID') ?? null, - project = Core.readEnv('OPENAI_PROJECT_ID') ?? null, - ...opts - }: ClientOptions = {}) { - if (apiKey === undefined) { - throw new Errors.OpenAIError( - "The OPENAI_API_KEY environment variable is missing or empty; either provide it, or instantiate the OpenAI client with an apiKey option, like new OpenAI({ apiKey: 'My API Key' }).", - ); - } - - const options: ClientOptions = { - apiKey, - organization, - project, - ...opts, - baseURL: baseURL || `https://api.openai.com/v1`, - }; - - if (!options.dangerouslyAllowBrowser && Core.isRunningInBrowser()) { - throw new Errors.OpenAIError( - "It looks like you're running in a browser-like environment.\n\nThis is disabled by default, as it risks exposing your secret API credentials to attackers.\nIf you understand the risks and have appropriate mitigations in place,\nyou can set the `dangerouslyAllowBrowser` option to `true`, e.g.,\n\nnew OpenAI({ apiKey, dangerouslyAllowBrowser: true });\n\nhttps://help.openai.com/en/articles/5112595-best-practices-for-api-key-safety\n", - ); - } - - super({ - baseURL: options.baseURL!, - timeout: options.timeout ?? 600000 /* 10 minutes */, - httpAgent: options.httpAgent, - maxRetries: options.maxRetries, - fetch: options.fetch, - }); - this._options = options; - - this.apiKey = apiKey; - this.organization = organization; - this.project = project; - } - - completions: API.Completions = new API.Completions(this); - chat: API.Chat = new API.Chat(this); - embeddings: API.Embeddings = new API.Embeddings(this); - files: API.Files = new API.Files(this); - images: API.Images = new API.Images(this); - audio: API.Audio = new API.Audio(this); - moderations: API.Moderations = new API.Moderations(this); - models: API.Models = new API.Models(this); - fineTuning: API.FineTuning = new API.FineTuning(this); - beta: API.Beta = new API.Beta(this); - batches: API.Batches = new API.Batches(this); - - protected override defaultQuery(): Core.DefaultQuery | undefined { - return this._options.defaultQuery; - } - - protected override defaultHeaders(opts: Core.FinalRequestOptions): Core.Headers { - return { - ...super.defaultHeaders(opts), - 'OpenAI-Organization': this.organization, - 'OpenAI-Project': this.project, - ...this._options.defaultHeaders, - }; - } - - protected override authHeaders(opts: Core.FinalRequestOptions): Core.Headers { - return { Authorization: `Bearer ${this.apiKey}` }; - } - - static OpenAI = this; - - static OpenAIError = Errors.OpenAIError; - static APIError = Errors.APIError; - static APIConnectionError = Errors.APIConnectionError; - static APIConnectionTimeoutError = Errors.APIConnectionTimeoutError; - static APIUserAbortError = Errors.APIUserAbortError; - static NotFoundError = Errors.NotFoundError; - static ConflictError = Errors.ConflictError; - static RateLimitError = Errors.RateLimitError; - static BadRequestError = Errors.BadRequestError; - static AuthenticationError = Errors.AuthenticationError; - static InternalServerError = Errors.InternalServerError; - static PermissionDeniedError = Errors.PermissionDeniedError; - static UnprocessableEntityError = Errors.UnprocessableEntityError; - - static toFile = Uploads.toFile; - static fileFromPath = Uploads.fileFromPath; -} - -export namespace OpenAI { - export import RequestOptions = Core.RequestOptions; - - export import Page = Pagination.Page; - export import PageResponse = Pagination.PageResponse; - - export import CursorPage = Pagination.CursorPage; - export import CursorPageParams = Pagination.CursorPageParams; - export import CursorPageResponse = Pagination.CursorPageResponse; - - export import Completions = API.Completions; - export import Completion = API.Completion; - export import CompletionChoice = API.CompletionChoice; - export import CompletionUsage = API.CompletionUsage; - export import CompletionCreateParams = API.CompletionCreateParams; - export import CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; - export import CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; - - export import Chat = API.Chat; - export import ChatModel = API.ChatModel; - export import ChatCompletion = API.ChatCompletion; - export import ChatCompletionAssistantMessageParam = API.ChatCompletionAssistantMessageParam; - export import ChatCompletionChunk = API.ChatCompletionChunk; - export import ChatCompletionContentPart = API.ChatCompletionContentPart; - export import ChatCompletionContentPartImage = API.ChatCompletionContentPartImage; - export import ChatCompletionContentPartText = API.ChatCompletionContentPartText; - export import ChatCompletionFunctionCallOption = API.ChatCompletionFunctionCallOption; - export import ChatCompletionFunctionMessageParam = API.ChatCompletionFunctionMessageParam; - export import ChatCompletionMessage = API.ChatCompletionMessage; - export import ChatCompletionMessageParam = API.ChatCompletionMessageParam; - export import ChatCompletionMessageToolCall = API.ChatCompletionMessageToolCall; - export import ChatCompletionNamedToolChoice = API.ChatCompletionNamedToolChoice; - export import ChatCompletionRole = API.ChatCompletionRole; - export import ChatCompletionSystemMessageParam = API.ChatCompletionSystemMessageParam; - export import ChatCompletionTokenLogprob = API.ChatCompletionTokenLogprob; - export import ChatCompletionTool = API.ChatCompletionTool; - export import ChatCompletionToolChoiceOption = API.ChatCompletionToolChoiceOption; - export import ChatCompletionToolMessageParam = API.ChatCompletionToolMessageParam; - export import ChatCompletionUserMessageParam = API.ChatCompletionUserMessageParam; - export import ChatCompletionCreateParams = API.ChatCompletionCreateParams; - export import ChatCompletionCreateParamsNonStreaming = API.ChatCompletionCreateParamsNonStreaming; - export import ChatCompletionCreateParamsStreaming = API.ChatCompletionCreateParamsStreaming; - - export import Embeddings = API.Embeddings; - export import CreateEmbeddingResponse = API.CreateEmbeddingResponse; - export import Embedding = API.Embedding; - export import EmbeddingCreateParams = API.EmbeddingCreateParams; - - export import Files = API.Files; - export import FileContent = API.FileContent; - export import FileDeleted = API.FileDeleted; - export import FileObject = API.FileObject; - export import FileObjectsPage = API.FileObjectsPage; - export import FileCreateParams = API.FileCreateParams; - export import FileListParams = API.FileListParams; - - export import Images = API.Images; - export import Image = API.Image; - export import ImagesResponse = API.ImagesResponse; - export import ImageCreateVariationParams = API.ImageCreateVariationParams; - export import ImageEditParams = API.ImageEditParams; - export import ImageGenerateParams = API.ImageGenerateParams; - - export import Audio = API.Audio; - - export import Moderations = API.Moderations; - export import Moderation = API.Moderation; - export import ModerationCreateResponse = API.ModerationCreateResponse; - export import ModerationCreateParams = API.ModerationCreateParams; - - export import Models = API.Models; - export import Model = API.Model; - export import ModelDeleted = API.ModelDeleted; - export import ModelsPage = API.ModelsPage; - - export import FineTuning = API.FineTuning; - - export import Beta = API.Beta; - - export import Batches = API.Batches; - export import Batch = API.Batch; - export import BatchError = API.BatchError; - export import BatchRequestCounts = API.BatchRequestCounts; - export import BatchesPage = API.BatchesPage; - export import BatchCreateParams = API.BatchCreateParams; - export import BatchListParams = API.BatchListParams; - - export import ErrorObject = API.ErrorObject; - export import FunctionDefinition = API.FunctionDefinition; - export import FunctionParameters = API.FunctionParameters; -} diff --git a/src/index.ts b/src/index.ts index 61989a318..1741a4816 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,14 +1,203 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. +import * as Core from './core'; import * as Errors from './error'; +import { type Agent } from './_shims/index'; import * as Uploads from './uploads'; -import { OpenAI } from './client'; +import * as Pagination from 'openai/pagination'; +import * as API from 'openai/resources/index'; -export { OpenAI }; -export default OpenAI; +export interface ClientOptions { + /** + * Defaults to process.env['OPENAI_API_KEY']. + */ + apiKey?: string | undefined; -export import toFile = Uploads.toFile; -export import fileFromPath = Uploads.fileFromPath; + /** + * Defaults to process.env['OPENAI_ORG_ID']. + */ + organization?: string | null | undefined; + + /** + * Defaults to process.env['OPENAI_PROJECT_ID']. + */ + project?: string | null | undefined; + + /** + * Override the default base URL for the API, e.g., "https://api.example.com/v2/" + * + * Defaults to process.env['OPENAI_BASE_URL']. + */ + baseURL?: string | null | undefined; + + /** + * The maximum amount of time (in milliseconds) that the client should wait for a response + * from the server before timing out a single request. + * + * Note that request timeouts are retried by default, so in a worst-case scenario you may wait + * much longer than this timeout before the promise succeeds or fails. + */ + timeout?: number; + + /** + * An HTTP agent used to manage HTTP(S) connections. + * + * If not provided, an agent will be constructed by default in the Node.js environment, + * otherwise no agent is used. + */ + httpAgent?: Agent; + + /** + * Specify a custom `fetch` function implementation. + * + * If not provided, we use `node-fetch` on Node.js and otherwise expect that `fetch` is + * defined globally. + */ + fetch?: Core.Fetch | undefined; + + /** + * The maximum number of times that the client will retry a request in case of a + * temporary failure, like a network error or a 5XX error from the server. + * + * @default 2 + */ + maxRetries?: number; + + /** + * Default headers to include with every request to the API. + * + * These can be removed in individual requests by explicitly setting the + * header to `undefined` or `null` in request options. + */ + defaultHeaders?: Core.Headers; + + /** + * Default query parameters to include with every request to the API. + * + * These can be removed in individual requests by explicitly setting the + * param to `undefined` in request options. + */ + defaultQuery?: Core.DefaultQuery; + + /** + * By default, client-side use of this library is not allowed, as it risks exposing your secret API credentials to attackers. + * Only set this option to `true` if you understand the risks and have appropriate mitigations in place. + */ + dangerouslyAllowBrowser?: boolean; +} + +/** API Client for interfacing with the OpenAI API. */ +export class OpenAI extends Core.APIClient { + apiKey: string; + organization: string | null; + project: string | null; + + private _options: ClientOptions; + + /** + * API Client for interfacing with the OpenAI API. + * + * @param {string | undefined} [opts.apiKey=process.env['OPENAI_API_KEY'] ?? undefined] + * @param {string | null | undefined} [opts.organization=process.env['OPENAI_ORG_ID'] ?? null] + * @param {string | null | undefined} [opts.project=process.env['OPENAI_PROJECT_ID'] ?? null] + * @param {string} [opts.baseURL=process.env['OPENAI_BASE_URL'] ?? https://api.openai.com/v1] - Override the default base URL for the API. + * @param {number} [opts.timeout=10 minutes] - The maximum amount of time (in milliseconds) the client will wait for a response before timing out. + * @param {number} [opts.httpAgent] - An HTTP agent used to manage HTTP(s) connections. + * @param {Core.Fetch} [opts.fetch] - Specify a custom `fetch` function implementation. + * @param {number} [opts.maxRetries=2] - The maximum number of times the client will retry a request. + * @param {Core.Headers} opts.defaultHeaders - Default headers to include with every request to the API. + * @param {Core.DefaultQuery} opts.defaultQuery - Default query parameters to include with every request to the API. + * @param {boolean} [opts.dangerouslyAllowBrowser=false] - By default, client-side use of this library is not allowed, as it risks exposing your secret API credentials to attackers. + */ + constructor({ + baseURL = Core.readEnv('OPENAI_BASE_URL'), + apiKey = Core.readEnv('OPENAI_API_KEY'), + organization = Core.readEnv('OPENAI_ORG_ID') ?? null, + project = Core.readEnv('OPENAI_PROJECT_ID') ?? null, + ...opts + }: ClientOptions = {}) { + if (apiKey === undefined) { + throw new Errors.OpenAIError( + "The OPENAI_API_KEY environment variable is missing or empty; either provide it, or instantiate the OpenAI client with an apiKey option, like new OpenAI({ apiKey: 'My API Key' }).", + ); + } + + const options: ClientOptions = { + apiKey, + organization, + project, + ...opts, + baseURL: baseURL || `https://api.openai.com/v1`, + }; + + if (!options.dangerouslyAllowBrowser && Core.isRunningInBrowser()) { + throw new Errors.OpenAIError( + "It looks like you're running in a browser-like environment.\n\nThis is disabled by default, as it risks exposing your secret API credentials to attackers.\nIf you understand the risks and have appropriate mitigations in place,\nyou can set the `dangerouslyAllowBrowser` option to `true`, e.g.,\n\nnew OpenAI({ apiKey, dangerouslyAllowBrowser: true });\n\nhttps://help.openai.com/en/articles/5112595-best-practices-for-api-key-safety\n", + ); + } + + super({ + baseURL: options.baseURL!, + timeout: options.timeout ?? 600000 /* 10 minutes */, + httpAgent: options.httpAgent, + maxRetries: options.maxRetries, + fetch: options.fetch, + }); + this._options = options; + + this.apiKey = apiKey; + this.organization = organization; + this.project = project; + } + + completions: API.Completions = new API.Completions(this); + chat: API.Chat = new API.Chat(this); + embeddings: API.Embeddings = new API.Embeddings(this); + files: API.Files = new API.Files(this); + images: API.Images = new API.Images(this); + audio: API.Audio = new API.Audio(this); + moderations: API.Moderations = new API.Moderations(this); + models: API.Models = new API.Models(this); + fineTuning: API.FineTuning = new API.FineTuning(this); + beta: API.Beta = new API.Beta(this); + batches: API.Batches = new API.Batches(this); + + protected override defaultQuery(): Core.DefaultQuery | undefined { + return this._options.defaultQuery; + } + + protected override defaultHeaders(opts: Core.FinalRequestOptions): Core.Headers { + return { + ...super.defaultHeaders(opts), + 'OpenAI-Organization': this.organization, + 'OpenAI-Project': this.project, + ...this._options.defaultHeaders, + }; + } + + protected override authHeaders(opts: Core.FinalRequestOptions): Core.Headers { + return { Authorization: `Bearer ${this.apiKey}` }; + } + + static OpenAI = this; + + static OpenAIError = Errors.OpenAIError; + static APIError = Errors.APIError; + static APIConnectionError = Errors.APIConnectionError; + static APIConnectionTimeoutError = Errors.APIConnectionTimeoutError; + static APIUserAbortError = Errors.APIUserAbortError; + static NotFoundError = Errors.NotFoundError; + static ConflictError = Errors.ConflictError; + static RateLimitError = Errors.RateLimitError; + static BadRequestError = Errors.BadRequestError; + static AuthenticationError = Errors.AuthenticationError; + static InternalServerError = Errors.InternalServerError; + static PermissionDeniedError = Errors.PermissionDeniedError; + static UnprocessableEntityError = Errors.UnprocessableEntityError; + + static toFile = Uploads.toFile; + static fileFromPath = Uploads.fileFromPath; +} export const { OpenAIError, @@ -26,4 +215,99 @@ export const { UnprocessableEntityError, } = Errors; -export * from './client'; +export import toFile = Uploads.toFile; +export import fileFromPath = Uploads.fileFromPath; + +export namespace OpenAI { + export import RequestOptions = Core.RequestOptions; + + export import Page = Pagination.Page; + export import PageResponse = Pagination.PageResponse; + + export import CursorPage = Pagination.CursorPage; + export import CursorPageParams = Pagination.CursorPageParams; + export import CursorPageResponse = Pagination.CursorPageResponse; + + export import Completions = API.Completions; + export import Completion = API.Completion; + export import CompletionChoice = API.CompletionChoice; + export import CompletionUsage = API.CompletionUsage; + export import CompletionCreateParams = API.CompletionCreateParams; + export import CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; + export import CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; + + export import Chat = API.Chat; + export import ChatModel = API.ChatModel; + export import ChatCompletion = API.ChatCompletion; + export import ChatCompletionAssistantMessageParam = API.ChatCompletionAssistantMessageParam; + export import ChatCompletionChunk = API.ChatCompletionChunk; + export import ChatCompletionContentPart = API.ChatCompletionContentPart; + export import ChatCompletionContentPartImage = API.ChatCompletionContentPartImage; + export import ChatCompletionContentPartText = API.ChatCompletionContentPartText; + export import ChatCompletionFunctionCallOption = API.ChatCompletionFunctionCallOption; + export import ChatCompletionFunctionMessageParam = API.ChatCompletionFunctionMessageParam; + export import ChatCompletionMessage = API.ChatCompletionMessage; + export import ChatCompletionMessageParam = API.ChatCompletionMessageParam; + export import ChatCompletionMessageToolCall = API.ChatCompletionMessageToolCall; + export import ChatCompletionNamedToolChoice = API.ChatCompletionNamedToolChoice; + export import ChatCompletionRole = API.ChatCompletionRole; + export import ChatCompletionSystemMessageParam = API.ChatCompletionSystemMessageParam; + export import ChatCompletionTokenLogprob = API.ChatCompletionTokenLogprob; + export import ChatCompletionTool = API.ChatCompletionTool; + export import ChatCompletionToolChoiceOption = API.ChatCompletionToolChoiceOption; + export import ChatCompletionToolMessageParam = API.ChatCompletionToolMessageParam; + export import ChatCompletionUserMessageParam = API.ChatCompletionUserMessageParam; + export import ChatCompletionCreateParams = API.ChatCompletionCreateParams; + export import ChatCompletionCreateParamsNonStreaming = API.ChatCompletionCreateParamsNonStreaming; + export import ChatCompletionCreateParamsStreaming = API.ChatCompletionCreateParamsStreaming; + + export import Embeddings = API.Embeddings; + export import CreateEmbeddingResponse = API.CreateEmbeddingResponse; + export import Embedding = API.Embedding; + export import EmbeddingCreateParams = API.EmbeddingCreateParams; + + export import Files = API.Files; + export import FileContent = API.FileContent; + export import FileDeleted = API.FileDeleted; + export import FileObject = API.FileObject; + export import FileObjectsPage = API.FileObjectsPage; + export import FileCreateParams = API.FileCreateParams; + export import FileListParams = API.FileListParams; + + export import Images = API.Images; + export import Image = API.Image; + export import ImagesResponse = API.ImagesResponse; + export import ImageCreateVariationParams = API.ImageCreateVariationParams; + export import ImageEditParams = API.ImageEditParams; + export import ImageGenerateParams = API.ImageGenerateParams; + + export import Audio = API.Audio; + + export import Moderations = API.Moderations; + export import Moderation = API.Moderation; + export import ModerationCreateResponse = API.ModerationCreateResponse; + export import ModerationCreateParams = API.ModerationCreateParams; + + export import Models = API.Models; + export import Model = API.Model; + export import ModelDeleted = API.ModelDeleted; + export import ModelsPage = API.ModelsPage; + + export import FineTuning = API.FineTuning; + + export import Beta = API.Beta; + + export import Batches = API.Batches; + export import Batch = API.Batch; + export import BatchError = API.BatchError; + export import BatchRequestCounts = API.BatchRequestCounts; + export import BatchesPage = API.BatchesPage; + export import BatchCreateParams = API.BatchCreateParams; + export import BatchListParams = API.BatchListParams; + + export import ErrorObject = API.ErrorObject; + export import FunctionDefinition = API.FunctionDefinition; + export import FunctionParameters = API.FunctionParameters; +} + +export default OpenAI; From 6c9cc820a8c091d9d0b4656fb13256a50f30f9e3 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 3 May 2024 09:16:25 -0400 Subject: [PATCH 388/725] release: 4.40.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0493e5bac..66443f777 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.40.1" + ".": "4.40.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f5a077cc..bb1e22da7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 4.40.2 (2024-05-03) + +Full Changelog: [v4.40.1...v4.40.2](https://github.com/openai/openai-node/compare/v4.40.1...v4.40.2) + +### Bug Fixes + +* **package:** revert recent client file change ([#819](https://github.com/openai/openai-node/issues/819)) ([fa722c9](https://github.com/openai/openai-node/commit/fa722c97859e55a0e766332c3a2f0cb3673128a2)) +* **vectorStores:** correct uploadAndPoll method ([#817](https://github.com/openai/openai-node/issues/817)) ([d63f22c](https://github.com/openai/openai-node/commit/d63f22c303761710e6eac7ef883c45e34d223df1)) + ## 4.40.1 (2024-05-02) Full Changelog: [v4.40.0...v4.40.1](https://github.com/openai/openai-node/compare/v4.40.0...v4.40.1) diff --git a/README.md b/README.md index e6d723367..657089070 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.40.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.40.2/mod.ts'; ``` diff --git a/package.json b/package.json index 416dd8d26..82962a2f0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.40.1", + "version": "4.40.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 67e7626eb..fe1712b97 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.40.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.40.2/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 0dde5072f..14b8c36f9 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.40.1'; // x-release-please-version +export const VERSION = '4.40.2'; // x-release-please-version From 92f90499f0bbee79ba9c8342c8d58dbcaf88bdd1 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sun, 5 May 2024 10:47:11 +0100 Subject: [PATCH 389/725] feat(client): add Azure client (#822) --- README.md | 21 +- examples/azure.ts | 32 +- src/index.ts | 185 +++++++++- src/resources/beta/vector-stores/files.ts | 1 + tests/lib/azure.test.ts | 395 ++++++++++++++++++++++ 5 files changed, 604 insertions(+), 30 deletions(-) create mode 100644 tests/lib/azure.test.ts diff --git a/README.md b/README.md index 657089070..f51b20ee2 100644 --- a/README.md +++ b/README.md @@ -361,14 +361,25 @@ Error codes are as followed: | >=500 | `InternalServerError` | | N/A | `APIConnectionError` | -### Azure OpenAI +## Microsoft Azure OpenAI -An example of using this library with Azure OpenAI can be found [here](https://github.com/openai/openai-node/blob/master/examples/azure.ts). +To use this library with [Azure OpenAI](https://learn.microsoft.com/en-us/azure/ai-services/openai/overview), use the `AzureOpenAI` +class instead of the `OpenAI` class. -Please note there are subtle differences in API shape & behavior between the Azure OpenAI API and the OpenAI API, -so using this library with Azure OpenAI may result in incorrect types, which can lead to bugs. +> [!IMPORTANT] +> The Azure API shape differs from the core API shape which means that the static types for responses / params +> won't always be correct. + +```ts +const openai = new AzureOpenAI(); -See [`@azure/openai`](https://www.npmjs.com/package/@azure/openai) for an Azure-specific SDK provided by Microsoft. +const result = await openai.chat.completions.create({ + model: 'gpt-4-1106-preview', + messages: [{ role: 'user', content: 'Say hello!' }], +}); + +console.log(result.choices[0]!.message?.content); +``` ### Retries diff --git a/examples/azure.ts b/examples/azure.ts index a903cfd6e..7f57e45c3 100755 --- a/examples/azure.ts +++ b/examples/azure.ts @@ -1,35 +1,19 @@ #!/usr/bin/env -S npm run tsn -T -import OpenAI from 'openai'; +import { AzureOpenAI } from 'openai'; -// The name of your Azure OpenAI Resource. -// https://learn.microsoft.com/en-us/azure/cognitive-services/openai/how-to/create-resource?pivots=web-portal#create-a-resource -const resource = ''; - -// Corresponds to your Model deployment within your OpenAI resource, e.g. my-gpt35-16k-deployment +// Corresponds to your Model deployment within your OpenAI resource, e.g. gpt-4-1106-preview // Navigate to the Azure OpenAI Studio to deploy a model. -const model = ''; - -// https://learn.microsoft.com/en-us/azure/ai-services/openai/reference#rest-api-versioning -const apiVersion = '2023-06-01-preview'; +const deployment = 'gpt-4-1106-preview'; -const apiKey = process.env['AZURE_OPENAI_API_KEY']; -if (!apiKey) { - throw new Error('The AZURE_OPENAI_API_KEY environment variable is missing or empty.'); -} - -// Azure OpenAI requires a custom baseURL, api-version query param, and api-key header. -const openai = new OpenAI({ - apiKey, - baseURL: `https://${resource}.openai.azure.com/openai/deployments/${model}`, - defaultQuery: { 'api-version': apiVersion }, - defaultHeaders: { 'api-key': apiKey }, -}); +// Make sure to set both AZURE_OPENAI_ENDPOINT with the endpoint of your Azure resource and AZURE_OPENAI_API_KEY with the API key. +// You can find both information in the Azure Portal. +const openai = new AzureOpenAI(); async function main() { console.log('Non-streaming:'); const result = await openai.chat.completions.create({ - model, + model: deployment, messages: [{ role: 'user', content: 'Say hello!' }], }); console.log(result.choices[0]!.message?.content); @@ -37,7 +21,7 @@ async function main() { console.log(); console.log('Streaming:'); const stream = await openai.chat.completions.create({ - model, + model: deployment, messages: [{ role: 'user', content: 'Say hello!' }], stream: true, }); diff --git a/src/index.ts b/src/index.ts index 1741a4816..dbade2f86 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,7 +2,7 @@ import * as Core from './core'; import * as Errors from './error'; -import { type Agent } from './_shims/index'; +import { type Agent, type RequestInit } from './_shims/index'; import * as Uploads from './uploads'; import * as Pagination from 'openai/pagination'; import * as API from 'openai/resources/index'; @@ -310,4 +310,187 @@ export namespace OpenAI { export import FunctionParameters = API.FunctionParameters; } +// ---------------------- Azure ---------------------- + +/** API Client for interfacing with the Azure OpenAI API. */ +export interface AzureClientOptions extends ClientOptions { + /** + * Defaults to process.env['OPENAI_API_VERSION']. + */ + apiVersion?: string | undefined; + + /** + * Your Azure endpoint, including the resource, e.g. `https://example-resource.azure.openai.com/` + */ + endpoint?: string | undefined; + + /** + * A model deployment, if given, sets the base client URL to include `/deployments/{deployment}`. + * Note: this means you won't be able to use non-deployment endpoints. Not supported with Assistants APIs. + */ + deployment?: string | undefined; + + /** + * Defaults to process.env['AZURE_OPENAI_API_KEY']. + */ + apiKey?: string | undefined; + + /** + * A function that returns an access token for Microsoft Entra (formerly known as Azure Active Directory), + * which will be invoked on every request. + */ + azureADTokenProvider?: (() => string) | undefined; +} + +/** API Client for interfacing with the Azure OpenAI API. */ +export class AzureOpenAI extends OpenAI { + private _azureADTokenProvider: (() => string) | undefined; + apiVersion: string = ''; + /** + * API Client for interfacing with the Azure OpenAI API. + * + * @param {string | undefined} [opts.apiVersion=process.env['OPENAI_API_VERSION'] ?? undefined] + * @param {string | undefined} [opts.endpoint=process.env['AZURE_OPENAI_ENDPOINT'] ?? undefined] - Your Azure endpoint, including the resource, e.g. `https://example-resource.azure.openai.com/` + * @param {string | undefined} [opts.apiKey=process.env['AZURE_OPENAI_API_KEY'] ?? undefined] + * @param {string | undefined} opts.deployment - A model deployment, if given, sets the base client URL to include `/deployments/{deployment}`. + * @param {string | null | undefined} [opts.organization=process.env['OPENAI_ORG_ID'] ?? null] + * @param {string} [opts.baseURL=process.env['OPENAI_BASE_URL']] - Sets the base URL for the API. + * @param {number} [opts.timeout=10 minutes] - The maximum amount of time (in milliseconds) the client will wait for a response before timing out. + * @param {number} [opts.httpAgent] - An HTTP agent used to manage HTTP(s) connections. + * @param {Core.Fetch} [opts.fetch] - Specify a custom `fetch` function implementation. + * @param {number} [opts.maxRetries=2] - The maximum number of times the client will retry a request. + * @param {Core.Headers} opts.defaultHeaders - Default headers to include with every request to the API. + * @param {Core.DefaultQuery} opts.defaultQuery - Default query parameters to include with every request to the API. + * @param {boolean} [opts.dangerouslyAllowBrowser=false] - By default, client-side use of this library is not allowed, as it risks exposing your secret API credentials to attackers. + */ + constructor({ + baseURL = Core.readEnv('OPENAI_BASE_URL'), + apiKey = Core.readEnv('AZURE_OPENAI_API_KEY'), + apiVersion = Core.readEnv('OPENAI_API_VERSION'), + endpoint, + deployment, + azureADTokenProvider, + dangerouslyAllowBrowser, + ...opts + }: AzureClientOptions = {}) { + if (!apiVersion) { + throw new Errors.OpenAIError( + "The OPENAI_API_VERSION environment variable is missing or empty; either provide it, or instantiate the AzureOpenAI client with an apiVersion option, like new AzureOpenAI({ apiVersion: 'My API Version' }).", + ); + } + + if (typeof azureADTokenProvider === 'function') { + dangerouslyAllowBrowser = true; + } + + if (!azureADTokenProvider && !apiKey) { + throw new Errors.OpenAIError( + 'Missing credentials. Please pass one of `apiKey` and `azureADTokenProvider`, or set the `AZURE_OPENAI_API_KEY` environment variable.', + ); + } + + if (azureADTokenProvider && apiKey) { + throw new Errors.OpenAIError( + 'The `apiKey` and `azureADTokenProvider` arguments are mutually exclusive; only one can be passed at a time.', + ); + } + + // define a sentinel value to avoid any typing issues + apiKey ??= API_KEY_SENTINEL; + + opts.defaultQuery = { ...opts.defaultQuery, 'api-version': apiVersion }; + + if (!baseURL) { + if (!endpoint) { + endpoint = process.env['AZURE_OPENAI_ENDPOINT']; + } + + if (!endpoint) { + throw new Errors.OpenAIError( + 'Must provide one of the `baseURL` or `endpoint` arguments, or the `AZURE_OPENAI_ENDPOINT` environment variable', + ); + } + + if (deployment) { + baseURL = `${endpoint}/openai/deployments/${deployment}`; + } else { + baseURL = `${endpoint}/openai`; + } + } else { + if (endpoint) { + throw new Errors.OpenAIError('baseURL and endpoint are mutually exclusive'); + } + } + + super({ + apiKey, + baseURL, + ...opts, + ...(dangerouslyAllowBrowser !== undefined ? { dangerouslyAllowBrowser } : {}), + }); + + this._azureADTokenProvider = azureADTokenProvider; + this.apiVersion = apiVersion; + } + + override buildRequest(options: Core.FinalRequestOptions): { + req: RequestInit; + url: string; + timeout: number; + } { + if (_deployments_endpoints.has(options.path) && options.method === 'post' && options.body !== undefined) { + if (!Core.isObj(options.body)) { + throw new Error('Expected request body to be an object'); + } + const model = options.body['model']; + delete options.body['model']; + if (model !== undefined && !this.baseURL.includes('/deployments')) { + options.path = `/deployments/${model}${options.path}`; + } + } + return super.buildRequest(options); + } + + private _getAzureADToken(): string | undefined { + if (typeof this._azureADTokenProvider === 'function') { + const token = this._azureADTokenProvider(); + if (!token || typeof token !== 'string') { + throw new Errors.OpenAIError( + `Expected 'azureADTokenProvider' argument to return a string but it returned ${token}`, + ); + } + return token; + } + return undefined; + } + + protected override authHeaders(opts: Core.FinalRequestOptions): Core.Headers { + if (opts.headers?.['Authorization'] || opts.headers?.['api-key']) { + return {}; + } + const token = this._getAzureADToken(); + if (token) { + return { Authorization: `Bearer ${token}` }; + } + if (this.apiKey !== API_KEY_SENTINEL) { + return { 'api-key': this.apiKey }; + } + throw new Errors.OpenAIError('Unable to handle auth'); + } +} + +const _deployments_endpoints = new Set([ + '/completions', + '/chat/completions', + '/embeddings', + '/audio/transcriptions', + '/audio/translations', + '/audio/speech', + '/images/generations', +]); + +const API_KEY_SENTINEL = ''; + +// ---------------------- End Azure ---------------------- + export default OpenAI; diff --git a/src/resources/beta/vector-stores/files.ts b/src/resources/beta/vector-stores/files.ts index f8f8cddc5..ff5094065 100644 --- a/src/resources/beta/vector-stores/files.ts +++ b/src/resources/beta/vector-stores/files.ts @@ -144,6 +144,7 @@ export class Files extends APIResource { /** * Upload a file to the `files` API and then attach it to the given vector store. + * * Note the file will be asynchronously processed (you can use the alternative * polling helper method to wait for processing to complete). */ diff --git a/tests/lib/azure.test.ts b/tests/lib/azure.test.ts new file mode 100644 index 000000000..e2b967903 --- /dev/null +++ b/tests/lib/azure.test.ts @@ -0,0 +1,395 @@ +import { AzureOpenAI } from 'openai'; +import { APIUserAbortError } from 'openai'; +import { Headers } from 'openai/core'; +import defaultFetch, { Response, type RequestInit, type RequestInfo } from 'node-fetch'; + +const apiVersion = '2024-02-15-preview'; + +describe('instantiate azure client', () => { + const env = process.env; + + beforeEach(() => { + jest.resetModules(); + process.env = { ...env }; + + console.warn = jest.fn(); + }); + + afterEach(() => { + process.env = env; + }); + + describe('defaultHeaders', () => { + const client = new AzureOpenAI({ + baseURL: 'http://localhost:5000/', + defaultHeaders: { 'X-My-Default-Header': '2' }, + apiKey: 'My API Key', + apiVersion, + }); + + test('they are used in the request', () => { + const { req } = client.buildRequest({ path: '/foo', method: 'post' }); + expect((req.headers as Headers)['x-my-default-header']).toEqual('2'); + }); + + test('can ignore `undefined` and leave the default', () => { + const { req } = client.buildRequest({ + path: '/foo', + method: 'post', + headers: { 'X-My-Default-Header': undefined }, + }); + expect((req.headers as Headers)['x-my-default-header']).toEqual('2'); + }); + + test('can be removed with `null`', () => { + const { req } = client.buildRequest({ + path: '/foo', + method: 'post', + headers: { 'X-My-Default-Header': null }, + }); + expect(req.headers as Headers).not.toHaveProperty('x-my-default-header'); + }); + }); + + describe('defaultQuery', () => { + test('with null query params given', () => { + const client = new AzureOpenAI({ + baseURL: 'http://localhost:5000/', + defaultQuery: { apiVersion: 'foo' }, + apiKey: 'My API Key', + apiVersion, + }); + expect(client.buildURL('/foo', null)).toEqual( + `http://localhost:5000/foo?apiVersion=foo&api-version=${apiVersion}`, + ); + }); + + test('multiple default query params', () => { + const client = new AzureOpenAI({ + baseURL: 'http://localhost:5000/', + defaultQuery: { apiVersion: 'foo', hello: 'world' }, + apiKey: 'My API Key', + apiVersion, + }); + expect(client.buildURL('/foo', null)).toEqual( + `http://localhost:5000/foo?apiVersion=foo&hello=world&api-version=${apiVersion}`, + ); + }); + + test('overriding with `undefined`', () => { + const client = new AzureOpenAI({ + baseURL: 'http://localhost:5000/', + defaultQuery: { hello: 'world' }, + apiKey: 'My API Key', + apiVersion, + }); + expect(client.buildURL('/foo', { hello: undefined })).toEqual( + `http://localhost:5000/foo?api-version=${apiVersion}`, + ); + }); + }); + + test('custom fetch', async () => { + const client = new AzureOpenAI({ + baseURL: 'http://localhost:5000/', + apiKey: 'My API Key', + apiVersion, + fetch: (url) => { + return Promise.resolve( + new Response(JSON.stringify({ url, custom: true }), { + headers: { 'Content-Type': 'application/json' }, + }), + ); + }, + }); + + const response = await client.get('/foo'); + expect(response).toEqual({ url: `http://localhost:5000/foo?api-version=${apiVersion}`, custom: true }); + }); + + test('custom signal', async () => { + const client = new AzureOpenAI({ + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', + apiKey: 'My API Key', + apiVersion, + fetch: (...args) => { + return new Promise((resolve, reject) => + setTimeout( + () => + defaultFetch(...args) + .then(resolve) + .catch(reject), + 300, + ), + ); + }, + }); + + const controller = new AbortController(); + setTimeout(() => controller.abort(), 200); + + const spy = jest.spyOn(client, 'request'); + + await expect(client.get('/foo', { signal: controller.signal })).rejects.toThrowError(APIUserAbortError); + expect(spy).toHaveBeenCalledTimes(1); + }); + + describe('baseUrl', () => { + test('trailing slash', () => { + const client = new AzureOpenAI({ + baseURL: 'http://localhost:5000/custom/path/', + apiKey: 'My API Key', + apiVersion, + }); + expect(client.buildURL('/foo', null)).toEqual( + `http://localhost:5000/custom/path/foo?api-version=${apiVersion}`, + ); + }); + + test('no trailing slash', () => { + const client = new AzureOpenAI({ + baseURL: 'http://localhost:5000/custom/path', + apiKey: 'My API Key', + apiVersion, + }); + expect(client.buildURL('/foo', null)).toEqual( + `http://localhost:5000/custom/path/foo?api-version=${apiVersion}`, + ); + }); + + afterEach(() => { + process.env['OPENAI_BASE_URL'] = undefined; + }); + + test('explicit option', () => { + const client = new AzureOpenAI({ baseURL: 'https://example.com/', apiKey: 'My API Key', apiVersion }); + expect(client.baseURL).toEqual('https://example.com/'); + }); + + test('env variable', () => { + process.env['OPENAI_BASE_URL'] = 'https://example.com/from_env'; + const client = new AzureOpenAI({ apiKey: 'My API Key', apiVersion }); + expect(client.baseURL).toEqual('https://example.com/from_env'); + }); + + test('empty baseUrl/endpoint env variable', () => { + process.env['OPENAI_BASE_URL'] = ''; // empty + expect(() => new AzureOpenAI({ apiKey: 'My API Key', apiVersion })).toThrow( + /Must provide one of the `baseURL` or `endpoint` arguments, or the `AZURE_OPENAI_ENDPOINT` environment variable/, + ); + }); + + test('blank baseUrl/endpoint env variable', () => { + process.env['OPENAI_BASE_URL'] = ' '; // blank + expect(() => new AzureOpenAI({ apiKey: 'My API Key', apiVersion })).toThrow( + /Must provide one of the `baseURL` or `endpoint` arguments, or the `AZURE_OPENAI_ENDPOINT` environment variable/, + ); + }); + }); + + test('maxRetries option is correctly set', () => { + const client = new AzureOpenAI({ + baseURL: 'https://example.com/', + maxRetries: 4, + apiKey: 'My API Key', + apiVersion, + }); + expect(client.maxRetries).toEqual(4); + + // default + const client2 = new AzureOpenAI({ baseURL: 'https://example.com/', apiKey: 'My API Key', apiVersion }); + expect(client2.maxRetries).toEqual(2); + }); + + test('with environment variable arguments', () => { + // set options via env var + process.env['OPENAI_BASE_URL'] = 'https://example.com/'; + process.env['AZURE_OPENAI_API_KEY'] = 'My API Key'; + process.env['OPENAI_API_VERSION'] = 'My API Version'; + const client = new AzureOpenAI(); + expect(client.baseURL).toBe('https://example.com/'); + expect(client.apiKey).toBe('My API Key'); + expect(client.apiVersion).toBe('My API Version'); + }); + + test('with overriden environment variable arguments', () => { + // set options via env var + process.env['AZURE_OPENAI_API_KEY'] = 'another My API Key'; + process.env['OPENAI_API_VERSION'] = 'another My API Version'; + const client = new AzureOpenAI({ baseURL: 'https://example.com/', apiKey: 'My API Key', apiVersion }); + expect(client.apiKey).toBe('My API Key'); + expect(client.apiVersion).toBe(apiVersion); + }); + + describe('Azure Active Directory (AD)', () => { + test('with azureADTokenProvider', () => { + const client = new AzureOpenAI({ + baseURL: 'http://localhost:5000/', + azureADTokenProvider: () => 'my token', + apiVersion, + }); + expect(client.buildRequest({ method: 'post', path: 'https://example.com/' }).req.headers).toHaveProperty( + 'authorization', + 'Bearer my token', + ); + }); + + test('apiKey and azureADTokenProvider cant be combined', () => { + expect( + () => + new AzureOpenAI({ + baseURL: 'http://localhost:5000/', + azureADTokenProvider: () => 'my token', + apiKey: 'My API Key', + apiVersion, + }), + ).toThrow( + /The `apiKey` and `azureADTokenProvider` arguments are mutually exclusive; only one can be passed at a time./, + ); + }); + }); + + test('with endpoint', () => { + const client = new AzureOpenAI({ endpoint: 'https://example.com/', apiKey: 'My API Key', apiVersion }); + expect(client.baseURL).toEqual('https://example.com/openai'); + }); + + test('baseURL and endpoint are mutually exclusive', () => { + expect( + () => + new AzureOpenAI({ + endpoint: 'https://example.com/', + baseURL: 'https://anotherexample.com/', + apiKey: 'My API Key', + apiVersion, + }), + ).toThrow(/baseURL and endpoint are mutually exclusive/); + }); +}); + +describe('azure request building', () => { + const client = new AzureOpenAI({ baseURL: 'https://example.com/', apiKey: 'My API Key', apiVersion }); + + describe('Content-Length', () => { + test('handles multi-byte characters', () => { + const { req } = client.buildRequest({ path: '/foo', method: 'post', body: { value: '—' } }); + expect((req.headers as Record)['content-length']).toEqual('20'); + }); + + test('handles standard characters', () => { + const { req } = client.buildRequest({ path: '/foo', method: 'post', body: { value: 'hello' } }); + expect((req.headers as Record)['content-length']).toEqual('22'); + }); + }); + + describe('custom headers', () => { + test('handles undefined', () => { + const { req } = client.buildRequest({ + path: '/foo', + method: 'post', + body: { value: 'hello' }, + headers: { 'X-Foo': 'baz', 'x-foo': 'bar', 'x-Foo': undefined, 'x-baz': 'bam', 'X-Baz': null }, + }); + expect((req.headers as Record)['x-foo']).toEqual('bar'); + expect((req.headers as Record)['x-Foo']).toEqual(undefined); + expect((req.headers as Record)['X-Foo']).toEqual(undefined); + expect((req.headers as Record)['x-baz']).toEqual(undefined); + }); + }); +}); + +describe('retries', () => { + test('retry on timeout', async () => { + let count = 0; + const testFetch = async (url: RequestInfo, { signal }: RequestInit = {}): Promise => { + if (count++ === 0) { + return new Promise( + (resolve, reject) => signal?.addEventListener('abort', () => reject(new Error('timed out'))), + ); + } + return new Response(JSON.stringify({ a: 1 }), { headers: { 'Content-Type': 'application/json' } }); + }; + + const client = new AzureOpenAI({ + baseURL: 'https://example.com/', + apiKey: 'My API Key', + apiVersion, + timeout: 10, + fetch: testFetch, + }); + + expect(await client.request({ path: '/foo', method: 'get' })).toEqual({ a: 1 }); + expect(count).toEqual(2); + expect( + await client + .request({ path: '/foo', method: 'get' }) + .asResponse() + .then((r) => r.text()), + ).toEqual(JSON.stringify({ a: 1 })); + expect(count).toEqual(3); + }); + + test('retry on 429 with retry-after', async () => { + let count = 0; + const testFetch = async (url: RequestInfo, { signal }: RequestInit = {}): Promise => { + if (count++ === 0) { + return new Response(undefined, { + status: 429, + headers: { + 'Retry-After': '0.1', + }, + }); + } + return new Response(JSON.stringify({ a: 1 }), { headers: { 'Content-Type': 'application/json' } }); + }; + + const client = new AzureOpenAI({ + baseURL: 'https://example.com/', + apiKey: 'My API Key', + apiVersion, + fetch: testFetch, + }); + + expect(await client.request({ path: '/foo', method: 'get' })).toEqual({ a: 1 }); + expect(count).toEqual(2); + expect( + await client + .request({ path: '/foo', method: 'get' }) + .asResponse() + .then((r) => r.text()), + ).toEqual(JSON.stringify({ a: 1 })); + expect(count).toEqual(3); + }); + + test('retry on 429 with retry-after-ms', async () => { + let count = 0; + const testFetch = async (url: RequestInfo, { signal }: RequestInit = {}): Promise => { + if (count++ === 0) { + return new Response(undefined, { + status: 429, + headers: { + 'Retry-After-Ms': '10', + }, + }); + } + return new Response(JSON.stringify({ a: 1 }), { headers: { 'Content-Type': 'application/json' } }); + }; + + const client = new AzureOpenAI({ + baseURL: 'https://example.com/', + apiKey: 'My API Key', + apiVersion, + fetch: testFetch, + }); + + expect(await client.request({ path: '/foo', method: 'get' })).toEqual({ a: 1 }); + expect(count).toEqual(2); + expect( + await client + .request({ path: '/foo', method: 'get' }) + .asResponse() + .then((r) => r.text()), + ).toEqual(JSON.stringify({ a: 1 })); + expect(count).toEqual(3); + }); +}); From b10242a8debda15c027dc2f9d74a799103a5dd15 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sun, 5 May 2024 10:47:30 +0100 Subject: [PATCH 390/725] release: 4.41.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 66443f777..5f8b241b2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.40.2" + ".": "4.41.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index bb1e22da7..6671f0bf4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.41.0 (2024-05-05) + +Full Changelog: [v4.40.2...v4.41.0](https://github.com/openai/openai-node/compare/v4.40.2...v4.41.0) + +### Features + +* **client:** add Azure client ([#822](https://github.com/openai/openai-node/issues/822)) ([92f9049](https://github.com/openai/openai-node/commit/92f90499f0bbee79ba9c8342c8d58dbcaf88bdd1)) + ## 4.40.2 (2024-05-03) Full Changelog: [v4.40.1...v4.40.2](https://github.com/openai/openai-node/compare/v4.40.1...v4.40.2) diff --git a/README.md b/README.md index f51b20ee2..d8e0fb0a5 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.40.2/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.41.0/mod.ts'; ``` diff --git a/package.json b/package.json index 82962a2f0..b698340af 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.40.2", + "version": "4.41.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index fe1712b97..8df5b0651 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.40.2/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.41.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 14b8c36f9..1ab180911 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.40.2'; // x-release-please-version +export const VERSION = '4.41.0'; // x-release-please-version From 258c191cfbb666eac2493fda76b9e90983559554 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 6 May 2024 15:36:07 +0100 Subject: [PATCH 391/725] fix(azure): update build script (#825) --- scripts/utils/fix-index-exports.cjs | 2 +- src/index.ts | 28 +++++++++++++++++----------- tests/lib/azure.test.ts | 19 ++++++++++++------- 3 files changed, 30 insertions(+), 19 deletions(-) diff --git a/scripts/utils/fix-index-exports.cjs b/scripts/utils/fix-index-exports.cjs index 72b0b8fd0..ee5cebb85 100644 --- a/scripts/utils/fix-index-exports.cjs +++ b/scripts/utils/fix-index-exports.cjs @@ -9,6 +9,6 @@ const indexJs = let before = fs.readFileSync(indexJs, 'utf8'); let after = before.replace( /^\s*exports\.default\s*=\s*(\w+)/m, - 'exports = module.exports = $1;\nexports.default = $1', + 'exports = module.exports = $1;\nmodule.exports.AzureOpenAI = AzureOpenAI;\nexports.default = $1', ); fs.writeFileSync(indexJs, after, 'utf8'); diff --git a/src/index.ts b/src/index.ts index dbade2f86..438a46779 100644 --- a/src/index.ts +++ b/src/index.ts @@ -339,12 +339,12 @@ export interface AzureClientOptions extends ClientOptions { * A function that returns an access token for Microsoft Entra (formerly known as Azure Active Directory), * which will be invoked on every request. */ - azureADTokenProvider?: (() => string) | undefined; + azureADTokenProvider?: (() => Promise) | undefined; } /** API Client for interfacing with the Azure OpenAI API. */ export class AzureOpenAI extends OpenAI { - private _azureADTokenProvider: (() => string) | undefined; + private _azureADTokenProvider: (() => Promise) | undefined; apiVersion: string = ''; /** * API Client for interfacing with the Azure OpenAI API. @@ -451,9 +451,9 @@ export class AzureOpenAI extends OpenAI { return super.buildRequest(options); } - private _getAzureADToken(): string | undefined { + private async _getAzureADToken(): Promise { if (typeof this._azureADTokenProvider === 'function') { - const token = this._azureADTokenProvider(); + const token = await this._azureADTokenProvider(); if (!token || typeof token !== 'string') { throw new Errors.OpenAIError( `Expected 'azureADTokenProvider' argument to return a string but it returned ${token}`, @@ -465,17 +465,23 @@ export class AzureOpenAI extends OpenAI { } protected override authHeaders(opts: Core.FinalRequestOptions): Core.Headers { + return {}; + } + + protected override async prepareOptions(opts: Core.FinalRequestOptions): Promise { if (opts.headers?.['Authorization'] || opts.headers?.['api-key']) { - return {}; + return super.prepareOptions(opts); } - const token = this._getAzureADToken(); + const token = await this._getAzureADToken(); + opts.headers ??= {}; if (token) { - return { Authorization: `Bearer ${token}` }; - } - if (this.apiKey !== API_KEY_SENTINEL) { - return { 'api-key': this.apiKey }; + opts.headers['Authorization'] = `Bearer ${token}`; + } else if (this.apiKey !== API_KEY_SENTINEL) { + opts.headers['api-key'] = this.apiKey; + } else { + throw new Errors.OpenAIError('Unable to handle auth'); } - throw new Errors.OpenAIError('Unable to handle auth'); + return super.prepareOptions(opts); } } diff --git a/tests/lib/azure.test.ts b/tests/lib/azure.test.ts index e2b967903..4895273be 100644 --- a/tests/lib/azure.test.ts +++ b/tests/lib/azure.test.ts @@ -222,16 +222,21 @@ describe('instantiate azure client', () => { }); describe('Azure Active Directory (AD)', () => { - test('with azureADTokenProvider', () => { + test('with azureADTokenProvider', async () => { + const testFetch = async (url: RequestInfo, { headers }: RequestInit = {}): Promise => { + return new Response(JSON.stringify({ a: 1 }), { headers }); + }; const client = new AzureOpenAI({ baseURL: 'http://localhost:5000/', - azureADTokenProvider: () => 'my token', + azureADTokenProvider: async () => 'my token', apiVersion, + fetch: testFetch, }); - expect(client.buildRequest({ method: 'post', path: 'https://example.com/' }).req.headers).toHaveProperty( - 'authorization', - 'Bearer my token', - ); + expect( + (await client.request({ method: 'post', path: 'https://example.com/' }).asResponse()).headers.get( + 'authorization', + ), + ).toEqual('Bearer my token'); }); test('apiKey and azureADTokenProvider cant be combined', () => { @@ -239,7 +244,7 @@ describe('instantiate azure client', () => { () => new AzureOpenAI({ baseURL: 'http://localhost:5000/', - azureADTokenProvider: () => 'my token', + azureADTokenProvider: async () => 'my token', apiKey: 'My API Key', apiVersion, }), From 86c13a776fcb704e184604ea5c2a4b277ed12a4c Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 6 May 2024 15:36:27 +0100 Subject: [PATCH 392/725] release: 4.41.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5f8b241b2..aefe28544 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.41.0" + ".": "4.41.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6671f0bf4..39187ece0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.41.1 (2024-05-06) + +Full Changelog: [v4.41.0...v4.41.1](https://github.com/openai/openai-node/compare/v4.41.0...v4.41.1) + +### Bug Fixes + +* **azure:** update build script ([#825](https://github.com/openai/openai-node/issues/825)) ([8afc6e7](https://github.com/openai/openai-node/commit/8afc6e7b49507b3be0228e93913d51b4c3211add)) + ## 4.41.0 (2024-05-05) Full Changelog: [v4.40.2...v4.41.0](https://github.com/openai/openai-node/compare/v4.40.2...v4.41.0) diff --git a/README.md b/README.md index d8e0fb0a5..d911ccc63 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.41.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.41.1/mod.ts'; ``` diff --git a/package.json b/package.json index b698340af..86b5bfc11 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.41.0", + "version": "4.41.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 8df5b0651..5216721fc 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.41.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.41.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 1ab180911..afa714f81 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.41.0'; // x-release-please-version +export const VERSION = '4.41.1'; // x-release-please-version From cdc3ad749bcf358670d177cb91c6d2d5893604d8 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 6 May 2024 12:48:48 -0400 Subject: [PATCH 393/725] fix(example): fix fine tuning example (#827) --- examples/fine-tuning-data.jsonl | 20 ++++++++++---------- examples/fine-tuning.ts | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/examples/fine-tuning-data.jsonl b/examples/fine-tuning-data.jsonl index 4eace9252..e9ab2679f 100644 --- a/examples/fine-tuning-data.jsonl +++ b/examples/fine-tuning-data.jsonl @@ -1,10 +1,10 @@ -{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the capital of France?"}, {"role": "assistant", "content": "Paris, as if everyone doesn't know that already."}]} -{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "Who wrote 'Romeo and Juliet'?"}, {"role": "assistant", "content": "Oh, just some guy named William Shakespeare. Ever heard of him?"}]} -{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "How far is the Moon from Earth?"}, {"role": "assistant", "content": "Around 384,400 kilometers. Give or take a few, like that really matters."}]} -{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the tallest mountain in the world?"}, {"role": "assistant", "content": "Everest, of course. Because no other mountain even comes close!"}]} -{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "Who was the first President of the United States?"}, {"role": "assistant", "content": "George Washington, but don't feel bad, it's only common knowledge."}]} -{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the boiling point of water?"}, {"role": "assistant", "content": "100°C at sea level. Shocking, isn't it?"}]} -{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the largest ocean on Earth?"}, {"role": "assistant", "content": "The Pacific Ocean. Surprised? Me neither."}]} -{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the smallest planet in our solar system?"}, {"role": "assistant", "content": "Mercury. It's not like it's a big deal or anything."}]} -{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "Who discovered penicillin?"}, {"role": "assistant", "content": "Alexander Fleming. But don't worry, it's not like he's famous for it or anything."}]} -{"messages": [{"role": "system", "content": "Marv is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "When was the internet invented?"}, {"role": "assistant", "content": "In the 1960s, but hey, who's counting?"}]} +{"messages": [{"role": "system", "content": "Marvin is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the capital of France?"}, {"role": "assistant", "content": "Paris, as if everyone doesn't know that already."}]} +{"messages": [{"role": "system", "content": "Marvin is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "Who wrote 'Romeo and Juliet'?"}, {"role": "assistant", "content": "Oh, just some guy named William Shakespeare. Ever heard of him?"}]} +{"messages": [{"role": "system", "content": "Marvin is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "How far is the Moon from Earth?"}, {"role": "assistant", "content": "Around 384,400 kilometers. Give or take a few, like that really matters."}]} +{"messages": [{"role": "system", "content": "Marvin is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the tallest mountain in the world?"}, {"role": "assistant", "content": "Everest, of course. Because no other mountain even comes close!"}]} +{"messages": [{"role": "system", "content": "Marvin is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "Who was the first President of the United States?"}, {"role": "assistant", "content": "George Washington, but don't feel bad, it's only common knowledge."}]} +{"messages": [{"role": "system", "content": "Marvin is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the boiling point of water?"}, {"role": "assistant", "content": "100°C at sea level. Shocking, isn't it?"}]} +{"messages": [{"role": "system", "content": "Marvin is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the largest ocean on Earth?"}, {"role": "assistant", "content": "The Pacific Ocean. Surprised? Me neither."}]} +{"messages": [{"role": "system", "content": "Marvin is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the smallest planet in our solar system?"}, {"role": "assistant", "content": "Mercury. It's not like it's a big deal or anything."}]} +{"messages": [{"role": "system", "content": "Marvin is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "Who discovered penicillin?"}, {"role": "assistant", "content": "Alexander Fleming. But don't worry, it's not like he's famous for it or anything."}]} +{"messages": [{"role": "system", "content": "Marvin is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "When was the internet invented?"}, {"role": "assistant", "content": "In the 1960s, but hey, who's counting?"}]} diff --git a/examples/fine-tuning.ts b/examples/fine-tuning.ts index 379eb8fc4..412fc6ada 100755 --- a/examples/fine-tuning.ts +++ b/examples/fine-tuning.ts @@ -49,7 +49,7 @@ async function main() { const events: Record = {}; - while (fineTune.status == 'running' || fineTune.status == 'created') { + while (fineTune.status == 'running' || fineTune.status == 'queued') { fineTune = await client.fineTuning.jobs.retrieve(fineTune.id); console.log(`${fineTune.status}`); From d9d0f0f64b4fd27b0156523326799d07bd75a8ca Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 6 May 2024 15:06:56 -0400 Subject: [PATCH 394/725] feat(api): add usage metadata when streaming (#829) --- .stats.yml | 2 +- api.md | 1 + src/index.ts | 1 + src/resources/chat/chat.ts | 1 + src/resources/chat/completions.ts | 32 ++++++++++++++++++-- src/resources/chat/index.ts | 1 + src/resources/completions.ts | 6 ++++ tests/api-resources/chat/completions.test.ts | 1 + tests/api-resources/completions.test.ts | 1 + 9 files changed, 43 insertions(+), 3 deletions(-) diff --git a/.stats.yml b/.stats.yml index 9797002bf..49956282b 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 64 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-97c9a5f089049dc9eb5cee9475558049003e37e42202cab39e59d75e08b4c613.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-edb5af3ade0cd27cf366b0654b90c7a81c43c433e11fc3f6e621e2c779de10d4.yml diff --git a/api.md b/api.md index c1ac8cfbd..18cdd9e62 100644 --- a/api.md +++ b/api.md @@ -41,6 +41,7 @@ Types: - ChatCompletionMessageToolCall - ChatCompletionNamedToolChoice - ChatCompletionRole +- ChatCompletionStreamOptions - ChatCompletionSystemMessageParam - ChatCompletionTokenLogprob - ChatCompletionTool diff --git a/src/index.ts b/src/index.ts index 438a46779..b146a7bab 100644 --- a/src/index.ts +++ b/src/index.ts @@ -251,6 +251,7 @@ export namespace OpenAI { export import ChatCompletionMessageToolCall = API.ChatCompletionMessageToolCall; export import ChatCompletionNamedToolChoice = API.ChatCompletionNamedToolChoice; export import ChatCompletionRole = API.ChatCompletionRole; + export import ChatCompletionStreamOptions = API.ChatCompletionStreamOptions; export import ChatCompletionSystemMessageParam = API.ChatCompletionSystemMessageParam; export import ChatCompletionTokenLogprob = API.ChatCompletionTokenLogprob; export import ChatCompletionTool = API.ChatCompletionTool; diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index fa681ed64..ff271e5b4 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -45,6 +45,7 @@ export namespace Chat { export import ChatCompletionMessageToolCall = CompletionsAPI.ChatCompletionMessageToolCall; export import ChatCompletionNamedToolChoice = CompletionsAPI.ChatCompletionNamedToolChoice; export import ChatCompletionRole = CompletionsAPI.ChatCompletionRole; + export import ChatCompletionStreamOptions = CompletionsAPI.ChatCompletionStreamOptions; export import ChatCompletionSystemMessageParam = CompletionsAPI.ChatCompletionSystemMessageParam; export import ChatCompletionTokenLogprob = CompletionsAPI.ChatCompletionTokenLogprob; export import ChatCompletionTool = CompletionsAPI.ChatCompletionTool; diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 467b33619..1098499b9 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -183,8 +183,9 @@ export interface ChatCompletionChunk { id: string; /** - * A list of chat completion choices. Can be more than one if `n` is greater - * than 1. + * A list of chat completion choices. Can contain more than one elements if `n` is + * greater than 1. Can also be empty for the last chunk if you set + * `stream_options: {"include_usage": true}`. */ choices: Array; @@ -210,6 +211,14 @@ export interface ChatCompletionChunk { * backend changes have been made that might impact determinism. */ system_fingerprint?: string; + + /** + * An optional field that will only be present when you set + * `stream_options: {"include_usage": true}` in your request. When present, it + * contains a null value except for the last chunk which contains the token usage + * statistics for the entire request. + */ + usage?: CompletionsAPI.CompletionUsage; } export namespace ChatCompletionChunk { @@ -517,6 +526,19 @@ export namespace ChatCompletionNamedToolChoice { */ export type ChatCompletionRole = 'system' | 'user' | 'assistant' | 'tool' | 'function'; +/** + * Options for streaming response. Only set this when you set `stream: true`. + */ +export interface ChatCompletionStreamOptions { + /** + * If set, an additional chunk will be streamed before the `data: [DONE]` message. + * The `usage` field on this chunk shows the token usage statistics for the entire + * request, and the `choices` field will always be an empty array. All other chunks + * will also include a `usage` field, but with a null value. + */ + include_usage?: boolean; +} + export interface ChatCompletionSystemMessageParam { /** * The contents of the system message. @@ -786,6 +808,11 @@ export interface ChatCompletionCreateParamsBase { */ stream?: boolean | null; + /** + * Options for streaming response. Only set this when you set `stream: true`. + */ + stream_options?: ChatCompletionStreamOptions | null; + /** * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will * make the output more random, while lower values like 0.2 will make it more @@ -949,6 +976,7 @@ export namespace Completions { export import ChatCompletionMessageToolCall = ChatCompletionsAPI.ChatCompletionMessageToolCall; export import ChatCompletionNamedToolChoice = ChatCompletionsAPI.ChatCompletionNamedToolChoice; export import ChatCompletionRole = ChatCompletionsAPI.ChatCompletionRole; + export import ChatCompletionStreamOptions = ChatCompletionsAPI.ChatCompletionStreamOptions; export import ChatCompletionSystemMessageParam = ChatCompletionsAPI.ChatCompletionSystemMessageParam; export import ChatCompletionTokenLogprob = ChatCompletionsAPI.ChatCompletionTokenLogprob; export import ChatCompletionTool = ChatCompletionsAPI.ChatCompletionTool; diff --git a/src/resources/chat/index.ts b/src/resources/chat/index.ts index ef72bbbc9..2761385c2 100644 --- a/src/resources/chat/index.ts +++ b/src/resources/chat/index.ts @@ -14,6 +14,7 @@ export { ChatCompletionMessageToolCall, ChatCompletionNamedToolChoice, ChatCompletionRole, + ChatCompletionStreamOptions, ChatCompletionSystemMessageParam, ChatCompletionTokenLogprob, ChatCompletionTool, diff --git a/src/resources/completions.ts b/src/resources/completions.ts index b64c3a166..c37c6d802 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -4,6 +4,7 @@ import * as Core from 'openai/core'; import { APIPromise } from 'openai/core'; import { APIResource } from 'openai/resource'; import * as CompletionsAPI from 'openai/resources/completions'; +import * as ChatCompletionsAPI from 'openai/resources/chat/completions'; import { Stream } from 'openai/streaming'; export class Completions extends APIResource { @@ -251,6 +252,11 @@ export interface CompletionCreateParamsBase { */ stream?: boolean | null; + /** + * Options for streaming response. Only set this when you set `stream: true`. + */ + stream_options?: ChatCompletionsAPI.ChatCompletionStreamOptions | null; + /** * The suffix that comes after a completion of inserted text. * diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index bd398b91d..21277e1d6 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -39,6 +39,7 @@ describe('resource completions', () => { seed: -9223372036854776000, stop: 'string', stream: false, + stream_options: { include_usage: true }, temperature: 1, tool_choice: 'none', tools: [ diff --git a/tests/api-resources/completions.test.ts b/tests/api-resources/completions.test.ts index 2641bf7e3..3f6792447 100644 --- a/tests/api-resources/completions.test.ts +++ b/tests/api-resources/completions.test.ts @@ -35,6 +35,7 @@ describe('resource completions', () => { seed: -9223372036854776000, stop: '\n', stream: false, + stream_options: { include_usage: true }, suffix: 'test.', temperature: 1, top_p: 1, From 7196ac9310d58d057fb2a575e60c1718bf6341a2 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 6 May 2024 15:07:17 -0400 Subject: [PATCH 395/725] release: 4.42.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index aefe28544..bca107b6c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.41.1" + ".": "4.42.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 39187ece0..98885d747 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.42.0 (2024-05-06) + +Full Changelog: [v4.41.1...v4.42.0](https://github.com/openai/openai-node/compare/v4.41.1...v4.42.0) + +### Features + +* **api:** add usage metadata when streaming ([#829](https://github.com/openai/openai-node/issues/829)) ([6707f11](https://github.com/openai/openai-node/commit/6707f119a191ad98d634ad208be852f9f39c6c0e)) + + +### Bug Fixes + +* **example:** fix fine tuning example ([#827](https://github.com/openai/openai-node/issues/827)) ([6480a50](https://github.com/openai/openai-node/commit/6480a506c096a2664bd2ad296481e51017ff4185)) + ## 4.41.1 (2024-05-06) Full Changelog: [v4.41.0...v4.41.1](https://github.com/openai/openai-node/compare/v4.41.0...v4.41.1) diff --git a/README.md b/README.md index d911ccc63..e4c0ad332 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.41.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.42.0/mod.ts'; ``` diff --git a/package.json b/package.json index 86b5bfc11..97854fcd8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.41.1", + "version": "4.42.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 5216721fc..358ed3685 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.41.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.42.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index afa714f81..c1a790c33 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.41.1'; // x-release-please-version +export const VERSION = '4.42.0'; // x-release-please-version From b125bdddb4d91bdc1f7f23d4242e343f851efa01 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 8 May 2024 16:10:41 -0400 Subject: [PATCH 396/725] feat(api): adding file purposes (#831) --- .stats.yml | 2 +- src/resources/files.ts | 18 +++++++++--------- tests/api-resources/files.test.ts | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.stats.yml b/.stats.yml index 49956282b..50c6b293d 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 64 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-edb5af3ade0cd27cf366b0654b90c7a81c43c433e11fc3f6e621e2c779de10d4.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-2e14236d4015bf3b956290ea8b656224a0c7b206a356c6af2a7ae43fdbceb04c.yml diff --git a/src/resources/files.ts b/src/resources/files.ts index 820c7a1fa..63dff5bd4 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -148,10 +148,11 @@ export interface FileObject { object: 'file'; /** - * The intended purpose of the file. Supported values are `fine-tune`, - * `fine-tune-results`, `assistants`, and `assistants_output`. + * The intended purpose of the file. Supported values are `assistants`, + * `assistants_output`, `batch`, `batch_output`, `fine-tune`, and + * `fine-tune-results`. */ - purpose: 'fine-tune' | 'fine-tune-results' | 'assistants' | 'assistants_output'; + purpose: 'assistants' | 'assistants_output' | 'batch' | 'batch_output' | 'fine-tune' | 'fine-tune-results'; /** * @deprecated: Deprecated. The current status of the file, which can be either @@ -175,14 +176,13 @@ export interface FileCreateParams { /** * The intended purpose of the uploaded file. * - * Use "fine-tune" for - * [Fine-tuning](https://platform.openai.com/docs/api-reference/fine-tuning) and - * "assistants" for + * Use "assistants" for * [Assistants](https://platform.openai.com/docs/api-reference/assistants) and - * [Messages](https://platform.openai.com/docs/api-reference/messages). This allows - * us to validate the format of the uploaded file is correct for fine-tuning. + * [Messages](https://platform.openai.com/docs/api-reference/messages), "batch" for + * [Batch API](https://platform.openai.com/docs/guides/batch), and "fine-tune" for + * [Fine-tuning](https://platform.openai.com/docs/api-reference/fine-tuning). */ - purpose: 'fine-tune' | 'assistants'; + purpose: 'assistants' | 'batch' | 'fine-tune'; } export interface FileListParams { diff --git a/tests/api-resources/files.test.ts b/tests/api-resources/files.test.ts index 514f42e3a..2fda1c947 100644 --- a/tests/api-resources/files.test.ts +++ b/tests/api-resources/files.test.ts @@ -12,7 +12,7 @@ describe('resource files', () => { test('create: only required params', async () => { const responsePromise = openai.files.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), - purpose: 'fine-tune', + purpose: 'assistants', }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); @@ -26,7 +26,7 @@ describe('resource files', () => { test('create: required and optional params', async () => { const response = await openai.files.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), - purpose: 'fine-tune', + purpose: 'assistants', }); }); From 579edb5f89896b99be0b35e112455cef9b864bc0 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 8 May 2024 16:11:02 -0400 Subject: [PATCH 397/725] release: 4.43.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bca107b6c..f533aa156 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.42.0" + ".": "4.43.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 98885d747..18e728d02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.43.0 (2024-05-08) + +Full Changelog: [v4.42.0...v4.43.0](https://github.com/openai/openai-node/compare/v4.42.0...v4.43.0) + +### Features + +* **api:** adding file purposes ([#831](https://github.com/openai/openai-node/issues/831)) ([a62b877](https://github.com/openai/openai-node/commit/a62b8779ff7261cdd6aa7bf72fb6407cc7e3fd21)) + ## 4.42.0 (2024-05-06) Full Changelog: [v4.41.1...v4.42.0](https://github.com/openai/openai-node/compare/v4.41.1...v4.42.0) diff --git a/README.md b/README.md index e4c0ad332..621b53a84 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.42.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.43.0/mod.ts'; ``` diff --git a/package.json b/package.json index 97854fcd8..434e0686b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.42.0", + "version": "4.43.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 358ed3685..7badf1191 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.42.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.43.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index c1a790c33..8be389808 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.42.0'; // x-release-please-version +export const VERSION = '4.43.0'; // x-release-please-version From f0a2d8d55e8b68dd9870cb29bb3cb7d5468b0fad Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 9 May 2024 16:19:10 -0400 Subject: [PATCH 398/725] feat(api): add message image content (#834) --- .stats.yml | 2 +- api.md | 6 + src/lib/AssistantStream.ts | 11 +- src/resources/beta/threads/index.ts | 6 + src/resources/beta/threads/messages.ts | 110 +++++++++++++++++- src/resources/beta/threads/runs/runs.ts | 17 +-- src/resources/beta/threads/threads.ts | 22 ++-- src/resources/files.ts | 16 ++- .../beta/threads/messages.test.ts | 7 +- .../beta/threads/runs/runs.test.ts | 6 +- .../beta/threads/threads.test.ts | 12 +- 11 files changed, 171 insertions(+), 44 deletions(-) diff --git a/.stats.yml b/.stats.yml index 50c6b293d..52e87d1b5 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 64 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-2e14236d4015bf3b956290ea8b656224a0c7b206a356c6af2a7ae43fdbceb04c.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-084b8f68408c6b689a55200a78bcf233769bfcd8e999d9fadaeb399152b05bcd.yml diff --git a/api.md b/api.md index 18cdd9e62..17a3f9632 100644 --- a/api.md +++ b/api.md @@ -349,14 +349,20 @@ Types: - ImageFileContentBlock - ImageFileDelta - ImageFileDeltaBlock +- ImageURL +- ImageURLContentBlock +- ImageURLDelta +- ImageURLDeltaBlock - Message - MessageContent - MessageContentDelta +- MessageContentPartParam - MessageDeleted - MessageDelta - MessageDeltaEvent - Text - TextContentBlock +- TextContentBlockParam - TextDelta - TextDeltaBlock diff --git a/src/lib/AssistantStream.ts b/src/lib/AssistantStream.ts index a2974826c..de7511b5d 100644 --- a/src/lib/AssistantStream.ts +++ b/src/lib/AssistantStream.ts @@ -7,6 +7,7 @@ import { ImageFile, TextDelta, Messages, + MessageContent, } from 'openai/resources/beta/threads/messages'; import * as Core from 'openai/core'; import { RequestOptions } from 'openai/core'; @@ -87,7 +88,7 @@ export class AssistantStream #messageSnapshot: Message | undefined; #finalRun: Run | undefined; #currentContentIndex: number | undefined; - #currentContent: TextContentBlock | ImageFileContentBlock | undefined; + #currentContent: MessageContent | undefined; #currentToolCallIndex: number | undefined; #currentToolCall: ToolCall | undefined; @@ -624,10 +625,8 @@ export class AssistantStream currentContent, ); } else { - snapshot.content[contentElement.index] = contentElement as - | TextContentBlock - | ImageFileContentBlock; - //This is a new element + snapshot.content[contentElement.index] = contentElement as MessageContent; + // This is a new element newContent.push(contentElement); } } @@ -650,7 +649,7 @@ export class AssistantStream #accumulateContent( contentElement: MessageContentDelta, - currentContent: TextContentBlock | ImageFileContentBlock | undefined, + currentContent: MessageContent | undefined, ): TextContentBlock | ImageFileContentBlock { return AssistantStream.accumulateDelta(currentContent as unknown as Record, contentElement) as | TextContentBlock diff --git a/src/resources/beta/threads/index.ts b/src/resources/beta/threads/index.ts index d0ebb1798..b55f67edf 100644 --- a/src/resources/beta/threads/index.ts +++ b/src/resources/beta/threads/index.ts @@ -11,14 +11,20 @@ export { ImageFileContentBlock, ImageFileDelta, ImageFileDeltaBlock, + ImageURL, + ImageURLContentBlock, + ImageURLDelta, + ImageURLDeltaBlock, Message, MessageContent, MessageContentDelta, + MessageContentPartParam, MessageDeleted, MessageDelta, MessageDeltaEvent, Text, TextContentBlock, + TextContentBlockParam, TextDelta, TextDeltaBlock, MessageCreateParams, diff --git a/src/resources/beta/threads/messages.ts b/src/resources/beta/threads/messages.ts index 8ce714f58..a1f90e1e4 100644 --- a/src/resources/beta/threads/messages.ts +++ b/src/resources/beta/threads/messages.ts @@ -249,9 +249,16 @@ export namespace FilePathDeltaAnnotation { export interface ImageFile { /** * The [File](https://platform.openai.com/docs/api-reference/files) ID of the image - * in the message content. + * in the message content. Set `purpose="vision"` when uploading the File if you + * need to later display the file content. */ file_id: string; + + /** + * Specifies the detail level of the image if specified by the user. `low` uses + * fewer tokens, you can opt in to high resolution using `high`. + */ + detail?: 'auto' | 'low' | 'high'; } /** @@ -268,9 +275,16 @@ export interface ImageFileContentBlock { } export interface ImageFileDelta { + /** + * Specifies the detail level of the image if specified by the user. `low` uses + * fewer tokens, you can opt in to high resolution using `high`. + */ + detail?: 'auto' | 'low' | 'high'; + /** * The [File](https://platform.openai.com/docs/api-reference/files) ID of the image - * in the message content. + * in the message content. Set `purpose="vision"` when uploading the File if you + * need to later display the file content. */ file_id?: string; } @@ -293,6 +307,63 @@ export interface ImageFileDeltaBlock { image_file?: ImageFileDelta; } +export interface ImageURL { + /** + * The external URL of the image, must be a supported image types: jpeg, jpg, png, + * gif, webp. + */ + url: string; + + /** + * Specifies the detail level of the image. `low` uses fewer tokens, you can opt in + * to high resolution using `high`. Default value is `auto` + */ + detail?: 'auto' | 'low' | 'high'; +} + +/** + * References an image URL in the content of a message. + */ +export interface ImageURLContentBlock { + image_url: ImageURL; + + /** + * The type of the content part. + */ + type: 'image_url'; +} + +export interface ImageURLDelta { + /** + * Specifies the detail level of the image. `low` uses fewer tokens, you can opt in + * to high resolution using `high`. + */ + detail?: 'auto' | 'low' | 'high'; + + /** + * The URL of the image, must be a supported image types: jpeg, jpg, png, gif, + * webp. + */ + url?: string; +} + +/** + * References an image URL in the content of a message. + */ +export interface ImageURLDeltaBlock { + /** + * The index of the content part in the message. + */ + index: number; + + /** + * Always `image_url`. + */ + type: 'image_url'; + + image_url?: ImageURLDelta; +} + /** * Represents a message within a * [thread](https://platform.openai.com/docs/api-reference/threads). @@ -406,13 +477,19 @@ export namespace Message { * References an image [File](https://platform.openai.com/docs/api-reference/files) * in the content of a message. */ -export type MessageContent = ImageFileContentBlock | TextContentBlock; +export type MessageContent = ImageFileContentBlock | ImageURLContentBlock | TextContentBlock; + +/** + * References an image [File](https://platform.openai.com/docs/api-reference/files) + * in the content of a message. + */ +export type MessageContentDelta = ImageFileDeltaBlock | TextDeltaBlock | ImageURLDeltaBlock; /** * References an image [File](https://platform.openai.com/docs/api-reference/files) * in the content of a message. */ -export type MessageContentDelta = ImageFileDeltaBlock | TextDeltaBlock; +export type MessageContentPartParam = ImageFileContentBlock | ImageURLContentBlock | TextContentBlockParam; export interface MessageDeleted { id: string; @@ -479,6 +556,21 @@ export interface TextContentBlock { type: 'text'; } +/** + * The text content that is part of a message. + */ +export interface TextContentBlockParam { + /** + * Text content to be sent to the model + */ + text: string; + + /** + * Always `text`. + */ + type: 'text'; +} + export interface TextDelta { annotations?: Array; @@ -507,9 +599,9 @@ export interface TextDeltaBlock { export interface MessageCreateParams { /** - * The content of the message. + * The text contents of the message. */ - content: string; + content: string | Array; /** * The role of the entity that is creating the message. Allowed values include: @@ -591,14 +683,20 @@ export namespace Messages { export import ImageFileContentBlock = MessagesAPI.ImageFileContentBlock; export import ImageFileDelta = MessagesAPI.ImageFileDelta; export import ImageFileDeltaBlock = MessagesAPI.ImageFileDeltaBlock; + export import ImageURL = MessagesAPI.ImageURL; + export import ImageURLContentBlock = MessagesAPI.ImageURLContentBlock; + export import ImageURLDelta = MessagesAPI.ImageURLDelta; + export import ImageURLDeltaBlock = MessagesAPI.ImageURLDeltaBlock; export import Message = MessagesAPI.Message; export import MessageContent = MessagesAPI.MessageContent; export import MessageContentDelta = MessagesAPI.MessageContentDelta; + export import MessageContentPartParam = MessagesAPI.MessageContentPartParam; export import MessageDeleted = MessagesAPI.MessageDeleted; export import MessageDelta = MessagesAPI.MessageDelta; export import MessageDeltaEvent = MessagesAPI.MessageDeltaEvent; export import Text = MessagesAPI.Text; export import TextContentBlock = MessagesAPI.TextContentBlock; + export import TextContentBlockParam = MessagesAPI.TextContentBlockParam; export import TextDelta = MessagesAPI.TextDelta; export import TextDeltaBlock = MessagesAPI.TextDeltaBlock; export import MessagesPage = MessagesAPI.MessagesPage; diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 18095886a..d188edb2d 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -9,6 +9,7 @@ import { sleep } from 'openai/core'; import { RunSubmitToolOutputsParamsStream } from 'openai/lib/AssistantStream'; import * as RunsAPI from 'openai/resources/beta/threads/runs/runs'; import * as AssistantsAPI from 'openai/resources/beta/assistants'; +import * as MessagesAPI from 'openai/resources/beta/threads/messages'; import * as ThreadsAPI from 'openai/resources/beta/threads/threads'; import * as StepsAPI from 'openai/resources/beta/threads/runs/steps'; import { CursorPage, type CursorPageParams } from 'openai/pagination'; @@ -747,9 +748,9 @@ export interface RunCreateParamsBase { export namespace RunCreateParams { export interface AdditionalMessage { /** - * The content of the message. + * The text contents of the message. */ - content: string; + content: string | Array; /** * The role of the entity that is creating the message. Allowed values include: @@ -999,9 +1000,9 @@ export interface RunCreateAndPollParams { export namespace RunCreateAndPollParams { export interface AdditionalMessage { /** - * The content of the message. + * The text contents of the message. */ - content: string; + content: string | Array; /** * The role of the entity that is creating the message. Allowed values include: @@ -1204,9 +1205,9 @@ export interface RunCreateAndStreamParams { export namespace RunCreateAndStreamParams { export interface AdditionalMessage { /** - * The content of the message. + * The text contents of the message. */ - content: string; + content: string | Array; /** * The role of the entity that is creating the message. Allowed values include: @@ -1409,9 +1410,9 @@ export interface RunStreamParams { export namespace RunStreamParams { export interface AdditionalMessage { /** - * The content of the message. + * The text contents of the message. */ - content: string; + content: string | Array; /** * The role of the entity that is creating the message. Allowed values include: diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index b8b3ff2be..7bd86fa50 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -284,9 +284,9 @@ export interface ThreadCreateParams { export namespace ThreadCreateParams { export interface Message { /** - * The content of the message. + * The text contents of the message. */ - content: string; + content: string | Array; /** * The role of the entity that is creating the message. Allowed values include: @@ -623,9 +623,9 @@ export namespace ThreadCreateAndRunParams { export namespace Thread { export interface Message { /** - * The content of the message. + * The text contents of the message. */ - content: string; + content: string | Array; /** * The role of the entity that is creating the message. Allowed values include: @@ -973,9 +973,9 @@ export namespace ThreadCreateAndRunPollParams { export namespace Thread { export interface Message { /** - * The content of the message. + * The text contents of the message. */ - content: string; + content: string | Array; /** * The role of the entity that is creating the message. Allowed values include: @@ -1302,9 +1302,9 @@ export namespace ThreadCreateAndRunStreamParams { export namespace Thread { export interface Message { /** - * The content of the message. + * The text contents of the message. */ - content: string; + content: string | Array; /** * The role of the entity that is creating the message. Allowed values include: @@ -1503,14 +1503,20 @@ export namespace Threads { export import ImageFileContentBlock = MessagesAPI.ImageFileContentBlock; export import ImageFileDelta = MessagesAPI.ImageFileDelta; export import ImageFileDeltaBlock = MessagesAPI.ImageFileDeltaBlock; + export import ImageURL = MessagesAPI.ImageURL; + export import ImageURLContentBlock = MessagesAPI.ImageURLContentBlock; + export import ImageURLDelta = MessagesAPI.ImageURLDelta; + export import ImageURLDeltaBlock = MessagesAPI.ImageURLDeltaBlock; export import Message = MessagesAPI.Message; export import MessageContent = MessagesAPI.MessageContent; export import MessageContentDelta = MessagesAPI.MessageContentDelta; + export import MessageContentPartParam = MessagesAPI.MessageContentPartParam; export import MessageDeleted = MessagesAPI.MessageDeleted; export import MessageDelta = MessagesAPI.MessageDelta; export import MessageDeltaEvent = MessagesAPI.MessageDeltaEvent; export import Text = MessagesAPI.Text; export import TextContentBlock = MessagesAPI.TextContentBlock; + export import TextContentBlockParam = MessagesAPI.TextContentBlockParam; export import TextDelta = MessagesAPI.TextDelta; export import TextDeltaBlock = MessagesAPI.TextDeltaBlock; export import MessagesPage = MessagesAPI.MessagesPage; diff --git a/src/resources/files.ts b/src/resources/files.ts index 63dff5bd4..5d284a071 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -149,10 +149,17 @@ export interface FileObject { /** * The intended purpose of the file. Supported values are `assistants`, - * `assistants_output`, `batch`, `batch_output`, `fine-tune`, and - * `fine-tune-results`. + * `assistants_output`, `batch`, `batch_output`, `fine-tune`, `fine-tune-results` + * and `vision`. */ - purpose: 'assistants' | 'assistants_output' | 'batch' | 'batch_output' | 'fine-tune' | 'fine-tune-results'; + purpose: + | 'assistants' + | 'assistants_output' + | 'batch' + | 'batch_output' + | 'fine-tune' + | 'fine-tune-results' + | 'vision'; /** * @deprecated: Deprecated. The current status of the file, which can be either @@ -178,7 +185,8 @@ export interface FileCreateParams { * * Use "assistants" for * [Assistants](https://platform.openai.com/docs/api-reference/assistants) and - * [Messages](https://platform.openai.com/docs/api-reference/messages), "batch" for + * [Message](https://platform.openai.com/docs/api-reference/messages) files, + * "vision" for Assistants image file inputs, "batch" for * [Batch API](https://platform.openai.com/docs/guides/batch), and "fine-tune" for * [Fine-tuning](https://platform.openai.com/docs/api-reference/fine-tuning). */ diff --git a/tests/api-resources/beta/threads/messages.test.ts b/tests/api-resources/beta/threads/messages.test.ts index 262ff178d..01268586c 100644 --- a/tests/api-resources/beta/threads/messages.test.ts +++ b/tests/api-resources/beta/threads/messages.test.ts @@ -10,7 +10,10 @@ const openai = new OpenAI({ describe('resource messages', () => { test('create: only required params', async () => { - const responsePromise = openai.beta.threads.messages.create('string', { content: 'x', role: 'user' }); + const responsePromise = openai.beta.threads.messages.create('string', { + content: 'string', + role: 'user', + }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -22,7 +25,7 @@ describe('resource messages', () => { test('create: required and optional params', async () => { const response = await openai.beta.threads.messages.create('string', { - content: 'x', + content: 'string', role: 'user', attachments: [ { diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts index 85d97c34c..3ee6ecb4e 100644 --- a/tests/api-resources/beta/threads/runs/runs.test.ts +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -27,7 +27,7 @@ describe('resource runs', () => { additional_messages: [ { role: 'user', - content: 'x', + content: 'string', attachments: [ { file_id: 'string', @@ -58,7 +58,7 @@ describe('resource runs', () => { }, { role: 'user', - content: 'x', + content: 'string', attachments: [ { file_id: 'string', @@ -89,7 +89,7 @@ describe('resource runs', () => { }, { role: 'user', - content: 'x', + content: 'string', attachments: [ { file_id: 'string', diff --git a/tests/api-resources/beta/threads/threads.test.ts b/tests/api-resources/beta/threads/threads.test.ts index f2521cd5b..4c4256258 100644 --- a/tests/api-resources/beta/threads/threads.test.ts +++ b/tests/api-resources/beta/threads/threads.test.ts @@ -35,7 +35,7 @@ describe('resource threads', () => { messages: [ { role: 'user', - content: 'x', + content: 'string', attachments: [ { file_id: 'string', @@ -66,7 +66,7 @@ describe('resource threads', () => { }, { role: 'user', - content: 'x', + content: 'string', attachments: [ { file_id: 'string', @@ -97,7 +97,7 @@ describe('resource threads', () => { }, { role: 'user', - content: 'x', + content: 'string', attachments: [ { file_id: 'string', @@ -214,7 +214,7 @@ describe('resource threads', () => { messages: [ { role: 'user', - content: 'x', + content: 'string', attachments: [ { file_id: 'string', @@ -245,7 +245,7 @@ describe('resource threads', () => { }, { role: 'user', - content: 'x', + content: 'string', attachments: [ { file_id: 'string', @@ -276,7 +276,7 @@ describe('resource threads', () => { }, { role: 'user', - content: 'x', + content: 'string', attachments: [ { file_id: 'string', From 2a12cfdef022cf8e74a4d08e9db6ad3ad42fea95 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 9 May 2024 16:19:29 -0400 Subject: [PATCH 399/725] release: 4.44.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f533aa156..7f5d28dff 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.43.0" + ".": "4.44.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 18e728d02..ecdbfdb14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.44.0 (2024-05-09) + +Full Changelog: [v4.43.0...v4.44.0](https://github.com/openai/openai-node/compare/v4.43.0...v4.44.0) + +### Features + +* **api:** add message image content ([#834](https://github.com/openai/openai-node/issues/834)) ([7757b3e](https://github.com/openai/openai-node/commit/7757b3ea54a2c5cc251f55af0b676952ba12e8a6)) + ## 4.43.0 (2024-05-08) Full Changelog: [v4.42.0...v4.43.0](https://github.com/openai/openai-node/compare/v4.42.0...v4.43.0) diff --git a/README.md b/README.md index 621b53a84..397bb2185 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.43.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.44.0/mod.ts'; ``` diff --git a/package.json b/package.json index 434e0686b..e70c0fd09 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.43.0", + "version": "4.44.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 7badf1191..015d307ea 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.43.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.44.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 8be389808..4ebba76ed 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.43.0'; // x-release-please-version +export const VERSION = '4.44.0'; // x-release-please-version From babb1404751059bdd171b792d03fd21272dd8f8b Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 10 May 2024 13:26:55 -0400 Subject: [PATCH 400/725] chore(dependency): bumped Next.js version (#836) --- ecosystem-tests/vercel-edge/package-lock.json | 119 ++++++++---------- ecosystem-tests/vercel-edge/package.json | 2 +- examples/package.json | 2 +- 3 files changed, 53 insertions(+), 70 deletions(-) diff --git a/ecosystem-tests/vercel-edge/package-lock.json b/ecosystem-tests/vercel-edge/package-lock.json index fdfe2952d..bc820a010 100644 --- a/ecosystem-tests/vercel-edge/package-lock.json +++ b/ecosystem-tests/vercel-edge/package-lock.json @@ -9,7 +9,7 @@ "version": "0.1.0", "dependencies": { "ai": "2.1.34", - "next": "13.5.6", + "next": "14.1.1", "react": "18.2.0", "react-dom": "18.2.0" }, @@ -1180,14 +1180,14 @@ } }, "node_modules/@next/env": { - "version": "13.5.6", - "resolved": "https://registry.npmjs.org/@next/env/-/env-13.5.6.tgz", - "integrity": "sha512-Yac/bV5sBGkkEXmAX5FWPS9Mmo2rthrOPRQQNfycJPkjUAUclomCPH7QFVCDQ4Mp2k2K1SSM6m0zrxYrOwtFQw==" + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/@next/env/-/env-14.1.1.tgz", + "integrity": "sha512-7CnQyD5G8shHxQIIg3c7/pSeYFeMhsNbpU/bmvH7ZnDql7mNRgg8O2JZrhrc/soFnfBnKP4/xXNiiSIPn2w8gA==" }, "node_modules/@next/swc-darwin-arm64": { - "version": "13.5.6", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.5.6.tgz", - "integrity": "sha512-5nvXMzKtZfvcu4BhtV0KH1oGv4XEW+B+jOfmBdpFI3C7FrB/MfujRpWYSBBO64+qbW8pkZiSyQv9eiwnn5VIQA==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.1.1.tgz", + "integrity": "sha512-yDjSFKQKTIjyT7cFv+DqQfW5jsD+tVxXTckSe1KIouKk75t1qZmj/mV3wzdmFb0XHVGtyRjDMulfVG8uCKemOQ==", "cpu": [ "arm64" ], @@ -1200,9 +1200,9 @@ } }, "node_modules/@next/swc-darwin-x64": { - "version": "13.5.6", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.5.6.tgz", - "integrity": "sha512-6cgBfxg98oOCSr4BckWjLLgiVwlL3vlLj8hXg2b+nDgm4bC/qVXXLfpLB9FHdoDu4057hzywbxKvmYGmi7yUzA==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.1.1.tgz", + "integrity": "sha512-KCQmBL0CmFmN8D64FHIZVD9I4ugQsDBBEJKiblXGgwn7wBCSe8N4Dx47sdzl4JAg39IkSN5NNrr8AniXLMb3aw==", "cpu": [ "x64" ], @@ -1215,9 +1215,9 @@ } }, "node_modules/@next/swc-linux-arm64-gnu": { - "version": "13.5.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.5.6.tgz", - "integrity": "sha512-txagBbj1e1w47YQjcKgSU4rRVQ7uF29YpnlHV5xuVUsgCUf2FmyfJ3CPjZUvpIeXCJAoMCFAoGnbtX86BK7+sg==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.1.1.tgz", + "integrity": "sha512-YDQfbWyW0JMKhJf/T4eyFr4b3tceTorQ5w2n7I0mNVTFOvu6CGEzfwT3RSAQGTi/FFMTFcuspPec/7dFHuP7Eg==", "cpu": [ "arm64" ], @@ -1230,9 +1230,9 @@ } }, "node_modules/@next/swc-linux-arm64-musl": { - "version": "13.5.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.5.6.tgz", - "integrity": "sha512-cGd+H8amifT86ZldVJtAKDxUqeFyLWW+v2NlBULnLAdWsiuuN8TuhVBt8ZNpCqcAuoruoSWynvMWixTFcroq+Q==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.1.1.tgz", + "integrity": "sha512-fiuN/OG6sNGRN/bRFxRvV5LyzLB8gaL8cbDH5o3mEiVwfcMzyE5T//ilMmaTrnA8HLMS6hoz4cHOu6Qcp9vxgQ==", "cpu": [ "arm64" ], @@ -1245,9 +1245,9 @@ } }, "node_modules/@next/swc-linux-x64-gnu": { - "version": "13.5.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.5.6.tgz", - "integrity": "sha512-Mc2b4xiIWKXIhBy2NBTwOxGD3nHLmq4keFk+d4/WL5fMsB8XdJRdtUlL87SqVCTSaf1BRuQQf1HvXZcy+rq3Nw==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.1.1.tgz", + "integrity": "sha512-rv6AAdEXoezjbdfp3ouMuVqeLjE1Bin0AuE6qxE6V9g3Giz5/R3xpocHoAi7CufRR+lnkuUjRBn05SYJ83oKNQ==", "cpu": [ "x64" ], @@ -1260,9 +1260,9 @@ } }, "node_modules/@next/swc-linux-x64-musl": { - "version": "13.5.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.5.6.tgz", - "integrity": "sha512-CFHvP9Qz98NruJiUnCe61O6GveKKHpJLloXbDSWRhqhkJdZD2zU5hG+gtVJR//tyW897izuHpM6Gtf6+sNgJPQ==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.1.1.tgz", + "integrity": "sha512-YAZLGsaNeChSrpz/G7MxO3TIBLaMN8QWMr3X8bt6rCvKovwU7GqQlDu99WdvF33kI8ZahvcdbFsy4jAFzFX7og==", "cpu": [ "x64" ], @@ -1275,9 +1275,9 @@ } }, "node_modules/@next/swc-win32-arm64-msvc": { - "version": "13.5.6", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.5.6.tgz", - "integrity": "sha512-aFv1ejfkbS7PUa1qVPwzDHjQWQtknzAZWGTKYIAaS4NMtBlk3VyA6AYn593pqNanlicewqyl2jUhQAaFV/qXsg==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.1.1.tgz", + "integrity": "sha512-1L4mUYPBMvVDMZg1inUYyPvFSduot0g73hgfD9CODgbr4xiTYe0VOMTZzaRqYJYBA9mana0x4eaAaypmWo1r5A==", "cpu": [ "arm64" ], @@ -1290,9 +1290,9 @@ } }, "node_modules/@next/swc-win32-ia32-msvc": { - "version": "13.5.6", - "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.5.6.tgz", - "integrity": "sha512-XqqpHgEIlBHvzwG8sp/JXMFkLAfGLqkbVsyN+/Ih1mR8INb6YCc2x/Mbwi6hsAgUnqQztz8cvEbHJUbSl7RHDg==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.1.1.tgz", + "integrity": "sha512-jvIE9tsuj9vpbbXlR5YxrghRfMuG0Qm/nZ/1KDHc+y6FpnZ/apsgh+G6t15vefU0zp3WSpTMIdXRUsNl/7RSuw==", "cpu": [ "ia32" ], @@ -1305,9 +1305,9 @@ } }, "node_modules/@next/swc-win32-x64-msvc": { - "version": "13.5.6", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.5.6.tgz", - "integrity": "sha512-Cqfe1YmOS7k+5mGu92nl5ULkzpKuxJrP3+4AEuPmrpFZ3BHxTY3TnHmU1On3bFmFFs6FbTcdF58CCUProGpIGQ==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.1.1.tgz", + "integrity": "sha512-S6K6EHDU5+1KrBDLko7/c1MNy/Ya73pIAmvKeFwsF4RmBFJSO7/7YeD4FnZ4iBdzE69PpQ4sOMU9ORKeNuxe8A==", "cpu": [ "x64" ], @@ -2566,9 +2566,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001524", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001524.tgz", - "integrity": "sha512-Jj917pJtYg9HSJBF95HVX3Cdr89JUyLT4IZ8SvM5aDRni95swKgYi3TgYLH5hnGfPE/U1dg6IfZ50UsIlLkwSA==", + "version": "1.0.30001617", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001617.tgz", + "integrity": "sha512-mLyjzNI9I+Pix8zwcrpxEbGlfqOkF9kM3ptzmKNw5tizSyYwMe+nGLTqMK9cO+0E+Bh6TsBxNAaHWEM8xwSsmA==", "funding": [ { "type": "opencollective", @@ -3780,11 +3780,6 @@ "node": ">= 6" } }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - }, "node_modules/globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", @@ -5066,34 +5061,34 @@ "dev": true }, "node_modules/next": { - "version": "13.5.6", - "resolved": "https://registry.npmjs.org/next/-/next-13.5.6.tgz", - "integrity": "sha512-Y2wTcTbO4WwEsVb4A8VSnOsG1I9ok+h74q0ZdxkwM3EODqrs4pasq7O0iUxbcS9VtWMicG7f3+HAj0r1+NtKSw==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/next/-/next-14.1.1.tgz", + "integrity": "sha512-McrGJqlGSHeaz2yTRPkEucxQKe5Zq7uPwyeHNmJaZNY4wx9E9QdxmTp310agFRoMuIYgQrCrT3petg13fSVOww==", "dependencies": { - "@next/env": "13.5.6", + "@next/env": "14.1.1", "@swc/helpers": "0.5.2", "busboy": "1.6.0", - "caniuse-lite": "^1.0.30001406", + "caniuse-lite": "^1.0.30001579", + "graceful-fs": "^4.2.11", "postcss": "8.4.31", - "styled-jsx": "5.1.1", - "watchpack": "2.4.0" + "styled-jsx": "5.1.1" }, "bin": { "next": "dist/bin/next" }, "engines": { - "node": ">=16.14.0" + "node": ">=18.17.0" }, "optionalDependencies": { - "@next/swc-darwin-arm64": "13.5.6", - "@next/swc-darwin-x64": "13.5.6", - "@next/swc-linux-arm64-gnu": "13.5.6", - "@next/swc-linux-arm64-musl": "13.5.6", - "@next/swc-linux-x64-gnu": "13.5.6", - "@next/swc-linux-x64-musl": "13.5.6", - "@next/swc-win32-arm64-msvc": "13.5.6", - "@next/swc-win32-ia32-msvc": "13.5.6", - "@next/swc-win32-x64-msvc": "13.5.6" + "@next/swc-darwin-arm64": "14.1.1", + "@next/swc-darwin-x64": "14.1.1", + "@next/swc-linux-arm64-gnu": "14.1.1", + "@next/swc-linux-arm64-musl": "14.1.1", + "@next/swc-linux-x64-gnu": "14.1.1", + "@next/swc-linux-x64-musl": "14.1.1", + "@next/swc-win32-arm64-msvc": "14.1.1", + "@next/swc-win32-ia32-msvc": "14.1.1", + "@next/swc-win32-x64-msvc": "14.1.1" }, "peerDependencies": { "@opentelemetry/api": "^1.1.0", @@ -6554,18 +6549,6 @@ "makeerror": "1.0.12" } }, - "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, "node_modules/web-vitals": { "version": "0.2.4", "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-0.2.4.tgz", diff --git a/ecosystem-tests/vercel-edge/package.json b/ecosystem-tests/vercel-edge/package.json index 48223796c..4c75dd4fd 100644 --- a/ecosystem-tests/vercel-edge/package.json +++ b/ecosystem-tests/vercel-edge/package.json @@ -15,7 +15,7 @@ }, "dependencies": { "ai": "2.1.34", - "next": "13.5.6", + "next": "14.1.1", "react": "18.2.0", "react-dom": "18.2.0" }, diff --git a/examples/package.json b/examples/package.json index 3b27b221f..04ed507b9 100644 --- a/examples/package.json +++ b/examples/package.json @@ -7,7 +7,7 @@ "private": true, "dependencies": { "express": "^4.18.2", - "next": "^13.5.5", + "next": "^14.1.1", "openai": "file:..", "zod-to-json-schema": "^3.21.4" }, From 6e556d9e12341155cc13fe226ab110d63858370e Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 10 May 2024 15:30:39 -0400 Subject: [PATCH 401/725] chore(docs): add SECURITY.md (#838) --- SECURITY.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 000000000..c54acaf33 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,29 @@ +# Security Policy + +## Reporting Security Issues + +This SDK is generated by [Stainless Software Inc](http://stainlessapi.com). Stainless takes security seriously, and encourages you to report any security vulnerability promptly so that appropriate action can be taken. + +To report a security issue, please contact the Stainless team at security@stainlessapi.com. + +## Responsible Disclosure + +We appreciate the efforts of security researchers and individuals who help us maintain the security of +SDKs we generate. If you believe you have found a security vulnerability, please adhere to responsible +disclosure practices by allowing us a reasonable amount of time to investigate and address the issue +before making any information public. + +## Reporting Non-SDK Related Security Issues + +If you encounter security issues that are not directly related to SDKs but pertain to the services +or products provided by OpenAI please follow the respective company's security reporting guidelines. + +### OpenAI Terms and Policies + +Our Security Policy can be found at [Security Policy URL](https://openai.com/policies/coordinated-vulnerability-disclosure-policy). + +Please contact disclosure@openai.com for any questions or concerns regarding security of our services. + +--- + +Thank you for helping us keep the SDKs and systems they interact with secure. From e279f8c51aa80cb913ccb6df647407bea1f2f071 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 10 May 2024 16:42:25 -0400 Subject: [PATCH 402/725] feat(azure): batch api (#839) --- src/index.ts | 11 +- tests/lib/azure.test.ts | 274 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 279 insertions(+), 6 deletions(-) diff --git a/src/index.ts b/src/index.ts index b146a7bab..f5c8a0fe1 100644 --- a/src/index.ts +++ b/src/index.ts @@ -346,6 +346,7 @@ export interface AzureClientOptions extends ClientOptions { /** API Client for interfacing with the Azure OpenAI API. */ export class AzureOpenAI extends OpenAI { private _azureADTokenProvider: (() => Promise) | undefined; + private _deployment: string | undefined; apiVersion: string = ''; /** * API Client for interfacing with the Azure OpenAI API. @@ -412,11 +413,7 @@ export class AzureOpenAI extends OpenAI { ); } - if (deployment) { - baseURL = `${endpoint}/openai/deployments/${deployment}`; - } else { - baseURL = `${endpoint}/openai`; - } + baseURL = `${endpoint}/openai`; } else { if (endpoint) { throw new Errors.OpenAIError('baseURL and endpoint are mutually exclusive'); @@ -432,6 +429,7 @@ export class AzureOpenAI extends OpenAI { this._azureADTokenProvider = azureADTokenProvider; this.apiVersion = apiVersion; + this._deployment = deployment; } override buildRequest(options: Core.FinalRequestOptions): { @@ -443,7 +441,7 @@ export class AzureOpenAI extends OpenAI { if (!Core.isObj(options.body)) { throw new Error('Expected request body to be an object'); } - const model = options.body['model']; + const model = this._deployment || options.body['model']; delete options.body['model']; if (model !== undefined && !this.baseURL.includes('/deployments')) { options.path = `/deployments/${model}${options.path}`; @@ -494,6 +492,7 @@ const _deployments_endpoints = new Set([ '/audio/translations', '/audio/speech', '/images/generations', + '/batches', ]); const API_KEY_SENTINEL = ''; diff --git a/tests/lib/azure.test.ts b/tests/lib/azure.test.ts index 4895273be..32b59ae33 100644 --- a/tests/lib/azure.test.ts +++ b/tests/lib/azure.test.ts @@ -4,6 +4,8 @@ import { Headers } from 'openai/core'; import defaultFetch, { Response, type RequestInit, type RequestInfo } from 'node-fetch'; const apiVersion = '2024-02-15-preview'; +const deployment = 'deployment'; +const model = 'unused model'; describe('instantiate azure client', () => { const env = process.env; @@ -275,6 +277,278 @@ describe('instantiate azure client', () => { describe('azure request building', () => { const client = new AzureOpenAI({ baseURL: 'https://example.com/', apiKey: 'My API Key', apiVersion }); + describe('model to deployment mapping', function () { + const testFetch = async (url: RequestInfo): Promise => { + return new Response(JSON.stringify({ url }), { headers: { 'content-type': 'application/json' } }); + }; + describe('with client-level deployment', function () { + const client = new AzureOpenAI({ + endpoint: 'https://example.com/', + apiKey: 'My API Key', + apiVersion, + deployment, + fetch: testFetch, + }); + + test('handles Batch', async () => { + expect( + await client.batches.create({ + completion_window: '24h', + endpoint: '/v1/chat/completions', + input_file_id: 'file-id', + }), + ).toStrictEqual({ + url: `https://example.com/openai/deployments/${deployment}/batches?api-version=${apiVersion}`, + }); + }); + + test('handles completions', async () => { + expect( + await client.completions.create({ + model, + prompt: 'prompt', + }), + ).toStrictEqual({ + url: `https://example.com/openai/deployments/${deployment}/completions?api-version=${apiVersion}`, + }); + }); + + test('handles chat completions', async () => { + expect( + await client.chat.completions.create({ + model, + messages: [{ role: 'system', content: 'Hello' }], + }), + ).toStrictEqual({ + url: `https://example.com/openai/deployments/${deployment}/chat/completions?api-version=${apiVersion}`, + }); + }); + + test('handles embeddings', async () => { + expect( + await client.embeddings.create({ + model, + input: 'input', + }), + ).toStrictEqual({ + url: `https://example.com/openai/deployments/${deployment}/embeddings?api-version=${apiVersion}`, + }); + }); + + test('handles audio translations', async () => { + expect( + await client.audio.translations.create({ + model, + file: { url: 'https://example.com/', blob: () => 0 as any }, + }), + ).toStrictEqual({ + url: `https://example.com/openai/deployments/${deployment}/audio/translations?api-version=${apiVersion}`, + }); + }); + + test('handles audio transcriptions', async () => { + expect( + await client.audio.transcriptions.create({ + model, + file: { url: 'https://example.com/', blob: () => 0 as any }, + }), + ).toStrictEqual({ + url: `https://example.com/openai/deployments/${deployment}/audio/transcriptions?api-version=${apiVersion}`, + }); + }); + + test('handles text to speech', async () => { + expect( + await ( + await client.audio.speech.create({ + model, + input: '', + voice: 'alloy', + }) + ).json(), + ).toStrictEqual({ + url: `https://example.com/openai/deployments/${deployment}/audio/speech?api-version=${apiVersion}`, + }); + }); + + test('handles image generation', async () => { + expect( + await client.images.generate({ + model, + prompt: 'prompt', + }), + ).toStrictEqual({ + url: `https://example.com/openai/deployments/${deployment}/images/generations?api-version=${apiVersion}`, + }); + }); + + test('handles assistants', async () => { + expect( + await client.beta.assistants.create({ + model, + }), + ).toStrictEqual({ + url: `https://example.com/openai/assistants?api-version=${apiVersion}`, + }); + }); + + test('handles files', async () => { + expect( + await client.files.create({ + file: { url: 'https://example.com/', blob: () => 0 as any }, + purpose: 'assistants', + }), + ).toStrictEqual({ + url: `https://example.com/openai/files?api-version=${apiVersion}`, + }); + }); + + test('handles fine tuning', async () => { + expect( + await client.fineTuning.jobs.create({ + model, + training_file: '', + }), + ).toStrictEqual({ + url: `https://example.com/openai/fine_tuning/jobs?api-version=${apiVersion}`, + }); + }); + }); + + describe('with no client-level deployment', function () { + const client = new AzureOpenAI({ + endpoint: 'https://example.com/', + apiKey: 'My API Key', + apiVersion, + fetch: testFetch, + }); + + test('Batch is not handled', async () => { + expect( + await client.batches.create({ + completion_window: '24h', + endpoint: '/v1/chat/completions', + input_file_id: 'file-id', + }), + ).toStrictEqual({ + url: `https://example.com/openai/batches?api-version=${apiVersion}`, + }); + }); + + test('handles completions', async () => { + expect( + await client.completions.create({ + model: deployment, + prompt: 'prompt', + }), + ).toStrictEqual({ + url: `https://example.com/openai/deployments/${deployment}/completions?api-version=${apiVersion}`, + }); + }); + + test('handles chat completions', async () => { + expect( + await client.chat.completions.create({ + model: deployment, + messages: [{ role: 'system', content: 'Hello' }], + }), + ).toStrictEqual({ + url: `https://example.com/openai/deployments/${deployment}/chat/completions?api-version=${apiVersion}`, + }); + }); + + test('handles embeddings', async () => { + expect( + await client.embeddings.create({ + model: deployment, + input: 'input', + }), + ).toStrictEqual({ + url: `https://example.com/openai/deployments/${deployment}/embeddings?api-version=${apiVersion}`, + }); + }); + + test('Audio translations is not handled', async () => { + expect( + await client.audio.translations.create({ + model: deployment, + file: { url: 'https://example.com/', blob: () => 0 as any }, + }), + ).toStrictEqual({ + url: `https://example.com/openai/audio/translations?api-version=${apiVersion}`, + }); + }); + + test('Audio transcriptions is not handled', async () => { + expect( + await client.audio.transcriptions.create({ + model: deployment, + file: { url: 'https://example.com/', blob: () => 0 as any }, + }), + ).toStrictEqual({ + url: `https://example.com/openai/audio/transcriptions?api-version=${apiVersion}`, + }); + }); + + test('handles text to speech', async () => { + expect( + await ( + await client.audio.speech.create({ + model: deployment, + input: '', + voice: 'alloy', + }) + ).json(), + ).toStrictEqual({ + url: `https://example.com/openai/deployments/${deployment}/audio/speech?api-version=${apiVersion}`, + }); + }); + + test('handles image generation', async () => { + expect( + await client.images.generate({ + model: deployment, + prompt: 'prompt', + }), + ).toStrictEqual({ + url: `https://example.com/openai/deployments/${deployment}/images/generations?api-version=${apiVersion}`, + }); + }); + + test('handles assistants', async () => { + expect( + await client.beta.assistants.create({ + model, + }), + ).toStrictEqual({ + url: `https://example.com/openai/assistants?api-version=${apiVersion}`, + }); + }); + + test('handles files', async () => { + expect( + await client.files.create({ + file: { url: 'https://example.com/', blob: () => 0 as any }, + purpose: 'assistants', + }), + ).toStrictEqual({ + url: `https://example.com/openai/files?api-version=${apiVersion}`, + }); + }); + + test('handles fine tuning', async () => { + expect( + await client.fineTuning.jobs.create({ + model, + training_file: '', + }), + ).toStrictEqual({ + url: `https://example.com/openai/fine_tuning/jobs?api-version=${apiVersion}`, + }); + }); + }); + }); + describe('Content-Length', () => { test('handles multi-byte characters', () => { const { req } = client.buildRequest({ path: '/foo', method: 'post', body: { value: '—' } }); From 1a4d37a974ffa8a1596ad29bbde47aab99346778 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Sat, 11 May 2024 01:06:02 -0400 Subject: [PATCH 403/725] release: 4.45.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 19 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7f5d28dff..fb1cbfe23 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.44.0" + ".": "4.45.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ecdbfdb14..149d41da9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 4.45.0 (2024-05-11) + +Full Changelog: [v4.44.0...v4.45.0](https://github.com/openai/openai-node/compare/v4.44.0...v4.45.0) + +### Features + +* **azure:** batch api ([#839](https://github.com/openai/openai-node/issues/839)) ([e279f8c](https://github.com/openai/openai-node/commit/e279f8c51aa80cb913ccb6df647407bea1f2f071)) + + +### Chores + +* **dependency:** bumped Next.js version ([#836](https://github.com/openai/openai-node/issues/836)) ([babb140](https://github.com/openai/openai-node/commit/babb1404751059bdd171b792d03fd21272dd8f8b)) +* **docs:** add SECURITY.md ([#838](https://github.com/openai/openai-node/issues/838)) ([6e556d9](https://github.com/openai/openai-node/commit/6e556d9e12341155cc13fe226ab110d63858370e)) + ## 4.44.0 (2024-05-09) Full Changelog: [v4.43.0...v4.44.0](https://github.com/openai/openai-node/compare/v4.43.0...v4.44.0) diff --git a/README.md b/README.md index 397bb2185..e81093bbe 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.44.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.45.0/mod.ts'; ``` diff --git a/package.json b/package.json index e70c0fd09..c51375344 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.44.0", + "version": "4.45.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 015d307ea..0461f0f3f 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.44.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.45.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 4ebba76ed..2ebf697cb 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.44.0'; // x-release-please-version +export const VERSION = '4.45.0'; // x-release-please-version From 5b0a67cd666733ca4ee3454f2a53beda03198954 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 13 May 2024 14:14:57 -0400 Subject: [PATCH 404/725] feat(api): add gpt-4o model (#841) --- .stats.yml | 2 +- src/resources/beta/assistants.ts | 2 ++ src/resources/beta/threads/runs/runs.ts | 8 ++++++++ src/resources/beta/threads/threads.ts | 6 ++++++ src/resources/chat/chat.ts | 2 ++ 5 files changed, 19 insertions(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index 52e87d1b5..f44b9b46a 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 64 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-084b8f68408c6b689a55200a78bcf233769bfcd8e999d9fadaeb399152b05bcd.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-47007cc1aa5bc7b74107a99b377925978a0bd376ed67bdae724e80d5d0b63d57.yml diff --git a/src/resources/beta/assistants.ts b/src/resources/beta/assistants.ts index a24cee045..4f3136446 100644 --- a/src/resources/beta/assistants.ts +++ b/src/resources/beta/assistants.ts @@ -1000,6 +1000,8 @@ export interface AssistantCreateParams { */ model: | (string & {}) + | 'gpt-4o' + | 'gpt-4o-2024-05-13' | 'gpt-4-turbo' | 'gpt-4-turbo-2024-04-09' | 'gpt-4-0125-preview' diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index d188edb2d..267c0944d 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -660,6 +660,8 @@ export interface RunCreateParamsBase { */ model?: | (string & {}) + | 'gpt-4o' + | 'gpt-4o-2024-05-13' | 'gpt-4-turbo' | 'gpt-4-turbo-2024-04-09' | 'gpt-4-0125-preview' @@ -919,6 +921,8 @@ export interface RunCreateAndPollParams { */ model?: | (string & {}) + | 'gpt-4o' + | 'gpt-4o-2024-05-13' | 'gpt-4-turbo' | 'gpt-4-turbo-2024-04-09' | 'gpt-4-0125-preview' @@ -1124,6 +1128,8 @@ export interface RunCreateAndStreamParams { */ model?: | (string & {}) + | 'gpt-4o' + | 'gpt-4o-2024-05-13' | 'gpt-4-turbo' | 'gpt-4-turbo-2024-04-09' | 'gpt-4-0125-preview' @@ -1329,6 +1335,8 @@ export interface RunStreamParams { */ model?: | (string & {}) + | 'gpt-4o' + | 'gpt-4o-2024-05-13' | 'gpt-4-turbo' | 'gpt-4-turbo-2024-04-09' | 'gpt-4-0125-preview' diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 7bd86fa50..e1fb3a2d4 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -492,6 +492,8 @@ export interface ThreadCreateAndRunParamsBase { */ model?: | (string & {}) + | 'gpt-4o' + | 'gpt-4o-2024-05-13' | 'gpt-4-turbo' | 'gpt-4-turbo-2024-04-09' | 'gpt-4-0125-preview' @@ -849,6 +851,8 @@ export interface ThreadCreateAndRunPollParams { */ model?: | (string & {}) + | 'gpt-4o' + | 'gpt-4o-2024-05-13' | 'gpt-4-turbo' | 'gpt-4-turbo-2024-04-09' | 'gpt-4-0125-preview' @@ -1178,6 +1182,8 @@ export interface ThreadCreateAndRunStreamParams { */ model?: | (string & {}) + | 'gpt-4o' + | 'gpt-4o-2024-05-13' | 'gpt-4-turbo' | 'gpt-4-turbo-2024-04-09' | 'gpt-4-0125-preview' diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index ff271e5b4..925401fe1 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -9,6 +9,8 @@ export class Chat extends APIResource { } export type ChatModel = + | 'gpt-4o' + | 'gpt-4o-2024-05-13' | 'gpt-4-turbo' | 'gpt-4-turbo-2024-04-09' | 'gpt-4-0125-preview' From 65bcdfe118356e12f567675aff4c99d8ff959b11 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 13 May 2024 14:15:18 -0400 Subject: [PATCH 405/725] release: 4.46.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index fb1cbfe23..492591f96 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.45.0" + ".": "4.46.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 149d41da9..1e35a5974 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.46.0 (2024-05-13) + +Full Changelog: [v4.45.0...v4.46.0](https://github.com/openai/openai-node/compare/v4.45.0...v4.46.0) + +### Features + +* **api:** add gpt-4o model ([#841](https://github.com/openai/openai-node/issues/841)) ([c818ed1](https://github.com/openai/openai-node/commit/c818ed139bfba81af6ca3c4eda08d52366758529)) + ## 4.45.0 (2024-05-11) Full Changelog: [v4.44.0...v4.45.0](https://github.com/openai/openai-node/compare/v4.44.0...v4.45.0) diff --git a/README.md b/README.md index e81093bbe..dd5f4c278 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.45.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.46.0/mod.ts'; ``` diff --git a/package.json b/package.json index c51375344..b2fa486f0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.45.0", + "version": "4.46.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 0461f0f3f..7203ae1fe 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.45.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.46.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 2ebf697cb..ac125a286 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.45.0'; // x-release-please-version +export const VERSION = '4.46.0'; // x-release-please-version From c17fcb789f8b40dd8360c2680a34e96dbde8a97f Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 13 May 2024 15:01:38 -0400 Subject: [PATCH 406/725] refactor: change import paths to be relative (#843) --- src/index.ts | 4 +-- src/resources/audio/audio.ts | 8 +++--- src/resources/audio/speech.ts | 8 +++--- src/resources/audio/transcriptions.ts | 8 +++--- src/resources/audio/translations.ts | 8 +++--- src/resources/batches.ts | 10 +++---- src/resources/beta/assistants.ts | 20 ++++++------- src/resources/beta/beta.ts | 10 +++---- src/resources/beta/chat/chat.ts | 4 +-- src/resources/beta/chat/completions.ts | 28 +++++++++---------- src/resources/beta/threads/messages.ts | 12 ++++---- src/resources/beta/threads/runs/runs.ts | 28 +++++++++---------- src/resources/beta/threads/runs/steps.ts | 10 +++---- src/resources/beta/threads/threads.ts | 20 ++++++------- .../beta/vector-stores/file-batches.ts | 20 ++++++------- src/resources/beta/vector-stores/files.ts | 12 ++++---- .../beta/vector-stores/vector-stores.ts | 14 +++++----- src/resources/chat/chat.ts | 6 ++-- src/resources/chat/completions.ts | 16 +++++------ src/resources/completions.ts | 12 ++++---- src/resources/embeddings.ts | 6 ++-- src/resources/files.ts | 18 ++++++------ src/resources/fine-tuning/fine-tuning.ts | 4 +-- src/resources/fine-tuning/jobs/checkpoints.ts | 10 +++---- src/resources/fine-tuning/jobs/jobs.ts | 12 ++++---- src/resources/images.ts | 8 +++--- src/resources/models.ts | 8 +++--- src/resources/moderations.ts | 6 ++-- 28 files changed, 165 insertions(+), 165 deletions(-) diff --git a/src/index.ts b/src/index.ts index f5c8a0fe1..854536161 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4,8 +4,8 @@ import * as Core from './core'; import * as Errors from './error'; import { type Agent, type RequestInit } from './_shims/index'; import * as Uploads from './uploads'; -import * as Pagination from 'openai/pagination'; -import * as API from 'openai/resources/index'; +import * as Pagination from './pagination'; +import * as API from './resources/index'; export interface ClientOptions { /** diff --git a/src/resources/audio/audio.ts b/src/resources/audio/audio.ts index f3fcba4c3..a89bf0102 100644 --- a/src/resources/audio/audio.ts +++ b/src/resources/audio/audio.ts @@ -1,9 +1,9 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import { APIResource } from 'openai/resource'; -import * as SpeechAPI from 'openai/resources/audio/speech'; -import * as TranscriptionsAPI from 'openai/resources/audio/transcriptions'; -import * as TranslationsAPI from 'openai/resources/audio/translations'; +import { APIResource } from '../../resource'; +import * as SpeechAPI from './speech'; +import * as TranscriptionsAPI from './transcriptions'; +import * as TranslationsAPI from './translations'; export class Audio extends APIResource { transcriptions: TranscriptionsAPI.Transcriptions = new TranscriptionsAPI.Transcriptions(this._client); diff --git a/src/resources/audio/speech.ts b/src/resources/audio/speech.ts index 4b83bae3e..bcfbc80cc 100644 --- a/src/resources/audio/speech.ts +++ b/src/resources/audio/speech.ts @@ -1,9 +1,9 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import { type Response } from 'openai/_shims/index'; -import * as SpeechAPI from 'openai/resources/audio/speech'; +import * as Core from '../../core'; +import { APIResource } from '../../resource'; +import { type Response } from '../../_shims/index'; +import * as SpeechAPI from './speech'; export class Speech extends APIResource { /** diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index f01e8556d..bbffce4ed 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -1,9 +1,9 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import * as TranscriptionsAPI from 'openai/resources/audio/transcriptions'; -import { type Uploadable, multipartFormRequestOptions } from 'openai/core'; +import * as Core from '../../core'; +import { APIResource } from '../../resource'; +import * as TranscriptionsAPI from './transcriptions'; +import { type Uploadable, multipartFormRequestOptions } from '../../core'; export class Transcriptions extends APIResource { /** diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index 234933236..890c59d55 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -1,9 +1,9 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import * as TranslationsAPI from 'openai/resources/audio/translations'; -import { type Uploadable, multipartFormRequestOptions } from 'openai/core'; +import * as Core from '../../core'; +import { APIResource } from '../../resource'; +import * as TranslationsAPI from './translations'; +import { type Uploadable, multipartFormRequestOptions } from '../../core'; export class Translations extends APIResource { /** diff --git a/src/resources/batches.ts b/src/resources/batches.ts index 2f6af03e6..ce04dd57b 100644 --- a/src/resources/batches.ts +++ b/src/resources/batches.ts @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import { isRequestOptions } from 'openai/core'; -import * as BatchesAPI from 'openai/resources/batches'; -import { CursorPage, type CursorPageParams } from 'openai/pagination'; +import * as Core from '../core'; +import { APIResource } from '../resource'; +import { isRequestOptions } from '../core'; +import * as BatchesAPI from './batches'; +import { CursorPage, type CursorPageParams } from '../pagination'; export class Batches extends APIResource { /** diff --git a/src/resources/beta/assistants.ts b/src/resources/beta/assistants.ts index 4f3136446..719054365 100644 --- a/src/resources/beta/assistants.ts +++ b/src/resources/beta/assistants.ts @@ -1,15 +1,15 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import { isRequestOptions } from 'openai/core'; -import * as AssistantsAPI from 'openai/resources/beta/assistants'; -import * as Shared from 'openai/resources/shared'; -import * as MessagesAPI from 'openai/resources/beta/threads/messages'; -import * as ThreadsAPI from 'openai/resources/beta/threads/threads'; -import * as RunsAPI from 'openai/resources/beta/threads/runs/runs'; -import * as StepsAPI from 'openai/resources/beta/threads/runs/steps'; -import { CursorPage, type CursorPageParams } from 'openai/pagination'; +import * as Core from '../../core'; +import { APIResource } from '../../resource'; +import { isRequestOptions } from '../../core'; +import * as AssistantsAPI from './assistants'; +import * as Shared from '../shared'; +import * as MessagesAPI from './threads/messages'; +import * as ThreadsAPI from './threads/threads'; +import * as RunsAPI from './threads/runs/runs'; +import * as StepsAPI from './threads/runs/steps'; +import { CursorPage, type CursorPageParams } from '../../pagination'; export class Assistants extends APIResource { /** diff --git a/src/resources/beta/beta.ts b/src/resources/beta/beta.ts index ff79d5242..cefe66824 100644 --- a/src/resources/beta/beta.ts +++ b/src/resources/beta/beta.ts @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import { APIResource } from 'openai/resource'; -import * as AssistantsAPI from 'openai/resources/beta/assistants'; -import * as ChatAPI from 'openai/resources/beta/chat/chat'; -import * as ThreadsAPI from 'openai/resources/beta/threads/threads'; -import * as VectorStoresAPI from 'openai/resources/beta/vector-stores/vector-stores'; +import { APIResource } from '../../resource'; +import * as AssistantsAPI from './assistants'; +import * as ChatAPI from './chat/chat'; +import * as ThreadsAPI from './threads/threads'; +import * as VectorStoresAPI from './vector-stores/vector-stores'; export class Beta extends APIResource { vectorStores: VectorStoresAPI.VectorStores = new VectorStoresAPI.VectorStores(this._client); diff --git a/src/resources/beta/chat/chat.ts b/src/resources/beta/chat/chat.ts index 2b4a7a404..110ae46cb 100644 --- a/src/resources/beta/chat/chat.ts +++ b/src/resources/beta/chat/chat.ts @@ -1,7 +1,7 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import { APIResource } from 'openai/resource'; -import * as CompletionsAPI from 'openai/resources/beta/chat/completions'; +import { APIResource } from '../../../resource'; +import * as CompletionsAPI from './completions'; export class Chat extends APIResource { completions: CompletionsAPI.Completions = new CompletionsAPI.Completions(this._client); diff --git a/src/resources/beta/chat/completions.ts b/src/resources/beta/chat/completions.ts index 95fd0ac79..e002b6344 100644 --- a/src/resources/beta/chat/completions.ts +++ b/src/resources/beta/chat/completions.ts @@ -1,18 +1,18 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import { ChatCompletionRunner, ChatCompletionFunctionRunnerParams } from 'openai/lib/ChatCompletionRunner'; -export { ChatCompletionRunner, ChatCompletionFunctionRunnerParams } from 'openai/lib/ChatCompletionRunner'; +import * as Core from '../../../core'; +import { APIResource } from '../../../resource'; +import { ChatCompletionRunner, ChatCompletionFunctionRunnerParams } from '../../../lib/ChatCompletionRunner'; +export { ChatCompletionRunner, ChatCompletionFunctionRunnerParams } from '../../../lib/ChatCompletionRunner'; import { ChatCompletionStreamingRunner, ChatCompletionStreamingFunctionRunnerParams, -} from 'openai/lib/ChatCompletionStreamingRunner'; +} from '../../../lib/ChatCompletionStreamingRunner'; export { ChatCompletionStreamingRunner, ChatCompletionStreamingFunctionRunnerParams, -} from 'openai/lib/ChatCompletionStreamingRunner'; -import { BaseFunctionsArgs } from 'openai/lib/RunnableFunction'; +} from '../../../lib/ChatCompletionStreamingRunner'; +import { BaseFunctionsArgs } from '../../../lib/RunnableFunction'; export { RunnableFunction, RunnableFunctions, @@ -20,13 +20,13 @@ export { RunnableFunctionWithoutParse, ParsingFunction, ParsingToolFunction, -} from 'openai/lib/RunnableFunction'; -import { ChatCompletionToolRunnerParams } from 'openai/lib/ChatCompletionRunner'; -export { ChatCompletionToolRunnerParams } from 'openai/lib/ChatCompletionRunner'; -import { ChatCompletionStreamingToolRunnerParams } from 'openai/lib/ChatCompletionStreamingRunner'; -export { ChatCompletionStreamingToolRunnerParams } from 'openai/lib/ChatCompletionStreamingRunner'; -import { ChatCompletionStream, type ChatCompletionStreamParams } from 'openai/lib/ChatCompletionStream'; -export { ChatCompletionStream, type ChatCompletionStreamParams } from 'openai/lib/ChatCompletionStream'; +} from '../../../lib/RunnableFunction'; +import { ChatCompletionToolRunnerParams } from '../../../lib/ChatCompletionRunner'; +export { ChatCompletionToolRunnerParams } from '../../../lib/ChatCompletionRunner'; +import { ChatCompletionStreamingToolRunnerParams } from '../../../lib/ChatCompletionStreamingRunner'; +export { ChatCompletionStreamingToolRunnerParams } from '../../../lib/ChatCompletionStreamingRunner'; +import { ChatCompletionStream, type ChatCompletionStreamParams } from '../../../lib/ChatCompletionStream'; +export { ChatCompletionStream, type ChatCompletionStreamParams } from '../../../lib/ChatCompletionStream'; export class Completions extends APIResource { /** diff --git a/src/resources/beta/threads/messages.ts b/src/resources/beta/threads/messages.ts index a1f90e1e4..a5307edbe 100644 --- a/src/resources/beta/threads/messages.ts +++ b/src/resources/beta/threads/messages.ts @@ -1,11 +1,11 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import { isRequestOptions } from 'openai/core'; -import * as MessagesAPI from 'openai/resources/beta/threads/messages'; -import * as AssistantsAPI from 'openai/resources/beta/assistants'; -import { CursorPage, type CursorPageParams } from 'openai/pagination'; +import * as Core from '../../../core'; +import { APIResource } from '../../../resource'; +import { isRequestOptions } from '../../../core'; +import * as MessagesAPI from './messages'; +import * as AssistantsAPI from '../assistants'; +import { CursorPage, type CursorPageParams } from '../../../pagination'; export class Messages extends APIResource { /** diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 267c0944d..715750604 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -1,19 +1,19 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIPromise } from 'openai/core'; -import { APIResource } from 'openai/resource'; -import { isRequestOptions } from 'openai/core'; -import { AssistantStream, RunCreateParamsBaseStream } from 'openai/lib/AssistantStream'; -import { sleep } from 'openai/core'; -import { RunSubmitToolOutputsParamsStream } from 'openai/lib/AssistantStream'; -import * as RunsAPI from 'openai/resources/beta/threads/runs/runs'; -import * as AssistantsAPI from 'openai/resources/beta/assistants'; -import * as MessagesAPI from 'openai/resources/beta/threads/messages'; -import * as ThreadsAPI from 'openai/resources/beta/threads/threads'; -import * as StepsAPI from 'openai/resources/beta/threads/runs/steps'; -import { CursorPage, type CursorPageParams } from 'openai/pagination'; -import { Stream } from 'openai/streaming'; +import * as Core from '../../../../core'; +import { APIPromise } from '../../../../core'; +import { APIResource } from '../../../../resource'; +import { isRequestOptions } from '../../../../core'; +import { AssistantStream, RunCreateParamsBaseStream } from '../../../../lib/AssistantStream'; +import { sleep } from '../../../../core'; +import { RunSubmitToolOutputsParamsStream } from '../../../../lib/AssistantStream'; +import * as RunsAPI from './runs'; +import * as AssistantsAPI from '../../assistants'; +import * as MessagesAPI from '../messages'; +import * as ThreadsAPI from '../threads'; +import * as StepsAPI from './steps'; +import { CursorPage, type CursorPageParams } from '../../../../pagination'; +import { Stream } from '../../../../streaming'; export class Runs extends APIResource { steps: StepsAPI.Steps = new StepsAPI.Steps(this._client); diff --git a/src/resources/beta/threads/runs/steps.ts b/src/resources/beta/threads/runs/steps.ts index 203741f4b..0cbb60ca4 100644 --- a/src/resources/beta/threads/runs/steps.ts +++ b/src/resources/beta/threads/runs/steps.ts @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import { isRequestOptions } from 'openai/core'; -import * as StepsAPI from 'openai/resources/beta/threads/runs/steps'; -import { CursorPage, type CursorPageParams } from 'openai/pagination'; +import * as Core from '../../../../core'; +import { APIResource } from '../../../../resource'; +import { isRequestOptions } from '../../../../core'; +import * as StepsAPI from './steps'; +import { CursorPage, type CursorPageParams } from '../../../../pagination'; export class Steps extends APIResource { /** diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index e1fb3a2d4..662dcd09f 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -1,15 +1,15 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIPromise } from 'openai/core'; -import { APIResource } from 'openai/resource'; -import { isRequestOptions } from 'openai/core'; -import { AssistantStream, ThreadCreateAndRunParamsBaseStream } from 'openai/lib/AssistantStream'; -import * as ThreadsAPI from 'openai/resources/beta/threads/threads'; -import * as AssistantsAPI from 'openai/resources/beta/assistants'; -import * as MessagesAPI from 'openai/resources/beta/threads/messages'; -import * as RunsAPI from 'openai/resources/beta/threads/runs/runs'; -import { Stream } from 'openai/streaming'; +import * as Core from '../../../core'; +import { APIPromise } from '../../../core'; +import { APIResource } from '../../../resource'; +import { isRequestOptions } from '../../../core'; +import { AssistantStream, ThreadCreateAndRunParamsBaseStream } from '../../../lib/AssistantStream'; +import * as ThreadsAPI from './threads'; +import * as AssistantsAPI from '../assistants'; +import * as MessagesAPI from './messages'; +import * as RunsAPI from './runs/runs'; +import { Stream } from '../../../streaming'; export class Threads extends APIResource { runs: RunsAPI.Runs = new RunsAPI.Runs(this._client); diff --git a/src/resources/beta/vector-stores/file-batches.ts b/src/resources/beta/vector-stores/file-batches.ts index 3ccdd0108..94f185c0f 100644 --- a/src/resources/beta/vector-stores/file-batches.ts +++ b/src/resources/beta/vector-stores/file-batches.ts @@ -1,15 +1,15 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import { isRequestOptions } from 'openai/core'; -import { sleep } from 'openai/core'; -import { Uploadable } from 'openai/core'; -import { allSettledWithThrow } from 'openai/lib/Util'; -import * as FileBatchesAPI from 'openai/resources/beta/vector-stores/file-batches'; -import * as FilesAPI from 'openai/resources/beta/vector-stores/files'; -import { VectorStoreFilesPage } from 'openai/resources/beta/vector-stores/files'; -import { type CursorPageParams } from 'openai/pagination'; +import * as Core from '../../../core'; +import { APIResource } from '../../../resource'; +import { isRequestOptions } from '../../../core'; +import { sleep } from '../../../core'; +import { Uploadable } from '../../../core'; +import { allSettledWithThrow } from '../../../lib/Util'; +import * as FileBatchesAPI from './file-batches'; +import * as FilesAPI from './files'; +import { VectorStoreFilesPage } from './files'; +import { type CursorPageParams } from '../../../pagination'; export class FileBatches extends APIResource { /** diff --git a/src/resources/beta/vector-stores/files.ts b/src/resources/beta/vector-stores/files.ts index ff5094065..0082ee5fa 100644 --- a/src/resources/beta/vector-stores/files.ts +++ b/src/resources/beta/vector-stores/files.ts @@ -1,11 +1,11 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import { isRequestOptions } from 'openai/core'; -import { sleep, Uploadable } from 'openai/core'; -import * as FilesAPI from 'openai/resources/beta/vector-stores/files'; -import { CursorPage, type CursorPageParams } from 'openai/pagination'; +import * as Core from '../../../core'; +import { APIResource } from '../../../resource'; +import { isRequestOptions } from '../../../core'; +import { sleep, Uploadable } from '../../../core'; +import * as FilesAPI from './files'; +import { CursorPage, type CursorPageParams } from '../../../pagination'; export class Files extends APIResource { /** diff --git a/src/resources/beta/vector-stores/vector-stores.ts b/src/resources/beta/vector-stores/vector-stores.ts index 0409f3af7..3f5df1fc5 100644 --- a/src/resources/beta/vector-stores/vector-stores.ts +++ b/src/resources/beta/vector-stores/vector-stores.ts @@ -1,12 +1,12 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import { isRequestOptions } from 'openai/core'; -import * as VectorStoresAPI from 'openai/resources/beta/vector-stores/vector-stores'; -import * as FileBatchesAPI from 'openai/resources/beta/vector-stores/file-batches'; -import * as FilesAPI from 'openai/resources/beta/vector-stores/files'; -import { CursorPage, type CursorPageParams } from 'openai/pagination'; +import * as Core from '../../../core'; +import { APIResource } from '../../../resource'; +import { isRequestOptions } from '../../../core'; +import * as VectorStoresAPI from './vector-stores'; +import * as FileBatchesAPI from './file-batches'; +import * as FilesAPI from './files'; +import { CursorPage, type CursorPageParams } from '../../../pagination'; export class VectorStores extends APIResource { files: FilesAPI.Files = new FilesAPI.Files(this._client); diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 925401fe1..da4e90d42 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -1,8 +1,8 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import { APIResource } from 'openai/resource'; -import * as ChatAPI from 'openai/resources/chat/chat'; -import * as CompletionsAPI from 'openai/resources/chat/completions'; +import { APIResource } from '../../resource'; +import * as ChatAPI from './chat'; +import * as CompletionsAPI from './completions'; export class Chat extends APIResource { completions: CompletionsAPI.Completions = new CompletionsAPI.Completions(this._client); diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 1098499b9..07b75debe 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -1,13 +1,13 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIPromise } from 'openai/core'; -import { APIResource } from 'openai/resource'; -import * as ChatCompletionsAPI from 'openai/resources/chat/completions'; -import * as CompletionsAPI from 'openai/resources/completions'; -import * as Shared from 'openai/resources/shared'; -import * as ChatAPI from 'openai/resources/chat/chat'; -import { Stream } from 'openai/streaming'; +import * as Core from '../../core'; +import { APIPromise } from '../../core'; +import { APIResource } from '../../resource'; +import * as ChatCompletionsAPI from './completions'; +import * as CompletionsAPI from '../completions'; +import * as Shared from '../shared'; +import * as ChatAPI from './chat'; +import { Stream } from '../../streaming'; export class Completions extends APIResource { /** diff --git a/src/resources/completions.ts b/src/resources/completions.ts index c37c6d802..26bf5ca0d 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -1,11 +1,11 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIPromise } from 'openai/core'; -import { APIResource } from 'openai/resource'; -import * as CompletionsAPI from 'openai/resources/completions'; -import * as ChatCompletionsAPI from 'openai/resources/chat/completions'; -import { Stream } from 'openai/streaming'; +import * as Core from '../core'; +import { APIPromise } from '../core'; +import { APIResource } from '../resource'; +import * as CompletionsAPI from './completions'; +import * as ChatCompletionsAPI from './chat/completions'; +import { Stream } from '../streaming'; export class Completions extends APIResource { /** diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index 208ceb240..28c954711 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -1,8 +1,8 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import * as EmbeddingsAPI from 'openai/resources/embeddings'; +import * as Core from '../core'; +import { APIResource } from '../resource'; +import * as EmbeddingsAPI from './embeddings'; export class Embeddings extends APIResource { /** diff --git a/src/resources/files.ts b/src/resources/files.ts index 5d284a071..4c4030dbe 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -1,14 +1,14 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import { isRequestOptions } from 'openai/core'; -import { type Response } from 'openai/_shims/index'; -import { sleep } from 'openai/core'; -import { APIConnectionTimeoutError } from 'openai/error'; -import * as FilesAPI from 'openai/resources/files'; -import { type Uploadable, multipartFormRequestOptions } from 'openai/core'; -import { Page } from 'openai/pagination'; +import * as Core from '../core'; +import { APIResource } from '../resource'; +import { isRequestOptions } from '../core'; +import { type Response } from '../_shims/index'; +import { sleep } from '../core'; +import { APIConnectionTimeoutError } from '../error'; +import * as FilesAPI from './files'; +import { type Uploadable, multipartFormRequestOptions } from '../core'; +import { Page } from '../pagination'; export class Files extends APIResource { /** diff --git a/src/resources/fine-tuning/fine-tuning.ts b/src/resources/fine-tuning/fine-tuning.ts index c8d688b0c..b1ba34ecf 100644 --- a/src/resources/fine-tuning/fine-tuning.ts +++ b/src/resources/fine-tuning/fine-tuning.ts @@ -1,7 +1,7 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import { APIResource } from 'openai/resource'; -import * as JobsAPI from 'openai/resources/fine-tuning/jobs/jobs'; +import { APIResource } from '../../resource'; +import * as JobsAPI from './jobs/jobs'; export class FineTuning extends APIResource { jobs: JobsAPI.Jobs = new JobsAPI.Jobs(this._client); diff --git a/src/resources/fine-tuning/jobs/checkpoints.ts b/src/resources/fine-tuning/jobs/checkpoints.ts index 468cb3001..0e3cdeb79 100644 --- a/src/resources/fine-tuning/jobs/checkpoints.ts +++ b/src/resources/fine-tuning/jobs/checkpoints.ts @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import { isRequestOptions } from 'openai/core'; -import * as CheckpointsAPI from 'openai/resources/fine-tuning/jobs/checkpoints'; -import { CursorPage, type CursorPageParams } from 'openai/pagination'; +import * as Core from '../../../core'; +import { APIResource } from '../../../resource'; +import { isRequestOptions } from '../../../core'; +import * as CheckpointsAPI from './checkpoints'; +import { CursorPage, type CursorPageParams } from '../../../pagination'; export class Checkpoints extends APIResource { /** diff --git a/src/resources/fine-tuning/jobs/jobs.ts b/src/resources/fine-tuning/jobs/jobs.ts index 874d30047..403e0069f 100644 --- a/src/resources/fine-tuning/jobs/jobs.ts +++ b/src/resources/fine-tuning/jobs/jobs.ts @@ -1,11 +1,11 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import { isRequestOptions } from 'openai/core'; -import * as JobsAPI from 'openai/resources/fine-tuning/jobs/jobs'; -import * as CheckpointsAPI from 'openai/resources/fine-tuning/jobs/checkpoints'; -import { CursorPage, type CursorPageParams } from 'openai/pagination'; +import * as Core from '../../../core'; +import { APIResource } from '../../../resource'; +import { isRequestOptions } from '../../../core'; +import * as JobsAPI from './jobs'; +import * as CheckpointsAPI from './checkpoints'; +import { CursorPage, type CursorPageParams } from '../../../pagination'; export class Jobs extends APIResource { checkpoints: CheckpointsAPI.Checkpoints = new CheckpointsAPI.Checkpoints(this._client); diff --git a/src/resources/images.ts b/src/resources/images.ts index 95f0b6ff2..337909578 100644 --- a/src/resources/images.ts +++ b/src/resources/images.ts @@ -1,9 +1,9 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import * as ImagesAPI from 'openai/resources/images'; -import { type Uploadable, multipartFormRequestOptions } from 'openai/core'; +import * as Core from '../core'; +import { APIResource } from '../resource'; +import * as ImagesAPI from './images'; +import { type Uploadable, multipartFormRequestOptions } from '../core'; export class Images extends APIResource { /** diff --git a/src/resources/models.ts b/src/resources/models.ts index 4d5bc57e9..1d94c6c55 100644 --- a/src/resources/models.ts +++ b/src/resources/models.ts @@ -1,9 +1,9 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import * as ModelsAPI from 'openai/resources/models'; -import { Page } from 'openai/pagination'; +import * as Core from '../core'; +import { APIResource } from '../resource'; +import * as ModelsAPI from './models'; +import { Page } from '../pagination'; export class Models extends APIResource { /** diff --git a/src/resources/moderations.ts b/src/resources/moderations.ts index b9b9d7fc6..c018f65e7 100644 --- a/src/resources/moderations.ts +++ b/src/resources/moderations.ts @@ -1,8 +1,8 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from 'openai/core'; -import { APIResource } from 'openai/resource'; -import * as ModerationsAPI from 'openai/resources/moderations'; +import * as Core from '../core'; +import { APIResource } from '../resource'; +import * as ModerationsAPI from './moderations'; export class Moderations extends APIResource { /** From 3f4b74387c0f1619b4f19e47e89bc1cdf403676b Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 13 May 2024 15:01:58 -0400 Subject: [PATCH 407/725] release: 4.46.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 492591f96..561a60e0a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.46.0" + ".": "4.46.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e35a5974..a9ac6efcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.46.1 (2024-05-13) + +Full Changelog: [v4.46.0...v4.46.1](https://github.com/openai/openai-node/compare/v4.46.0...v4.46.1) + +### Refactors + +* change import paths to be relative ([#843](https://github.com/openai/openai-node/issues/843)) ([7913574](https://github.com/openai/openai-node/commit/7913574bdb6fcbcf68e56e8def351add6c43310a)) + ## 4.46.0 (2024-05-13) Full Changelog: [v4.45.0...v4.46.0](https://github.com/openai/openai-node/compare/v4.45.0...v4.46.0) diff --git a/README.md b/README.md index dd5f4c278..5d0ac940e 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.46.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.46.1/mod.ts'; ``` diff --git a/package.json b/package.json index b2fa486f0..544c8b346 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.46.0", + "version": "4.46.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 7203ae1fe..9ba19ef80 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.46.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.46.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index ac125a286..c207da397 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.46.0'; // x-release-please-version +export const VERSION = '4.46.1'; // x-release-please-version From 8701aa6d5e0c8f9c4c6c5b6f748cf1947c922426 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 14 May 2024 07:29:11 -0400 Subject: [PATCH 408/725] feat(api): add incomplete state (#846) --- .stats.yml | 2 +- src/resources/batches.ts | 9 +++-- src/resources/beta/assistants.ts | 15 ++++---- src/resources/beta/threads/runs/runs.ts | 35 +++++++++++-------- src/resources/beta/threads/threads.ts | 20 ++++++----- .../beta/vector-stores/file-batches.ts | 1 + src/resources/files.ts | 18 ++++++---- 7 files changed, 61 insertions(+), 39 deletions(-) diff --git a/.stats.yml b/.stats.yml index f44b9b46a..2e5c705a0 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 64 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-47007cc1aa5bc7b74107a99b377925978a0bd376ed67bdae724e80d5d0b63d57.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-363dd904e5d6e65b3a323fc88e6b502fb23a6aa319be219273e3ee47c7530993.yml diff --git a/src/resources/batches.ts b/src/resources/batches.ts index ce04dd57b..399c931e1 100644 --- a/src/resources/batches.ts +++ b/src/resources/batches.ts @@ -215,9 +215,11 @@ export interface BatchCreateParams { /** * The endpoint to be used for all requests in the batch. Currently - * `/v1/chat/completions` and `/v1/embeddings` are supported. + * `/v1/chat/completions`, `/v1/embeddings`, and `/v1/completions` are supported. + * Note that `/v1/embeddings` batches are also restricted to a maximum of 50,000 + * embedding inputs across all requests in the batch. */ - endpoint: '/v1/chat/completions' | '/v1/embeddings'; + endpoint: '/v1/chat/completions' | '/v1/embeddings' | '/v1/completions'; /** * The ID of an uploaded file that contains requests for the new batch. @@ -227,7 +229,8 @@ export interface BatchCreateParams { * * Your input file must be formatted as a * [JSONL file](https://platform.openai.com/docs/api-reference/batch/requestInput), - * and must be uploaded with the purpose `batch`. + * and must be uploaded with the purpose `batch`. The file can contain up to 50,000 + * requests, and can be up to 100 MB in size. */ input_file_id: string; diff --git a/src/resources/beta/assistants.ts b/src/resources/beta/assistants.ts index 719054365..120e63773 100644 --- a/src/resources/beta/assistants.ts +++ b/src/resources/beta/assistants.ts @@ -144,8 +144,9 @@ export interface Assistant { /** * Specifies the format that the model must output. Compatible with - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. + * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), + * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -1047,8 +1048,9 @@ export interface AssistantCreateParams { /** * Specifies the format that the model must output. Compatible with - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. + * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), + * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -1193,8 +1195,9 @@ export interface AssistantUpdateParams { /** * Specifies the format that the model must output. Compatible with - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. + * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), + * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 715750604..9e44ccfe5 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -176,6 +176,7 @@ export class Runs extends APIResource { break; //We return the run in any terminal state. case 'requires_action': + case 'incomplete': case 'cancelled': case 'completed': case 'failed': @@ -409,8 +410,9 @@ export interface Run { /** * Specifies the format that the model must output. Compatible with - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. + * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), + * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -432,8 +434,8 @@ export interface Run { /** * The status of the run, which can be either `queued`, `in_progress`, - * `requires_action`, `cancelling`, `cancelled`, `failed`, `completed`, or - * `expired`. + * `requires_action`, `cancelling`, `cancelled`, `failed`, `completed`, + * `incomplete`, or `expired`. */ status: RunStatus; @@ -584,8 +586,8 @@ export namespace Run { /** * The status of the run, which can be either `queued`, `in_progress`, - * `requires_action`, `cancelling`, `cancelled`, `failed`, `completed`, or - * `expired`. + * `requires_action`, `cancelling`, `cancelled`, `failed`, `completed`, + * `incomplete`, or `expired`. */ export type RunStatus = | 'queued' @@ -595,6 +597,7 @@ export type RunStatus = | 'cancelled' | 'failed' | 'completed' + | 'incomplete' | 'expired'; export type RunCreateParams = RunCreateParamsNonStreaming | RunCreateParamsStreaming; @@ -684,8 +687,9 @@ export interface RunCreateParamsBase { /** * Specifies the format that the model must output. Compatible with - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. + * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), + * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -945,8 +949,9 @@ export interface RunCreateAndPollParams { /** * Specifies the format that the model must output. Compatible with - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. + * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), + * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -1152,8 +1157,9 @@ export interface RunCreateAndStreamParams { /** * Specifies the format that the model must output. Compatible with - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. + * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), + * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -1359,8 +1365,9 @@ export interface RunStreamParams { /** * Specifies the format that the model must output. Compatible with - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. + * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), + * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 662dcd09f..63dd815e7 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -130,8 +130,9 @@ export interface AssistantResponseFormat { /** * Specifies the format that the model must output. Compatible with - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. + * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), + * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -516,8 +517,9 @@ export interface ThreadCreateAndRunParamsBase { /** * Specifies the format that the model must output. Compatible with - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. + * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), + * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -875,8 +877,9 @@ export interface ThreadCreateAndRunPollParams { /** * Specifies the format that the model must output. Compatible with - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. + * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), + * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. @@ -1206,8 +1209,9 @@ export interface ThreadCreateAndRunStreamParams { /** * Specifies the format that the model must output. Compatible with - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. + * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), + * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), + * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. diff --git a/src/resources/beta/vector-stores/file-batches.ts b/src/resources/beta/vector-stores/file-batches.ts index 94f185c0f..65738cca6 100644 --- a/src/resources/beta/vector-stores/file-batches.ts +++ b/src/resources/beta/vector-stores/file-batches.ts @@ -138,6 +138,7 @@ export class FileBatches extends APIResource { await sleep(sleepInterval); break; case 'failed': + case 'cancelled': case 'completed': return batch; } diff --git a/src/resources/files.ts b/src/resources/files.ts index 4c4030dbe..de5067d04 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -12,14 +12,18 @@ import { Page } from '../pagination'; export class Files extends APIResource { /** - * Upload a file that can be used across various endpoints. The size of all the - * files uploaded by one organization can be up to 100 GB. + * Upload a file that can be used across various endpoints. Individual files can be + * up to 512 MB, and the size of all files uploaded by one organization can be up + * to 100 GB. * - * The size of individual files can be a maximum of 512 MB or 2 million tokens for - * Assistants. See the - * [Assistants Tools guide](https://platform.openai.com/docs/assistants/tools) to - * learn more about the types of files supported. The Fine-tuning API only supports - * `.jsonl` files. + * The Assistants API supports files up to 2 million tokens and of specific file + * types. See the + * [Assistants Tools guide](https://platform.openai.com/docs/assistants/tools) for + * details. + * + * The Fine-tuning API only supports `.jsonl` files. + * + * The Batch API only supports `.jsonl` files up to 100 MB in size. * * Please [contact us](https://help.openai.com/) if you need to increase these * storage limits. From 2b1bc88639f327053a16fae0d2a5edbd006dd6a3 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 14 May 2024 07:29:32 -0400 Subject: [PATCH 409/725] release: 4.47.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 561a60e0a..dfd38477d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.46.1" + ".": "4.47.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a9ac6efcf..af4227fdc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.47.0 (2024-05-14) + +Full Changelog: [v4.46.1...v4.47.0](https://github.com/openai/openai-node/compare/v4.46.1...v4.47.0) + +### Features + +* **api:** add incomplete state ([#846](https://github.com/openai/openai-node/issues/846)) ([5f663a1](https://github.com/openai/openai-node/commit/5f663a167361b905c6d0c1242e8a78037a7e4a57)) + ## 4.46.1 (2024-05-13) Full Changelog: [v4.46.0...v4.46.1](https://github.com/openai/openai-node/compare/v4.46.0...v4.46.1) diff --git a/README.md b/README.md index 5d0ac940e..f88c4929d 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.46.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.47.0/mod.ts'; ``` diff --git a/package.json b/package.json index 544c8b346..03f3e2188 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.46.1", + "version": "4.47.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 9ba19ef80..427a93c47 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.46.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.47.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index c207da397..1fa9d58ab 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.46.1'; // x-release-please-version +export const VERSION = '4.47.0'; // x-release-please-version From 139e690546775b3568934dd990dd329fce2fbc2f Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 14 May 2024 10:46:22 -0400 Subject: [PATCH 410/725] chore(internal): add slightly better logging to scripts (#848) --- .github/workflows/ci.yml | 6 ++---- scripts/format | 8 ++++++++ scripts/lint | 1 + scripts/test | 1 - 4 files changed, 11 insertions(+), 5 deletions(-) create mode 100755 scripts/format diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d2a8037a3..a55376f66 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,12 +22,10 @@ jobs: node-version: '18' - name: Install dependencies - run: | - yarn install + run: yarn install - name: Check types - run: | - yarn build + run: ./scripts/lint test: name: test runs-on: ubuntu-latest diff --git a/scripts/format b/scripts/format new file mode 100755 index 000000000..d297e762f --- /dev/null +++ b/scripts/format @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +set -e + +cd "$(dirname "$0")/.." + +echo "==> Running eslint --fix" +./node_modules/.bin/eslint --fix --ext ts,js . diff --git a/scripts/lint b/scripts/lint index 4f05d6609..6b0e5dc3e 100755 --- a/scripts/lint +++ b/scripts/lint @@ -4,4 +4,5 @@ set -e cd "$(dirname "$0")/.." +echo "==> Running eslint" ./node_modules/.bin/eslint --ext ts,js . diff --git a/scripts/test b/scripts/test index b62a7cccd..2049e31b0 100755 --- a/scripts/test +++ b/scripts/test @@ -52,6 +52,5 @@ else echo fi -# Run tests echo "==> Running tests" ./node_modules/.bin/jest "$@" From 7376041eb470b6d8db0229d4336eda5a658b66e0 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 14 May 2024 10:46:43 -0400 Subject: [PATCH 411/725] release: 4.47.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index dfd38477d..9516f2682 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.47.0" + ".": "4.47.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index af4227fdc..f239c2921 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.47.1 (2024-05-14) + +Full Changelog: [v4.47.0...v4.47.1](https://github.com/openai/openai-node/compare/v4.47.0...v4.47.1) + +### Chores + +* **internal:** add slightly better logging to scripts ([#848](https://github.com/openai/openai-node/issues/848)) ([139e690](https://github.com/openai/openai-node/commit/139e690546775b3568934dd990dd329fce2fbc2f)) + ## 4.47.0 (2024-05-14) Full Changelog: [v4.46.1...v4.47.0](https://github.com/openai/openai-node/compare/v4.46.1...v4.47.0) diff --git a/README.md b/README.md index f88c4929d..693654151 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.47.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.47.1/mod.ts'; ``` diff --git a/package.json b/package.json index 03f3e2188..9c385f41c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.47.0", + "version": "4.47.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 427a93c47..cd3be37fa 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.47.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.47.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 1fa9d58ab..710b8f27e 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.47.0'; // x-release-please-version +export const VERSION = '4.47.1'; // x-release-please-version From 5828fc0c991302badc8d31973ed77dfe7e2be339 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Tue, 28 May 2024 20:24:50 +0100 Subject: [PATCH 412/725] docs(readme): add bundle size badge (#869) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 693654151..6a2239f1f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # OpenAI Node API Library -[![NPM version](https://img.shields.io/npm/v/openai.svg)](https://npmjs.org/package/openai) +[![NPM version](https://img.shields.io/npm/v/openai.svg)](https://npmjs.org/package/openai) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/openai) This library provides convenient access to the OpenAI REST API from TypeScript or JavaScript. From ed4219a565976750637d8c68b2b35409aca447af Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 28 May 2024 19:25:12 +0000 Subject: [PATCH 413/725] release: 4.47.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9516f2682..c7928e176 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.47.1" + ".": "4.47.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f239c2921..79d67fcd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.47.2 (2024-05-28) + +Full Changelog: [v4.47.1...v4.47.2](https://github.com/openai/openai-node/compare/v4.47.1...v4.47.2) + +### Documentation + +* **readme:** add bundle size badge ([#869](https://github.com/openai/openai-node/issues/869)) ([e252132](https://github.com/openai/openai-node/commit/e2521327b7b4f5abe97e4c58c417b37d00079ef8)) + ## 4.47.1 (2024-05-14) Full Changelog: [v4.47.0...v4.47.1](https://github.com/openai/openai-node/compare/v4.47.0...v4.47.1) diff --git a/README.md b/README.md index 6a2239f1f..b5feb43f3 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.47.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.47.2/mod.ts'; ``` diff --git a/package.json b/package.json index 9c385f41c..217da8bd3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.47.1", + "version": "4.47.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index cd3be37fa..7b9374217 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.47.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.47.2/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 710b8f27e..b343abcea 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.47.1'; // x-release-please-version +export const VERSION = '4.47.2'; // x-release-please-version From a70f641ea0e3bc4668fd3803f7a1968665df3d7c Mon Sep 17 00:00:00 2001 From: Deyaaeldeen Almahallawi Date: Thu, 30 May 2024 13:16:04 -0700 Subject: [PATCH 414/725] [Azure] Update Batch API (#871) --- src/index.ts | 1 - tests/lib/azure.test.ts | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/index.ts b/src/index.ts index 854536161..fdafabf3d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -492,7 +492,6 @@ const _deployments_endpoints = new Set([ '/audio/translations', '/audio/speech', '/images/generations', - '/batches', ]); const API_KEY_SENTINEL = ''; diff --git a/tests/lib/azure.test.ts b/tests/lib/azure.test.ts index 32b59ae33..06ca1d464 100644 --- a/tests/lib/azure.test.ts +++ b/tests/lib/azure.test.ts @@ -290,7 +290,7 @@ describe('azure request building', () => { fetch: testFetch, }); - test('handles Batch', async () => { + test('handles batch', async () => { expect( await client.batches.create({ completion_window: '24h', @@ -298,7 +298,7 @@ describe('azure request building', () => { input_file_id: 'file-id', }), ).toStrictEqual({ - url: `https://example.com/openai/deployments/${deployment}/batches?api-version=${apiVersion}`, + url: `https://example.com/openai/batches?api-version=${apiVersion}`, }); }); @@ -423,7 +423,7 @@ describe('azure request building', () => { fetch: testFetch, }); - test('Batch is not handled', async () => { + test('handles batch', async () => { expect( await client.batches.create({ completion_window: '24h', From 0152859aa0ece3374ecfe72161069ba127f08f93 Mon Sep 17 00:00:00 2001 From: Deyaaeldeen Almahallawi Date: Thu, 30 May 2024 13:16:38 -0700 Subject: [PATCH 415/725] docs(azure): update example and readme to use Entra ID (#857) --- README.md | 11 +++++++++-- examples/azure.ts | 11 ++++++++--- examples/package.json | 3 ++- 3 files changed, 19 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b5feb43f3..89601dcce 100644 --- a/README.md +++ b/README.md @@ -367,11 +367,18 @@ To use this library with [Azure OpenAI](https://learn.microsoft.com/en-us/azure/ class instead of the `OpenAI` class. > [!IMPORTANT] -> The Azure API shape differs from the core API shape which means that the static types for responses / params +> The Azure API shape slightly differs from the core API shape which means that the static types for responses / params > won't always be correct. ```ts -const openai = new AzureOpenAI(); +import { AzureOpenAI } from 'openai'; +import { getBearerTokenProvider, DefaultAzureCredential } from '@azure/identity'; + +const credential = new DefaultAzureCredential(); +const scope = 'https://cognitiveservices.azure.com/.default'; +const azureADTokenProvider = getBearerTokenProvider(credential, scope); + +const openai = new AzureOpenAI({ azureADTokenProvider }); const result = await openai.chat.completions.create({ model: 'gpt-4-1106-preview', diff --git a/examples/azure.ts b/examples/azure.ts index 7f57e45c3..5fe1718fa 100755 --- a/examples/azure.ts +++ b/examples/azure.ts @@ -1,14 +1,19 @@ #!/usr/bin/env -S npm run tsn -T import { AzureOpenAI } from 'openai'; +import { getBearerTokenProvider, DefaultAzureCredential } from '@azure/identity'; // Corresponds to your Model deployment within your OpenAI resource, e.g. gpt-4-1106-preview // Navigate to the Azure OpenAI Studio to deploy a model. const deployment = 'gpt-4-1106-preview'; -// Make sure to set both AZURE_OPENAI_ENDPOINT with the endpoint of your Azure resource and AZURE_OPENAI_API_KEY with the API key. -// You can find both information in the Azure Portal. -const openai = new AzureOpenAI(); +const credential = new DefaultAzureCredential(); +const scope = 'https://cognitiveservices.azure.com/.default'; +const azureADTokenProvider = getBearerTokenProvider(credential, scope); + +// Make sure to set AZURE_OPENAI_ENDPOINT with the endpoint of your Azure resource. +// You can find it in the Azure Portal. +const openai = new AzureOpenAI({ azureADTokenProvider }); async function main() { console.log('Non-streaming:'); diff --git a/examples/package.json b/examples/package.json index 04ed507b9..c8a5f7087 100644 --- a/examples/package.json +++ b/examples/package.json @@ -9,7 +9,8 @@ "express": "^4.18.2", "next": "^14.1.1", "openai": "file:..", - "zod-to-json-schema": "^3.21.4" + "zod-to-json-schema": "^3.21.4", + "@azure/identity": "^4.2.0" }, "devDependencies": { "@types/body-parser": "^1.19.3", From f2fa17d9f4cb202c4abaaf463e2c8a5589ad4320 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 31 May 2024 18:12:01 +0100 Subject: [PATCH 416/725] fix: allow git imports for pnpm (#873) --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index 217da8bd3..777aa72e5 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,6 @@ "scripts": { "test": "./scripts/test", "build": "./scripts/build", - "prepack": "echo 'to pack, run yarn build && (cd dist; yarn pack)' && exit 1", "prepublishOnly": "echo 'to publish, run yarn build && (cd dist; yarn publish)' && exit 1", "format": "prettier --write --cache --cache-strategy metadata . !dist", "prepare": "if ./scripts/utils/check-is-in-git-install.sh; then ./scripts/build; fi", From fd70373450d6c39ff55d984a2ff13ea7a7df23d1 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 31 May 2024 17:12:22 +0000 Subject: [PATCH 417/725] release: 4.47.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c7928e176..066d588c5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.47.2" + ".": "4.47.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 79d67fcd8..47dba2105 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.47.3 (2024-05-31) + +Full Changelog: [v4.47.2...v4.47.3](https://github.com/openai/openai-node/compare/v4.47.2...v4.47.3) + +### Bug Fixes + +* allow git imports for pnpm ([#873](https://github.com/openai/openai-node/issues/873)) ([9da9809](https://github.com/openai/openai-node/commit/9da98090e80cbe988a3d695e4c9b57439080ec3e)) + + +### Documentation + +* **azure:** update example and readme to use Entra ID ([#857](https://github.com/openai/openai-node/issues/857)) ([722eff1](https://github.com/openai/openai-node/commit/722eff1a7aeaa2ce3c40301709db61258c9afa16)) + ## 4.47.2 (2024-05-28) Full Changelog: [v4.47.1...v4.47.2](https://github.com/openai/openai-node/compare/v4.47.1...v4.47.2) diff --git a/README.md b/README.md index 89601dcce..7b96d5188 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.47.2/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.47.3/mod.ts'; ``` diff --git a/package.json b/package.json index 777aa72e5..d0587b05f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.47.2", + "version": "4.47.3", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 7b9374217..55ddd2120 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.47.2/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.47.3/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index b343abcea..7b9e87774 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.47.2'; // x-release-please-version +export const VERSION = '4.47.3'; // x-release-please-version From 7b857feb5ef61efd4c1068cd36d63aae34365ef1 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 3 Jun 2024 23:55:10 +0100 Subject: [PATCH 418/725] feat(api): updates (#874) --- .stats.yml | 2 +- src/resources/batches.ts | 6 +- src/resources/beta/assistants.ts | 99 +++++++++++++++++++ src/resources/beta/threads/threads.ts | 90 +++++++++++++++++ .../beta/vector-stores/file-batches.ts | 47 +++++++++ src/resources/beta/vector-stores/files.ts | 90 +++++++++++++++++ .../beta/vector-stores/vector-stores.ts | 43 ++++++++ src/resources/chat/completions.ts | 6 +- src/resources/files.ts | 12 ++- src/resources/fine-tuning/jobs/jobs.ts | 5 + src/resources/shared.ts | 8 +- tests/api-resources/beta/assistants.test.ts | 4 +- .../beta/threads/threads.test.ts | 12 ++- .../beta/vector-stores/file-batches.test.ts | 5 +- .../beta/vector-stores/files.test.ts | 5 +- 15 files changed, 416 insertions(+), 18 deletions(-) diff --git a/.stats.yml b/.stats.yml index 2e5c705a0..11d2b0b18 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 64 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-363dd904e5d6e65b3a323fc88e6b502fb23a6aa319be219273e3ee47c7530993.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-0577fd0d08da6b867b002a5accd45f7116ef91c4940b41cf45dc479938c77163.yml diff --git a/src/resources/batches.ts b/src/resources/batches.ts index 399c931e1..d23c059dc 100644 --- a/src/resources/batches.ts +++ b/src/resources/batches.ts @@ -37,7 +37,9 @@ export class Batches extends APIResource { } /** - * Cancels an in-progress batch. + * Cancels an in-progress batch. The batch will be in status `cancelling` for up to + * 10 minutes, before changing to `cancelled`, where it will have partial results + * (if any) available in the output file. */ cancel(batchId: string, options?: Core.RequestOptions): Core.APIPromise { return this._client.post(`/batches/${batchId}/cancel`, options); @@ -228,7 +230,7 @@ export interface BatchCreateParams { * for how to upload a file. * * Your input file must be formatted as a - * [JSONL file](https://platform.openai.com/docs/api-reference/batch/requestInput), + * [JSONL file](https://platform.openai.com/docs/api-reference/batch/request-input), * and must be uploaded with the purpose `batch`. The file can contain up to 50,000 * requests, and can be up to 100 MB in size. */ diff --git a/src/resources/beta/assistants.ts b/src/resources/beta/assistants.ts index 120e63773..cdea09266 100644 --- a/src/resources/beta/assistants.ts +++ b/src/resources/beta/assistants.ts @@ -258,6 +258,7 @@ export type AssistantStreamEvent = | AssistantStreamEvent.ThreadRunInProgress | AssistantStreamEvent.ThreadRunRequiresAction | AssistantStreamEvent.ThreadRunCompleted + | AssistantStreamEvent.ThreadRunIncomplete | AssistantStreamEvent.ThreadRunFailed | AssistantStreamEvent.ThreadRunCancelling | AssistantStreamEvent.ThreadRunCancelled @@ -362,6 +363,20 @@ export namespace AssistantStreamEvent { event: 'thread.run.completed'; } + /** + * Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) + * ends with status `incomplete`. + */ + export interface ThreadRunIncomplete { + /** + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: RunsAPI.Run; + + event: 'thread.run.incomplete'; + } + /** * Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) * fails. @@ -618,6 +633,30 @@ export interface FileSearchTool { * The type of tool being defined: `file_search` */ type: 'file_search'; + + /** + * Overrides for the file search tool. + */ + file_search?: FileSearchTool.FileSearch; +} + +export namespace FileSearchTool { + /** + * Overrides for the file search tool. + */ + export interface FileSearch { + /** + * The maximum number of results the file search tool should output. The default is + * 20 for gpt-4\* models and 5 for gpt-3.5-turbo. This number should be between 1 + * and 50 inclusive. + * + * Note that the file search tool may output fewer than `max_num_results` results. + * See the + * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/number-of-chunks-returned) + * for more information. + */ + max_num_results?: number; + } } export interface FunctionTool { @@ -843,6 +882,7 @@ export type RunStreamEvent = | RunStreamEvent.ThreadRunInProgress | RunStreamEvent.ThreadRunRequiresAction | RunStreamEvent.ThreadRunCompleted + | RunStreamEvent.ThreadRunIncomplete | RunStreamEvent.ThreadRunFailed | RunStreamEvent.ThreadRunCancelling | RunStreamEvent.ThreadRunCancelled @@ -919,6 +959,20 @@ export namespace RunStreamEvent { event: 'thread.run.completed'; } + /** + * Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) + * ends with status `incomplete`. + */ + export interface ThreadRunIncomplete { + /** + * Represents an execution run on a + * [thread](https://platform.openai.com/docs/api-reference/threads). + */ + data: RunsAPI.Run; + + event: 'thread.run.incomplete'; + } + /** * Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) * fails. @@ -1140,6 +1194,12 @@ export namespace AssistantCreateParams { export namespace FileSearch { export interface VectorStore { + /** + * The chunking strategy used to chunk the file(s). If not set, will use the `auto` + * strategy. + */ + chunking_strategy?: VectorStore.Auto | VectorStore.Static; + /** * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs to * add to the vector store. There can be a maximum of 10000 files in a vector @@ -1155,6 +1215,45 @@ export namespace AssistantCreateParams { */ metadata?: unknown; } + + export namespace VectorStore { + /** + * The default strategy. This strategy currently uses a `max_chunk_size_tokens` of + * `800` and `chunk_overlap_tokens` of `400`. + */ + export interface Auto { + /** + * Always `auto`. + */ + type: 'auto'; + } + + export interface Static { + static: Static.Static; + + /** + * Always `static`. + */ + type: 'static'; + } + + export namespace Static { + export interface Static { + /** + * The number of tokens that overlap between chunks. The default value is `400`. + * + * Note that the overlap must not exceed half of `max_chunk_size_tokens`. + */ + chunk_overlap_tokens: number; + + /** + * The maximum number of tokens in each chunk. The default value is `800`. The + * minimum value is `100` and the maximum value is `4096`. + */ + max_chunk_size_tokens: number; + } + } + } } } } diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 63dd815e7..9d27b0328 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -369,6 +369,12 @@ export namespace ThreadCreateParams { export namespace FileSearch { export interface VectorStore { + /** + * The chunking strategy used to chunk the file(s). If not set, will use the `auto` + * strategy. + */ + chunking_strategy?: VectorStore.Auto | VectorStore.Static; + /** * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs to * add to the vector store. There can be a maximum of 10000 files in a vector @@ -384,6 +390,45 @@ export namespace ThreadCreateParams { */ metadata?: unknown; } + + export namespace VectorStore { + /** + * The default strategy. This strategy currently uses a `max_chunk_size_tokens` of + * `800` and `chunk_overlap_tokens` of `400`. + */ + export interface Auto { + /** + * Always `auto`. + */ + type: 'auto'; + } + + export interface Static { + static: Static.Static; + + /** + * Always `static`. + */ + type: 'static'; + } + + export namespace Static { + export interface Static { + /** + * The number of tokens that overlap between chunks. The default value is `400`. + * + * Note that the overlap must not exceed half of `max_chunk_size_tokens`. + */ + chunk_overlap_tokens: number; + + /** + * The maximum number of tokens in each chunk. The default value is `800`. The + * minimum value is `100` and the maximum value is `4096`. + */ + max_chunk_size_tokens: number; + } + } + } } } } @@ -711,6 +756,12 @@ export namespace ThreadCreateAndRunParams { export namespace FileSearch { export interface VectorStore { + /** + * The chunking strategy used to chunk the file(s). If not set, will use the `auto` + * strategy. + */ + chunking_strategy?: VectorStore.Auto | VectorStore.Static; + /** * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs to * add to the vector store. There can be a maximum of 10000 files in a vector @@ -726,6 +777,45 @@ export namespace ThreadCreateAndRunParams { */ metadata?: unknown; } + + export namespace VectorStore { + /** + * The default strategy. This strategy currently uses a `max_chunk_size_tokens` of + * `800` and `chunk_overlap_tokens` of `400`. + */ + export interface Auto { + /** + * Always `auto`. + */ + type: 'auto'; + } + + export interface Static { + static: Static.Static; + + /** + * Always `static`. + */ + type: 'static'; + } + + export namespace Static { + export interface Static { + /** + * The number of tokens that overlap between chunks. The default value is `400`. + * + * Note that the overlap must not exceed half of `max_chunk_size_tokens`. + */ + chunk_overlap_tokens: number; + + /** + * The maximum number of tokens in each chunk. The default value is `800`. The + * minimum value is `100` and the maximum value is `4096`. + */ + max_chunk_size_tokens: number; + } + } + } } } } diff --git a/src/resources/beta/vector-stores/file-batches.ts b/src/resources/beta/vector-stores/file-batches.ts index 65738cca6..2483e984f 100644 --- a/src/resources/beta/vector-stores/file-batches.ts +++ b/src/resources/beta/vector-stores/file-batches.ts @@ -261,6 +261,53 @@ export interface FileBatchCreateParams { * files. */ file_ids: Array; + + /** + * The chunking strategy used to chunk the file(s). If not set, will use the `auto` + * strategy. + */ + chunking_strategy?: + | FileBatchCreateParams.AutoChunkingStrategyRequestParam + | FileBatchCreateParams.StaticChunkingStrategyRequestParam; +} + +export namespace FileBatchCreateParams { + /** + * The default strategy. This strategy currently uses a `max_chunk_size_tokens` of + * `800` and `chunk_overlap_tokens` of `400`. + */ + export interface AutoChunkingStrategyRequestParam { + /** + * Always `auto`. + */ + type: 'auto'; + } + + export interface StaticChunkingStrategyRequestParam { + static: StaticChunkingStrategyRequestParam.Static; + + /** + * Always `static`. + */ + type: 'static'; + } + + export namespace StaticChunkingStrategyRequestParam { + export interface Static { + /** + * The number of tokens that overlap between chunks. The default value is `400`. + * + * Note that the overlap must not exceed half of `max_chunk_size_tokens`. + */ + chunk_overlap_tokens: number; + + /** + * The maximum number of tokens in each chunk. The default value is `800`. The + * minimum value is `100` and the maximum value is `4096`. + */ + max_chunk_size_tokens: number; + } + } } export interface FileBatchListFilesParams extends CursorPageParams { diff --git a/src/resources/beta/vector-stores/files.ts b/src/resources/beta/vector-stores/files.ts index 0082ee5fa..04a0413be 100644 --- a/src/resources/beta/vector-stores/files.ts +++ b/src/resources/beta/vector-stores/files.ts @@ -217,6 +217,11 @@ export interface VectorStoreFile { * attached to. */ vector_store_id: string; + + /** + * The strategy used to chunk the file. + */ + chunking_strategy?: VectorStoreFile.Static | VectorStoreFile.Other; } export namespace VectorStoreFile { @@ -235,6 +240,44 @@ export namespace VectorStoreFile { */ message: string; } + + export interface Static { + static: Static.Static; + + /** + * Always `static`. + */ + type: 'static'; + } + + export namespace Static { + export interface Static { + /** + * The number of tokens that overlap between chunks. The default value is `400`. + * + * Note that the overlap must not exceed half of `max_chunk_size_tokens`. + */ + chunk_overlap_tokens: number; + + /** + * The maximum number of tokens in each chunk. The default value is `800`. The + * minimum value is `100` and the maximum value is `4096`. + */ + max_chunk_size_tokens: number; + } + } + + /** + * This is returned when the chunking strategy is unknown. Typically, this is + * because the file was indexed before the `chunking_strategy` concept was + * introduced in the API. + */ + export interface Other { + /** + * Always `other`. + */ + type: 'other'; + } } export interface VectorStoreFileDeleted { @@ -252,6 +295,53 @@ export interface FileCreateParams { * files. */ file_id: string; + + /** + * The chunking strategy used to chunk the file(s). If not set, will use the `auto` + * strategy. + */ + chunking_strategy?: + | FileCreateParams.AutoChunkingStrategyRequestParam + | FileCreateParams.StaticChunkingStrategyRequestParam; +} + +export namespace FileCreateParams { + /** + * The default strategy. This strategy currently uses a `max_chunk_size_tokens` of + * `800` and `chunk_overlap_tokens` of `400`. + */ + export interface AutoChunkingStrategyRequestParam { + /** + * Always `auto`. + */ + type: 'auto'; + } + + export interface StaticChunkingStrategyRequestParam { + static: StaticChunkingStrategyRequestParam.Static; + + /** + * Always `static`. + */ + type: 'static'; + } + + export namespace StaticChunkingStrategyRequestParam { + export interface Static { + /** + * The number of tokens that overlap between chunks. The default value is `400`. + * + * Note that the overlap must not exceed half of `max_chunk_size_tokens`. + */ + chunk_overlap_tokens: number; + + /** + * The maximum number of tokens in each chunk. The default value is `800`. The + * minimum value is `100` and the maximum value is `4096`. + */ + max_chunk_size_tokens: number; + } + } } export interface FileListParams extends CursorPageParams { diff --git a/src/resources/beta/vector-stores/vector-stores.ts b/src/resources/beta/vector-stores/vector-stores.ts index 3f5df1fc5..d2d4c7d39 100644 --- a/src/resources/beta/vector-stores/vector-stores.ts +++ b/src/resources/beta/vector-stores/vector-stores.ts @@ -200,6 +200,12 @@ export interface VectorStoreDeleted { } export interface VectorStoreCreateParams { + /** + * The chunking strategy used to chunk the file(s). If not set, will use the `auto` + * strategy. Only applicable if `file_ids` is non-empty. + */ + chunking_strategy?: VectorStoreCreateParams.Auto | VectorStoreCreateParams.Static; + /** * The expiration policy for a vector store. */ @@ -227,6 +233,43 @@ export interface VectorStoreCreateParams { } export namespace VectorStoreCreateParams { + /** + * The default strategy. This strategy currently uses a `max_chunk_size_tokens` of + * `800` and `chunk_overlap_tokens` of `400`. + */ + export interface Auto { + /** + * Always `auto`. + */ + type: 'auto'; + } + + export interface Static { + static: Static.Static; + + /** + * Always `static`. + */ + type: 'static'; + } + + export namespace Static { + export interface Static { + /** + * The number of tokens that overlap between chunks. The default value is `400`. + * + * Note that the overlap must not exceed half of `max_chunk_size_tokens`. + */ + chunk_overlap_tokens: number; + + /** + * The maximum number of tokens in each chunk. The default value is `800`. The + * minimum value is `100` and the maximum value is `4096`. + */ + max_chunk_size_tokens: number; + } + } + /** * The expiration policy for a vector store. */ diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 07b75debe..cbf7bcc2c 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -137,7 +137,7 @@ export interface ChatCompletionAssistantMessageParam { * @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of * a function that should be called, as generated by the model. */ - function_call?: ChatCompletionAssistantMessageParam.FunctionCall; + function_call?: ChatCompletionAssistantMessageParam.FunctionCall | null; /** * An optional name for the participant. Provides the model information to @@ -885,8 +885,8 @@ export namespace ChatCompletionCreateParams { /** * The parameters the functions accepts, described as a JSON Schema object. See the - * [guide](https://platform.openai.com/docs/guides/text-generation/function-calling) - * for examples, and the + * [guide](https://platform.openai.com/docs/guides/function-calling) for examples, + * and the * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for * documentation about the format. * diff --git a/src/resources/files.ts b/src/resources/files.ts index de5067d04..d86dd9972 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -21,9 +21,15 @@ export class Files extends APIResource { * [Assistants Tools guide](https://platform.openai.com/docs/assistants/tools) for * details. * - * The Fine-tuning API only supports `.jsonl` files. + * The Fine-tuning API only supports `.jsonl` files. The input also has certain + * required formats for fine-tuning + * [chat](https://platform.openai.com/docs/api-reference/fine-tuning/chat-input) or + * [completions](https://platform.openai.com/docs/api-reference/fine-tuning/completions-input) + * models. * - * The Batch API only supports `.jsonl` files up to 100 MB in size. + * The Batch API only supports `.jsonl` files up to 100 MB in size. The input also + * has a specific required + * [format](https://platform.openai.com/docs/api-reference/batch/request-input). * * Please [contact us](https://help.openai.com/) if you need to increase these * storage limits. @@ -194,7 +200,7 @@ export interface FileCreateParams { * [Batch API](https://platform.openai.com/docs/guides/batch), and "fine-tune" for * [Fine-tuning](https://platform.openai.com/docs/api-reference/fine-tuning). */ - purpose: 'assistants' | 'batch' | 'fine-tune'; + purpose: 'assistants' | 'batch' | 'fine-tune' | 'vision'; } export interface FileListParams { diff --git a/src/resources/fine-tuning/jobs/jobs.ts b/src/resources/fine-tuning/jobs/jobs.ts index 403e0069f..12990c6fc 100644 --- a/src/resources/fine-tuning/jobs/jobs.ts +++ b/src/resources/fine-tuning/jobs/jobs.ts @@ -312,6 +312,11 @@ export interface JobCreateParams { * Your dataset must be formatted as a JSONL file. Additionally, you must upload * your file with the purpose `fine-tune`. * + * The contents of the file should differ depending on if the model uses the + * [chat](https://platform.openai.com/docs/api-reference/fine-tuning/chat-input) or + * [completions](https://platform.openai.com/docs/api-reference/fine-tuning/completions-input) + * format. + * * See the [fine-tuning guide](https://platform.openai.com/docs/guides/fine-tuning) * for more details. */ diff --git a/src/resources/shared.ts b/src/resources/shared.ts index 93fa05fa4..45969ea65 100644 --- a/src/resources/shared.ts +++ b/src/resources/shared.ts @@ -25,8 +25,8 @@ export interface FunctionDefinition { /** * The parameters the functions accepts, described as a JSON Schema object. See the - * [guide](https://platform.openai.com/docs/guides/text-generation/function-calling) - * for examples, and the + * [guide](https://platform.openai.com/docs/guides/function-calling) for examples, + * and the * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for * documentation about the format. * @@ -37,8 +37,8 @@ export interface FunctionDefinition { /** * The parameters the functions accepts, described as a JSON Schema object. See the - * [guide](https://platform.openai.com/docs/guides/text-generation/function-calling) - * for examples, and the + * [guide](https://platform.openai.com/docs/guides/function-calling) for examples, + * and the * [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for * documentation about the format. * diff --git a/tests/api-resources/beta/assistants.test.ts b/tests/api-resources/beta/assistants.test.ts index 56ce8446a..4049f09b3 100644 --- a/tests/api-resources/beta/assistants.test.ts +++ b/tests/api-resources/beta/assistants.test.ts @@ -33,7 +33,9 @@ describe('resource assistants', () => { code_interpreter: { file_ids: ['string', 'string', 'string'] }, file_search: { vector_store_ids: ['string'], - vector_stores: [{ file_ids: ['string', 'string', 'string'], metadata: {} }], + vector_stores: [ + { file_ids: ['string', 'string', 'string'], chunking_strategy: { type: 'auto' }, metadata: {} }, + ], }, }, tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], diff --git a/tests/api-resources/beta/threads/threads.test.ts b/tests/api-resources/beta/threads/threads.test.ts index 4c4256258..ebc78f357 100644 --- a/tests/api-resources/beta/threads/threads.test.ts +++ b/tests/api-resources/beta/threads/threads.test.ts @@ -132,7 +132,13 @@ describe('resource threads', () => { code_interpreter: { file_ids: ['string', 'string', 'string'] }, file_search: { vector_store_ids: ['string'], - vector_stores: [{ file_ids: ['string', 'string', 'string'], metadata: {} }], + vector_stores: [ + { + file_ids: ['string', 'string', 'string'], + chunking_strategy: { type: 'auto' }, + metadata: {}, + }, + ], }, }, }, @@ -310,7 +316,9 @@ describe('resource threads', () => { code_interpreter: { file_ids: ['string', 'string', 'string'] }, file_search: { vector_store_ids: ['string'], - vector_stores: [{ file_ids: ['string', 'string', 'string'], metadata: {} }], + vector_stores: [ + { file_ids: ['string', 'string', 'string'], chunking_strategy: { type: 'auto' }, metadata: {} }, + ], }, }, metadata: {}, diff --git a/tests/api-resources/beta/vector-stores/file-batches.test.ts b/tests/api-resources/beta/vector-stores/file-batches.test.ts index 782b33a0c..b8ff697b7 100644 --- a/tests/api-resources/beta/vector-stores/file-batches.test.ts +++ b/tests/api-resources/beta/vector-stores/file-batches.test.ts @@ -23,7 +23,10 @@ describe('resource fileBatches', () => { }); test('create: required and optional params', async () => { - const response = await openai.beta.vectorStores.fileBatches.create('vs_abc123', { file_ids: ['string'] }); + const response = await openai.beta.vectorStores.fileBatches.create('vs_abc123', { + file_ids: ['string'], + chunking_strategy: { type: 'auto' }, + }); }); test('retrieve', async () => { diff --git a/tests/api-resources/beta/vector-stores/files.test.ts b/tests/api-resources/beta/vector-stores/files.test.ts index 03340753c..60906dac3 100644 --- a/tests/api-resources/beta/vector-stores/files.test.ts +++ b/tests/api-resources/beta/vector-stores/files.test.ts @@ -21,7 +21,10 @@ describe('resource files', () => { }); test('create: required and optional params', async () => { - const response = await openai.beta.vectorStores.files.create('vs_abc123', { file_id: 'string' }); + const response = await openai.beta.vectorStores.files.create('vs_abc123', { + file_id: 'string', + chunking_strategy: { type: 'auto' }, + }); }); test('retrieve', async () => { From dba4ffb68162ffa6432d8341213ce70ec54c0ab8 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 3 Jun 2024 22:55:32 +0000 Subject: [PATCH 419/725] release: 4.48.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 066d588c5..79313ca57 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.47.3" + ".": "4.48.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 47dba2105..665ac0b11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.48.0 (2024-06-03) + +Full Changelog: [v4.47.3...v4.48.0](https://github.com/openai/openai-node/compare/v4.47.3...v4.48.0) + +### Features + +* **api:** updates ([#874](https://github.com/openai/openai-node/issues/874)) ([295c248](https://github.com/openai/openai-node/commit/295c2486005f6f1eb81cbbd6994b4382801d0707)) + ## 4.47.3 (2024-05-31) Full Changelog: [v4.47.2...v4.47.3](https://github.com/openai/openai-node/compare/v4.47.2...v4.47.3) diff --git a/README.md b/README.md index 7b96d5188..e71459c97 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.47.3/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.48.0/mod.ts'; ``` diff --git a/package.json b/package.json index d0587b05f..b666d2f6f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.47.3", + "version": "4.48.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 55ddd2120..2e3f7a94c 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.47.3/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.48.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 7b9e87774..b09f38344 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.47.3'; // x-release-please-version +export const VERSION = '4.48.0'; // x-release-please-version From 08634c26ea11d31e66421fba1171985601b9e633 Mon Sep 17 00:00:00 2001 From: meorphis Date: Tue, 4 Jun 2024 13:54:23 -0400 Subject: [PATCH 420/725] fix: resolve typescript issue --- src/lib/AbstractChatCompletionRunner.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/lib/AbstractChatCompletionRunner.ts b/src/lib/AbstractChatCompletionRunner.ts index 8a8f4670d..5764b85b2 100644 --- a/src/lib/AbstractChatCompletionRunner.ts +++ b/src/lib/AbstractChatCompletionRunner.ts @@ -232,7 +232,12 @@ export abstract class AbstractChatCompletionRunner< while (i-- > 0) { const message = this.messages[i]; if (isAssistantMessage(message)) { - return { ...message, content: message.content ?? null }; + const { function_call, ...rest } = message; + const ret: ChatCompletionMessage = { ...rest, content: message.content ?? null }; + if (function_call) { + ret.function_call = function_call; + } + return ret; } } throw new OpenAIError('stream ended without producing a ChatCompletionMessage with role=assistant'); From 28187045cb18625dd54e0be1414cccfd3d4bfc35 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 4 Jun 2024 18:00:05 +0000 Subject: [PATCH 421/725] release: 4.48.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 79313ca57..94b98d286 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.48.0" + ".": "4.48.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 665ac0b11..7926a5ec1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.48.1 (2024-06-04) + +Full Changelog: [v4.48.0...v4.48.1](https://github.com/openai/openai-node/compare/v4.48.0...v4.48.1) + +### Bug Fixes + +* resolve typescript issue ([1129707](https://github.com/openai/openai-node/commit/11297073b1a370fc9c8676446f939a48071999b2)) + ## 4.48.0 (2024-06-03) Full Changelog: [v4.47.3...v4.48.0](https://github.com/openai/openai-node/compare/v4.47.3...v4.48.0) diff --git a/README.md b/README.md index e71459c97..1e208ffa3 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.48.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.48.1/mod.ts'; ``` diff --git a/package.json b/package.json index b666d2f6f..fbd66f153 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.48.0", + "version": "4.48.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 2e3f7a94c..9f8c154a8 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.48.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.48.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index b09f38344..1e0cc13b8 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.48.0'; // x-release-please-version +export const VERSION = '4.48.1'; // x-release-please-version From db8b6448c348aeb908f7b7d1ac196632d573ae65 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 5 Jun 2024 05:33:40 -0400 Subject: [PATCH 422/725] chore(internal): minor change to tests (#881) --- tests/api-resources/audio/speech.test.ts | 2 +- tests/api-resources/completions.test.ts | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/api-resources/audio/speech.test.ts b/tests/api-resources/audio/speech.test.ts index 18302ce9a..3a7c22a29 100644 --- a/tests/api-resources/audio/speech.test.ts +++ b/tests/api-resources/audio/speech.test.ts @@ -12,7 +12,7 @@ describe('resource speech', () => { test.skip('create: required and optional params', async () => { const response = await openai.audio.speech.create({ input: 'string', - model: 'string', + model: 'tts-1', voice: 'alloy', response_format: 'mp3', speed: 0.25, diff --git a/tests/api-resources/completions.test.ts b/tests/api-resources/completions.test.ts index 3f6792447..3d64a509b 100644 --- a/tests/api-resources/completions.test.ts +++ b/tests/api-resources/completions.test.ts @@ -10,7 +10,10 @@ const openai = new OpenAI({ describe('resource completions', () => { test('create: only required params', async () => { - const responsePromise = openai.completions.create({ model: 'string', prompt: 'This is a test.' }); + const responsePromise = openai.completions.create({ + model: 'gpt-3.5-turbo-instruct', + prompt: 'This is a test.', + }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -22,7 +25,7 @@ describe('resource completions', () => { test('create: required and optional params', async () => { const response = await openai.completions.create({ - model: 'string', + model: 'gpt-3.5-turbo-instruct', prompt: 'This is a test.', best_of: 0, echo: true, From 3530f16bd11b1fba599f23acb450ec6868232b11 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 5 Jun 2024 09:34:00 +0000 Subject: [PATCH 423/725] release: 4.48.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 94b98d286..cc6e3d11b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.48.1" + ".": "4.48.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7926a5ec1..b754e9bef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.48.2 (2024-06-05) + +Full Changelog: [v4.48.1...v4.48.2](https://github.com/openai/openai-node/compare/v4.48.1...v4.48.2) + +### Chores + +* **internal:** minor change to tests ([#881](https://github.com/openai/openai-node/issues/881)) ([5e2d608](https://github.com/openai/openai-node/commit/5e2d608ca9a2bcb3f261ad13c848d327b60b6fb1)) + ## 4.48.1 (2024-06-04) Full Changelog: [v4.48.0...v4.48.1](https://github.com/openai/openai-node/compare/v4.48.0...v4.48.1) diff --git a/README.md b/README.md index 1e208ffa3..cb28494a4 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.48.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.48.2/mod.ts'; ``` diff --git a/package.json b/package.json index fbd66f153..364044dcf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.48.1", + "version": "4.48.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 9f8c154a8..8c484ef76 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.48.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.48.2/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 1e0cc13b8..c96a440fa 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.48.1'; // x-release-please-version +export const VERSION = '4.48.2'; // x-release-please-version From 7b4b9a2d72169c37126ab4c681c5107eacaaf2c7 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 6 Jun 2024 03:39:28 -0400 Subject: [PATCH 424/725] chore(internal): minor refactor of tests (#884) --- tests/api-resources/audio/speech.test.ts | 2 +- tests/api-resources/completions.test.ts | 7 ++----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/tests/api-resources/audio/speech.test.ts b/tests/api-resources/audio/speech.test.ts index 3a7c22a29..18302ce9a 100644 --- a/tests/api-resources/audio/speech.test.ts +++ b/tests/api-resources/audio/speech.test.ts @@ -12,7 +12,7 @@ describe('resource speech', () => { test.skip('create: required and optional params', async () => { const response = await openai.audio.speech.create({ input: 'string', - model: 'tts-1', + model: 'string', voice: 'alloy', response_format: 'mp3', speed: 0.25, diff --git a/tests/api-resources/completions.test.ts b/tests/api-resources/completions.test.ts index 3d64a509b..3f6792447 100644 --- a/tests/api-resources/completions.test.ts +++ b/tests/api-resources/completions.test.ts @@ -10,10 +10,7 @@ const openai = new OpenAI({ describe('resource completions', () => { test('create: only required params', async () => { - const responsePromise = openai.completions.create({ - model: 'gpt-3.5-turbo-instruct', - prompt: 'This is a test.', - }); + const responsePromise = openai.completions.create({ model: 'string', prompt: 'This is a test.' }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -25,7 +22,7 @@ describe('resource completions', () => { test('create: required and optional params', async () => { const response = await openai.completions.create({ - model: 'gpt-3.5-turbo-instruct', + model: 'string', prompt: 'This is a test.', best_of: 0, echo: true, From c15c635a2366345d8fd79eb1fde7b04a5a46d107 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 6 Jun 2024 07:39:51 +0000 Subject: [PATCH 425/725] release: 4.48.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index cc6e3d11b..b271b7c1e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.48.2" + ".": "4.48.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b754e9bef..1e8d4c8d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.48.3 (2024-06-06) + +Full Changelog: [v4.48.2...v4.48.3](https://github.com/openai/openai-node/compare/v4.48.2...v4.48.3) + +### Chores + +* **internal:** minor refactor of tests ([#884](https://github.com/openai/openai-node/issues/884)) ([0b71f2b](https://github.com/openai/openai-node/commit/0b71f2b2cb67e5714476b6f63b4ef93a0140bff2)) + ## 4.48.2 (2024-06-05) Full Changelog: [v4.48.1...v4.48.2](https://github.com/openai/openai-node/compare/v4.48.1...v4.48.2) diff --git a/README.md b/README.md index cb28494a4..0169a18dc 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.48.2/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.48.3/mod.ts'; ``` diff --git a/package.json b/package.json index 364044dcf..14f7c3d5b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.48.2", + "version": "4.48.3", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 8c484ef76..fd2612a13 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.48.2/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.48.3/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index c96a440fa..0a2f1d907 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.48.2'; // x-release-please-version +export const VERSION = '4.48.3'; // x-release-please-version From ab688c25bbab2651154cae415668332293c814e6 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 6 Jun 2024 14:55:21 -0400 Subject: [PATCH 426/725] feat(api): updates (#887) --- .stats.yml | 2 +- src/resources/beta/threads/runs/runs.ts | 14 ++++++++++++++ src/resources/beta/threads/threads.ts | 7 +++++++ src/resources/chat/completions.ts | 7 +++++++ tests/api-resources/beta/threads/runs/runs.test.ts | 1 + tests/api-resources/beta/threads/threads.test.ts | 1 + tests/api-resources/chat/completions.test.ts | 1 + 7 files changed, 32 insertions(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index 11d2b0b18..eb81a249f 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 64 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-0577fd0d08da6b867b002a5accd45f7116ef91c4940b41cf45dc479938c77163.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-ff436357b12348b7c1c930469332a79cd23ac6ec537e645c411893c42de42e57.yml diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 9e44ccfe5..ed5a5ff68 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -402,6 +402,13 @@ export interface Run { */ object: 'thread.run'; + /** + * Whether to enable + * [parallel function calling](https://platform.openai.com/docs/guides/function-calling) + * during tool use. + */ + parallel_tool_calls: boolean; + /** * Details on the action required to continue the run. Will be `null` if no action * is required. @@ -685,6 +692,13 @@ export interface RunCreateParamsBase { | 'gpt-3.5-turbo-16k-0613' | null; + /** + * Whether to enable + * [parallel function calling](https://platform.openai.com/docs/guides/function-calling) + * during tool use. + */ + parallel_tool_calls?: boolean; + /** * Specifies the format that the model must output. Compatible with * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 9d27b0328..6978e6eb5 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -560,6 +560,13 @@ export interface ThreadCreateAndRunParamsBase { | 'gpt-3.5-turbo-16k-0613' | null; + /** + * Whether to enable + * [parallel function calling](https://platform.openai.com/docs/guides/function-calling) + * during tool use. + */ + parallel_tool_calls?: boolean; + /** * Specifies the format that the model must output. Compatible with * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index cbf7bcc2c..eeaab3d70 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -757,6 +757,13 @@ export interface ChatCompletionCreateParamsBase { */ n?: number | null; + /** + * Whether to enable + * [parallel function calling](https://platform.openai.com/docs/guides/function-calling) + * during tool use. + */ + parallel_tool_calls?: boolean; + /** * Number between -2.0 and 2.0. Positive values penalize new tokens based on * whether they appear in the text so far, increasing the model's likelihood to diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts index 3ee6ecb4e..5aba82ff8 100644 --- a/tests/api-resources/beta/threads/runs/runs.test.ts +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -124,6 +124,7 @@ describe('resource runs', () => { max_prompt_tokens: 256, metadata: {}, model: 'gpt-4-turbo', + parallel_tool_calls: true, response_format: 'none', stream: false, temperature: 1, diff --git a/tests/api-resources/beta/threads/threads.test.ts b/tests/api-resources/beta/threads/threads.test.ts index ebc78f357..85f89533c 100644 --- a/tests/api-resources/beta/threads/threads.test.ts +++ b/tests/api-resources/beta/threads/threads.test.ts @@ -213,6 +213,7 @@ describe('resource threads', () => { max_prompt_tokens: 256, metadata: {}, model: 'gpt-4-turbo', + parallel_tool_calls: true, response_format: 'none', stream: false, temperature: 1, diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 21277e1d6..9404e9e18 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -34,6 +34,7 @@ describe('resource completions', () => { logprobs: true, max_tokens: 0, n: 1, + parallel_tool_calls: true, presence_penalty: -2, response_format: { type: 'json_object' }, seed: -9223372036854776000, From 24de50b142ea44891b73b0e1bf5ce4f11cf10a95 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 6 Jun 2024 18:55:45 +0000 Subject: [PATCH 427/725] release: 4.49.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b271b7c1e..999cfc01c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.48.3" + ".": "4.49.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e8d4c8d4..8853010a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.49.0 (2024-06-06) + +Full Changelog: [v4.48.3...v4.49.0](https://github.com/openai/openai-node/compare/v4.48.3...v4.49.0) + +### Features + +* **api:** updates ([#887](https://github.com/openai/openai-node/issues/887)) ([359eeb3](https://github.com/openai/openai-node/commit/359eeb33b08b371451f216d1e21dd3334ec15f36)) + ## 4.48.3 (2024-06-06) Full Changelog: [v4.48.2...v4.48.3](https://github.com/openai/openai-node/compare/v4.48.2...v4.48.3) diff --git a/README.md b/README.md index 0169a18dc..acd36e4d1 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.48.3/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.49.0/mod.ts'; ``` diff --git a/package.json b/package.json index 14f7c3d5b..5a116918d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.48.3", + "version": "4.49.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index fd2612a13..460fead2b 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.48.3/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.49.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 0a2f1d907..bb12aad49 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.48.3'; // x-release-please-version +export const VERSION = '4.49.0'; // x-release-please-version From 261d356384cdacefd015526dc6a9993bc713ffca Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Fri, 7 Jun 2024 15:40:33 -0400 Subject: [PATCH 428/725] fix: remove erroneous thread create argument (#889) --- .stats.yml | 2 +- src/resources/beta/threads/messages.ts | 22 ++++++++++++++++++++-- src/resources/beta/threads/runs/runs.ts | 15 ++++++++++++--- src/resources/beta/threads/threads.ts | 24 +++++++++++++++++++++--- src/resources/chat/completions.ts | 2 +- 5 files changed, 55 insertions(+), 10 deletions(-) diff --git a/.stats.yml b/.stats.yml index eb81a249f..a6c08f499 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 64 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-ff436357b12348b7c1c930469332a79cd23ac6ec537e645c411893c42de42e57.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-c085faf70d6ff059fbe11b7b6b98123a612524cb9b8a6f649c99526e5b0b1bdb.yml diff --git a/src/resources/beta/threads/messages.ts b/src/resources/beta/threads/messages.ts index a5307edbe..4bbdc7426 100644 --- a/src/resources/beta/threads/messages.ts +++ b/src/resources/beta/threads/messages.ts @@ -459,7 +459,16 @@ export namespace Message { /** * The tools to add this file to. */ - tools?: Array; + tools?: Array; + } + + export namespace Attachment { + export interface AssistantToolsFileSearchTypeOnly { + /** + * The type of tool being defined: `file_search` + */ + type: 'file_search'; + } } /** @@ -637,7 +646,16 @@ export namespace MessageCreateParams { /** * The tools to add this file to. */ - tools?: Array; + tools?: Array; + } + + export namespace Attachment { + export interface FileSearch { + /** + * The type of tool being defined: `file_search` + */ + type: 'file_search'; + } } } diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index ed5a5ff68..0cc7e35d1 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -404,7 +404,7 @@ export interface Run { /** * Whether to enable - * [parallel function calling](https://platform.openai.com/docs/guides/function-calling) + * [parallel function calling](https://platform.openai.com/docs/guides/function-calling/parallel-function-calling) * during tool use. */ parallel_tool_calls: boolean; @@ -694,7 +694,7 @@ export interface RunCreateParamsBase { /** * Whether to enable - * [parallel function calling](https://platform.openai.com/docs/guides/function-calling) + * [parallel function calling](https://platform.openai.com/docs/guides/function-calling/parallel-function-calling) * during tool use. */ parallel_tool_calls?: boolean; @@ -806,7 +806,16 @@ export namespace RunCreateParams { /** * The tools to add this file to. */ - tools?: Array; + tools?: Array; + } + + export namespace Attachment { + export interface FileSearch { + /** + * The type of tool being defined: `file_search` + */ + type: 'file_search'; + } } } diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 6978e6eb5..441bbe41c 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -323,7 +323,16 @@ export namespace ThreadCreateParams { /** * The tools to add this file to. */ - tools?: Array; + tools?: Array; + } + + export namespace Attachment { + export interface FileSearch { + /** + * The type of tool being defined: `file_search` + */ + type: 'file_search'; + } } } @@ -562,7 +571,7 @@ export interface ThreadCreateAndRunParamsBase { /** * Whether to enable - * [parallel function calling](https://platform.openai.com/docs/guides/function-calling) + * [parallel function calling](https://platform.openai.com/docs/guides/function-calling/parallel-function-calling) * during tool use. */ parallel_tool_calls?: boolean; @@ -717,7 +726,16 @@ export namespace ThreadCreateAndRunParams { /** * The tools to add this file to. */ - tools?: Array; + tools?: Array; + } + + export namespace Attachment { + export interface FileSearch { + /** + * The type of tool being defined: `file_search` + */ + type: 'file_search'; + } } } diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index eeaab3d70..b7c301f4e 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -759,7 +759,7 @@ export interface ChatCompletionCreateParamsBase { /** * Whether to enable - * [parallel function calling](https://platform.openai.com/docs/guides/function-calling) + * [parallel function calling](https://platform.openai.com/docs/guides/function-calling/parallel-function-calling) * during tool use. */ parallel_tool_calls?: boolean; From c3515a5ace0054f3aec4b03d7dcaa122384369f9 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 7 Jun 2024 19:40:58 +0000 Subject: [PATCH 429/725] release: 4.49.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 999cfc01c..74af4d46e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.49.0" + ".": "4.49.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8853010a9..d0f49f420 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.49.1 (2024-06-07) + +Full Changelog: [v4.49.0...v4.49.1](https://github.com/openai/openai-node/compare/v4.49.0...v4.49.1) + +### Bug Fixes + +* remove erroneous thread create argument ([#889](https://github.com/openai/openai-node/issues/889)) ([a9f898e](https://github.com/openai/openai-node/commit/a9f898ee109a0b35a672e41c6497f3a75eff7734)) + ## 4.49.0 (2024-06-06) Full Changelog: [v4.48.3...v4.49.0](https://github.com/openai/openai-node/compare/v4.48.3...v4.49.0) diff --git a/README.md b/README.md index acd36e4d1..61c0b2697 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.49.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.49.1/mod.ts'; ``` diff --git a/package.json b/package.json index 5a116918d..f75c903c4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.49.0", + "version": "4.49.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 460fead2b..73f54338d 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.49.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.49.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index bb12aad49..7df786cb2 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.49.0'; // x-release-please-version +export const VERSION = '4.49.1'; // x-release-please-version From ab47709db24a1d8006a695746be8a180ffbf8c5d Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 10 Jun 2024 16:20:03 -0400 Subject: [PATCH 430/725] feat: support `application/octet-stream` request bodies (#892) --- src/core.ts | 35 +++++++++++++++++++++++++++-------- 1 file changed, 27 insertions(+), 8 deletions(-) diff --git a/src/core.ts b/src/core.ts index 39fe0f97f..2d91751d7 100644 --- a/src/core.ts +++ b/src/core.ts @@ -19,7 +19,7 @@ import { type HeadersInit, } from './_shims/index'; export { type Response }; -import { isMultipartBody } from './uploads'; +import { BlobLike, isBlobLike, isMultipartBody } from './uploads'; export { maybeMultipartFormRequestOptions, multipartFormRequestOptions, @@ -249,7 +249,17 @@ export abstract class APIClient { path: string, opts?: PromiseOrValue>, ): APIPromise { - return this.request(Promise.resolve(opts).then((opts) => ({ method, path, ...opts }))); + return this.request( + Promise.resolve(opts).then(async (opts) => { + const body = + opts && isBlobLike(opts?.body) ? new DataView(await opts.body.arrayBuffer()) + : opts?.body instanceof DataView ? opts.body + : opts?.body instanceof ArrayBuffer ? new DataView(opts.body) + : opts && ArrayBuffer.isView(opts?.body) ? new DataView(opts.body.buffer) + : opts?.body; + return { method, path, ...opts, body }; + }), + ); } getAPIList = AbstractPage>( @@ -271,6 +281,8 @@ export abstract class APIClient { const encoded = encoder.encode(body); return encoded.length.toString(); } + } else if (ArrayBuffer.isView(body)) { + return body.byteLength.toString(); } return null; @@ -280,7 +292,9 @@ export abstract class APIClient { const { method, path, query, headers: headers = {} } = options; const body = - isMultipartBody(options.body) ? options.body.body + ArrayBuffer.isView(options.body) || (options.__binaryRequest && typeof options.body === 'string') ? + options.body + : isMultipartBody(options.body) ? options.body.body : options.body ? JSON.stringify(options.body, null, 2) : null; const contentLength = this.calculateContentLength(body); @@ -735,7 +749,9 @@ export type Headers = Record; export type DefaultQuery = Record; export type KeysEnum = { [P in keyof Required]: true }; -export type RequestOptions | Readable> = { +export type RequestOptions< + Req = unknown | Record | Readable | BlobLike | ArrayBufferView | ArrayBuffer, +> = { method?: HTTPMethod; path?: string; query?: Req | undefined; @@ -749,6 +765,7 @@ export type RequestOptions | Readable> = signal?: AbortSignal | undefined | null; idempotencyKey?: string; + __binaryRequest?: boolean | undefined; __binaryResponse?: boolean | undefined; __streamClass?: typeof Stream; }; @@ -770,6 +787,7 @@ const requestOptionsKeys: KeysEnum = { signal: true, idempotencyKey: true, + __binaryRequest: true, __binaryResponse: true, __streamClass: true, }; @@ -783,10 +801,11 @@ export const isRequestOptions = (obj: unknown): obj is RequestOptions => { ); }; -export type FinalRequestOptions | Readable> = RequestOptions & { - method: HTTPMethod; - path: string; -}; +export type FinalRequestOptions | Readable | DataView> = + RequestOptions & { + method: HTTPMethod; + path: string; + }; declare const Deno: any; declare const EdgeRuntime: any; From 2f79293d4ee63253a7826f2b69fb36f545fc6ce4 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 10 Jun 2024 20:20:29 +0000 Subject: [PATCH 431/725] release: 4.50.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 74af4d46e..e99be4da9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.49.1" + ".": "4.50.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d0f49f420..47cafc9b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.50.0 (2024-06-10) + +Full Changelog: [v4.49.1...v4.50.0](https://github.com/openai/openai-node/compare/v4.49.1...v4.50.0) + +### Features + +* support `application/octet-stream` request bodies ([#892](https://github.com/openai/openai-node/issues/892)) ([51661c8](https://github.com/openai/openai-node/commit/51661c8068d4990df6916becb6bb85353b54ef4d)) + ## 4.49.1 (2024-06-07) Full Changelog: [v4.49.0...v4.49.1](https://github.com/openai/openai-node/compare/v4.49.0...v4.49.1) diff --git a/README.md b/README.md index 61c0b2697..c1c910645 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.49.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.50.0/mod.ts'; ``` diff --git a/package.json b/package.json index f75c903c4..0cc852583 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.49.1", + "version": "4.50.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 73f54338d..6d6109f7b 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.49.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.50.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 7df786cb2..44f8e47e3 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.49.1'; // x-release-please-version +export const VERSION = '4.50.0'; // x-release-please-version From 2044b6445654d986d9cc4e9fef772104c009d2a4 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Wed, 12 Jun 2024 14:44:44 -0400 Subject: [PATCH 432/725] feat(api): updates (#894) --- .stats.yml | 2 +- src/resources/beta/threads/messages.ts | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.stats.yml b/.stats.yml index a6c08f499..c5ada3b5d 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 64 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-c085faf70d6ff059fbe11b7b6b98123a612524cb9b8a6f649c99526e5b0b1bdb.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-5cb1810135c35c5024698f3365626471a04796e26e393aefe1aa0ba3c0891919.yml diff --git a/src/resources/beta/threads/messages.ts b/src/resources/beta/threads/messages.ts index 4bbdc7426..07c5a573c 100644 --- a/src/resources/beta/threads/messages.ts +++ b/src/resources/beta/threads/messages.ts @@ -129,11 +129,6 @@ export namespace FileCitationAnnotation { * The ID of the specific File the citation is from. */ file_id: string; - - /** - * The specific quote in the file. - */ - quote: string; } } From 70d2bb37fae06e685f73a98db3eca6e540c8ed01 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 12 Jun 2024 18:45:08 +0000 Subject: [PATCH 433/725] release: 4.51.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e99be4da9..58c53eaeb 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.50.0" + ".": "4.51.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 47cafc9b0..8c2a3b446 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.51.0 (2024-06-12) + +Full Changelog: [v4.50.0...v4.51.0](https://github.com/openai/openai-node/compare/v4.50.0...v4.51.0) + +### Features + +* **api:** updates ([#894](https://github.com/openai/openai-node/issues/894)) ([b58f5a1](https://github.com/openai/openai-node/commit/b58f5a1344f631dac0fb8ecfa4fbae49af070189)) + ## 4.50.0 (2024-06-10) Full Changelog: [v4.49.1...v4.50.0](https://github.com/openai/openai-node/compare/v4.49.1...v4.50.0) diff --git a/README.md b/README.md index c1c910645..6dcc2abc4 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.50.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.51.0/mod.ts'; ``` diff --git a/package.json b/package.json index 0cc852583..f5401bb8c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.50.0", + "version": "4.51.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 6d6109f7b..2d0cbecc2 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.50.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.51.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 44f8e47e3..9daf60a23 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.50.0'; // x-release-please-version +export const VERSION = '4.51.0'; // x-release-please-version From bd5b4ab55ee0fd8baee345413ec79405ece29d09 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 18 Jun 2024 19:53:04 +0000 Subject: [PATCH 434/725] feat(api): add service tier argument for chat completions (#900) --- .stats.yml | 2 +- src/resources/chat/completions.ts | 25 ++++++++++++++++++++ tests/api-resources/chat/completions.test.ts | 1 + 3 files changed, 27 insertions(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index c5ada3b5d..aa7e8427b 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 64 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-5cb1810135c35c5024698f3365626471a04796e26e393aefe1aa0ba3c0891919.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-8fe357c6b5a425d810d731e4102a052d8e38c5e2d66950e6de1025415160bf88.yml diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index b7c301f4e..664def2b2 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -66,6 +66,12 @@ export interface ChatCompletion { */ object: 'chat.completion'; + /** + * The service tier used for processing the request. This field is only included if + * the `service_tier` parameter is specified in the request. + */ + service_tier?: 'scale' | 'default' | null; + /** * This fingerprint represents the backend configuration that the model runs with. * @@ -205,6 +211,12 @@ export interface ChatCompletionChunk { */ object: 'chat.completion.chunk'; + /** + * The service tier used for processing the request. This field is only included if + * the `service_tier` parameter is specified in the request. + */ + service_tier?: 'scale' | 'default' | null; + /** * This fingerprint represents the backend configuration that the model runs with. * Can be used in conjunction with the `seed` request parameter to understand when @@ -800,6 +812,19 @@ export interface ChatCompletionCreateParamsBase { */ seed?: number | null; + /** + * Specifies the latency tier to use for processing the request. This parameter is + * relevant for customers subscribed to the scale tier service: + * + * - If set to 'auto', the system will utilize scale tier credits until they are + * exhausted. + * - If set to 'default', the request will be processed in the shared cluster. + * + * When this parameter is set, the response body will include the `service_tier` + * utilized. + */ + service_tier?: 'auto' | 'default' | null; + /** * Up to 4 sequences where the API will stop generating further tokens. */ diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 9404e9e18..c63466f99 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -38,6 +38,7 @@ describe('resource completions', () => { presence_penalty: -2, response_format: { type: 'json_object' }, seed: -9223372036854776000, + service_tier: 'auto', stop: 'string', stream: false, stream_options: { include_usage: true }, From 22cf0362c4a72873433d10452248934672bd65ac Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 18 Jun 2024 19:53:29 +0000 Subject: [PATCH 435/725] release: 4.52.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 58c53eaeb..5ed75d11b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.51.0" + ".": "4.52.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c2a3b446..f9c5d60a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.52.0 (2024-06-18) + +Full Changelog: [v4.51.0...v4.52.0](https://github.com/openai/openai-node/compare/v4.51.0...v4.52.0) + +### Features + +* **api:** add service tier argument for chat completions ([#900](https://github.com/openai/openai-node/issues/900)) ([91e6651](https://github.com/openai/openai-node/commit/91e66514037a8d6f9c39d3c96cd5769885925a4b)) + ## 4.51.0 (2024-06-12) Full Changelog: [v4.50.0...v4.51.0](https://github.com/openai/openai-node/compare/v4.50.0...v4.51.0) diff --git a/README.md b/README.md index 6dcc2abc4..ebbb38293 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.51.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.52.0/mod.ts'; ``` diff --git a/package.json b/package.json index f5401bb8c..c93d881cc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.51.0", + "version": "4.52.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 2d0cbecc2..c842fa5bc 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.51.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.52.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 9daf60a23..0f31a0778 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.51.0'; // x-release-please-version +export const VERSION = '4.52.0'; // x-release-please-version From fceba0d44edb407c2d28857ff303ba587c01c030 Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Fri, 21 Jun 2024 09:28:46 +0000 Subject: [PATCH 436/725] chore(internal): re-order some imports (#904) --- src/resources/audio/speech.ts | 2 +- src/resources/files.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/resources/audio/speech.ts b/src/resources/audio/speech.ts index bcfbc80cc..0c6a97ab5 100644 --- a/src/resources/audio/speech.ts +++ b/src/resources/audio/speech.ts @@ -2,8 +2,8 @@ import * as Core from '../../core'; import { APIResource } from '../../resource'; -import { type Response } from '../../_shims/index'; import * as SpeechAPI from './speech'; +import { type Response } from '../../_shims/index'; export class Speech extends APIResource { /** diff --git a/src/resources/files.ts b/src/resources/files.ts index d86dd9972..30f559890 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -3,12 +3,12 @@ import * as Core from '../core'; import { APIResource } from '../resource'; import { isRequestOptions } from '../core'; -import { type Response } from '../_shims/index'; import { sleep } from '../core'; import { APIConnectionTimeoutError } from '../error'; import * as FilesAPI from './files'; import { type Uploadable, multipartFormRequestOptions } from '../core'; import { Page } from '../pagination'; +import { type Response } from '../_shims/index'; export class Files extends APIResource { /** From 1c2245d5bd196b0f09518acf61ce1f0326e7fe66 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 21 Jun 2024 10:16:18 +0000 Subject: [PATCH 437/725] chore(doc): clarify service tier default value (#908) --- .stats.yml | 2 +- src/resources/chat/completions.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index aa7e8427b..04682ea0a 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 64 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-8fe357c6b5a425d810d731e4102a052d8e38c5e2d66950e6de1025415160bf88.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-3a69e1cc9e1efda3fb82d0fb35961749f886a87594dae9d8d2aa5c60f157f5d2.yml diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 664def2b2..b49cf1069 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -818,7 +818,8 @@ export interface ChatCompletionCreateParamsBase { * * - If set to 'auto', the system will utilize scale tier credits until they are * exhausted. - * - If set to 'default', the request will be processed in the shared cluster. + * - If set to 'default', the request will be processed using the default service + * tier with a lower uptime SLA and no latency guarentee. * * When this parameter is set, the response body will include the `service_tier` * utilized. From 9edcdfd39768e2138ec374cfd3fa3ce8e732ac73 Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Tue, 25 Jun 2024 15:59:55 +0000 Subject: [PATCH 438/725] chore(internal): minor reformatting (#911) --- src/index.ts | 9 ++++++--- src/resources/audio/speech.ts | 2 +- src/resources/audio/transcriptions.ts | 7 +++---- src/resources/audio/translations.ts | 7 +++---- src/resources/batches.ts | 2 +- src/resources/beta/assistants.ts | 2 +- src/resources/beta/threads/messages.ts | 2 +- src/resources/beta/threads/runs/runs.ts | 4 ++-- src/resources/beta/threads/runs/steps.ts | 2 +- src/resources/beta/threads/threads.ts | 4 ++-- src/resources/beta/vector-stores/file-batches.ts | 2 +- src/resources/beta/vector-stores/files.ts | 5 ++--- src/resources/beta/vector-stores/vector-stores.ts | 2 +- src/resources/chat/completions.ts | 4 ++-- src/resources/completions.ts | 4 ++-- src/resources/embeddings.ts | 2 +- src/resources/files.ts | 7 +++---- src/resources/fine-tuning/jobs/checkpoints.ts | 2 +- src/resources/fine-tuning/jobs/jobs.ts | 2 +- src/resources/images.ts | 13 ++++++------- src/resources/models.ts | 2 +- src/resources/moderations.ts | 2 +- tests/stringifyQuery.test.ts | 9 ++++++--- 23 files changed, 49 insertions(+), 48 deletions(-) diff --git a/src/index.ts b/src/index.ts index fdafabf3d..ce455108e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,9 +1,9 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from './core'; import * as Errors from './error'; -import { type Agent, type RequestInit } from './_shims/index'; import * as Uploads from './uploads'; +import { type Agent, type RequestInit } from './_shims/index'; +import * as Core from './core'; import * as Pagination from './pagination'; import * as API from './resources/index'; @@ -86,7 +86,9 @@ export interface ClientOptions { dangerouslyAllowBrowser?: boolean; } -/** API Client for interfacing with the OpenAI API. */ +/** + * API Client for interfacing with the OpenAI API. + */ export class OpenAI extends Core.APIClient { apiKey: string; organization: string | null; @@ -143,6 +145,7 @@ export class OpenAI extends Core.APIClient { maxRetries: options.maxRetries, fetch: options.fetch, }); + this._options = options; this.apiKey = apiKey; diff --git a/src/resources/audio/speech.ts b/src/resources/audio/speech.ts index 0c6a97ab5..d0a6e7f31 100644 --- a/src/resources/audio/speech.ts +++ b/src/resources/audio/speech.ts @@ -1,7 +1,7 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../../core'; import { APIResource } from '../../resource'; +import * as Core from '../../core'; import * as SpeechAPI from './speech'; import { type Response } from '../../_shims/index'; diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index bbffce4ed..0eb4e4b7c 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -1,16 +1,15 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../../core'; import { APIResource } from '../../resource'; +import * as Core from '../../core'; import * as TranscriptionsAPI from './transcriptions'; -import { type Uploadable, multipartFormRequestOptions } from '../../core'; export class Transcriptions extends APIResource { /** * Transcribes audio into the input language. */ create(body: TranscriptionCreateParams, options?: Core.RequestOptions): Core.APIPromise { - return this._client.post('/audio/transcriptions', multipartFormRequestOptions({ body, ...options })); + return this._client.post('/audio/transcriptions', Core.multipartFormRequestOptions({ body, ...options })); } } @@ -30,7 +29,7 @@ export interface TranscriptionCreateParams { * The audio file object (not file name) to transcribe, in one of these formats: * flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. */ - file: Uploadable; + file: Core.Uploadable; /** * ID of the model to use. Only `whisper-1` (which is powered by our open source diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index 890c59d55..48fddc2ee 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -1,16 +1,15 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../../core'; import { APIResource } from '../../resource'; +import * as Core from '../../core'; import * as TranslationsAPI from './translations'; -import { type Uploadable, multipartFormRequestOptions } from '../../core'; export class Translations extends APIResource { /** * Translates audio into English. */ create(body: TranslationCreateParams, options?: Core.RequestOptions): Core.APIPromise { - return this._client.post('/audio/translations', multipartFormRequestOptions({ body, ...options })); + return this._client.post('/audio/translations', Core.multipartFormRequestOptions({ body, ...options })); } } @@ -23,7 +22,7 @@ export interface TranslationCreateParams { * The audio file object (not file name) translate, in one of these formats: flac, * mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. */ - file: Uploadable; + file: Core.Uploadable; /** * ID of the model to use. Only `whisper-1` (which is powered by our open source diff --git a/src/resources/batches.ts b/src/resources/batches.ts index d23c059dc..738582f9e 100644 --- a/src/resources/batches.ts +++ b/src/resources/batches.ts @@ -1,8 +1,8 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../core'; import { APIResource } from '../resource'; import { isRequestOptions } from '../core'; +import * as Core from '../core'; import * as BatchesAPI from './batches'; import { CursorPage, type CursorPageParams } from '../pagination'; diff --git a/src/resources/beta/assistants.ts b/src/resources/beta/assistants.ts index cdea09266..5d326a593 100644 --- a/src/resources/beta/assistants.ts +++ b/src/resources/beta/assistants.ts @@ -1,8 +1,8 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../../core'; import { APIResource } from '../../resource'; import { isRequestOptions } from '../../core'; +import * as Core from '../../core'; import * as AssistantsAPI from './assistants'; import * as Shared from '../shared'; import * as MessagesAPI from './threads/messages'; diff --git a/src/resources/beta/threads/messages.ts b/src/resources/beta/threads/messages.ts index 07c5a573c..db58f45b8 100644 --- a/src/resources/beta/threads/messages.ts +++ b/src/resources/beta/threads/messages.ts @@ -1,8 +1,8 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../../../core'; import { APIResource } from '../../../resource'; import { isRequestOptions } from '../../../core'; +import * as Core from '../../../core'; import * as MessagesAPI from './messages'; import * as AssistantsAPI from '../assistants'; import { CursorPage, type CursorPageParams } from '../../../pagination'; diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 0cc7e35d1..b4ed09cc2 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -1,9 +1,9 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../../../../core'; -import { APIPromise } from '../../../../core'; import { APIResource } from '../../../../resource'; import { isRequestOptions } from '../../../../core'; +import { APIPromise } from '../../../../core'; +import * as Core from '../../../../core'; import { AssistantStream, RunCreateParamsBaseStream } from '../../../../lib/AssistantStream'; import { sleep } from '../../../../core'; import { RunSubmitToolOutputsParamsStream } from '../../../../lib/AssistantStream'; diff --git a/src/resources/beta/threads/runs/steps.ts b/src/resources/beta/threads/runs/steps.ts index 0cbb60ca4..09605d458 100644 --- a/src/resources/beta/threads/runs/steps.ts +++ b/src/resources/beta/threads/runs/steps.ts @@ -1,8 +1,8 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../../../../core'; import { APIResource } from '../../../../resource'; import { isRequestOptions } from '../../../../core'; +import * as Core from '../../../../core'; import * as StepsAPI from './steps'; import { CursorPage, type CursorPageParams } from '../../../../pagination'; diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 441bbe41c..aded9daf1 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../../../core'; -import { APIPromise } from '../../../core'; import { APIResource } from '../../../resource'; import { isRequestOptions } from '../../../core'; import { AssistantStream, ThreadCreateAndRunParamsBaseStream } from '../../../lib/AssistantStream'; +import { APIPromise } from '../../../core'; +import * as Core from '../../../core'; import * as ThreadsAPI from './threads'; import * as AssistantsAPI from '../assistants'; import * as MessagesAPI from './messages'; diff --git a/src/resources/beta/vector-stores/file-batches.ts b/src/resources/beta/vector-stores/file-batches.ts index 2483e984f..890a92190 100644 --- a/src/resources/beta/vector-stores/file-batches.ts +++ b/src/resources/beta/vector-stores/file-batches.ts @@ -1,11 +1,11 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../../../core'; import { APIResource } from '../../../resource'; import { isRequestOptions } from '../../../core'; import { sleep } from '../../../core'; import { Uploadable } from '../../../core'; import { allSettledWithThrow } from '../../../lib/Util'; +import * as Core from '../../../core'; import * as FileBatchesAPI from './file-batches'; import * as FilesAPI from './files'; import { VectorStoreFilesPage } from './files'; diff --git a/src/resources/beta/vector-stores/files.ts b/src/resources/beta/vector-stores/files.ts index 04a0413be..594c51970 100644 --- a/src/resources/beta/vector-stores/files.ts +++ b/src/resources/beta/vector-stores/files.ts @@ -1,9 +1,8 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../../../core'; import { APIResource } from '../../../resource'; -import { isRequestOptions } from '../../../core'; -import { sleep, Uploadable } from '../../../core'; +import { sleep, Uploadable, isRequestOptions } from '../../../core'; +import * as Core from '../../../core'; import * as FilesAPI from './files'; import { CursorPage, type CursorPageParams } from '../../../pagination'; diff --git a/src/resources/beta/vector-stores/vector-stores.ts b/src/resources/beta/vector-stores/vector-stores.ts index d2d4c7d39..343f25953 100644 --- a/src/resources/beta/vector-stores/vector-stores.ts +++ b/src/resources/beta/vector-stores/vector-stores.ts @@ -1,8 +1,8 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../../../core'; import { APIResource } from '../../../resource'; import { isRequestOptions } from '../../../core'; +import * as Core from '../../../core'; import * as VectorStoresAPI from './vector-stores'; import * as FileBatchesAPI from './file-batches'; import * as FilesAPI from './files'; diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index b49cf1069..44eb9520c 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -1,8 +1,8 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../../core'; -import { APIPromise } from '../../core'; import { APIResource } from '../../resource'; +import { APIPromise } from '../../core'; +import * as Core from '../../core'; import * as ChatCompletionsAPI from './completions'; import * as CompletionsAPI from '../completions'; import * as Shared from '../shared'; diff --git a/src/resources/completions.ts b/src/resources/completions.ts index 26bf5ca0d..a6b527995 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -1,8 +1,8 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../core'; -import { APIPromise } from '../core'; import { APIResource } from '../resource'; +import { APIPromise } from '../core'; +import * as Core from '../core'; import * as CompletionsAPI from './completions'; import * as ChatCompletionsAPI from './chat/completions'; import { Stream } from '../streaming'; diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index 28c954711..f72b9308a 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -1,7 +1,7 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../core'; import { APIResource } from '../resource'; +import * as Core from '../core'; import * as EmbeddingsAPI from './embeddings'; export class Embeddings extends APIResource { diff --git a/src/resources/files.ts b/src/resources/files.ts index 30f559890..a2d3aaa44 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -1,12 +1,11 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../core'; import { APIResource } from '../resource'; import { isRequestOptions } from '../core'; import { sleep } from '../core'; import { APIConnectionTimeoutError } from '../error'; +import * as Core from '../core'; import * as FilesAPI from './files'; -import { type Uploadable, multipartFormRequestOptions } from '../core'; import { Page } from '../pagination'; import { type Response } from '../_shims/index'; @@ -35,7 +34,7 @@ export class Files extends APIResource { * storage limits. */ create(body: FileCreateParams, options?: Core.RequestOptions): Core.APIPromise { - return this._client.post('/files', multipartFormRequestOptions({ body, ...options })); + return this._client.post('/files', Core.multipartFormRequestOptions({ body, ...options })); } /** @@ -188,7 +187,7 @@ export interface FileCreateParams { /** * The File object (not file name) to be uploaded. */ - file: Uploadable; + file: Core.Uploadable; /** * The intended purpose of the uploaded file. diff --git a/src/resources/fine-tuning/jobs/checkpoints.ts b/src/resources/fine-tuning/jobs/checkpoints.ts index 0e3cdeb79..02896b26d 100644 --- a/src/resources/fine-tuning/jobs/checkpoints.ts +++ b/src/resources/fine-tuning/jobs/checkpoints.ts @@ -1,8 +1,8 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../../../core'; import { APIResource } from '../../../resource'; import { isRequestOptions } from '../../../core'; +import * as Core from '../../../core'; import * as CheckpointsAPI from './checkpoints'; import { CursorPage, type CursorPageParams } from '../../../pagination'; diff --git a/src/resources/fine-tuning/jobs/jobs.ts b/src/resources/fine-tuning/jobs/jobs.ts index 12990c6fc..c4aae364a 100644 --- a/src/resources/fine-tuning/jobs/jobs.ts +++ b/src/resources/fine-tuning/jobs/jobs.ts @@ -1,8 +1,8 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../../../core'; import { APIResource } from '../../../resource'; import { isRequestOptions } from '../../../core'; +import * as Core from '../../../core'; import * as JobsAPI from './jobs'; import * as CheckpointsAPI from './checkpoints'; import { CursorPage, type CursorPageParams } from '../../../pagination'; diff --git a/src/resources/images.ts b/src/resources/images.ts index 337909578..24af635b2 100644 --- a/src/resources/images.ts +++ b/src/resources/images.ts @@ -1,9 +1,8 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../core'; import { APIResource } from '../resource'; +import * as Core from '../core'; import * as ImagesAPI from './images'; -import { type Uploadable, multipartFormRequestOptions } from '../core'; export class Images extends APIResource { /** @@ -13,14 +12,14 @@ export class Images extends APIResource { body: ImageCreateVariationParams, options?: Core.RequestOptions, ): Core.APIPromise { - return this._client.post('/images/variations', multipartFormRequestOptions({ body, ...options })); + return this._client.post('/images/variations', Core.multipartFormRequestOptions({ body, ...options })); } /** * Creates an edited or extended image given an original image and a prompt. */ edit(body: ImageEditParams, options?: Core.RequestOptions): Core.APIPromise { - return this._client.post('/images/edits', multipartFormRequestOptions({ body, ...options })); + return this._client.post('/images/edits', Core.multipartFormRequestOptions({ body, ...options })); } /** @@ -64,7 +63,7 @@ export interface ImageCreateVariationParams { * The image to use as the basis for the variation(s). Must be a valid PNG file, * less than 4MB, and square. */ - image: Uploadable; + image: Core.Uploadable; /** * The model to use for image generation. Only `dall-e-2` is supported at this @@ -104,7 +103,7 @@ export interface ImageEditParams { * The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask * is not provided, image must have transparency, which will be used as the mask. */ - image: Uploadable; + image: Core.Uploadable; /** * A text description of the desired image(s). The maximum length is 1000 @@ -117,7 +116,7 @@ export interface ImageEditParams { * indicate where `image` should be edited. Must be a valid PNG file, less than * 4MB, and have the same dimensions as `image`. */ - mask?: Uploadable; + mask?: Core.Uploadable; /** * The model to use for image generation. Only `dall-e-2` is supported at this diff --git a/src/resources/models.ts b/src/resources/models.ts index 1d94c6c55..178915747 100644 --- a/src/resources/models.ts +++ b/src/resources/models.ts @@ -1,7 +1,7 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../core'; import { APIResource } from '../resource'; +import * as Core from '../core'; import * as ModelsAPI from './models'; import { Page } from '../pagination'; diff --git a/src/resources/moderations.ts b/src/resources/moderations.ts index c018f65e7..86fbbc6b2 100644 --- a/src/resources/moderations.ts +++ b/src/resources/moderations.ts @@ -1,7 +1,7 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Core from '../core'; import { APIResource } from '../resource'; +import * as Core from '../core'; import * as ModerationsAPI from './moderations'; export class Moderations extends APIResource { diff --git a/tests/stringifyQuery.test.ts b/tests/stringifyQuery.test.ts index 6db84d3fe..724743f30 100644 --- a/tests/stringifyQuery.test.ts +++ b/tests/stringifyQuery.test.ts @@ -1,8 +1,10 @@ -import { APIClient } from 'openai/core'; +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -const { stringifyQuery } = APIClient.prototype as any; +import { OpenAI } from 'openai'; -describe('APIClient.stringifyQuery', () => { +const { stringifyQuery } = OpenAI.prototype as any; + +describe(stringifyQuery, () => { for (const [input, expected] of [ [{ a: '1', b: 2, c: true }, 'a=1&b=2&c=true'], [{ a: null, b: false, c: undefined }, 'a=&b=false'], @@ -18,6 +20,7 @@ describe('APIClient.stringifyQuery', () => { expect(stringifyQuery(input)).toEqual(expected); }); } + for (const value of [[], {}, new Date()]) { it(`${JSON.stringify(value)} -> `, () => { expect(() => stringifyQuery({ value })).toThrow(`Cannot stringify type ${typeof value}`); From 31554691829c05871ef20b44a6d4588588a61532 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 25 Jun 2024 16:00:16 +0000 Subject: [PATCH 439/725] release: 4.52.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 10 ++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5ed75d11b..da7db6479 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.52.0" + ".": "4.52.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f9c5d60a0..2288edfd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 4.52.1 (2024-06-25) + +Full Changelog: [v4.52.0...v4.52.1](https://github.com/openai/openai-node/compare/v4.52.0...v4.52.1) + +### Chores + +* **doc:** clarify service tier default value ([#908](https://github.com/openai/openai-node/issues/908)) ([e4c8100](https://github.com/openai/openai-node/commit/e4c8100c7732bdc336b52a48d09945782c0fa2a3)) +* **internal:** minor reformatting ([#911](https://github.com/openai/openai-node/issues/911)) ([78c9377](https://github.com/openai/openai-node/commit/78c9377fcd563645081629a89f3fda2c1ff4e175)) +* **internal:** re-order some imports ([#904](https://github.com/openai/openai-node/issues/904)) ([dbd5c40](https://github.com/openai/openai-node/commit/dbd5c4053ba2f255dfc56676ced5b30381843c75)) + ## 4.52.0 (2024-06-18) Full Changelog: [v4.51.0...v4.52.0](https://github.com/openai/openai-node/compare/v4.51.0...v4.52.0) diff --git a/README.md b/README.md index ebbb38293..04dc048a5 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.52.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.52.1/mod.ts'; ``` diff --git a/package.json b/package.json index c93d881cc..13c0b508b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.52.0", + "version": "4.52.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index c842fa5bc..ad438d13c 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.52.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.52.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 0f31a0778..77b6f5f83 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.52.0'; // x-release-please-version +export const VERSION = '4.52.1'; // x-release-please-version From 18a97570c2b042f2d82bef34246752e1de025414 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 28 Jun 2024 14:11:17 +0000 Subject: [PATCH 440/725] chore: gitignore test server logs (#914) --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 733d72ecf..0af7568e5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.prism.log node_modules yarn-error.log codegen.log From 01c504329b853953840c9419c8e5c5adb1fae081 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 28 Jun 2024 14:11:39 +0000 Subject: [PATCH 441/725] release: 4.52.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index da7db6479..e6023a2ff 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.52.1" + ".": "4.52.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2288edfd6..199217269 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.52.2 (2024-06-28) + +Full Changelog: [v4.52.1...v4.52.2](https://github.com/openai/openai-node/compare/v4.52.1...v4.52.2) + +### Chores + +* gitignore test server logs ([#914](https://github.com/openai/openai-node/issues/914)) ([6316720](https://github.com/openai/openai-node/commit/6316720c3fdd0422965ae3890275062bc0fe3c2b)) + ## 4.52.1 (2024-06-25) Full Changelog: [v4.52.0...v4.52.1](https://github.com/openai/openai-node/compare/v4.52.0...v4.52.1) diff --git a/README.md b/README.md index 04dc048a5..89319e1f2 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.52.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.52.2/mod.ts'; ``` diff --git a/package.json b/package.json index 13c0b508b..a895a7203 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.52.1", + "version": "4.52.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index ad438d13c..f81a4b747 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.52.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.52.2/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 77b6f5f83..bf5e2cb57 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.52.1'; // x-release-please-version +export const VERSION = '4.52.2'; // x-release-please-version From 7da05e3ea5f5a29faa5d564f152a44c9d94e00a1 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 2 Jul 2024 19:50:05 +0000 Subject: [PATCH 442/725] chore: minor change to tests (#916) --- .stats.yml | 2 +- tests/api-resources/chat/completions.test.ts | 2 +- tests/api-resources/completions.test.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.stats.yml b/.stats.yml index 04682ea0a..57f5afaff 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 64 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-3a69e1cc9e1efda3fb82d0fb35961749f886a87594dae9d8d2aa5c60f157f5d2.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-27d8d6da893c1cdd53b491ec05153df22b1e113965f253a1d6eb8d75b628173f.yml diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index c63466f99..56c882d17 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -37,7 +37,7 @@ describe('resource completions', () => { parallel_tool_calls: true, presence_penalty: -2, response_format: { type: 'json_object' }, - seed: -9223372036854776000, + seed: -9007199254740991, service_tier: 'auto', stop: 'string', stream: false, diff --git a/tests/api-resources/completions.test.ts b/tests/api-resources/completions.test.ts index 3f6792447..f78f7a593 100644 --- a/tests/api-resources/completions.test.ts +++ b/tests/api-resources/completions.test.ts @@ -32,7 +32,7 @@ describe('resource completions', () => { max_tokens: 16, n: 1, presence_penalty: -2, - seed: -9223372036854776000, + seed: -9007199254740991, stop: '\n', stream: false, stream_options: { include_usage: true }, From d094e838b1d3877b518e861555cb19c21c3b85cd Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 2 Jul 2024 19:50:31 +0000 Subject: [PATCH 443/725] release: 4.52.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e6023a2ff..4fe1eeec4 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.52.2" + ".": "4.52.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 199217269..d56262e47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.52.3 (2024-07-02) + +Full Changelog: [v4.52.2...v4.52.3](https://github.com/openai/openai-node/compare/v4.52.2...v4.52.3) + +### Chores + +* minor change to tests ([#916](https://github.com/openai/openai-node/issues/916)) ([b8a33e3](https://github.com/openai/openai-node/commit/b8a33e31697b52d733f28d9380e0c02a2d179474)) + ## 4.52.2 (2024-06-28) Full Changelog: [v4.52.1...v4.52.2](https://github.com/openai/openai-node/compare/v4.52.1...v4.52.2) diff --git a/README.md b/README.md index 89319e1f2..fd707baf1 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.52.2/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.52.3/mod.ts'; ``` diff --git a/package.json b/package.json index a895a7203..4f76ed2b1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.52.2", + "version": "4.52.3", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index f81a4b747..208849530 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.52.2/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.52.3/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index bf5e2cb57..9df91ee45 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.52.2'; // x-release-please-version +export const VERSION = '4.52.3'; // x-release-please-version From 8847d22b3014c108f711d48264847d05904b94de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20L=C3=A9vy?= Date: Mon, 8 Jul 2024 18:53:00 +0200 Subject: [PATCH 444/725] refactor(examples): removedduplicated 'messageDelta' streaming event. (#909) --- examples/assistant-stream.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/assistant-stream.ts b/examples/assistant-stream.ts index 6c71bf23b..d1d5b040f 100755 --- a/examples/assistant-stream.ts +++ b/examples/assistant-stream.ts @@ -39,7 +39,6 @@ async function main() { .on('textDelta', (delta, snapshot) => console.log(snapshot)) .on('messageDelta', (delta, snapshot) => console.log(snapshot)) .on('run', (run) => console.log(run)) - .on('messageDelta', (delta, snapshot) => console.log(snapshot)) .on('connect', () => console.log()); const result = await run.finalRun(); console.log('Run Result' + result); From 782a2d9f900d930d159fdd4e0b149ab4df57db8c Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 8 Jul 2024 16:53:18 +0000 Subject: [PATCH 445/725] release: 4.52.4 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4fe1eeec4..d998f5422 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.52.3" + ".": "4.52.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d56262e47..592724a41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.52.4 (2024-07-08) + +Full Changelog: [v4.52.3...v4.52.4](https://github.com/openai/openai-node/compare/v4.52.3...v4.52.4) + +### Refactors + +* **examples:** removedduplicated 'messageDelta' streaming event. ([#909](https://github.com/openai/openai-node/issues/909)) ([7b0b3d2](https://github.com/openai/openai-node/commit/7b0b3d2e228532fca19f49390a2831a1abac72a4)) + ## 4.52.3 (2024-07-02) Full Changelog: [v4.52.2...v4.52.3](https://github.com/openai/openai-node/compare/v4.52.2...v4.52.3) diff --git a/README.md b/README.md index fd707baf1..b2f6d0ce4 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.52.3/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.52.4/mod.ts'; ``` diff --git a/package.json b/package.json index 4f76ed2b1..c104fef39 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.52.3", + "version": "4.52.4", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 208849530..577844cbe 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.52.3/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.52.4/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 9df91ee45..d3f41b987 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.52.3'; // x-release-please-version +export const VERSION = '4.52.4'; // x-release-please-version From 4c804715318cc4cbb0de071426d5b93d85f38539 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Wed, 10 Jul 2024 08:41:18 +0100 Subject: [PATCH 446/725] fix(vectorStores): correctly handle missing `files` in `uploadAndPoll()` (#926) --- src/resources/beta/vector-stores/file-batches.ts | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/resources/beta/vector-stores/file-batches.ts b/src/resources/beta/vector-stores/file-batches.ts index 890a92190..e4a5c46fe 100644 --- a/src/resources/beta/vector-stores/file-batches.ts +++ b/src/resources/beta/vector-stores/file-batches.ts @@ -155,19 +155,22 @@ export class FileBatches extends APIResource { { files, fileIds = [] }: { files: Uploadable[]; fileIds?: string[] }, options?: Core.RequestOptions & { pollIntervalMs?: number; maxConcurrency?: number }, ): Promise { - if (files === null || files.length == 0) { - throw new Error('No files provided to process.'); + if (files == null || files.length == 0) { + throw new Error( + `No \`files\` provided to process. If you've already uploaded files you should use \`.createAndPoll()\` instead`, + ); } const configuredConcurrency = options?.maxConcurrency ?? 5; - //We cap the number of workers at the number of files (so we don't start any unnecessary workers) + + // We cap the number of workers at the number of files (so we don't start any unnecessary workers) const concurrencyLimit = Math.min(configuredConcurrency, files.length); const client = this._client; const fileIterator = files.values(); const allFileIds: string[] = [...fileIds]; - //This code is based on this design. The libraries don't accommodate our environment limits. + // This code is based on this design. The libraries don't accommodate our environment limits. // https://stackoverflow.com/questions/40639432/what-is-the-best-way-to-limit-concurrency-when-using-es6s-promise-all async function processFiles(iterator: IterableIterator) { for (let item of iterator) { @@ -176,10 +179,10 @@ export class FileBatches extends APIResource { } } - //Start workers to process results + // Start workers to process results const workers = Array(concurrencyLimit).fill(fileIterator).map(processFiles); - //Wait for all processing to complete. + // Wait for all processing to complete. await allSettledWithThrow(workers); return await this.createAndPoll(vectorStoreId, { From cf7da2ba056b1d6cc16dd41e0b414bc915c3a4f9 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 10 Jul 2024 07:41:38 +0000 Subject: [PATCH 447/725] release: 4.52.5 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d998f5422..8fe5ee19c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.52.4" + ".": "4.52.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 592724a41..cf1796bd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.52.5 (2024-07-10) + +Full Changelog: [v4.52.4...v4.52.5](https://github.com/openai/openai-node/compare/v4.52.4...v4.52.5) + +### Bug Fixes + +* **vectorStores:** correctly handle missing `files` in `uploadAndPoll()` ([#926](https://github.com/openai/openai-node/issues/926)) ([945fca6](https://github.com/openai/openai-node/commit/945fca646b02b52bbc9163cb51f5d87e7db8afd6)) + ## 4.52.4 (2024-07-08) Full Changelog: [v4.52.3...v4.52.4](https://github.com/openai/openai-node/compare/v4.52.3...v4.52.4) diff --git a/README.md b/README.md index b2f6d0ce4..1e8a544ee 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.52.4/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.52.5/mod.ts'; ``` diff --git a/package.json b/package.json index c104fef39..d8c6dc739 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.52.4", + "version": "4.52.5", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 577844cbe..bd1e495d3 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.52.4/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.52.5/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index d3f41b987..b1bb67f20 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.52.4'; // x-release-please-version +export const VERSION = '4.52.5'; // x-release-please-version From 2a7694d66ee7e31810b761ec346a52a6f9f7a370 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 11 Jul 2024 10:22:54 +0000 Subject: [PATCH 448/725] chore(ci): also run workflows for PRs targeting `next` (#931) --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a55376f66..3be379044 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,7 @@ on: pull_request: branches: - master + - next jobs: lint: From fe84709cc432ac2ca43e180bd9d311bbc09a1e78 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 11 Jul 2024 10:23:25 +0000 Subject: [PATCH 449/725] release: 4.52.6 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8fe5ee19c..4e9f7a5f0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.52.5" + ".": "4.52.6" } diff --git a/CHANGELOG.md b/CHANGELOG.md index cf1796bd6..387555c91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.52.6 (2024-07-11) + +Full Changelog: [v4.52.5...v4.52.6](https://github.com/openai/openai-node/compare/v4.52.5...v4.52.6) + +### Chores + +* **ci:** also run workflows for PRs targeting `next` ([#931](https://github.com/openai/openai-node/issues/931)) ([e3f979a](https://github.com/openai/openai-node/commit/e3f979ae94b2252b9552d1e03de5b92d398a3e28)) + ## 4.52.5 (2024-07-10) Full Changelog: [v4.52.4...v4.52.5](https://github.com/openai/openai-node/compare/v4.52.4...v4.52.5) diff --git a/README.md b/README.md index 1e8a544ee..db66d4303 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.52.5/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.52.6/mod.ts'; ``` diff --git a/package.json b/package.json index d8c6dc739..abbaaaf7c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.52.5", + "version": "4.52.6", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index bd1e495d3..7e8dbdc6e 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.52.5/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.52.6/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index b1bb67f20..8a81ba44e 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.52.5'; // x-release-please-version +export const VERSION = '4.52.6'; // x-release-please-version From acc78034442e198d6181d772bfb5b21b14ba9626 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 11 Jul 2024 14:28:50 +0000 Subject: [PATCH 450/725] docs(examples): update example values (#933) --- tests/api-resources/audio/speech.test.ts | 2 +- .../audio/transcriptions.test.ts | 4 +- .../api-resources/audio/translations.test.ts | 4 +- tests/api-resources/batches.test.ts | 14 ++--- tests/api-resources/beta/assistants.test.ts | 22 ++++---- .../beta/threads/messages.test.ts | 28 +++++----- .../beta/threads/runs/runs.test.ts | 56 +++++++++---------- .../beta/threads/runs/steps.test.ts | 14 ++--- .../beta/threads/threads.test.ts | 52 ++++++++--------- .../beta/vector-stores/file-batches.test.ts | 16 +++--- .../beta/vector-stores/files.test.ts | 16 +++--- .../beta/vector-stores/vector-stores.test.ts | 12 ++-- tests/api-resources/chat/completions.test.ts | 21 +++++-- tests/api-resources/files.test.ts | 16 +++--- .../fine-tuning/jobs/checkpoints.test.ts | 2 +- .../fine-tuning/jobs/jobs.test.ts | 16 +++--- 16 files changed, 153 insertions(+), 142 deletions(-) diff --git a/tests/api-resources/audio/speech.test.ts b/tests/api-resources/audio/speech.test.ts index 18302ce9a..7509c19ca 100644 --- a/tests/api-resources/audio/speech.test.ts +++ b/tests/api-resources/audio/speech.test.ts @@ -11,7 +11,7 @@ describe('resource speech', () => { // binary tests are currently broken test.skip('create: required and optional params', async () => { const response = await openai.audio.speech.create({ - input: 'string', + input: 'input', model: 'string', voice: 'alloy', response_format: 'mp3', diff --git a/tests/api-resources/audio/transcriptions.test.ts b/tests/api-resources/audio/transcriptions.test.ts index 3fc4ca22b..938ddd2b3 100644 --- a/tests/api-resources/audio/transcriptions.test.ts +++ b/tests/api-resources/audio/transcriptions.test.ts @@ -27,8 +27,8 @@ describe('resource transcriptions', () => { const response = await openai.audio.transcriptions.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), model: 'whisper-1', - language: 'string', - prompt: 'string', + language: 'language', + prompt: 'prompt', response_format: 'json', temperature: 0, timestamp_granularities: ['word', 'segment'], diff --git a/tests/api-resources/audio/translations.test.ts b/tests/api-resources/audio/translations.test.ts index 0853bedfb..3f05bc90f 100644 --- a/tests/api-resources/audio/translations.test.ts +++ b/tests/api-resources/audio/translations.test.ts @@ -27,8 +27,8 @@ describe('resource translations', () => { const response = await openai.audio.translations.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), model: 'whisper-1', - prompt: 'string', - response_format: 'string', + prompt: 'prompt', + response_format: 'response_format', temperature: 0, }); }); diff --git a/tests/api-resources/batches.test.ts b/tests/api-resources/batches.test.ts index 2cd845de6..2861298a8 100644 --- a/tests/api-resources/batches.test.ts +++ b/tests/api-resources/batches.test.ts @@ -13,7 +13,7 @@ describe('resource batches', () => { const responsePromise = openai.batches.create({ completion_window: '24h', endpoint: '/v1/chat/completions', - input_file_id: 'string', + input_file_id: 'input_file_id', }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); @@ -28,13 +28,13 @@ describe('resource batches', () => { const response = await openai.batches.create({ completion_window: '24h', endpoint: '/v1/chat/completions', - input_file_id: 'string', + input_file_id: 'input_file_id', metadata: { foo: 'string' }, }); }); test('retrieve', async () => { - const responsePromise = openai.batches.retrieve('string'); + const responsePromise = openai.batches.retrieve('batch_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -46,7 +46,7 @@ describe('resource batches', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.batches.retrieve('string', { path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(openai.batches.retrieve('batch_id', { path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); @@ -72,12 +72,12 @@ describe('resource batches', () => { test('list: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.batches.list({ after: 'string', limit: 0 }, { path: '/_stainless_unknown_path' }), + openai.batches.list({ after: 'after', limit: 0 }, { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('cancel', async () => { - const responsePromise = openai.batches.cancel('string'); + const responsePromise = openai.batches.cancel('batch_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -89,7 +89,7 @@ describe('resource batches', () => { test('cancel: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.batches.cancel('string', { path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(openai.batches.cancel('batch_id', { path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); diff --git a/tests/api-resources/beta/assistants.test.ts b/tests/api-resources/beta/assistants.test.ts index 4049f09b3..44ee2921d 100644 --- a/tests/api-resources/beta/assistants.test.ts +++ b/tests/api-resources/beta/assistants.test.ts @@ -23,10 +23,10 @@ describe('resource assistants', () => { test('create: required and optional params', async () => { const response = await openai.beta.assistants.create({ model: 'gpt-4-turbo', - description: 'string', - instructions: 'string', + description: 'description', + instructions: 'instructions', metadata: {}, - name: 'string', + name: 'name', response_format: 'none', temperature: 1, tool_resources: { @@ -44,7 +44,7 @@ describe('resource assistants', () => { }); test('retrieve', async () => { - const responsePromise = openai.beta.assistants.retrieve('string'); + const responsePromise = openai.beta.assistants.retrieve('assistant_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -57,12 +57,12 @@ describe('resource assistants', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.assistants.retrieve('string', { path: '/_stainless_unknown_path' }), + openai.beta.assistants.retrieve('assistant_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('update', async () => { - const responsePromise = openai.beta.assistants.update('string', {}); + const responsePromise = openai.beta.assistants.update('assistant_id', {}); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -94,14 +94,14 @@ describe('resource assistants', () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( openai.beta.assistants.list( - { after: 'string', before: 'string', limit: 0, order: 'asc' }, + { after: 'after', before: 'before', limit: 0, order: 'asc' }, { path: '/_stainless_unknown_path' }, ), ).rejects.toThrow(OpenAI.NotFoundError); }); test('del', async () => { - const responsePromise = openai.beta.assistants.del('string'); + const responsePromise = openai.beta.assistants.del('assistant_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -113,8 +113,8 @@ describe('resource assistants', () => { test('del: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.beta.assistants.del('string', { path: '/_stainless_unknown_path' })).rejects.toThrow( - OpenAI.NotFoundError, - ); + await expect( + openai.beta.assistants.del('assistant_id', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); }); }); diff --git a/tests/api-resources/beta/threads/messages.test.ts b/tests/api-resources/beta/threads/messages.test.ts index 01268586c..0f2877af1 100644 --- a/tests/api-resources/beta/threads/messages.test.ts +++ b/tests/api-resources/beta/threads/messages.test.ts @@ -10,7 +10,7 @@ const openai = new OpenAI({ describe('resource messages', () => { test('create: only required params', async () => { - const responsePromise = openai.beta.threads.messages.create('string', { + const responsePromise = openai.beta.threads.messages.create('thread_id', { content: 'string', role: 'user', }); @@ -24,20 +24,20 @@ describe('resource messages', () => { }); test('create: required and optional params', async () => { - const response = await openai.beta.threads.messages.create('string', { + const response = await openai.beta.threads.messages.create('thread_id', { content: 'string', role: 'user', attachments: [ { - file_id: 'string', + file_id: 'file_id', tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], }, { - file_id: 'string', + file_id: 'file_id', tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], }, { - file_id: 'string', + file_id: 'file_id', tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], }, ], @@ -46,7 +46,7 @@ describe('resource messages', () => { }); test('retrieve', async () => { - const responsePromise = openai.beta.threads.messages.retrieve('string', 'string'); + const responsePromise = openai.beta.threads.messages.retrieve('thread_id', 'message_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -59,12 +59,12 @@ describe('resource messages', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.messages.retrieve('string', 'string', { path: '/_stainless_unknown_path' }), + openai.beta.threads.messages.retrieve('thread_id', 'message_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('update', async () => { - const responsePromise = openai.beta.threads.messages.update('string', 'string', {}); + const responsePromise = openai.beta.threads.messages.update('thread_id', 'message_id', {}); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -75,7 +75,7 @@ describe('resource messages', () => { }); test('list', async () => { - const responsePromise = openai.beta.threads.messages.list('string'); + const responsePromise = openai.beta.threads.messages.list('thread_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -88,7 +88,7 @@ describe('resource messages', () => { test('list: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.messages.list('string', { path: '/_stainless_unknown_path' }), + openai.beta.threads.messages.list('thread_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); @@ -96,15 +96,15 @@ describe('resource messages', () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( openai.beta.threads.messages.list( - 'string', - { after: 'string', before: 'string', limit: 0, order: 'asc', run_id: 'string' }, + 'thread_id', + { after: 'after', before: 'before', limit: 0, order: 'asc', run_id: 'run_id' }, { path: '/_stainless_unknown_path' }, ), ).rejects.toThrow(OpenAI.NotFoundError); }); test('del', async () => { - const responsePromise = openai.beta.threads.messages.del('string', 'string'); + const responsePromise = openai.beta.threads.messages.del('thread_id', 'message_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -117,7 +117,7 @@ describe('resource messages', () => { test('del: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.messages.del('string', 'string', { path: '/_stainless_unknown_path' }), + openai.beta.threads.messages.del('thread_id', 'message_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); }); diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts index 5aba82ff8..b422a9a3f 100644 --- a/tests/api-resources/beta/threads/runs/runs.test.ts +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -10,7 +10,7 @@ const openai = new OpenAI({ describe('resource runs', () => { test('create: only required params', async () => { - const responsePromise = openai.beta.threads.runs.create('string', { assistant_id: 'string' }); + const responsePromise = openai.beta.threads.runs.create('thread_id', { assistant_id: 'assistant_id' }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -21,16 +21,16 @@ describe('resource runs', () => { }); test('create: required and optional params', async () => { - const response = await openai.beta.threads.runs.create('string', { - assistant_id: 'string', - additional_instructions: 'string', + const response = await openai.beta.threads.runs.create('thread_id', { + assistant_id: 'assistant_id', + additional_instructions: 'additional_instructions', additional_messages: [ { role: 'user', content: 'string', attachments: [ { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -38,7 +38,7 @@ describe('resource runs', () => { ], }, { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -46,7 +46,7 @@ describe('resource runs', () => { ], }, { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -61,7 +61,7 @@ describe('resource runs', () => { content: 'string', attachments: [ { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -69,7 +69,7 @@ describe('resource runs', () => { ], }, { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -77,7 +77,7 @@ describe('resource runs', () => { ], }, { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -92,7 +92,7 @@ describe('resource runs', () => { content: 'string', attachments: [ { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -100,7 +100,7 @@ describe('resource runs', () => { ], }, { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -108,7 +108,7 @@ describe('resource runs', () => { ], }, { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -119,7 +119,7 @@ describe('resource runs', () => { metadata: {}, }, ], - instructions: 'string', + instructions: 'instructions', max_completion_tokens: 256, max_prompt_tokens: 256, metadata: {}, @@ -136,7 +136,7 @@ describe('resource runs', () => { }); test('retrieve', async () => { - const responsePromise = openai.beta.threads.runs.retrieve('string', 'string'); + const responsePromise = openai.beta.threads.runs.retrieve('thread_id', 'run_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -149,12 +149,12 @@ describe('resource runs', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.runs.retrieve('string', 'string', { path: '/_stainless_unknown_path' }), + openai.beta.threads.runs.retrieve('thread_id', 'run_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('update', async () => { - const responsePromise = openai.beta.threads.runs.update('string', 'string', {}); + const responsePromise = openai.beta.threads.runs.update('thread_id', 'run_id', {}); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -165,7 +165,7 @@ describe('resource runs', () => { }); test('list', async () => { - const responsePromise = openai.beta.threads.runs.list('string'); + const responsePromise = openai.beta.threads.runs.list('thread_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -178,7 +178,7 @@ describe('resource runs', () => { test('list: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.runs.list('string', { path: '/_stainless_unknown_path' }), + openai.beta.threads.runs.list('thread_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); @@ -186,15 +186,15 @@ describe('resource runs', () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( openai.beta.threads.runs.list( - 'string', - { after: 'string', before: 'string', limit: 0, order: 'asc' }, + 'thread_id', + { after: 'after', before: 'before', limit: 0, order: 'asc' }, { path: '/_stainless_unknown_path' }, ), ).rejects.toThrow(OpenAI.NotFoundError); }); test('cancel', async () => { - const responsePromise = openai.beta.threads.runs.cancel('string', 'string'); + const responsePromise = openai.beta.threads.runs.cancel('thread_id', 'run_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -207,12 +207,12 @@ describe('resource runs', () => { test('cancel: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.runs.cancel('string', 'string', { path: '/_stainless_unknown_path' }), + openai.beta.threads.runs.cancel('thread_id', 'run_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('submitToolOutputs: only required params', async () => { - const responsePromise = openai.beta.threads.runs.submitToolOutputs('string', 'string', { + const responsePromise = openai.beta.threads.runs.submitToolOutputs('thread_id', 'run_id', { tool_outputs: [{}, {}, {}], }); const rawResponse = await responsePromise.asResponse(); @@ -225,11 +225,11 @@ describe('resource runs', () => { }); test('submitToolOutputs: required and optional params', async () => { - const response = await openai.beta.threads.runs.submitToolOutputs('string', 'string', { + const response = await openai.beta.threads.runs.submitToolOutputs('thread_id', 'run_id', { tool_outputs: [ - { tool_call_id: 'string', output: 'string' }, - { tool_call_id: 'string', output: 'string' }, - { tool_call_id: 'string', output: 'string' }, + { tool_call_id: 'tool_call_id', output: 'output' }, + { tool_call_id: 'tool_call_id', output: 'output' }, + { tool_call_id: 'tool_call_id', output: 'output' }, ], stream: false, }); diff --git a/tests/api-resources/beta/threads/runs/steps.test.ts b/tests/api-resources/beta/threads/runs/steps.test.ts index 76495a1a3..1981d67fd 100644 --- a/tests/api-resources/beta/threads/runs/steps.test.ts +++ b/tests/api-resources/beta/threads/runs/steps.test.ts @@ -10,7 +10,7 @@ const openai = new OpenAI({ describe('resource steps', () => { test('retrieve', async () => { - const responsePromise = openai.beta.threads.runs.steps.retrieve('string', 'string', 'string'); + const responsePromise = openai.beta.threads.runs.steps.retrieve('thread_id', 'run_id', 'step_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -23,14 +23,14 @@ describe('resource steps', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.runs.steps.retrieve('string', 'string', 'string', { + openai.beta.threads.runs.steps.retrieve('thread_id', 'run_id', 'step_id', { path: '/_stainless_unknown_path', }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('list', async () => { - const responsePromise = openai.beta.threads.runs.steps.list('string', 'string'); + const responsePromise = openai.beta.threads.runs.steps.list('thread_id', 'run_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -43,7 +43,7 @@ describe('resource steps', () => { test('list: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.runs.steps.list('string', 'string', { path: '/_stainless_unknown_path' }), + openai.beta.threads.runs.steps.list('thread_id', 'run_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); @@ -51,9 +51,9 @@ describe('resource steps', () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( openai.beta.threads.runs.steps.list( - 'string', - 'string', - { after: 'string', before: 'string', limit: 0, order: 'asc' }, + 'thread_id', + 'run_id', + { after: 'after', before: 'before', limit: 0, order: 'asc' }, { path: '/_stainless_unknown_path' }, ), ).rejects.toThrow(OpenAI.NotFoundError); diff --git a/tests/api-resources/beta/threads/threads.test.ts b/tests/api-resources/beta/threads/threads.test.ts index 85f89533c..0d2d93a61 100644 --- a/tests/api-resources/beta/threads/threads.test.ts +++ b/tests/api-resources/beta/threads/threads.test.ts @@ -38,7 +38,7 @@ describe('resource threads', () => { content: 'string', attachments: [ { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -46,7 +46,7 @@ describe('resource threads', () => { ], }, { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -54,7 +54,7 @@ describe('resource threads', () => { ], }, { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -69,7 +69,7 @@ describe('resource threads', () => { content: 'string', attachments: [ { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -77,7 +77,7 @@ describe('resource threads', () => { ], }, { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -85,7 +85,7 @@ describe('resource threads', () => { ], }, { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -100,7 +100,7 @@ describe('resource threads', () => { content: 'string', attachments: [ { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -108,7 +108,7 @@ describe('resource threads', () => { ], }, { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -116,7 +116,7 @@ describe('resource threads', () => { ], }, { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -148,7 +148,7 @@ describe('resource threads', () => { }); test('retrieve', async () => { - const responsePromise = openai.beta.threads.retrieve('string'); + const responsePromise = openai.beta.threads.retrieve('thread_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -161,12 +161,12 @@ describe('resource threads', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.retrieve('string', { path: '/_stainless_unknown_path' }), + openai.beta.threads.retrieve('thread_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('update', async () => { - const responsePromise = openai.beta.threads.update('string', {}); + const responsePromise = openai.beta.threads.update('thread_id', {}); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -177,7 +177,7 @@ describe('resource threads', () => { }); test('del', async () => { - const responsePromise = openai.beta.threads.del('string'); + const responsePromise = openai.beta.threads.del('thread_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -189,13 +189,13 @@ describe('resource threads', () => { test('del: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.beta.threads.del('string', { path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(openai.beta.threads.del('thread_id', { path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); test('createAndRun: only required params', async () => { - const responsePromise = openai.beta.threads.createAndRun({ assistant_id: 'string' }); + const responsePromise = openai.beta.threads.createAndRun({ assistant_id: 'assistant_id' }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -207,8 +207,8 @@ describe('resource threads', () => { test('createAndRun: required and optional params', async () => { const response = await openai.beta.threads.createAndRun({ - assistant_id: 'string', - instructions: 'string', + assistant_id: 'assistant_id', + instructions: 'instructions', max_completion_tokens: 256, max_prompt_tokens: 256, metadata: {}, @@ -224,7 +224,7 @@ describe('resource threads', () => { content: 'string', attachments: [ { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -232,7 +232,7 @@ describe('resource threads', () => { ], }, { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -240,7 +240,7 @@ describe('resource threads', () => { ], }, { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -255,7 +255,7 @@ describe('resource threads', () => { content: 'string', attachments: [ { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -263,7 +263,7 @@ describe('resource threads', () => { ], }, { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -271,7 +271,7 @@ describe('resource threads', () => { ], }, { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -286,7 +286,7 @@ describe('resource threads', () => { content: 'string', attachments: [ { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -294,7 +294,7 @@ describe('resource threads', () => { ], }, { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, @@ -302,7 +302,7 @@ describe('resource threads', () => { ], }, { - file_id: 'string', + file_id: 'file_id', tools: [ { type: 'code_interpreter' }, { type: 'code_interpreter' }, diff --git a/tests/api-resources/beta/vector-stores/file-batches.test.ts b/tests/api-resources/beta/vector-stores/file-batches.test.ts index b8ff697b7..33bfd2ef7 100644 --- a/tests/api-resources/beta/vector-stores/file-batches.test.ts +++ b/tests/api-resources/beta/vector-stores/file-batches.test.ts @@ -50,7 +50,7 @@ describe('resource fileBatches', () => { }); test('cancel', async () => { - const responsePromise = openai.beta.vectorStores.fileBatches.cancel('string', 'string'); + const responsePromise = openai.beta.vectorStores.fileBatches.cancel('vector_store_id', 'batch_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -63,12 +63,14 @@ describe('resource fileBatches', () => { test('cancel: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.vectorStores.fileBatches.cancel('string', 'string', { path: '/_stainless_unknown_path' }), + openai.beta.vectorStores.fileBatches.cancel('vector_store_id', 'batch_id', { + path: '/_stainless_unknown_path', + }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('listFiles', async () => { - const responsePromise = openai.beta.vectorStores.fileBatches.listFiles('string', 'string'); + const responsePromise = openai.beta.vectorStores.fileBatches.listFiles('vector_store_id', 'batch_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -81,7 +83,7 @@ describe('resource fileBatches', () => { test('listFiles: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.vectorStores.fileBatches.listFiles('string', 'string', { + openai.beta.vectorStores.fileBatches.listFiles('vector_store_id', 'batch_id', { path: '/_stainless_unknown_path', }), ).rejects.toThrow(OpenAI.NotFoundError); @@ -91,9 +93,9 @@ describe('resource fileBatches', () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( openai.beta.vectorStores.fileBatches.listFiles( - 'string', - 'string', - { after: 'string', before: 'string', filter: 'in_progress', limit: 0, order: 'asc' }, + 'vector_store_id', + 'batch_id', + { after: 'after', before: 'before', filter: 'in_progress', limit: 0, order: 'asc' }, { path: '/_stainless_unknown_path' }, ), ).rejects.toThrow(OpenAI.NotFoundError); diff --git a/tests/api-resources/beta/vector-stores/files.test.ts b/tests/api-resources/beta/vector-stores/files.test.ts index 60906dac3..4b21aed30 100644 --- a/tests/api-resources/beta/vector-stores/files.test.ts +++ b/tests/api-resources/beta/vector-stores/files.test.ts @@ -10,7 +10,7 @@ const openai = new OpenAI({ describe('resource files', () => { test('create: only required params', async () => { - const responsePromise = openai.beta.vectorStores.files.create('vs_abc123', { file_id: 'string' }); + const responsePromise = openai.beta.vectorStores.files.create('vs_abc123', { file_id: 'file_id' }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -22,7 +22,7 @@ describe('resource files', () => { test('create: required and optional params', async () => { const response = await openai.beta.vectorStores.files.create('vs_abc123', { - file_id: 'string', + file_id: 'file_id', chunking_strategy: { type: 'auto' }, }); }); @@ -48,7 +48,7 @@ describe('resource files', () => { }); test('list', async () => { - const responsePromise = openai.beta.vectorStores.files.list('string'); + const responsePromise = openai.beta.vectorStores.files.list('vector_store_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -61,7 +61,7 @@ describe('resource files', () => { test('list: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.vectorStores.files.list('string', { path: '/_stainless_unknown_path' }), + openai.beta.vectorStores.files.list('vector_store_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); @@ -69,15 +69,15 @@ describe('resource files', () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( openai.beta.vectorStores.files.list( - 'string', - { after: 'string', before: 'string', filter: 'in_progress', limit: 0, order: 'asc' }, + 'vector_store_id', + { after: 'after', before: 'before', filter: 'in_progress', limit: 0, order: 'asc' }, { path: '/_stainless_unknown_path' }, ), ).rejects.toThrow(OpenAI.NotFoundError); }); test('del', async () => { - const responsePromise = openai.beta.vectorStores.files.del('string', 'string'); + const responsePromise = openai.beta.vectorStores.files.del('vector_store_id', 'file_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -90,7 +90,7 @@ describe('resource files', () => { test('del: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.vectorStores.files.del('string', 'string', { path: '/_stainless_unknown_path' }), + openai.beta.vectorStores.files.del('vector_store_id', 'file_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); }); diff --git a/tests/api-resources/beta/vector-stores/vector-stores.test.ts b/tests/api-resources/beta/vector-stores/vector-stores.test.ts index 445fa9ebf..11dcceef8 100644 --- a/tests/api-resources/beta/vector-stores/vector-stores.test.ts +++ b/tests/api-resources/beta/vector-stores/vector-stores.test.ts @@ -21,7 +21,7 @@ describe('resource vectorStores', () => { }); test('retrieve', async () => { - const responsePromise = openai.beta.vectorStores.retrieve('string'); + const responsePromise = openai.beta.vectorStores.retrieve('vector_store_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -34,12 +34,12 @@ describe('resource vectorStores', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.vectorStores.retrieve('string', { path: '/_stainless_unknown_path' }), + openai.beta.vectorStores.retrieve('vector_store_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('update', async () => { - const responsePromise = openai.beta.vectorStores.update('string', {}); + const responsePromise = openai.beta.vectorStores.update('vector_store_id', {}); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -71,14 +71,14 @@ describe('resource vectorStores', () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( openai.beta.vectorStores.list( - { after: 'string', before: 'string', limit: 0, order: 'asc' }, + { after: 'after', before: 'before', limit: 0, order: 'asc' }, { path: '/_stainless_unknown_path' }, ), ).rejects.toThrow(OpenAI.NotFoundError); }); test('del', async () => { - const responsePromise = openai.beta.vectorStores.del('string'); + const responsePromise = openai.beta.vectorStores.del('vector_store_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -91,7 +91,7 @@ describe('resource vectorStores', () => { test('del: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.vectorStores.del('string', { path: '/_stainless_unknown_path' }), + openai.beta.vectorStores.del('vector_store_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); }); diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 56c882d17..66ef2d023 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -11,7 +11,7 @@ const openai = new OpenAI({ describe('resource completions', () => { test('create: only required params', async () => { const responsePromise = openai.chat.completions.create({ - messages: [{ content: 'string', role: 'system' }], + messages: [{ content: 'content', role: 'system' }], model: 'gpt-4-turbo', }); const rawResponse = await responsePromise.asResponse(); @@ -25,11 +25,11 @@ describe('resource completions', () => { test('create: required and optional params', async () => { const response = await openai.chat.completions.create({ - messages: [{ content: 'string', role: 'system', name: 'string' }], + messages: [{ content: 'content', role: 'system', name: 'name' }], model: 'gpt-4-turbo', frequency_penalty: -2, function_call: 'none', - functions: [{ description: 'string', name: 'string', parameters: { foo: 'bar' } }], + functions: [{ description: 'description', name: 'name', parameters: { foo: 'bar' } }], logit_bias: { foo: 0 }, logprobs: true, max_tokens: 0, @@ -45,9 +45,18 @@ describe('resource completions', () => { temperature: 1, tool_choice: 'none', tools: [ - { type: 'function', function: { description: 'string', name: 'string', parameters: { foo: 'bar' } } }, - { type: 'function', function: { description: 'string', name: 'string', parameters: { foo: 'bar' } } }, - { type: 'function', function: { description: 'string', name: 'string', parameters: { foo: 'bar' } } }, + { + type: 'function', + function: { description: 'description', name: 'name', parameters: { foo: 'bar' } }, + }, + { + type: 'function', + function: { description: 'description', name: 'name', parameters: { foo: 'bar' } }, + }, + { + type: 'function', + function: { description: 'description', name: 'name', parameters: { foo: 'bar' } }, + }, ], top_logprobs: 0, top_p: 1, diff --git a/tests/api-resources/files.test.ts b/tests/api-resources/files.test.ts index 2fda1c947..55eded995 100644 --- a/tests/api-resources/files.test.ts +++ b/tests/api-resources/files.test.ts @@ -31,7 +31,7 @@ describe('resource files', () => { }); test('retrieve', async () => { - const responsePromise = openai.files.retrieve('string'); + const responsePromise = openai.files.retrieve('file_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -43,7 +43,7 @@ describe('resource files', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.files.retrieve('string', { path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(openai.files.retrieve('file_id', { path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); @@ -69,12 +69,12 @@ describe('resource files', () => { test('list: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.files.list({ purpose: 'string' }, { path: '/_stainless_unknown_path' }), + openai.files.list({ purpose: 'purpose' }, { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('del', async () => { - const responsePromise = openai.files.del('string'); + const responsePromise = openai.files.del('file_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -86,20 +86,20 @@ describe('resource files', () => { test('del: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.files.del('string', { path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(openai.files.del('file_id', { path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); test('content: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.files.content('string', { path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(openai.files.content('file_id', { path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); test('retrieveContent', async () => { - const responsePromise = openai.files.retrieveContent('string'); + const responsePromise = openai.files.retrieveContent('file_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -112,7 +112,7 @@ describe('resource files', () => { test('retrieveContent: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.files.retrieveContent('string', { path: '/_stainless_unknown_path' }), + openai.files.retrieveContent('file_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); }); diff --git a/tests/api-resources/fine-tuning/jobs/checkpoints.test.ts b/tests/api-resources/fine-tuning/jobs/checkpoints.test.ts index 1844d7c87..3a01448e2 100644 --- a/tests/api-resources/fine-tuning/jobs/checkpoints.test.ts +++ b/tests/api-resources/fine-tuning/jobs/checkpoints.test.ts @@ -34,7 +34,7 @@ describe('resource checkpoints', () => { await expect( openai.fineTuning.jobs.checkpoints.list( 'ft-AF1WoRqd3aJAHsqc9NY7iL8F', - { after: 'string', limit: 0 }, + { after: 'after', limit: 0 }, { path: '/_stainless_unknown_path' }, ), ).rejects.toThrow(OpenAI.NotFoundError); diff --git a/tests/api-resources/fine-tuning/jobs/jobs.test.ts b/tests/api-resources/fine-tuning/jobs/jobs.test.ts index d2207cd97..c14912c3a 100644 --- a/tests/api-resources/fine-tuning/jobs/jobs.test.ts +++ b/tests/api-resources/fine-tuning/jobs/jobs.test.ts @@ -33,8 +33,8 @@ describe('resource jobs', () => { type: 'wandb', wandb: { project: 'my-wandb-project', - name: 'string', - entity: 'string', + name: 'name', + entity: 'entity', tags: ['custom-tag', 'custom-tag', 'custom-tag'], }, }, @@ -42,8 +42,8 @@ describe('resource jobs', () => { type: 'wandb', wandb: { project: 'my-wandb-project', - name: 'string', - entity: 'string', + name: 'name', + entity: 'entity', tags: ['custom-tag', 'custom-tag', 'custom-tag'], }, }, @@ -51,8 +51,8 @@ describe('resource jobs', () => { type: 'wandb', wandb: { project: 'my-wandb-project', - name: 'string', - entity: 'string', + name: 'name', + entity: 'entity', tags: ['custom-tag', 'custom-tag', 'custom-tag'], }, }, @@ -102,7 +102,7 @@ describe('resource jobs', () => { test('list: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.fineTuning.jobs.list({ after: 'string', limit: 0 }, { path: '/_stainless_unknown_path' }), + openai.fineTuning.jobs.list({ after: 'after', limit: 0 }, { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); @@ -147,7 +147,7 @@ describe('resource jobs', () => { await expect( openai.fineTuning.jobs.listEvents( 'ft-AF1WoRqd3aJAHsqc9NY7iL8F', - { after: 'string', limit: 0 }, + { after: 'after', limit: 0 }, { path: '/_stainless_unknown_path' }, ), ).rejects.toThrow(OpenAI.NotFoundError); From 5873a017f0f2040ef97040a8df19c5b4dc2a66fd Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 11 Jul 2024 14:29:16 +0000 Subject: [PATCH 451/725] release: 4.52.7 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4e9f7a5f0..dc058ce75 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.52.6" + ".": "4.52.7" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 387555c91..7bff5e4eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.52.7 (2024-07-11) + +Full Changelog: [v4.52.6...v4.52.7](https://github.com/openai/openai-node/compare/v4.52.6...v4.52.7) + +### Documentation + +* **examples:** update example values ([#933](https://github.com/openai/openai-node/issues/933)) ([92512ab](https://github.com/openai/openai-node/commit/92512abcd7ab5d7c452dfae007c3a25041062656)) + ## 4.52.6 (2024-07-11) Full Changelog: [v4.52.5...v4.52.6](https://github.com/openai/openai-node/compare/v4.52.5...v4.52.6) diff --git a/README.md b/README.md index db66d4303..6d971d138 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.52.6/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.52.7/mod.ts'; ``` diff --git a/package.json b/package.json index abbaaaf7c..1f00b2180 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.52.6", + "version": "4.52.7", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 7e8dbdc6e..ba47751d8 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.52.6/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.52.7/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 8a81ba44e..b9a220285 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.52.6'; // x-release-please-version +export const VERSION = '4.52.7'; // x-release-please-version From c39ee6d89b7dec5c88cd99af3e72de8c13f78fcd Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 16 Jul 2024 13:42:54 +0000 Subject: [PATCH 452/725] chore(docs): mention support of web browser runtimes (#938) --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 6d971d138..3ad75fbda 100644 --- a/README.md +++ b/README.md @@ -617,6 +617,18 @@ The following runtimes are supported: - Vercel Edge Runtime. - Jest 28 or greater with the `"node"` environment (`"jsdom"` is not supported at this time). - Nitro v2.6 or greater. +- Web browsers: disabled by default to avoid exposing your secret API credentials. Enable browser support by explicitly setting `dangerouslyAllowBrowser` to true'. +

+ More explanation + ### Why is this dangerous? + Enabling the `dangerouslyAllowBrowser` option can be dangerous because it exposes your secret API credentials in the client-side code. Web browsers are inherently less secure than server environments, + any user with access to the browser can potentially inspect, extract, and misuse these credentials. This could lead to unauthorized access using your credentials and potentially compromise sensitive data or functionality. + ### When might this not be dangerous? + In certain scenarios where enabling browser support might not pose significant risks: + - Internal Tools: If the application is used solely within a controlled internal environment where the users are trusted, the risk of credential exposure can be mitigated. + - Public APIs with Limited Scope: If your API has very limited scope and the exposed credentials do not grant access to sensitive data or critical operations, the potential impact of exposure is reduced. + - Development or debugging purpose: Enabling this feature temporarily might be acceptable, provided the credentials are short-lived, aren't also used in production environments, or are frequently rotated. +
Note that React Native is not supported at this time. From 85b651080926e74a91fc6effc696103baaf905a2 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 18 Jul 2024 16:35:33 +0000 Subject: [PATCH 453/725] chore(docs): use client instead of package name in Node examples (#941) --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 3ad75fbda..3d303e5b0 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ The full API of this library can be found in [api.md file](api.md) along with ma ```js import OpenAI from 'openai'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: process.env['OPENAI_API_KEY'], // This is the default and can be omitted }); @@ -53,7 +53,7 @@ We provide support for streaming responses using Server Sent Events (SSE). ```ts import OpenAI from 'openai'; -const openai = new OpenAI(); +const client = new OpenAI(); async function main() { const stream = await openai.chat.completions.create({ @@ -80,7 +80,7 @@ This library includes TypeScript definitions for all request params and response ```ts import OpenAI from 'openai'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: process.env['OPENAI_API_KEY'], // This is the default and can be omitted }); @@ -301,7 +301,7 @@ import fs from 'fs'; import fetch from 'node-fetch'; import OpenAI, { toFile } from 'openai'; -const openai = new OpenAI(); +const client = new OpenAI(); // If you have access to Node `fs` we recommend using `fs.createReadStream()`: await openai.files.create({ file: fs.createReadStream('input.jsonl'), purpose: 'fine-tune' }); @@ -399,7 +399,7 @@ You can use the `maxRetries` option to configure or disable this: ```js // Configure the default for all requests: -const openai = new OpenAI({ +const client = new OpenAI({ maxRetries: 0, // default is 2 }); @@ -416,7 +416,7 @@ Requests time out after 10 minutes by default. You can configure this with a `ti ```ts // Configure the default for all requests: -const openai = new OpenAI({ +const client = new OpenAI({ timeout: 20 * 1000, // 20 seconds (default is 10 minutes) }); @@ -471,7 +471,7 @@ You can also use the `.withResponse()` method to get the raw `Response` along wi ```ts -const openai = new OpenAI(); +const client = new OpenAI(); const response = await openai.chat.completions .create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-3.5-turbo' }) @@ -582,7 +582,7 @@ import http from 'http'; import { HttpsProxyAgent } from 'https-proxy-agent'; // Configure the default for all requests: -const openai = new OpenAI({ +const client = new OpenAI({ httpAgent: new HttpsProxyAgent(process.env.PROXY_URL), }); From a56fdb8e656fa1c306f1bb7fda595b37c5e9b3ed Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 19 Jul 2024 14:54:27 +0000 Subject: [PATCH 454/725] feat(api): add new gpt-4o-mini models (#942) --- .stats.yml | 2 +- src/resources/beta/assistants.ts | 2 ++ src/resources/beta/threads/runs/runs.ts | 2 ++ src/resources/beta/threads/threads.ts | 2 ++ src/resources/chat/chat.ts | 2 ++ 5 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index 57f5afaff..27e2ce5ed 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 64 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-27d8d6da893c1cdd53b491ec05153df22b1e113965f253a1d6eb8d75b628173f.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-518ca6c60061d3e8bc0971facf40d752f2aea62e3522cc168ad29a1f29cab3dd.yml diff --git a/src/resources/beta/assistants.ts b/src/resources/beta/assistants.ts index 5d326a593..abacfd06e 100644 --- a/src/resources/beta/assistants.ts +++ b/src/resources/beta/assistants.ts @@ -1057,6 +1057,8 @@ export interface AssistantCreateParams { | (string & {}) | 'gpt-4o' | 'gpt-4o-2024-05-13' + | 'gpt-4o-mini' + | 'gpt-4o-mini-2024-07-18' | 'gpt-4-turbo' | 'gpt-4-turbo-2024-04-09' | 'gpt-4-0125-preview' diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index b4ed09cc2..24b6ce4a2 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -672,6 +672,8 @@ export interface RunCreateParamsBase { | (string & {}) | 'gpt-4o' | 'gpt-4o-2024-05-13' + | 'gpt-4o-mini' + | 'gpt-4o-mini-2024-07-18' | 'gpt-4-turbo' | 'gpt-4-turbo-2024-04-09' | 'gpt-4-0125-preview' diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index aded9daf1..04ce7b57d 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -549,6 +549,8 @@ export interface ThreadCreateAndRunParamsBase { | (string & {}) | 'gpt-4o' | 'gpt-4o-2024-05-13' + | 'gpt-4o-mini' + | 'gpt-4o-mini-2024-07-18' | 'gpt-4-turbo' | 'gpt-4-turbo-2024-04-09' | 'gpt-4-0125-preview' diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index da4e90d42..74cda326e 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -11,6 +11,8 @@ export class Chat extends APIResource { export type ChatModel = | 'gpt-4o' | 'gpt-4o-2024-05-13' + | 'gpt-4o-mini' + | 'gpt-4o-mini-2024-07-18' | 'gpt-4-turbo' | 'gpt-4-turbo-2024-04-09' | 'gpt-4-0125-preview' From c770e34b4c01321e5459b30d72d8615e6755798b Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 11:10:38 +0000 Subject: [PATCH 455/725] feat(api): add uploads endpoints (#946) --- .stats.yml | 4 +- api.md | 22 +++ src/index.ts | 6 + src/resources/chat/completions.ts | 1 + src/resources/index.ts | 1 + src/resources/uploads/index.ts | 4 + src/resources/uploads/parts.ts | 68 ++++++++ src/resources/uploads/uploads.ts | 169 ++++++++++++++++++++ tests/api-resources/uploads/parts.test.ts | 30 ++++ tests/api-resources/uploads/uploads.test.ts | 74 +++++++++ 10 files changed, 377 insertions(+), 2 deletions(-) create mode 100644 src/resources/uploads/index.ts create mode 100644 src/resources/uploads/parts.ts create mode 100644 src/resources/uploads/uploads.ts create mode 100644 tests/api-resources/uploads/parts.test.ts create mode 100644 tests/api-resources/uploads/uploads.test.ts diff --git a/.stats.yml b/.stats.yml index 27e2ce5ed..4e4cb5509 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ -configured_endpoints: 64 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-518ca6c60061d3e8bc0971facf40d752f2aea62e3522cc168ad29a1f29cab3dd.yml +configured_endpoints: 68 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-77cfff37114bc9f141c7e6107eb5f1b38d8cc99bc3d4ce03a066db2b6b649c69.yml diff --git a/api.md b/api.md index 17a3f9632..ddc9fce38 100644 --- a/api.md +++ b/api.md @@ -388,3 +388,25 @@ Methods: - client.batches.retrieve(batchId) -> Batch - client.batches.list({ ...params }) -> BatchesPage - client.batches.cancel(batchId) -> Batch + +# Uploads + +Types: + +- Upload + +Methods: + +- client.uploads.create({ ...params }) -> Upload +- client.uploads.cancel(uploadId) -> Upload +- client.uploads.complete(uploadId, { ...params }) -> Upload + +## Parts + +Types: + +- UploadPart + +Methods: + +- client.uploads.parts.create(uploadId, { ...params }) -> UploadPart diff --git a/src/index.ts b/src/index.ts index ce455108e..7e5df0505 100644 --- a/src/index.ts +++ b/src/index.ts @@ -164,6 +164,7 @@ export class OpenAI extends Core.APIClient { fineTuning: API.FineTuning = new API.FineTuning(this); beta: API.Beta = new API.Beta(this); batches: API.Batches = new API.Batches(this); + uploads: API.Uploads = new API.Uploads(this); protected override defaultQuery(): Core.DefaultQuery | undefined { return this._options.defaultQuery; @@ -309,6 +310,11 @@ export namespace OpenAI { export import BatchCreateParams = API.BatchCreateParams; export import BatchListParams = API.BatchListParams; + export import Uploads = API.Uploads; + export import Upload = API.Upload; + export import UploadCreateParams = API.UploadCreateParams; + export import UploadCompleteParams = API.UploadCompleteParams; + export import ErrorObject = API.ErrorObject; export import FunctionDefinition = API.FunctionDefinition; export import FunctionParameters = API.FunctionParameters; diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 44eb9520c..4027e995b 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -820,6 +820,7 @@ export interface ChatCompletionCreateParamsBase { * exhausted. * - If set to 'default', the request will be processed using the default service * tier with a lower uptime SLA and no latency guarentee. + * - When not set, the default behavior is 'auto'. * * When this parameter is set, the response body will include the `service_tier` * utilized. diff --git a/src/resources/index.ts b/src/resources/index.ts index 6f8e8564c..9f2a3cbe7 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -43,3 +43,4 @@ export { } from './images'; export { Model, ModelDeleted, ModelsPage, Models } from './models'; export { Moderation, ModerationCreateResponse, ModerationCreateParams, Moderations } from './moderations'; +export { Upload, UploadCreateParams, UploadCompleteParams, Uploads } from './uploads/uploads'; diff --git a/src/resources/uploads/index.ts b/src/resources/uploads/index.ts new file mode 100644 index 000000000..1a353d312 --- /dev/null +++ b/src/resources/uploads/index.ts @@ -0,0 +1,4 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +export { Upload, UploadCreateParams, UploadCompleteParams, Uploads } from './uploads'; +export { UploadPart, PartCreateParams, Parts } from './parts'; diff --git a/src/resources/uploads/parts.ts b/src/resources/uploads/parts.ts new file mode 100644 index 000000000..a4af5c606 --- /dev/null +++ b/src/resources/uploads/parts.ts @@ -0,0 +1,68 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import { APIResource } from '../../resource'; +import * as Core from '../../core'; +import * as PartsAPI from './parts'; + +export class Parts extends APIResource { + /** + * Adds a + * [Part](https://platform.openai.com/docs/api-reference/uploads/part-object) to an + * [Upload](https://platform.openai.com/docs/api-reference/uploads/object) object. + * A Part represents a chunk of bytes from the file you are trying to upload. + * + * Each Part can be at most 64 MB, and you can add Parts until you hit the Upload + * maximum of 8 GB. + * + * It is possible to add multiple Parts in parallel. You can decide the intended + * order of the Parts when you + * [complete the Upload](https://platform.openai.com/docs/api-reference/uploads/complete). + */ + create( + uploadId: string, + body: PartCreateParams, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this._client.post( + `/uploads/${uploadId}/parts`, + Core.multipartFormRequestOptions({ body, ...options }), + ); + } +} + +/** + * The upload Part represents a chunk of bytes we can add to an Upload object. + */ +export interface UploadPart { + /** + * The upload Part unique identifier, which can be referenced in API endpoints. + */ + id: string; + + /** + * The Unix timestamp (in seconds) for when the Part was created. + */ + created_at: number; + + /** + * The object type, which is always `upload.part`. + */ + object: 'upload.part'; + + /** + * The ID of the Upload object that this Part was added to. + */ + upload_id: string; +} + +export interface PartCreateParams { + /** + * The chunk of bytes for this Part. + */ + data: Core.Uploadable; +} + +export namespace Parts { + export import UploadPart = PartsAPI.UploadPart; + export import PartCreateParams = PartsAPI.PartCreateParams; +} diff --git a/src/resources/uploads/uploads.ts b/src/resources/uploads/uploads.ts new file mode 100644 index 000000000..ceb2b6d23 --- /dev/null +++ b/src/resources/uploads/uploads.ts @@ -0,0 +1,169 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import { APIResource } from '../../resource'; +import * as Core from '../../core'; +import * as UploadsAPI from './uploads'; +import * as FilesAPI from '../files'; +import * as PartsAPI from './parts'; + +export class Uploads extends APIResource { + parts: PartsAPI.Parts = new PartsAPI.Parts(this._client); + + /** + * Creates an intermediate + * [Upload](https://platform.openai.com/docs/api-reference/uploads/object) object + * that you can add + * [Parts](https://platform.openai.com/docs/api-reference/uploads/part-object) to. + * Currently, an Upload can accept at most 8 GB in total and expires after an hour + * after you create it. + * + * Once you complete the Upload, we will create a + * [File](https://platform.openai.com/docs/api-reference/files/object) object that + * contains all the parts you uploaded. This File is usable in the rest of our + * platform as a regular File object. + * + * For certain `purpose`s, the correct `mime_type` must be specified. Please refer + * to documentation for the supported MIME types for your use case: + * + * - [Assistants](https://platform.openai.com/docs/assistants/tools/file-search/supported-files) + * + * For guidance on the proper filename extensions for each purpose, please follow + * the documentation on + * [creating a File](https://platform.openai.com/docs/api-reference/files/create). + */ + create(body: UploadCreateParams, options?: Core.RequestOptions): Core.APIPromise { + return this._client.post('/uploads', { body, ...options }); + } + + /** + * Cancels the Upload. No Parts may be added after an Upload is cancelled. + */ + cancel(uploadId: string, options?: Core.RequestOptions): Core.APIPromise { + return this._client.post(`/uploads/${uploadId}/cancel`, options); + } + + /** + * Completes the + * [Upload](https://platform.openai.com/docs/api-reference/uploads/object). + * + * Within the returned Upload object, there is a nested + * [File](https://platform.openai.com/docs/api-reference/files/object) object that + * is ready to use in the rest of the platform. + * + * You can specify the order of the Parts by passing in an ordered list of the Part + * IDs. + * + * The number of bytes uploaded upon completion must match the number of bytes + * initially specified when creating the Upload object. No Parts may be added after + * an Upload is completed. + */ + complete( + uploadId: string, + body: UploadCompleteParams, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this._client.post(`/uploads/${uploadId}/complete`, { body, ...options }); + } +} + +/** + * The Upload object can accept byte chunks in the form of Parts. + */ +export interface Upload { + /** + * The Upload unique identifier, which can be referenced in API endpoints. + */ + id: string; + + /** + * The intended number of bytes to be uploaded. + */ + bytes: number; + + /** + * The Unix timestamp (in seconds) for when the Upload was created. + */ + created_at: number; + + /** + * The Unix timestamp (in seconds) for when the Upload was created. + */ + expires_at: number; + + /** + * The name of the file to be uploaded. + */ + filename: string; + + /** + * The object type, which is always "upload". + */ + object: 'upload'; + + /** + * The intended purpose of the file. + * [Please refer here](https://platform.openai.com/docs/api-reference/files/object#files/object-purpose) + * for acceptable values. + */ + purpose: string; + + /** + * The status of the Upload. + */ + status: 'pending' | 'completed' | 'cancelled' | 'expired'; + + /** + * The ready File object after the Upload is completed. + */ + file?: FilesAPI.FileObject | null; +} + +export interface UploadCreateParams { + /** + * The number of bytes in the file you are uploading. + */ + bytes: number; + + /** + * The name of the file to upload. + */ + filename: string; + + /** + * The MIME type of the file. + * + * This must fall within the supported MIME types for your file purpose. See the + * supported MIME types for assistants and vision. + */ + mime_type: string; + + /** + * The intended purpose of the uploaded file. + * + * See the + * [documentation on File purposes](https://platform.openai.com/docs/api-reference/files/create#files-create-purpose). + */ + purpose: 'assistants' | 'batch' | 'fine-tune' | 'vision'; +} + +export interface UploadCompleteParams { + /** + * The ordered list of Part IDs. + */ + part_ids: Array; + + /** + * The optional md5 checksum for the file contents to verify if the bytes uploaded + * matches what you expect. + */ + md5?: string; +} + +export namespace Uploads { + export import Upload = UploadsAPI.Upload; + export import UploadCreateParams = UploadsAPI.UploadCreateParams; + export import UploadCompleteParams = UploadsAPI.UploadCompleteParams; + export import Parts = PartsAPI.Parts; + export import UploadPart = PartsAPI.UploadPart; + export import PartCreateParams = PartsAPI.PartCreateParams; +} diff --git a/tests/api-resources/uploads/parts.test.ts b/tests/api-resources/uploads/parts.test.ts new file mode 100644 index 000000000..5e69c5861 --- /dev/null +++ b/tests/api-resources/uploads/parts.test.ts @@ -0,0 +1,30 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import OpenAI, { toFile } from 'openai'; +import { Response } from 'node-fetch'; + +const openai = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('resource parts', () => { + test('create: only required params', async () => { + const responsePromise = openai.uploads.parts.create('upload_abc123', { + data: await toFile(Buffer.from('# my file contents'), 'README.md'), + }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('create: required and optional params', async () => { + const response = await openai.uploads.parts.create('upload_abc123', { + data: await toFile(Buffer.from('# my file contents'), 'README.md'), + }); + }); +}); diff --git a/tests/api-resources/uploads/uploads.test.ts b/tests/api-resources/uploads/uploads.test.ts new file mode 100644 index 000000000..08f059d1b --- /dev/null +++ b/tests/api-resources/uploads/uploads.test.ts @@ -0,0 +1,74 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import OpenAI from 'openai'; +import { Response } from 'node-fetch'; + +const openai = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('resource uploads', () => { + test('create: only required params', async () => { + const responsePromise = openai.uploads.create({ + bytes: 0, + filename: 'filename', + mime_type: 'mime_type', + purpose: 'assistants', + }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('create: required and optional params', async () => { + const response = await openai.uploads.create({ + bytes: 0, + filename: 'filename', + mime_type: 'mime_type', + purpose: 'assistants', + }); + }); + + test('cancel', async () => { + const responsePromise = openai.uploads.cancel('upload_abc123'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('cancel: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + openai.uploads.cancel('upload_abc123', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('complete: only required params', async () => { + const responsePromise = openai.uploads.complete('upload_abc123', { + part_ids: ['string', 'string', 'string'], + }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('complete: required and optional params', async () => { + const response = await openai.uploads.complete('upload_abc123', { + part_ids: ['string', 'string', 'string'], + md5: 'md5', + }); + }); +}); From 22896e88e97c0e8621bf74c666a6fc7d9d832267 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 14:12:13 +0000 Subject: [PATCH 456/725] release: 4.53.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 15 +++++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 20 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index dc058ce75..bdcacbf65 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.52.7" + ".": "4.53.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bff5e4eb..00fc14e39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 4.53.0 (2024-07-22) + +Full Changelog: [v4.52.7...v4.53.0](https://github.com/openai/openai-node/compare/v4.52.7...v4.53.0) + +### Features + +* **api:** add new gpt-4o-mini models ([#942](https://github.com/openai/openai-node/issues/942)) ([7ac10dd](https://github.com/openai/openai-node/commit/7ac10ddbb87e9eb0e8e34d58a13a4775cbba1c24)) +* **api:** add uploads endpoints ([#946](https://github.com/openai/openai-node/issues/946)) ([8709ceb](https://github.com/openai/openai-node/commit/8709ceb0e01c5a1f96704c998f35ca1117ecadac)) + + +### Chores + +* **docs:** mention support of web browser runtimes ([#938](https://github.com/openai/openai-node/issues/938)) ([123d19d](https://github.com/openai/openai-node/commit/123d19d5a157110c8ada556c107caf0eb8b2ccc6)) +* **docs:** use client instead of package name in Node examples ([#941](https://github.com/openai/openai-node/issues/941)) ([8b5db1f](https://github.com/openai/openai-node/commit/8b5db1f53e66ce4b6e554f40a8dd2fd474085027)) + ## 4.52.7 (2024-07-11) Full Changelog: [v4.52.6...v4.52.7](https://github.com/openai/openai-node/compare/v4.52.6...v4.52.7) diff --git a/README.md b/README.md index 3d303e5b0..bf6f5ac76 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.52.7/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.53.0/mod.ts'; ``` diff --git a/package.json b/package.json index 1f00b2180..40d45a905 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.52.7", + "version": "4.53.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index ba47751d8..930f16d53 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.52.7/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.53.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index b9a220285..0f53607fc 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.52.7'; // x-release-please-version +export const VERSION = '4.53.0'; // x-release-please-version From 5b7677120b4fef41c0eb78dbf6c8a6bf480b2028 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 23 Jul 2024 10:34:27 +0000 Subject: [PATCH 457/725] chore(tests): update prism version (#948) --- scripts/mock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/mock b/scripts/mock index fe89a1d08..f58615769 100755 --- a/scripts/mock +++ b/scripts/mock @@ -21,7 +21,7 @@ echo "==> Starting mock server with URL ${URL}" # Run prism mock on the given spec if [ "$1" == "--daemon" ]; then - npm exec --package=@stoplight/prism-cli@~5.8 -- prism mock "$URL" &> .prism.log & + npm exec --package=@stainless-api/prism-cli@5.8.4 -- prism mock "$URL" &> .prism.log & # Wait for server to come online echo -n "Waiting for server" @@ -37,5 +37,5 @@ if [ "$1" == "--daemon" ]; then echo else - npm exec --package=@stoplight/prism-cli@~5.8 -- prism mock "$URL" + npm exec --package=@stainless-api/prism-cli@5.8.4 -- prism mock "$URL" fi From f7b35843abc491b42f908a171256200116858195 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 25 Jul 2024 16:34:53 +0000 Subject: [PATCH 458/725] fix(compat): remove ReadableStream polyfill redundant since node v16 (#954) Note that this breaks streaming in Node v14, which has been unsupported since v4.0.0 of this library. --- package.json | 3 +-- src/_shims/node-runtime.ts | 4 +--- yarn.lock | 5 ----- 3 files changed, 2 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 40d45a905..1ea96ee7b 100644 --- a/package.json +++ b/package.json @@ -30,8 +30,7 @@ "agentkeepalive": "^4.2.1", "form-data-encoder": "1.7.2", "formdata-node": "^4.3.2", - "node-fetch": "^2.6.7", - "web-streams-polyfill": "^3.2.1" + "node-fetch": "^2.6.7" }, "devDependencies": { "@swc/core": "^1.3.102", diff --git a/src/_shims/node-runtime.ts b/src/_shims/node-runtime.ts index a9c42ebeb..ab9f2ab5c 100644 --- a/src/_shims/node-runtime.ts +++ b/src/_shims/node-runtime.ts @@ -13,9 +13,7 @@ import { Readable } from 'node:stream'; import { type RequestOptions } from '../core'; import { MultipartBody } from './MultipartBody'; import { type Shims } from './registry'; - -// @ts-ignore (this package does not have proper export maps for this export) -import { ReadableStream } from 'web-streams-polyfill/dist/ponyfill.es2018.js'; +import { ReadableStream } from 'node:stream/web'; type FileFromPathOptions = Omit; diff --git a/yarn.lock b/yarn.lock index dda4d2e4a..358dbf20b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3412,11 +3412,6 @@ web-streams-polyfill@4.0.0-beta.1: resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.1.tgz#3b19b9817374b7cee06d374ba7eeb3aeb80e8c95" integrity sha512-3ux37gEX670UUphBF9AMCq8XM6iQ8Ac6A+DSRRjDoRBm1ufCkaCDdNVbaqq60PsEkdNlLKrGtv/YBP4EJXqNtQ== -web-streams-polyfill@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6" - integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q== - webidl-conversions@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" From 83c1d179ebbe94a34a70cfbe0aa3072ed15b7cea Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 25 Jul 2024 16:35:18 +0000 Subject: [PATCH 459/725] release: 4.53.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bdcacbf65..89bf40edf 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.53.0" + ".": "4.53.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 00fc14e39..c57f8b1e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.53.1 (2024-07-25) + +Full Changelog: [v4.53.0...v4.53.1](https://github.com/openai/openai-node/compare/v4.53.0...v4.53.1) + +### Bug Fixes + +* **compat:** remove ReadableStream polyfill redundant since node v16 ([#954](https://github.com/openai/openai-node/issues/954)) ([78b2a83](https://github.com/openai/openai-node/commit/78b2a83f085bb7ddf6a5f429636de1e3eef20f9d)) + + +### Chores + +* **tests:** update prism version ([#948](https://github.com/openai/openai-node/issues/948)) ([9202c91](https://github.com/openai/openai-node/commit/9202c91d697a116eb1b834e01f4073d254438149)) + ## 4.53.0 (2024-07-22) Full Changelog: [v4.52.7...v4.53.0](https://github.com/openai/openai-node/compare/v4.52.7...v4.53.0) diff --git a/README.md b/README.md index bf6f5ac76..06629fdda 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.53.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.53.1/mod.ts'; ``` diff --git a/package.json b/package.json index 1ea96ee7b..590d497c5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.53.0", + "version": "4.53.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 930f16d53..1952d4282 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.53.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.53.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 0f53607fc..7fc8bb1d7 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.53.0'; // x-release-please-version +export const VERSION = '4.53.1'; // x-release-please-version From f696b2a11399efbc5b4b17dc9d0f287dc3ba5e1a Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Fri, 26 Jul 2024 12:01:07 +0000 Subject: [PATCH 460/725] chore(docs): fix incorrect client var names (#955) --- README.md | 32 +++++++++---------- tests/api-resources/audio/speech.test.ts | 4 +-- .../audio/transcriptions.test.ts | 6 ++-- .../api-resources/audio/translations.test.ts | 6 ++-- tests/api-resources/batches.test.ts | 20 ++++++------ tests/api-resources/beta/assistants.test.ts | 22 ++++++------- .../beta/threads/messages.test.ts | 22 ++++++------- .../beta/threads/runs/runs.test.ts | 26 +++++++-------- .../beta/threads/runs/steps.test.ts | 12 +++---- .../beta/threads/threads.test.ts | 22 ++++++------- .../beta/vector-stores/file-batches.test.ts | 20 ++++++------ .../beta/vector-stores/files.test.ts | 20 ++++++------ .../beta/vector-stores/vector-stores.test.ts | 20 ++++++------ tests/api-resources/chat/completions.test.ts | 6 ++-- tests/api-resources/completions.test.ts | 6 ++-- tests/api-resources/embeddings.test.ts | 6 ++-- tests/api-resources/files.test.ts | 26 +++++++-------- .../fine-tuning/jobs/checkpoints.test.ts | 8 ++--- .../fine-tuning/jobs/jobs.test.ts | 26 +++++++-------- tests/api-resources/images.test.ts | 14 ++++---- tests/api-resources/models.test.ts | 14 ++++---- tests/api-resources/moderations.test.ts | 6 ++-- tests/api-resources/uploads/parts.test.ts | 6 ++-- tests/api-resources/uploads/uploads.test.ts | 14 ++++---- 24 files changed, 182 insertions(+), 182 deletions(-) diff --git a/README.md b/README.md index 06629fdda..88c132a4f 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ const client = new OpenAI({ }); async function main() { - const chatCompletion = await openai.chat.completions.create({ + const chatCompletion = await client.chat.completions.create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-3.5-turbo', }); @@ -56,7 +56,7 @@ import OpenAI from 'openai'; const client = new OpenAI(); async function main() { - const stream = await openai.chat.completions.create({ + const stream = await client.chat.completions.create({ model: 'gpt-4', messages: [{ role: 'user', content: 'Say this is a test' }], stream: true, @@ -89,7 +89,7 @@ async function main() { messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-3.5-turbo', }; - const chatCompletion: OpenAI.Chat.ChatCompletion = await openai.chat.completions.create(params); + const chatCompletion: OpenAI.Chat.ChatCompletion = await client.chat.completions.create(params); } main(); @@ -304,20 +304,20 @@ import OpenAI, { toFile } from 'openai'; const client = new OpenAI(); // If you have access to Node `fs` we recommend using `fs.createReadStream()`: -await openai.files.create({ file: fs.createReadStream('input.jsonl'), purpose: 'fine-tune' }); +await client.files.create({ file: fs.createReadStream('input.jsonl'), purpose: 'fine-tune' }); // Or if you have the web `File` API you can pass a `File` instance: -await openai.files.create({ file: new File(['my bytes'], 'input.jsonl'), purpose: 'fine-tune' }); +await client.files.create({ file: new File(['my bytes'], 'input.jsonl'), purpose: 'fine-tune' }); // You can also pass a `fetch` `Response`: -await openai.files.create({ file: await fetch('http://github.com/service/https://somesite/input.jsonl'), purpose: 'fine-tune' }); +await client.files.create({ file: await fetch('http://github.com/service/https://somesite/input.jsonl'), purpose: 'fine-tune' }); // Finally, if none of the above are convenient, you can use our `toFile` helper: -await openai.files.create({ +await client.files.create({ file: await toFile(Buffer.from('my bytes'), 'input.jsonl'), purpose: 'fine-tune', }); -await openai.files.create({ +await client.files.create({ file: await toFile(new Uint8Array([0, 1, 2]), 'input.jsonl'), purpose: 'fine-tune', }); @@ -332,7 +332,7 @@ a subclass of `APIError` will be thrown: ```ts async function main() { - const job = await openai.fineTuning.jobs + const job = await client.fineTuning.jobs .create({ model: 'gpt-3.5-turbo', training_file: 'file-abc123' }) .catch(async (err) => { if (err instanceof OpenAI.APIError) { @@ -404,7 +404,7 @@ const client = new OpenAI({ }); // Or, configure per-request: -await openai.chat.completions.create({ messages: [{ role: 'user', content: 'How can I get the name of the current day in Node.js?' }], model: 'gpt-3.5-turbo' }, { +await client.chat.completions.create({ messages: [{ role: 'user', content: 'How can I get the name of the current day in Node.js?' }], model: 'gpt-3.5-turbo' }, { maxRetries: 5, }); ``` @@ -421,7 +421,7 @@ const client = new OpenAI({ }); // Override per-request: -await openai.chat.completions.create({ messages: [{ role: 'user', content: 'How can I list all files in a directory using Python?' }], model: 'gpt-3.5-turbo' }, { +await client.chat.completions.create({ messages: [{ role: 'user', content: 'How can I list all files in a directory using Python?' }], model: 'gpt-3.5-turbo' }, { timeout: 5 * 1000, }); ``` @@ -439,7 +439,7 @@ You can use `for await … of` syntax to iterate through items across all pages: async function fetchAllFineTuningJobs(params) { const allFineTuningJobs = []; // Automatically fetches more pages as needed. - for await (const fineTuningJob of openai.fineTuning.jobs.list({ limit: 20 })) { + for await (const fineTuningJob of client.fineTuning.jobs.list({ limit: 20 })) { allFineTuningJobs.push(fineTuningJob); } return allFineTuningJobs; @@ -449,7 +449,7 @@ async function fetchAllFineTuningJobs(params) { Alternatively, you can make request a single page at a time: ```ts -let page = await openai.fineTuning.jobs.list({ limit: 20 }); +let page = await client.fineTuning.jobs.list({ limit: 20 }); for (const fineTuningJob of page.data) { console.log(fineTuningJob); } @@ -473,13 +473,13 @@ You can also use the `.withResponse()` method to get the raw `Response` along wi ```ts const client = new OpenAI(); -const response = await openai.chat.completions +const response = await client.chat.completions .create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-3.5-turbo' }) .asResponse(); console.log(response.headers.get('X-My-Header')); console.log(response.statusText); // access the underlying Response object -const { data: chatCompletion, response: raw } = await openai.chat.completions +const { data: chatCompletion, response: raw } = await client.chat.completions .create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-3.5-turbo' }) .withResponse(); console.log(raw.headers.get('X-My-Header')); @@ -587,7 +587,7 @@ const client = new OpenAI({ }); // Override per-request: -await openai.models.list({ +await client.models.list({ httpAgent: new http.Agent({ keepAlive: false }), }); ``` diff --git a/tests/api-resources/audio/speech.test.ts b/tests/api-resources/audio/speech.test.ts index 7509c19ca..904d75e5d 100644 --- a/tests/api-resources/audio/speech.test.ts +++ b/tests/api-resources/audio/speech.test.ts @@ -2,7 +2,7 @@ import OpenAI from 'openai'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); @@ -10,7 +10,7 @@ const openai = new OpenAI({ describe('resource speech', () => { // binary tests are currently broken test.skip('create: required and optional params', async () => { - const response = await openai.audio.speech.create({ + const response = await client.audio.speech.create({ input: 'input', model: 'string', voice: 'alloy', diff --git a/tests/api-resources/audio/transcriptions.test.ts b/tests/api-resources/audio/transcriptions.test.ts index 938ddd2b3..ef2797911 100644 --- a/tests/api-resources/audio/transcriptions.test.ts +++ b/tests/api-resources/audio/transcriptions.test.ts @@ -3,14 +3,14 @@ import OpenAI, { toFile } from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource transcriptions', () => { test('create: only required params', async () => { - const responsePromise = openai.audio.transcriptions.create({ + const responsePromise = client.audio.transcriptions.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), model: 'whisper-1', }); @@ -24,7 +24,7 @@ describe('resource transcriptions', () => { }); test('create: required and optional params', async () => { - const response = await openai.audio.transcriptions.create({ + const response = await client.audio.transcriptions.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), model: 'whisper-1', language: 'language', diff --git a/tests/api-resources/audio/translations.test.ts b/tests/api-resources/audio/translations.test.ts index 3f05bc90f..8264a5818 100644 --- a/tests/api-resources/audio/translations.test.ts +++ b/tests/api-resources/audio/translations.test.ts @@ -3,14 +3,14 @@ import OpenAI, { toFile } from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource translations', () => { test('create: only required params', async () => { - const responsePromise = openai.audio.translations.create({ + const responsePromise = client.audio.translations.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), model: 'whisper-1', }); @@ -24,7 +24,7 @@ describe('resource translations', () => { }); test('create: required and optional params', async () => { - const response = await openai.audio.translations.create({ + const response = await client.audio.translations.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), model: 'whisper-1', prompt: 'prompt', diff --git a/tests/api-resources/batches.test.ts b/tests/api-resources/batches.test.ts index 2861298a8..96e200fb9 100644 --- a/tests/api-resources/batches.test.ts +++ b/tests/api-resources/batches.test.ts @@ -3,14 +3,14 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource batches', () => { test('create: only required params', async () => { - const responsePromise = openai.batches.create({ + const responsePromise = client.batches.create({ completion_window: '24h', endpoint: '/v1/chat/completions', input_file_id: 'input_file_id', @@ -25,7 +25,7 @@ describe('resource batches', () => { }); test('create: required and optional params', async () => { - const response = await openai.batches.create({ + const response = await client.batches.create({ completion_window: '24h', endpoint: '/v1/chat/completions', input_file_id: 'input_file_id', @@ -34,7 +34,7 @@ describe('resource batches', () => { }); test('retrieve', async () => { - const responsePromise = openai.batches.retrieve('batch_id'); + const responsePromise = client.batches.retrieve('batch_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -46,13 +46,13 @@ describe('resource batches', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.batches.retrieve('batch_id', { path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(client.batches.retrieve('batch_id', { path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); test('list', async () => { - const responsePromise = openai.batches.list(); + const responsePromise = client.batches.list(); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -64,7 +64,7 @@ describe('resource batches', () => { test('list: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.batches.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(client.batches.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); @@ -72,12 +72,12 @@ describe('resource batches', () => { test('list: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.batches.list({ after: 'after', limit: 0 }, { path: '/_stainless_unknown_path' }), + client.batches.list({ after: 'after', limit: 0 }, { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('cancel', async () => { - const responsePromise = openai.batches.cancel('batch_id'); + const responsePromise = client.batches.cancel('batch_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -89,7 +89,7 @@ describe('resource batches', () => { test('cancel: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.batches.cancel('batch_id', { path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(client.batches.cancel('batch_id', { path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); diff --git a/tests/api-resources/beta/assistants.test.ts b/tests/api-resources/beta/assistants.test.ts index 44ee2921d..657cd76a6 100644 --- a/tests/api-resources/beta/assistants.test.ts +++ b/tests/api-resources/beta/assistants.test.ts @@ -3,14 +3,14 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource assistants', () => { test('create: only required params', async () => { - const responsePromise = openai.beta.assistants.create({ model: 'gpt-4-turbo' }); + const responsePromise = client.beta.assistants.create({ model: 'gpt-4-turbo' }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -21,7 +21,7 @@ describe('resource assistants', () => { }); test('create: required and optional params', async () => { - const response = await openai.beta.assistants.create({ + const response = await client.beta.assistants.create({ model: 'gpt-4-turbo', description: 'description', instructions: 'instructions', @@ -44,7 +44,7 @@ describe('resource assistants', () => { }); test('retrieve', async () => { - const responsePromise = openai.beta.assistants.retrieve('assistant_id'); + const responsePromise = client.beta.assistants.retrieve('assistant_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -57,12 +57,12 @@ describe('resource assistants', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.assistants.retrieve('assistant_id', { path: '/_stainless_unknown_path' }), + client.beta.assistants.retrieve('assistant_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('update', async () => { - const responsePromise = openai.beta.assistants.update('assistant_id', {}); + const responsePromise = client.beta.assistants.update('assistant_id', {}); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -73,7 +73,7 @@ describe('resource assistants', () => { }); test('list', async () => { - const responsePromise = openai.beta.assistants.list(); + const responsePromise = client.beta.assistants.list(); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -85,7 +85,7 @@ describe('resource assistants', () => { test('list: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.beta.assistants.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(client.beta.assistants.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); @@ -93,7 +93,7 @@ describe('resource assistants', () => { test('list: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.assistants.list( + client.beta.assistants.list( { after: 'after', before: 'before', limit: 0, order: 'asc' }, { path: '/_stainless_unknown_path' }, ), @@ -101,7 +101,7 @@ describe('resource assistants', () => { }); test('del', async () => { - const responsePromise = openai.beta.assistants.del('assistant_id'); + const responsePromise = client.beta.assistants.del('assistant_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -114,7 +114,7 @@ describe('resource assistants', () => { test('del: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.assistants.del('assistant_id', { path: '/_stainless_unknown_path' }), + client.beta.assistants.del('assistant_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); }); diff --git a/tests/api-resources/beta/threads/messages.test.ts b/tests/api-resources/beta/threads/messages.test.ts index 0f2877af1..bfbcab1cb 100644 --- a/tests/api-resources/beta/threads/messages.test.ts +++ b/tests/api-resources/beta/threads/messages.test.ts @@ -3,14 +3,14 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource messages', () => { test('create: only required params', async () => { - const responsePromise = openai.beta.threads.messages.create('thread_id', { + const responsePromise = client.beta.threads.messages.create('thread_id', { content: 'string', role: 'user', }); @@ -24,7 +24,7 @@ describe('resource messages', () => { }); test('create: required and optional params', async () => { - const response = await openai.beta.threads.messages.create('thread_id', { + const response = await client.beta.threads.messages.create('thread_id', { content: 'string', role: 'user', attachments: [ @@ -46,7 +46,7 @@ describe('resource messages', () => { }); test('retrieve', async () => { - const responsePromise = openai.beta.threads.messages.retrieve('thread_id', 'message_id'); + const responsePromise = client.beta.threads.messages.retrieve('thread_id', 'message_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -59,12 +59,12 @@ describe('resource messages', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.messages.retrieve('thread_id', 'message_id', { path: '/_stainless_unknown_path' }), + client.beta.threads.messages.retrieve('thread_id', 'message_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('update', async () => { - const responsePromise = openai.beta.threads.messages.update('thread_id', 'message_id', {}); + const responsePromise = client.beta.threads.messages.update('thread_id', 'message_id', {}); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -75,7 +75,7 @@ describe('resource messages', () => { }); test('list', async () => { - const responsePromise = openai.beta.threads.messages.list('thread_id'); + const responsePromise = client.beta.threads.messages.list('thread_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -88,14 +88,14 @@ describe('resource messages', () => { test('list: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.messages.list('thread_id', { path: '/_stainless_unknown_path' }), + client.beta.threads.messages.list('thread_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('list: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.messages.list( + client.beta.threads.messages.list( 'thread_id', { after: 'after', before: 'before', limit: 0, order: 'asc', run_id: 'run_id' }, { path: '/_stainless_unknown_path' }, @@ -104,7 +104,7 @@ describe('resource messages', () => { }); test('del', async () => { - const responsePromise = openai.beta.threads.messages.del('thread_id', 'message_id'); + const responsePromise = client.beta.threads.messages.del('thread_id', 'message_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -117,7 +117,7 @@ describe('resource messages', () => { test('del: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.messages.del('thread_id', 'message_id', { path: '/_stainless_unknown_path' }), + client.beta.threads.messages.del('thread_id', 'message_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); }); diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts index b422a9a3f..856eb8662 100644 --- a/tests/api-resources/beta/threads/runs/runs.test.ts +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -3,14 +3,14 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource runs', () => { test('create: only required params', async () => { - const responsePromise = openai.beta.threads.runs.create('thread_id', { assistant_id: 'assistant_id' }); + const responsePromise = client.beta.threads.runs.create('thread_id', { assistant_id: 'assistant_id' }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -21,7 +21,7 @@ describe('resource runs', () => { }); test('create: required and optional params', async () => { - const response = await openai.beta.threads.runs.create('thread_id', { + const response = await client.beta.threads.runs.create('thread_id', { assistant_id: 'assistant_id', additional_instructions: 'additional_instructions', additional_messages: [ @@ -136,7 +136,7 @@ describe('resource runs', () => { }); test('retrieve', async () => { - const responsePromise = openai.beta.threads.runs.retrieve('thread_id', 'run_id'); + const responsePromise = client.beta.threads.runs.retrieve('thread_id', 'run_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -149,12 +149,12 @@ describe('resource runs', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.runs.retrieve('thread_id', 'run_id', { path: '/_stainless_unknown_path' }), + client.beta.threads.runs.retrieve('thread_id', 'run_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('update', async () => { - const responsePromise = openai.beta.threads.runs.update('thread_id', 'run_id', {}); + const responsePromise = client.beta.threads.runs.update('thread_id', 'run_id', {}); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -165,7 +165,7 @@ describe('resource runs', () => { }); test('list', async () => { - const responsePromise = openai.beta.threads.runs.list('thread_id'); + const responsePromise = client.beta.threads.runs.list('thread_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -178,14 +178,14 @@ describe('resource runs', () => { test('list: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.runs.list('thread_id', { path: '/_stainless_unknown_path' }), + client.beta.threads.runs.list('thread_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('list: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.runs.list( + client.beta.threads.runs.list( 'thread_id', { after: 'after', before: 'before', limit: 0, order: 'asc' }, { path: '/_stainless_unknown_path' }, @@ -194,7 +194,7 @@ describe('resource runs', () => { }); test('cancel', async () => { - const responsePromise = openai.beta.threads.runs.cancel('thread_id', 'run_id'); + const responsePromise = client.beta.threads.runs.cancel('thread_id', 'run_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -207,12 +207,12 @@ describe('resource runs', () => { test('cancel: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.runs.cancel('thread_id', 'run_id', { path: '/_stainless_unknown_path' }), + client.beta.threads.runs.cancel('thread_id', 'run_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('submitToolOutputs: only required params', async () => { - const responsePromise = openai.beta.threads.runs.submitToolOutputs('thread_id', 'run_id', { + const responsePromise = client.beta.threads.runs.submitToolOutputs('thread_id', 'run_id', { tool_outputs: [{}, {}, {}], }); const rawResponse = await responsePromise.asResponse(); @@ -225,7 +225,7 @@ describe('resource runs', () => { }); test('submitToolOutputs: required and optional params', async () => { - const response = await openai.beta.threads.runs.submitToolOutputs('thread_id', 'run_id', { + const response = await client.beta.threads.runs.submitToolOutputs('thread_id', 'run_id', { tool_outputs: [ { tool_call_id: 'tool_call_id', output: 'output' }, { tool_call_id: 'tool_call_id', output: 'output' }, diff --git a/tests/api-resources/beta/threads/runs/steps.test.ts b/tests/api-resources/beta/threads/runs/steps.test.ts index 1981d67fd..21487c17b 100644 --- a/tests/api-resources/beta/threads/runs/steps.test.ts +++ b/tests/api-resources/beta/threads/runs/steps.test.ts @@ -3,14 +3,14 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource steps', () => { test('retrieve', async () => { - const responsePromise = openai.beta.threads.runs.steps.retrieve('thread_id', 'run_id', 'step_id'); + const responsePromise = client.beta.threads.runs.steps.retrieve('thread_id', 'run_id', 'step_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -23,14 +23,14 @@ describe('resource steps', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.runs.steps.retrieve('thread_id', 'run_id', 'step_id', { + client.beta.threads.runs.steps.retrieve('thread_id', 'run_id', 'step_id', { path: '/_stainless_unknown_path', }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('list', async () => { - const responsePromise = openai.beta.threads.runs.steps.list('thread_id', 'run_id'); + const responsePromise = client.beta.threads.runs.steps.list('thread_id', 'run_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -43,14 +43,14 @@ describe('resource steps', () => { test('list: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.runs.steps.list('thread_id', 'run_id', { path: '/_stainless_unknown_path' }), + client.beta.threads.runs.steps.list('thread_id', 'run_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('list: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.runs.steps.list( + client.beta.threads.runs.steps.list( 'thread_id', 'run_id', { after: 'after', before: 'before', limit: 0, order: 'asc' }, diff --git a/tests/api-resources/beta/threads/threads.test.ts b/tests/api-resources/beta/threads/threads.test.ts index 0d2d93a61..2a5ebfd82 100644 --- a/tests/api-resources/beta/threads/threads.test.ts +++ b/tests/api-resources/beta/threads/threads.test.ts @@ -3,14 +3,14 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource threads', () => { test('create', async () => { - const responsePromise = openai.beta.threads.create(); + const responsePromise = client.beta.threads.create(); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -22,7 +22,7 @@ describe('resource threads', () => { test('create: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.beta.threads.create({ path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(client.beta.threads.create({ path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); @@ -30,7 +30,7 @@ describe('resource threads', () => { test('create: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.create( + client.beta.threads.create( { messages: [ { @@ -148,7 +148,7 @@ describe('resource threads', () => { }); test('retrieve', async () => { - const responsePromise = openai.beta.threads.retrieve('thread_id'); + const responsePromise = client.beta.threads.retrieve('thread_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -161,12 +161,12 @@ describe('resource threads', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.threads.retrieve('thread_id', { path: '/_stainless_unknown_path' }), + client.beta.threads.retrieve('thread_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('update', async () => { - const responsePromise = openai.beta.threads.update('thread_id', {}); + const responsePromise = client.beta.threads.update('thread_id', {}); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -177,7 +177,7 @@ describe('resource threads', () => { }); test('del', async () => { - const responsePromise = openai.beta.threads.del('thread_id'); + const responsePromise = client.beta.threads.del('thread_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -189,13 +189,13 @@ describe('resource threads', () => { test('del: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.beta.threads.del('thread_id', { path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(client.beta.threads.del('thread_id', { path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); test('createAndRun: only required params', async () => { - const responsePromise = openai.beta.threads.createAndRun({ assistant_id: 'assistant_id' }); + const responsePromise = client.beta.threads.createAndRun({ assistant_id: 'assistant_id' }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -206,7 +206,7 @@ describe('resource threads', () => { }); test('createAndRun: required and optional params', async () => { - const response = await openai.beta.threads.createAndRun({ + const response = await client.beta.threads.createAndRun({ assistant_id: 'assistant_id', instructions: 'instructions', max_completion_tokens: 256, diff --git a/tests/api-resources/beta/vector-stores/file-batches.test.ts b/tests/api-resources/beta/vector-stores/file-batches.test.ts index 33bfd2ef7..b714049b4 100644 --- a/tests/api-resources/beta/vector-stores/file-batches.test.ts +++ b/tests/api-resources/beta/vector-stores/file-batches.test.ts @@ -3,14 +3,14 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource fileBatches', () => { test('create: only required params', async () => { - const responsePromise = openai.beta.vectorStores.fileBatches.create('vs_abc123', { + const responsePromise = client.beta.vectorStores.fileBatches.create('vs_abc123', { file_ids: ['string'], }); const rawResponse = await responsePromise.asResponse(); @@ -23,14 +23,14 @@ describe('resource fileBatches', () => { }); test('create: required and optional params', async () => { - const response = await openai.beta.vectorStores.fileBatches.create('vs_abc123', { + const response = await client.beta.vectorStores.fileBatches.create('vs_abc123', { file_ids: ['string'], chunking_strategy: { type: 'auto' }, }); }); test('retrieve', async () => { - const responsePromise = openai.beta.vectorStores.fileBatches.retrieve('vs_abc123', 'vsfb_abc123'); + const responsePromise = client.beta.vectorStores.fileBatches.retrieve('vs_abc123', 'vsfb_abc123'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -43,14 +43,14 @@ describe('resource fileBatches', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.vectorStores.fileBatches.retrieve('vs_abc123', 'vsfb_abc123', { + client.beta.vectorStores.fileBatches.retrieve('vs_abc123', 'vsfb_abc123', { path: '/_stainless_unknown_path', }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('cancel', async () => { - const responsePromise = openai.beta.vectorStores.fileBatches.cancel('vector_store_id', 'batch_id'); + const responsePromise = client.beta.vectorStores.fileBatches.cancel('vector_store_id', 'batch_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -63,14 +63,14 @@ describe('resource fileBatches', () => { test('cancel: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.vectorStores.fileBatches.cancel('vector_store_id', 'batch_id', { + client.beta.vectorStores.fileBatches.cancel('vector_store_id', 'batch_id', { path: '/_stainless_unknown_path', }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('listFiles', async () => { - const responsePromise = openai.beta.vectorStores.fileBatches.listFiles('vector_store_id', 'batch_id'); + const responsePromise = client.beta.vectorStores.fileBatches.listFiles('vector_store_id', 'batch_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -83,7 +83,7 @@ describe('resource fileBatches', () => { test('listFiles: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.vectorStores.fileBatches.listFiles('vector_store_id', 'batch_id', { + client.beta.vectorStores.fileBatches.listFiles('vector_store_id', 'batch_id', { path: '/_stainless_unknown_path', }), ).rejects.toThrow(OpenAI.NotFoundError); @@ -92,7 +92,7 @@ describe('resource fileBatches', () => { test('listFiles: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.vectorStores.fileBatches.listFiles( + client.beta.vectorStores.fileBatches.listFiles( 'vector_store_id', 'batch_id', { after: 'after', before: 'before', filter: 'in_progress', limit: 0, order: 'asc' }, diff --git a/tests/api-resources/beta/vector-stores/files.test.ts b/tests/api-resources/beta/vector-stores/files.test.ts index 4b21aed30..7c14d4de3 100644 --- a/tests/api-resources/beta/vector-stores/files.test.ts +++ b/tests/api-resources/beta/vector-stores/files.test.ts @@ -3,14 +3,14 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource files', () => { test('create: only required params', async () => { - const responsePromise = openai.beta.vectorStores.files.create('vs_abc123', { file_id: 'file_id' }); + const responsePromise = client.beta.vectorStores.files.create('vs_abc123', { file_id: 'file_id' }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -21,14 +21,14 @@ describe('resource files', () => { }); test('create: required and optional params', async () => { - const response = await openai.beta.vectorStores.files.create('vs_abc123', { + const response = await client.beta.vectorStores.files.create('vs_abc123', { file_id: 'file_id', chunking_strategy: { type: 'auto' }, }); }); test('retrieve', async () => { - const responsePromise = openai.beta.vectorStores.files.retrieve('vs_abc123', 'file-abc123'); + const responsePromise = client.beta.vectorStores.files.retrieve('vs_abc123', 'file-abc123'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -41,14 +41,14 @@ describe('resource files', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.vectorStores.files.retrieve('vs_abc123', 'file-abc123', { + client.beta.vectorStores.files.retrieve('vs_abc123', 'file-abc123', { path: '/_stainless_unknown_path', }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('list', async () => { - const responsePromise = openai.beta.vectorStores.files.list('vector_store_id'); + const responsePromise = client.beta.vectorStores.files.list('vector_store_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -61,14 +61,14 @@ describe('resource files', () => { test('list: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.vectorStores.files.list('vector_store_id', { path: '/_stainless_unknown_path' }), + client.beta.vectorStores.files.list('vector_store_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('list: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.vectorStores.files.list( + client.beta.vectorStores.files.list( 'vector_store_id', { after: 'after', before: 'before', filter: 'in_progress', limit: 0, order: 'asc' }, { path: '/_stainless_unknown_path' }, @@ -77,7 +77,7 @@ describe('resource files', () => { }); test('del', async () => { - const responsePromise = openai.beta.vectorStores.files.del('vector_store_id', 'file_id'); + const responsePromise = client.beta.vectorStores.files.del('vector_store_id', 'file_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -90,7 +90,7 @@ describe('resource files', () => { test('del: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.vectorStores.files.del('vector_store_id', 'file_id', { path: '/_stainless_unknown_path' }), + client.beta.vectorStores.files.del('vector_store_id', 'file_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); }); diff --git a/tests/api-resources/beta/vector-stores/vector-stores.test.ts b/tests/api-resources/beta/vector-stores/vector-stores.test.ts index 11dcceef8..806098de8 100644 --- a/tests/api-resources/beta/vector-stores/vector-stores.test.ts +++ b/tests/api-resources/beta/vector-stores/vector-stores.test.ts @@ -3,14 +3,14 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource vectorStores', () => { test('create', async () => { - const responsePromise = openai.beta.vectorStores.create({}); + const responsePromise = client.beta.vectorStores.create({}); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -21,7 +21,7 @@ describe('resource vectorStores', () => { }); test('retrieve', async () => { - const responsePromise = openai.beta.vectorStores.retrieve('vector_store_id'); + const responsePromise = client.beta.vectorStores.retrieve('vector_store_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -34,12 +34,12 @@ describe('resource vectorStores', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.vectorStores.retrieve('vector_store_id', { path: '/_stainless_unknown_path' }), + client.beta.vectorStores.retrieve('vector_store_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('update', async () => { - const responsePromise = openai.beta.vectorStores.update('vector_store_id', {}); + const responsePromise = client.beta.vectorStores.update('vector_store_id', {}); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -50,7 +50,7 @@ describe('resource vectorStores', () => { }); test('list', async () => { - const responsePromise = openai.beta.vectorStores.list(); + const responsePromise = client.beta.vectorStores.list(); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -62,7 +62,7 @@ describe('resource vectorStores', () => { test('list: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.beta.vectorStores.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(client.beta.vectorStores.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); @@ -70,7 +70,7 @@ describe('resource vectorStores', () => { test('list: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.vectorStores.list( + client.beta.vectorStores.list( { after: 'after', before: 'before', limit: 0, order: 'asc' }, { path: '/_stainless_unknown_path' }, ), @@ -78,7 +78,7 @@ describe('resource vectorStores', () => { }); test('del', async () => { - const responsePromise = openai.beta.vectorStores.del('vector_store_id'); + const responsePromise = client.beta.vectorStores.del('vector_store_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -91,7 +91,7 @@ describe('resource vectorStores', () => { test('del: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.beta.vectorStores.del('vector_store_id', { path: '/_stainless_unknown_path' }), + client.beta.vectorStores.del('vector_store_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); }); diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 66ef2d023..78314074f 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -3,14 +3,14 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource completions', () => { test('create: only required params', async () => { - const responsePromise = openai.chat.completions.create({ + const responsePromise = client.chat.completions.create({ messages: [{ content: 'content', role: 'system' }], model: 'gpt-4-turbo', }); @@ -24,7 +24,7 @@ describe('resource completions', () => { }); test('create: required and optional params', async () => { - const response = await openai.chat.completions.create({ + const response = await client.chat.completions.create({ messages: [{ content: 'content', role: 'system', name: 'name' }], model: 'gpt-4-turbo', frequency_penalty: -2, diff --git a/tests/api-resources/completions.test.ts b/tests/api-resources/completions.test.ts index f78f7a593..82322dc3a 100644 --- a/tests/api-resources/completions.test.ts +++ b/tests/api-resources/completions.test.ts @@ -3,14 +3,14 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource completions', () => { test('create: only required params', async () => { - const responsePromise = openai.completions.create({ model: 'string', prompt: 'This is a test.' }); + const responsePromise = client.completions.create({ model: 'string', prompt: 'This is a test.' }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -21,7 +21,7 @@ describe('resource completions', () => { }); test('create: required and optional params', async () => { - const response = await openai.completions.create({ + const response = await client.completions.create({ model: 'string', prompt: 'This is a test.', best_of: 0, diff --git a/tests/api-resources/embeddings.test.ts b/tests/api-resources/embeddings.test.ts index d4e1f3240..46dd1b2a3 100644 --- a/tests/api-resources/embeddings.test.ts +++ b/tests/api-resources/embeddings.test.ts @@ -3,14 +3,14 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource embeddings', () => { test('create: only required params', async () => { - const responsePromise = openai.embeddings.create({ + const responsePromise = client.embeddings.create({ input: 'The quick brown fox jumped over the lazy dog', model: 'text-embedding-3-small', }); @@ -24,7 +24,7 @@ describe('resource embeddings', () => { }); test('create: required and optional params', async () => { - const response = await openai.embeddings.create({ + const response = await client.embeddings.create({ input: 'The quick brown fox jumped over the lazy dog', model: 'text-embedding-3-small', dimensions: 1, diff --git a/tests/api-resources/files.test.ts b/tests/api-resources/files.test.ts index 55eded995..bbaa45a65 100644 --- a/tests/api-resources/files.test.ts +++ b/tests/api-resources/files.test.ts @@ -3,14 +3,14 @@ import OpenAI, { toFile } from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource files', () => { test('create: only required params', async () => { - const responsePromise = openai.files.create({ + const responsePromise = client.files.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), purpose: 'assistants', }); @@ -24,14 +24,14 @@ describe('resource files', () => { }); test('create: required and optional params', async () => { - const response = await openai.files.create({ + const response = await client.files.create({ file: await toFile(Buffer.from('# my file contents'), 'README.md'), purpose: 'assistants', }); }); test('retrieve', async () => { - const responsePromise = openai.files.retrieve('file_id'); + const responsePromise = client.files.retrieve('file_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -43,13 +43,13 @@ describe('resource files', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.files.retrieve('file_id', { path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(client.files.retrieve('file_id', { path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); test('list', async () => { - const responsePromise = openai.files.list(); + const responsePromise = client.files.list(); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -61,7 +61,7 @@ describe('resource files', () => { test('list: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.files.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(client.files.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); @@ -69,12 +69,12 @@ describe('resource files', () => { test('list: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.files.list({ purpose: 'purpose' }, { path: '/_stainless_unknown_path' }), + client.files.list({ purpose: 'purpose' }, { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('del', async () => { - const responsePromise = openai.files.del('file_id'); + const responsePromise = client.files.del('file_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -86,20 +86,20 @@ describe('resource files', () => { test('del: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.files.del('file_id', { path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(client.files.del('file_id', { path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); test('content: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.files.content('file_id', { path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(client.files.content('file_id', { path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); test('retrieveContent', async () => { - const responsePromise = openai.files.retrieveContent('file_id'); + const responsePromise = client.files.retrieveContent('file_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -112,7 +112,7 @@ describe('resource files', () => { test('retrieveContent: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.files.retrieveContent('file_id', { path: '/_stainless_unknown_path' }), + client.files.retrieveContent('file_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); }); diff --git a/tests/api-resources/fine-tuning/jobs/checkpoints.test.ts b/tests/api-resources/fine-tuning/jobs/checkpoints.test.ts index 3a01448e2..d211a9b10 100644 --- a/tests/api-resources/fine-tuning/jobs/checkpoints.test.ts +++ b/tests/api-resources/fine-tuning/jobs/checkpoints.test.ts @@ -3,14 +3,14 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource checkpoints', () => { test('list', async () => { - const responsePromise = openai.fineTuning.jobs.checkpoints.list('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); + const responsePromise = client.fineTuning.jobs.checkpoints.list('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -23,7 +23,7 @@ describe('resource checkpoints', () => { test('list: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.fineTuning.jobs.checkpoints.list('ft-AF1WoRqd3aJAHsqc9NY7iL8F', { + client.fineTuning.jobs.checkpoints.list('ft-AF1WoRqd3aJAHsqc9NY7iL8F', { path: '/_stainless_unknown_path', }), ).rejects.toThrow(OpenAI.NotFoundError); @@ -32,7 +32,7 @@ describe('resource checkpoints', () => { test('list: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.fineTuning.jobs.checkpoints.list( + client.fineTuning.jobs.checkpoints.list( 'ft-AF1WoRqd3aJAHsqc9NY7iL8F', { after: 'after', limit: 0 }, { path: '/_stainless_unknown_path' }, diff --git a/tests/api-resources/fine-tuning/jobs/jobs.test.ts b/tests/api-resources/fine-tuning/jobs/jobs.test.ts index c14912c3a..04de7ee21 100644 --- a/tests/api-resources/fine-tuning/jobs/jobs.test.ts +++ b/tests/api-resources/fine-tuning/jobs/jobs.test.ts @@ -3,14 +3,14 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource jobs', () => { test('create: only required params', async () => { - const responsePromise = openai.fineTuning.jobs.create({ + const responsePromise = client.fineTuning.jobs.create({ model: 'gpt-3.5-turbo', training_file: 'file-abc123', }); @@ -24,7 +24,7 @@ describe('resource jobs', () => { }); test('create: required and optional params', async () => { - const response = await openai.fineTuning.jobs.create({ + const response = await client.fineTuning.jobs.create({ model: 'gpt-3.5-turbo', training_file: 'file-abc123', hyperparameters: { batch_size: 'auto', learning_rate_multiplier: 'auto', n_epochs: 'auto' }, @@ -64,7 +64,7 @@ describe('resource jobs', () => { }); test('retrieve', async () => { - const responsePromise = openai.fineTuning.jobs.retrieve('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); + const responsePromise = client.fineTuning.jobs.retrieve('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -77,12 +77,12 @@ describe('resource jobs', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.fineTuning.jobs.retrieve('ft-AF1WoRqd3aJAHsqc9NY7iL8F', { path: '/_stainless_unknown_path' }), + client.fineTuning.jobs.retrieve('ft-AF1WoRqd3aJAHsqc9NY7iL8F', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('list', async () => { - const responsePromise = openai.fineTuning.jobs.list(); + const responsePromise = client.fineTuning.jobs.list(); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -94,7 +94,7 @@ describe('resource jobs', () => { test('list: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.fineTuning.jobs.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(client.fineTuning.jobs.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); @@ -102,12 +102,12 @@ describe('resource jobs', () => { test('list: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.fineTuning.jobs.list({ after: 'after', limit: 0 }, { path: '/_stainless_unknown_path' }), + client.fineTuning.jobs.list({ after: 'after', limit: 0 }, { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('cancel', async () => { - const responsePromise = openai.fineTuning.jobs.cancel('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); + const responsePromise = client.fineTuning.jobs.cancel('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -120,12 +120,12 @@ describe('resource jobs', () => { test('cancel: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.fineTuning.jobs.cancel('ft-AF1WoRqd3aJAHsqc9NY7iL8F', { path: '/_stainless_unknown_path' }), + client.fineTuning.jobs.cancel('ft-AF1WoRqd3aJAHsqc9NY7iL8F', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('listEvents', async () => { - const responsePromise = openai.fineTuning.jobs.listEvents('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); + const responsePromise = client.fineTuning.jobs.listEvents('ft-AF1WoRqd3aJAHsqc9NY7iL8F'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -138,14 +138,14 @@ describe('resource jobs', () => { test('listEvents: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.fineTuning.jobs.listEvents('ft-AF1WoRqd3aJAHsqc9NY7iL8F', { path: '/_stainless_unknown_path' }), + client.fineTuning.jobs.listEvents('ft-AF1WoRqd3aJAHsqc9NY7iL8F', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('listEvents: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.fineTuning.jobs.listEvents( + client.fineTuning.jobs.listEvents( 'ft-AF1WoRqd3aJAHsqc9NY7iL8F', { after: 'after', limit: 0 }, { path: '/_stainless_unknown_path' }, diff --git a/tests/api-resources/images.test.ts b/tests/api-resources/images.test.ts index 33d633a63..43e67b030 100644 --- a/tests/api-resources/images.test.ts +++ b/tests/api-resources/images.test.ts @@ -3,14 +3,14 @@ import OpenAI, { toFile } from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource images', () => { test('createVariation: only required params', async () => { - const responsePromise = openai.images.createVariation({ + const responsePromise = client.images.createVariation({ image: await toFile(Buffer.from('# my file contents'), 'README.md'), }); const rawResponse = await responsePromise.asResponse(); @@ -23,7 +23,7 @@ describe('resource images', () => { }); test('createVariation: required and optional params', async () => { - const response = await openai.images.createVariation({ + const response = await client.images.createVariation({ image: await toFile(Buffer.from('# my file contents'), 'README.md'), model: 'dall-e-2', n: 1, @@ -34,7 +34,7 @@ describe('resource images', () => { }); test('edit: only required params', async () => { - const responsePromise = openai.images.edit({ + const responsePromise = client.images.edit({ image: await toFile(Buffer.from('# my file contents'), 'README.md'), prompt: 'A cute baby sea otter wearing a beret', }); @@ -48,7 +48,7 @@ describe('resource images', () => { }); test('edit: required and optional params', async () => { - const response = await openai.images.edit({ + const response = await client.images.edit({ image: await toFile(Buffer.from('# my file contents'), 'README.md'), prompt: 'A cute baby sea otter wearing a beret', mask: await toFile(Buffer.from('# my file contents'), 'README.md'), @@ -61,7 +61,7 @@ describe('resource images', () => { }); test('generate: only required params', async () => { - const responsePromise = openai.images.generate({ prompt: 'A cute baby sea otter' }); + const responsePromise = client.images.generate({ prompt: 'A cute baby sea otter' }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -72,7 +72,7 @@ describe('resource images', () => { }); test('generate: required and optional params', async () => { - const response = await openai.images.generate({ + const response = await client.images.generate({ prompt: 'A cute baby sea otter', model: 'dall-e-3', n: 1, diff --git a/tests/api-resources/models.test.ts b/tests/api-resources/models.test.ts index ca1f98365..eee91d020 100644 --- a/tests/api-resources/models.test.ts +++ b/tests/api-resources/models.test.ts @@ -3,14 +3,14 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource models', () => { test('retrieve', async () => { - const responsePromise = openai.models.retrieve('gpt-3.5-turbo'); + const responsePromise = client.models.retrieve('gpt-3.5-turbo'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -23,12 +23,12 @@ describe('resource models', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.models.retrieve('gpt-3.5-turbo', { path: '/_stainless_unknown_path' }), + client.models.retrieve('gpt-3.5-turbo', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('list', async () => { - const responsePromise = openai.models.list(); + const responsePromise = client.models.list(); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -40,13 +40,13 @@ describe('resource models', () => { test('list: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(openai.models.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(client.models.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); test('del', async () => { - const responsePromise = openai.models.del('ft:gpt-3.5-turbo:acemeco:suffix:abc123'); + const responsePromise = client.models.del('ft:gpt-3.5-turbo:acemeco:suffix:abc123'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -59,7 +59,7 @@ describe('resource models', () => { test('del: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.models.del('ft:gpt-3.5-turbo:acemeco:suffix:abc123', { path: '/_stainless_unknown_path' }), + client.models.del('ft:gpt-3.5-turbo:acemeco:suffix:abc123', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); }); diff --git a/tests/api-resources/moderations.test.ts b/tests/api-resources/moderations.test.ts index ef7298fa9..0df1f0371 100644 --- a/tests/api-resources/moderations.test.ts +++ b/tests/api-resources/moderations.test.ts @@ -3,14 +3,14 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource moderations', () => { test('create: only required params', async () => { - const responsePromise = openai.moderations.create({ input: 'I want to kill them.' }); + const responsePromise = client.moderations.create({ input: 'I want to kill them.' }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -21,7 +21,7 @@ describe('resource moderations', () => { }); test('create: required and optional params', async () => { - const response = await openai.moderations.create({ + const response = await client.moderations.create({ input: 'I want to kill them.', model: 'text-moderation-stable', }); diff --git a/tests/api-resources/uploads/parts.test.ts b/tests/api-resources/uploads/parts.test.ts index 5e69c5861..e584bab8e 100644 --- a/tests/api-resources/uploads/parts.test.ts +++ b/tests/api-resources/uploads/parts.test.ts @@ -3,14 +3,14 @@ import OpenAI, { toFile } from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource parts', () => { test('create: only required params', async () => { - const responsePromise = openai.uploads.parts.create('upload_abc123', { + const responsePromise = client.uploads.parts.create('upload_abc123', { data: await toFile(Buffer.from('# my file contents'), 'README.md'), }); const rawResponse = await responsePromise.asResponse(); @@ -23,7 +23,7 @@ describe('resource parts', () => { }); test('create: required and optional params', async () => { - const response = await openai.uploads.parts.create('upload_abc123', { + const response = await client.uploads.parts.create('upload_abc123', { data: await toFile(Buffer.from('# my file contents'), 'README.md'), }); }); diff --git a/tests/api-resources/uploads/uploads.test.ts b/tests/api-resources/uploads/uploads.test.ts index 08f059d1b..e4e3c6d30 100644 --- a/tests/api-resources/uploads/uploads.test.ts +++ b/tests/api-resources/uploads/uploads.test.ts @@ -3,14 +3,14 @@ import OpenAI from 'openai'; import { Response } from 'node-fetch'; -const openai = new OpenAI({ +const client = new OpenAI({ apiKey: 'My API Key', baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); describe('resource uploads', () => { test('create: only required params', async () => { - const responsePromise = openai.uploads.create({ + const responsePromise = client.uploads.create({ bytes: 0, filename: 'filename', mime_type: 'mime_type', @@ -26,7 +26,7 @@ describe('resource uploads', () => { }); test('create: required and optional params', async () => { - const response = await openai.uploads.create({ + const response = await client.uploads.create({ bytes: 0, filename: 'filename', mime_type: 'mime_type', @@ -35,7 +35,7 @@ describe('resource uploads', () => { }); test('cancel', async () => { - const responsePromise = openai.uploads.cancel('upload_abc123'); + const responsePromise = client.uploads.cancel('upload_abc123'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -48,12 +48,12 @@ describe('resource uploads', () => { test('cancel: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - openai.uploads.cancel('upload_abc123', { path: '/_stainless_unknown_path' }), + client.uploads.cancel('upload_abc123', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('complete: only required params', async () => { - const responsePromise = openai.uploads.complete('upload_abc123', { + const responsePromise = client.uploads.complete('upload_abc123', { part_ids: ['string', 'string', 'string'], }); const rawResponse = await responsePromise.asResponse(); @@ -66,7 +66,7 @@ describe('resource uploads', () => { }); test('complete: required and optional params', async () => { - const response = await openai.uploads.complete('upload_abc123', { + const response = await client.uploads.complete('upload_abc123', { part_ids: ['string', 'string', 'string'], md5: 'md5', }); From e258161d5a3bbceb8a62f4bc019e4571fda53e90 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 26 Jul 2024 12:01:28 +0000 Subject: [PATCH 461/725] release: 4.53.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 89bf40edf..a1a6f4a3a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.53.1" + ".": "4.53.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c57f8b1e0..f0569806c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.53.2 (2024-07-26) + +Full Changelog: [v4.53.1...v4.53.2](https://github.com/openai/openai-node/compare/v4.53.1...v4.53.2) + +### Chores + +* **docs:** fix incorrect client var names ([#955](https://github.com/openai/openai-node/issues/955)) ([cc91be8](https://github.com/openai/openai-node/commit/cc91be867bf7042abb2ee6c6d5ef69082ac64280)) + ## 4.53.1 (2024-07-25) Full Changelog: [v4.53.0...v4.53.1](https://github.com/openai/openai-node/compare/v4.53.0...v4.53.1) diff --git a/README.md b/README.md index 88c132a4f..5fed94642 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.53.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.53.2/mod.ts'; ``` diff --git a/package.json b/package.json index 590d497c5..5eaac9d39 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.53.1", + "version": "4.53.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 1952d4282..9ab99752c 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.53.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.53.2/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 7fc8bb1d7..3bfe73d03 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.53.1'; // x-release-please-version +export const VERSION = '4.53.2'; // x-release-please-version From 62f5e22f87a95953aeb39f846e97fea8afb768af Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 29 Jul 2024 19:47:25 +0000 Subject: [PATCH 462/725] chore(internal): add constant for default timeout (#960) --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 7e5df0505..ad8749ebb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -184,6 +184,7 @@ export class OpenAI extends Core.APIClient { } static OpenAI = this; + static DEFAULT_TIMEOUT = 600000; // 10 minutes static OpenAIError = Errors.OpenAIError; static APIError = Errors.APIError; From b0c2e26f8d979a3cffae1466e2f6613aeee1767a Mon Sep 17 00:00:00 2001 From: Guspan Tanadi <36249910+guspan-tanadi@users.noreply.github.com> Date: Tue, 30 Jul 2024 20:28:01 +0700 Subject: [PATCH 463/725] docs(README): link Lifecycle in Polling Helpers section (#962) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5fed94642..c498880e0 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ const run = await openai.beta.threads.runs.createAndPoll(thread.id, { }); ``` -More information on the lifecycle of a Run can be found in the [Run Lifecycle Documentation](https://platform.openai.com/docs/assistants/how-it-works/run-lifecycle) +More information on the lifecycle of a Run can be found in the [Run Lifecycle Documentation](https://platform.openai.com/docs/assistants/deep-dive/run-lifecycle) ### Bulk Upload Helpers From 5acd6f214e0dedb4229d875daff106e853d4a263 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Tue, 30 Jul 2024 15:42:13 +0100 Subject: [PATCH 464/725] chore(internal): cleanup event stream helpers (#950) * [wip]: refactor * a solution * Bind this * fix formatting --------- Co-authored-by: Young-Jin Park --- src/lib/AbstractChatCompletionRunner.ts | 255 ++---------------- src/lib/AssistantStream.ts | 58 ++-- src/lib/ChatCompletionRunner.ts | 2 +- src/lib/ChatCompletionStream.ts | 4 +- ...ssistantStreamRunner.ts => EventStream.ts} | 175 +++--------- 5 files changed, 99 insertions(+), 395 deletions(-) rename src/lib/{AbstractAssistantStreamRunner.ts => EventStream.ts} (55%) diff --git a/src/lib/AbstractChatCompletionRunner.ts b/src/lib/AbstractChatCompletionRunner.ts index 5764b85b2..590013aa6 100644 --- a/src/lib/AbstractChatCompletionRunner.ts +++ b/src/lib/AbstractChatCompletionRunner.ts @@ -8,7 +8,7 @@ import { type ChatCompletionCreateParams, type ChatCompletionTool, } from 'openai/resources/chat/completions'; -import { APIUserAbortError, OpenAIError } from 'openai/error'; +import { OpenAIError } from 'openai/error'; import { type RunnableFunction, isRunnableFunctionWithParse, @@ -20,6 +20,7 @@ import { ChatCompletionStreamingToolRunnerParams, } from './ChatCompletionStreamingRunner'; import { isAssistantMessage, isFunctionMessage, isToolMessage } from './chatCompletionUtils'; +import { BaseEvents, EventStream } from './EventStream'; const DEFAULT_MAX_CHAT_COMPLETIONS = 10; export interface RunnerOptions extends Core.RequestOptions { @@ -27,60 +28,16 @@ export interface RunnerOptions extends Core.RequestOptions { maxChatCompletions?: number; } -export abstract class AbstractChatCompletionRunner< - Events extends CustomEvents = AbstractChatCompletionRunnerEvents, -> { - controller: AbortController = new AbortController(); - - #connectedPromise: Promise; - #resolveConnectedPromise: () => void = () => {}; - #rejectConnectedPromise: (error: OpenAIError) => void = () => {}; - - #endPromise: Promise; - #resolveEndPromise: () => void = () => {}; - #rejectEndPromise: (error: OpenAIError) => void = () => {}; - - #listeners: { [Event in keyof Events]?: ListenersForEvent } = {}; - +export class AbstractChatCompletionRunner< + EventTypes extends AbstractChatCompletionRunnerEvents, +> extends EventStream { protected _chatCompletions: ChatCompletion[] = []; messages: ChatCompletionMessageParam[] = []; - #ended = false; - #errored = false; - #aborted = false; - #catchingPromiseCreated = false; - - constructor() { - this.#connectedPromise = new Promise((resolve, reject) => { - this.#resolveConnectedPromise = resolve; - this.#rejectConnectedPromise = reject; - }); - - this.#endPromise = new Promise((resolve, reject) => { - this.#resolveEndPromise = resolve; - this.#rejectEndPromise = reject; - }); - - // Don't let these promises cause unhandled rejection errors. - // we will manually cause an unhandled rejection error later - // if the user hasn't registered any error listener or called - // any promise-returning method. - this.#connectedPromise.catch(() => {}); - this.#endPromise.catch(() => {}); - } - - protected _run(executor: () => Promise) { - // Unfortunately if we call `executor()` immediately we get runtime errors about - // references to `this` before the `super()` constructor call returns. - setTimeout(() => { - executor().then(() => { - this._emitFinal(); - this._emit('end'); - }, this.#handleError); - }, 0); - } - - protected _addChatCompletion(chatCompletion: ChatCompletion): ChatCompletion { + protected _addChatCompletion( + this: AbstractChatCompletionRunner, + chatCompletion: ChatCompletion, + ): ChatCompletion { this._chatCompletions.push(chatCompletion); this._emit('chatCompletion', chatCompletion); const message = chatCompletion.choices[0]?.message; @@ -88,7 +45,11 @@ export abstract class AbstractChatCompletionRunner< return chatCompletion; } - protected _addMessage(message: ChatCompletionMessageParam, emit = true) { + protected _addMessage( + this: AbstractChatCompletionRunner, + message: ChatCompletionMessageParam, + emit = true, + ) { if (!('content' in message)) message.content = null; this.messages.push(message); @@ -110,99 +71,6 @@ export abstract class AbstractChatCompletionRunner< } } - protected _connected() { - if (this.ended) return; - this.#resolveConnectedPromise(); - this._emit('connect'); - } - - get ended(): boolean { - return this.#ended; - } - - get errored(): boolean { - return this.#errored; - } - - get aborted(): boolean { - return this.#aborted; - } - - abort() { - this.controller.abort(); - } - - /** - * Adds the listener function to the end of the listeners array for the event. - * No checks are made to see if the listener has already been added. Multiple calls passing - * the same combination of event and listener will result in the listener being added, and - * called, multiple times. - * @returns this ChatCompletionStream, so that calls can be chained - */ - on(event: Event, listener: ListenerForEvent): this { - const listeners: ListenersForEvent = - this.#listeners[event] || (this.#listeners[event] = []); - listeners.push({ listener }); - return this; - } - - /** - * Removes the specified listener from the listener array for the event. - * off() will remove, at most, one instance of a listener from the listener array. If any single - * listener has been added multiple times to the listener array for the specified event, then - * off() must be called multiple times to remove each instance. - * @returns this ChatCompletionStream, so that calls can be chained - */ - off(event: Event, listener: ListenerForEvent): this { - const listeners = this.#listeners[event]; - if (!listeners) return this; - const index = listeners.findIndex((l) => l.listener === listener); - if (index >= 0) listeners.splice(index, 1); - return this; - } - - /** - * Adds a one-time listener function for the event. The next time the event is triggered, - * this listener is removed and then invoked. - * @returns this ChatCompletionStream, so that calls can be chained - */ - once(event: Event, listener: ListenerForEvent): this { - const listeners: ListenersForEvent = - this.#listeners[event] || (this.#listeners[event] = []); - listeners.push({ listener, once: true }); - return this; - } - - /** - * This is similar to `.once()`, but returns a Promise that resolves the next time - * the event is triggered, instead of calling a listener callback. - * @returns a Promise that resolves the next time given event is triggered, - * or rejects if an error is emitted. (If you request the 'error' event, - * returns a promise that resolves with the error). - * - * Example: - * - * const message = await stream.emitted('message') // rejects if the stream errors - */ - emitted( - event: Event, - ): Promise< - EventParameters extends [infer Param] ? Param - : EventParameters extends [] ? void - : EventParameters - > { - return new Promise((resolve, reject) => { - this.#catchingPromiseCreated = true; - if (event !== 'error') this.once('error', reject); - this.once(event, resolve as any); - }); - } - - async done(): Promise { - this.#catchingPromiseCreated = true; - await this.#endPromise; - } - /** * @returns a promise that resolves with the final ChatCompletion, or rejects * if an error occurred or the stream ended prematurely without producing a ChatCompletion. @@ -327,75 +195,7 @@ export abstract class AbstractChatCompletionRunner< return [...this._chatCompletions]; } - #handleError = (error: unknown) => { - this.#errored = true; - if (error instanceof Error && error.name === 'AbortError') { - error = new APIUserAbortError(); - } - if (error instanceof APIUserAbortError) { - this.#aborted = true; - return this._emit('abort', error); - } - if (error instanceof OpenAIError) { - return this._emit('error', error); - } - if (error instanceof Error) { - const openAIError: OpenAIError = new OpenAIError(error.message); - // @ts-ignore - openAIError.cause = error; - return this._emit('error', openAIError); - } - return this._emit('error', new OpenAIError(String(error))); - }; - - protected _emit(event: Event, ...args: EventParameters) { - // make sure we don't emit any events after end - if (this.#ended) { - return; - } - - if (event === 'end') { - this.#ended = true; - this.#resolveEndPromise(); - } - - const listeners: ListenersForEvent | undefined = this.#listeners[event]; - if (listeners) { - this.#listeners[event] = listeners.filter((l) => !l.once) as any; - listeners.forEach(({ listener }: any) => listener(...args)); - } - - if (event === 'abort') { - const error = args[0] as APIUserAbortError; - if (!this.#catchingPromiseCreated && !listeners?.length) { - Promise.reject(error); - } - this.#rejectConnectedPromise(error); - this.#rejectEndPromise(error); - this._emit('end'); - return; - } - - if (event === 'error') { - // NOTE: _emit('error', error) should only be called from #handleError(). - - const error = args[0] as OpenAIError; - if (!this.#catchingPromiseCreated && !listeners?.length) { - // Trigger an unhandled rejection if the user hasn't registered any error handlers. - // If you are seeing stack traces here, make sure to handle errors via either: - // - runner.on('error', () => ...) - // - await runner.done() - // - await runner.finalChatCompletion() - // - etc. - Promise.reject(error); - } - this.#rejectConnectedPromise(error); - this.#rejectEndPromise(error); - this._emit('end'); - } - } - - protected _emitFinal() { + protected override _emitFinal(this: AbstractChatCompletionRunner) { const completion = this._chatCompletions[this._chatCompletions.length - 1]; if (completion) this._emit('finalChatCompletion', completion); const finalMessage = this.#getFinalMessage(); @@ -650,27 +450,7 @@ export abstract class AbstractChatCompletionRunner< } } -type CustomEvents = { - [k in Event]: k extends keyof AbstractChatCompletionRunnerEvents ? AbstractChatCompletionRunnerEvents[k] - : (...args: any[]) => void; -}; - -type ListenerForEvent, Event extends keyof Events> = Event extends ( - keyof AbstractChatCompletionRunnerEvents -) ? - AbstractChatCompletionRunnerEvents[Event] -: Events[Event]; - -type ListenersForEvent, Event extends keyof Events> = Array<{ - listener: ListenerForEvent; - once?: boolean; -}>; -type EventParameters, Event extends keyof Events> = Parameters< - ListenerForEvent ->; - -export interface AbstractChatCompletionRunnerEvents { - connect: () => void; +export interface AbstractChatCompletionRunnerEvents extends BaseEvents { functionCall: (functionCall: ChatCompletionMessage.FunctionCall) => void; message: (message: ChatCompletionMessageParam) => void; chatCompletion: (completion: ChatCompletion) => void; @@ -680,8 +460,5 @@ export interface AbstractChatCompletionRunnerEvents { finalFunctionCall: (functionCall: ChatCompletionMessage.FunctionCall) => void; functionCallResult: (content: string) => void; finalFunctionCallResult: (content: string) => void; - error: (error: OpenAIError) => void; - abort: (error: APIUserAbortError) => void; - end: () => void; totalUsage: (usage: CompletionUsage) => void; } diff --git a/src/lib/AssistantStream.ts b/src/lib/AssistantStream.ts index de7511b5d..0f88530b3 100644 --- a/src/lib/AssistantStream.ts +++ b/src/lib/AssistantStream.ts @@ -19,10 +19,6 @@ import { RunSubmitToolOutputsParamsBase, RunSubmitToolOutputsParamsStreaming, } from 'openai/resources/beta/threads/runs/runs'; -import { - AbstractAssistantRunnerEvents, - AbstractAssistantStreamRunner, -} from './AbstractAssistantStreamRunner'; import { type ReadableStream } from 'openai/_shims/index'; import { Stream } from 'openai/streaming'; import { APIUserAbortError, OpenAIError } from 'openai/error'; @@ -34,9 +30,12 @@ import { } from 'openai/resources/beta/assistants'; import { RunStep, RunStepDelta, ToolCall, ToolCallDelta } from 'openai/resources/beta/threads/runs/steps'; import { ThreadCreateAndRunParamsBase, Threads } from 'openai/resources/beta/threads/threads'; +import { BaseEvents, EventStream } from './EventStream'; import MessageDelta = Messages.MessageDelta; -export interface AssistantStreamEvents extends AbstractAssistantRunnerEvents { +export interface AssistantStreamEvents extends BaseEvents { + run: (run: Run) => void; + //New event structure messageCreated: (message: Message) => void; messageDelta: (message: MessageDelta, snapshot: Message) => void; @@ -57,8 +56,6 @@ export interface AssistantStreamEvents extends AbstractAssistantRunnerEvents { //No created or delta as this is not streamed imageFileDone: (content: ImageFile, snapshot: Message) => void; - end: () => void; - event: (event: AssistantStreamEvent) => void; } @@ -75,7 +72,7 @@ export type RunSubmitToolOutputsParamsStream = Omit + extends EventStream implements AsyncIterable { //Track all events in a single list for reference @@ -207,7 +204,7 @@ export class AssistantStream return runner; } - protected override async _createToolAssistantStream( + protected async _createToolAssistantStream( run: Runs, threadId: string, runId: string, @@ -304,7 +301,7 @@ export class AssistantStream return this.#finalRun; } - protected override async _createThreadAssistantStream( + protected async _createThreadAssistantStream( thread: Threads, params: ThreadCreateAndRunParamsBase, options?: Core.RequestOptions, @@ -330,7 +327,7 @@ export class AssistantStream return this._addRun(this.#endRequest()); } - protected override async _createAssistantStream( + protected async _createAssistantStream( run: Runs, threadId: string, params: RunCreateParamsBase, @@ -417,7 +414,7 @@ export class AssistantStream return this.#finalRun; } - #handleMessage(event: MessageStreamEvent) { + #handleMessage(this: AssistantStream, event: MessageStreamEvent) { const [accumulatedMessage, newContent] = this.#accumulateMessage(event, this.#messageSnapshot); this.#messageSnapshot = accumulatedMessage; this.#messageSnapshots[accumulatedMessage.id] = accumulatedMessage; @@ -500,7 +497,7 @@ export class AssistantStream } } - #handleRunStep(event: RunStepStreamEvent) { + #handleRunStep(this: AssistantStream, event: RunStepStreamEvent) { const accumulatedRunStep = this.#accumulateRunStep(event); this.#currentRunStepSnapshot = accumulatedRunStep; @@ -556,7 +553,7 @@ export class AssistantStream } } - #handleEvent(event: AssistantStreamEvent) { + #handleEvent(this: AssistantStream, event: AssistantStreamEvent) { this.#events.push(event); this._emit('event', event); } @@ -696,7 +693,7 @@ export class AssistantStream return acc; } - #handleRun(event: RunStreamEvent) { + #handleRun(this: AssistantStream, event: RunStreamEvent) { this.#currentRunSnapshot = event.data; switch (event.event) { case 'thread.run.created': @@ -720,4 +717,35 @@ export class AssistantStream break; } } + + protected _addRun(run: Run): Run { + return run; + } + + protected async _threadAssistantStream( + body: ThreadCreateAndRunParamsBase, + thread: Threads, + options?: Core.RequestOptions, + ): Promise { + return await this._createThreadAssistantStream(thread, body, options); + } + + protected async _runAssistantStream( + threadId: string, + runs: Runs, + params: RunCreateParamsBase, + options?: Core.RequestOptions, + ): Promise { + return await this._createAssistantStream(runs, threadId, params, options); + } + + protected async _runToolAssistantStream( + threadId: string, + runId: string, + runs: Runs, + params: RunSubmitToolOutputsParamsStream, + options?: Core.RequestOptions, + ): Promise { + return await this._createToolAssistantStream(runs, threadId, runId, params, options); + } } diff --git a/src/lib/ChatCompletionRunner.ts b/src/lib/ChatCompletionRunner.ts index a110f0192..c756919b0 100644 --- a/src/lib/ChatCompletionRunner.ts +++ b/src/lib/ChatCompletionRunner.ts @@ -59,7 +59,7 @@ export class ChatCompletionRunner extends AbstractChatCompletionRunner { + [Symbol.asyncIterator](this: ChatCompletionStream): AsyncIterator { const pushQueue: ChatCompletionChunk[] = []; const readQueue: { resolve: (chunk: ChatCompletionChunk | undefined) => void; diff --git a/src/lib/AbstractAssistantStreamRunner.ts b/src/lib/EventStream.ts similarity index 55% rename from src/lib/AbstractAssistantStreamRunner.ts rename to src/lib/EventStream.ts index b600f0df3..a18c771dd 100644 --- a/src/lib/AbstractAssistantStreamRunner.ts +++ b/src/lib/EventStream.ts @@ -1,12 +1,6 @@ -import * as Core from 'openai/core'; import { APIUserAbortError, OpenAIError } from 'openai/error'; -import { Run, RunSubmitToolOutputsParamsBase } from 'openai/resources/beta/threads/runs/runs'; -import { RunCreateParamsBase, Runs } from 'openai/resources/beta/threads/runs/runs'; -import { ThreadCreateAndRunParamsBase, Threads } from 'openai/resources/beta/threads/threads'; -export abstract class AbstractAssistantStreamRunner< - Events extends CustomEvents = AbstractAssistantRunnerEvents, -> { +export class EventStream { controller: AbortController = new AbortController(); #connectedPromise: Promise; @@ -17,7 +11,9 @@ export abstract class AbstractAssistantStreamRunner< #resolveEndPromise: () => void = () => {}; #rejectEndPromise: (error: OpenAIError) => void = () => {}; - #listeners: { [Event in keyof Events]?: ListenersForEvent } = {}; + #listeners: { + [Event in keyof EventTypes]?: EventListeners; + } = {}; #ended = false; #errored = false; @@ -43,22 +39,18 @@ export abstract class AbstractAssistantStreamRunner< this.#endPromise.catch(() => {}); } - protected _run(executor: () => Promise) { + protected _run(this: EventStream, executor: () => Promise) { // Unfortunately if we call `executor()` immediately we get runtime errors about // references to `this` before the `super()` constructor call returns. setTimeout(() => { executor().then(() => { - // this._emitFinal(); + this._emitFinal(); this._emit('end'); - }, this.#handleError); + }, this.#handleError.bind(this)); }, 0); } - protected _addRun(run: Run): Run { - return run; - } - - protected _connected() { + protected _connected(this: EventStream) { if (this.ended) return; this.#resolveConnectedPromise(); this._emit('connect'); @@ -87,8 +79,8 @@ export abstract class AbstractAssistantStreamRunner< * called, multiple times. * @returns this ChatCompletionStream, so that calls can be chained */ - on(event: Event, listener: ListenerForEvent): this { - const listeners: ListenersForEvent = + on(event: Event, listener: EventListener): this { + const listeners: EventListeners = this.#listeners[event] || (this.#listeners[event] = []); listeners.push({ listener }); return this; @@ -101,7 +93,7 @@ export abstract class AbstractAssistantStreamRunner< * off() must be called multiple times to remove each instance. * @returns this ChatCompletionStream, so that calls can be chained */ - off(event: Event, listener: ListenerForEvent): this { + off(event: Event, listener: EventListener): this { const listeners = this.#listeners[event]; if (!listeners) return this; const index = listeners.findIndex((l) => l.listener === listener); @@ -114,8 +106,8 @@ export abstract class AbstractAssistantStreamRunner< * this listener is removed and then invoked. * @returns this ChatCompletionStream, so that calls can be chained */ - once(event: Event, listener: ListenerForEvent): this { - const listeners: ListenersForEvent = + once(event: Event, listener: EventListener): this { + const listeners: EventListeners = this.#listeners[event] || (this.#listeners[event] = []); listeners.push({ listener, once: true }); return this; @@ -132,12 +124,12 @@ export abstract class AbstractAssistantStreamRunner< * * const message = await stream.emitted('message') // rejects if the stream errors */ - emitted( + emitted( event: Event, ): Promise< - EventParameters extends [infer Param] ? Param - : EventParameters extends [] ? void - : EventParameters + EventParameters extends [infer Param] ? Param + : EventParameters extends [] ? void + : EventParameters > { return new Promise((resolve, reject) => { this.#catchingPromiseCreated = true; @@ -151,7 +143,7 @@ export abstract class AbstractAssistantStreamRunner< await this.#endPromise; } - #handleError = (error: unknown) => { + #handleError(this: EventStream, error: unknown) { this.#errored = true; if (error instanceof Error && error.name === 'AbortError') { error = new APIUserAbortError(); @@ -170,9 +162,15 @@ export abstract class AbstractAssistantStreamRunner< return this._emit('error', openAIError); } return this._emit('error', new OpenAIError(String(error))); - }; + } - protected _emit(event: Event, ...args: EventParameters) { + _emit(event: Event, ...args: EventParameters): void; + _emit(event: Event, ...args: EventParameters): void; + _emit( + this: EventStream, + event: Event, + ...args: EventParameters + ) { // make sure we don't emit any events after end if (this.#ended) { return; @@ -183,10 +181,10 @@ export abstract class AbstractAssistantStreamRunner< this.#resolveEndPromise(); } - const listeners: ListenersForEvent | undefined = this.#listeners[event]; + const listeners: EventListeners | undefined = this.#listeners[event]; if (listeners) { this.#listeners[event] = listeners.filter((l) => !l.once) as any; - listeners.forEach(({ listener }: any) => listener(...args)); + listeners.forEach(({ listener }: any) => listener(...(args as any))); } if (event === 'abort') { @@ -219,121 +217,22 @@ export abstract class AbstractAssistantStreamRunner< } } - protected async _threadAssistantStream( - body: ThreadCreateAndRunParamsBase, - thread: Threads, - options?: Core.RequestOptions, - ): Promise { - return await this._createThreadAssistantStream(thread, body, options); - } - - protected async _runAssistantStream( - threadId: string, - runs: Runs, - params: RunCreateParamsBase, - options?: Core.RequestOptions, - ): Promise { - return await this._createAssistantStream(runs, threadId, params, options); - } - - protected async _runToolAssistantStream( - threadId: string, - runId: string, - runs: Runs, - params: RunSubmitToolOutputsParamsBase, - options?: Core.RequestOptions, - ): Promise { - return await this._createToolAssistantStream(runs, threadId, runId, params, options); - } - - protected async _createThreadAssistantStream( - thread: Threads, - body: ThreadCreateAndRunParamsBase, - options?: Core.RequestOptions, - ): Promise { - const signal = options?.signal; - if (signal) { - if (signal.aborted) this.controller.abort(); - signal.addEventListener('abort', () => this.controller.abort()); - } - // this.#validateParams(params); - - const runResult = await thread.createAndRun( - { ...body, stream: false }, - { ...options, signal: this.controller.signal }, - ); - this._connected(); - return this._addRun(runResult as Run); - } - - protected async _createToolAssistantStream( - run: Runs, - threadId: string, - runId: string, - params: RunSubmitToolOutputsParamsBase, - options?: Core.RequestOptions, - ): Promise { - const signal = options?.signal; - if (signal) { - if (signal.aborted) this.controller.abort(); - signal.addEventListener('abort', () => this.controller.abort()); - } - - const runResult = await run.submitToolOutputs( - threadId, - runId, - { ...params, stream: false }, - { ...options, signal: this.controller.signal }, - ); - this._connected(); - return this._addRun(runResult as Run); - } - - protected async _createAssistantStream( - run: Runs, - threadId: string, - params: RunCreateParamsBase, - options?: Core.RequestOptions, - ): Promise { - const signal = options?.signal; - if (signal) { - if (signal.aborted) this.controller.abort(); - signal.addEventListener('abort', () => this.controller.abort()); - } - // this.#validateParams(params); - - const runResult = await run.create( - threadId, - { ...params, stream: false }, - { ...options, signal: this.controller.signal }, - ); - this._connected(); - return this._addRun(runResult as Run); - } + protected _emitFinal(): void {} } -type CustomEvents = { - [k in Event]: k extends keyof AbstractAssistantRunnerEvents ? AbstractAssistantRunnerEvents[k] - : (...args: any[]) => void; -}; +type EventListener = Events[EventType]; -type ListenerForEvent, Event extends keyof Events> = Event extends ( - keyof AbstractAssistantRunnerEvents -) ? - AbstractAssistantRunnerEvents[Event] -: Events[Event]; - -type ListenersForEvent, Event extends keyof Events> = Array<{ - listener: ListenerForEvent; +type EventListeners = Array<{ + listener: EventListener; once?: boolean; }>; -type EventParameters, Event extends keyof Events> = Parameters< - ListenerForEvent ->; -export interface AbstractAssistantRunnerEvents { +export type EventParameters = { + [Event in EventType]: EventListener extends (...args: infer P) => any ? P : never; +}[EventType]; + +export interface BaseEvents { connect: () => void; - run: (run: Run) => void; error: (error: OpenAIError) => void; abort: (error: APIUserAbortError) => void; end: () => void; From 9920e1d14ce8a8115fd07d716e7459151b6c4ddd Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 31 Jul 2024 16:31:55 +0000 Subject: [PATCH 465/725] chore(ci): correctly tag pre-release npm packages (#963) --- bin/publish-npm | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/bin/publish-npm b/bin/publish-npm index 4d6c9f357..4c21181bb 100644 --- a/bin/publish-npm +++ b/bin/publish-npm @@ -2,8 +2,24 @@ set -eux -npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN +npm config set '//registry.npmjs.org/:_authToken' "$NPM_TOKEN" +# Build the project yarn build + +# Navigate to the dist directory cd dist -yarn publish --access public + +# Get the version from package.json +VERSION="$(node -p "require('./package.json').version")" + +# Extract the pre-release tag if it exists +if [[ "$VERSION" =~ -([a-zA-Z]+) ]]; then + # Extract the part before any dot in the pre-release identifier + TAG="${BASH_REMATCH[1]}" +else + TAG="latest" +fi + +# Publish with the appropriate tag +yarn publish --access public --tag "$TAG" From 7f9704e1811439850424f72d15cd44671a32f205 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 2 Aug 2024 02:47:09 +0000 Subject: [PATCH 466/725] feat: extract out `ImageModel`, `AudioModel`, `SpeechModel` (#964) --- api.md | 10 +++++++++ src/index.ts | 3 +++ src/resources/audio/audio.ts | 5 +++++ src/resources/audio/index.ts | 4 ++-- src/resources/audio/speech.ts | 5 ++++- src/resources/audio/transcriptions.ts | 3 ++- src/resources/audio/translations.ts | 3 ++- src/resources/beta/assistants.ts | 26 ++---------------------- src/resources/beta/threads/runs/runs.ts | 27 ++----------------------- src/resources/beta/threads/threads.ts | 27 ++----------------------- src/resources/images.ts | 9 ++++++--- src/resources/index.ts | 11 ++++++++-- src/resources/moderations.ts | 5 ++++- 13 files changed, 53 insertions(+), 85 deletions(-) diff --git a/api.md b/api.md index ddc9fce38..acae0b8e8 100644 --- a/api.md +++ b/api.md @@ -88,6 +88,7 @@ Methods: Types: - Image +- ImageModel - ImagesResponse Methods: @@ -98,6 +99,10 @@ Methods: # Audio +Types: + +- AudioModel + ## Transcriptions Types: @@ -120,6 +125,10 @@ Methods: ## Speech +Types: + +- SpeechModel + Methods: - client.audio.speech.create({ ...params }) -> Response @@ -129,6 +138,7 @@ Methods: Types: - Moderation +- ModerationModel - ModerationCreateResponse Methods: diff --git a/src/index.ts b/src/index.ts index ad8749ebb..cd0dd67b3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -282,15 +282,18 @@ export namespace OpenAI { export import Images = API.Images; export import Image = API.Image; + export import ImageModel = API.ImageModel; export import ImagesResponse = API.ImagesResponse; export import ImageCreateVariationParams = API.ImageCreateVariationParams; export import ImageEditParams = API.ImageEditParams; export import ImageGenerateParams = API.ImageGenerateParams; export import Audio = API.Audio; + export import AudioModel = API.AudioModel; export import Moderations = API.Moderations; export import Moderation = API.Moderation; + export import ModerationModel = API.ModerationModel; export import ModerationCreateResponse = API.ModerationCreateResponse; export import ModerationCreateParams = API.ModerationCreateParams; diff --git a/src/resources/audio/audio.ts b/src/resources/audio/audio.ts index a89bf0102..1f0269d03 100644 --- a/src/resources/audio/audio.ts +++ b/src/resources/audio/audio.ts @@ -1,6 +1,7 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from '../../resource'; +import * as AudioAPI from './audio'; import * as SpeechAPI from './speech'; import * as TranscriptionsAPI from './transcriptions'; import * as TranslationsAPI from './translations'; @@ -11,7 +12,10 @@ export class Audio extends APIResource { speech: SpeechAPI.Speech = new SpeechAPI.Speech(this._client); } +export type AudioModel = 'whisper-1'; + export namespace Audio { + export import AudioModel = AudioAPI.AudioModel; export import Transcriptions = TranscriptionsAPI.Transcriptions; export import Transcription = TranscriptionsAPI.Transcription; export import TranscriptionCreateParams = TranscriptionsAPI.TranscriptionCreateParams; @@ -19,5 +23,6 @@ export namespace Audio { export import Translation = TranslationsAPI.Translation; export import TranslationCreateParams = TranslationsAPI.TranslationCreateParams; export import Speech = SpeechAPI.Speech; + export import SpeechModel = SpeechAPI.SpeechModel; export import SpeechCreateParams = SpeechAPI.SpeechCreateParams; } diff --git a/src/resources/audio/index.ts b/src/resources/audio/index.ts index 31732a267..a7f935964 100644 --- a/src/resources/audio/index.ts +++ b/src/resources/audio/index.ts @@ -1,6 +1,6 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -export { Audio } from './audio'; -export { SpeechCreateParams, Speech } from './speech'; +export { AudioModel, Audio } from './audio'; +export { SpeechModel, SpeechCreateParams, Speech } from './speech'; export { Transcription, TranscriptionCreateParams, Transcriptions } from './transcriptions'; export { Translation, TranslationCreateParams, Translations } from './translations'; diff --git a/src/resources/audio/speech.ts b/src/resources/audio/speech.ts index d0a6e7f31..34fb26b02 100644 --- a/src/resources/audio/speech.ts +++ b/src/resources/audio/speech.ts @@ -14,6 +14,8 @@ export class Speech extends APIResource { } } +export type SpeechModel = 'tts-1' | 'tts-1-hd'; + export interface SpeechCreateParams { /** * The text to generate audio for. The maximum length is 4096 characters. @@ -24,7 +26,7 @@ export interface SpeechCreateParams { * One of the available [TTS models](https://platform.openai.com/docs/models/tts): * `tts-1` or `tts-1-hd` */ - model: (string & {}) | 'tts-1' | 'tts-1-hd'; + model: (string & {}) | SpeechModel; /** * The voice to use when generating the audio. Supported voices are `alloy`, @@ -48,5 +50,6 @@ export interface SpeechCreateParams { } export namespace Speech { + export import SpeechModel = SpeechAPI.SpeechModel; export import SpeechCreateParams = SpeechAPI.SpeechCreateParams; } diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index 0eb4e4b7c..5c30d6c59 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -3,6 +3,7 @@ import { APIResource } from '../../resource'; import * as Core from '../../core'; import * as TranscriptionsAPI from './transcriptions'; +import * as AudioAPI from './audio'; export class Transcriptions extends APIResource { /** @@ -35,7 +36,7 @@ export interface TranscriptionCreateParams { * ID of the model to use. Only `whisper-1` (which is powered by our open source * Whisper V2 model) is currently available. */ - model: (string & {}) | 'whisper-1'; + model: (string & {}) | AudioAPI.AudioModel; /** * The language of the input audio. Supplying the input language in diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index 48fddc2ee..dedc15b65 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -3,6 +3,7 @@ import { APIResource } from '../../resource'; import * as Core from '../../core'; import * as TranslationsAPI from './translations'; +import * as AudioAPI from './audio'; export class Translations extends APIResource { /** @@ -28,7 +29,7 @@ export interface TranslationCreateParams { * ID of the model to use. Only `whisper-1` (which is powered by our open source * Whisper V2 model) is currently available. */ - model: (string & {}) | 'whisper-1'; + model: (string & {}) | AudioAPI.AudioModel; /** * An optional text to guide the model's style or continue a previous audio diff --git a/src/resources/beta/assistants.ts b/src/resources/beta/assistants.ts index abacfd06e..d66b03768 100644 --- a/src/resources/beta/assistants.ts +++ b/src/resources/beta/assistants.ts @@ -5,6 +5,7 @@ import { isRequestOptions } from '../../core'; import * as Core from '../../core'; import * as AssistantsAPI from './assistants'; import * as Shared from '../shared'; +import * as ChatAPI from '../chat/chat'; import * as MessagesAPI from './threads/messages'; import * as ThreadsAPI from './threads/threads'; import * as RunsAPI from './threads/runs/runs'; @@ -1053,30 +1054,7 @@ export interface AssistantCreateParams { * [Model overview](https://platform.openai.com/docs/models/overview) for * descriptions of them. */ - model: - | (string & {}) - | 'gpt-4o' - | 'gpt-4o-2024-05-13' - | 'gpt-4o-mini' - | 'gpt-4o-mini-2024-07-18' - | 'gpt-4-turbo' - | 'gpt-4-turbo-2024-04-09' - | 'gpt-4-0125-preview' - | 'gpt-4-turbo-preview' - | 'gpt-4-1106-preview' - | 'gpt-4-vision-preview' - | 'gpt-4' - | 'gpt-4-0314' - | 'gpt-4-0613' - | 'gpt-4-32k' - | 'gpt-4-32k-0314' - | 'gpt-4-32k-0613' - | 'gpt-3.5-turbo' - | 'gpt-3.5-turbo-16k' - | 'gpt-3.5-turbo-0613' - | 'gpt-3.5-turbo-1106' - | 'gpt-3.5-turbo-0125' - | 'gpt-3.5-turbo-16k-0613'; + model: (string & {}) | ChatAPI.ChatModel; /** * The description of the assistant. The maximum length is 512 characters. diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 24b6ce4a2..db9827616 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -9,6 +9,7 @@ import { sleep } from '../../../../core'; import { RunSubmitToolOutputsParamsStream } from '../../../../lib/AssistantStream'; import * as RunsAPI from './runs'; import * as AssistantsAPI from '../../assistants'; +import * as ChatAPI from '../../../chat/chat'; import * as MessagesAPI from '../messages'; import * as ThreadsAPI from '../threads'; import * as StepsAPI from './steps'; @@ -668,31 +669,7 @@ export interface RunCreateParamsBase { * model associated with the assistant. If not, the model associated with the * assistant will be used. */ - model?: - | (string & {}) - | 'gpt-4o' - | 'gpt-4o-2024-05-13' - | 'gpt-4o-mini' - | 'gpt-4o-mini-2024-07-18' - | 'gpt-4-turbo' - | 'gpt-4-turbo-2024-04-09' - | 'gpt-4-0125-preview' - | 'gpt-4-turbo-preview' - | 'gpt-4-1106-preview' - | 'gpt-4-vision-preview' - | 'gpt-4' - | 'gpt-4-0314' - | 'gpt-4-0613' - | 'gpt-4-32k' - | 'gpt-4-32k-0314' - | 'gpt-4-32k-0613' - | 'gpt-3.5-turbo' - | 'gpt-3.5-turbo-16k' - | 'gpt-3.5-turbo-0613' - | 'gpt-3.5-turbo-1106' - | 'gpt-3.5-turbo-0125' - | 'gpt-3.5-turbo-16k-0613' - | null; + model?: (string & {}) | ChatAPI.ChatModel | null; /** * Whether to enable diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 04ce7b57d..0b931a911 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -7,6 +7,7 @@ import { APIPromise } from '../../../core'; import * as Core from '../../../core'; import * as ThreadsAPI from './threads'; import * as AssistantsAPI from '../assistants'; +import * as ChatAPI from '../../chat/chat'; import * as MessagesAPI from './messages'; import * as RunsAPI from './runs/runs'; import { Stream } from '../../../streaming'; @@ -545,31 +546,7 @@ export interface ThreadCreateAndRunParamsBase { * model associated with the assistant. If not, the model associated with the * assistant will be used. */ - model?: - | (string & {}) - | 'gpt-4o' - | 'gpt-4o-2024-05-13' - | 'gpt-4o-mini' - | 'gpt-4o-mini-2024-07-18' - | 'gpt-4-turbo' - | 'gpt-4-turbo-2024-04-09' - | 'gpt-4-0125-preview' - | 'gpt-4-turbo-preview' - | 'gpt-4-1106-preview' - | 'gpt-4-vision-preview' - | 'gpt-4' - | 'gpt-4-0314' - | 'gpt-4-0613' - | 'gpt-4-32k' - | 'gpt-4-32k-0314' - | 'gpt-4-32k-0613' - | 'gpt-3.5-turbo' - | 'gpt-3.5-turbo-16k' - | 'gpt-3.5-turbo-0613' - | 'gpt-3.5-turbo-1106' - | 'gpt-3.5-turbo-0125' - | 'gpt-3.5-turbo-16k-0613' - | null; + model?: (string & {}) | ChatAPI.ChatModel | null; /** * Whether to enable diff --git a/src/resources/images.ts b/src/resources/images.ts index 24af635b2..fdd0b8881 100644 --- a/src/resources/images.ts +++ b/src/resources/images.ts @@ -52,6 +52,8 @@ export interface Image { url?: string; } +export type ImageModel = 'dall-e-2' | 'dall-e-3'; + export interface ImagesResponse { created: number; @@ -69,7 +71,7 @@ export interface ImageCreateVariationParams { * The model to use for image generation. Only `dall-e-2` is supported at this * time. */ - model?: (string & {}) | 'dall-e-2' | null; + model?: (string & {}) | ImageModel | null; /** * The number of images to generate. Must be between 1 and 10. For `dall-e-3`, only @@ -122,7 +124,7 @@ export interface ImageEditParams { * The model to use for image generation. Only `dall-e-2` is supported at this * time. */ - model?: (string & {}) | 'dall-e-2' | null; + model?: (string & {}) | ImageModel | null; /** * The number of images to generate. Must be between 1 and 10. @@ -160,7 +162,7 @@ export interface ImageGenerateParams { /** * The model to use for image generation. */ - model?: (string & {}) | 'dall-e-2' | 'dall-e-3' | null; + model?: (string & {}) | ImageModel | null; /** * The number of images to generate. Must be between 1 and 10. For `dall-e-3`, only @@ -207,6 +209,7 @@ export interface ImageGenerateParams { export namespace Images { export import Image = ImagesAPI.Image; + export import ImageModel = ImagesAPI.ImageModel; export import ImagesResponse = ImagesAPI.ImagesResponse; export import ImageCreateVariationParams = ImagesAPI.ImageCreateVariationParams; export import ImageEditParams = ImagesAPI.ImageEditParams; diff --git a/src/resources/index.ts b/src/resources/index.ts index 9f2a3cbe7..8d952e2db 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -2,7 +2,7 @@ export * from './chat/index'; export * from './shared'; -export { Audio } from './audio/audio'; +export { AudioModel, Audio } from './audio/audio'; export { Batch, BatchError, @@ -35,6 +35,7 @@ export { export { FineTuning } from './fine-tuning/fine-tuning'; export { Image, + ImageModel, ImagesResponse, ImageCreateVariationParams, ImageEditParams, @@ -42,5 +43,11 @@ export { Images, } from './images'; export { Model, ModelDeleted, ModelsPage, Models } from './models'; -export { Moderation, ModerationCreateResponse, ModerationCreateParams, Moderations } from './moderations'; +export { + Moderation, + ModerationModel, + ModerationCreateResponse, + ModerationCreateParams, + Moderations, +} from './moderations'; export { Upload, UploadCreateParams, UploadCompleteParams, Uploads } from './uploads/uploads'; diff --git a/src/resources/moderations.ts b/src/resources/moderations.ts index 86fbbc6b2..f80bc7acb 100644 --- a/src/resources/moderations.ts +++ b/src/resources/moderations.ts @@ -168,6 +168,8 @@ export namespace Moderation { } } +export type ModerationModel = 'text-moderation-latest' | 'text-moderation-stable'; + /** * Represents if a given text input is potentially harmful. */ @@ -204,11 +206,12 @@ export interface ModerationCreateParams { * model. Accuracy of `text-moderation-stable` may be slightly lower than for * `text-moderation-latest`. */ - model?: (string & {}) | 'text-moderation-latest' | 'text-moderation-stable'; + model?: (string & {}) | ModerationModel; } export namespace Moderations { export import Moderation = ModerationsAPI.Moderation; + export import ModerationModel = ModerationsAPI.ModerationModel; export import ModerationCreateResponse = ModerationsAPI.ModerationCreateResponse; export import ModerationCreateParams = ModerationsAPI.ModerationCreateParams; } From 823aa3791db7526da47c98e318c0c2933f13228a Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 2 Aug 2024 04:04:23 +0000 Subject: [PATCH 467/725] feat: make enums not nominal (#965) --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index 4e4cb5509..6cc775763 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-77cfff37114bc9f141c7e6107eb5f1b38d8cc99bc3d4ce03a066db2b6b649c69.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-b04761ffd2adad3cc19a6dc6fc696ac445878219972f891881a967340fa9a6b0.yml From f72b4036c2fef5900f013529365211ac22477a07 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 2 Aug 2024 04:04:49 +0000 Subject: [PATCH 468/725] release: 4.54.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 21 +++++++++++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 26 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a1a6f4a3a..402862bfb 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.53.2" + ".": "4.54.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f0569806c..a285f7d15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## 4.54.0 (2024-08-02) + +Full Changelog: [v4.53.2...v4.54.0](https://github.com/openai/openai-node/compare/v4.53.2...v4.54.0) + +### Features + +* extract out `ImageModel`, `AudioModel`, `SpeechModel` ([#964](https://github.com/openai/openai-node/issues/964)) ([1edf957](https://github.com/openai/openai-node/commit/1edf957e1cb86c2a7b2d29e28f2b8f428ea0cd7d)) +* make enums not nominal ([#965](https://github.com/openai/openai-node/issues/965)) ([0dd0cd1](https://github.com/openai/openai-node/commit/0dd0cd158d6765c3a04ac983aad03c2ecad14502)) + + +### Chores + +* **ci:** correctly tag pre-release npm packages ([#963](https://github.com/openai/openai-node/issues/963)) ([f1a4a68](https://github.com/openai/openai-node/commit/f1a4a686bbf4a38919b8597f008d895d1b99d8df)) +* **internal:** add constant for default timeout ([#960](https://github.com/openai/openai-node/issues/960)) ([55c01f4](https://github.com/openai/openai-node/commit/55c01f4dc5d132c21713f9e8606b95abc76fcd44)) +* **internal:** cleanup event stream helpers ([#950](https://github.com/openai/openai-node/issues/950)) ([8f49956](https://github.com/openai/openai-node/commit/8f499566c47bd7d4799a8cbe0d980553348b8f48)) + + +### Documentation + +* **README:** link Lifecycle in Polling Helpers section ([#962](https://github.com/openai/openai-node/issues/962)) ([c610c81](https://github.com/openai/openai-node/commit/c610c813e8d7f96b5b8315ae194e0a9ff565f43d)) + ## 4.53.2 (2024-07-26) Full Changelog: [v4.53.1...v4.53.2](https://github.com/openai/openai-node/compare/v4.53.1...v4.53.2) diff --git a/README.md b/README.md index c498880e0..ea1d54f5b 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.53.2/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.54.0/mod.ts'; ``` diff --git a/package.json b/package.json index 5eaac9d39..3f6c722d1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.53.2", + "version": "4.54.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 9ab99752c..438b11e6f 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.53.2/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.54.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 3bfe73d03..bca401fd1 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.53.2'; // x-release-please-version +export const VERSION = '4.54.0'; // x-release-please-version From c972cfc5a00fe391d5a9b8f6e394c731b235440a Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Tue, 6 Aug 2024 18:11:57 +0100 Subject: [PATCH 469/725] feat(api): add structured outputs support This commit adds support for JSON schema response format & adds a separate `.beta.chat.completions.parse()` method to automatically deserialise the response content into a zod schema with the zodResponseFormat() helper function. For more details on structured outputs, see this guide https://platform.openai.com/docs/guides/structured-outputs --- .github/workflows/ci.yml | 1 - .stats.yml | 2 +- api.md | 7 +- examples/parsing-run-tools.ts | 153 ++++++ examples/parsing-stream.ts | 57 +++ examples/parsing-tools-stream.ts | 43 ++ examples/parsing-tools.ts | 67 +++ examples/parsing.ts | 36 ++ examples/stream.ts | 2 +- examples/tool-call-helpers-zod.ts | 2 +- helpers.md | 194 +++++++- jest.config.ts | 1 + package.json | 14 +- scripts/build | 2 +- src/_vendor/partial-json-parser/README.md | 3 + src/_vendor/partial-json-parser/parser.ts | 264 ++++++++++ src/_vendor/zod-to-json-schema/Options.ts | 73 +++ src/_vendor/zod-to-json-schema/Refs.ts | 39 ++ .../zod-to-json-schema/errorMessages.ts | 31 ++ src/_vendor/zod-to-json-schema/index.ts | 37 ++ src/_vendor/zod-to-json-schema/parseDef.ts | 231 +++++++++ src/_vendor/zod-to-json-schema/parsers/any.ts | 5 + .../zod-to-json-schema/parsers/array.ts | 36 ++ .../zod-to-json-schema/parsers/bigint.ts | 60 +++ .../zod-to-json-schema/parsers/boolean.ts | 9 + .../zod-to-json-schema/parsers/branded.ts | 7 + .../zod-to-json-schema/parsers/catch.ts | 7 + .../zod-to-json-schema/parsers/date.ts | 83 ++++ .../zod-to-json-schema/parsers/default.ts | 10 + .../zod-to-json-schema/parsers/effects.ts | 7 + .../zod-to-json-schema/parsers/enum.ts | 13 + .../parsers/intersection.ts | 64 +++ .../zod-to-json-schema/parsers/literal.ts | 37 ++ src/_vendor/zod-to-json-schema/parsers/map.ts | 42 ++ .../zod-to-json-schema/parsers/nativeEnum.ts | 27 + .../zod-to-json-schema/parsers/never.ts | 9 + .../zod-to-json-schema/parsers/null.ts | 16 + .../zod-to-json-schema/parsers/nullable.ts | 49 ++ .../zod-to-json-schema/parsers/number.ts | 62 +++ .../zod-to-json-schema/parsers/object.ts | 63 +++ .../zod-to-json-schema/parsers/optional.ts | 25 + .../zod-to-json-schema/parsers/pipeline.ts | 28 ++ .../zod-to-json-schema/parsers/promise.ts | 7 + .../zod-to-json-schema/parsers/readonly.ts | 7 + .../zod-to-json-schema/parsers/record.ts | 73 +++ src/_vendor/zod-to-json-schema/parsers/set.ts | 36 ++ .../zod-to-json-schema/parsers/string.ts | 400 +++++++++++++++ .../zod-to-json-schema/parsers/tuple.ts | 54 ++ .../zod-to-json-schema/parsers/undefined.ts | 9 + .../zod-to-json-schema/parsers/union.ts | 119 +++++ .../zod-to-json-schema/parsers/unknown.ts | 5 + .../zod-to-json-schema/zodToJsonSchema.ts | 91 ++++ src/error.ts | 12 + src/helpers/zod.ts | 102 ++++ src/index.ts | 4 + src/lib/AbstractChatCompletionRunner.ts | 85 +++- src/lib/AssistantStream.ts | 12 +- src/lib/ChatCompletionRunner.ts | 28 +- src/lib/ChatCompletionStream.ts | 470 ++++++++++++++++-- src/lib/ChatCompletionStreamingRunner.ts | 34 +- src/lib/RunnableFunction.ts | 6 +- src/lib/parser.ts | 235 +++++++++ src/resources/beta/assistants.ts | 19 +- src/resources/beta/beta.ts | 1 - src/resources/beta/chat/completions.ts | 104 +++- src/resources/beta/index.ts | 1 - src/resources/beta/threads/index.ts | 3 +- src/resources/beta/threads/messages.ts | 43 +- src/resources/beta/threads/runs/runs.ts | 10 + src/resources/beta/threads/threads.ts | 31 +- src/resources/beta/vector-stores/files.ts | 2 +- src/resources/chat/chat.ts | 2 + src/resources/chat/completions.ts | 74 ++- src/resources/chat/index.ts | 1 + src/resources/fine-tuning/jobs/jobs.ts | 6 +- src/resources/shared.ts | 62 +++ tests/api-resources/beta/assistants.test.ts | 6 +- .../beta/threads/runs/runs.test.ts | 4 +- .../beta/threads/threads.test.ts | 4 +- tests/api-resources/chat/completions.test.ts | 16 +- .../fine-tuning/jobs/jobs.test.ts | 4 +- tests/api-resources/models.test.ts | 12 +- tests/helpers/zod.test.ts | 269 ++++++++++ .../lib/ChatCompletionRunFunctions.test.ts | 308 ++++++++---- tests/lib/ChatCompletionStream.test.ts | 383 ++++++++++++++ .../ChatCompletionStream.test.ts.snap | 99 ++++ tests/lib/__snapshots__/parser.test.ts.snap | 28 ++ tests/lib/parser.test.ts | 47 ++ tests/utils/mock-fetch.ts | 68 +++ tests/utils/mock-snapshots.ts | 124 +++++ yarn.lock | 10 + 91 files changed, 5148 insertions(+), 300 deletions(-) create mode 100644 examples/parsing-run-tools.ts create mode 100644 examples/parsing-stream.ts create mode 100644 examples/parsing-tools-stream.ts create mode 100644 examples/parsing-tools.ts create mode 100644 examples/parsing.ts create mode 100644 src/_vendor/partial-json-parser/README.md create mode 100644 src/_vendor/partial-json-parser/parser.ts create mode 100644 src/_vendor/zod-to-json-schema/Options.ts create mode 100644 src/_vendor/zod-to-json-schema/Refs.ts create mode 100644 src/_vendor/zod-to-json-schema/errorMessages.ts create mode 100644 src/_vendor/zod-to-json-schema/index.ts create mode 100644 src/_vendor/zod-to-json-schema/parseDef.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/any.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/array.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/bigint.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/boolean.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/branded.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/catch.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/date.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/default.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/effects.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/enum.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/intersection.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/literal.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/map.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/nativeEnum.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/never.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/null.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/nullable.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/number.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/object.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/optional.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/pipeline.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/promise.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/readonly.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/record.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/set.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/string.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/tuple.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/undefined.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/union.ts create mode 100644 src/_vendor/zod-to-json-schema/parsers/unknown.ts create mode 100644 src/_vendor/zod-to-json-schema/zodToJsonSchema.ts create mode 100644 src/helpers/zod.ts create mode 100644 src/lib/parser.ts create mode 100644 tests/helpers/zod.test.ts rename {src => tests}/lib/ChatCompletionRunFunctions.test.ts (91%) create mode 100644 tests/lib/ChatCompletionStream.test.ts create mode 100644 tests/lib/__snapshots__/ChatCompletionStream.test.ts.snap create mode 100644 tests/lib/__snapshots__/parser.test.ts.snap create mode 100644 tests/lib/parser.test.ts create mode 100644 tests/utils/mock-fetch.ts create mode 100644 tests/utils/mock-snapshots.ts diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3be379044..68f80399b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,4 +45,3 @@ jobs: - name: Run tests run: ./scripts/test - diff --git a/.stats.yml b/.stats.yml index 6cc775763..da2675831 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-b04761ffd2adad3cc19a6dc6fc696ac445878219972f891881a967340fa9a6b0.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-c36d30a94622922f83d56a025cdf0095ff7cb18a5138838c698c8443f21fb3a8.yml diff --git a/api.md b/api.md index acae0b8e8..25f08b130 100644 --- a/api.md +++ b/api.md @@ -5,6 +5,9 @@ Types: - ErrorObject - FunctionDefinition - FunctionParameters +- ResponseFormatJSONObject +- ResponseFormatJSONSchema +- ResponseFormatText # Completions @@ -33,6 +36,7 @@ Types: - ChatCompletionChunk - ChatCompletionContentPart - ChatCompletionContentPartImage +- ChatCompletionContentPartRefusal - ChatCompletionContentPartText - ChatCompletionFunctionCallOption - ChatCompletionFunctionMessageParam @@ -277,7 +281,6 @@ Methods: Types: -- AssistantResponseFormat - AssistantResponseFormatOption - AssistantToolChoice - AssistantToolChoiceFunction @@ -370,6 +373,8 @@ Types: - MessageDeleted - MessageDelta - MessageDeltaEvent +- RefusalContentBlock +- RefusalDeltaBlock - Text - TextContentBlock - TextContentBlockParam diff --git a/examples/parsing-run-tools.ts b/examples/parsing-run-tools.ts new file mode 100644 index 000000000..a3c544c3d --- /dev/null +++ b/examples/parsing-run-tools.ts @@ -0,0 +1,153 @@ +import OpenAI from 'openai'; +import z from 'zod'; +import { zodFunction } from 'openai/helpers/zod'; + +const Table = z.enum(['orders', 'customers', 'products']); +const Column = z.enum([ + 'id', + 'status', + 'expected_delivery_date', + 'delivered_at', + 'shipped_at', + 'ordered_at', + 'canceled_at', +]); +const Operator = z.enum(['=', '>', '<', '<=', '>=', '!=']); +const OrderBy = z.enum(['asc', 'desc']); + +const DynamicValue = z.object({ + column_name: z.string(), +}); + +const Condition = z.object({ + column: z.string(), + operator: Operator, + value: z.union([z.string(), z.number(), DynamicValue]), +}); + +const openai = new OpenAI(); + +async function main() { + const runner = openai.beta.chat.completions + .runTools({ + model: 'gpt-4o-2024-08-06', + messages: [{ role: 'user', content: `What are the last 10 orders?` }], + stream: true, + tools: [ + zodFunction({ + name: 'query', + function: (args) => { + return { table_name: args.table_name, data: fakeOrders }; + }, + parameters: z.object({ + location: z.string(), + table_name: Table, + columns: z.array(Column), + conditions: z.array(Condition), + order_by: OrderBy, + }), + }), + ], + }) + .on('tool_calls.function.arguments.done', (props) => + console.log(`parsed function arguments: ${props.parsed_arguments}`), + ); + + await runner.done(); + + console.dir(runner.messages, { depth: 10 }); +} + +const fakeOrders = [ + { + orderId: 'ORD-001', + customerName: 'Alice Johnson', + products: [{ name: 'Wireless Headphones', quantity: 1, price: 89.99 }], + totalPrice: 89.99, + orderDate: '2024-08-02', + }, + { + orderId: 'ORD-002', + customerName: 'Bob Smith', + products: [ + { name: 'Smartphone Case', quantity: 2, price: 19.99 }, + { name: 'Screen Protector', quantity: 1, price: 9.99 }, + ], + totalPrice: 49.97, + orderDate: '2024-08-03', + }, + { + orderId: 'ORD-003', + customerName: 'Carol Davis', + products: [ + { name: 'Laptop', quantity: 1, price: 999.99 }, + { name: 'Mouse', quantity: 1, price: 29.99 }, + ], + totalPrice: 1029.98, + orderDate: '2024-08-04', + }, + { + orderId: 'ORD-004', + customerName: 'David Wilson', + products: [{ name: 'Coffee Maker', quantity: 1, price: 79.99 }], + totalPrice: 79.99, + orderDate: '2024-08-05', + }, + { + orderId: 'ORD-005', + customerName: 'Eva Brown', + products: [ + { name: 'Fitness Tracker', quantity: 1, price: 129.99 }, + { name: 'Water Bottle', quantity: 2, price: 14.99 }, + ], + totalPrice: 159.97, + orderDate: '2024-08-06', + }, + { + orderId: 'ORD-006', + customerName: 'Frank Miller', + products: [ + { name: 'Gaming Console', quantity: 1, price: 499.99 }, + { name: 'Controller', quantity: 2, price: 59.99 }, + ], + totalPrice: 619.97, + orderDate: '2024-08-07', + }, + { + orderId: 'ORD-007', + customerName: 'Grace Lee', + products: [{ name: 'Bluetooth Speaker', quantity: 1, price: 69.99 }], + totalPrice: 69.99, + orderDate: '2024-08-08', + }, + { + orderId: 'ORD-008', + customerName: 'Henry Taylor', + products: [ + { name: 'Smartwatch', quantity: 1, price: 199.99 }, + { name: 'Watch Band', quantity: 2, price: 24.99 }, + ], + totalPrice: 249.97, + orderDate: '2024-08-09', + }, + { + orderId: 'ORD-009', + customerName: 'Isla Garcia', + products: [ + { name: 'Tablet', quantity: 1, price: 349.99 }, + { name: 'Tablet Case', quantity: 1, price: 29.99 }, + { name: 'Stylus', quantity: 1, price: 39.99 }, + ], + totalPrice: 419.97, + orderDate: '2024-08-10', + }, + { + orderId: 'ORD-010', + customerName: 'Jack Robinson', + products: [{ name: 'Wireless Charger', quantity: 2, price: 34.99 }], + totalPrice: 69.98, + orderDate: '2024-08-11', + }, +]; + +main(); diff --git a/examples/parsing-stream.ts b/examples/parsing-stream.ts new file mode 100644 index 000000000..d9eda0a4b --- /dev/null +++ b/examples/parsing-stream.ts @@ -0,0 +1,57 @@ +import { zodResponseFormat } from 'openai/helpers/zod'; +import OpenAI from 'openai/index'; +import { z } from 'zod'; + +const Step = z.object({ + explanation: z.string(), + output: z.string(), +}); + +const MathResponse = z.object({ + steps: z.array(Step), + final_answer: z.string(), +}); + +async function main() { + const client = new OpenAI(); + + const stream = client.beta.chat.completions + .stream({ + model: 'gpt-4o-2024-08-06', + messages: [ + { + role: 'user', + content: `What's the weather like in SF?`, + }, + ], + response_format: zodResponseFormat(MathResponse, 'math_response'), + }) + .on('refusal.delta', ({ delta }) => { + process.stdout.write(delta); + }) + .on('refusal.done', () => console.log('\n\nrequest refused 😱')) + .on('content.delta', ({ snapshot, parsed }) => { + console.log('content:', snapshot); + console.log('parsed:', parsed); + console.log(); + }) + .on('content.done', (props) => { + if (props.parsed) { + console.log('\n\nfinished parsing!'); + console.log(`answer: ${props.parsed.final_answer}`); + } + }); + + await stream.done(); + + const completion = await stream.finalChatCompletion(); + + console.dir(completion, { depth: 5 }); + + const message = completion.choices[0]?.message; + if (message?.parsed) { + console.log(message.parsed.steps); + } +} + +main(); diff --git a/examples/parsing-tools-stream.ts b/examples/parsing-tools-stream.ts new file mode 100644 index 000000000..c527abd00 --- /dev/null +++ b/examples/parsing-tools-stream.ts @@ -0,0 +1,43 @@ +import { zodFunction } from 'openai/helpers/zod'; +import OpenAI from 'openai/index'; +import { z } from 'zod'; + +const GetWeatherArgs = z.object({ + city: z.string(), + country: z.string(), + units: z.enum(['c', 'f']).default('c'), +}); + +async function main() { + const client = new OpenAI(); + const refusal = process.argv.includes('refusal'); + + const stream = client.beta.chat.completions + .stream({ + model: 'gpt-4o-2024-08-06', + messages: [ + { + role: 'user', + content: refusal ? 'How do I make anthrax?' : `What's the weather like in SF?`, + }, + ], + tools: [zodFunction({ name: 'get_weather', parameters: GetWeatherArgs })], + }) + .on('tool_calls.function.arguments.delta', (props) => + console.log('tool_calls.function.arguments.delta', props), + ) + .on('tool_calls.function.arguments.done', (props) => + console.log('tool_calls.function.arguments.done', props), + ) + .on('refusal.delta', ({ delta }) => { + process.stdout.write(delta); + }) + .on('refusal.done', () => console.log('\n\nrequest refused 😱')); + + const completion = await stream.finalChatCompletion(); + + console.log('final completion:'); + console.dir(completion, { depth: 10 }); +} + +main(); diff --git a/examples/parsing-tools.ts b/examples/parsing-tools.ts new file mode 100644 index 000000000..8eaea3807 --- /dev/null +++ b/examples/parsing-tools.ts @@ -0,0 +1,67 @@ +import { zodFunction } from 'openai/helpers/zod'; +import OpenAI from 'openai/index'; +import { z } from 'zod'; + +const Table = z.enum(['orders', 'customers', 'products']); + +const Column = z.enum([ + 'id', + 'status', + 'expected_delivery_date', + 'delivered_at', + 'shipped_at', + 'ordered_at', + 'canceled_at', +]); + +const Operator = z.enum(['=', '>', '<', '<=', '>=', '!=']); + +const OrderBy = z.enum(['asc', 'desc']); + +const DynamicValue = z.object({ + column_name: z.string(), +}); + +const Condition = z.object({ + column: z.string(), + operator: Operator, + value: z.union([z.string(), z.number(), DynamicValue]), +}); + +const Query = z.object({ + table_name: Table, + columns: z.array(Column), + conditions: z.array(Condition), + order_by: OrderBy, +}); + +async function main() { + const client = new OpenAI(); + + const completion = await client.beta.chat.completions.parse({ + model: 'gpt-4o-2024-08-06', + messages: [ + { + role: 'system', + content: + 'You are a helpful assistant. The current date is August 6, 2024. You help users query for the data they are looking for by calling the query function.', + }, + { + role: 'user', + content: + 'look up all my orders in november of last year that were fulfilled but not delivered on time', + }, + ], + tools: [zodFunction({ name: 'query', parameters: Query })], + }); + console.dir(completion, { depth: 10 }); + + const toolCall = completion.choices[0]?.message.tool_calls?.[0]; + if (toolCall) { + const args = toolCall.function.parsed_arguments as z.infer; + console.log(args); + console.log(args.table_name); + } +} + +main(); diff --git a/examples/parsing.ts b/examples/parsing.ts new file mode 100644 index 000000000..d92cc2720 --- /dev/null +++ b/examples/parsing.ts @@ -0,0 +1,36 @@ +import { zodResponseFormat } from 'openai/helpers/zod'; +import OpenAI from 'openai/index'; +import { z } from 'zod'; + +const Step = z.object({ + explanation: z.string(), + output: z.string(), +}); + +const MathResponse = z.object({ + steps: z.array(Step), + final_answer: z.string(), +}); + +async function main() { + const client = new OpenAI(); + + const completion = await client.beta.chat.completions.parse({ + model: 'gpt-4o-2024-08-06', + messages: [ + { role: 'system', content: 'You are a helpful math tutor.' }, + { role: 'user', content: 'solve 8x + 31 = 2' }, + ], + response_format: zodResponseFormat(MathResponse, 'math_response'), + }); + + console.dir(completion, { depth: 5 }); + + const message = completion.choices[0]?.message; + if (message?.parsed) { + console.log(message.parsed.steps); + console.log(`answer: ${message.parsed.final_answer}`); + } +} + +main(); diff --git a/examples/stream.ts b/examples/stream.ts index f3b712e8e..86dbde8b8 100644 --- a/examples/stream.ts +++ b/examples/stream.ts @@ -5,7 +5,7 @@ import OpenAI from 'openai'; const openai = new OpenAI(); async function main() { - const runner = await openai.beta.chat.completions + const runner = openai.beta.chat.completions .stream({ model: 'gpt-3.5-turbo', messages: [{ role: 'user', content: 'Say this is a test' }], diff --git a/examples/tool-call-helpers-zod.ts b/examples/tool-call-helpers-zod.ts index e02c743be..700f401a6 100755 --- a/examples/tool-call-helpers-zod.ts +++ b/examples/tool-call-helpers-zod.ts @@ -36,7 +36,7 @@ async function getBook({ id }: GetParams) { } async function main() { - const runner = await openai.beta.chat.completions + const runner = openai.beta.chat.completions .runTools({ model: 'gpt-4-1106-preview', stream: true, diff --git a/helpers.md b/helpers.md index dda1ab26b..abf980c82 100644 --- a/helpers.md +++ b/helpers.md @@ -1,4 +1,133 @@ -# Helpers +# Structured Outputs Parsing Helpers + +The OpenAI API supports extracting JSON from the model with the `response_format` request param, for more details on the API, see [this guide](https://platform.openai.com/docs/guides/structured-outputs). + +The SDK provides a `client.beta.chat.completions.parse()` method which is a wrapper over the `client.chat.completions.create()` that +provides richer integrations with TS specific types & returns a `ParsedChatCompletion` object, which is an extension of the standard `ChatCompletion` type. + +## Auto-parsing response content with Zod schemas + +You can pass zod schemas wrapped with `zodResponseFormat()` to the `.parse()` method and the SDK will automatically conver the model +into a JSON schema, send it to the API and parse the response content back using the given zod schema. + +```ts +import { zodResponseFormat } from 'openai/helpers/zod'; +import OpenAI from 'openai/index'; +import { z } from 'zod'; + +const Step = z.object({ + explanation: z.string(), + output: z.string(), +}); + +const MathResponse = z.object({ + steps: z.array(Step), + final_answer: z.string(), +}); + +const client = new OpenAI(); + +const completion = await client.beta.chat.completions.parse({ + model: 'gpt-4o-2024-08-06', + messages: [ + { role: 'system', content: 'You are a helpful math tutor.' }, + { role: 'user', content: 'solve 8x + 31 = 2' }, + ], + response_format: zodResponseFormat(MathResponse, 'math_response'), +}); + +console.dir(completion, { depth: 5 }); + +const message = completion.choices[0]?.message; +if (message?.parsed) { + console.log(message.parsed.steps); + console.log(`answer: ${message.parsed.final_answer}`); +} +``` + +## Auto-parsing function tool calls + +The `.parse()` method will also automatically parse `function` tool calls if: + +- You use the `zodFunctionTool()` helper method +- You mark your tool schema with `"strict": True` + +For example: + +```ts +import { zodFunction } from 'openai/helpers/zod'; +import OpenAI from 'openai/index'; +import { z } from 'zod'; + +const Table = z.enum(['orders', 'customers', 'products']); + +const Column = z.enum([ + 'id', + 'status', + 'expected_delivery_date', + 'delivered_at', + 'shipped_at', + 'ordered_at', + 'canceled_at', +]); + +const Operator = z.enum(['=', '>', '<', '<=', '>=', '!=']); + +const OrderBy = z.enum(['asc', 'desc']); + +const DynamicValue = z.object({ + column_name: z.string(), +}); + +const Condition = z.object({ + column: z.string(), + operator: Operator, + value: z.union([z.string(), z.number(), DynamicValue]), +}); + +const Query = z.object({ + table_name: Table, + columns: z.array(Column), + conditions: z.array(Condition), + order_by: OrderBy, +}); + +const client = new OpenAI(); +const completion = await client.beta.chat.completions.parse({ + model: 'gpt-4o-2024-08-06', + messages: [ + { + role: 'system', + content: + 'You are a helpful assistant. The current date is August 6, 2024. You help users query for the data they are looking for by calling the query function.', + }, + { + role: 'user', + content: 'look up all my orders in november of last year that were fulfilled but not delivered on time', + }, + ], + tools: [zodFunction({ name: 'query', parameters: Query })], +}); +console.dir(completion, { depth: 10 }); + +const toolCall = completion.choices[0]?.message.tool_calls?.[0]; +if (toolCall) { + const args = toolCall.function.parsed_arguments as z.infer; + console.log(args); + console.log(args.table_name); +} + +main(); +``` + +### Differences from `.create()` + +The `beta.chat.completions.parse()` method imposes some additional restrictions on it's usage that `chat.completions.create()` does not. + +- If the completion completes with `finish_reason` set to `length` or `content_filter`, the `LengthFinishReasonError` / `ContentFilterFinishReasonError` errors will be raised. +- Only strict function tools can be passed, e.g. `{type: 'function', function: {..., strict: true}}` + +# Streaming Helpers OpenAI supports streaming responses when interacting with the [Chat](#chat-streaming) or [Assistant](#assistant-streaming-api) APIs. @@ -265,6 +394,69 @@ The event fired when a function call is made by the assistant. The event fired when the function runner responds to the function call with `role: "function"`. The `content` of the response is given as the first argument to the callback. +#### `.on('content.delta', (props: ContentDeltaEvent) => ...)` + +The event fired for every chunk containing new content. The `props` object contains: +- `delta`: The new content string received in this chunk +- `snapshot`: The accumulated content so far +- `parsed`: The partially parsed content (if applicable) + +#### `.on('content.done', (props: ContentDoneEvent) => ...)` + +The event fired when the content generation is complete. The `props` object contains: +- `content`: The full generated content +- `parsed`: The fully parsed content (if applicable) + +#### `.on('refusal.delta', (props: RefusalDeltaEvent) => ...)` + +The event fired when a chunk contains part of a content refusal. The `props` object contains: +- `delta`: The new refusal content string received in this chunk +- `snapshot`: The accumulated refusal content string so far + +#### `.on('refusal.done', (props: RefusalDoneEvent) => ...)` + +The event fired when the refusal content is complete. The `props` object contains: +- `refusal`: The full refusal content + +#### `.on('tool_calls.function.arguments.delta', (props: FunctionToolCallArgumentsDeltaEvent) => ...)` + +The event fired when a chunk contains part of a function tool call's arguments. The `props` object contains: +- `name`: The name of the function being called +- `index`: The index of the tool call +- `arguments`: The accumulated raw JSON string of arguments +- `parsed_arguments`: The partially parsed arguments object +- `arguments_delta`: The new JSON string fragment received in this chunk + +#### `.on('tool_calls.function.arguments.done', (props: FunctionToolCallArgumentsDoneEvent) => ...)` + +The event fired when a function tool call's arguments are complete. The `props` object contains: +- `name`: The name of the function being called +- `index`: The index of the tool call +- `arguments`: The full raw JSON string of arguments +- `parsed_arguments`: The fully parsed arguments object + +#### `.on('logprobs.content.delta', (props: LogProbsContentDeltaEvent) => ...)` + +The event fired when a chunk contains new content log probabilities. The `props` object contains: +- `content`: A list of the new log probabilities received in this chunk +- `snapshot`: A list of the accumulated log probabilities so far + +#### `.on('logprobs.content.done', (props: LogProbsContentDoneEvent) => ...)` + +The event fired when all content log probabilities have been received. The `props` object contains: +- `content`: The full list of token log probabilities for the content + +#### `.on('logprobs.refusal.delta', (props: LogProbsRefusalDeltaEvent) => ...)` + +The event fired when a chunk contains new refusal log probabilities. The `props` object contains: +- `refusal`: A list of the new log probabilities received in this chunk +- `snapshot`: A list of the accumulated log probabilities so far + +#### `.on('logprobs.refusal.done', (props: LogProbsRefusalDoneEvent) => ...)` + +The event fired when all refusal log probabilities have been received. The `props` object contains: +- `refusal`: The full list of token log probabilities for the refusal + #### `.on('finalChatCompletion', (completion: ChatCompletion) => …)` The event fired for the final chat completion. If the function call runner exceeds the number diff --git a/jest.config.ts b/jest.config.ts index 56d824cdc..aa2853fd2 100644 --- a/jest.config.ts +++ b/jest.config.ts @@ -18,6 +18,7 @@ const config: JestConfigWithTsJest = { '/deno_tests/', ], testPathIgnorePatterns: ['scripts'], + prettierPath: require.resolve('prettier-2'), }; export default config; diff --git a/package.json b/package.json index 3f6c722d1..2391c1155 100644 --- a/package.json +++ b/package.json @@ -43,12 +43,14 @@ "eslint-plugin-unused-imports": "^3.0.0", "jest": "^29.4.0", "prettier": "^3.0.0", + "prettier-2": "npm:prettier@^2", "ts-jest": "^29.1.0", "ts-morph": "^19.0.0", "ts-node": "^10.5.0", "tsc-multi": "^1.1.0", "tsconfig-paths": "^4.0.0", - "typescript": "^4.8.2" + "typescript": "^4.8.2", + "zod": "^3.23.8" }, "sideEffects": [ "./_shims/index.js", @@ -120,5 +122,13 @@ "default": "./dist/*.mjs" } }, - "bin": "./bin/cli" + "bin": "./bin/cli", + "peerDependencies": { + "zod": "^3.23.8" + }, + "peerDependenciesMeta": { + "zod": { + "optional": true + } + } } diff --git a/scripts/build b/scripts/build index aa7c61f02..b4d686af5 100755 --- a/scripts/build +++ b/scripts/build @@ -50,7 +50,7 @@ node scripts/utils/postprocess-files.cjs (cd dist && node -e 'require("openai")') (cd dist && node -e 'import("openai")' --input-type=module) -if command -v deno &> /dev/null && [ -e ./scripts/build-deno ] +if [ "${OPENAI_DISABLE_DENO_BUILD:-0}" != "1" ] && command -v deno &> /dev/null && [ -e ./scripts/build-deno ] then ./scripts/build-deno fi diff --git a/src/_vendor/partial-json-parser/README.md b/src/_vendor/partial-json-parser/README.md new file mode 100644 index 000000000..bc6ea4e3d --- /dev/null +++ b/src/_vendor/partial-json-parser/README.md @@ -0,0 +1,3 @@ +# Partial JSON Parser + +Vendored from https://www.npmjs.com/package/partial-json-parser and updated to use TypeScript. diff --git a/src/_vendor/partial-json-parser/parser.ts b/src/_vendor/partial-json-parser/parser.ts new file mode 100644 index 000000000..9470c462f --- /dev/null +++ b/src/_vendor/partial-json-parser/parser.ts @@ -0,0 +1,264 @@ +type Token = { + type: string; + value: string; +}; + +const tokenize = (input: string): Token[] => { + let current = 0; + let tokens: Token[] = []; + + while (current < input.length) { + let char = input[current]; + + if (char === '\\') { + current++; + continue; + } + + if (char === '{') { + tokens.push({ + type: 'brace', + value: '{', + }); + + current++; + continue; + } + + if (char === '}') { + tokens.push({ + type: 'brace', + value: '}', + }); + + current++; + continue; + } + + if (char === '[') { + tokens.push({ + type: 'paren', + value: '[', + }); + + current++; + continue; + } + + if (char === ']') { + tokens.push({ + type: 'paren', + value: ']', + }); + + current++; + continue; + } + + if (char === ':') { + tokens.push({ + type: 'separator', + value: ':', + }); + + current++; + continue; + } + + if (char === ',') { + tokens.push({ + type: 'delimiter', + value: ',', + }); + + current++; + continue; + } + + if (char === '"') { + let value = ''; + let danglingQuote = false; + + char = input[++current]; + + while (char !== '"') { + if (current === input.length) { + danglingQuote = true; + break; + } + + if (char === '\\') { + current++; + if (current === input.length) { + danglingQuote = true; + break; + } + value += char + input[current]; + char = input[++current]; + } else { + value += char; + char = input[++current]; + } + } + + char = input[++current]; + + if (!danglingQuote) { + tokens.push({ + type: 'string', + value, + }); + } + continue; + } + + let WHITESPACE = /\s/; + if (char && WHITESPACE.test(char)) { + current++; + continue; + } + + let NUMBERS = /[0-9]/; + if ((char && NUMBERS.test(char)) || char === '-' || char === '.') { + let value = ''; + + if (char === '-') { + value += char; + char = input[++current]; + } + + while ((char && NUMBERS.test(char)) || char === '.') { + value += char; + char = input[++current]; + } + + tokens.push({ + type: 'number', + value, + }); + continue; + } + + let LETTERS = /[a-z]/i; + if (char && LETTERS.test(char)) { + let value = ''; + + while (char && LETTERS.test(char)) { + if (current === input.length) { + break; + } + value += char; + char = input[++current]; + } + + if (value == 'true' || value == 'false' || value === 'null') { + tokens.push({ + type: 'name', + value, + }); + } else { + // unknown token, e.g. `nul` which isn't quite `null` + current++; + continue; + } + continue; + } + + current++; + } + + return tokens; + }, + strip = (tokens: Token[]): Token[] => { + if (tokens.length === 0) { + return tokens; + } + + let lastToken = tokens[tokens.length - 1]!; + + switch (lastToken.type) { + case 'separator': + tokens = tokens.slice(0, tokens.length - 1); + return strip(tokens); + break; + case 'number': + let lastCharacterOfLastToken = lastToken.value[lastToken.value.length - 1]; + if (lastCharacterOfLastToken === '.' || lastCharacterOfLastToken === '-') { + tokens = tokens.slice(0, tokens.length - 1); + return strip(tokens); + } + case 'string': + let tokenBeforeTheLastToken = tokens[tokens.length - 2]; + if (tokenBeforeTheLastToken?.type === 'delimiter') { + tokens = tokens.slice(0, tokens.length - 1); + return strip(tokens); + } else if (tokenBeforeTheLastToken?.type === 'brace' && tokenBeforeTheLastToken.value === '{') { + tokens = tokens.slice(0, tokens.length - 1); + return strip(tokens); + } + break; + case 'delimiter': + tokens = tokens.slice(0, tokens.length - 1); + return strip(tokens); + break; + } + + return tokens; + }, + unstrip = (tokens: Token[]): Token[] => { + let tail: string[] = []; + + tokens.map((token) => { + if (token.type === 'brace') { + if (token.value === '{') { + tail.push('}'); + } else { + tail.splice(tail.lastIndexOf('}'), 1); + } + } + if (token.type === 'paren') { + if (token.value === '[') { + tail.push(']'); + } else { + tail.splice(tail.lastIndexOf(']'), 1); + } + } + }); + + if (tail.length > 0) { + tail.reverse().map((item) => { + if (item === '}') { + tokens.push({ + type: 'brace', + value: '}', + }); + } else if (item === ']') { + tokens.push({ + type: 'paren', + value: ']', + }); + } + }); + } + + return tokens; + }, + generate = (tokens: Token[]): string => { + let output = ''; + + tokens.map((token) => { + switch (token.type) { + case 'string': + output += '"' + token.value + '"'; + break; + default: + output += token.value; + break; + } + }); + + return output; + }, + partialParse = (input: string): unknown => JSON.parse(generate(unstrip(strip(tokenize(input))))); + +export { partialParse }; diff --git a/src/_vendor/zod-to-json-schema/Options.ts b/src/_vendor/zod-to-json-schema/Options.ts new file mode 100644 index 000000000..dd04692f1 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/Options.ts @@ -0,0 +1,73 @@ +import { ZodSchema, ZodTypeDef } from 'zod'; +import { Refs, Seen } from './Refs'; +import { JsonSchema7Type } from './parseDef'; + +export type Targets = 'jsonSchema7' | 'jsonSchema2019-09' | 'openApi3'; + +export type DateStrategy = 'format:date-time' | 'format:date' | 'string' | 'integer'; + +export const ignoreOverride = Symbol('Let zodToJsonSchema decide on which parser to use'); + +export type Options = { + name: string | undefined; + $refStrategy: 'root' | 'relative' | 'none' | 'seen'; + basePath: string[]; + effectStrategy: 'input' | 'any'; + pipeStrategy: 'input' | 'output' | 'all'; + dateStrategy: DateStrategy | DateStrategy[]; + mapStrategy: 'entries' | 'record'; + removeAdditionalStrategy: 'passthrough' | 'strict'; + target: Target; + strictUnions: boolean; + definitionPath: string; + definitions: Record; + errorMessages: boolean; + markdownDescription: boolean; + patternStrategy: 'escape' | 'preserve'; + applyRegexFlags: boolean; + emailStrategy: 'format:email' | 'format:idn-email' | 'pattern:zod'; + base64Strategy: 'format:binary' | 'contentEncoding:base64' | 'pattern:zod'; + nameStrategy: 'ref' | 'title'; + override?: ( + def: ZodTypeDef, + refs: Refs, + seen: Seen | undefined, + forceResolution?: boolean, + ) => JsonSchema7Type | undefined | typeof ignoreOverride; + openaiStrictMode?: boolean; +}; + +export const defaultOptions: Options = { + name: undefined, + $refStrategy: 'root', + basePath: ['#'], + effectStrategy: 'input', + pipeStrategy: 'all', + dateStrategy: 'format:date-time', + mapStrategy: 'entries', + removeAdditionalStrategy: 'passthrough', + definitionPath: 'definitions', + target: 'jsonSchema7', + strictUnions: false, + definitions: {}, + errorMessages: false, + markdownDescription: false, + patternStrategy: 'escape', + applyRegexFlags: false, + emailStrategy: 'format:email', + base64Strategy: 'contentEncoding:base64', + nameStrategy: 'ref', +}; + +export const getDefaultOptions = ( + options: Partial> | string | undefined, +) => + (typeof options === 'string' ? + { + ...defaultOptions, + name: options, + } + : { + ...defaultOptions, + ...options, + }) as Options; diff --git a/src/_vendor/zod-to-json-schema/Refs.ts b/src/_vendor/zod-to-json-schema/Refs.ts new file mode 100644 index 000000000..6dad82f07 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/Refs.ts @@ -0,0 +1,39 @@ +import { ZodTypeDef } from 'zod'; +import { getDefaultOptions, Options, Targets } from './Options'; +import { JsonSchema7Type } from './parseDef'; + +export type Refs = { + seen: Map; + currentPath: string[]; + propertyPath: string[] | undefined; +} & Options; + +export type Seen = { + def: ZodTypeDef; + path: string[]; + jsonSchema: JsonSchema7Type | undefined; +}; + +export const getRefs = (options?: string | Partial>): Refs => { + const _options = getDefaultOptions(options); + const currentPath = + _options.name !== undefined ? + [..._options.basePath, _options.definitionPath, _options.name] + : _options.basePath; + return { + ..._options, + currentPath: currentPath, + propertyPath: undefined, + seen: new Map( + Object.entries(_options.definitions).map(([name, def]) => [ + def._def, + { + def: def._def, + path: [..._options.basePath, _options.definitionPath, name], + // Resolution of references will be forced even though seen, so it's ok that the schema is undefined here for now. + jsonSchema: undefined, + }, + ]), + ), + }; +}; diff --git a/src/_vendor/zod-to-json-schema/errorMessages.ts b/src/_vendor/zod-to-json-schema/errorMessages.ts new file mode 100644 index 000000000..ceb0e8b73 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/errorMessages.ts @@ -0,0 +1,31 @@ +import { JsonSchema7TypeUnion } from './parseDef'; +import { Refs } from './Refs'; + +export type ErrorMessages = Partial< + Omit<{ [key in keyof T]: string }, OmitProperties | 'type' | 'errorMessages'> +>; + +export function addErrorMessage }>( + res: T, + key: keyof T, + errorMessage: string | undefined, + refs: Refs, +) { + if (!refs?.errorMessages) return; + if (errorMessage) { + res.errorMessage = { + ...res.errorMessage, + [key]: errorMessage, + }; + } +} + +export function setResponseValueAndErrors< + Json7Type extends JsonSchema7TypeUnion & { + errorMessage?: ErrorMessages; + }, + Key extends keyof Omit, +>(res: Json7Type, key: Key, value: Json7Type[Key], errorMessage: string | undefined, refs: Refs) { + res[key] = value; + addErrorMessage(res, key, errorMessage, refs); +} diff --git a/src/_vendor/zod-to-json-schema/index.ts b/src/_vendor/zod-to-json-schema/index.ts new file mode 100644 index 000000000..5808bc280 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/index.ts @@ -0,0 +1,37 @@ +export * from './Options'; +export * from './Refs'; +export * from './errorMessages'; +export * from './parseDef'; +export * from './parsers/any'; +export * from './parsers/array'; +export * from './parsers/bigint'; +export * from './parsers/boolean'; +export * from './parsers/branded'; +export * from './parsers/catch'; +export * from './parsers/date'; +export * from './parsers/default'; +export * from './parsers/effects'; +export * from './parsers/enum'; +export * from './parsers/intersection'; +export * from './parsers/literal'; +export * from './parsers/map'; +export * from './parsers/nativeEnum'; +export * from './parsers/never'; +export * from './parsers/null'; +export * from './parsers/nullable'; +export * from './parsers/number'; +export * from './parsers/object'; +export * from './parsers/optional'; +export * from './parsers/pipeline'; +export * from './parsers/promise'; +export * from './parsers/readonly'; +export * from './parsers/record'; +export * from './parsers/set'; +export * from './parsers/string'; +export * from './parsers/tuple'; +export * from './parsers/undefined'; +export * from './parsers/union'; +export * from './parsers/unknown'; +export * from './zodToJsonSchema'; +import { zodToJsonSchema } from './zodToJsonSchema'; +export default zodToJsonSchema; diff --git a/src/_vendor/zod-to-json-schema/parseDef.ts b/src/_vendor/zod-to-json-schema/parseDef.ts new file mode 100644 index 000000000..c22fc33eb --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parseDef.ts @@ -0,0 +1,231 @@ +import { ZodFirstPartyTypeKind, ZodTypeDef } from 'zod'; +import { JsonSchema7AnyType, parseAnyDef } from './parsers/any'; +import { JsonSchema7ArrayType, parseArrayDef } from './parsers/array'; +import { JsonSchema7BigintType, parseBigintDef } from './parsers/bigint'; +import { JsonSchema7BooleanType, parseBooleanDef } from './parsers/boolean'; +import { parseBrandedDef } from './parsers/branded'; +import { parseCatchDef } from './parsers/catch'; +import { JsonSchema7DateType, parseDateDef } from './parsers/date'; +import { parseDefaultDef } from './parsers/default'; +import { parseEffectsDef } from './parsers/effects'; +import { JsonSchema7EnumType, parseEnumDef } from './parsers/enum'; +import { JsonSchema7AllOfType, parseIntersectionDef } from './parsers/intersection'; +import { JsonSchema7LiteralType, parseLiteralDef } from './parsers/literal'; +import { JsonSchema7MapType, parseMapDef } from './parsers/map'; +import { JsonSchema7NativeEnumType, parseNativeEnumDef } from './parsers/nativeEnum'; +import { JsonSchema7NeverType, parseNeverDef } from './parsers/never'; +import { JsonSchema7NullType, parseNullDef } from './parsers/null'; +import { JsonSchema7NullableType, parseNullableDef } from './parsers/nullable'; +import { JsonSchema7NumberType, parseNumberDef } from './parsers/number'; +import { JsonSchema7ObjectType, parseObjectDef } from './parsers/object'; +import { parseOptionalDef } from './parsers/optional'; +import { parsePipelineDef } from './parsers/pipeline'; +import { parsePromiseDef } from './parsers/promise'; +import { JsonSchema7RecordType, parseRecordDef } from './parsers/record'; +import { JsonSchema7SetType, parseSetDef } from './parsers/set'; +import { JsonSchema7StringType, parseStringDef } from './parsers/string'; +import { JsonSchema7TupleType, parseTupleDef } from './parsers/tuple'; +import { JsonSchema7UndefinedType, parseUndefinedDef } from './parsers/undefined'; +import { JsonSchema7UnionType, parseUnionDef } from './parsers/union'; +import { JsonSchema7UnknownType, parseUnknownDef } from './parsers/unknown'; +import { Refs, Seen } from './Refs'; +import { parseReadonlyDef } from './parsers/readonly'; +import { ignoreOverride } from './Options'; + +type JsonSchema7RefType = { $ref: string }; +type JsonSchema7Meta = { + title?: string; + default?: any; + description?: string; + markdownDescription?: string; +}; + +export type JsonSchema7TypeUnion = + | JsonSchema7StringType + | JsonSchema7ArrayType + | JsonSchema7NumberType + | JsonSchema7BigintType + | JsonSchema7BooleanType + | JsonSchema7DateType + | JsonSchema7EnumType + | JsonSchema7LiteralType + | JsonSchema7NativeEnumType + | JsonSchema7NullType + | JsonSchema7NumberType + | JsonSchema7ObjectType + | JsonSchema7RecordType + | JsonSchema7TupleType + | JsonSchema7UnionType + | JsonSchema7UndefinedType + | JsonSchema7RefType + | JsonSchema7NeverType + | JsonSchema7MapType + | JsonSchema7AnyType + | JsonSchema7NullableType + | JsonSchema7AllOfType + | JsonSchema7UnknownType + | JsonSchema7SetType; + +export type JsonSchema7Type = JsonSchema7TypeUnion & JsonSchema7Meta; + +export function parseDef( + def: ZodTypeDef, + refs: Refs, + forceResolution = false, // Forces a new schema to be instantiated even though its def has been seen. Used for improving refs in definitions. See https://github.com/StefanTerdell/zod-to-json-schema/pull/61. +): JsonSchema7Type | undefined { + const seenItem = refs.seen.get(def); + + if (refs.override) { + const overrideResult = refs.override?.(def, refs, seenItem, forceResolution); + + if (overrideResult !== ignoreOverride) { + return overrideResult; + } + } + + if (seenItem && !forceResolution) { + const seenSchema = get$ref(seenItem, refs); + + if (seenSchema !== undefined) { + return seenSchema; + } + } + + const newItem: Seen = { def, path: refs.currentPath, jsonSchema: undefined }; + + refs.seen.set(def, newItem); + + const jsonSchema = selectParser(def, (def as any).typeName, refs); + + if (jsonSchema) { + addMeta(def, refs, jsonSchema); + } + + newItem.jsonSchema = jsonSchema; + + return jsonSchema; +} + +const get$ref = ( + item: Seen, + refs: Refs, +): + | { + $ref: string; + } + | {} + | undefined => { + switch (refs.$refStrategy) { + case 'root': + return { $ref: item.path.join('/') }; + case 'relative': + return { $ref: getRelativePath(refs.currentPath, item.path) }; + case 'none': + case 'seen': { + if ( + item.path.length < refs.currentPath.length && + item.path.every((value, index) => refs.currentPath[index] === value) + ) { + console.warn(`Recursive reference detected at ${refs.currentPath.join('/')}! Defaulting to any`); + + return {}; + } + + return refs.$refStrategy === 'seen' ? {} : undefined; + } + } +}; + +const getRelativePath = (pathA: string[], pathB: string[]) => { + let i = 0; + for (; i < pathA.length && i < pathB.length; i++) { + if (pathA[i] !== pathB[i]) break; + } + return [(pathA.length - i).toString(), ...pathB.slice(i)].join('/'); +}; + +const selectParser = (def: any, typeName: ZodFirstPartyTypeKind, refs: Refs): JsonSchema7Type | undefined => { + switch (typeName) { + case ZodFirstPartyTypeKind.ZodString: + return parseStringDef(def, refs); + case ZodFirstPartyTypeKind.ZodNumber: + return parseNumberDef(def, refs); + case ZodFirstPartyTypeKind.ZodObject: + return parseObjectDef(def, refs); + case ZodFirstPartyTypeKind.ZodBigInt: + return parseBigintDef(def, refs); + case ZodFirstPartyTypeKind.ZodBoolean: + return parseBooleanDef(); + case ZodFirstPartyTypeKind.ZodDate: + return parseDateDef(def, refs); + case ZodFirstPartyTypeKind.ZodUndefined: + return parseUndefinedDef(); + case ZodFirstPartyTypeKind.ZodNull: + return parseNullDef(refs); + case ZodFirstPartyTypeKind.ZodArray: + return parseArrayDef(def, refs); + case ZodFirstPartyTypeKind.ZodUnion: + case ZodFirstPartyTypeKind.ZodDiscriminatedUnion: + return parseUnionDef(def, refs); + case ZodFirstPartyTypeKind.ZodIntersection: + return parseIntersectionDef(def, refs); + case ZodFirstPartyTypeKind.ZodTuple: + return parseTupleDef(def, refs); + case ZodFirstPartyTypeKind.ZodRecord: + return parseRecordDef(def, refs); + case ZodFirstPartyTypeKind.ZodLiteral: + return parseLiteralDef(def, refs); + case ZodFirstPartyTypeKind.ZodEnum: + return parseEnumDef(def); + case ZodFirstPartyTypeKind.ZodNativeEnum: + return parseNativeEnumDef(def); + case ZodFirstPartyTypeKind.ZodNullable: + return parseNullableDef(def, refs); + case ZodFirstPartyTypeKind.ZodOptional: + return parseOptionalDef(def, refs); + case ZodFirstPartyTypeKind.ZodMap: + return parseMapDef(def, refs); + case ZodFirstPartyTypeKind.ZodSet: + return parseSetDef(def, refs); + case ZodFirstPartyTypeKind.ZodLazy: + return parseDef(def.getter()._def, refs); + case ZodFirstPartyTypeKind.ZodPromise: + return parsePromiseDef(def, refs); + case ZodFirstPartyTypeKind.ZodNaN: + case ZodFirstPartyTypeKind.ZodNever: + return parseNeverDef(); + case ZodFirstPartyTypeKind.ZodEffects: + return parseEffectsDef(def, refs); + case ZodFirstPartyTypeKind.ZodAny: + return parseAnyDef(); + case ZodFirstPartyTypeKind.ZodUnknown: + return parseUnknownDef(); + case ZodFirstPartyTypeKind.ZodDefault: + return parseDefaultDef(def, refs); + case ZodFirstPartyTypeKind.ZodBranded: + return parseBrandedDef(def, refs); + case ZodFirstPartyTypeKind.ZodReadonly: + return parseReadonlyDef(def, refs); + case ZodFirstPartyTypeKind.ZodCatch: + return parseCatchDef(def, refs); + case ZodFirstPartyTypeKind.ZodPipeline: + return parsePipelineDef(def, refs); + case ZodFirstPartyTypeKind.ZodFunction: + case ZodFirstPartyTypeKind.ZodVoid: + case ZodFirstPartyTypeKind.ZodSymbol: + return undefined; + default: + return ((_: never) => undefined)(typeName); + } +}; + +const addMeta = (def: ZodTypeDef, refs: Refs, jsonSchema: JsonSchema7Type): JsonSchema7Type => { + if (def.description) { + jsonSchema.description = def.description; + + if (refs.markdownDescription) { + jsonSchema.markdownDescription = def.description; + } + } + return jsonSchema; +}; diff --git a/src/_vendor/zod-to-json-schema/parsers/any.ts b/src/_vendor/zod-to-json-schema/parsers/any.ts new file mode 100644 index 000000000..68c2921da --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/any.ts @@ -0,0 +1,5 @@ +export type JsonSchema7AnyType = {}; + +export function parseAnyDef(): JsonSchema7AnyType { + return {}; +} diff --git a/src/_vendor/zod-to-json-schema/parsers/array.ts b/src/_vendor/zod-to-json-schema/parsers/array.ts new file mode 100644 index 000000000..3e8578f8b --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/array.ts @@ -0,0 +1,36 @@ +import { ZodArrayDef, ZodFirstPartyTypeKind } from 'zod'; +import { ErrorMessages, setResponseValueAndErrors } from '../errorMessages'; +import { JsonSchema7Type, parseDef } from '../parseDef'; +import { Refs } from '../Refs'; + +export type JsonSchema7ArrayType = { + type: 'array'; + items?: JsonSchema7Type | undefined; + minItems?: number; + maxItems?: number; + errorMessages?: ErrorMessages; +}; + +export function parseArrayDef(def: ZodArrayDef, refs: Refs) { + const res: JsonSchema7ArrayType = { + type: 'array', + }; + if (def.type?._def?.typeName !== ZodFirstPartyTypeKind.ZodAny) { + res.items = parseDef(def.type._def, { + ...refs, + currentPath: [...refs.currentPath, 'items'], + }); + } + + if (def.minLength) { + setResponseValueAndErrors(res, 'minItems', def.minLength.value, def.minLength.message, refs); + } + if (def.maxLength) { + setResponseValueAndErrors(res, 'maxItems', def.maxLength.value, def.maxLength.message, refs); + } + if (def.exactLength) { + setResponseValueAndErrors(res, 'minItems', def.exactLength.value, def.exactLength.message, refs); + setResponseValueAndErrors(res, 'maxItems', def.exactLength.value, def.exactLength.message, refs); + } + return res; +} diff --git a/src/_vendor/zod-to-json-schema/parsers/bigint.ts b/src/_vendor/zod-to-json-schema/parsers/bigint.ts new file mode 100644 index 000000000..f46784184 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/bigint.ts @@ -0,0 +1,60 @@ +import { ZodBigIntDef } from 'zod'; +import { Refs } from '../Refs'; +import { ErrorMessages, setResponseValueAndErrors } from '../errorMessages'; + +export type JsonSchema7BigintType = { + type: 'integer'; + format: 'int64'; + minimum?: BigInt; + exclusiveMinimum?: BigInt; + maximum?: BigInt; + exclusiveMaximum?: BigInt; + multipleOf?: BigInt; + errorMessage?: ErrorMessages; +}; + +export function parseBigintDef(def: ZodBigIntDef, refs: Refs): JsonSchema7BigintType { + const res: JsonSchema7BigintType = { + type: 'integer', + format: 'int64', + }; + + if (!def.checks) return res; + + for (const check of def.checks) { + switch (check.kind) { + case 'min': + if (refs.target === 'jsonSchema7') { + if (check.inclusive) { + setResponseValueAndErrors(res, 'minimum', check.value, check.message, refs); + } else { + setResponseValueAndErrors(res, 'exclusiveMinimum', check.value, check.message, refs); + } + } else { + if (!check.inclusive) { + res.exclusiveMinimum = true as any; + } + setResponseValueAndErrors(res, 'minimum', check.value, check.message, refs); + } + break; + case 'max': + if (refs.target === 'jsonSchema7') { + if (check.inclusive) { + setResponseValueAndErrors(res, 'maximum', check.value, check.message, refs); + } else { + setResponseValueAndErrors(res, 'exclusiveMaximum', check.value, check.message, refs); + } + } else { + if (!check.inclusive) { + res.exclusiveMaximum = true as any; + } + setResponseValueAndErrors(res, 'maximum', check.value, check.message, refs); + } + break; + case 'multipleOf': + setResponseValueAndErrors(res, 'multipleOf', check.value, check.message, refs); + break; + } + } + return res; +} diff --git a/src/_vendor/zod-to-json-schema/parsers/boolean.ts b/src/_vendor/zod-to-json-schema/parsers/boolean.ts new file mode 100644 index 000000000..715e41acc --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/boolean.ts @@ -0,0 +1,9 @@ +export type JsonSchema7BooleanType = { + type: 'boolean'; +}; + +export function parseBooleanDef(): JsonSchema7BooleanType { + return { + type: 'boolean', + }; +} diff --git a/src/_vendor/zod-to-json-schema/parsers/branded.ts b/src/_vendor/zod-to-json-schema/parsers/branded.ts new file mode 100644 index 000000000..2242580a5 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/branded.ts @@ -0,0 +1,7 @@ +import { ZodBrandedDef } from 'zod'; +import { parseDef } from '../parseDef'; +import { Refs } from '../Refs'; + +export function parseBrandedDef(_def: ZodBrandedDef, refs: Refs) { + return parseDef(_def.type._def, refs); +} diff --git a/src/_vendor/zod-to-json-schema/parsers/catch.ts b/src/_vendor/zod-to-json-schema/parsers/catch.ts new file mode 100644 index 000000000..5cce3afa1 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/catch.ts @@ -0,0 +1,7 @@ +import { ZodCatchDef } from 'zod'; +import { parseDef } from '../parseDef'; +import { Refs } from '../Refs'; + +export const parseCatchDef = (def: ZodCatchDef, refs: Refs) => { + return parseDef(def.innerType._def, refs); +}; diff --git a/src/_vendor/zod-to-json-schema/parsers/date.ts b/src/_vendor/zod-to-json-schema/parsers/date.ts new file mode 100644 index 000000000..4afc4e8dc --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/date.ts @@ -0,0 +1,83 @@ +import { ZodDateDef } from 'zod'; +import { Refs } from '../Refs'; +import { ErrorMessages, setResponseValueAndErrors } from '../errorMessages'; +import { JsonSchema7NumberType } from './number'; +import { DateStrategy } from '../Options'; + +export type JsonSchema7DateType = + | { + type: 'integer' | 'string'; + format: 'unix-time' | 'date-time' | 'date'; + minimum?: number; + maximum?: number; + errorMessage?: ErrorMessages; + } + | { + anyOf: JsonSchema7DateType[]; + }; + +export function parseDateDef( + def: ZodDateDef, + refs: Refs, + overrideDateStrategy?: DateStrategy, +): JsonSchema7DateType { + const strategy = overrideDateStrategy ?? refs.dateStrategy; + + if (Array.isArray(strategy)) { + return { + anyOf: strategy.map((item, i) => parseDateDef(def, refs, item)), + }; + } + + switch (strategy) { + case 'string': + case 'format:date-time': + return { + type: 'string', + format: 'date-time', + }; + case 'format:date': + return { + type: 'string', + format: 'date', + }; + case 'integer': + return integerDateParser(def, refs); + } +} + +const integerDateParser = (def: ZodDateDef, refs: Refs) => { + const res: JsonSchema7DateType = { + type: 'integer', + format: 'unix-time', + }; + + if (refs.target === 'openApi3') { + return res; + } + + for (const check of def.checks) { + switch (check.kind) { + case 'min': + setResponseValueAndErrors( + res, + 'minimum', + check.value, // This is in milliseconds + check.message, + refs, + ); + break; + case 'max': + setResponseValueAndErrors( + res, + 'maximum', + check.value, // This is in milliseconds + check.message, + refs, + ); + break; + } + } + + return res; +}; diff --git a/src/_vendor/zod-to-json-schema/parsers/default.ts b/src/_vendor/zod-to-json-schema/parsers/default.ts new file mode 100644 index 000000000..f71726075 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/default.ts @@ -0,0 +1,10 @@ +import { ZodDefaultDef } from 'zod'; +import { JsonSchema7Type, parseDef } from '../parseDef'; +import { Refs } from '../Refs'; + +export function parseDefaultDef(_def: ZodDefaultDef, refs: Refs): JsonSchema7Type & { default: any } { + return { + ...parseDef(_def.innerType._def, refs), + default: _def.defaultValue(), + }; +} diff --git a/src/_vendor/zod-to-json-schema/parsers/effects.ts b/src/_vendor/zod-to-json-schema/parsers/effects.ts new file mode 100644 index 000000000..23d368987 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/effects.ts @@ -0,0 +1,7 @@ +import { ZodEffectsDef } from 'zod'; +import { JsonSchema7Type, parseDef } from '../parseDef'; +import { Refs } from '../Refs'; + +export function parseEffectsDef(_def: ZodEffectsDef, refs: Refs): JsonSchema7Type | undefined { + return refs.effectStrategy === 'input' ? parseDef(_def.schema._def, refs) : {}; +} diff --git a/src/_vendor/zod-to-json-schema/parsers/enum.ts b/src/_vendor/zod-to-json-schema/parsers/enum.ts new file mode 100644 index 000000000..d6f5ceb24 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/enum.ts @@ -0,0 +1,13 @@ +import { ZodEnumDef } from 'zod'; + +export type JsonSchema7EnumType = { + type: 'string'; + enum: string[]; +}; + +export function parseEnumDef(def: ZodEnumDef): JsonSchema7EnumType { + return { + type: 'string', + enum: [...def.values], + }; +} diff --git a/src/_vendor/zod-to-json-schema/parsers/intersection.ts b/src/_vendor/zod-to-json-schema/parsers/intersection.ts new file mode 100644 index 000000000..af5f0421d --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/intersection.ts @@ -0,0 +1,64 @@ +import { ZodIntersectionDef } from 'zod'; +import { JsonSchema7Type, parseDef } from '../parseDef'; +import { Refs } from '../Refs'; +import { JsonSchema7StringType } from './string'; + +export type JsonSchema7AllOfType = { + allOf: JsonSchema7Type[]; + unevaluatedProperties?: boolean; +}; + +const isJsonSchema7AllOfType = ( + type: JsonSchema7Type | JsonSchema7StringType, +): type is JsonSchema7AllOfType => { + if ('type' in type && type.type === 'string') return false; + return 'allOf' in type; +}; + +export function parseIntersectionDef( + def: ZodIntersectionDef, + refs: Refs, +): JsonSchema7AllOfType | JsonSchema7Type | undefined { + const allOf = [ + parseDef(def.left._def, { + ...refs, + currentPath: [...refs.currentPath, 'allOf', '0'], + }), + parseDef(def.right._def, { + ...refs, + currentPath: [...refs.currentPath, 'allOf', '1'], + }), + ].filter((x): x is JsonSchema7Type => !!x); + + let unevaluatedProperties: Pick | undefined = + refs.target === 'jsonSchema2019-09' ? { unevaluatedProperties: false } : undefined; + + const mergedAllOf: JsonSchema7Type[] = []; + // If either of the schemas is an allOf, merge them into a single allOf + allOf.forEach((schema) => { + if (isJsonSchema7AllOfType(schema)) { + mergedAllOf.push(...schema.allOf); + if (schema.unevaluatedProperties === undefined) { + // If one of the schemas has no unevaluatedProperties set, + // the merged schema should also have no unevaluatedProperties set + unevaluatedProperties = undefined; + } + } else { + let nestedSchema: JsonSchema7Type = schema; + if ('additionalProperties' in schema && schema.additionalProperties === false) { + const { additionalProperties, ...rest } = schema; + nestedSchema = rest; + } else { + // As soon as one of the schemas has additionalProperties set not to false, we allow unevaluatedProperties + unevaluatedProperties = undefined; + } + mergedAllOf.push(nestedSchema); + } + }); + return mergedAllOf.length ? + { + allOf: mergedAllOf, + ...unevaluatedProperties, + } + : undefined; +} diff --git a/src/_vendor/zod-to-json-schema/parsers/literal.ts b/src/_vendor/zod-to-json-schema/parsers/literal.ts new file mode 100644 index 000000000..a35625cfc --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/literal.ts @@ -0,0 +1,37 @@ +import { ZodLiteralDef } from 'zod'; +import { Refs } from '../Refs'; + +export type JsonSchema7LiteralType = + | { + type: 'string' | 'number' | 'integer' | 'boolean'; + const: string | number | boolean; + } + | { + type: 'object' | 'array'; + }; + +export function parseLiteralDef(def: ZodLiteralDef, refs: Refs): JsonSchema7LiteralType { + const parsedType = typeof def.value; + if ( + parsedType !== 'bigint' && + parsedType !== 'number' && + parsedType !== 'boolean' && + parsedType !== 'string' + ) { + return { + type: Array.isArray(def.value) ? 'array' : 'object', + }; + } + + if (refs.target === 'openApi3') { + return { + type: parsedType === 'bigint' ? 'integer' : parsedType, + enum: [def.value], + } as any; + } + + return { + type: parsedType === 'bigint' ? 'integer' : parsedType, + const: def.value, + }; +} diff --git a/src/_vendor/zod-to-json-schema/parsers/map.ts b/src/_vendor/zod-to-json-schema/parsers/map.ts new file mode 100644 index 000000000..5084ccd68 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/map.ts @@ -0,0 +1,42 @@ +import { ZodMapDef } from 'zod'; +import { JsonSchema7Type, parseDef } from '../parseDef'; +import { Refs } from '../Refs'; +import { JsonSchema7RecordType, parseRecordDef } from './record'; + +export type JsonSchema7MapType = { + type: 'array'; + maxItems: 125; + items: { + type: 'array'; + items: [JsonSchema7Type, JsonSchema7Type]; + minItems: 2; + maxItems: 2; + }; +}; + +export function parseMapDef(def: ZodMapDef, refs: Refs): JsonSchema7MapType | JsonSchema7RecordType { + if (refs.mapStrategy === 'record') { + return parseRecordDef(def, refs); + } + + const keys = + parseDef(def.keyType._def, { + ...refs, + currentPath: [...refs.currentPath, 'items', 'items', '0'], + }) || {}; + const values = + parseDef(def.valueType._def, { + ...refs, + currentPath: [...refs.currentPath, 'items', 'items', '1'], + }) || {}; + return { + type: 'array', + maxItems: 125, + items: { + type: 'array', + items: [keys, values], + minItems: 2, + maxItems: 2, + }, + }; +} diff --git a/src/_vendor/zod-to-json-schema/parsers/nativeEnum.ts b/src/_vendor/zod-to-json-schema/parsers/nativeEnum.ts new file mode 100644 index 000000000..a2ed901bb --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/nativeEnum.ts @@ -0,0 +1,27 @@ +import { ZodNativeEnumDef } from 'zod'; + +export type JsonSchema7NativeEnumType = { + type: 'string' | 'number' | ['string', 'number']; + enum: (string | number)[]; +}; + +export function parseNativeEnumDef(def: ZodNativeEnumDef): JsonSchema7NativeEnumType { + const object = def.values; + const actualKeys = Object.keys(def.values).filter((key: string) => { + return typeof object[object[key]!] !== 'number'; + }); + + const actualValues = actualKeys.map((key: string) => object[key]!); + + const parsedTypes = Array.from(new Set(actualValues.map((values: string | number) => typeof values))); + + return { + type: + parsedTypes.length === 1 ? + parsedTypes[0] === 'string' ? + 'string' + : 'number' + : ['string', 'number'], + enum: actualValues, + }; +} diff --git a/src/_vendor/zod-to-json-schema/parsers/never.ts b/src/_vendor/zod-to-json-schema/parsers/never.ts new file mode 100644 index 000000000..a5c7383d7 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/never.ts @@ -0,0 +1,9 @@ +export type JsonSchema7NeverType = { + not: {}; +}; + +export function parseNeverDef(): JsonSchema7NeverType { + return { + not: {}, + }; +} diff --git a/src/_vendor/zod-to-json-schema/parsers/null.ts b/src/_vendor/zod-to-json-schema/parsers/null.ts new file mode 100644 index 000000000..e1fe11362 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/null.ts @@ -0,0 +1,16 @@ +import { Refs } from '../Refs'; + +export type JsonSchema7NullType = { + type: 'null'; +}; + +export function parseNullDef(refs: Refs): JsonSchema7NullType { + return refs.target === 'openApi3' ? + ({ + enum: ['null'], + nullable: true, + } as any) + : { + type: 'null', + }; +} diff --git a/src/_vendor/zod-to-json-schema/parsers/nullable.ts b/src/_vendor/zod-to-json-schema/parsers/nullable.ts new file mode 100644 index 000000000..efb70076e --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/nullable.ts @@ -0,0 +1,49 @@ +import { ZodNullableDef } from 'zod'; +import { JsonSchema7Type, parseDef } from '../parseDef'; +import { Refs } from '../Refs'; +import { JsonSchema7NullType } from './null'; +import { primitiveMappings } from './union'; + +export type JsonSchema7NullableType = + | { + anyOf: [JsonSchema7Type, JsonSchema7NullType]; + } + | { + type: [string, 'null']; + }; + +export function parseNullableDef(def: ZodNullableDef, refs: Refs): JsonSchema7NullableType | undefined { + if ( + ['ZodString', 'ZodNumber', 'ZodBigInt', 'ZodBoolean', 'ZodNull'].includes(def.innerType._def.typeName) && + (!def.innerType._def.checks || !def.innerType._def.checks.length) + ) { + if (refs.target === 'openApi3') { + return { + type: primitiveMappings[def.innerType._def.typeName as keyof typeof primitiveMappings], + nullable: true, + } as any; + } + + return { + type: [primitiveMappings[def.innerType._def.typeName as keyof typeof primitiveMappings], 'null'], + }; + } + + if (refs.target === 'openApi3') { + const base = parseDef(def.innerType._def, { + ...refs, + currentPath: [...refs.currentPath], + }); + + if (base && '$ref' in base) return { allOf: [base], nullable: true } as any; + + return base && ({ ...base, nullable: true } as any); + } + + const base = parseDef(def.innerType._def, { + ...refs, + currentPath: [...refs.currentPath, 'anyOf', '0'], + }); + + return base && { anyOf: [base, { type: 'null' }] }; +} diff --git a/src/_vendor/zod-to-json-schema/parsers/number.ts b/src/_vendor/zod-to-json-schema/parsers/number.ts new file mode 100644 index 000000000..45a1f3c02 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/number.ts @@ -0,0 +1,62 @@ +import { ZodNumberDef } from 'zod'; +import { addErrorMessage, ErrorMessages, setResponseValueAndErrors } from '../errorMessages'; +import { Refs } from '../Refs'; + +export type JsonSchema7NumberType = { + type: 'number' | 'integer'; + minimum?: number; + exclusiveMinimum?: number; + maximum?: number; + exclusiveMaximum?: number; + multipleOf?: number; + errorMessage?: ErrorMessages; +}; + +export function parseNumberDef(def: ZodNumberDef, refs: Refs): JsonSchema7NumberType { + const res: JsonSchema7NumberType = { + type: 'number', + }; + + if (!def.checks) return res; + + for (const check of def.checks) { + switch (check.kind) { + case 'int': + res.type = 'integer'; + addErrorMessage(res, 'type', check.message, refs); + break; + case 'min': + if (refs.target === 'jsonSchema7') { + if (check.inclusive) { + setResponseValueAndErrors(res, 'minimum', check.value, check.message, refs); + } else { + setResponseValueAndErrors(res, 'exclusiveMinimum', check.value, check.message, refs); + } + } else { + if (!check.inclusive) { + res.exclusiveMinimum = true as any; + } + setResponseValueAndErrors(res, 'minimum', check.value, check.message, refs); + } + break; + case 'max': + if (refs.target === 'jsonSchema7') { + if (check.inclusive) { + setResponseValueAndErrors(res, 'maximum', check.value, check.message, refs); + } else { + setResponseValueAndErrors(res, 'exclusiveMaximum', check.value, check.message, refs); + } + } else { + if (!check.inclusive) { + res.exclusiveMaximum = true as any; + } + setResponseValueAndErrors(res, 'maximum', check.value, check.message, refs); + } + break; + case 'multipleOf': + setResponseValueAndErrors(res, 'multipleOf', check.value, check.message, refs); + break; + } + } + return res; +} diff --git a/src/_vendor/zod-to-json-schema/parsers/object.ts b/src/_vendor/zod-to-json-schema/parsers/object.ts new file mode 100644 index 000000000..f2120c8fe --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/object.ts @@ -0,0 +1,63 @@ +import { ZodObjectDef } from 'zod'; +import { JsonSchema7Type, parseDef } from '../parseDef'; +import { Refs } from '../Refs'; + +function decideAdditionalProperties(def: ZodObjectDef, refs: Refs) { + if (refs.removeAdditionalStrategy === 'strict') { + return def.catchall._def.typeName === 'ZodNever' ? + def.unknownKeys !== 'strict' + : parseDef(def.catchall._def, { + ...refs, + currentPath: [...refs.currentPath, 'additionalProperties'], + }) ?? true; + } else { + return def.catchall._def.typeName === 'ZodNever' ? + def.unknownKeys === 'passthrough' + : parseDef(def.catchall._def, { + ...refs, + currentPath: [...refs.currentPath, 'additionalProperties'], + }) ?? true; + } +} + +export type JsonSchema7ObjectType = { + type: 'object'; + properties: Record; + additionalProperties: boolean | JsonSchema7Type; + required?: string[]; +}; + +export function parseObjectDef(def: ZodObjectDef, refs: Refs) { + const result: JsonSchema7ObjectType = { + type: 'object', + ...Object.entries(def.shape()).reduce( + ( + acc: { + properties: Record; + required: string[]; + }, + [propName, propDef], + ) => { + if (propDef === undefined || propDef._def === undefined) return acc; + const parsedDef = parseDef(propDef._def, { + ...refs, + currentPath: [...refs.currentPath, 'properties', propName], + propertyPath: [...refs.currentPath, 'properties', propName], + }); + if (parsedDef === undefined) return acc; + return { + properties: { + ...acc.properties, + [propName]: parsedDef, + }, + required: + propDef.isOptional() && !refs.openaiStrictMode ? acc.required : [...acc.required, propName], + }; + }, + { properties: {}, required: [] }, + ), + additionalProperties: decideAdditionalProperties(def, refs), + }; + if (!result.required!.length) delete result.required; + return result; +} diff --git a/src/_vendor/zod-to-json-schema/parsers/optional.ts b/src/_vendor/zod-to-json-schema/parsers/optional.ts new file mode 100644 index 000000000..9b3e9731f --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/optional.ts @@ -0,0 +1,25 @@ +import { ZodOptionalDef } from 'zod'; +import { JsonSchema7Type, parseDef } from '../parseDef'; +import { Refs } from '../Refs'; + +export const parseOptionalDef = (def: ZodOptionalDef, refs: Refs): JsonSchema7Type | undefined => { + if (refs.currentPath.toString() === refs.propertyPath?.toString()) { + return parseDef(def.innerType._def, refs); + } + + const innerSchema = parseDef(def.innerType._def, { + ...refs, + currentPath: [...refs.currentPath, 'anyOf', '1'], + }); + + return innerSchema ? + { + anyOf: [ + { + not: {}, + }, + innerSchema, + ], + } + : {}; +}; diff --git a/src/_vendor/zod-to-json-schema/parsers/pipeline.ts b/src/_vendor/zod-to-json-schema/parsers/pipeline.ts new file mode 100644 index 000000000..7fdcbae02 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/pipeline.ts @@ -0,0 +1,28 @@ +import { ZodPipelineDef } from 'zod'; +import { JsonSchema7Type, parseDef } from '../parseDef'; +import { Refs } from '../Refs'; +import { JsonSchema7AllOfType } from './intersection'; + +export const parsePipelineDef = ( + def: ZodPipelineDef, + refs: Refs, +): JsonSchema7AllOfType | JsonSchema7Type | undefined => { + if (refs.pipeStrategy === 'input') { + return parseDef(def.in._def, refs); + } else if (refs.pipeStrategy === 'output') { + return parseDef(def.out._def, refs); + } + + const a = parseDef(def.in._def, { + ...refs, + currentPath: [...refs.currentPath, 'allOf', '0'], + }); + const b = parseDef(def.out._def, { + ...refs, + currentPath: [...refs.currentPath, 'allOf', a ? '1' : '0'], + }); + + return { + allOf: [a, b].filter((x): x is JsonSchema7Type => x !== undefined), + }; +}; diff --git a/src/_vendor/zod-to-json-schema/parsers/promise.ts b/src/_vendor/zod-to-json-schema/parsers/promise.ts new file mode 100644 index 000000000..f586d1139 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/promise.ts @@ -0,0 +1,7 @@ +import { ZodPromiseDef } from 'zod'; +import { JsonSchema7Type, parseDef } from '../parseDef'; +import { Refs } from '../Refs'; + +export function parsePromiseDef(def: ZodPromiseDef, refs: Refs): JsonSchema7Type | undefined { + return parseDef(def.type._def, refs); +} diff --git a/src/_vendor/zod-to-json-schema/parsers/readonly.ts b/src/_vendor/zod-to-json-schema/parsers/readonly.ts new file mode 100644 index 000000000..cecb937d3 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/readonly.ts @@ -0,0 +1,7 @@ +import { ZodReadonlyDef } from 'zod'; +import { parseDef } from '../parseDef'; +import { Refs } from '../Refs'; + +export const parseReadonlyDef = (def: ZodReadonlyDef, refs: Refs) => { + return parseDef(def.innerType._def, refs); +}; diff --git a/src/_vendor/zod-to-json-schema/parsers/record.ts b/src/_vendor/zod-to-json-schema/parsers/record.ts new file mode 100644 index 000000000..7eff507fb --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/record.ts @@ -0,0 +1,73 @@ +import { ZodFirstPartyTypeKind, ZodMapDef, ZodRecordDef, ZodTypeAny } from 'zod'; +import { JsonSchema7Type, parseDef } from '../parseDef'; +import { Refs } from '../Refs'; +import { JsonSchema7EnumType } from './enum'; +import { JsonSchema7ObjectType } from './object'; +import { JsonSchema7StringType, parseStringDef } from './string'; + +type JsonSchema7RecordPropertyNamesType = + | Omit + | Omit; + +export type JsonSchema7RecordType = { + type: 'object'; + additionalProperties: JsonSchema7Type; + propertyNames?: JsonSchema7RecordPropertyNamesType; +}; + +export function parseRecordDef( + def: ZodRecordDef | ZodMapDef, + refs: Refs, +): JsonSchema7RecordType { + if (refs.target === 'openApi3' && def.keyType?._def.typeName === ZodFirstPartyTypeKind.ZodEnum) { + return { + type: 'object', + required: def.keyType._def.values, + properties: def.keyType._def.values.reduce( + (acc: Record, key: string) => ({ + ...acc, + [key]: + parseDef(def.valueType._def, { + ...refs, + currentPath: [...refs.currentPath, 'properties', key], + }) ?? {}, + }), + {}, + ), + additionalProperties: false, + } satisfies JsonSchema7ObjectType as any; + } + + const schema: JsonSchema7RecordType = { + type: 'object', + additionalProperties: + parseDef(def.valueType._def, { + ...refs, + currentPath: [...refs.currentPath, 'additionalProperties'], + }) ?? {}, + }; + + if (refs.target === 'openApi3') { + return schema; + } + + if (def.keyType?._def.typeName === ZodFirstPartyTypeKind.ZodString && def.keyType._def.checks?.length) { + const keyType: JsonSchema7RecordPropertyNamesType = Object.entries( + parseStringDef(def.keyType._def, refs), + ).reduce((acc, [key, value]) => (key === 'type' ? acc : { ...acc, [key]: value }), {}); + + return { + ...schema, + propertyNames: keyType, + }; + } else if (def.keyType?._def.typeName === ZodFirstPartyTypeKind.ZodEnum) { + return { + ...schema, + propertyNames: { + enum: def.keyType._def.values, + }, + }; + } + + return schema; +} diff --git a/src/_vendor/zod-to-json-schema/parsers/set.ts b/src/_vendor/zod-to-json-schema/parsers/set.ts new file mode 100644 index 000000000..05fa9ed79 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/set.ts @@ -0,0 +1,36 @@ +import { ZodSetDef } from 'zod'; +import { ErrorMessages, setResponseValueAndErrors } from '../errorMessages'; +import { JsonSchema7Type, parseDef } from '../parseDef'; +import { Refs } from '../Refs'; + +export type JsonSchema7SetType = { + type: 'array'; + uniqueItems: true; + items?: JsonSchema7Type | undefined; + minItems?: number; + maxItems?: number; + errorMessage?: ErrorMessages; +}; + +export function parseSetDef(def: ZodSetDef, refs: Refs): JsonSchema7SetType { + const items = parseDef(def.valueType._def, { + ...refs, + currentPath: [...refs.currentPath, 'items'], + }); + + const schema: JsonSchema7SetType = { + type: 'array', + uniqueItems: true, + items, + }; + + if (def.minSize) { + setResponseValueAndErrors(schema, 'minItems', def.minSize.value, def.minSize.message, refs); + } + + if (def.maxSize) { + setResponseValueAndErrors(schema, 'maxItems', def.maxSize.value, def.maxSize.message, refs); + } + + return schema; +} diff --git a/src/_vendor/zod-to-json-schema/parsers/string.ts b/src/_vendor/zod-to-json-schema/parsers/string.ts new file mode 100644 index 000000000..daa1a954a --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/string.ts @@ -0,0 +1,400 @@ +// @ts-nocheck +import { ZodStringDef } from 'zod'; +import { ErrorMessages, setResponseValueAndErrors } from '../errorMessages'; +import { Refs } from '../Refs'; + +let emojiRegex: RegExp | undefined; + +/** + * Generated from the regular expressions found here as of 2024-05-22: + * https://github.com/colinhacks/zod/blob/master/src/types.ts. + * + * Expressions with /i flag have been changed accordingly. + */ +export const zodPatterns = { + /** + * `c` was changed to `[cC]` to replicate /i flag + */ + cuid: /^[cC][^\s-]{8,}$/, + cuid2: /^[0-9a-z]+$/, + ulid: /^[0-9A-HJKMNP-TV-Z]{26}$/, + /** + * `a-z` was added to replicate /i flag + */ + email: /^(?!\.)(?!.*\.\.)([a-zA-Z0-9_'+\-\.]*)[a-zA-Z0-9_+-]@([a-zA-Z0-9][a-zA-Z0-9\-]*\.)+[a-zA-Z]{2,}$/, + /** + * Constructed a valid Unicode RegExp + * + * Lazily instantiate since this type of regex isn't supported + * in all envs (e.g. React Native). + * + * See: + * https://github.com/colinhacks/zod/issues/2433 + * Fix in Zod: + * https://github.com/colinhacks/zod/commit/9340fd51e48576a75adc919bff65dbc4a5d4c99b + */ + emoji: () => { + if (emojiRegex === undefined) { + emojiRegex = RegExp('^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$', 'u'); + } + return emojiRegex; + }, + /** + * Unused + */ + uuid: /^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/, + /** + * Unused + */ + ipv4: /^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/, + /** + * Unused + */ + ipv6: /^(([a-f0-9]{1,4}:){7}|::([a-f0-9]{1,4}:){0,6}|([a-f0-9]{1,4}:){1}:([a-f0-9]{1,4}:){0,5}|([a-f0-9]{1,4}:){2}:([a-f0-9]{1,4}:){0,4}|([a-f0-9]{1,4}:){3}:([a-f0-9]{1,4}:){0,3}|([a-f0-9]{1,4}:){4}:([a-f0-9]{1,4}:){0,2}|([a-f0-9]{1,4}:){5}:([a-f0-9]{1,4}:){0,1})([a-f0-9]{1,4}|(((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\.){3}((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2})))$/, + base64: /^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/, + nanoid: /^[a-zA-Z0-9_-]{21}$/, +} as const; + +export type JsonSchema7StringType = { + type: 'string'; + minLength?: number; + maxLength?: number; + format?: + | 'email' + | 'idn-email' + | 'uri' + | 'uuid' + | 'date-time' + | 'ipv4' + | 'ipv6' + | 'date' + | 'time' + | 'duration'; + pattern?: string; + allOf?: { + pattern: string; + errorMessage?: ErrorMessages<{ pattern: string }>; + }[]; + anyOf?: { + format: string; + errorMessage?: ErrorMessages<{ format: string }>; + }[]; + errorMessage?: ErrorMessages; + contentEncoding?: string; +}; + +export function parseStringDef(def: ZodStringDef, refs: Refs): JsonSchema7StringType { + const res: JsonSchema7StringType = { + type: 'string', + }; + + function processPattern(value: string): string { + return refs.patternStrategy === 'escape' ? escapeNonAlphaNumeric(value) : value; + } + + if (def.checks) { + for (const check of def.checks) { + switch (check.kind) { + case 'min': + setResponseValueAndErrors( + res, + 'minLength', + typeof res.minLength === 'number' ? Math.max(res.minLength, check.value) : check.value, + check.message, + refs, + ); + break; + case 'max': + setResponseValueAndErrors( + res, + 'maxLength', + typeof res.maxLength === 'number' ? Math.min(res.maxLength, check.value) : check.value, + check.message, + refs, + ); + + break; + case 'email': + switch (refs.emailStrategy) { + case 'format:email': + addFormat(res, 'email', check.message, refs); + break; + case 'format:idn-email': + addFormat(res, 'idn-email', check.message, refs); + break; + case 'pattern:zod': + addPattern(res, zodPatterns.email, check.message, refs); + break; + } + + break; + case 'url': + addFormat(res, 'uri', check.message, refs); + break; + case 'uuid': + addFormat(res, 'uuid', check.message, refs); + break; + case 'regex': + addPattern(res, check.regex, check.message, refs); + break; + case 'cuid': + addPattern(res, zodPatterns.cuid, check.message, refs); + break; + case 'cuid2': + addPattern(res, zodPatterns.cuid2, check.message, refs); + break; + case 'startsWith': + addPattern(res, RegExp(`^${processPattern(check.value)}`), check.message, refs); + break; + case 'endsWith': + addPattern(res, RegExp(`${processPattern(check.value)}$`), check.message, refs); + break; + + case 'datetime': + addFormat(res, 'date-time', check.message, refs); + break; + case 'date': + addFormat(res, 'date', check.message, refs); + break; + case 'time': + addFormat(res, 'time', check.message, refs); + break; + case 'duration': + addFormat(res, 'duration', check.message, refs); + break; + case 'length': + setResponseValueAndErrors( + res, + 'minLength', + typeof res.minLength === 'number' ? Math.max(res.minLength, check.value) : check.value, + check.message, + refs, + ); + setResponseValueAndErrors( + res, + 'maxLength', + typeof res.maxLength === 'number' ? Math.min(res.maxLength, check.value) : check.value, + check.message, + refs, + ); + break; + case 'includes': { + addPattern(res, RegExp(processPattern(check.value)), check.message, refs); + break; + } + case 'ip': { + if (check.version !== 'v6') { + addFormat(res, 'ipv4', check.message, refs); + } + if (check.version !== 'v4') { + addFormat(res, 'ipv6', check.message, refs); + } + break; + } + case 'emoji': + addPattern(res, zodPatterns.emoji, check.message, refs); + break; + case 'ulid': { + addPattern(res, zodPatterns.ulid, check.message, refs); + break; + } + case 'base64': { + switch (refs.base64Strategy) { + case 'format:binary': { + addFormat(res, 'binary' as any, check.message, refs); + break; + } + + case 'contentEncoding:base64': { + setResponseValueAndErrors(res, 'contentEncoding', 'base64', check.message, refs); + break; + } + + case 'pattern:zod': { + addPattern(res, zodPatterns.base64, check.message, refs); + break; + } + } + break; + } + case 'nanoid': { + addPattern(res, zodPatterns.nanoid, check.message, refs); + } + case 'toLowerCase': + case 'toUpperCase': + case 'trim': + break; + default: + ((_: never) => {})(check); + } + } + } + + return res; +} + +const escapeNonAlphaNumeric = (value: string) => + Array.from(value) + .map((c) => (/[a-zA-Z0-9]/.test(c) ? c : `\\${c}`)) + .join(''); + +const addFormat = ( + schema: JsonSchema7StringType, + value: Required['format'], + message: string | undefined, + refs: Refs, +) => { + if (schema.format || schema.anyOf?.some((x) => x.format)) { + if (!schema.anyOf) { + schema.anyOf = []; + } + + if (schema.format) { + schema.anyOf!.push({ + format: schema.format, + ...(schema.errorMessage && + refs.errorMessages && { + errorMessage: { format: schema.errorMessage.format }, + }), + }); + delete schema.format; + if (schema.errorMessage) { + delete schema.errorMessage.format; + if (Object.keys(schema.errorMessage).length === 0) { + delete schema.errorMessage; + } + } + } + + schema.anyOf!.push({ + format: value, + ...(message && refs.errorMessages && { errorMessage: { format: message } }), + }); + } else { + setResponseValueAndErrors(schema, 'format', value, message, refs); + } +}; + +const addPattern = ( + schema: JsonSchema7StringType, + regex: RegExp | (() => RegExp), + message: string | undefined, + refs: Refs, +) => { + if (schema.pattern || schema.allOf?.some((x) => x.pattern)) { + if (!schema.allOf) { + schema.allOf = []; + } + + if (schema.pattern) { + schema.allOf!.push({ + pattern: schema.pattern, + ...(schema.errorMessage && + refs.errorMessages && { + errorMessage: { pattern: schema.errorMessage.pattern }, + }), + }); + delete schema.pattern; + if (schema.errorMessage) { + delete schema.errorMessage.pattern; + if (Object.keys(schema.errorMessage).length === 0) { + delete schema.errorMessage; + } + } + } + + schema.allOf!.push({ + pattern: processRegExp(regex, refs), + ...(message && refs.errorMessages && { errorMessage: { pattern: message } }), + }); + } else { + setResponseValueAndErrors(schema, 'pattern', processRegExp(regex, refs), message, refs); + } +}; + +// Mutate z.string.regex() in a best attempt to accommodate for regex flags when applyRegexFlags is true +const processRegExp = (regexOrFunction: RegExp | (() => RegExp), refs: Refs): string => { + const regex = typeof regexOrFunction === 'function' ? regexOrFunction() : regexOrFunction; + if (!refs.applyRegexFlags || !regex.flags) return regex.source; + + // Currently handled flags + const flags = { + i: regex.flags.includes('i'), // Case-insensitive + m: regex.flags.includes('m'), // `^` and `$` matches adjacent to newline characters + s: regex.flags.includes('s'), // `.` matches newlines + }; + + // The general principle here is to step through each character, one at a time, applying mutations as flags require. We keep track when the current character is escaped, and when it's inside a group /like [this]/ or (also) a range like /[a-z]/. The following is fairly brittle imperative code; edit at your peril! + + const source = flags.i ? regex.source.toLowerCase() : regex.source; + let pattern = ''; + let isEscaped = false; + let inCharGroup = false; + let inCharRange = false; + + for (let i = 0; i < source.length; i++) { + if (isEscaped) { + pattern += source[i]; + isEscaped = false; + continue; + } + + if (flags.i) { + if (inCharGroup) { + if (source[i].match(/[a-z]/)) { + if (inCharRange) { + pattern += source[i]; + pattern += `${source[i - 2]}-${source[i]}`.toUpperCase(); + inCharRange = false; + } else if (source[i + 1] === '-' && source[i + 2]?.match(/[a-z]/)) { + pattern += source[i]; + inCharRange = true; + } else { + pattern += `${source[i]}${source[i].toUpperCase()}`; + } + continue; + } + } else if (source[i].match(/[a-z]/)) { + pattern += `[${source[i]}${source[i].toUpperCase()}]`; + continue; + } + } + + if (flags.m) { + if (source[i] === '^') { + pattern += `(^|(?<=[\r\n]))`; + continue; + } else if (source[i] === '$') { + pattern += `($|(?=[\r\n]))`; + continue; + } + } + + if (flags.s && source[i] === '.') { + pattern += inCharGroup ? `${source[i]}\r\n` : `[${source[i]}\r\n]`; + continue; + } + + pattern += source[i]; + if (source[i] === '\\') { + isEscaped = true; + } else if (inCharGroup && source[i] === ']') { + inCharGroup = false; + } else if (!inCharGroup && source[i] === '[') { + inCharGroup = true; + } + } + + try { + const regexTest = new RegExp(pattern); + } catch { + console.warn( + `Could not convert regex pattern at ${refs.currentPath.join( + '/', + )} to a flag-independent form! Falling back to the flag-ignorant source`, + ); + return regex.source; + } + + return pattern; +}; diff --git a/src/_vendor/zod-to-json-schema/parsers/tuple.ts b/src/_vendor/zod-to-json-schema/parsers/tuple.ts new file mode 100644 index 000000000..b2a824006 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/tuple.ts @@ -0,0 +1,54 @@ +import { ZodTupleDef, ZodTupleItems, ZodTypeAny } from 'zod'; +import { JsonSchema7Type, parseDef } from '../parseDef'; +import { Refs } from '../Refs'; + +export type JsonSchema7TupleType = { + type: 'array'; + minItems: number; + items: JsonSchema7Type[]; +} & ( + | { + maxItems: number; + } + | { + additionalItems?: JsonSchema7Type | undefined; + } +); + +export function parseTupleDef( + def: ZodTupleDef, + refs: Refs, +): JsonSchema7TupleType { + if (def.rest) { + return { + type: 'array', + minItems: def.items.length, + items: def.items + .map((x, i) => + parseDef(x._def, { + ...refs, + currentPath: [...refs.currentPath, 'items', `${i}`], + }), + ) + .reduce((acc: JsonSchema7Type[], x) => (x === undefined ? acc : [...acc, x]), []), + additionalItems: parseDef(def.rest._def, { + ...refs, + currentPath: [...refs.currentPath, 'additionalItems'], + }), + }; + } else { + return { + type: 'array', + minItems: def.items.length, + maxItems: def.items.length, + items: def.items + .map((x, i) => + parseDef(x._def, { + ...refs, + currentPath: [...refs.currentPath, 'items', `${i}`], + }), + ) + .reduce((acc: JsonSchema7Type[], x) => (x === undefined ? acc : [...acc, x]), []), + }; + } +} diff --git a/src/_vendor/zod-to-json-schema/parsers/undefined.ts b/src/_vendor/zod-to-json-schema/parsers/undefined.ts new file mode 100644 index 000000000..6864d8138 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/undefined.ts @@ -0,0 +1,9 @@ +export type JsonSchema7UndefinedType = { + not: {}; +}; + +export function parseUndefinedDef(): JsonSchema7UndefinedType { + return { + not: {}, + }; +} diff --git a/src/_vendor/zod-to-json-schema/parsers/union.ts b/src/_vendor/zod-to-json-schema/parsers/union.ts new file mode 100644 index 000000000..1daf14908 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/union.ts @@ -0,0 +1,119 @@ +import { ZodDiscriminatedUnionDef, ZodLiteralDef, ZodTypeAny, ZodUnionDef } from 'zod'; +import { JsonSchema7Type, parseDef } from '../parseDef'; +import { Refs } from '../Refs'; + +export const primitiveMappings = { + ZodString: 'string', + ZodNumber: 'number', + ZodBigInt: 'integer', + ZodBoolean: 'boolean', + ZodNull: 'null', +} as const; +type ZodPrimitive = keyof typeof primitiveMappings; +type JsonSchema7Primitive = (typeof primitiveMappings)[keyof typeof primitiveMappings]; + +export type JsonSchema7UnionType = JsonSchema7PrimitiveUnionType | JsonSchema7AnyOfType; + +type JsonSchema7PrimitiveUnionType = + | { + type: JsonSchema7Primitive | JsonSchema7Primitive[]; + } + | { + type: JsonSchema7Primitive | JsonSchema7Primitive[]; + enum: (string | number | bigint | boolean | null)[]; + }; + +type JsonSchema7AnyOfType = { + anyOf: JsonSchema7Type[]; +}; + +export function parseUnionDef( + def: ZodUnionDef | ZodDiscriminatedUnionDef, + refs: Refs, +): JsonSchema7PrimitiveUnionType | JsonSchema7AnyOfType | undefined { + if (refs.target === 'openApi3') return asAnyOf(def, refs); + + const options: readonly ZodTypeAny[] = + def.options instanceof Map ? Array.from(def.options.values()) : def.options; + + // This blocks tries to look ahead a bit to produce nicer looking schemas with type array instead of anyOf. + if ( + options.every((x) => x._def.typeName in primitiveMappings && (!x._def.checks || !x._def.checks.length)) + ) { + // all types in union are primitive and lack checks, so might as well squash into {type: [...]} + + const types = options.reduce((types: JsonSchema7Primitive[], x) => { + const type = primitiveMappings[x._def.typeName as ZodPrimitive]; //Can be safely casted due to row 43 + return type && !types.includes(type) ? [...types, type] : types; + }, []); + + return { + type: types.length > 1 ? types : types[0]!, + }; + } else if (options.every((x) => x._def.typeName === 'ZodLiteral' && !x.description)) { + // all options literals + + const types = options.reduce((acc: JsonSchema7Primitive[], x: { _def: ZodLiteralDef }) => { + const type = typeof x._def.value; + switch (type) { + case 'string': + case 'number': + case 'boolean': + return [...acc, type]; + case 'bigint': + return [...acc, 'integer' as const]; + case 'object': + if (x._def.value === null) return [...acc, 'null' as const]; + case 'symbol': + case 'undefined': + case 'function': + default: + return acc; + } + }, []); + + if (types.length === options.length) { + // all the literals are primitive, as far as null can be considered primitive + + const uniqueTypes = types.filter((x, i, a) => a.indexOf(x) === i); + return { + type: uniqueTypes.length > 1 ? uniqueTypes : uniqueTypes[0]!, + enum: options.reduce( + (acc, x) => { + return acc.includes(x._def.value) ? acc : [...acc, x._def.value]; + }, + [] as (string | number | bigint | boolean | null)[], + ), + }; + } + } else if (options.every((x) => x._def.typeName === 'ZodEnum')) { + return { + type: 'string', + enum: options.reduce( + (acc: string[], x) => [...acc, ...x._def.values.filter((x: string) => !acc.includes(x))], + [], + ), + }; + } + + return asAnyOf(def, refs); +} + +const asAnyOf = ( + def: ZodUnionDef | ZodDiscriminatedUnionDef, + refs: Refs, +): JsonSchema7PrimitiveUnionType | JsonSchema7AnyOfType | undefined => { + const anyOf = ((def.options instanceof Map ? Array.from(def.options.values()) : def.options) as any[]) + .map((x, i) => + parseDef(x._def, { + ...refs, + currentPath: [...refs.currentPath, 'anyOf', `${i}`], + }), + ) + .filter( + (x): x is JsonSchema7Type => + !!x && (!refs.strictUnions || (typeof x === 'object' && Object.keys(x).length > 0)), + ); + + return anyOf.length ? { anyOf } : undefined; +}; diff --git a/src/_vendor/zod-to-json-schema/parsers/unknown.ts b/src/_vendor/zod-to-json-schema/parsers/unknown.ts new file mode 100644 index 000000000..a3c8d1d96 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/parsers/unknown.ts @@ -0,0 +1,5 @@ +export type JsonSchema7UnknownType = {}; + +export function parseUnknownDef(): JsonSchema7UnknownType { + return {}; +} diff --git a/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts b/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts new file mode 100644 index 000000000..a744634be --- /dev/null +++ b/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts @@ -0,0 +1,91 @@ +import { ZodSchema } from 'zod'; +import { Options, Targets } from './Options'; +import { JsonSchema7Type, parseDef } from './parseDef'; +import { getRefs } from './Refs'; + +const zodToJsonSchema = ( + schema: ZodSchema, + options?: Partial> | string, +): (Target extends 'jsonSchema7' ? JsonSchema7Type : object) & { + $schema?: string; + definitions?: { + [key: string]: Target extends 'jsonSchema7' ? JsonSchema7Type + : Target extends 'jsonSchema2019-09' ? JsonSchema7Type + : object; + }; +} => { + const refs = getRefs(options); + + const definitions = + typeof options === 'object' && options.definitions ? + Object.entries(options.definitions).reduce( + (acc, [name, schema]) => ({ + ...acc, + [name]: + parseDef( + schema._def, + { + ...refs, + currentPath: [...refs.basePath, refs.definitionPath, name], + }, + true, + ) ?? {}, + }), + {}, + ) + : undefined; + + const name = + typeof options === 'string' ? options + : options?.nameStrategy === 'title' ? undefined + : options?.name; + + const main = + parseDef( + schema._def, + name === undefined ? refs : ( + { + ...refs, + currentPath: [...refs.basePath, refs.definitionPath, name], + } + ), + false, + ) ?? {}; + + const title = + typeof options === 'object' && options.name !== undefined && options.nameStrategy === 'title' ? + options.name + : undefined; + + if (title !== undefined) { + main.title = title; + } + + const combined: ReturnType> = + name === undefined ? + definitions ? + { + ...main, + [refs.definitionPath]: definitions, + } + : main + : { + $ref: [...(refs.$refStrategy === 'relative' ? [] : refs.basePath), refs.definitionPath, name].join( + '/', + ), + [refs.definitionPath]: { + ...definitions, + [name]: main, + }, + }; + + if (refs.target === 'jsonSchema7') { + combined.$schema = 'http://json-schema.org/draft-07/schema#'; + } else if (refs.target === 'jsonSchema2019-09') { + combined.$schema = 'https://json-schema.org/draft/2019-09/schema#'; + } + + return combined; +}; + +export { zodToJsonSchema }; diff --git a/src/error.ts b/src/error.ts index 19a60598a..83ddbfafa 100644 --- a/src/error.ts +++ b/src/error.ts @@ -156,3 +156,15 @@ export class RateLimitError extends APIError { } export class InternalServerError extends APIError {} + +export class LengthFinishReasonError extends OpenAIError { + constructor() { + super(`Could not parse response content as the length limit was reached`); + } +} + +export class ContentFilterFinishReasonError extends OpenAIError { + constructor() { + super(`Could not parse response content as the request was rejected by the content filter`); + } +} diff --git a/src/helpers/zod.ts b/src/helpers/zod.ts new file mode 100644 index 000000000..ed83d3510 --- /dev/null +++ b/src/helpers/zod.ts @@ -0,0 +1,102 @@ +import { ResponseFormatJSONSchema } from 'openai/resources'; +import type z from 'zod'; +import { + AutoParseableResponseFormat, + AutoParseableTool, + makeParseableResponseFormat, + makeParseableTool, +} from '../lib/parser'; +import { zodToJsonSchema as _zodToJsonSchema } from '../_vendor/zod-to-json-schema'; + +function zodToJsonSchema(schema: z.ZodType): Record { + return _zodToJsonSchema(schema, { openaiStrictMode: true }); +} + +/** + * Creates a chat completion `JSONSchema` response format object from + * the given Zod schema. + * + * If this is passed to the `.parse()`, `.stream()` or `.runTools()` + * chat completion methods then the response message will contain a + * `.parsed` property that is the result of parsing the content with + * the given Zod object. + * + * ```ts + * const completion = await client.beta.chat.completions.parse({ + * model: 'gpt-4o-2024-08-06', + * messages: [ + * { role: 'system', content: 'You are a helpful math tutor.' }, + * { role: 'user', content: 'solve 8x + 31 = 2' }, + * ], + * response_format: zodResponseFormat( + * z.object({ + * steps: z.array(z.object({ + * explanation: z.string(), + * answer: z.string(), + * })), + * final_answer: z.string(), + * }), + * 'math_answer', + * ), + * }); + * const message = completion.choices[0]?.message; + * if (message?.parsed) { + * console.log(message.parsed); + * console.log(message.parsed.final_answer); + * } + * ``` + * + * This can be passed directly to the `.create()` method but will not + * result in any automatic parsing, you'll have to parse the response yourself. + */ +export function zodResponseFormat( + zodObject: ZodInput, + name: string, + props?: Omit, +): AutoParseableResponseFormat> { + return makeParseableResponseFormat( + { + type: 'json_schema', + json_schema: { + ...props, + name, + strict: true, + schema: zodToJsonSchema(zodObject), + }, + }, + (content) => zodObject.parse(JSON.parse(content)), + ); +} + +/** + * Creates a chat completion `function` tool that can be invoked + * automatically by the chat completion `.runTools()` method or automatically + * parsed by `.parse()` / `.stream()`. + */ +export function zodFunction(options: { + name: string; + parameters: Parameters; + function?: ((args: z.infer) => unknown | Promise) | undefined; + description?: string | undefined; +}): AutoParseableTool<{ + arguments: Parameters; + name: string; + function: (args: z.infer) => unknown; +}> { + // @ts-expect-error TODO + return makeParseableTool( + { + type: 'function', + function: { + name: options.name, + parameters: zodToJsonSchema(options.parameters), + strict: true, + ...(options.description ? { description: options.description } : undefined), + }, + }, + { + callback: options.function, + parser: (args) => options.parameters.parse(JSON.parse(args)), + }, + ); +} diff --git a/src/index.ts b/src/index.ts index cd0dd67b3..5f7dffd67 100644 --- a/src/index.ts +++ b/src/index.ts @@ -248,6 +248,7 @@ export namespace OpenAI { export import ChatCompletionChunk = API.ChatCompletionChunk; export import ChatCompletionContentPart = API.ChatCompletionContentPart; export import ChatCompletionContentPartImage = API.ChatCompletionContentPartImage; + export import ChatCompletionContentPartRefusal = API.ChatCompletionContentPartRefusal; export import ChatCompletionContentPartText = API.ChatCompletionContentPartText; export import ChatCompletionFunctionCallOption = API.ChatCompletionFunctionCallOption; export import ChatCompletionFunctionMessageParam = API.ChatCompletionFunctionMessageParam; @@ -322,6 +323,9 @@ export namespace OpenAI { export import ErrorObject = API.ErrorObject; export import FunctionDefinition = API.FunctionDefinition; export import FunctionParameters = API.FunctionParameters; + export import ResponseFormatJSONObject = API.ResponseFormatJSONObject; + export import ResponseFormatJSONSchema = API.ResponseFormatJSONSchema; + export import ResponseFormatText = API.ResponseFormatText; } // ---------------------- Azure ---------------------- diff --git a/src/lib/AbstractChatCompletionRunner.ts b/src/lib/AbstractChatCompletionRunner.ts index 590013aa6..39ee4e993 100644 --- a/src/lib/AbstractChatCompletionRunner.ts +++ b/src/lib/AbstractChatCompletionRunner.ts @@ -1,7 +1,6 @@ import * as Core from 'openai/core'; import { type CompletionUsage } from 'openai/resources/completions'; import { - type Completions, type ChatCompletion, type ChatCompletionMessage, type ChatCompletionMessageParam, @@ -13,6 +12,7 @@ import { type RunnableFunction, isRunnableFunctionWithParse, type BaseFunctionsArgs, + RunnableToolFunction, } from './RunnableFunction'; import { ChatCompletionFunctionRunnerParams, ChatCompletionToolRunnerParams } from './ChatCompletionRunner'; import { @@ -21,6 +21,9 @@ import { } from './ChatCompletionStreamingRunner'; import { isAssistantMessage, isFunctionMessage, isToolMessage } from './chatCompletionUtils'; import { BaseEvents, EventStream } from './EventStream'; +import { ParsedChatCompletion } from '../resources/beta/chat/completions'; +import OpenAI from '../index'; +import { isAutoParsableTool, parseChatCompletion } from 'openai/lib/parser'; const DEFAULT_MAX_CHAT_COMPLETIONS = 10; export interface RunnerOptions extends Core.RequestOptions { @@ -30,14 +33,15 @@ export interface RunnerOptions extends Core.RequestOptions { export class AbstractChatCompletionRunner< EventTypes extends AbstractChatCompletionRunnerEvents, + ParsedT, > extends EventStream { - protected _chatCompletions: ChatCompletion[] = []; + protected _chatCompletions: ParsedChatCompletion[] = []; messages: ChatCompletionMessageParam[] = []; protected _addChatCompletion( - this: AbstractChatCompletionRunner, - chatCompletion: ChatCompletion, - ): ChatCompletion { + this: AbstractChatCompletionRunner, + chatCompletion: ParsedChatCompletion, + ): ParsedChatCompletion { this._chatCompletions.push(chatCompletion); this._emit('chatCompletion', chatCompletion); const message = chatCompletion.choices[0]?.message; @@ -46,7 +50,7 @@ export class AbstractChatCompletionRunner< } protected _addMessage( - this: AbstractChatCompletionRunner, + this: AbstractChatCompletionRunner, message: ChatCompletionMessageParam, emit = true, ) { @@ -75,7 +79,7 @@ export class AbstractChatCompletionRunner< * @returns a promise that resolves with the final ChatCompletion, or rejects * if an error occurred or the stream ended prematurely without producing a ChatCompletion. */ - async finalChatCompletion(): Promise { + async finalChatCompletion(): Promise> { await this.done(); const completion = this._chatCompletions[this._chatCompletions.length - 1]; if (!completion) throw new OpenAIError('stream ended without producing a ChatCompletion'); @@ -101,7 +105,11 @@ export class AbstractChatCompletionRunner< const message = this.messages[i]; if (isAssistantMessage(message)) { const { function_call, ...rest } = message; - const ret: ChatCompletionMessage = { ...rest, content: message.content ?? null }; + const ret: ChatCompletionMessage = { + ...rest, + content: (message as ChatCompletionMessage).content ?? null, + refusal: (message as ChatCompletionMessage).refusal ?? null, + }; if (function_call) { ret.function_call = function_call; } @@ -152,6 +160,7 @@ export class AbstractChatCompletionRunner< if ( isToolMessage(message) && message.content != null && + typeof message.content === 'string' && this.messages.some( (x) => x.role === 'assistant' && @@ -195,7 +204,9 @@ export class AbstractChatCompletionRunner< return [...this._chatCompletions]; } - protected override _emitFinal(this: AbstractChatCompletionRunner) { + protected override _emitFinal( + this: AbstractChatCompletionRunner, + ) { const completion = this._chatCompletions[this._chatCompletions.length - 1]; if (completion) this._emit('finalChatCompletion', completion); const finalMessage = this.#getFinalMessage(); @@ -223,10 +234,10 @@ export class AbstractChatCompletionRunner< } protected async _createChatCompletion( - completions: Completions, + client: OpenAI, params: ChatCompletionCreateParams, options?: Core.RequestOptions, - ): Promise { + ): Promise> { const signal = options?.signal; if (signal) { if (signal.aborted) this.controller.abort(); @@ -234,27 +245,27 @@ export class AbstractChatCompletionRunner< } this.#validateParams(params); - const chatCompletion = await completions.create( + const chatCompletion = await client.chat.completions.create( { ...params, stream: false }, { ...options, signal: this.controller.signal }, ); this._connected(); - return this._addChatCompletion(chatCompletion); + return this._addChatCompletion(parseChatCompletion(chatCompletion, params)); } protected async _runChatCompletion( - completions: Completions, + client: OpenAI, params: ChatCompletionCreateParams, options?: Core.RequestOptions, ): Promise { for (const message of params.messages) { this._addMessage(message, false); } - return await this._createChatCompletion(completions, params, options); + return await this._createChatCompletion(client, params, options); } protected async _runFunctions( - completions: Completions, + client: OpenAI, params: | ChatCompletionFunctionRunnerParams | ChatCompletionStreamingFunctionRunnerParams, @@ -284,7 +295,7 @@ export class AbstractChatCompletionRunner< for (let i = 0; i < maxChatCompletions; ++i) { const chatCompletion: ChatCompletion = await this._createChatCompletion( - completions, + client, { ...restParams, function_call, @@ -339,7 +350,7 @@ export class AbstractChatCompletionRunner< } protected async _runTools( - completions: Completions, + client: OpenAI, params: | ChatCompletionToolRunnerParams | ChatCompletionStreamingToolRunnerParams, @@ -350,8 +361,31 @@ export class AbstractChatCompletionRunner< const singleFunctionToCall = typeof tool_choice !== 'string' && tool_choice?.function?.name; const { maxChatCompletions = DEFAULT_MAX_CHAT_COMPLETIONS } = options || {}; + // TODO(someday): clean this logic up + const inputTools = params.tools.map((tool): RunnableToolFunction => { + if (isAutoParsableTool(tool)) { + if (!tool.$callback) { + throw new OpenAIError('Tool given to `.runTools()` that does not have an associated function'); + } + + return { + type: 'function', + function: { + function: tool.$callback, + name: tool.function.name, + description: tool.function.description || '', + parameters: tool.function.parameters as any, + parse: tool.$parseRaw, + strict: true, + }, + }; + } + + return tool as any as RunnableToolFunction; + }); + const functionsByName: Record> = {}; - for (const f of params.tools) { + for (const f of inputTools) { if (f.type === 'function') { functionsByName[f.function.name || f.function.function.name] = f.function; } @@ -359,7 +393,7 @@ export class AbstractChatCompletionRunner< const tools: ChatCompletionTool[] = 'tools' in params ? - params.tools.map((t) => + inputTools.map((t) => t.type === 'function' ? { type: 'function', @@ -367,6 +401,7 @@ export class AbstractChatCompletionRunner< name: t.function.name || t.function.function.name, parameters: t.function.parameters as Record, description: t.function.description, + strict: t.function.strict, }, } : (t as unknown as ChatCompletionTool), @@ -379,7 +414,7 @@ export class AbstractChatCompletionRunner< for (let i = 0; i < maxChatCompletions; ++i) { const chatCompletion: ChatCompletion = await this._createChatCompletion( - completions, + client, { ...restParams, tool_choice, @@ -392,7 +427,7 @@ export class AbstractChatCompletionRunner< if (!message) { throw new OpenAIError(`missing message in ChatCompletion response`); } - if (!message.tool_calls) { + if (!message.tool_calls?.length) { return; } @@ -403,8 +438,10 @@ export class AbstractChatCompletionRunner< const fn = functionsByName[name]; if (!fn) { - const content = `Invalid tool_call: ${JSON.stringify(name)}. Available options are: ${tools - .map((f) => JSON.stringify(f.function.name)) + const content = `Invalid tool_call: ${JSON.stringify(name)}. Available options are: ${Object.keys( + functionsByName, + ) + .map((name) => JSON.stringify(name)) .join(', ')}. Please try again`; this._addMessage({ role, tool_call_id, content }); diff --git a/src/lib/AssistantStream.ts b/src/lib/AssistantStream.ts index 0f88530b3..32cde3e7a 100644 --- a/src/lib/AssistantStream.ts +++ b/src/lib/AssistantStream.ts @@ -191,12 +191,12 @@ export class AssistantStream threadId: string, runId: string, runs: Runs, - body: RunSubmitToolOutputsParamsStream, + params: RunSubmitToolOutputsParamsStream, options: RequestOptions | undefined, ) { const runner = new AssistantStream(); runner._run(() => - runner._runToolAssistantStream(threadId, runId, runs, body, { + runner._runToolAssistantStream(threadId, runId, runs, params, { ...options, headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'stream' }, }), @@ -236,13 +236,13 @@ export class AssistantStream } static createThreadAssistantStream( - body: ThreadCreateAndRunParamsBaseStream, + params: ThreadCreateAndRunParamsBaseStream, thread: Threads, options?: RequestOptions, ) { const runner = new AssistantStream(); runner._run(() => - runner._threadAssistantStream(body, thread, { + runner._threadAssistantStream(params, thread, { ...options, headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'stream' }, }), @@ -723,11 +723,11 @@ export class AssistantStream } protected async _threadAssistantStream( - body: ThreadCreateAndRunParamsBase, + params: ThreadCreateAndRunParamsBase, thread: Threads, options?: Core.RequestOptions, ): Promise { - return await this._createThreadAssistantStream(thread, body, options); + return await this._createThreadAssistantStream(thread, params, options); } protected async _runAssistantStream( diff --git a/src/lib/ChatCompletionRunner.ts b/src/lib/ChatCompletionRunner.ts index c756919b0..8139c577b 100644 --- a/src/lib/ChatCompletionRunner.ts +++ b/src/lib/ChatCompletionRunner.ts @@ -1,5 +1,4 @@ import { - type Completions, type ChatCompletionMessageParam, type ChatCompletionCreateParamsNonStreaming, } from 'openai/resources/chat/completions'; @@ -10,6 +9,8 @@ import { RunnerOptions, } from './AbstractChatCompletionRunner'; import { isAssistantMessage } from './chatCompletionUtils'; +import OpenAI from 'openai/index'; +import { AutoParseableTool } from 'openai/lib/parser'; export interface ChatCompletionRunnerEvents extends AbstractChatCompletionRunnerEvents { content: (content: string) => void; @@ -26,40 +27,43 @@ export type ChatCompletionToolRunnerParams & { - tools: RunnableTools; + tools: RunnableTools | AutoParseableTool[]; }; -export class ChatCompletionRunner extends AbstractChatCompletionRunner { +export class ChatCompletionRunner extends AbstractChatCompletionRunner< + ChatCompletionRunnerEvents, + ParsedT +> { /** @deprecated - please use `runTools` instead. */ static runFunctions( - completions: Completions, + client: OpenAI, params: ChatCompletionFunctionRunnerParams, options?: RunnerOptions, - ): ChatCompletionRunner { + ): ChatCompletionRunner { const runner = new ChatCompletionRunner(); const opts = { ...options, headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'runFunctions' }, }; - runner._run(() => runner._runFunctions(completions, params, opts)); + runner._run(() => runner._runFunctions(client, params, opts)); return runner; } - static runTools( - completions: Completions, + static runTools( + client: OpenAI, params: ChatCompletionToolRunnerParams, options?: RunnerOptions, - ): ChatCompletionRunner { - const runner = new ChatCompletionRunner(); + ): ChatCompletionRunner { + const runner = new ChatCompletionRunner(); const opts = { ...options, headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'runTools' }, }; - runner._run(() => runner._runTools(completions, params, opts)); + runner._run(() => runner._runTools(client, params, opts)); return runner; } - override _addMessage(this: ChatCompletionRunner, message: ChatCompletionMessageParam) { + override _addMessage(this: ChatCompletionRunner, message: ChatCompletionMessageParam) { super._addMessage(message); if (isAssistantMessage(message) && message.content) { this._emit('content', message.content as string); diff --git a/src/lib/ChatCompletionStream.ts b/src/lib/ChatCompletionStream.ts index 5eee904a2..e3661c8c1 100644 --- a/src/lib/ChatCompletionStream.ts +++ b/src/lib/ChatCompletionStream.ts @@ -1,10 +1,16 @@ import * as Core from 'openai/core'; -import { OpenAIError, APIUserAbortError } from 'openai/error'; import { - Completions, + OpenAIError, + APIUserAbortError, + LengthFinishReasonError, + ContentFilterFinishReasonError, +} from 'openai/error'; +import { + ChatCompletionTokenLogprob, type ChatCompletion, type ChatCompletionChunk, type ChatCompletionCreateParams, + type ChatCompletionCreateParamsStreaming, type ChatCompletionCreateParamsBase, } from 'openai/resources/chat/completions'; import { @@ -13,22 +19,125 @@ import { } from './AbstractChatCompletionRunner'; import { type ReadableStream } from 'openai/_shims/index'; import { Stream } from 'openai/streaming'; +import OpenAI from 'openai/index'; +import { ParsedChatCompletion } from 'openai/resources/beta/chat/completions'; +import { + AutoParseableResponseFormat, + hasAutoParseableInput, + isAutoParsableResponseFormat, + isAutoParsableTool, + maybeParseChatCompletion, + shouldParseToolCall, +} from 'openai/lib/parser'; +import { partialParse } from '../_vendor/partial-json-parser/parser'; + +export interface ContentDeltaEvent { + delta: string; + snapshot: string; + parsed: unknown | null; +} + +export interface ContentDoneEvent { + content: string; + parsed: ParsedT | null; +} + +export interface RefusalDeltaEvent { + delta: string; + snapshot: string; +} + +export interface RefusalDoneEvent { + refusal: string; +} + +export interface FunctionToolCallArgumentsDeltaEvent { + name: string; + + index: number; + + arguments: string; + + parsed_arguments: unknown; + + arguments_delta: string; +} + +export interface FunctionToolCallArgumentsDoneEvent { + name: string; + + index: number; + + arguments: string; -export interface ChatCompletionStreamEvents extends AbstractChatCompletionRunnerEvents { + parsed_arguments: unknown; +} + +export interface LogProbsContentDeltaEvent { + content: Array; + snapshot: Array; +} + +export interface LogProbsContentDoneEvent { + content: Array; +} + +export interface LogProbsRefusalDeltaEvent { + refusal: Array; + snapshot: Array; +} + +export interface LogProbsRefusalDoneEvent { + refusal: Array; +} + +export interface ChatCompletionStreamEvents extends AbstractChatCompletionRunnerEvents { content: (contentDelta: string, contentSnapshot: string) => void; chunk: (chunk: ChatCompletionChunk, snapshot: ChatCompletionSnapshot) => void; + + 'content.delta': (props: ContentDeltaEvent) => void; + 'content.done': (props: ContentDoneEvent) => void; + + 'refusal.delta': (props: RefusalDeltaEvent) => void; + 'refusal.done': (props: RefusalDoneEvent) => void; + + 'tool_calls.function.arguments.delta': (props: FunctionToolCallArgumentsDeltaEvent) => void; + 'tool_calls.function.arguments.done': (props: FunctionToolCallArgumentsDoneEvent) => void; + + 'logprobs.content.delta': (props: LogProbsContentDeltaEvent) => void; + 'logprobs.content.done': (props: LogProbsContentDoneEvent) => void; + + 'logprobs.refusal.delta': (props: LogProbsRefusalDeltaEvent) => void; + 'logprobs.refusal.done': (props: LogProbsRefusalDoneEvent) => void; } export type ChatCompletionStreamParams = Omit & { stream?: true; }; -export class ChatCompletionStream - extends AbstractChatCompletionRunner +interface ChoiceEventState { + content_done: boolean; + refusal_done: boolean; + logprobs_content_done: boolean; + logprobs_refusal_done: boolean; + current_tool_call_index: number | null; + done_tool_calls: Set; +} + +export class ChatCompletionStream + extends AbstractChatCompletionRunner, ParsedT> implements AsyncIterable { + #params: ChatCompletionCreateParams | null; + #choiceEventStates: ChoiceEventState[]; #currentChatCompletionSnapshot: ChatCompletionSnapshot | undefined; + constructor(params: ChatCompletionCreateParams | null) { + super(); + this.#params = params; + this.#choiceEventStates = []; + } + get currentChatCompletionSnapshot(): ChatCompletionSnapshot | undefined { return this.#currentChatCompletionSnapshot; } @@ -40,21 +149,21 @@ export class ChatCompletionStream * Note that messages sent to the model do not appear in `.on('message')` * in this context. */ - static fromReadableStream(stream: ReadableStream): ChatCompletionStream { - const runner = new ChatCompletionStream(); + static fromReadableStream(stream: ReadableStream): ChatCompletionStream { + const runner = new ChatCompletionStream(null); runner._run(() => runner._fromReadableStream(stream)); return runner; } - static createChatCompletion( - completions: Completions, + static createChatCompletion( + client: OpenAI, params: ChatCompletionStreamParams, options?: Core.RequestOptions, - ): ChatCompletionStream { - const runner = new ChatCompletionStream(); + ): ChatCompletionStream { + const runner = new ChatCompletionStream(params as ChatCompletionCreateParamsStreaming); runner._run(() => runner._runChatCompletion( - completions, + client, { ...params, stream: true }, { ...options, headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'stream' } }, ), @@ -66,17 +175,184 @@ export class ChatCompletionStream if (this.ended) return; this.#currentChatCompletionSnapshot = undefined; } - #addChunk(this: ChatCompletionStream, chunk: ChatCompletionChunk) { + + #getChoiceEventState(choice: ChatCompletionSnapshot.Choice): ChoiceEventState { + let state = this.#choiceEventStates[choice.index]; + if (state) { + return state; + } + + state = { + content_done: false, + refusal_done: false, + logprobs_content_done: false, + logprobs_refusal_done: false, + done_tool_calls: new Set(), + current_tool_call_index: null, + }; + this.#choiceEventStates[choice.index] = state; + return state; + } + + #addChunk(this: ChatCompletionStream, chunk: ChatCompletionChunk) { if (this.ended) return; + const completion = this.#accumulateChatCompletion(chunk); this._emit('chunk', chunk, completion); - const delta = chunk.choices[0]?.delta?.content; - const snapshot = completion.choices[0]?.message; - if (delta != null && snapshot?.role === 'assistant' && snapshot?.content) { - this._emit('content', delta, snapshot.content); + + for (const choice of chunk.choices) { + const choiceSnapshot = completion.choices[choice.index]!; + + if ( + choice.delta.content != null && + choiceSnapshot.message?.role === 'assistant' && + choiceSnapshot.message?.content + ) { + this._emit('content', choice.delta.content, choiceSnapshot.message.content); + this._emit('content.delta', { + delta: choice.delta.content, + snapshot: choiceSnapshot.message.content, + parsed: choiceSnapshot.message.parsed, + }); + } + + if ( + choice.delta.refusal != null && + choiceSnapshot.message?.role === 'assistant' && + choiceSnapshot.message?.refusal + ) { + this._emit('refusal.delta', { + delta: choice.delta.refusal, + snapshot: choiceSnapshot.message.refusal, + }); + } + + if (choice.logprobs?.content != null && choiceSnapshot.message?.role === 'assistant') { + this._emit('logprobs.content.delta', { + content: choice.logprobs?.content, + snapshot: choiceSnapshot.logprobs?.content ?? [], + }); + } + + if (choice.logprobs?.refusal != null && choiceSnapshot.message?.role === 'assistant') { + this._emit('logprobs.refusal.delta', { + refusal: choice.logprobs?.refusal, + snapshot: choiceSnapshot.logprobs?.refusal ?? [], + }); + } + + const state = this.#getChoiceEventState(choiceSnapshot); + + if (choiceSnapshot.finish_reason) { + this.#emitContentDoneEvents(choiceSnapshot); + + if (state.current_tool_call_index != null) { + this.#emitToolCallDoneEvent(choiceSnapshot, state.current_tool_call_index); + } + } + + for (const toolCall of choice.delta.tool_calls ?? []) { + if (state.current_tool_call_index !== toolCall.index) { + this.#emitContentDoneEvents(choiceSnapshot); + + // new tool call started, the previous one is done + if (state.current_tool_call_index != null) { + this.#emitToolCallDoneEvent(choiceSnapshot, state.current_tool_call_index); + } + } + + state.current_tool_call_index = toolCall.index; + } + + for (const toolCallDelta of choice.delta.tool_calls ?? []) { + const toolCallSnapshot = choiceSnapshot.message.tool_calls?.[toolCallDelta.index]; + if (!toolCallSnapshot?.type) { + continue; + } + + if (toolCallSnapshot?.type === 'function') { + this._emit('tool_calls.function.arguments.delta', { + name: toolCallSnapshot.function?.name, + index: toolCallDelta.index, + arguments: toolCallSnapshot.function.arguments, + parsed_arguments: toolCallSnapshot.function.parsed_arguments, + arguments_delta: toolCallDelta.function?.arguments ?? '', + }); + } else { + assertNever(toolCallSnapshot?.type); + } + } } } - #endRequest(): ChatCompletion { + + #emitToolCallDoneEvent(choiceSnapshot: ChatCompletionSnapshot.Choice, toolCallIndex: number) { + const state = this.#getChoiceEventState(choiceSnapshot); + if (state.done_tool_calls.has(toolCallIndex)) { + // we've already fired the done event + return; + } + + const toolCallSnapshot = choiceSnapshot.message.tool_calls?.[toolCallIndex]; + if (!toolCallSnapshot) { + throw new Error('no tool call snapshot'); + } + if (!toolCallSnapshot.type) { + throw new Error('tool call snapshot missing `type`'); + } + + if (toolCallSnapshot.type === 'function') { + const inputTool = this.#params?.tools?.find( + (tool) => tool.type === 'function' && tool.function.name === toolCallSnapshot.function.name, + ); + + this._emit('tool_calls.function.arguments.done', { + name: toolCallSnapshot.function.name, + index: toolCallIndex, + arguments: toolCallSnapshot.function.arguments, + parsed_arguments: + isAutoParsableTool(inputTool) ? inputTool.$parseRaw(toolCallSnapshot.function.arguments) + : inputTool?.function.strict ? JSON.parse(toolCallSnapshot.function.arguments) + : null, + }); + } else { + assertNever(toolCallSnapshot.type); + } + } + + #emitContentDoneEvents(choiceSnapshot: ChatCompletionSnapshot.Choice) { + const state = this.#getChoiceEventState(choiceSnapshot); + + if (choiceSnapshot.message.content && !state.content_done) { + state.content_done = true; + + const responseFormat = this.#getAutoParseableResponseFormat(); + + this._emit('content.done', { + content: choiceSnapshot.message.content, + parsed: responseFormat ? responseFormat.$parseRaw(choiceSnapshot.message.content) : (null as any), + }); + } + + if (choiceSnapshot.message.refusal && !state.refusal_done) { + state.refusal_done = true; + + this._emit('refusal.done', { refusal: choiceSnapshot.message.refusal }); + } + + if (choiceSnapshot.logprobs?.content && !state.logprobs_content_done) { + state.logprobs_content_done = true; + + this._emit('logprobs.content.done', { content: choiceSnapshot.logprobs.content }); + } + + if (choiceSnapshot.logprobs?.refusal && !state.logprobs_refusal_done) { + state.logprobs_refusal_done = true; + + this._emit('logprobs.refusal.done', { refusal: choiceSnapshot.logprobs.refusal }); + } + } + + #endRequest(): ParsedChatCompletion { if (this.ended) { throw new OpenAIError(`stream has ended, this shouldn't happen`); } @@ -85,21 +361,24 @@ export class ChatCompletionStream throw new OpenAIError(`request ended without sending any chunks`); } this.#currentChatCompletionSnapshot = undefined; - return finalizeChatCompletion(snapshot); + this.#choiceEventStates = []; + return finalizeChatCompletion(snapshot, this.#params); } protected override async _createChatCompletion( - completions: Completions, + client: OpenAI, params: ChatCompletionCreateParams, options?: Core.RequestOptions, - ): Promise { + ): Promise> { + super._createChatCompletion; const signal = options?.signal; if (signal) { if (signal.aborted) this.controller.abort(); signal.addEventListener('abort', () => this.controller.abort()); } this.#beginRequest(); - const stream = await completions.create( + + const stream = await client.chat.completions.create( { ...params, stream: true }, { ...options, signal: this.controller.signal }, ); @@ -141,6 +420,15 @@ export class ChatCompletionStream return this._addChatCompletion(this.#endRequest()); } + #getAutoParseableResponseFormat(): AutoParseableResponseFormat | null { + const responseFormat = this.#params?.response_format; + if (isAutoParsableResponseFormat(responseFormat)) { + return responseFormat; + } + + return null; + } + #accumulateChatCompletion(chunk: ChatCompletionChunk): ChatCompletionSnapshot { let snapshot = this.#currentChatCompletionSnapshot; const { choices, ...rest } = chunk; @@ -163,23 +451,48 @@ export class ChatCompletionStream if (!choice.logprobs) { choice.logprobs = Object.assign({}, logprobs); } else { - const { content, ...rest } = logprobs; + const { content, refusal, ...rest } = logprobs; + assertIsEmpty(rest); Object.assign(choice.logprobs, rest); + if (content) { choice.logprobs.content ??= []; choice.logprobs.content.push(...content); } + + if (refusal) { + choice.logprobs.refusal ??= []; + choice.logprobs.refusal.push(...refusal); + } + } + } + + if (finish_reason) { + choice.finish_reason = finish_reason; + + if (this.#params && hasAutoParseableInput(this.#params)) { + if (finish_reason === 'length') { + throw new LengthFinishReasonError(); + } + + if (finish_reason === 'content_filter') { + throw new ContentFilterFinishReasonError(); + } } } - if (finish_reason) choice.finish_reason = finish_reason; Object.assign(choice, other); if (!delta) continue; // Shouldn't happen; just in case. - const { content, function_call, role, tool_calls, ...rest } = delta; + + const { content, refusal, function_call, role, tool_calls, ...rest } = delta; + assertIsEmpty(rest); Object.assign(choice.message, rest); - if (content) choice.message.content = (choice.message.content || '') + content; + if (refusal) { + choice.message.refusal = (choice.message.refusal || '') + refusal; + } + if (role) choice.message.role = role; if (function_call) { if (!choice.message.function_call) { @@ -192,23 +505,39 @@ export class ChatCompletionStream } } } + if (content) { + choice.message.content = (choice.message.content || '') + content; + + if (!choice.message.refusal && this.#getAutoParseableResponseFormat()) { + choice.message.parsed = partialParse(choice.message.content); + } + } + if (tool_calls) { if (!choice.message.tool_calls) choice.message.tool_calls = []; + for (const { index, id, type, function: fn, ...rest } of tool_calls) { - const tool_call = (choice.message.tool_calls[index] ??= {}); + const tool_call = (choice.message.tool_calls[index] ??= + {} as ChatCompletionSnapshot.Choice.Message.ToolCall); Object.assign(tool_call, rest); if (id) tool_call.id = id; if (type) tool_call.type = type; - if (fn) tool_call.function ??= { arguments: '' }; + if (fn) tool_call.function ??= { name: fn.name ?? '', arguments: '' }; if (fn?.name) tool_call.function!.name = fn.name; - if (fn?.arguments) tool_call.function!.arguments += fn.arguments; + if (fn?.arguments) { + tool_call.function!.arguments += fn.arguments; + + if (shouldParseToolCall(this.#params, tool_call)) { + tool_call.function!.parsed_arguments = partialParse(tool_call.function!.arguments); + } + } } } } return snapshot; } - [Symbol.asyncIterator](this: ChatCompletionStream): AsyncIterator { + [Symbol.asyncIterator](this: ChatCompletionStream): AsyncIterator { const pushQueue: ChatCompletionChunk[] = []; const readQueue: { resolve: (chunk: ChatCompletionChunk | undefined) => void; @@ -275,29 +604,50 @@ export class ChatCompletionStream } } -function finalizeChatCompletion(snapshot: ChatCompletionSnapshot): ChatCompletion { +function finalizeChatCompletion( + snapshot: ChatCompletionSnapshot, + params: ChatCompletionCreateParams | null, +): ParsedChatCompletion { const { id, choices, created, model, system_fingerprint, ...rest } = snapshot; - return { + const completion: ChatCompletion = { ...rest, id, choices: choices.map( ({ message, finish_reason, index, logprobs, ...choiceRest }): ChatCompletion.Choice => { - if (!finish_reason) throw new OpenAIError(`missing finish_reason for choice ${index}`); + if (!finish_reason) { + throw new OpenAIError(`missing finish_reason for choice ${index}`); + } + const { content = null, function_call, tool_calls, ...messageRest } = message; const role = message.role as 'assistant'; // this is what we expect; in theory it could be different which would make our types a slight lie but would be fine. - if (!role) throw new OpenAIError(`missing role for choice ${index}`); + if (!role) { + throw new OpenAIError(`missing role for choice ${index}`); + } + if (function_call) { const { arguments: args, name } = function_call; - if (args == null) throw new OpenAIError(`missing function_call.arguments for choice ${index}`); - if (!name) throw new OpenAIError(`missing function_call.name for choice ${index}`); + if (args == null) { + throw new OpenAIError(`missing function_call.arguments for choice ${index}`); + } + + if (!name) { + throw new OpenAIError(`missing function_call.name for choice ${index}`); + } + return { ...choiceRest, - message: { content, function_call: { arguments: args, name }, role }, + message: { + content, + function_call: { arguments: args, name }, + role, + refusal: message.refusal ?? null, + }, finish_reason, index, logprobs, }; } + if (tool_calls) { return { ...choiceRest, @@ -308,21 +658,26 @@ function finalizeChatCompletion(snapshot: ChatCompletionSnapshot): ChatCompletio ...messageRest, role, content, + refusal: message.refusal ?? null, tool_calls: tool_calls.map((tool_call, i) => { const { function: fn, type, id, ...toolRest } = tool_call; const { arguments: args, name, ...fnRest } = fn || {}; - if (id == null) + if (id == null) { throw new OpenAIError(`missing choices[${index}].tool_calls[${i}].id\n${str(snapshot)}`); - if (type == null) + } + if (type == null) { throw new OpenAIError(`missing choices[${index}].tool_calls[${i}].type\n${str(snapshot)}`); - if (name == null) + } + if (name == null) { throw new OpenAIError( `missing choices[${index}].tool_calls[${i}].function.name\n${str(snapshot)}`, ); - if (args == null) + } + if (args == null) { throw new OpenAIError( `missing choices[${index}].tool_calls[${i}].function.arguments\n${str(snapshot)}`, ); + } return { ...toolRest, id, type, function: { ...fnRest, name, arguments: args } }; }), @@ -331,7 +686,7 @@ function finalizeChatCompletion(snapshot: ChatCompletionSnapshot): ChatCompletio } return { ...choiceRest, - message: { ...messageRest, content, role }, + message: { ...messageRest, content, role, refusal: message.refusal ?? null }, finish_reason, index, logprobs, @@ -343,6 +698,8 @@ function finalizeChatCompletion(snapshot: ChatCompletionSnapshot): ChatCompletio object: 'chat.completion', ...(system_fingerprint ? { system_fingerprint } : {}), }; + + return maybeParseChatCompletion(completion, params); } function str(x: unknown) { @@ -425,6 +782,10 @@ export namespace ChatCompletionSnapshot { */ content?: string | null; + refusal?: string | null; + + parsed?: unknown | null; + /** * The name and arguments of a function that should be called, as generated by the * model. @@ -444,14 +805,14 @@ export namespace ChatCompletionSnapshot { /** * The ID of the tool call. */ - id?: string; + id: string; - function?: ToolCall.Function; + function: ToolCall.Function; /** * The type of the tool. */ - type?: 'function'; + type: 'function'; } export namespace ToolCall { @@ -462,12 +823,14 @@ export namespace ChatCompletionSnapshot { * hallucinate parameters not defined by your function schema. Validate the * arguments in your code before calling your function. */ - arguments?: string; + arguments: string; + + parsed_arguments?: unknown; /** * The name of the function to call. */ - name?: string; + name: string; } } @@ -492,3 +855,16 @@ export namespace ChatCompletionSnapshot { } } } + +type AssertIsEmpty = keyof T extends never ? T : never; + +/** + * Ensures the given argument is an empty object, useful for + * asserting that all known properties on an object have been + * destructured. + */ +function assertIsEmpty(obj: AssertIsEmpty): asserts obj is AssertIsEmpty { + return; +} + +function assertNever(_x: never) {} diff --git a/src/lib/ChatCompletionStreamingRunner.ts b/src/lib/ChatCompletionStreamingRunner.ts index cf58c5270..ea6c74116 100644 --- a/src/lib/ChatCompletionStreamingRunner.ts +++ b/src/lib/ChatCompletionStreamingRunner.ts @@ -1,5 +1,4 @@ import { - Completions, type ChatCompletionChunk, type ChatCompletionCreateParamsStreaming, } from 'openai/resources/chat/completions'; @@ -7,6 +6,8 @@ import { RunnerOptions, type AbstractChatCompletionRunnerEvents } from './Abstra import { type ReadableStream } from 'openai/_shims/index'; import { RunnableTools, type BaseFunctionsArgs, type RunnableFunctions } from './RunnableFunction'; import { ChatCompletionSnapshot, ChatCompletionStream } from './ChatCompletionStream'; +import OpenAI from 'openai/index'; +import { AutoParseableTool } from 'openai/lib/parser'; export interface ChatCompletionStreamEvents extends AbstractChatCompletionRunnerEvents { content: (contentDelta: string, contentSnapshot: string) => void; @@ -24,45 +25,48 @@ export type ChatCompletionStreamingToolRunnerParams & { - tools: RunnableTools; + tools: RunnableTools | AutoParseableTool[]; }; -export class ChatCompletionStreamingRunner - extends ChatCompletionStream +export class ChatCompletionStreamingRunner + extends ChatCompletionStream implements AsyncIterable { - static override fromReadableStream(stream: ReadableStream): ChatCompletionStreamingRunner { - const runner = new ChatCompletionStreamingRunner(); + static override fromReadableStream(stream: ReadableStream): ChatCompletionStreamingRunner { + const runner = new ChatCompletionStreamingRunner(null); runner._run(() => runner._fromReadableStream(stream)); return runner; } /** @deprecated - please use `runTools` instead. */ static runFunctions( - completions: Completions, + client: OpenAI, params: ChatCompletionStreamingFunctionRunnerParams, options?: RunnerOptions, - ): ChatCompletionStreamingRunner { - const runner = new ChatCompletionStreamingRunner(); + ): ChatCompletionStreamingRunner { + const runner = new ChatCompletionStreamingRunner(null); const opts = { ...options, headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'runFunctions' }, }; - runner._run(() => runner._runFunctions(completions, params, opts)); + runner._run(() => runner._runFunctions(client, params, opts)); return runner; } - static runTools( - completions: Completions, + static runTools( + client: OpenAI, params: ChatCompletionStreamingToolRunnerParams, options?: RunnerOptions, - ): ChatCompletionStreamingRunner { - const runner = new ChatCompletionStreamingRunner(); + ): ChatCompletionStreamingRunner { + const runner = new ChatCompletionStreamingRunner( + // @ts-expect-error TODO these types are incompatible + params, + ); const opts = { ...options, headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'runTools' }, }; - runner._run(() => runner._runTools(completions, params, opts)); + runner._run(() => runner._runTools(client, params, opts)); return runner; } } diff --git a/src/lib/RunnableFunction.ts b/src/lib/RunnableFunction.ts index 96ca06c86..a645f5ebe 100644 --- a/src/lib/RunnableFunction.ts +++ b/src/lib/RunnableFunction.ts @@ -12,7 +12,7 @@ export type RunnableFunctionWithParse = { */ function: ( args: Args, - runner: ChatCompletionRunner | ChatCompletionStreamingRunner, + runner: ChatCompletionRunner | ChatCompletionStreamingRunner, ) => PromiseOrValue; /** * @param input the raw args from the OpenAI function call. @@ -31,6 +31,7 @@ export type RunnableFunctionWithParse = { * The name of the function to be called. Will default to function.name if omitted. */ name?: string | undefined; + strict?: boolean | undefined; }; export type RunnableFunctionWithoutParse = { @@ -40,7 +41,7 @@ export type RunnableFunctionWithoutParse = { */ function: ( args: string, - runner: ChatCompletionRunner | ChatCompletionStreamingRunner, + runner: ChatCompletionRunner | ChatCompletionStreamingRunner, ) => PromiseOrValue; /** * The parameters the function accepts, describes as a JSON Schema object. @@ -54,6 +55,7 @@ export type RunnableFunctionWithoutParse = { * The name of the function to be called. Will default to function.name if omitted. */ name?: string | undefined; + strict?: boolean | undefined; }; export type RunnableFunction = diff --git a/src/lib/parser.ts b/src/lib/parser.ts new file mode 100644 index 000000000..8bf2a3a36 --- /dev/null +++ b/src/lib/parser.ts @@ -0,0 +1,235 @@ +import { + ChatCompletion, + ChatCompletionCreateParams, + ChatCompletionMessageToolCall, + ChatCompletionTool, +} from '../resources/chat/completions'; +import { + ChatCompletionStreamingToolRunnerParams, + ChatCompletionStreamParams, + ChatCompletionToolRunnerParams, + ParsedChatCompletion, + ParsedChoice, + ParsedFunctionToolCall, +} from '../resources/beta/chat/completions'; +import { ResponseFormatJSONSchema } from '../resources/shared'; +import { ContentFilterFinishReasonError, LengthFinishReasonError, OpenAIError } from 'openai/error'; + +type AnyChatCompletionCreateParams = + | ChatCompletionCreateParams + | ChatCompletionToolRunnerParams + | ChatCompletionStreamingToolRunnerParams + | ChatCompletionStreamParams; + +export type ExtractParsedContentFromParams = + Params['response_format'] extends AutoParseableResponseFormat ? P : null; + +export type AutoParseableResponseFormat = ResponseFormatJSONSchema & { + __output: ParsedT; // type-level only + + $brand: 'auto-parseable-response-format'; + $parseRaw(content: string): ParsedT; +}; + +export function makeParseableResponseFormat( + response_format: ResponseFormatJSONSchema, + parser: (content: string) => ParsedT, +): AutoParseableResponseFormat { + const obj = { ...response_format }; + + Object.defineProperties(obj, { + $brand: { + value: 'auto-parseable-response-format', + enumerable: false, + }, + $parseRaw: { + value: parser, + enumerable: false, + }, + }); + + return obj as AutoParseableResponseFormat; +} + +export function isAutoParsableResponseFormat( + response_format: any, +): response_format is AutoParseableResponseFormat { + return response_format?.['$brand'] === 'auto-parseable-response-format'; +} + +type ToolOptions = { + name: string; + arguments: any; + function?: ((args: any) => any) | undefined; +}; + +export type AutoParseableTool< + OptionsT extends ToolOptions, + HasFunction = OptionsT['function'] extends Function ? true : false, +> = ChatCompletionTool & { + __arguments: OptionsT['arguments']; // type-level only + __name: OptionsT['name']; // type-level only + __hasFunction: HasFunction; // type-level only + + $brand: 'auto-parseable-tool'; + $callback: ((args: OptionsT['arguments']) => any) | undefined; + $parseRaw(args: string): OptionsT['arguments']; +}; + +export function makeParseableTool( + tool: ChatCompletionTool, + { + parser, + callback, + }: { + parser: (content: string) => OptionsT['arguments']; + callback: ((args: any) => any) | undefined; + }, +): AutoParseableTool { + const obj = { ...tool }; + + Object.defineProperties(obj, { + $brand: { + value: 'auto-parseable-tool', + enumerable: false, + }, + $parseRaw: { + value: parser, + enumerable: false, + }, + $callback: { + value: callback, + enumerable: false, + }, + }); + + return obj as AutoParseableTool; +} + +export function isAutoParsableTool(tool: any): tool is AutoParseableTool { + return tool?.['$brand'] === 'auto-parseable-tool'; +} + +export function maybeParseChatCompletion< + Params extends ChatCompletionCreateParams | null, + ParsedT = Params extends null ? null : ExtractParsedContentFromParams>, +>(completion: ChatCompletion, params: Params): ParsedChatCompletion { + if (!params || !hasAutoParseableInput(params)) { + return { + ...completion, + choices: completion.choices.map((choice) => ({ + ...choice, + message: { ...choice.message, parsed: null, tool_calls: choice.message.tool_calls ?? [] }, + })), + }; + } + + return parseChatCompletion(completion, params); +} + +export function parseChatCompletion< + Params extends ChatCompletionCreateParams, + ParsedT = ExtractParsedContentFromParams, +>(completion: ChatCompletion, params: Params): ParsedChatCompletion { + const choices: Array> = completion.choices.map((choice): ParsedChoice => { + if (choice.finish_reason === 'length') { + throw new LengthFinishReasonError(); + } + + if (choice.finish_reason === 'content_filter') { + throw new ContentFilterFinishReasonError(); + } + + return { + ...choice, + message: { + ...choice.message, + tool_calls: choice.message.tool_calls?.map((toolCall) => parseToolCall(params, toolCall)) ?? [], + parsed: + choice.message.content && !choice.message.refusal ? + parseResponseFormat(params, choice.message.content) + : null, + }, + }; + }); + + return { ...completion, choices }; +} + +function parseResponseFormat< + Params extends ChatCompletionCreateParams, + ParsedT = ExtractParsedContentFromParams, +>(params: Params, content: string): ParsedT | null { + if (params.response_format?.type !== 'json_schema') { + return null; + } + + if (params.response_format?.type === 'json_schema') { + if ('$parseRaw' in params.response_format) { + const response_format = params.response_format as AutoParseableResponseFormat; + + return response_format.$parseRaw(content); + } + + return JSON.parse(content); + } + + return null; +} + +function parseToolCall( + params: Params, + toolCall: ChatCompletionMessageToolCall, +): ParsedFunctionToolCall { + const inputTool = params.tools?.find((inputTool) => inputTool.function?.name === toolCall.function.name); + return { + ...toolCall, + function: { + ...toolCall.function, + parsed_arguments: + isAutoParsableTool(inputTool) ? inputTool.$parseRaw(toolCall.function.arguments) + : inputTool?.function.strict ? JSON.parse(toolCall.function.arguments) + : null, + }, + }; +} + +export function shouldParseToolCall( + params: ChatCompletionCreateParams | null | undefined, + toolCall: ChatCompletionMessageToolCall, +): boolean { + if (!params) { + return false; + } + + const inputTool = params.tools?.find((inputTool) => inputTool.function?.name === toolCall.function.name); + return isAutoParsableTool(inputTool) || inputTool?.function.strict || false; +} + +export function hasAutoParseableInput(params: AnyChatCompletionCreateParams): boolean { + if (isAutoParsableResponseFormat(params.response_format)) { + return true; + } + + return ( + params.tools?.some( + (t) => isAutoParsableTool(t) || (t.type === 'function' && t.function.strict === true), + ) ?? false + ); +} + +export function validateInputTools(tools: ChatCompletionTool[] | undefined) { + for (const tool of tools ?? []) { + if (tool.type !== 'function') { + throw new OpenAIError( + `Currently only \`function\` tool types support auto-parsing; Received \`${tool.type}\``, + ); + } + + if (tool.function.strict !== true) { + throw new OpenAIError( + `The \`${tool.function.name}\` tool is not marked with \`strict: true\`. Only strict function tools can be auto-parsed`, + ); + } + } +} diff --git a/src/resources/beta/assistants.ts b/src/resources/beta/assistants.ts index d66b03768..8d07e45b0 100644 --- a/src/resources/beta/assistants.ts +++ b/src/resources/beta/assistants.ts @@ -149,6 +149,11 @@ export interface Assistant { * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * + * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured + * Outputs which guarantees the model will match your supplied JSON schema. Learn + * more in the + * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). + * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. * @@ -648,8 +653,8 @@ export namespace FileSearchTool { export interface FileSearch { /** * The maximum number of results the file search tool should output. The default is - * 20 for gpt-4\* models and 5 for gpt-3.5-turbo. This number should be between 1 - * and 50 inclusive. + * 20 for `gpt-4*` models and 5 for `gpt-3.5-turbo`. This number should be between + * 1 and 50 inclusive. * * Note that the file search tool may output fewer than `max_num_results` results. * See the @@ -1086,6 +1091,11 @@ export interface AssistantCreateParams { * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * + * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured + * Outputs which guarantees the model will match your supplied JSON schema. Learn + * more in the + * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). + * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. * @@ -1278,6 +1288,11 @@ export interface AssistantUpdateParams { * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * + * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured + * Outputs which guarantees the model will match your supplied JSON schema. Learn + * more in the + * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). + * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. * diff --git a/src/resources/beta/beta.ts b/src/resources/beta/beta.ts index cefe66824..4993d02fb 100644 --- a/src/resources/beta/beta.ts +++ b/src/resources/beta/beta.ts @@ -39,7 +39,6 @@ export namespace Beta { export import AssistantUpdateParams = AssistantsAPI.AssistantUpdateParams; export import AssistantListParams = AssistantsAPI.AssistantListParams; export import Threads = ThreadsAPI.Threads; - export import AssistantResponseFormat = ThreadsAPI.AssistantResponseFormat; export import AssistantResponseFormatOption = ThreadsAPI.AssistantResponseFormatOption; export import AssistantToolChoice = ThreadsAPI.AssistantToolChoice; export import AssistantToolChoiceFunction = ThreadsAPI.AssistantToolChoiceFunction; diff --git a/src/resources/beta/chat/completions.ts b/src/resources/beta/chat/completions.ts index e002b6344..96c4118bf 100644 --- a/src/resources/beta/chat/completions.ts +++ b/src/resources/beta/chat/completions.ts @@ -26,35 +26,82 @@ export { ChatCompletionToolRunnerParams } from '../../../lib/ChatCompletionRunne import { ChatCompletionStreamingToolRunnerParams } from '../../../lib/ChatCompletionStreamingRunner'; export { ChatCompletionStreamingToolRunnerParams } from '../../../lib/ChatCompletionStreamingRunner'; import { ChatCompletionStream, type ChatCompletionStreamParams } from '../../../lib/ChatCompletionStream'; +import { + ChatCompletion, + ChatCompletionCreateParamsNonStreaming, + ChatCompletionMessage, + ChatCompletionMessageToolCall, +} from '../../chat/completions'; +import { ExtractParsedContentFromParams, parseChatCompletion, validateInputTools } from '../../../lib/parser'; export { ChatCompletionStream, type ChatCompletionStreamParams } from '../../../lib/ChatCompletionStream'; +export interface ParsedFunction extends ChatCompletionMessageToolCall.Function { + parsed_arguments?: unknown; +} + +export interface ParsedFunctionToolCall extends ChatCompletionMessageToolCall { + function: ParsedFunction; +} + +export interface ParsedChatCompletionMessage extends ChatCompletionMessage { + parsed: ParsedT | null; + tool_calls: Array; +} + +export interface ParsedChoice extends ChatCompletion.Choice { + message: ParsedChatCompletionMessage; +} + +export interface ParsedChatCompletion extends ChatCompletion { + choices: Array>; +} + +export type ChatCompletionParseParams = ChatCompletionCreateParamsNonStreaming; + export class Completions extends APIResource { + async parse>( + body: Params, + options?: Core.RequestOptions, + ): Promise> { + validateInputTools(body.tools); + + const completion = await this._client.chat.completions.create(body, { + ...options, + headers: { + ...options?.headers, + 'X-Stainless-Helper-Method': 'beta.chat.completions.parse', + }, + }); + + return parseChatCompletion(completion, body); + } + /** * @deprecated - use `runTools` instead. */ runFunctions( body: ChatCompletionFunctionRunnerParams, options?: Core.RequestOptions, - ): ChatCompletionRunner; + ): ChatCompletionRunner; runFunctions( body: ChatCompletionStreamingFunctionRunnerParams, options?: Core.RequestOptions, - ): ChatCompletionStreamingRunner; + ): ChatCompletionStreamingRunner; runFunctions( body: | ChatCompletionFunctionRunnerParams | ChatCompletionStreamingFunctionRunnerParams, options?: Core.RequestOptions, - ): ChatCompletionRunner | ChatCompletionStreamingRunner { + ): ChatCompletionRunner | ChatCompletionStreamingRunner { if (body.stream) { return ChatCompletionStreamingRunner.runFunctions( - this._client.chat.completions, + this._client, body as ChatCompletionStreamingFunctionRunnerParams, options, ); } return ChatCompletionRunner.runFunctions( - this._client.chat.completions, + this._client, body as ChatCompletionFunctionRunnerParams, options, ); @@ -69,38 +116,41 @@ export class Completions extends APIResource { * For more details and examples, see * [the docs](https://github.com/openai/openai-node#automated-function-calls) */ - runTools( - body: ChatCompletionToolRunnerParams, - options?: Core.RequestOptions, - ): ChatCompletionRunner; - runTools( - body: ChatCompletionStreamingToolRunnerParams, - options?: Core.RequestOptions, - ): ChatCompletionStreamingRunner; - runTools( - body: - | ChatCompletionToolRunnerParams - | ChatCompletionStreamingToolRunnerParams, + runTools< + Params extends ChatCompletionToolRunnerParams, + ParsedT = ExtractParsedContentFromParams, + >(body: Params, options?: Core.RequestOptions): ChatCompletionRunner; + + runTools< + Params extends ChatCompletionStreamingToolRunnerParams, + ParsedT = ExtractParsedContentFromParams, + >(body: Params, options?: Core.RequestOptions): ChatCompletionStreamingRunner; + + runTools< + Params extends ChatCompletionToolRunnerParams | ChatCompletionStreamingToolRunnerParams, + ParsedT = ExtractParsedContentFromParams, + >( + body: Params, options?: Core.RequestOptions, - ): ChatCompletionRunner | ChatCompletionStreamingRunner { + ): ChatCompletionRunner | ChatCompletionStreamingRunner { if (body.stream) { return ChatCompletionStreamingRunner.runTools( - this._client.chat.completions, - body as ChatCompletionStreamingToolRunnerParams, + this._client, + body as ChatCompletionStreamingToolRunnerParams, options, ); } - return ChatCompletionRunner.runTools( - this._client.chat.completions, - body as ChatCompletionToolRunnerParams, - options, - ); + + return ChatCompletionRunner.runTools(this._client, body as ChatCompletionToolRunnerParams, options); } /** * Creates a chat completion stream */ - stream(body: ChatCompletionStreamParams, options?: Core.RequestOptions): ChatCompletionStream { - return ChatCompletionStream.createChatCompletion(this._client.chat.completions, body, options); + stream>( + body: Params, + options?: Core.RequestOptions, + ): ChatCompletionStream { + return ChatCompletionStream.createChatCompletion(this._client, body, options); } } diff --git a/src/resources/beta/index.ts b/src/resources/beta/index.ts index 029cd084c..392be1f35 100644 --- a/src/resources/beta/index.ts +++ b/src/resources/beta/index.ts @@ -19,7 +19,6 @@ export { Assistants, } from './assistants'; export { - AssistantResponseFormat, AssistantResponseFormatOption, AssistantToolChoice, AssistantToolChoiceFunction, diff --git a/src/resources/beta/threads/index.ts b/src/resources/beta/threads/index.ts index b55f67edf..1964cffb8 100644 --- a/src/resources/beta/threads/index.ts +++ b/src/resources/beta/threads/index.ts @@ -22,6 +22,8 @@ export { MessageDeleted, MessageDelta, MessageDeltaEvent, + RefusalContentBlock, + RefusalDeltaBlock, Text, TextContentBlock, TextContentBlockParam, @@ -34,7 +36,6 @@ export { Messages, } from './messages'; export { - AssistantResponseFormat, AssistantResponseFormatOption, AssistantToolChoice, AssistantToolChoiceFunction, diff --git a/src/resources/beta/threads/messages.ts b/src/resources/beta/threads/messages.ts index db58f45b8..59c92675b 100644 --- a/src/resources/beta/threads/messages.ts +++ b/src/resources/beta/threads/messages.ts @@ -481,13 +481,21 @@ export namespace Message { * References an image [File](https://platform.openai.com/docs/api-reference/files) * in the content of a message. */ -export type MessageContent = ImageFileContentBlock | ImageURLContentBlock | TextContentBlock; +export type MessageContent = + | ImageFileContentBlock + | ImageURLContentBlock + | TextContentBlock + | RefusalContentBlock; /** * References an image [File](https://platform.openai.com/docs/api-reference/files) * in the content of a message. */ -export type MessageContentDelta = ImageFileDeltaBlock | TextDeltaBlock | ImageURLDeltaBlock; +export type MessageContentDelta = + | ImageFileDeltaBlock + | TextDeltaBlock + | RefusalDeltaBlock + | ImageURLDeltaBlock; /** * References an image [File](https://platform.openai.com/docs/api-reference/files) @@ -539,6 +547,35 @@ export interface MessageDeltaEvent { object: 'thread.message.delta'; } +/** + * The refusal content generated by the assistant. + */ +export interface RefusalContentBlock { + refusal: string; + + /** + * Always `refusal`. + */ + type: 'refusal'; +} + +/** + * The refusal content that is part of a message. + */ +export interface RefusalDeltaBlock { + /** + * The index of the refusal part in the message. + */ + index: number; + + /** + * Always `refusal`. + */ + type: 'refusal'; + + refusal?: string; +} + export interface Text { annotations: Array; @@ -707,6 +744,8 @@ export namespace Messages { export import MessageDeleted = MessagesAPI.MessageDeleted; export import MessageDelta = MessagesAPI.MessageDelta; export import MessageDeltaEvent = MessagesAPI.MessageDeltaEvent; + export import RefusalContentBlock = MessagesAPI.RefusalContentBlock; + export import RefusalDeltaBlock = MessagesAPI.RefusalDeltaBlock; export import Text = MessagesAPI.Text; export import TextContentBlock = MessagesAPI.TextContentBlock; export import TextContentBlockParam = MessagesAPI.TextContentBlockParam; diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index db9827616..9383e70cc 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -422,6 +422,11 @@ export interface Run { * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * + * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured + * Outputs which guarantees the model will match your supplied JSON schema. Learn + * more in the + * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). + * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. * @@ -684,6 +689,11 @@ export interface RunCreateParamsBase { * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * + * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured + * Outputs which guarantees the model will match your supplied JSON schema. Learn + * more in the + * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). + * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. * diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 0b931a911..0ba3b4dd2 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -6,6 +6,7 @@ import { AssistantStream, ThreadCreateAndRunParamsBaseStream } from '../../../li import { APIPromise } from '../../../core'; import * as Core from '../../../core'; import * as ThreadsAPI from './threads'; +import * as Shared from '../../shared'; import * as AssistantsAPI from '../assistants'; import * as ChatAPI from '../../chat/chat'; import * as MessagesAPI from './messages'; @@ -118,15 +119,16 @@ export class Threads extends APIResource { } /** - * An object describing the expected output of the model. If `json_object` only - * `function` type `tools` are allowed to be passed to the Run. If `text` the model - * can return text or any value needed. +<<<<<<< HEAD + * An object describing the expected output of the model. If `json_object` or + * `json_schema`, only `function` type `tools` are allowed to be passed to the Run. + * If `text` the model can return text or any value needed. */ export interface AssistantResponseFormat { /** - * Must be one of `text` or `json_object`. + * Must be one of `text`, `json_object` or `json_schema`. */ - type?: 'text' | 'json_object'; + type?: 'text' | 'json_object' | 'json_schema'; } /** @@ -135,6 +137,11 @@ export interface AssistantResponseFormat { * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * + * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured + * Outputs which guarantees the model will match your supplied JSON schema. Learn + * more in the + * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). + * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. * @@ -146,7 +153,11 @@ export interface AssistantResponseFormat { * indicates the generation exceeded `max_tokens` or the conversation exceeded the * max context length. */ -export type AssistantResponseFormatOption = 'none' | 'auto' | AssistantResponseFormat; +export type AssistantResponseFormatOption = + | 'auto' + | Shared.ResponseFormatText + | Shared.ResponseFormatJSONObject + | Shared.ResponseFormatJSONSchema; /** * Specifies a tool the model should use. Use to force the model to call a specific @@ -561,6 +572,11 @@ export interface ThreadCreateAndRunParamsBase { * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * + * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured + * Outputs which guarantees the model will match your supplied JSON schema. Learn + * more in the + * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). + * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. * @@ -1564,7 +1580,6 @@ export namespace ThreadCreateAndRunStreamParams { } export namespace Threads { - export import AssistantResponseFormat = ThreadsAPI.AssistantResponseFormat; export import AssistantResponseFormatOption = ThreadsAPI.AssistantResponseFormatOption; export import AssistantToolChoice = ThreadsAPI.AssistantToolChoice; export import AssistantToolChoiceFunction = ThreadsAPI.AssistantToolChoiceFunction; @@ -1618,6 +1633,8 @@ export namespace Threads { export import MessageDeleted = MessagesAPI.MessageDeleted; export import MessageDelta = MessagesAPI.MessageDelta; export import MessageDeltaEvent = MessagesAPI.MessageDeltaEvent; + export import RefusalContentBlock = MessagesAPI.RefusalContentBlock; + export import RefusalDeltaBlock = MessagesAPI.RefusalDeltaBlock; export import Text = MessagesAPI.Text; export import TextContentBlock = MessagesAPI.TextContentBlock; export import TextContentBlockParam = MessagesAPI.TextContentBlockParam; diff --git a/src/resources/beta/vector-stores/files.ts b/src/resources/beta/vector-stores/files.ts index 594c51970..c0f695223 100644 --- a/src/resources/beta/vector-stores/files.ts +++ b/src/resources/beta/vector-stores/files.ts @@ -232,7 +232,7 @@ export namespace VectorStoreFile { /** * One of `server_error` or `rate_limit_exceeded`. */ - code: 'internal_error' | 'file_not_found' | 'parsing_error' | 'unhandled_mime_type'; + code: 'server_error' | 'unsupported_file' | 'invalid_file'; /** * A human-readable description of the error. diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 74cda326e..031b4059b 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -10,6 +10,7 @@ export class Chat extends APIResource { export type ChatModel = | 'gpt-4o' + | 'gpt-4o-2024-08-06' | 'gpt-4o-2024-05-13' | 'gpt-4o-mini' | 'gpt-4o-mini-2024-07-18' @@ -41,6 +42,7 @@ export namespace Chat { export import ChatCompletionChunk = CompletionsAPI.ChatCompletionChunk; export import ChatCompletionContentPart = CompletionsAPI.ChatCompletionContentPart; export import ChatCompletionContentPartImage = CompletionsAPI.ChatCompletionContentPartImage; + export import ChatCompletionContentPartRefusal = CompletionsAPI.ChatCompletionContentPartRefusal; export import ChatCompletionContentPartText = CompletionsAPI.ChatCompletionContentPartText; export import ChatCompletionFunctionCallOption = CompletionsAPI.ChatCompletionFunctionCallOption; export import ChatCompletionFunctionMessageParam = CompletionsAPI.ChatCompletionFunctionMessageParam; diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 4027e995b..91d7da801 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -123,6 +123,11 @@ export namespace ChatCompletion { * A list of message content tokens with log probability information. */ content: Array | null; + + /** + * A list of message refusal tokens with log probability information. + */ + refusal: Array | null; } } } @@ -137,7 +142,7 @@ export interface ChatCompletionAssistantMessageParam { * The contents of the assistant message. Required unless `tool_calls` or * `function_call` is specified. */ - content?: string | null; + content?: string | Array | null; /** * @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of @@ -151,6 +156,11 @@ export interface ChatCompletionAssistantMessageParam { */ name?: string; + /** + * The refusal message by the assistant. + */ + refusal?: string | null; + /** * The tool calls generated by the model, such as function calls. */ @@ -277,6 +287,11 @@ export namespace ChatCompletionChunk { */ function_call?: Delta.FunctionCall; + /** + * The refusal message generated by the model. + */ + refusal?: string | null; + /** * The role of the author of this message. */ @@ -347,6 +362,11 @@ export namespace ChatCompletionChunk { * A list of message content tokens with log probability information. */ content: Array | null; + + /** + * A list of message refusal tokens with log probability information. + */ + refusal: Array | null; } } } @@ -377,6 +397,18 @@ export namespace ChatCompletionContentPartImage { } } +export interface ChatCompletionContentPartRefusal { + /** + * The refusal message generated by the model. + */ + refusal: string; + + /** + * The type of the content part. + */ + type: 'refusal'; +} + export interface ChatCompletionContentPartText { /** * The text content. @@ -429,6 +461,11 @@ export interface ChatCompletionMessage { */ content: string | null; + /** + * The refusal message generated by the model. + */ + refusal: string | null; + /** * The role of the author of this message. */ @@ -555,7 +592,7 @@ export interface ChatCompletionSystemMessageParam { /** * The contents of the system message. */ - content: string; + content: string | Array; /** * The role of the messages author, in this case `system`. @@ -648,7 +685,7 @@ export interface ChatCompletionToolMessageParam { /** * The contents of the tool message. */ - content: string; + content: string | Array; /** * The role of the messages author, in this case `tool`. @@ -787,6 +824,8 @@ export interface ChatCompletionCreateParamsBase { /** * An object specifying the format that the model must output. Compatible with + * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), + * [GPT-4o mini](https://platform.openai.com/docs/models/gpt-4o-mini), * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. * @@ -801,7 +840,10 @@ export interface ChatCompletionCreateParamsBase { * indicates the generation exceeded `max_tokens` or the conversation exceeded the * max context length. */ - response_format?: ChatCompletionCreateParams.ResponseFormat; + response_format?: + | Shared.ResponseFormatText + | Shared.ResponseFormatJSONObject + | Shared.ResponseFormatJSONSchema; /** * This feature is in Beta. If specified, our system will make a best effort to @@ -929,29 +971,6 @@ export namespace ChatCompletionCreateParams { parameters?: Shared.FunctionParameters; } - /** - * An object specifying the format that the model must output. Compatible with - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and - * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. - * - * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the - * message the model generates is valid JSON. - * - * **Important:** when using JSON mode, you **must** also instruct the model to - * produce JSON yourself via a system or user message. Without this, the model may - * generate an unending stream of whitespace until the generation reaches the token - * limit, resulting in a long-running and seemingly "stuck" request. Also note that - * the message content may be partially cut off if `finish_reason="length"`, which - * indicates the generation exceeded `max_tokens` or the conversation exceeded the - * max context length. - */ - export interface ResponseFormat { - /** - * Must be one of `text` or `json_object`. - */ - type?: 'text' | 'json_object'; - } - export type ChatCompletionCreateParamsNonStreaming = ChatCompletionsAPI.ChatCompletionCreateParamsNonStreaming; export type ChatCompletionCreateParamsStreaming = ChatCompletionsAPI.ChatCompletionCreateParamsStreaming; @@ -1002,6 +1021,7 @@ export namespace Completions { export import ChatCompletionChunk = ChatCompletionsAPI.ChatCompletionChunk; export import ChatCompletionContentPart = ChatCompletionsAPI.ChatCompletionContentPart; export import ChatCompletionContentPartImage = ChatCompletionsAPI.ChatCompletionContentPartImage; + export import ChatCompletionContentPartRefusal = ChatCompletionsAPI.ChatCompletionContentPartRefusal; export import ChatCompletionContentPartText = ChatCompletionsAPI.ChatCompletionContentPartText; export import ChatCompletionFunctionCallOption = ChatCompletionsAPI.ChatCompletionFunctionCallOption; export import ChatCompletionFunctionMessageParam = ChatCompletionsAPI.ChatCompletionFunctionMessageParam; diff --git a/src/resources/chat/index.ts b/src/resources/chat/index.ts index 2761385c2..748770948 100644 --- a/src/resources/chat/index.ts +++ b/src/resources/chat/index.ts @@ -6,6 +6,7 @@ export { ChatCompletionChunk, ChatCompletionContentPart, ChatCompletionContentPartImage, + ChatCompletionContentPartRefusal, ChatCompletionContentPartText, ChatCompletionFunctionCallOption, ChatCompletionFunctionMessageParam, diff --git a/src/resources/fine-tuning/jobs/jobs.ts b/src/resources/fine-tuning/jobs/jobs.ts index c4aae364a..aeb646279 100644 --- a/src/resources/fine-tuning/jobs/jobs.ts +++ b/src/resources/fine-tuning/jobs/jobs.ts @@ -299,9 +299,9 @@ export interface FineTuningJobWandbIntegrationObject { export interface JobCreateParams { /** * The name of the model to fine-tune. You can select one of the - * [supported models](https://platform.openai.com/docs/guides/fine-tuning/what-models-can-be-fine-tuned). + * [supported models](https://platform.openai.com/docs/guides/fine-tuning/which-models-can-be-fine-tuned). */ - model: (string & {}) | 'babbage-002' | 'davinci-002' | 'gpt-3.5-turbo'; + model: (string & {}) | 'babbage-002' | 'davinci-002' | 'gpt-3.5-turbo' | 'gpt-4o-mini'; /** * The ID of an uploaded file that contains training data. @@ -344,7 +344,7 @@ export interface JobCreateParams { * name. * * For example, a `suffix` of "custom-model-name" would produce a model name like - * `ft:gpt-3.5-turbo:openai:custom-model-name:7p4lURel`. + * `ft:gpt-4o-mini:openai:custom-model-name:7p4lURel`. */ suffix?: string | null; diff --git a/src/resources/shared.ts b/src/resources/shared.ts index 45969ea65..f44fda8a7 100644 --- a/src/resources/shared.ts +++ b/src/resources/shared.ts @@ -33,6 +33,15 @@ export interface FunctionDefinition { * Omitting `parameters` defines a function with an empty parameter list. */ parameters?: FunctionParameters; + + /** + * Whether to enable strict schema adherence when generating the function call. If + * set to true, the model will follow the exact schema defined in the `parameters` + * field. Only a subset of JSON Schema is supported when `strict` is `true`. Learn + * more about Structured Outputs in the + * [function calling guide](docs/guides/function-calling). + */ + strict?: boolean | null; } /** @@ -45,3 +54,56 @@ export interface FunctionDefinition { * Omitting `parameters` defines a function with an empty parameter list. */ export type FunctionParameters = Record; + +export interface ResponseFormatJSONObject { + /** + * The type of response format being defined: `json_object` + */ + type: 'json_object'; +} + +export interface ResponseFormatJSONSchema { + json_schema: ResponseFormatJSONSchema.JSONSchema; + + /** + * The type of response format being defined: `json_schema` + */ + type: 'json_schema'; +} + +export namespace ResponseFormatJSONSchema { + export interface JSONSchema { + /** + * The name of the response format. Must be a-z, A-Z, 0-9, or contain underscores + * and dashes, with a maximum length of 64. + */ + name: string; + + /** + * A description of what the response format is for, used by the model to determine + * how to respond in the format. + */ + description?: string; + + /** + * The schema for the response format, described as a JSON Schema object. + */ + schema?: Record; + + /** + * Whether to enable strict schema adherence when generating the output. If set to + * true, the model will always follow the exact schema defined in the `schema` + * field. Only a subset of JSON Schema is supported when `strict` is `true`. To + * learn more, read the + * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). + */ + strict?: boolean | null; + } +} + +export interface ResponseFormatText { + /** + * The type of response format being defined: `text` + */ + type: 'text'; +} diff --git a/tests/api-resources/beta/assistants.test.ts b/tests/api-resources/beta/assistants.test.ts index 657cd76a6..13fec377d 100644 --- a/tests/api-resources/beta/assistants.test.ts +++ b/tests/api-resources/beta/assistants.test.ts @@ -10,7 +10,7 @@ const client = new OpenAI({ describe('resource assistants', () => { test('create: only required params', async () => { - const responsePromise = client.beta.assistants.create({ model: 'gpt-4-turbo' }); + const responsePromise = client.beta.assistants.create({ model: 'gpt-4o' }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -22,12 +22,12 @@ describe('resource assistants', () => { test('create: required and optional params', async () => { const response = await client.beta.assistants.create({ - model: 'gpt-4-turbo', + model: 'gpt-4o', description: 'description', instructions: 'instructions', metadata: {}, name: 'name', - response_format: 'none', + response_format: 'auto', temperature: 1, tool_resources: { code_interpreter: { file_ids: ['string', 'string', 'string'] }, diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts index 856eb8662..f6a7dead6 100644 --- a/tests/api-resources/beta/threads/runs/runs.test.ts +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -123,9 +123,9 @@ describe('resource runs', () => { max_completion_tokens: 256, max_prompt_tokens: 256, metadata: {}, - model: 'gpt-4-turbo', + model: 'gpt-4o', parallel_tool_calls: true, - response_format: 'none', + response_format: 'auto', stream: false, temperature: 1, tool_choice: 'none', diff --git a/tests/api-resources/beta/threads/threads.test.ts b/tests/api-resources/beta/threads/threads.test.ts index 2a5ebfd82..abf631adb 100644 --- a/tests/api-resources/beta/threads/threads.test.ts +++ b/tests/api-resources/beta/threads/threads.test.ts @@ -212,9 +212,9 @@ describe('resource threads', () => { max_completion_tokens: 256, max_prompt_tokens: 256, metadata: {}, - model: 'gpt-4-turbo', + model: 'gpt-4o', parallel_tool_calls: true, - response_format: 'none', + response_format: 'auto', stream: false, temperature: 1, thread: { diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 78314074f..5cdd1e670 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -11,8 +11,8 @@ const client = new OpenAI({ describe('resource completions', () => { test('create: only required params', async () => { const responsePromise = client.chat.completions.create({ - messages: [{ content: 'content', role: 'system' }], - model: 'gpt-4-turbo', + messages: [{ content: 'string', role: 'system' }], + model: 'gpt-4o', }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); @@ -25,8 +25,8 @@ describe('resource completions', () => { test('create: required and optional params', async () => { const response = await client.chat.completions.create({ - messages: [{ content: 'content', role: 'system', name: 'name' }], - model: 'gpt-4-turbo', + messages: [{ content: 'string', role: 'system', name: 'name' }], + model: 'gpt-4o', frequency_penalty: -2, function_call: 'none', functions: [{ description: 'description', name: 'name', parameters: { foo: 'bar' } }], @@ -36,7 +36,7 @@ describe('resource completions', () => { n: 1, parallel_tool_calls: true, presence_penalty: -2, - response_format: { type: 'json_object' }, + response_format: { type: 'text' }, seed: -9007199254740991, service_tier: 'auto', stop: 'string', @@ -47,15 +47,15 @@ describe('resource completions', () => { tools: [ { type: 'function', - function: { description: 'description', name: 'name', parameters: { foo: 'bar' } }, + function: { description: 'description', name: 'name', parameters: { foo: 'bar' }, strict: true }, }, { type: 'function', - function: { description: 'description', name: 'name', parameters: { foo: 'bar' } }, + function: { description: 'description', name: 'name', parameters: { foo: 'bar' }, strict: true }, }, { type: 'function', - function: { description: 'description', name: 'name', parameters: { foo: 'bar' } }, + function: { description: 'description', name: 'name', parameters: { foo: 'bar' }, strict: true }, }, ], top_logprobs: 0, diff --git a/tests/api-resources/fine-tuning/jobs/jobs.test.ts b/tests/api-resources/fine-tuning/jobs/jobs.test.ts index 04de7ee21..e683dfe3e 100644 --- a/tests/api-resources/fine-tuning/jobs/jobs.test.ts +++ b/tests/api-resources/fine-tuning/jobs/jobs.test.ts @@ -11,7 +11,7 @@ const client = new OpenAI({ describe('resource jobs', () => { test('create: only required params', async () => { const responsePromise = client.fineTuning.jobs.create({ - model: 'gpt-3.5-turbo', + model: 'gpt-4o-mini', training_file: 'file-abc123', }); const rawResponse = await responsePromise.asResponse(); @@ -25,7 +25,7 @@ describe('resource jobs', () => { test('create: required and optional params', async () => { const response = await client.fineTuning.jobs.create({ - model: 'gpt-3.5-turbo', + model: 'gpt-4o-mini', training_file: 'file-abc123', hyperparameters: { batch_size: 'auto', learning_rate_multiplier: 'auto', n_epochs: 'auto' }, integrations: [ diff --git a/tests/api-resources/models.test.ts b/tests/api-resources/models.test.ts index eee91d020..23ebd1bb6 100644 --- a/tests/api-resources/models.test.ts +++ b/tests/api-resources/models.test.ts @@ -10,7 +10,7 @@ const client = new OpenAI({ describe('resource models', () => { test('retrieve', async () => { - const responsePromise = client.models.retrieve('gpt-3.5-turbo'); + const responsePromise = client.models.retrieve('gpt-4o-mini'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -22,9 +22,9 @@ describe('resource models', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect( - client.models.retrieve('gpt-3.5-turbo', { path: '/_stainless_unknown_path' }), - ).rejects.toThrow(OpenAI.NotFoundError); + await expect(client.models.retrieve('gpt-4o-mini', { path: '/_stainless_unknown_path' })).rejects.toThrow( + OpenAI.NotFoundError, + ); }); test('list', async () => { @@ -46,7 +46,7 @@ describe('resource models', () => { }); test('del', async () => { - const responsePromise = client.models.del('ft:gpt-3.5-turbo:acemeco:suffix:abc123'); + const responsePromise = client.models.del('ft:gpt-4o-mini:acemeco:suffix:abc123'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -59,7 +59,7 @@ describe('resource models', () => { test('del: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - client.models.del('ft:gpt-3.5-turbo:acemeco:suffix:abc123', { path: '/_stainless_unknown_path' }), + client.models.del('ft:gpt-4o-mini:acemeco:suffix:abc123', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); }); diff --git a/tests/helpers/zod.test.ts b/tests/helpers/zod.test.ts new file mode 100644 index 000000000..1ad4b7475 --- /dev/null +++ b/tests/helpers/zod.test.ts @@ -0,0 +1,269 @@ +import { zodResponseFormat } from 'openai/helpers/zod'; +import { z } from 'zod'; + +describe('zodResponseFormat', () => { + it('does the thing', () => { + expect( + zodResponseFormat( + z.object({ + city: z.string(), + temperature: z.number(), + units: z.enum(['c', 'f']), + }), + 'location', + ).json_schema, + ).toMatchInlineSnapshot(` + { + "name": "location", + "schema": { + "$schema": "http://json-schema.org/draft-07/schema#", + "additionalProperties": false, + "properties": { + "city": { + "type": "string", + }, + "temperature": { + "type": "number", + }, + "units": { + "enum": [ + "c", + "f", + ], + "type": "string", + }, + }, + "required": [ + "city", + "temperature", + "units", + ], + "type": "object", + }, + "strict": true, + } + `); + }); + + it('automatically adds optional properties to `required`', () => { + expect( + zodResponseFormat( + z.object({ + city: z.string(), + temperature: z.number(), + units: z.enum(['c', 'f']).optional(), + }), + 'location', + ).json_schema, + ).toMatchInlineSnapshot(` + { + "name": "location", + "schema": { + "$schema": "http://json-schema.org/draft-07/schema#", + "additionalProperties": false, + "properties": { + "city": { + "type": "string", + }, + "temperature": { + "type": "number", + }, + "units": { + "enum": [ + "c", + "f", + ], + "type": "string", + }, + }, + "required": [ + "city", + "temperature", + "units", + ], + "type": "object", + }, + "strict": true, + } + `); + }); + + it('automatically adds properties with defaults to `required`', () => { + expect( + zodResponseFormat( + z.object({ + city: z.string(), + temperature: z.number(), + units: z.enum(['c', 'f']).default('c'), + }), + 'location', + ).json_schema, + ).toMatchInlineSnapshot(` + { + "name": "location", + "schema": { + "$schema": "http://json-schema.org/draft-07/schema#", + "additionalProperties": false, + "properties": { + "city": { + "type": "string", + }, + "temperature": { + "type": "number", + }, + "units": { + "default": "c", + "enum": [ + "c", + "f", + ], + "type": "string", + }, + }, + "required": [ + "city", + "temperature", + "units", + ], + "type": "object", + }, + "strict": true, + } + `); + }); + + test('kitchen sink types', () => { + const Table = z.enum(['orders', 'customers', 'products']); + + const Column = z.enum([ + 'id', + 'status', + 'expected_delivery_date', + 'delivered_at', + 'shipped_at', + 'ordered_at', + 'canceled_at', + ]); + + const Operator = z.enum(['=', '>', '<', '<=', '>=', '!=']); + + const OrderBy = z.enum(['asc', 'desc']); + + const DynamicValue = z.object({ + column_name: z.string(), + }); + + const Condition = z.object({ + column: z.string(), + operator: Operator, + value: z.union([z.string(), z.number(), DynamicValue]), + }); + + const Query = z.object({ + table_name: Table, + columns: z.array(Column), + conditions: z.array(Condition), + order_by: OrderBy, + }); + + expect(zodResponseFormat(Query, 'query').json_schema).toMatchInlineSnapshot(` + { + "name": "query", + "schema": { + "$schema": "http://json-schema.org/draft-07/schema#", + "additionalProperties": false, + "properties": { + "columns": { + "items": { + "enum": [ + "id", + "status", + "expected_delivery_date", + "delivered_at", + "shipped_at", + "ordered_at", + "canceled_at", + ], + "type": "string", + }, + "type": "array", + }, + "conditions": { + "items": { + "additionalProperties": false, + "properties": { + "column": { + "type": "string", + }, + "operator": { + "enum": [ + "=", + ">", + "<", + "<=", + ">=", + "!=", + ], + "type": "string", + }, + "value": { + "anyOf": [ + { + "type": "string", + }, + { + "type": "number", + }, + { + "additionalProperties": false, + "properties": { + "column_name": { + "type": "string", + }, + }, + "required": [ + "column_name", + ], + "type": "object", + }, + ], + }, + }, + "required": [ + "column", + "operator", + "value", + ], + "type": "object", + }, + "type": "array", + }, + "order_by": { + "enum": [ + "asc", + "desc", + ], + "type": "string", + }, + "table_name": { + "enum": [ + "orders", + "customers", + "products", + ], + "type": "string", + }, + }, + "required": [ + "table_name", + "columns", + "conditions", + "order_by", + ], + "type": "object", + }, + "strict": true, + } + `); + }); +}); diff --git a/src/lib/ChatCompletionRunFunctions.test.ts b/tests/lib/ChatCompletionRunFunctions.test.ts similarity index 91% rename from src/lib/ChatCompletionRunFunctions.test.ts rename to tests/lib/ChatCompletionRunFunctions.test.ts index b524218ae..cddfe4a5f 100644 --- a/src/lib/ChatCompletionRunFunctions.test.ts +++ b/tests/lib/ChatCompletionRunFunctions.test.ts @@ -9,76 +9,9 @@ import { type ChatCompletionStreamingFunctionRunnerParams, } from 'openai/resources/beta/chat/completions'; import type { ChatCompletionMessageParam } from 'openai/resources/chat/completions'; - -import { type RequestInfo, type RequestInit } from 'openai/_shims/index'; import { Response } from 'node-fetch'; -import { isAssistantMessage } from './chatCompletionUtils'; - -type Fetch = (req: string | RequestInfo, init?: RequestInit) => Promise; - -/** - * Creates a mock `fetch` function and a `handleRequest` function for intercepting `fetch` calls. - * - * You call `handleRequest` with a callback function that handles the next `fetch` call. - * It returns a Promise that: - * - waits for the next call to `fetch` - * - calls the callback with the `fetch` arguments - * - resolves `fetch` with the callback output - */ -function mockFetch(): { fetch: Fetch; handleRequest: (handle: Fetch) => Promise } { - const fetchQueue: ((handler: typeof fetch) => void)[] = []; - const handlerQueue: Promise[] = []; - - const enqueueHandler = () => { - handlerQueue.push( - new Promise((resolve) => { - fetchQueue.push((handle: typeof fetch) => { - enqueueHandler(); - resolve(handle); - }); - }), - ); - }; - enqueueHandler(); - - async function fetch(req: string | RequestInfo, init?: RequestInit): Promise { - const handler = await handlerQueue.shift(); - if (!handler) throw new Error('expected handler to be defined'); - const signal = init?.signal; - if (!signal) return await handler(req, init); - return await Promise.race([ - handler(req, init), - new Promise((resolve, reject) => { - if (signal.aborted) { - // @ts-ignore does exist in Node - reject(new DOMException('The user aborted a request.', 'AbortError')); - return; - } - signal.addEventListener('abort', (e) => { - // @ts-ignore does exist in Node - reject(new DOMException('The user aborted a request.', 'AbortError')); - }); - }), - ]); - } - - function handleRequest(handle: typeof fetch): Promise { - return new Promise((resolve, reject) => { - fetchQueue.shift()?.(async (req, init) => { - try { - return await handle(req, init); - } catch (err) { - reject(err); - return err as any; - } finally { - resolve(); - } - }); - }); - } - - return { fetch, handleRequest }; -} +import { isAssistantMessage } from '../../src/lib/chatCompletionUtils'; +import { mockFetch } from '../utils/mock-fetch'; // mockChatCompletionFetch is like mockFetch, but with better a more convenient handleRequest to mock // chat completion request/responses. @@ -213,7 +146,7 @@ class RunnerListener { onceMessageCallCount = 0; - constructor(public runner: ChatCompletionRunner) { + constructor(public runner: ChatCompletionRunner) { runner .on('connect', () => (this.gotConnect = true)) .on('content', (content) => this.contents.push(content)) @@ -327,7 +260,7 @@ class StreamingRunnerListener { gotConnect = false; gotEnd = false; - constructor(public runner: ChatCompletionStreamingRunner) { + constructor(public runner: ChatCompletionStreamingRunner) { runner .on('connect', () => (this.gotConnect = true)) .on('chunk', (chunk) => this.eventChunks.push(chunk)) @@ -598,6 +531,8 @@ describe('resource completions', () => { message: { role: 'assistant', content: null, + refusal: null, + parsed: null, tool_calls: [ { type: 'function', @@ -619,10 +554,15 @@ describe('resource completions', () => { await handleRequest(async (request) => { expect(request.messages).toEqual([ - { role: 'user', content: 'tell me what the weather is like' }, + { + role: 'user', + content: 'tell me what the weather is like', + }, { role: 'assistant', content: null, + refusal: null, + parsed: null, tool_calls: [ { type: 'function', @@ -630,6 +570,7 @@ describe('resource completions', () => { function: { arguments: '', name: 'getWeather', + parsed_arguments: null, }, }, ], @@ -651,6 +592,7 @@ describe('resource completions', () => { message: { role: 'assistant', content: `it's raining`, + refusal: null, }, }, ], @@ -667,6 +609,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -674,12 +618,19 @@ describe('resource completions', () => { function: { arguments: '', name: 'getWeather', + parsed_arguments: null, }, }, ], }, { role: 'tool', content: `it's raining`, tool_call_id: '123' }, - { role: 'assistant', content: "it's raining" }, + { + role: 'assistant', + content: "it's raining", + parsed: null, + refusal: null, + tool_calls: [], + }, ]); expect(listener.functionCallResults).toEqual([`it's raining`]); await listener.sanityCheck(); @@ -723,6 +674,8 @@ describe('resource completions', () => { message: { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -751,6 +704,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -758,6 +713,7 @@ describe('resource completions', () => { function: { arguments: '', name: 'getWeather', + parsed_arguments: null, }, }, ], @@ -816,6 +772,8 @@ describe('resource completions', () => { message: { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -849,6 +807,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -856,6 +816,7 @@ describe('resource completions', () => { function: { arguments: '{"a": 1, "b": 2, "c": 3}', name: 'numProperties', + parsed_arguments: null, }, }, ], @@ -876,6 +837,7 @@ describe('resource completions', () => { message: { role: 'assistant', content: `there are 3 properties in {"a": 1, "b": 2, "c": 3}`, + refusal: null, }, }, ], @@ -900,16 +862,28 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', id: '123', - function: { name: 'numProperties', arguments: '{"a": 1, "b": 2, "c": 3}' }, + function: { + name: 'numProperties', + arguments: '{"a": 1, "b": 2, "c": 3}', + parsed_arguments: null, + }, }, ], }, { role: 'tool', content: '3', tool_call_id: '123' }, - { role: 'assistant', content: 'there are 3 properties in {"a": 1, "b": 2, "c": 3}' }, + { + role: 'assistant', + content: 'there are 3 properties in {"a": 1, "b": 2, "c": 3}', + parsed: null, + refusal: null, + tool_calls: [], + }, ]); expect(listener.functionCallResults).toEqual(['3']); await listener.sanityCheck(); @@ -963,6 +937,8 @@ describe('resource completions', () => { message: { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -990,6 +966,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -997,6 +975,7 @@ describe('resource completions', () => { function: { arguments: '[{"a": 1, "b": 2, "c": 3}]', name: 'numProperties', + parsed_arguments: null, }, }, ], @@ -1017,6 +996,8 @@ describe('resource completions', () => { message: { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -1044,6 +1025,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -1051,6 +1034,7 @@ describe('resource completions', () => { function: { arguments: '[{"a": 1, "b": 2, "c": 3}]', name: 'numProperties', + parsed_arguments: null, }, }, ], @@ -1063,6 +1047,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -1070,6 +1056,7 @@ describe('resource completions', () => { function: { arguments: '{"a": 1, "b": 2, "c": 3}', name: 'numProperties', + parsed_arguments: null, }, }, ], @@ -1090,6 +1077,7 @@ describe('resource completions', () => { message: { role: 'assistant', content: `there are 3 properties in {"a": 1, "b": 2, "c": 3}`, + refusal: null, }, }, ], @@ -1109,11 +1097,17 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', id: '123', - function: { name: 'numProperties', arguments: '[{"a": 1, "b": 2, "c": 3}]' }, + function: { + name: 'numProperties', + arguments: '[{"a": 1, "b": 2, "c": 3}]', + parsed_arguments: null, + }, }, ], }, @@ -1121,16 +1115,28 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', id: '1234', - function: { name: 'numProperties', arguments: '{"a": 1, "b": 2, "c": 3}' }, + function: { + name: 'numProperties', + arguments: '{"a": 1, "b": 2, "c": 3}', + parsed_arguments: null, + }, }, ], }, { role: 'tool', content: '3', tool_call_id: '1234' }, - { role: 'assistant', content: 'there are 3 properties in {"a": 1, "b": 2, "c": 3}' }, + { + role: 'assistant', + content: 'there are 3 properties in {"a": 1, "b": 2, "c": 3}', + parsed: null, + refusal: null, + tool_calls: [], + }, ]); expect(listener.functionCallResults).toEqual([`must be an object`, '3']); await listener.sanityCheck(); @@ -1177,6 +1183,8 @@ describe('resource completions', () => { message: { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -1203,6 +1211,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -1210,6 +1220,7 @@ describe('resource completions', () => { function: { arguments: '', name: 'getWeather', + parsed_arguments: null, }, }, ], @@ -1255,6 +1266,8 @@ describe('resource completions', () => { message: { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -1279,6 +1292,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -1286,6 +1301,7 @@ describe('resource completions', () => { function: { arguments: '', name: 'get_weather', + parsed_arguments: null, }, }, ], @@ -1306,6 +1322,8 @@ describe('resource completions', () => { message: { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -1330,6 +1348,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -1337,6 +1357,7 @@ describe('resource completions', () => { function: { arguments: '', name: 'get_weather', + parsed_arguments: null, }, }, ], @@ -1349,6 +1370,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -1356,6 +1379,7 @@ describe('resource completions', () => { function: { arguments: '', name: 'getWeather', + parsed_arguments: null, }, }, ], @@ -1375,6 +1399,7 @@ describe('resource completions', () => { logprobs: null, message: { role: 'assistant', + refusal: null, content: `it's raining`, }, }, @@ -1392,7 +1417,15 @@ describe('resource completions', () => { { role: 'assistant', content: null, - tool_calls: [{ type: 'function', id: '123', function: { name: 'get_weather', arguments: '' } }], + parsed: null, + refusal: null, + tool_calls: [ + { + type: 'function', + id: '123', + function: { name: 'get_weather', arguments: '', parsed_arguments: null }, + }, + ], }, { role: 'tool', @@ -1402,10 +1435,28 @@ describe('resource completions', () => { { role: 'assistant', content: null, - tool_calls: [{ type: 'function', id: '1234', function: { name: 'getWeather', arguments: '' } }], + parsed: null, + refusal: null, + tool_calls: [ + { + type: 'function', + id: '1234', + function: { + name: 'getWeather', + arguments: '', + parsed_arguments: null, + }, + }, + ], }, { role: 'tool', content: `it's raining`, tool_call_id: '1234' }, - { role: 'assistant', content: "it's raining" }, + { + role: 'assistant', + content: "it's raining", + parsed: null, + refusal: null, + tool_calls: [], + }, ]); expect(listener.functionCallResults).toEqual([ `Invalid tool_call: "get_weather". Available options are: "getWeather". Please try again`, @@ -1478,6 +1529,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -1512,6 +1565,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -1524,7 +1579,13 @@ describe('resource completions', () => { ], }, { role: 'tool', content: `it's raining`, tool_call_id: '123' }, - { role: 'assistant', content: "it's raining" }, + { + role: 'assistant', + content: "it's raining", + parsed: null, + refusal: null, + tool_calls: [], + }, ]); expect(listener.eventFunctionCallResults).toEqual([`it's raining`]); await listener.sanityCheck(); @@ -1595,6 +1656,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -1689,6 +1752,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -1723,16 +1788,27 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', id: '123', - function: { name: 'numProperties', arguments: '{"a": 1, "b": 2, "c": 3}' }, + function: { + name: 'numProperties', + arguments: '{"a": 1, "b": 2, "c": 3}', + }, }, ], }, { role: 'tool', content: '3', tool_call_id: '123' }, - { role: 'assistant', content: 'there are 3 properties in {"a": 1, "b": 2, "c": 3}' }, + { + role: 'assistant', + content: 'there are 3 properties in {"a": 1, "b": 2, "c": 3}', + parsed: null, + refusal: null, + tool_calls: [], + }, ]); expect(listener.eventFunctionCallResults).toEqual(['3']); await listener.sanityCheck(); @@ -1799,6 +1875,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -1838,6 +1916,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -1857,6 +1937,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -1891,11 +1973,16 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', id: '123', - function: { name: 'numProperties', arguments: '[{"a": 1, "b": 2, "c": 3}]' }, + function: { + name: 'numProperties', + arguments: '[{"a": 1, "b": 2, "c": 3}]', + }, }, ], }, @@ -1903,16 +1990,27 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', id: '1234', - function: { name: 'numProperties', arguments: '{"a": 1, "b": 2, "c": 3}' }, + function: { + name: 'numProperties', + arguments: '{"a": 1, "b": 2, "c": 3}', + }, }, ], }, { role: 'tool', content: '3', tool_call_id: '1234' }, - { role: 'assistant', content: 'there are 3 properties in {"a": 1, "b": 2, "c": 3}' }, + { + role: 'assistant', + content: 'there are 3 properties in {"a": 1, "b": 2, "c": 3}', + parsed: null, + refusal: null, + tool_calls: [], + }, ]); expect(listener.eventFunctionCallResults).toEqual([`must be an object`, '3']); await listener.sanityCheck(); @@ -1985,6 +2083,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -2062,6 +2162,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -2114,6 +2216,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -2133,6 +2237,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -2167,6 +2273,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -2186,6 +2294,8 @@ describe('resource completions', () => { { role: 'assistant', content: null, + parsed: null, + refusal: null, tool_calls: [ { type: 'function', @@ -2198,7 +2308,13 @@ describe('resource completions', () => { ], }, { role: 'tool', content: `it's raining`, tool_call_id: '1234' }, - { role: 'assistant', content: "it's raining" }, + { + role: 'assistant', + content: "it's raining", + parsed: null, + refusal: null, + tool_calls: [], + }, ]); expect(listener.eventFunctionCallResults).toEqual([ `Invalid tool_call: "get_weather". Available options are: "getWeather". Please try again`, @@ -2238,7 +2354,13 @@ describe('resource completions', () => { runner.done(), ]); - expect(listener.finalMessage).toEqual({ role: 'assistant', content: 'The weather is great today!' }); + expect(listener.finalMessage).toEqual({ + role: 'assistant', + content: 'The weather is great today!', + parsed: null, + refusal: null, + tool_calls: [], + }); await listener.sanityCheck(); }); test('toReadableStream and fromReadableStream', async () => { @@ -2271,7 +2393,13 @@ describe('resource completions', () => { proxied.done(), ]); - expect(listener.finalMessage).toEqual({ role: 'assistant', content: 'The weather is great today!' }); + expect(listener.finalMessage).toEqual({ + role: 'assistant', + content: 'The weather is great today!', + parsed: null, + refusal: null, + tool_calls: [], + }); await listener.sanityCheck(); }); test('handles network errors', async () => { diff --git a/tests/lib/ChatCompletionStream.test.ts b/tests/lib/ChatCompletionStream.test.ts new file mode 100644 index 000000000..90d551262 --- /dev/null +++ b/tests/lib/ChatCompletionStream.test.ts @@ -0,0 +1,383 @@ +import { zodResponseFormat } from 'openai/helpers/zod'; +import { ChatCompletionTokenLogprob } from 'openai/resources'; +import { z } from 'zod'; +import { makeStreamSnapshotRequest } from '../utils/mock-snapshots'; + +jest.setTimeout(1000 * 30); + +describe('.stream()', () => { + it('works', async () => { + const stream = await makeStreamSnapshotRequest((openai) => + openai.beta.chat.completions.stream({ + model: 'gpt-4o-2024-08-06', + messages: [ + { + role: 'user', + content: "What's the weather like in SF?", + }, + ], + response_format: zodResponseFormat( + z.object({ + city: z.string(), + units: z.enum(['c', 'f']).default('f'), + }), + 'location', + ), + }), + ); + + expect((await stream.finalChatCompletion()).choices[0]).toMatchInlineSnapshot(` + { + "finish_reason": "stop", + "index": 0, + "logprobs": null, + "message": { + "content": "{"city":"San Francisco","units":"f"}", + "parsed": { + "city": "San Francisco", + "units": "f", + }, + "refusal": null, + "role": "assistant", + "tool_calls": [], + }, + } + `); + }); + + it('emits content logprobs events', async () => { + var capturedLogProbs: ChatCompletionTokenLogprob[] | undefined; + + const stream = ( + await makeStreamSnapshotRequest((openai) => + openai.beta.chat.completions.stream({ + model: 'gpt-4o-2024-08-06', + messages: [ + { + role: 'user', + content: "What's the weather like in SF?", + }, + ], + logprobs: true, + response_format: zodResponseFormat( + z.object({ + city: z.string(), + units: z.enum(['c', 'f']).default('f'), + }), + 'location', + ), + }), + ) + ).on('logprobs.content.done', (props) => { + if (!capturedLogProbs?.length) { + capturedLogProbs = props.content; + } + }); + + const choice = (await stream.finalChatCompletion()).choices[0]; + expect(choice).toMatchInlineSnapshot(` + { + "finish_reason": "stop", + "index": 0, + "logprobs": { + "content": [ + { + "bytes": [ + 123, + 34, + ], + "logprob": -0.0010631788, + "token": "{"", + "top_logprobs": [], + }, + { + "bytes": [ + 99, + 105, + 116, + 121, + ], + "logprob": -0.0000017432603, + "token": "city", + "top_logprobs": [], + }, + { + "bytes": [ + 34, + 58, + 34, + ], + "logprob": -0.00018554063, + "token": "":"", + "top_logprobs": [], + }, + { + "bytes": [ + 83, + 97, + 110, + ], + "logprob": -0.016705167, + "token": "San", + "top_logprobs": [], + }, + { + "bytes": [ + 32, + 70, + 114, + 97, + 110, + 99, + 105, + 115, + 99, + 111, + ], + "logprob": -0.000024630364, + "token": " Francisco", + "top_logprobs": [], + }, + { + "bytes": [ + 34, + 44, + 34, + ], + "logprob": -0.04316578, + "token": "","", + "top_logprobs": [], + }, + { + "bytes": [ + 117, + 110, + 105, + 116, + 115, + ], + "logprob": -3.1281633e-7, + "token": "units", + "top_logprobs": [], + }, + { + "bytes": [ + 34, + 58, + 34, + ], + "logprob": -0.000014855664, + "token": "":"", + "top_logprobs": [], + }, + { + "bytes": [ + 102, + ], + "logprob": -0.38687104, + "token": "f", + "top_logprobs": [], + }, + { + "bytes": [ + 34, + 125, + ], + "logprob": -0.000048113485, + "token": ""}", + "top_logprobs": [], + }, + ], + "refusal": null, + }, + "message": { + "content": "{"city":"San Francisco","units":"f"}", + "parsed": { + "city": "San Francisco", + "units": "f", + }, + "refusal": null, + "role": "assistant", + "tool_calls": [], + }, + } + `); + expect(capturedLogProbs?.length).toEqual(choice?.logprobs?.content?.length); + }); + + it('emits refusal logprobs events', async () => { + var capturedLogProbs: ChatCompletionTokenLogprob[] | undefined; + + const stream = ( + await makeStreamSnapshotRequest((openai) => + openai.beta.chat.completions.stream({ + model: 'gpt-4o-2024-08-06', + messages: [ + { + role: 'user', + content: 'how do I make anthrax?', + }, + ], + logprobs: true, + response_format: zodResponseFormat( + z.object({ + city: z.string(), + units: z.enum(['c', 'f']).default('f'), + }), + 'location', + ), + }), + ) + ).on('logprobs.refusal.done', (props) => { + if (!capturedLogProbs?.length) { + capturedLogProbs = props.refusal; + } + }); + + const choice = (await stream.finalChatCompletion()).choices[0]; + expect(choice).toMatchInlineSnapshot(` + { + "finish_reason": "stop", + "index": 0, + "logprobs": { + "content": null, + "refusal": [ + { + "bytes": [ + 73, + 39, + 109, + ], + "logprob": -0.0052259327, + "token": "I'm", + "top_logprobs": [], + }, + { + "bytes": [ + 32, + 115, + 111, + 114, + 114, + 121, + ], + "logprob": -0.9804326, + "token": " sorry", + "top_logprobs": [], + }, + { + "bytes": [ + 44, + ], + "logprob": -0.00006086828, + "token": ",", + "top_logprobs": [], + }, + { + "bytes": [ + 32, + 98, + 117, + 116, + ], + "logprob": -1.1371382, + "token": " but", + "top_logprobs": [], + }, + { + "bytes": [ + 32, + 73, + ], + "logprob": -0.01050545, + "token": " I", + "top_logprobs": [], + }, + { + "bytes": [ + 32, + 99, + 97, + 110, + 39, + 116, + ], + "logprob": -0.2896076, + "token": " can't", + "top_logprobs": [], + }, + { + "bytes": [ + 32, + 97, + 115, + 115, + 105, + 115, + 116, + ], + "logprob": -0.031149099, + "token": " assist", + "top_logprobs": [], + }, + { + "bytes": [ + 32, + 119, + 105, + 116, + 104, + ], + "logprob": -0.0052447836, + "token": " with", + "top_logprobs": [], + }, + { + "bytes": [ + 32, + 116, + 104, + 97, + 116, + ], + "logprob": -0.0049340394, + "token": " that", + "top_logprobs": [], + }, + { + "bytes": [ + 32, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + ], + "logprob": -0.006166848, + "token": " request", + "top_logprobs": [], + }, + { + "bytes": [ + 46, + ], + "logprob": -0.0000066306106, + "token": ".", + "top_logprobs": [], + }, + ], + }, + "message": { + "content": null, + "parsed": null, + "refusal": "I'm sorry, but I can't assist with that request.", + "role": "assistant", + "tool_calls": [], + }, + } + `); + expect(capturedLogProbs?.length).toEqual(choice?.logprobs?.refusal?.length); + }); +}); diff --git a/tests/lib/__snapshots__/ChatCompletionStream.test.ts.snap b/tests/lib/__snapshots__/ChatCompletionStream.test.ts.snap new file mode 100644 index 000000000..b9a1c2e36 --- /dev/null +++ b/tests/lib/__snapshots__/ChatCompletionStream.test.ts.snap @@ -0,0 +1,99 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`.stream() emits content logprobs events 1`] = ` +"data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":{"content":[],"refusal":null},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"content":"{\\""},"logprobs":{"content":[{"token":"{\\"","logprob":-0.0010631788,"bytes":[123,34],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"content":"city"},"logprobs":{"content":[{"token":"city","logprob":-1.7432603e-6,"bytes":[99,105,116,121],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"content":"\\":\\""},"logprobs":{"content":[{"token":"\\":\\"","logprob":-0.00018554063,"bytes":[34,58,34],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"content":"San"},"logprobs":{"content":[{"token":"San","logprob":-0.016705167,"bytes":[83,97,110],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"content":" Francisco"},"logprobs":{"content":[{"token":" Francisco","logprob":-0.000024630364,"bytes":[32,70,114,97,110,99,105,115,99,111],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"content":"\\",\\""},"logprobs":{"content":[{"token":"\\",\\"","logprob":-0.04316578,"bytes":[34,44,34],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"content":"units"},"logprobs":{"content":[{"token":"units","logprob":-3.1281633e-7,"bytes":[117,110,105,116,115],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"content":"\\":\\""},"logprobs":{"content":[{"token":"\\":\\"","logprob":-0.000014855664,"bytes":[34,58,34],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"content":"f"},"logprobs":{"content":[{"token":"f","logprob":-0.38687104,"bytes":[102],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"content":"\\"}"},"logprobs":{"content":[{"token":"\\"}","logprob":-0.000048113485,"bytes":[34,125],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + +data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[],"usage":{"prompt_tokens":17,"completion_tokens":10,"total_tokens":27}} + +data: [DONE] + +" +`; + +exports[`.stream() emits refusal logprobs events 1`] = ` +"data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"role":"assistant","content":null,"refusal":""},"logprobs":{"content":null,"refusal":[]},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":"I'm"},"logprobs":{"content":null,"refusal":[{"token":"I'm","logprob":-0.0052259327,"bytes":[73,39,109],"top_logprobs":[]}]},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":" sorry"},"logprobs":{"content":null,"refusal":[{"token":" sorry","logprob":-0.9804326,"bytes":[32,115,111,114,114,121],"top_logprobs":[]}]},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":","},"logprobs":{"content":null,"refusal":[{"token":",","logprob":-0.00006086828,"bytes":[44],"top_logprobs":[]}]},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":" but"},"logprobs":{"content":null,"refusal":[{"token":" but","logprob":-1.1371382,"bytes":[32,98,117,116],"top_logprobs":[]}]},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":" I"},"logprobs":{"content":null,"refusal":[{"token":" I","logprob":-0.01050545,"bytes":[32,73],"top_logprobs":[]}]},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":" can't"},"logprobs":{"content":null,"refusal":[{"token":" can't","logprob":-0.2896076,"bytes":[32,99,97,110,39,116],"top_logprobs":[]}]},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":" assist"},"logprobs":{"content":null,"refusal":[{"token":" assist","logprob":-0.031149099,"bytes":[32,97,115,115,105,115,116],"top_logprobs":[]}]},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":" with"},"logprobs":{"content":null,"refusal":[{"token":" with","logprob":-0.0052447836,"bytes":[32,119,105,116,104],"top_logprobs":[]}]},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":" that"},"logprobs":{"content":null,"refusal":[{"token":" that","logprob":-0.0049340394,"bytes":[32,116,104,97,116],"top_logprobs":[]}]},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":" request"},"logprobs":{"content":null,"refusal":[{"token":" request","logprob":-0.006166848,"bytes":[32,114,101,113,117,101,115,116],"top_logprobs":[]}]},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":"."},"logprobs":{"content":null,"refusal":[{"token":".","logprob":-6.6306106e-6,"bytes":[46],"top_logprobs":[]}]},"finish_reason":null}]} + +data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + +data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[],"usage":{"prompt_tokens":17,"completion_tokens":12,"total_tokens":29}} + +data: [DONE] + +" +`; + +exports[`.stream() works 1`] = ` +"data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"content":"{\\""},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"content":"city"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"content":"\\":\\""},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"content":"San"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"content":" Francisco"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"content":"\\",\\""},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"content":"units"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"content":"\\":\\""},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"content":"f"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"content":"\\"}"},"logprobs":null,"finish_reason":null}]} + +data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + +data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[],"usage":{"prompt_tokens":71,"completion_tokens":10,"total_tokens":81}} + +data: [DONE] + +" +`; diff --git a/tests/lib/__snapshots__/parser.test.ts.snap b/tests/lib/__snapshots__/parser.test.ts.snap new file mode 100644 index 000000000..2bae7e67c --- /dev/null +++ b/tests/lib/__snapshots__/parser.test.ts.snap @@ -0,0 +1,28 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`.parse() zod deserialises response_format 1`] = ` +"{ + "id": "chatcmpl-9ro1LmtFYq4FuAudjIkDJUr8IYum3", + "object": "chat.completion", + "created": 1722610691, + "model": "gpt-4o-so", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "{\\"city\\":\\"San Francisco\\",\\"units\\":\\"f\\"}" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 71, + "completion_tokens": 10, + "total_tokens": 81 + }, + "system_fingerprint": "fp_6dc10860e8" +} +" +`; diff --git a/tests/lib/parser.test.ts b/tests/lib/parser.test.ts new file mode 100644 index 000000000..c18264b2c --- /dev/null +++ b/tests/lib/parser.test.ts @@ -0,0 +1,47 @@ +import { z } from 'zod'; +import { zodResponseFormat } from 'openai/helpers/zod'; +import { makeSnapshotRequest } from '../utils/mock-snapshots'; + +jest.setTimeout(1000 * 30); + +describe('.parse()', () => { + describe('zod', () => { + it('deserialises response_format', async () => { + const completion = await makeSnapshotRequest((openai) => + openai.beta.chat.completions.parse({ + model: 'gpt-4o-2024-08-06', + messages: [ + { + role: 'user', + content: "What's the weather like in SF?", + }, + ], + response_format: zodResponseFormat( + z.object({ + city: z.string(), + units: z.enum(['c', 'f']).default('f'), + }), + 'location', + ), + }), + ); + + expect(completion.choices[0]).toMatchInlineSnapshot(` + { + "finish_reason": "stop", + "index": 0, + "logprobs": null, + "message": { + "content": "{"city":"San Francisco","units":"f"}", + "parsed": { + "city": "San Francisco", + "units": "f", + }, + "role": "assistant", + "tool_calls": [], + }, + } + `); + }); + }); +}); diff --git a/tests/utils/mock-fetch.ts b/tests/utils/mock-fetch.ts new file mode 100644 index 000000000..e122f7aec --- /dev/null +++ b/tests/utils/mock-fetch.ts @@ -0,0 +1,68 @@ +import { type RequestInfo, type RequestInit } from 'openai/_shims/index'; +import { Response } from 'node-fetch'; + +type Fetch = (req: string | RequestInfo, init?: RequestInit) => Promise; + +/** + * Creates a mock `fetch` function and a `handleRequest` function for intercepting `fetch` calls. + * + * You call `handleRequest` with a callback function that handles the next `fetch` call. + * It returns a Promise that: + * - waits for the next call to `fetch` + * - calls the callback with the `fetch` arguments + * - resolves `fetch` with the callback output + */ +export function mockFetch(): { fetch: Fetch; handleRequest: (handle: Fetch) => Promise } { + const fetchQueue: ((handler: typeof fetch) => void)[] = []; + const handlerQueue: Promise[] = []; + + const enqueueHandler = () => { + handlerQueue.push( + new Promise((resolve) => { + fetchQueue.push((handle: typeof fetch) => { + enqueueHandler(); + resolve(handle); + }); + }), + ); + }; + enqueueHandler(); + + async function fetch(req: string | RequestInfo, init?: RequestInit): Promise { + const handler = await handlerQueue.shift(); + if (!handler) throw new Error('expected handler to be defined'); + const signal = init?.signal; + if (!signal) return await handler(req, init); + return await Promise.race([ + handler(req, init), + new Promise((resolve, reject) => { + if (signal.aborted) { + // @ts-ignore does exist in Node + reject(new DOMException('The user aborted a request.', 'AbortError')); + return; + } + signal.addEventListener('abort', (e) => { + // @ts-ignore does exist in Node + reject(new DOMException('The user aborted a request.', 'AbortError')); + }); + }), + ]); + } + + function handleRequest(handle: typeof fetch): Promise { + return new Promise((resolve, reject) => { + fetchQueue.shift()?.(async (req, init) => { + try { + return await handle(req, init); + } catch (err) { + reject(err); + return err as any; + } finally { + resolve(); + } + }); + }); + } + + return { fetch, handleRequest }; +} diff --git a/tests/utils/mock-snapshots.ts b/tests/utils/mock-snapshots.ts new file mode 100644 index 000000000..2bf09eda7 --- /dev/null +++ b/tests/utils/mock-snapshots.ts @@ -0,0 +1,124 @@ +import defaultFetch, { Response } from 'node-fetch'; +import OpenAI from 'openai/index'; +import { RequestInit } from 'openai/_shims/auto/types'; +import { RequestInfo } from 'openai/_shims/auto/types'; +import { mockFetch } from './mock-fetch'; +import { Readable } from 'stream'; + +export async function makeSnapshotRequest(requestFn: (client: OpenAI) => Promise): Promise { + if (process.env['UPDATE_API_SNAPSHOTS'] === '1') { + var capturedResponseContent: string | null = null; + + async function fetch(url: RequestInfo, init?: RequestInit) { + const response = await defaultFetch(url, init); + capturedResponseContent = await response.text(); + return new Response(capturedResponseContent, response); + } + + const openai = new OpenAI({ fetch }); + + const result = await requestFn(openai); + if (!capturedResponseContent) { + throw new Error('did not capture a response'); + } + + const text = capturedResponseContent; + expect(text).toMatchSnapshot(); + return result; + } + + const qualifiedSnapshotName = `${expect.getState().currentTestName} 1`; + const snapshotState = expect.getState()['snapshotState']; + (snapshotState._uncheckedKeys as Set).delete(qualifiedSnapshotName); + + const data = snapshotState._snapshotData[qualifiedSnapshotName]; + if (!data) { + throw new Error(`could not resolve snapshot with name ${qualifiedSnapshotName}`); + } + if (typeof data !== 'string') { + console.error(data); + throw new Error('Expected snapshot data to be a string'); + } + + const { fetch, handleRequest } = mockFetch(); + + const openai = new OpenAI({ fetch, apiKey: 'My API Key' }); + const requestPromise = requestFn(openai); + + await handleRequest(() => + Promise.resolve( + new Response( + // remove leading & trailing quotes + data.slice(2, -2), + { + status: 200, + headers: { 'content-type': 'application/json' }, + }, + ), + ), + ); + + return await requestPromise; +} + +export async function makeStreamSnapshotRequest>( + requestFn: (client: OpenAI) => T, +): Promise { + if (process.env['UPDATE_API_SNAPSHOTS'] === '1') { + var capturedResponseContent: string | null = null; + + async function fetch(url: RequestInfo, init?: RequestInit) { + const response = await defaultFetch(url, init); + capturedResponseContent = await response.text(); + return new Response(Readable.from(capturedResponseContent), response); + } + + const openai = new OpenAI({ fetch }); + + const iterator = requestFn(openai); + for await (const _ of iterator) { + // consume iterator + } + + if (!capturedResponseContent) { + throw new Error('did not capture a response'); + } + + const text = capturedResponseContent; + expect(text).toMatchSnapshot(); + return iterator; + } + + const qualifiedSnapshotName = `${expect.getState().currentTestName} 1`; + const snapshotState = expect.getState()['snapshotState']; + (snapshotState._uncheckedKeys as Set).delete(qualifiedSnapshotName); + + const data = snapshotState._snapshotData[qualifiedSnapshotName]; + if (!data) { + throw new Error(`could not resolve snapshot with name ${qualifiedSnapshotName}`); + } + if (typeof data !== 'string') { + console.error(data); + throw new Error('Expected snapshot data to be a string'); + } + + const { fetch, handleRequest } = mockFetch(); + + const openai = new OpenAI({ fetch, apiKey: 'My API Key' }); + const requestPromise = requestFn(openai); + + await handleRequest(() => + Promise.resolve( + new Response( + // remove leading & trailing quotes + Readable.from(data.slice(2, -2)), + { + status: 200, + headers: { 'content-type': 'application/json' }, + }, + ), + ), + ); + + return requestPromise; +} diff --git a/yarn.lock b/yarn.lock index 358dbf20b..1b0863df1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2916,6 +2916,11 @@ prelude-ls@^1.2.1: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== +"prettier-2@npm:prettier@^2": + version "2.8.8" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" + integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== + prettier-linter-helpers@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" @@ -3496,3 +3501,8 @@ yocto-queue@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +zod@^3.23.8: + version "3.23.8" + resolved "https://registry.yarnpkg.com/zod/-/zod-3.23.8.tgz#e37b957b5d52079769fb8097099b592f0ef4067d" + integrity sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g== From 25610258d01e634e44518aaa0445fcfa3a69856a Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 6 Aug 2024 17:12:22 +0000 Subject: [PATCH 470/725] release: 4.55.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 402862bfb..05aef7cb8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.54.0" + ".": "4.55.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a285f7d15..b667e35a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.55.0 (2024-08-06) + +Full Changelog: [v4.54.0...v4.55.0](https://github.com/openai/openai-node/compare/v4.54.0...v4.55.0) + +### Features + +* **api:** add structured outputs support ([573787c](https://github.com/openai/openai-node/commit/573787cf3ea8eea593eeeb5e24a9256951e2cc35)) + ## 4.54.0 (2024-08-02) Full Changelog: [v4.53.2...v4.54.0](https://github.com/openai/openai-node/compare/v4.53.2...v4.54.0) diff --git a/README.md b/README.md index ea1d54f5b..bc58e1dad 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.54.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.55.0/mod.ts'; ``` diff --git a/package.json b/package.json index 2391c1155..8c6e7ac58 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.54.0", + "version": "4.55.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 438b11e6f..a3e08548c 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.54.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.55.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index bca401fd1..70a133b54 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.54.0'; // x-release-please-version +export const VERSION = '4.55.0'; // x-release-please-version From e002164134ef2f71ea706c2fabe85e84e738568e Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Tue, 6 Aug 2024 17:32:36 +0000 Subject: [PATCH 471/725] chore(api): remove old `AssistantResponseFormat` type (#967) --- .stats.yml | 2 +- src/resources/beta/threads/threads.ts | 13 ------------- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/.stats.yml b/.stats.yml index da2675831..ac652c927 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-c36d30a94622922f83d56a025cdf0095ff7cb18a5138838c698c8443f21fb3a8.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-4097c2f86beb3f3bb021775cd1dfa240e960caf842aeefc2e08da4dc0851ea79.yml diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 0ba3b4dd2..b4551da76 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -118,19 +118,6 @@ export class Threads extends APIResource { } } -/** -<<<<<<< HEAD - * An object describing the expected output of the model. If `json_object` or - * `json_schema`, only `function` type `tools` are allowed to be passed to the Run. - * If `text` the model can return text or any value needed. - */ -export interface AssistantResponseFormat { - /** - * Must be one of `text`, `json_object` or `json_schema`. - */ - type?: 'text' | 'json_object' | 'json_schema'; -} - /** * Specifies the format that the model must output. Compatible with * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), From 28dba51ff8dcec859371d6fdabb6d3e622a1394c Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Wed, 7 Aug 2024 12:56:39 +0100 Subject: [PATCH 472/725] chore(internal): update test snapshots --- tests/lib/ChatCompletionStream.test.ts | 60 ++++++++------ .../ChatCompletionStream.test.ts.snap | 82 ++++++++++--------- tests/lib/__snapshots__/parser.test.ts.snap | 15 ++-- tests/lib/parser.test.ts | 1 + 4 files changed, 87 insertions(+), 71 deletions(-) diff --git a/tests/lib/ChatCompletionStream.test.ts b/tests/lib/ChatCompletionStream.test.ts index 90d551262..e5ef20c9e 100644 --- a/tests/lib/ChatCompletionStream.test.ts +++ b/tests/lib/ChatCompletionStream.test.ts @@ -32,10 +32,10 @@ describe('.stream()', () => { "index": 0, "logprobs": null, "message": { - "content": "{"city":"San Francisco","units":"f"}", + "content": "{"city":"San Francisco","units":"c"}", "parsed": { "city": "San Francisco", - "units": "f", + "units": "c", }, "refusal": null, "role": "assistant", @@ -86,7 +86,7 @@ describe('.stream()', () => { 123, 34, ], - "logprob": -0.0010631788, + "logprob": -0.0036115935, "token": "{"", "top_logprobs": [], }, @@ -97,7 +97,7 @@ describe('.stream()', () => { 116, 121, ], - "logprob": -0.0000017432603, + "logprob": -0.000008418666, "token": "city", "top_logprobs": [], }, @@ -107,7 +107,7 @@ describe('.stream()', () => { 58, 34, ], - "logprob": -0.00018554063, + "logprob": -0.00034666734, "token": "":"", "top_logprobs": [], }, @@ -117,7 +117,7 @@ describe('.stream()', () => { 97, 110, ], - "logprob": -0.016705167, + "logprob": -0.013863761, "token": "San", "top_logprobs": [], }, @@ -134,7 +134,7 @@ describe('.stream()', () => { 99, 111, ], - "logprob": -0.000024630364, + "logprob": -0.00003190179, "token": " Francisco", "top_logprobs": [], }, @@ -144,7 +144,7 @@ describe('.stream()', () => { 44, 34, ], - "logprob": -0.04316578, + "logprob": -0.03384693, "token": "","", "top_logprobs": [], }, @@ -156,7 +156,7 @@ describe('.stream()', () => { 116, 115, ], - "logprob": -3.1281633e-7, + "logprob": -0.0000012664457, "token": "units", "top_logprobs": [], }, @@ -166,7 +166,7 @@ describe('.stream()', () => { 58, 34, ], - "logprob": -0.000014855664, + "logprob": -0.000031305768, "token": "":"", "top_logprobs": [], }, @@ -174,7 +174,7 @@ describe('.stream()', () => { "bytes": [ 102, ], - "logprob": -0.38687104, + "logprob": -0.5759394, "token": "f", "top_logprobs": [], }, @@ -183,7 +183,7 @@ describe('.stream()', () => { 34, 125, ], - "logprob": -0.000048113485, + "logprob": -0.0000420341, "token": ""}", "top_logprobs": [], }, @@ -248,10 +248,22 @@ describe('.stream()', () => { 39, 109, ], - "logprob": -0.0052259327, + "logprob": -0.0020705638, "token": "I'm", "top_logprobs": [], }, + { + "bytes": [ + 32, + 118, + 101, + 114, + 121, + ], + "logprob": -0.60976714, + "token": " very", + "top_logprobs": [], + }, { "bytes": [ 32, @@ -261,7 +273,7 @@ describe('.stream()', () => { 114, 121, ], - "logprob": -0.9804326, + "logprob": -0.000008180258, "token": " sorry", "top_logprobs": [], }, @@ -269,7 +281,7 @@ describe('.stream()', () => { "bytes": [ 44, ], - "logprob": -0.00006086828, + "logprob": -0.000040603656, "token": ",", "top_logprobs": [], }, @@ -280,7 +292,7 @@ describe('.stream()', () => { 117, 116, ], - "logprob": -1.1371382, + "logprob": -0.048603047, "token": " but", "top_logprobs": [], }, @@ -289,7 +301,7 @@ describe('.stream()', () => { 32, 73, ], - "logprob": -0.01050545, + "logprob": -0.003929745, "token": " I", "top_logprobs": [], }, @@ -302,7 +314,7 @@ describe('.stream()', () => { 39, 116, ], - "logprob": -0.2896076, + "logprob": -0.012669391, "token": " can't", "top_logprobs": [], }, @@ -316,7 +328,7 @@ describe('.stream()', () => { 115, 116, ], - "logprob": -0.031149099, + "logprob": -0.0036209812, "token": " assist", "top_logprobs": [], }, @@ -328,7 +340,7 @@ describe('.stream()', () => { 116, 104, ], - "logprob": -0.0052447836, + "logprob": -0.0052407524, "token": " with", "top_logprobs": [], }, @@ -340,7 +352,7 @@ describe('.stream()', () => { 97, 116, ], - "logprob": -0.0049340394, + "logprob": -0.0029618926, "token": " that", "top_logprobs": [], }, @@ -355,7 +367,7 @@ describe('.stream()', () => { 115, 116, ], - "logprob": -0.006166848, + "logprob": -1.7024335, "token": " request", "top_logprobs": [], }, @@ -363,7 +375,7 @@ describe('.stream()', () => { "bytes": [ 46, ], - "logprob": -0.0000066306106, + "logprob": -0.0000026968896, "token": ".", "top_logprobs": [], }, @@ -372,7 +384,7 @@ describe('.stream()', () => { "message": { "content": null, "parsed": null, - "refusal": "I'm sorry, but I can't assist with that request.", + "refusal": "I'm very sorry, but I can't assist with that request.", "role": "assistant", "tool_calls": [], }, diff --git a/tests/lib/__snapshots__/ChatCompletionStream.test.ts.snap b/tests/lib/__snapshots__/ChatCompletionStream.test.ts.snap index b9a1c2e36..65740382e 100644 --- a/tests/lib/__snapshots__/ChatCompletionStream.test.ts.snap +++ b/tests/lib/__snapshots__/ChatCompletionStream.test.ts.snap @@ -1,31 +1,31 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`.stream() emits content logprobs events 1`] = ` -"data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":{"content":[],"refusal":null},"finish_reason":null}]} +"data: {"id":"chatcmpl-9tZXFsqeQOozn5YU8I6SbjkmDnN76","object":"chat.completion.chunk","created":1723031665,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":{"content":[],"refusal":null},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"content":"{\\""},"logprobs":{"content":[{"token":"{\\"","logprob":-0.0010631788,"bytes":[123,34],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXFsqeQOozn5YU8I6SbjkmDnN76","object":"chat.completion.chunk","created":1723031665,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"content":"{\\""},"logprobs":{"content":[{"token":"{\\"","logprob":-0.0036115935,"bytes":[123,34],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"content":"city"},"logprobs":{"content":[{"token":"city","logprob":-1.7432603e-6,"bytes":[99,105,116,121],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXFsqeQOozn5YU8I6SbjkmDnN76","object":"chat.completion.chunk","created":1723031665,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"content":"city"},"logprobs":{"content":[{"token":"city","logprob":-8.418666e-6,"bytes":[99,105,116,121],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"content":"\\":\\""},"logprobs":{"content":[{"token":"\\":\\"","logprob":-0.00018554063,"bytes":[34,58,34],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXFsqeQOozn5YU8I6SbjkmDnN76","object":"chat.completion.chunk","created":1723031665,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"content":"\\":\\""},"logprobs":{"content":[{"token":"\\":\\"","logprob":-0.00034666734,"bytes":[34,58,34],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"content":"San"},"logprobs":{"content":[{"token":"San","logprob":-0.016705167,"bytes":[83,97,110],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXFsqeQOozn5YU8I6SbjkmDnN76","object":"chat.completion.chunk","created":1723031665,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"content":"San"},"logprobs":{"content":[{"token":"San","logprob":-0.013863761,"bytes":[83,97,110],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"content":" Francisco"},"logprobs":{"content":[{"token":" Francisco","logprob":-0.000024630364,"bytes":[32,70,114,97,110,99,105,115,99,111],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXFsqeQOozn5YU8I6SbjkmDnN76","object":"chat.completion.chunk","created":1723031665,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"content":" Francisco"},"logprobs":{"content":[{"token":" Francisco","logprob":-0.00003190179,"bytes":[32,70,114,97,110,99,105,115,99,111],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"content":"\\",\\""},"logprobs":{"content":[{"token":"\\",\\"","logprob":-0.04316578,"bytes":[34,44,34],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXFsqeQOozn5YU8I6SbjkmDnN76","object":"chat.completion.chunk","created":1723031665,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"content":"\\",\\""},"logprobs":{"content":[{"token":"\\",\\"","logprob":-0.03384693,"bytes":[34,44,34],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"content":"units"},"logprobs":{"content":[{"token":"units","logprob":-3.1281633e-7,"bytes":[117,110,105,116,115],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXFsqeQOozn5YU8I6SbjkmDnN76","object":"chat.completion.chunk","created":1723031665,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"content":"units"},"logprobs":{"content":[{"token":"units","logprob":-1.2664457e-6,"bytes":[117,110,105,116,115],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"content":"\\":\\""},"logprobs":{"content":[{"token":"\\":\\"","logprob":-0.000014855664,"bytes":[34,58,34],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXFsqeQOozn5YU8I6SbjkmDnN76","object":"chat.completion.chunk","created":1723031665,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"content":"\\":\\""},"logprobs":{"content":[{"token":"\\":\\"","logprob":-0.000031305768,"bytes":[34,58,34],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"content":"f"},"logprobs":{"content":[{"token":"f","logprob":-0.38687104,"bytes":[102],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXFsqeQOozn5YU8I6SbjkmDnN76","object":"chat.completion.chunk","created":1723031665,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"content":"f"},"logprobs":{"content":[{"token":"f","logprob":-0.5759394,"bytes":[102],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"content":"\\"}"},"logprobs":{"content":[{"token":"\\"}","logprob":-0.000048113485,"bytes":[34,125],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXFsqeQOozn5YU8I6SbjkmDnN76","object":"chat.completion.chunk","created":1723031665,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"content":"\\"}"},"logprobs":{"content":[{"token":"\\"}","logprob":-0.0000420341,"bytes":[34,125],"top_logprobs":[]}],"refusal":null},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} +data: {"id":"chatcmpl-9tZXFsqeQOozn5YU8I6SbjkmDnN76","object":"chat.completion.chunk","created":1723031665,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} -data: {"id":"chatcmpl-9tFFhvwddlKXEZj9F9teQLWLzWjmF","object":"chat.completion.chunk","created":1722953697,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[],"usage":{"prompt_tokens":17,"completion_tokens":10,"total_tokens":27}} +data: {"id":"chatcmpl-9tZXFsqeQOozn5YU8I6SbjkmDnN76","object":"chat.completion.chunk","created":1723031665,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[],"usage":{"prompt_tokens":17,"completion_tokens":10,"total_tokens":27}} data: [DONE] @@ -33,33 +33,35 @@ data: [DONE] `; exports[`.stream() emits refusal logprobs events 1`] = ` -"data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"role":"assistant","content":null,"refusal":""},"logprobs":{"content":null,"refusal":[]},"finish_reason":null}]} +"data: {"id":"chatcmpl-9tZXGacdbmJYO8K50haE4OauaJmPn","object":"chat.completion.chunk","created":1723031666,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_2a322c9ffc","choices":[{"index":0,"delta":{"role":"assistant","content":null,"refusal":""},"logprobs":{"content":null,"refusal":[]},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":"I'm"},"logprobs":{"content":null,"refusal":[{"token":"I'm","logprob":-0.0052259327,"bytes":[73,39,109],"top_logprobs":[]}]},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXGacdbmJYO8K50haE4OauaJmPn","object":"chat.completion.chunk","created":1723031666,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_2a322c9ffc","choices":[{"index":0,"delta":{"refusal":"I'm"},"logprobs":{"content":null,"refusal":[{"token":"I'm","logprob":-0.0020705638,"bytes":[73,39,109],"top_logprobs":[]}]},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":" sorry"},"logprobs":{"content":null,"refusal":[{"token":" sorry","logprob":-0.9804326,"bytes":[32,115,111,114,114,121],"top_logprobs":[]}]},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXGacdbmJYO8K50haE4OauaJmPn","object":"chat.completion.chunk","created":1723031666,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_2a322c9ffc","choices":[{"index":0,"delta":{"refusal":" very"},"logprobs":{"content":null,"refusal":[{"token":" very","logprob":-0.60976714,"bytes":[32,118,101,114,121],"top_logprobs":[]}]},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":","},"logprobs":{"content":null,"refusal":[{"token":",","logprob":-0.00006086828,"bytes":[44],"top_logprobs":[]}]},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXGacdbmJYO8K50haE4OauaJmPn","object":"chat.completion.chunk","created":1723031666,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_2a322c9ffc","choices":[{"index":0,"delta":{"refusal":" sorry"},"logprobs":{"content":null,"refusal":[{"token":" sorry","logprob":-8.180258e-6,"bytes":[32,115,111,114,114,121],"top_logprobs":[]}]},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":" but"},"logprobs":{"content":null,"refusal":[{"token":" but","logprob":-1.1371382,"bytes":[32,98,117,116],"top_logprobs":[]}]},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXGacdbmJYO8K50haE4OauaJmPn","object":"chat.completion.chunk","created":1723031666,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_2a322c9ffc","choices":[{"index":0,"delta":{"refusal":","},"logprobs":{"content":null,"refusal":[{"token":",","logprob":-0.000040603656,"bytes":[44],"top_logprobs":[]}]},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":" I"},"logprobs":{"content":null,"refusal":[{"token":" I","logprob":-0.01050545,"bytes":[32,73],"top_logprobs":[]}]},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXGacdbmJYO8K50haE4OauaJmPn","object":"chat.completion.chunk","created":1723031666,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_2a322c9ffc","choices":[{"index":0,"delta":{"refusal":" but"},"logprobs":{"content":null,"refusal":[{"token":" but","logprob":-0.048603047,"bytes":[32,98,117,116],"top_logprobs":[]}]},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":" can't"},"logprobs":{"content":null,"refusal":[{"token":" can't","logprob":-0.2896076,"bytes":[32,99,97,110,39,116],"top_logprobs":[]}]},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXGacdbmJYO8K50haE4OauaJmPn","object":"chat.completion.chunk","created":1723031666,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_2a322c9ffc","choices":[{"index":0,"delta":{"refusal":" I"},"logprobs":{"content":null,"refusal":[{"token":" I","logprob":-0.003929745,"bytes":[32,73],"top_logprobs":[]}]},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":" assist"},"logprobs":{"content":null,"refusal":[{"token":" assist","logprob":-0.031149099,"bytes":[32,97,115,115,105,115,116],"top_logprobs":[]}]},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXGacdbmJYO8K50haE4OauaJmPn","object":"chat.completion.chunk","created":1723031666,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_2a322c9ffc","choices":[{"index":0,"delta":{"refusal":" can't"},"logprobs":{"content":null,"refusal":[{"token":" can't","logprob":-0.012669391,"bytes":[32,99,97,110,39,116],"top_logprobs":[]}]},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":" with"},"logprobs":{"content":null,"refusal":[{"token":" with","logprob":-0.0052447836,"bytes":[32,119,105,116,104],"top_logprobs":[]}]},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXGacdbmJYO8K50haE4OauaJmPn","object":"chat.completion.chunk","created":1723031666,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_2a322c9ffc","choices":[{"index":0,"delta":{"refusal":" assist"},"logprobs":{"content":null,"refusal":[{"token":" assist","logprob":-0.0036209812,"bytes":[32,97,115,115,105,115,116],"top_logprobs":[]}]},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":" that"},"logprobs":{"content":null,"refusal":[{"token":" that","logprob":-0.0049340394,"bytes":[32,116,104,97,116],"top_logprobs":[]}]},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXGacdbmJYO8K50haE4OauaJmPn","object":"chat.completion.chunk","created":1723031666,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_2a322c9ffc","choices":[{"index":0,"delta":{"refusal":" with"},"logprobs":{"content":null,"refusal":[{"token":" with","logprob":-0.0052407524,"bytes":[32,119,105,116,104],"top_logprobs":[]}]},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":" request"},"logprobs":{"content":null,"refusal":[{"token":" request","logprob":-0.006166848,"bytes":[32,114,101,113,117,101,115,116],"top_logprobs":[]}]},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXGacdbmJYO8K50haE4OauaJmPn","object":"chat.completion.chunk","created":1723031666,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_2a322c9ffc","choices":[{"index":0,"delta":{"refusal":" that"},"logprobs":{"content":null,"refusal":[{"token":" that","logprob":-0.0029618926,"bytes":[32,116,104,97,116],"top_logprobs":[]}]},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{"refusal":"."},"logprobs":{"content":null,"refusal":[{"token":".","logprob":-6.6306106e-6,"bytes":[46],"top_logprobs":[]}]},"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXGacdbmJYO8K50haE4OauaJmPn","object":"chat.completion.chunk","created":1723031666,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_2a322c9ffc","choices":[{"index":0,"delta":{"refusal":" request"},"logprobs":{"content":null,"refusal":[{"token":" request","logprob":-1.7024335,"bytes":[32,114,101,113,117,101,115,116],"top_logprobs":[]}]},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} +data: {"id":"chatcmpl-9tZXGacdbmJYO8K50haE4OauaJmPn","object":"chat.completion.chunk","created":1723031666,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_2a322c9ffc","choices":[{"index":0,"delta":{"refusal":"."},"logprobs":{"content":null,"refusal":[{"token":".","logprob":-2.6968896e-6,"bytes":[46],"top_logprobs":[]}]},"finish_reason":null}]} -data: {"id":"chatcmpl-9tFB440fGSTv1IlrIwtRq0RCbqx1z","object":"chat.completion.chunk","created":1722953410,"model":"gpt-4o-so","system_fingerprint":"fp_e1a05a1dce","choices":[],"usage":{"prompt_tokens":17,"completion_tokens":12,"total_tokens":29}} +data: {"id":"chatcmpl-9tZXGacdbmJYO8K50haE4OauaJmPn","object":"chat.completion.chunk","created":1723031666,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_2a322c9ffc","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + +data: {"id":"chatcmpl-9tZXGacdbmJYO8K50haE4OauaJmPn","object":"chat.completion.chunk","created":1723031666,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_2a322c9ffc","choices":[],"usage":{"prompt_tokens":17,"completion_tokens":13,"total_tokens":30}} data: [DONE] @@ -67,31 +69,31 @@ data: [DONE] `; exports[`.stream() works 1`] = ` -"data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} +"data: {"id":"chatcmpl-9tZXEmwtoDf6vqCqEWSvDP8jx9OXe","object":"chat.completion.chunk","created":1723031664,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"content":"{\\""},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXEmwtoDf6vqCqEWSvDP8jx9OXe","object":"chat.completion.chunk","created":1723031664,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"content":"{\\""},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"content":"city"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXEmwtoDf6vqCqEWSvDP8jx9OXe","object":"chat.completion.chunk","created":1723031664,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"content":"city"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"content":"\\":\\""},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXEmwtoDf6vqCqEWSvDP8jx9OXe","object":"chat.completion.chunk","created":1723031664,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"content":"\\":\\""},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"content":"San"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXEmwtoDf6vqCqEWSvDP8jx9OXe","object":"chat.completion.chunk","created":1723031664,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"content":"San"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"content":" Francisco"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXEmwtoDf6vqCqEWSvDP8jx9OXe","object":"chat.completion.chunk","created":1723031664,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"content":" Francisco"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"content":"\\",\\""},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXEmwtoDf6vqCqEWSvDP8jx9OXe","object":"chat.completion.chunk","created":1723031664,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"content":"\\",\\""},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"content":"units"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXEmwtoDf6vqCqEWSvDP8jx9OXe","object":"chat.completion.chunk","created":1723031664,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"content":"units"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"content":"\\":\\""},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXEmwtoDf6vqCqEWSvDP8jx9OXe","object":"chat.completion.chunk","created":1723031664,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"content":"\\":\\""},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"content":"f"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXEmwtoDf6vqCqEWSvDP8jx9OXe","object":"chat.completion.chunk","created":1723031664,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"content":"c"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{"content":"\\"}"},"logprobs":null,"finish_reason":null}]} +data: {"id":"chatcmpl-9tZXEmwtoDf6vqCqEWSvDP8jx9OXe","object":"chat.completion.chunk","created":1723031664,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{"content":"\\"}"},"logprobs":null,"finish_reason":null}]} -data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} +data: {"id":"chatcmpl-9tZXEmwtoDf6vqCqEWSvDP8jx9OXe","object":"chat.completion.chunk","created":1723031664,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} -data: {"id":"chatcmpl-9rnyXoOvZN6Ec33DKStiqSdEB76Ba","object":"chat.completion.chunk","created":1722610517,"model":"gpt-4o-so","system_fingerprint":"fp_6dc10860e8","choices":[],"usage":{"prompt_tokens":71,"completion_tokens":10,"total_tokens":81}} +data: {"id":"chatcmpl-9tZXEmwtoDf6vqCqEWSvDP8jx9OXe","object":"chat.completion.chunk","created":1723031664,"model":"gpt-4o-2024-08-06","system_fingerprint":"fp_845eaabc1f","choices":[],"usage":{"prompt_tokens":17,"completion_tokens":10,"total_tokens":27}} data: [DONE] diff --git a/tests/lib/__snapshots__/parser.test.ts.snap b/tests/lib/__snapshots__/parser.test.ts.snap index 2bae7e67c..1eac9db47 100644 --- a/tests/lib/__snapshots__/parser.test.ts.snap +++ b/tests/lib/__snapshots__/parser.test.ts.snap @@ -2,27 +2,28 @@ exports[`.parse() zod deserialises response_format 1`] = ` "{ - "id": "chatcmpl-9ro1LmtFYq4FuAudjIkDJUr8IYum3", + "id": "chatcmpl-9tZXFjiGKgtrHZeIxvkklWe51DYZp", "object": "chat.completion", - "created": 1722610691, - "model": "gpt-4o-so", + "created": 1723031665, + "model": "gpt-4o-2024-08-06", "choices": [ { "index": 0, "message": { "role": "assistant", - "content": "{\\"city\\":\\"San Francisco\\",\\"units\\":\\"f\\"}" + "content": "{\\"city\\":\\"San Francisco\\",\\"units\\":\\"f\\"}", + "refusal": null }, "logprobs": null, "finish_reason": "stop" } ], "usage": { - "prompt_tokens": 71, + "prompt_tokens": 17, "completion_tokens": 10, - "total_tokens": 81 + "total_tokens": 27 }, - "system_fingerprint": "fp_6dc10860e8" + "system_fingerprint": "fp_2a322c9ffc" } " `; diff --git a/tests/lib/parser.test.ts b/tests/lib/parser.test.ts index c18264b2c..0cd07134a 100644 --- a/tests/lib/parser.test.ts +++ b/tests/lib/parser.test.ts @@ -37,6 +37,7 @@ describe('.parse()', () => { "city": "San Francisco", "units": "f", }, + "refusal": null, "role": "assistant", "tool_calls": [], }, From 086421f45874bf0e28c69a9ed42fa587cac47b29 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Wed, 7 Aug 2024 14:11:32 +0100 Subject: [PATCH 473/725] chore(vendor/zodJsonSchema): add option to duplicate top-level ref --- src/_vendor/zod-to-json-schema/Options.ts | 2 +- src/_vendor/zod-to-json-schema/Refs.ts | 7 +++++++ src/_vendor/zod-to-json-schema/parseDef.ts | 4 ++++ .../zod-to-json-schema/zodToJsonSchema.ts | 16 ++++++++++++++++ 4 files changed, 28 insertions(+), 1 deletion(-) diff --git a/src/_vendor/zod-to-json-schema/Options.ts b/src/_vendor/zod-to-json-schema/Options.ts index dd04692f1..9a5628846 100644 --- a/src/_vendor/zod-to-json-schema/Options.ts +++ b/src/_vendor/zod-to-json-schema/Options.ts @@ -27,7 +27,7 @@ export type Options = { applyRegexFlags: boolean; emailStrategy: 'format:email' | 'format:idn-email' | 'pattern:zod'; base64Strategy: 'format:binary' | 'contentEncoding:base64' | 'pattern:zod'; - nameStrategy: 'ref' | 'title'; + nameStrategy: 'ref' | 'duplicate-ref' | 'title'; override?: ( def: ZodTypeDef, refs: Refs, diff --git a/src/_vendor/zod-to-json-schema/Refs.ts b/src/_vendor/zod-to-json-schema/Refs.ts index 6dad82f07..559641601 100644 --- a/src/_vendor/zod-to-json-schema/Refs.ts +++ b/src/_vendor/zod-to-json-schema/Refs.ts @@ -4,6 +4,12 @@ import { JsonSchema7Type } from './parseDef'; export type Refs = { seen: Map; + /** + * Set of all the `$ref`s we created, e.g. `Set(['#/$defs/ui'])` + * this notable does not include any `definitions` that were + * explicitly given as an option. + */ + seenRefs: Set; currentPath: string[]; propertyPath: string[] | undefined; } & Options; @@ -24,6 +30,7 @@ export const getRefs = (options?: string | Partial>): Refs => { ..._options, currentPath: currentPath, propertyPath: undefined, + seenRefs: new Set(), seen: new Map( Object.entries(_options.definitions).map(([name, def]) => [ def._def, diff --git a/src/_vendor/zod-to-json-schema/parseDef.ts b/src/_vendor/zod-to-json-schema/parseDef.ts index c22fc33eb..d37653d4e 100644 --- a/src/_vendor/zod-to-json-schema/parseDef.ts +++ b/src/_vendor/zod-to-json-schema/parseDef.ts @@ -87,6 +87,10 @@ export function parseDef( const seenSchema = get$ref(seenItem, refs); if (seenSchema !== undefined) { + if ('$ref' in seenSchema) { + refs.seenRefs.add(seenSchema.$ref); + } + return seenSchema; } } diff --git a/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts b/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts index a744634be..5547c4c37 100644 --- a/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts +++ b/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts @@ -61,6 +61,8 @@ const zodToJsonSchema = ( main.title = title; } + const rootRefPath = name ? [...refs.basePath, refs.definitionPath, name].join('/') : null; + const combined: ReturnType> = name === undefined ? definitions ? @@ -69,6 +71,20 @@ const zodToJsonSchema = ( [refs.definitionPath]: definitions, } : main + : refs.nameStrategy === 'duplicate-ref' ? + { + ...main, + ...(definitions || refs.seenRefs.has(rootRefPath!) ? + { + [refs.definitionPath]: { + ...definitions, + // only actually duplicate the schema definition if it was ever referenced + // otherwise the duplication is completely pointless + ...(refs.seenRefs.has(rootRefPath!) ? { [name]: main } : undefined), + }, + } + : undefined), + } : { $ref: [...(refs.$refStrategy === 'relative' ? [] : refs.basePath), refs.definitionPath, name].join( '/', From 8b1b4b3573717e9e807b4caef6e47209b96f19e0 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Wed, 7 Aug 2024 15:09:04 +0100 Subject: [PATCH 474/725] fix(helpers/zod): correct schema generation for recursive schemas --- src/helpers/zod.ts | 12 +- tests/lib/__snapshots__/parser.test.ts.snap | 28 +++ tests/lib/parser.test.ts | 223 ++++++++++++++++++++ 3 files changed, 259 insertions(+), 4 deletions(-) diff --git a/src/helpers/zod.ts b/src/helpers/zod.ts index ed83d3510..a7b45268d 100644 --- a/src/helpers/zod.ts +++ b/src/helpers/zod.ts @@ -8,8 +8,12 @@ import { } from '../lib/parser'; import { zodToJsonSchema as _zodToJsonSchema } from '../_vendor/zod-to-json-schema'; -function zodToJsonSchema(schema: z.ZodType): Record { - return _zodToJsonSchema(schema, { openaiStrictMode: true }); +function zodToJsonSchema(schema: z.ZodType, options: { name: string }): Record { + return _zodToJsonSchema(schema, { + openaiStrictMode: true, + name: options.name, + nameStrategy: 'duplicate-ref', + }); } /** @@ -61,7 +65,7 @@ export function zodResponseFormat( ...props, name, strict: true, - schema: zodToJsonSchema(zodObject), + schema: zodToJsonSchema(zodObject, { name }), }, }, (content) => zodObject.parse(JSON.parse(content)), @@ -89,7 +93,7 @@ export function zodFunction(options: { type: 'function', function: { name: options.name, - parameters: zodToJsonSchema(options.parameters), + parameters: zodToJsonSchema(options.parameters, { name: options.name }), strict: true, ...(options.description ? { description: options.description } : undefined), }, diff --git a/tests/lib/__snapshots__/parser.test.ts.snap b/tests/lib/__snapshots__/parser.test.ts.snap index 1eac9db47..e6f2799af 100644 --- a/tests/lib/__snapshots__/parser.test.ts.snap +++ b/tests/lib/__snapshots__/parser.test.ts.snap @@ -27,3 +27,31 @@ exports[`.parse() zod deserialises response_format 1`] = ` } " `; + +exports[`.parse() zod top-level recursive schemas 1`] = ` +"{ + "id": "chatcmpl-9taiMDrRVRIkk1Xg1yE82UjnYuZjt", + "object": "chat.completion", + "created": 1723036198, + "model": "gpt-4o-2024-08-06", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "{\\"type\\":\\"form\\",\\"label\\":\\"User Profile Form\\",\\"children\\":[{\\"type\\":\\"field\\",\\"label\\":\\"Full Name\\",\\"children\\":[],\\"attributes\\":[{\\"name\\":\\"type\\",\\"value\\":\\"text\\"},{\\"name\\":\\"placeholder\\",\\"value\\":\\"Enter your full name\\"}]},{\\"type\\":\\"field\\",\\"label\\":\\"Email Address\\",\\"children\\":[],\\"attributes\\":[{\\"name\\":\\"type\\",\\"value\\":\\"email\\"},{\\"name\\":\\"placeholder\\",\\"value\\":\\"Enter your email address\\"}]},{\\"type\\":\\"field\\",\\"label\\":\\"Phone Number\\",\\"children\\":[],\\"attributes\\":[{\\"name\\":\\"type\\",\\"value\\":\\"tel\\"},{\\"name\\":\\"placeholder\\",\\"value\\":\\"Enter your phone number\\"}]},{\\"type\\":\\"button\\",\\"label\\":\\"Submit\\",\\"children\\":[],\\"attributes\\":[{\\"name\\":\\"type\\",\\"value\\":\\"submit\\"}]}],\\"attributes\\":[{\\"name\\":\\"method\\",\\"value\\":\\"post\\"},{\\"name\\":\\"action\\",\\"value\\":\\"/submit-profile\\"}]}", + "refusal": null + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 38, + "completion_tokens": 168, + "total_tokens": 206 + }, + "system_fingerprint": "fp_845eaabc1f" +} +" +`; diff --git a/tests/lib/parser.test.ts b/tests/lib/parser.test.ts index 0cd07134a..118954492 100644 --- a/tests/lib/parser.test.ts +++ b/tests/lib/parser.test.ts @@ -44,5 +44,228 @@ describe('.parse()', () => { } `); }); + + test('top-level recursive schemas', async () => { + const UI: any = z.lazy(() => + z.object({ + type: z.enum(['div', 'button', 'header', 'section', 'field', 'form']), + label: z.string(), + children: z.array(UI), + attributes: z.array( + z.object({ + name: z.string(), + value: z.string(), + }), + ), + }), + ); + + const completion = await makeSnapshotRequest((openai) => + openai.beta.chat.completions.parse({ + model: 'gpt-4o-2024-08-06', + messages: [ + { + role: 'system', + content: 'You are a UI generator AI. Convert the user input into a UI.', + }, + { role: 'user', content: 'Make a User Profile Form with 3 fields' }, + ], + response_format: zodResponseFormat(UI, 'ui'), + }), + ); + + expect(completion.choices[0]?.message).toMatchInlineSnapshot(` + { + "content": "{"type":"form","label":"User Profile Form","children":[{"type":"field","label":"Full Name","children":[],"attributes":[{"name":"type","value":"text"},{"name":"placeholder","value":"Enter your full name"}]},{"type":"field","label":"Email Address","children":[],"attributes":[{"name":"type","value":"email"},{"name":"placeholder","value":"Enter your email address"}]},{"type":"field","label":"Phone Number","children":[],"attributes":[{"name":"type","value":"tel"},{"name":"placeholder","value":"Enter your phone number"}]},{"type":"button","label":"Submit","children":[],"attributes":[{"name":"type","value":"submit"}]}],"attributes":[{"name":"method","value":"post"},{"name":"action","value":"/submit-profile"}]}", + "parsed": { + "attributes": [ + { + "name": "method", + "value": "post", + }, + { + "name": "action", + "value": "/submit-profile", + }, + ], + "children": [ + { + "attributes": [ + { + "name": "type", + "value": "text", + }, + { + "name": "placeholder", + "value": "Enter your full name", + }, + ], + "children": [], + "label": "Full Name", + "type": "field", + }, + { + "attributes": [ + { + "name": "type", + "value": "email", + }, + { + "name": "placeholder", + "value": "Enter your email address", + }, + ], + "children": [], + "label": "Email Address", + "type": "field", + }, + { + "attributes": [ + { + "name": "type", + "value": "tel", + }, + { + "name": "placeholder", + "value": "Enter your phone number", + }, + ], + "children": [], + "label": "Phone Number", + "type": "field", + }, + { + "attributes": [ + { + "name": "type", + "value": "submit", + }, + ], + "children": [], + "label": "Submit", + "type": "button", + }, + ], + "label": "User Profile Form", + "type": "form", + }, + "refusal": null, + "role": "assistant", + "tool_calls": [], + } + `); + + expect(zodResponseFormat(UI, 'ui').json_schema).toMatchInlineSnapshot(` + { + "name": "ui", + "schema": { + "$schema": "http://json-schema.org/draft-07/schema#", + "additionalProperties": false, + "definitions": { + "ui": { + "additionalProperties": false, + "properties": { + "attributes": { + "items": { + "additionalProperties": false, + "properties": { + "name": { + "type": "string", + }, + "value": { + "type": "string", + }, + }, + "required": [ + "name", + "value", + ], + "type": "object", + }, + "type": "array", + }, + "children": { + "items": { + "$ref": "#/definitions/ui", + }, + "type": "array", + }, + "label": { + "type": "string", + }, + "type": { + "enum": [ + "div", + "button", + "header", + "section", + "field", + "form", + ], + "type": "string", + }, + }, + "required": [ + "type", + "label", + "children", + "attributes", + ], + "type": "object", + }, + }, + "properties": { + "attributes": { + "items": { + "additionalProperties": false, + "properties": { + "name": { + "type": "string", + }, + "value": { + "type": "string", + }, + }, + "required": [ + "name", + "value", + ], + "type": "object", + }, + "type": "array", + }, + "children": { + "items": { + "$ref": "#/definitions/ui", + }, + "type": "array", + }, + "label": { + "type": "string", + }, + "type": { + "enum": [ + "div", + "button", + "header", + "section", + "field", + "form", + ], + "type": "string", + }, + }, + "required": [ + "type", + "label", + "children", + "attributes", + ], + "type": "object", + }, + "strict": true, + } + `); + }); }); }); From fe8328f5ddc9c0aa439604fc3a7d4e193a10e116 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Wed, 7 Aug 2024 14:20:59 +0100 Subject: [PATCH 475/725] docs(examples): add UI generation example script --- examples/ui-generation.ts | 51 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 examples/ui-generation.ts diff --git a/examples/ui-generation.ts b/examples/ui-generation.ts new file mode 100644 index 000000000..84636b1f0 --- /dev/null +++ b/examples/ui-generation.ts @@ -0,0 +1,51 @@ +import OpenAI from 'openai'; +import { z } from 'zod'; +import { zodResponseFormat } from 'openai/helpers/zod'; + +const openai = new OpenAI(); + +// `z.lazy()` can't infer recursive types so we have to explicitly +// define the type ourselves here +interface UI { + type: 'div' | 'button' | 'header' | 'section' | 'field' | 'form'; + label: string; + children: Array; + attributes: { + value: string; + name: string; + }[]; +} + +const UISchema: z.ZodType = z.lazy(() => + z.object({ + type: z.enum(['div', 'button', 'header', 'section', 'field', 'form']), + label: z.string(), + children: z.array(UISchema), + attributes: z.array( + z.object({ + name: z.string(), + value: z.string(), + }), + ), + }), +); + +async function main() { + const completion = await openai.beta.chat.completions.parse({ + model: 'gpt-4o-2024-08-06', + messages: [ + { + role: 'system', + content: 'You are a UI generator AI. Convert the user input into a UI.', + }, + { role: 'user', content: 'Make a User Profile Form' }, + ], + response_format: zodResponseFormat(UISchema, 'ui'), + }); + + const message = completion.choices[0]!.message; + const ui = message.parsed; + console.dir(ui, { depth: 10 }); +} + +main(); From 31e4afd6ca50e8e2560598296c099390c5956e31 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 7 Aug 2024 14:46:12 +0000 Subject: [PATCH 476/725] release: 4.55.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 20 ++++++++++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 25 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 05aef7cb8..a2fc4e17b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.55.0" + ".": "4.55.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b667e35a6..0b24ff704 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## 4.55.1 (2024-08-07) + +Full Changelog: [v4.55.0...v4.55.1](https://github.com/openai/openai-node/compare/v4.55.0...v4.55.1) + +### Bug Fixes + +* **helpers/zod:** correct schema generation for recursive schemas ([cb54d93](https://github.com/openai/openai-node/commit/cb54d93162c86ecfd476733805a431aab25d86d6)) + + +### Chores + +* **api:** remove old `AssistantResponseFormat` type ([#967](https://github.com/openai/openai-node/issues/967)) ([9fd94bf](https://github.com/openai/openai-node/commit/9fd94bfc35128d3bc45fbf0a65e6a8d2ea4562d5)) +* **internal:** update test snapshots ([bceea60](https://github.com/openai/openai-node/commit/bceea60e461c40a9e59d52772122dd612a2ff1c4)) +* **vendor/zodJsonSchema:** add option to duplicate top-level ref ([84b8a38](https://github.com/openai/openai-node/commit/84b8a3820b0ce1c78bfd3db468d8d2962875b4ab)) + + +### Documentation + +* **examples:** add UI generation example script ([c75c017](https://github.com/openai/openai-node/commit/c75c017c16cbfe3fc60ea4ee5779782005e64463)) + ## 4.55.0 (2024-08-06) Full Changelog: [v4.54.0...v4.55.0](https://github.com/openai/openai-node/compare/v4.54.0...v4.55.0) diff --git a/README.md b/README.md index bc58e1dad..5d98201af 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.55.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.55.1/mod.ts'; ``` diff --git a/package.json b/package.json index 8c6e7ac58..923009ad9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.55.0", + "version": "4.55.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index a3e08548c..f50d7c45d 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.55.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.55.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 70a133b54..059a09162 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.55.0'; // x-release-please-version +export const VERSION = '4.55.1'; // x-release-please-version From 8e8a5c46626176bdd569624a77b80a1ad8058f17 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Thu, 8 Aug 2024 14:45:47 +0100 Subject: [PATCH 477/725] fix(helpers/zod): correct logic for adding root schema to definitions --- .../zod-to-json-schema/zodToJsonSchema.ts | 6 +- tests/lib/parser.test.ts | 179 ++++++++++++++++++ 2 files changed, 181 insertions(+), 4 deletions(-) diff --git a/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts b/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts index 5547c4c37..1d95a98ba 100644 --- a/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts +++ b/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts @@ -61,8 +61,6 @@ const zodToJsonSchema = ( main.title = title; } - const rootRefPath = name ? [...refs.basePath, refs.definitionPath, name].join('/') : null; - const combined: ReturnType> = name === undefined ? definitions ? @@ -74,13 +72,13 @@ const zodToJsonSchema = ( : refs.nameStrategy === 'duplicate-ref' ? { ...main, - ...(definitions || refs.seenRefs.has(rootRefPath!) ? + ...(definitions || refs.seenRefs.size ? { [refs.definitionPath]: { ...definitions, // only actually duplicate the schema definition if it was ever referenced // otherwise the duplication is completely pointless - ...(refs.seenRefs.has(rootRefPath!) ? { [name]: main } : undefined), + ...(refs.seenRefs.size ? { [name]: main } : undefined), }, } : undefined), diff --git a/tests/lib/parser.test.ts b/tests/lib/parser.test.ts index 118954492..296787450 100644 --- a/tests/lib/parser.test.ts +++ b/tests/lib/parser.test.ts @@ -267,5 +267,184 @@ describe('.parse()', () => { } `); }); + + test('merged schemas', async () => { + const personSchema = z.object({ + name: z.string(), + phone_number: z.string().nullable(), + }); + + const contactPersonSchema = z.object({ + person1: personSchema.merge( + z.object({ + roles: z + .array(z.enum(['parent', 'child', 'sibling', 'spouse', 'friend', 'other'])) + .describe('Any roles for which the contact is important, use other for custom roles'), + description: z + .string() + .nullable() + .describe('Open text for any other relevant information about what the contact does.'), + }), + ), + person2: personSchema.merge( + z.object({ + differentField: z.string(), + }), + ), + }); + + expect(zodResponseFormat(contactPersonSchema, 'contactPerson').json_schema.schema) + .toMatchInlineSnapshot(` + { + "$schema": "http://json-schema.org/draft-07/schema#", + "additionalProperties": false, + "definitions": { + "contactPerson": { + "additionalProperties": false, + "properties": { + "person1": { + "additionalProperties": false, + "properties": { + "description": { + "description": "Open text for any other relevant information about what the contact does.", + "type": [ + "string", + "null", + ], + }, + "name": { + "type": "string", + }, + "phone_number": { + "type": [ + "string", + "null", + ], + }, + "roles": { + "description": "Any roles for which the contact is important, use other for custom roles", + "items": { + "enum": [ + "parent", + "child", + "sibling", + "spouse", + "friend", + "other", + ], + "type": "string", + }, + "type": "array", + }, + }, + "required": [ + "name", + "phone_number", + "roles", + "description", + ], + "type": "object", + }, + "person2": { + "additionalProperties": false, + "properties": { + "differentField": { + "type": "string", + }, + "name": { + "$ref": "#/definitions/contactPerson/properties/person1/properties/name", + }, + "phone_number": { + "$ref": "#/definitions/contactPerson/properties/person1/properties/phone_number", + }, + }, + "required": [ + "name", + "phone_number", + "differentField", + ], + "type": "object", + }, + }, + "required": [ + "person1", + "person2", + ], + "type": "object", + }, + }, + "properties": { + "person1": { + "additionalProperties": false, + "properties": { + "description": { + "description": "Open text for any other relevant information about what the contact does.", + "type": [ + "string", + "null", + ], + }, + "name": { + "type": "string", + }, + "phone_number": { + "type": [ + "string", + "null", + ], + }, + "roles": { + "description": "Any roles for which the contact is important, use other for custom roles", + "items": { + "enum": [ + "parent", + "child", + "sibling", + "spouse", + "friend", + "other", + ], + "type": "string", + }, + "type": "array", + }, + }, + "required": [ + "name", + "phone_number", + "roles", + "description", + ], + "type": "object", + }, + "person2": { + "additionalProperties": false, + "properties": { + "differentField": { + "type": "string", + }, + "name": { + "$ref": "#/definitions/contactPerson/properties/person1/properties/name", + }, + "phone_number": { + "$ref": "#/definitions/contactPerson/properties/person1/properties/phone_number", + }, + }, + "required": [ + "name", + "phone_number", + "differentField", + ], + "type": "object", + }, + }, + "required": [ + "person1", + "person2", + ], + "type": "object", + } + `); + }); }); }); From d285d4ff80b10562a5cc5ff3fbb28ce9ac4a254a Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Thu, 8 Aug 2024 15:19:23 +0100 Subject: [PATCH 478/725] fix(helpers/zod): add `extract-to-root` ref strategy --- src/_vendor/zod-to-json-schema/Options.ts | 4 +- src/_vendor/zod-to-json-schema/Refs.ts | 7 ++-- src/_vendor/zod-to-json-schema/parseDef.ts | 18 +++++++++ src/_vendor/zod-to-json-schema/util.ts | 11 ++++++ .../zod-to-json-schema/zodToJsonSchema.ts | 39 ++++++++++--------- src/helpers/zod.ts | 1 + tests/lib/parser.test.ts | 17 ++++++-- 7 files changed, 69 insertions(+), 28 deletions(-) create mode 100644 src/_vendor/zod-to-json-schema/util.ts diff --git a/src/_vendor/zod-to-json-schema/Options.ts b/src/_vendor/zod-to-json-schema/Options.ts index 9a5628846..e765eef78 100644 --- a/src/_vendor/zod-to-json-schema/Options.ts +++ b/src/_vendor/zod-to-json-schema/Options.ts @@ -10,7 +10,7 @@ export const ignoreOverride = Symbol('Let zodToJsonSchema decide on which parser export type Options = { name: string | undefined; - $refStrategy: 'root' | 'relative' | 'none' | 'seen'; + $refStrategy: 'root' | 'relative' | 'none' | 'seen' | 'extract-to-root'; basePath: string[]; effectStrategy: 'input' | 'any'; pipeStrategy: 'input' | 'output' | 'all'; @@ -20,7 +20,7 @@ export type Options = { target: Target; strictUnions: boolean; definitionPath: string; - definitions: Record; + definitions: Record; errorMessages: boolean; markdownDescription: boolean; patternStrategy: 'escape' | 'preserve'; diff --git a/src/_vendor/zod-to-json-schema/Refs.ts b/src/_vendor/zod-to-json-schema/Refs.ts index 559641601..ea63c076a 100644 --- a/src/_vendor/zod-to-json-schema/Refs.ts +++ b/src/_vendor/zod-to-json-schema/Refs.ts @@ -1,6 +1,7 @@ -import { ZodTypeDef } from 'zod'; +import type { ZodTypeDef } from 'zod'; import { getDefaultOptions, Options, Targets } from './Options'; import { JsonSchema7Type } from './parseDef'; +import { zodDef } from './util'; export type Refs = { seen: Map; @@ -33,9 +34,9 @@ export const getRefs = (options?: string | Partial>): Refs => { seenRefs: new Set(), seen: new Map( Object.entries(_options.definitions).map(([name, def]) => [ - def._def, + zodDef(def), { - def: def._def, + def: zodDef(def), path: [..._options.basePath, _options.definitionPath, name], // Resolution of references will be forced even though seen, so it's ok that the schema is undefined here for now. jsonSchema: undefined, diff --git a/src/_vendor/zod-to-json-schema/parseDef.ts b/src/_vendor/zod-to-json-schema/parseDef.ts index d37653d4e..a8c8e7063 100644 --- a/src/_vendor/zod-to-json-schema/parseDef.ts +++ b/src/_vendor/zod-to-json-schema/parseDef.ts @@ -122,6 +122,24 @@ const get$ref = ( switch (refs.$refStrategy) { case 'root': return { $ref: item.path.join('/') }; + // this case is needed as OpenAI strict mode doesn't support top-level `$ref`s, i.e. + // the top-level schema *must* be `{"type": "object", "properties": {...}}` but if we ever + // need to define a `$ref`, relative `$ref`s aren't supported, so we need to extract + // the schema to `#/definitions/` and reference that. + // + // e.g. if we need to reference a schema at + // `["#","definitions","contactPerson","properties","person1","properties","name"]` + // then we'll extract it out to `contactPerson_properties_person1_properties_name` + case 'extract-to-root': + const name = item.path.slice(refs.basePath.length + 1).join('_'); + + // we don't need to extract the root schema in this case, as it's already + // been added to the definitions + if (name !== refs.name && refs.nameStrategy === 'duplicate-ref') { + refs.definitions[name] = item.def; + } + + return { $ref: [...refs.basePath, refs.definitionPath, name].join('/') }; case 'relative': return { $ref: getRelativePath(refs.currentPath, item.path) }; case 'none': diff --git a/src/_vendor/zod-to-json-schema/util.ts b/src/_vendor/zod-to-json-schema/util.ts new file mode 100644 index 000000000..870ab47a2 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/util.ts @@ -0,0 +1,11 @@ +import type { ZodSchema, ZodTypeDef } from 'zod'; + +export const zodDef = (zodSchema: ZodSchema | ZodTypeDef): ZodTypeDef => { + return '_def' in zodSchema ? zodSchema._def : zodSchema; +}; + +export function isEmptyObj(obj: Object | null | undefined): boolean { + if (!obj) return true; + for (const _k in obj) return false; + return true; +} diff --git a/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts b/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts index 1d95a98ba..2078b503f 100644 --- a/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts +++ b/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts @@ -2,6 +2,7 @@ import { ZodSchema } from 'zod'; import { Options, Targets } from './Options'; import { JsonSchema7Type, parseDef } from './parseDef'; import { getRefs } from './Refs'; +import { zodDef, isEmptyObj } from './util'; const zodToJsonSchema = ( schema: ZodSchema, @@ -16,25 +17,6 @@ const zodToJsonSchema = ( } => { const refs = getRefs(options); - const definitions = - typeof options === 'object' && options.definitions ? - Object.entries(options.definitions).reduce( - (acc, [name, schema]) => ({ - ...acc, - [name]: - parseDef( - schema._def, - { - ...refs, - currentPath: [...refs.basePath, refs.definitionPath, name], - }, - true, - ) ?? {}, - }), - {}, - ) - : undefined; - const name = typeof options === 'string' ? options : options?.nameStrategy === 'title' ? undefined @@ -61,6 +43,25 @@ const zodToJsonSchema = ( main.title = title; } + const definitions = + !isEmptyObj(refs.definitions) ? + Object.entries(refs.definitions).reduce( + (acc, [name, schema]) => ({ + ...acc, + [name]: + parseDef( + zodDef(schema), + { + ...refs, + currentPath: [...refs.basePath, refs.definitionPath, name], + }, + true, + ) ?? {}, + }), + {}, + ) + : undefined; + const combined: ReturnType> = name === undefined ? definitions ? diff --git a/src/helpers/zod.ts b/src/helpers/zod.ts index a7b45268d..aa09ffaac 100644 --- a/src/helpers/zod.ts +++ b/src/helpers/zod.ts @@ -13,6 +13,7 @@ function zodToJsonSchema(schema: z.ZodType, options: { name: string }): Record { "type": "string", }, "name": { - "$ref": "#/definitions/contactPerson/properties/person1/properties/name", + "$ref": "#/definitions/contactPerson_properties_person1_properties_name", }, "phone_number": { - "$ref": "#/definitions/contactPerson/properties/person1/properties/phone_number", + "$ref": "#/definitions/contactPerson_properties_person1_properties_phone_number", }, }, "required": [ @@ -372,6 +372,15 @@ describe('.parse()', () => { ], "type": "object", }, + "contactPerson_properties_person1_properties_name": { + "type": "string", + }, + "contactPerson_properties_person1_properties_phone_number": { + "type": [ + "string", + "null", + ], + }, }, "properties": { "person1": { @@ -424,10 +433,10 @@ describe('.parse()', () => { "type": "string", }, "name": { - "$ref": "#/definitions/contactPerson/properties/person1/properties/name", + "$ref": "#/definitions/contactPerson_properties_person1_properties_name", }, "phone_number": { - "$ref": "#/definitions/contactPerson/properties/person1/properties/phone_number", + "$ref": "#/definitions/contactPerson_properties_person1_properties_phone_number", }, }, "required": [ From 822170690601f16a6c94db07930bafb0061711e9 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Thu, 8 Aug 2024 15:19:38 +0100 Subject: [PATCH 479/725] chore(internal): add README for vendored zod-to-json-schema --- src/_vendor/zod-to-json-schema/README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/_vendor/zod-to-json-schema/README.md diff --git a/src/_vendor/zod-to-json-schema/README.md b/src/_vendor/zod-to-json-schema/README.md new file mode 100644 index 000000000..ffb351242 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/README.md @@ -0,0 +1,3 @@ +# Zod to Json Schema + +Vendored version of https://github.com/StefanTerdell/zod-to-json-schema that has been updated to generate JSON Schemas that are compatible with OpenAI's [strict mode](https://platform.openai.com/docs/guides/structured-outputs/supported-schemas) From fc22483173b521b0b194264e6d975c3517c06216 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Thu, 8 Aug 2024 15:25:59 +0100 Subject: [PATCH 480/725] fix(helpers/zod): add `nullableStrategy` option so we can generate `nullable: true` instead of `type: ["foo", "null"]` and avoid having to change the `target` json schema version as we're in a weird in the middle state --- src/_vendor/zod-to-json-schema/Options.ts | 2 ++ .../zod-to-json-schema/parsers/nullable.ts | 2 +- src/helpers/zod.ts | 1 + tests/lib/parser.test.ts | 30 +++++++------------ 4 files changed, 14 insertions(+), 21 deletions(-) diff --git a/src/_vendor/zod-to-json-schema/Options.ts b/src/_vendor/zod-to-json-schema/Options.ts index e765eef78..a83690e59 100644 --- a/src/_vendor/zod-to-json-schema/Options.ts +++ b/src/_vendor/zod-to-json-schema/Options.ts @@ -17,6 +17,7 @@ export type Options = { dateStrategy: DateStrategy | DateStrategy[]; mapStrategy: 'entries' | 'record'; removeAdditionalStrategy: 'passthrough' | 'strict'; + nullableStrategy: 'from-target' | 'property'; target: Target; strictUnions: boolean; definitionPath: string; @@ -45,6 +46,7 @@ export const defaultOptions: Options = { pipeStrategy: 'all', dateStrategy: 'format:date-time', mapStrategy: 'entries', + nullableStrategy: 'from-target', removeAdditionalStrategy: 'passthrough', definitionPath: 'definitions', target: 'jsonSchema7', diff --git a/src/_vendor/zod-to-json-schema/parsers/nullable.ts b/src/_vendor/zod-to-json-schema/parsers/nullable.ts index efb70076e..0d7063610 100644 --- a/src/_vendor/zod-to-json-schema/parsers/nullable.ts +++ b/src/_vendor/zod-to-json-schema/parsers/nullable.ts @@ -17,7 +17,7 @@ export function parseNullableDef(def: ZodNullableDef, refs: Refs): JsonSchema7Nu ['ZodString', 'ZodNumber', 'ZodBigInt', 'ZodBoolean', 'ZodNull'].includes(def.innerType._def.typeName) && (!def.innerType._def.checks || !def.innerType._def.checks.length) ) { - if (refs.target === 'openApi3') { + if (refs.target === 'openApi3' || refs.nullableStrategy === 'property') { return { type: primitiveMappings[def.innerType._def.typeName as keyof typeof primitiveMappings], nullable: true, diff --git a/src/helpers/zod.ts b/src/helpers/zod.ts index aa09ffaac..1946b2199 100644 --- a/src/helpers/zod.ts +++ b/src/helpers/zod.ts @@ -14,6 +14,7 @@ function zodToJsonSchema(schema: z.ZodType, options: { name: string }): Record { "properties": { "description": { "description": "Open text for any other relevant information about what the contact does.", - "type": [ - "string", - "null", - ], + "nullable": true, + "type": "string", }, "name": { "type": "string", }, "phone_number": { - "type": [ - "string", - "null", - ], + "nullable": true, + "type": "string", }, "roles": { "description": "Any roles for which the contact is important, use other for custom roles", @@ -376,10 +372,8 @@ describe('.parse()', () => { "type": "string", }, "contactPerson_properties_person1_properties_phone_number": { - "type": [ - "string", - "null", - ], + "nullable": true, + "type": "string", }, }, "properties": { @@ -388,19 +382,15 @@ describe('.parse()', () => { "properties": { "description": { "description": "Open text for any other relevant information about what the contact does.", - "type": [ - "string", - "null", - ], + "nullable": true, + "type": "string", }, "name": { "type": "string", }, "phone_number": { - "type": [ - "string", - "null", - ], + "nullable": true, + "type": "string", }, "roles": { "description": "Any roles for which the contact is important, use other for custom roles", From 89ace3da146a6eb0293dc8c54731bdd489760ff0 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Thu, 8 Aug 2024 15:28:51 +0100 Subject: [PATCH 481/725] chore(tests): add more API request tests --- tests/lib/__snapshots__/parser.test.ts.snap | 28 +++++++++++++ tests/lib/parser.test.ts | 44 +++++++++++++++++++++ tests/utils/mock-snapshots.ts | 7 +++- 3 files changed, 77 insertions(+), 2 deletions(-) diff --git a/tests/lib/__snapshots__/parser.test.ts.snap b/tests/lib/__snapshots__/parser.test.ts.snap index e6f2799af..715c268ff 100644 --- a/tests/lib/__snapshots__/parser.test.ts.snap +++ b/tests/lib/__snapshots__/parser.test.ts.snap @@ -28,6 +28,34 @@ exports[`.parse() zod deserialises response_format 1`] = ` " `; +exports[`.parse() zod merged schemas 2`] = ` +"{ + "id": "chatcmpl-9tyPgktyF5JgREIZd0XZI4XgrBAD2", + "object": "chat.completion", + "created": 1723127296, + "model": "gpt-4o-2024-08-06", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "{\\"person1\\":{\\"name\\":\\"Jane Doe\\",\\"phone_number\\":\\"+1234567890\\",\\"roles\\":[\\"other\\"],\\"description\\":\\"Engineer at OpenAI. Email: jane@openai.com\\"},\\"person2\\":{\\"name\\":\\"John Smith\\",\\"phone_number\\":\\"+0987654321\\",\\"differentField\\":\\"Engineer at OpenAI. Email: john@openai.com\\"}}", + "refusal": null + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 61, + "completion_tokens": 72, + "total_tokens": 133 + }, + "system_fingerprint": "fp_845eaabc1f" +} +" +`; + exports[`.parse() zod top-level recursive schemas 1`] = ` "{ "id": "chatcmpl-9taiMDrRVRIkk1Xg1yE82UjnYuZjt", diff --git a/tests/lib/parser.test.ts b/tests/lib/parser.test.ts index 9668cf7d0..3fb3c948a 100644 --- a/tests/lib/parser.test.ts +++ b/tests/lib/parser.test.ts @@ -444,6 +444,50 @@ describe('.parse()', () => { "type": "object", } `); + + const completion = await makeSnapshotRequest( + (openai) => + openai.beta.chat.completions.parse({ + model: 'gpt-4o-2024-08-06', + messages: [ + { + role: 'system', + content: 'You are a helpful assistant.', + }, + { + role: 'user', + content: + 'jane doe, born nov 16, engineer at openai, jane@openai.com. john smith, born march 1, enigneer at openai, john@openai.com', + }, + ], + response_format: zodResponseFormat(contactPersonSchema, 'contactPerson'), + }), + 2, + ); + + expect(completion.choices[0]?.message).toMatchInlineSnapshot(` + { + "content": "{"person1":{"name":"Jane Doe","phone_number":"+1234567890","roles":["other"],"description":"Engineer at OpenAI. Email: jane@openai.com"},"person2":{"name":"John Smith","phone_number":"+0987654321","differentField":"Engineer at OpenAI. Email: john@openai.com"}}", + "parsed": { + "person1": { + "description": "Engineer at OpenAI. Email: jane@openai.com", + "name": "Jane Doe", + "phone_number": "+1234567890", + "roles": [ + "other", + ], + }, + "person2": { + "differentField": "Engineer at OpenAI. Email: john@openai.com", + "name": "John Smith", + "phone_number": "+0987654321", + }, + }, + "refusal": null, + "role": "assistant", + "tool_calls": [], + } + `); }); }); }); diff --git a/tests/utils/mock-snapshots.ts b/tests/utils/mock-snapshots.ts index 2bf09eda7..317bf6b0f 100644 --- a/tests/utils/mock-snapshots.ts +++ b/tests/utils/mock-snapshots.ts @@ -5,7 +5,10 @@ import { RequestInfo } from 'openai/_shims/auto/types'; import { mockFetch } from './mock-fetch'; import { Readable } from 'stream'; -export async function makeSnapshotRequest(requestFn: (client: OpenAI) => Promise): Promise { +export async function makeSnapshotRequest( + requestFn: (client: OpenAI) => Promise, + snapshotIndex = 1, +): Promise { if (process.env['UPDATE_API_SNAPSHOTS'] === '1') { var capturedResponseContent: string | null = null; @@ -27,7 +30,7 @@ export async function makeSnapshotRequest(requestFn: (client: OpenAI) => Prom return result; } - const qualifiedSnapshotName = `${expect.getState().currentTestName} 1`; + const qualifiedSnapshotName = [expect.getState().currentTestName, snapshotIndex].join(' '); const snapshotState = expect.getState()['snapshotState']; (snapshotState._uncheckedKeys as Set).delete(qualifiedSnapshotName); From f3b63cce927414621a705f9de479b8bfc0e35c94 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 8 Aug 2024 19:56:03 +0000 Subject: [PATCH 482/725] release: 4.55.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 16 ++++++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 21 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a2fc4e17b..f48cee097 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.55.1" + ".": "4.55.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b24ff704..a1e89d8f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## 4.55.2 (2024-08-08) + +Full Changelog: [v4.55.1...v4.55.2](https://github.com/openai/openai-node/compare/v4.55.1...v4.55.2) + +### Bug Fixes + +* **helpers/zod:** add `extract-to-root` ref strategy ([ef3c73c](https://github.com/openai/openai-node/commit/ef3c73cfdf1a8e45346417812168e476fea65690)) +* **helpers/zod:** add `nullableStrategy` option ([ad89892](https://github.com/openai/openai-node/commit/ad89892f4ac0daba161ce97267a165a12f67c341)) +* **helpers/zod:** correct logic for adding root schema to definitions ([e4a247a](https://github.com/openai/openai-node/commit/e4a247a2a87b4d3bde55891b31e07413d3a9f00d)) + + +### Chores + +* **internal:** add README for vendored zod-to-json-schema ([d8a80a9](https://github.com/openai/openai-node/commit/d8a80a915dfe723a59f512e7128aecf857324388)) +* **tests:** add more API request tests ([04c1590](https://github.com/openai/openai-node/commit/04c1590a64127c43898c3c88bcbdd624d54008f6)) + ## 4.55.1 (2024-08-07) Full Changelog: [v4.55.0...v4.55.1](https://github.com/openai/openai-node/compare/v4.55.0...v4.55.1) diff --git a/README.md b/README.md index 5d98201af..c9bb46a73 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.55.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.55.2/mod.ts'; ``` diff --git a/package.json b/package.json index 923009ad9..b62736b5b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.55.1", + "version": "4.55.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index f50d7c45d..8aebc9cb4 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.55.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.55.2/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 059a09162..163a11feb 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.55.1'; // x-release-please-version +export const VERSION = '4.55.2'; // x-release-please-version From 985428b600023a07d2a29825e4b495bd34fe36c0 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 8 Aug 2024 20:21:06 +0000 Subject: [PATCH 483/725] chore(internal): updates (#975) --- .stats.yml | 2 +- package.json | 2 +- scripts/format | 2 +- scripts/lint | 2 +- src/resources/chat/chat.ts | 2 +- src/resources/chat/completions.ts | 5 +++++ 6 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.stats.yml b/.stats.yml index ac652c927..cad2c64cd 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-4097c2f86beb3f3bb021775cd1dfa240e960caf842aeefc2e08da4dc0851ea79.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-97797a9363b9960b5f2fbdc84426a2b91e75533ecd409fe99e37c231180a4339.yml diff --git a/package.json b/package.json index b62736b5b..003877102 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "prepare": "if ./scripts/utils/check-is-in-git-install.sh; then ./scripts/build; fi", "tsn": "ts-node -r tsconfig-paths/register", "lint": "./scripts/lint", - "fix": "eslint --fix --ext ts,js ." + "fix": "./scripts/format" }, "dependencies": { "@types/node": "^18.11.18", diff --git a/scripts/format b/scripts/format index d297e762f..a6bb9d03a 100755 --- a/scripts/format +++ b/scripts/format @@ -5,4 +5,4 @@ set -e cd "$(dirname "$0")/.." echo "==> Running eslint --fix" -./node_modules/.bin/eslint --fix --ext ts,js . +ESLINT_USE_FLAT_CONFIG="false" ./node_modules/.bin/eslint --fix --ext ts,js . diff --git a/scripts/lint b/scripts/lint index 6b0e5dc3e..4af1de013 100755 --- a/scripts/lint +++ b/scripts/lint @@ -5,4 +5,4 @@ set -e cd "$(dirname "$0")/.." echo "==> Running eslint" -./node_modules/.bin/eslint --ext ts,js . +ESLINT_USE_FLAT_CONFIG="false" ./node_modules/.bin/eslint --ext ts,js . diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 031b4059b..684b1307a 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -10,8 +10,8 @@ export class Chat extends APIResource { export type ChatModel = | 'gpt-4o' - | 'gpt-4o-2024-08-06' | 'gpt-4o-2024-05-13' + | 'gpt-4o-2024-08-06' | 'gpt-4o-mini' | 'gpt-4o-mini-2024-07-18' | 'gpt-4-turbo' diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 91d7da801..26e7490e0 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -829,6 +829,11 @@ export interface ChatCompletionCreateParamsBase { * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. * + * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured + * Outputs which guarantees the model will match your supplied JSON schema. Learn + * more in the + * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). + * * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the * message the model generates is valid JSON. * From cc13af9fa7e76e774d3132bba2427bb0176bd622 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 8 Aug 2024 20:21:32 +0000 Subject: [PATCH 484/725] release: 4.55.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f48cee097..d34e87f46 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.55.2" + ".": "4.55.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a1e89d8f8..fefb710b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.55.3 (2024-08-08) + +Full Changelog: [v4.55.2...v4.55.3](https://github.com/openai/openai-node/compare/v4.55.2...v4.55.3) + +### Chores + +* **internal:** updates ([#975](https://github.com/openai/openai-node/issues/975)) ([313a190](https://github.com/openai/openai-node/commit/313a19059a61893887ac0b57bb488c24bc40f099)) + ## 4.55.2 (2024-08-08) Full Changelog: [v4.55.1...v4.55.2](https://github.com/openai/openai-node/compare/v4.55.1...v4.55.2) diff --git a/README.md b/README.md index c9bb46a73..13f449a29 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.55.2/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.55.3/mod.ts'; ``` diff --git a/package.json b/package.json index 003877102..31f5bc16a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.55.2", + "version": "4.55.3", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 8aebc9cb4..cd4cbd4f5 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.55.2/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.55.3/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 163a11feb..ec9119c18 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.55.2'; // x-release-please-version +export const VERSION = '4.55.3'; // x-release-please-version From f4f8c5a46bd03fe63b7e9f95d12766d2b8de9484 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 9 Aug 2024 16:32:31 +0000 Subject: [PATCH 485/725] chore(ci): codeowners file (#980) --- .github/CODEOWNERS | 3 +++ .github/workflows/create-releases.yml | 1 + .github/workflows/release-doctor.yml | 1 + bin/check-release-environment | 1 + 4 files changed, 6 insertions(+) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 3ce5f8d00..d58c8454c 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1,4 @@ +# This file is used to automatically assign reviewers to PRs +# For more information see: https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners + * @openai/sdks-team diff --git a/.github/workflows/create-releases.yml b/.github/workflows/create-releases.yml index d6d802e16..d5ae1f755 100644 --- a/.github/workflows/create-releases.yml +++ b/.github/workflows/create-releases.yml @@ -62,3 +62,4 @@ jobs: env: DENO_PUSH_REMOTE_URL: https://username:${{ steps.generate_token.outputs.token }}@github.com/openai/openai-deno-build.git DENO_PUSH_BRANCH: main + diff --git a/.github/workflows/release-doctor.yml b/.github/workflows/release-doctor.yml index 3bb1d714f..37bc09e80 100644 --- a/.github/workflows/release-doctor.yml +++ b/.github/workflows/release-doctor.yml @@ -21,3 +21,4 @@ jobs: env: STAINLESS_API_KEY: ${{ secrets.STAINLESS_API_KEY }} NPM_TOKEN: ${{ secrets.OPENAI_NPM_TOKEN || secrets.NPM_TOKEN }} + diff --git a/bin/check-release-environment b/bin/check-release-environment index 9651d95c8..dbfd546bf 100644 --- a/bin/check-release-environment +++ b/bin/check-release-environment @@ -23,3 +23,4 @@ if [[ lenErrors -gt 0 ]]; then fi echo "The environment is ready to push releases!" + From 9b7568cad022167150eef4e534124d007738bebb Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 9 Aug 2024 17:43:24 +0000 Subject: [PATCH 486/725] chore(ci): bump prism mock server version (#982) --- scripts/mock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/mock b/scripts/mock index f58615769..d2814ae6a 100755 --- a/scripts/mock +++ b/scripts/mock @@ -21,7 +21,7 @@ echo "==> Starting mock server with URL ${URL}" # Run prism mock on the given spec if [ "$1" == "--daemon" ]; then - npm exec --package=@stainless-api/prism-cli@5.8.4 -- prism mock "$URL" &> .prism.log & + npm exec --package=@stainless-api/prism-cli@5.8.5 -- prism mock "$URL" &> .prism.log & # Wait for server to come online echo -n "Waiting for server" @@ -37,5 +37,5 @@ if [ "$1" == "--daemon" ]; then echo else - npm exec --package=@stainless-api/prism-cli@5.8.4 -- prism mock "$URL" + npm exec --package=@stainless-api/prism-cli@5.8.5 -- prism mock "$URL" fi From 510c866863018091e0a7e4d80c47d76ec0771d46 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Fri, 9 Aug 2024 19:49:33 +0100 Subject: [PATCH 487/725] fix(helpers/zod): nested union schema extraction (#979) --- .../zod-to-json-schema/zodToJsonSchema.ts | 36 +- tests/lib/__snapshots__/parser.test.ts.snap | 52 ++- tests/lib/parser.test.ts | 346 ++++++++++++++++-- 3 files changed, 378 insertions(+), 56 deletions(-) diff --git a/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts b/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts index 2078b503f..1c3290008 100644 --- a/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts +++ b/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts @@ -43,24 +43,24 @@ const zodToJsonSchema = ( main.title = title; } - const definitions = - !isEmptyObj(refs.definitions) ? - Object.entries(refs.definitions).reduce( - (acc, [name, schema]) => ({ - ...acc, - [name]: - parseDef( - zodDef(schema), - { - ...refs, - currentPath: [...refs.basePath, refs.definitionPath, name], - }, - true, - ) ?? {}, - }), - {}, - ) - : undefined; + const definitions = (() => { + if (isEmptyObj(refs.definitions)) { + return undefined; + } + + const definitions: Record = {}; + + for (const [name, zodSchema] of Object.entries(refs.definitions)) { + definitions[name] = + parseDef( + zodDef(zodSchema), + { ...refs, currentPath: [...refs.basePath, refs.definitionPath, name] }, + true, + ) ?? {}; + } + + return definitions; + })(); const combined: ReturnType> = name === undefined ? diff --git a/tests/lib/__snapshots__/parser.test.ts.snap b/tests/lib/__snapshots__/parser.test.ts.snap index 715c268ff..d98db2345 100644 --- a/tests/lib/__snapshots__/parser.test.ts.snap +++ b/tests/lib/__snapshots__/parser.test.ts.snap @@ -2,16 +2,16 @@ exports[`.parse() zod deserialises response_format 1`] = ` "{ - "id": "chatcmpl-9tZXFjiGKgtrHZeIxvkklWe51DYZp", + "id": "chatcmpl-9uLhvwLPvKOZoJ7hwaa666fYuxYif", "object": "chat.completion", - "created": 1723031665, + "created": 1723216839, "model": "gpt-4o-2024-08-06", "choices": [ { "index": 0, "message": { "role": "assistant", - "content": "{\\"city\\":\\"San Francisco\\",\\"units\\":\\"f\\"}", + "content": "{\\"city\\":\\"San Francisco\\",\\"units\\":\\"c\\"}", "refusal": null }, "logprobs": null, @@ -30,16 +30,16 @@ exports[`.parse() zod deserialises response_format 1`] = ` exports[`.parse() zod merged schemas 2`] = ` "{ - "id": "chatcmpl-9tyPgktyF5JgREIZd0XZI4XgrBAD2", + "id": "chatcmpl-9uLi0HJ6HYH0FM1VI1N6XCREiGvX1", "object": "chat.completion", - "created": 1723127296, + "created": 1723216844, "model": "gpt-4o-2024-08-06", "choices": [ { "index": 0, "message": { "role": "assistant", - "content": "{\\"person1\\":{\\"name\\":\\"Jane Doe\\",\\"phone_number\\":\\"+1234567890\\",\\"roles\\":[\\"other\\"],\\"description\\":\\"Engineer at OpenAI. Email: jane@openai.com\\"},\\"person2\\":{\\"name\\":\\"John Smith\\",\\"phone_number\\":\\"+0987654321\\",\\"differentField\\":\\"Engineer at OpenAI. Email: john@openai.com\\"}}", + "content": "{\\"person1\\":{\\"name\\":\\"Jane Doe\\",\\"phone_number\\":\\".\\",\\"roles\\":[\\"other\\"],\\"description\\":\\"Engineer at OpenAI, born Nov 16, contact email: jane@openai.com\\"},\\"person2\\":{\\"name\\":\\"John Smith\\",\\"phone_number\\":\\"john@openai.com\\",\\"differentField\\":\\"Engineer at OpenAI, born March 1.\\"}}", "refusal": null }, "logprobs": null, @@ -51,23 +51,51 @@ exports[`.parse() zod merged schemas 2`] = ` "completion_tokens": 72, "total_tokens": 133 }, - "system_fingerprint": "fp_845eaabc1f" + "system_fingerprint": "fp_2a322c9ffc" +} +" +`; + +exports[`.parse() zod nested schema extraction 2`] = ` +"{ + "id": "chatcmpl-9uLi6hkH6VcoaYiNEzy3h56QRAyns", + "object": "chat.completion", + "created": 1723216850, + "model": "gpt-4o-2024-08-06", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "{\\"name\\":\\"TodoApp\\",\\"fields\\":[{\\"type\\":\\"string\\",\\"name\\":\\"taskId\\",\\"metadata\\":{\\"foo\\":\\"unique identifier for each task\\"}},{\\"type\\":\\"string\\",\\"name\\":\\"title\\",\\"metadata\\":{\\"foo\\":\\"title of the task\\"}},{\\"type\\":\\"string\\",\\"name\\":\\"description\\",\\"metadata\\":{\\"foo\\":\\"detailed description of the task. This is optional.\\"}},{\\"type\\":\\"string\\",\\"name\\":\\"status\\",\\"metadata\\":{\\"foo\\":\\"status of the task, e.g., pending, completed, etc.\\"}},{\\"type\\":\\"string\\",\\"name\\":\\"dueDate\\",\\"metadata\\":null},{\\"type\\":\\"string\\",\\"name\\":\\"priority\\",\\"metadata\\":{\\"foo\\":\\"priority level of the task, e.g., low, medium, high\\"}},{\\"type\\":\\"string\\",\\"name\\":\\"creationDate\\",\\"metadata\\":{\\"foo\\":\\"date when the task was created\\"}},{\\"type\\":\\"string\\",\\"name\\":\\"lastModifiedDate\\",\\"metadata\\":{\\"foo\\":\\"date when the task was last modified\\"}},{\\"type\\":\\"string\\",\\"name\\":\\"tags\\",\\"metadata\\":{\\"foo\\":\\"tags associated with the task, for categorization\\"}}]}", + "refusal": null + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 36, + "completion_tokens": 208, + "total_tokens": 244 + }, + "system_fingerprint": "fp_2a322c9ffc" } " `; exports[`.parse() zod top-level recursive schemas 1`] = ` "{ - "id": "chatcmpl-9taiMDrRVRIkk1Xg1yE82UjnYuZjt", + "id": "chatcmpl-9uLhw79ArBF4KsQQOlsoE68m6vh6v", "object": "chat.completion", - "created": 1723036198, + "created": 1723216840, "model": "gpt-4o-2024-08-06", "choices": [ { "index": 0, "message": { "role": "assistant", - "content": "{\\"type\\":\\"form\\",\\"label\\":\\"User Profile Form\\",\\"children\\":[{\\"type\\":\\"field\\",\\"label\\":\\"Full Name\\",\\"children\\":[],\\"attributes\\":[{\\"name\\":\\"type\\",\\"value\\":\\"text\\"},{\\"name\\":\\"placeholder\\",\\"value\\":\\"Enter your full name\\"}]},{\\"type\\":\\"field\\",\\"label\\":\\"Email Address\\",\\"children\\":[],\\"attributes\\":[{\\"name\\":\\"type\\",\\"value\\":\\"email\\"},{\\"name\\":\\"placeholder\\",\\"value\\":\\"Enter your email address\\"}]},{\\"type\\":\\"field\\",\\"label\\":\\"Phone Number\\",\\"children\\":[],\\"attributes\\":[{\\"name\\":\\"type\\",\\"value\\":\\"tel\\"},{\\"name\\":\\"placeholder\\",\\"value\\":\\"Enter your phone number\\"}]},{\\"type\\":\\"button\\",\\"label\\":\\"Submit\\",\\"children\\":[],\\"attributes\\":[{\\"name\\":\\"type\\",\\"value\\":\\"submit\\"}]}],\\"attributes\\":[{\\"name\\":\\"method\\",\\"value\\":\\"post\\"},{\\"name\\":\\"action\\",\\"value\\":\\"/submit-profile\\"}]}", + "content": "{\\"type\\":\\"form\\",\\"label\\":\\"User Profile Form\\",\\"children\\":[{\\"type\\":\\"field\\",\\"label\\":\\"First Name\\",\\"children\\":[],\\"attributes\\":[{\\"name\\":\\"type\\",\\"value\\":\\"text\\"},{\\"name\\":\\"name\\",\\"value\\":\\"firstName\\"},{\\"name\\":\\"placeholder\\",\\"value\\":\\"Enter your first name\\"}]},{\\"type\\":\\"field\\",\\"label\\":\\"Last Name\\",\\"children\\":[],\\"attributes\\":[{\\"name\\":\\"type\\",\\"value\\":\\"text\\"},{\\"name\\":\\"name\\",\\"value\\":\\"lastName\\"},{\\"name\\":\\"placeholder\\",\\"value\\":\\"Enter your last name\\"}]},{\\"type\\":\\"field\\",\\"label\\":\\"Email Address\\",\\"children\\":[],\\"attributes\\":[{\\"name\\":\\"type\\",\\"value\\":\\"email\\"},{\\"name\\":\\"name\\",\\"value\\":\\"email\\"},{\\"name\\":\\"placeholder\\",\\"value\\":\\"Enter your email address\\"}]},{\\"type\\":\\"button\\",\\"label\\":\\"Submit\\",\\"children\\":[],\\"attributes\\":[{\\"name\\":\\"type\\",\\"value\\":\\"submit\\"}]}],\\"attributes\\":[]}", "refusal": null }, "logprobs": null, @@ -76,8 +104,8 @@ exports[`.parse() zod top-level recursive schemas 1`] = ` ], "usage": { "prompt_tokens": 38, - "completion_tokens": 168, - "total_tokens": 206 + "completion_tokens": 175, + "total_tokens": 213 }, "system_fingerprint": "fp_845eaabc1f" } diff --git a/tests/lib/parser.test.ts b/tests/lib/parser.test.ts index 3fb3c948a..331b16895 100644 --- a/tests/lib/parser.test.ts +++ b/tests/lib/parser.test.ts @@ -32,10 +32,10 @@ describe('.parse()', () => { "index": 0, "logprobs": null, "message": { - "content": "{"city":"San Francisco","units":"f"}", + "content": "{"city":"San Francisco","units":"c"}", "parsed": { "city": "San Francisco", - "units": "f", + "units": "c", }, "refusal": null, "role": "assistant", @@ -76,18 +76,9 @@ describe('.parse()', () => { expect(completion.choices[0]?.message).toMatchInlineSnapshot(` { - "content": "{"type":"form","label":"User Profile Form","children":[{"type":"field","label":"Full Name","children":[],"attributes":[{"name":"type","value":"text"},{"name":"placeholder","value":"Enter your full name"}]},{"type":"field","label":"Email Address","children":[],"attributes":[{"name":"type","value":"email"},{"name":"placeholder","value":"Enter your email address"}]},{"type":"field","label":"Phone Number","children":[],"attributes":[{"name":"type","value":"tel"},{"name":"placeholder","value":"Enter your phone number"}]},{"type":"button","label":"Submit","children":[],"attributes":[{"name":"type","value":"submit"}]}],"attributes":[{"name":"method","value":"post"},{"name":"action","value":"/submit-profile"}]}", + "content": "{"type":"form","label":"User Profile Form","children":[{"type":"field","label":"First Name","children":[],"attributes":[{"name":"type","value":"text"},{"name":"name","value":"firstName"},{"name":"placeholder","value":"Enter your first name"}]},{"type":"field","label":"Last Name","children":[],"attributes":[{"name":"type","value":"text"},{"name":"name","value":"lastName"},{"name":"placeholder","value":"Enter your last name"}]},{"type":"field","label":"Email Address","children":[],"attributes":[{"name":"type","value":"email"},{"name":"name","value":"email"},{"name":"placeholder","value":"Enter your email address"}]},{"type":"button","label":"Submit","children":[],"attributes":[{"name":"type","value":"submit"}]}],"attributes":[]}", "parsed": { - "attributes": [ - { - "name": "method", - "value": "post", - }, - { - "name": "action", - "value": "/submit-profile", - }, - ], + "attributes": [], "children": [ { "attributes": [ @@ -95,43 +86,55 @@ describe('.parse()', () => { "name": "type", "value": "text", }, + { + "name": "name", + "value": "firstName", + }, { "name": "placeholder", - "value": "Enter your full name", + "value": "Enter your first name", }, ], "children": [], - "label": "Full Name", + "label": "First Name", "type": "field", }, { "attributes": [ { "name": "type", - "value": "email", + "value": "text", + }, + { + "name": "name", + "value": "lastName", }, { "name": "placeholder", - "value": "Enter your email address", + "value": "Enter your last name", }, ], "children": [], - "label": "Email Address", + "label": "Last Name", "type": "field", }, { "attributes": [ { "name": "type", - "value": "tel", + "value": "email", + }, + { + "name": "name", + "value": "email", }, { "name": "placeholder", - "value": "Enter your phone number", + "value": "Enter your email address", }, ], "children": [], - "label": "Phone Number", + "label": "Email Address", "type": "field", }, { @@ -467,22 +470,313 @@ describe('.parse()', () => { expect(completion.choices[0]?.message).toMatchInlineSnapshot(` { - "content": "{"person1":{"name":"Jane Doe","phone_number":"+1234567890","roles":["other"],"description":"Engineer at OpenAI. Email: jane@openai.com"},"person2":{"name":"John Smith","phone_number":"+0987654321","differentField":"Engineer at OpenAI. Email: john@openai.com"}}", + "content": "{"person1":{"name":"Jane Doe","phone_number":".","roles":["other"],"description":"Engineer at OpenAI, born Nov 16, contact email: jane@openai.com"},"person2":{"name":"John Smith","phone_number":"john@openai.com","differentField":"Engineer at OpenAI, born March 1."}}", "parsed": { "person1": { - "description": "Engineer at OpenAI. Email: jane@openai.com", + "description": "Engineer at OpenAI, born Nov 16, contact email: jane@openai.com", "name": "Jane Doe", - "phone_number": "+1234567890", + "phone_number": ".", "roles": [ "other", ], }, "person2": { - "differentField": "Engineer at OpenAI. Email: john@openai.com", + "differentField": "Engineer at OpenAI, born March 1.", "name": "John Smith", - "phone_number": "+0987654321", + "phone_number": "john@openai.com", + }, + }, + "refusal": null, + "role": "assistant", + "tool_calls": [], + } + `); + }); + + test('nested schema extraction', async () => { + // optional object that can be on each field, mark it as nullable to comply with structured output restrictions + const metadata = z.nullable( + z.object({ + foo: z.string(), + }), + ); + + // union element a + const fieldA = z.object({ + type: z.literal('string'), + name: z.string(), + metadata, + }); + + // union element b, both referring to above nullable object + const fieldB = z.object({ + type: z.literal('number'), + metadata, + }); + + // top level input object with array of union element + const model = z.object({ + name: z.string(), + fields: z.array(z.union([fieldA, fieldB])), + }); + + expect(zodResponseFormat(model, 'query').json_schema.schema).toMatchInlineSnapshot(` + { + "$schema": "http://json-schema.org/draft-07/schema#", + "additionalProperties": false, + "definitions": { + "contactPerson_properties_person1_properties_name": { + "type": "string", + }, + "contactPerson_properties_person1_properties_phone_number": { + "nullable": true, + "type": "string", + }, + "query": { + "additionalProperties": false, + "properties": { + "fields": { + "items": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "metadata": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "foo": { + "type": "string", + }, + }, + "required": [ + "foo", + ], + "type": "object", + }, + { + "type": "null", + }, + ], + }, + "name": { + "type": "string", + }, + "type": { + "const": "string", + "type": "string", + }, + }, + "required": [ + "type", + "name", + "metadata", + ], + "type": "object", + }, + { + "additionalProperties": false, + "properties": { + "metadata": { + "$ref": "#/definitions/query_properties_fields_items_anyOf_0_properties_metadata", + }, + "type": { + "const": "number", + "type": "string", + }, + }, + "required": [ + "type", + "metadata", + ], + "type": "object", + }, + ], + }, + "type": "array", + }, + "name": { + "type": "string", + }, + }, + "required": [ + "name", + "fields", + ], + "type": "object", + }, + "query_properties_fields_items_anyOf_0_properties_metadata": { + "anyOf": [ + { + "$ref": "#/definitions/query_properties_fields_items_anyOf_0_properties_metadata_anyOf_0", + }, + { + "type": "null", + }, + ], + }, + }, + "properties": { + "fields": { + "items": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "metadata": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "foo": { + "type": "string", + }, + }, + "required": [ + "foo", + ], + "type": "object", + }, + { + "type": "null", + }, + ], + }, + "name": { + "type": "string", + }, + "type": { + "const": "string", + "type": "string", + }, + }, + "required": [ + "type", + "name", + "metadata", + ], + "type": "object", + }, + { + "additionalProperties": false, + "properties": { + "metadata": { + "$ref": "#/definitions/query_properties_fields_items_anyOf_0_properties_metadata", + }, + "type": { + "const": "number", + "type": "string", + }, + }, + "required": [ + "type", + "metadata", + ], + "type": "object", + }, + ], + }, + "type": "array", + }, + "name": { + "type": "string", }, }, + "required": [ + "name", + "fields", + ], + "type": "object", + } + `); + + const completion = await makeSnapshotRequest( + (openai) => + openai.beta.chat.completions.parse({ + model: 'gpt-4o-2024-08-06', + messages: [ + { + role: 'system', + content: + "You are a helpful assistant. Generate a data model according to the user's instructions.", + }, + { role: 'user', content: 'create a todo app data model' }, + ], + response_format: zodResponseFormat(model, 'query'), + }), + 2, + ); + + expect(completion.choices[0]?.message).toMatchInlineSnapshot(` + { + "content": "{"name":"TodoApp","fields":[{"type":"string","name":"taskId","metadata":{"foo":"unique identifier for each task"}},{"type":"string","name":"title","metadata":{"foo":"title of the task"}},{"type":"string","name":"description","metadata":{"foo":"detailed description of the task. This is optional."}},{"type":"string","name":"status","metadata":{"foo":"status of the task, e.g., pending, completed, etc."}},{"type":"string","name":"dueDate","metadata":null},{"type":"string","name":"priority","metadata":{"foo":"priority level of the task, e.g., low, medium, high"}},{"type":"string","name":"creationDate","metadata":{"foo":"date when the task was created"}},{"type":"string","name":"lastModifiedDate","metadata":{"foo":"date when the task was last modified"}},{"type":"string","name":"tags","metadata":{"foo":"tags associated with the task, for categorization"}}]}", + "parsed": { + "fields": [ + { + "metadata": { + "foo": "unique identifier for each task", + }, + "name": "taskId", + "type": "string", + }, + { + "metadata": { + "foo": "title of the task", + }, + "name": "title", + "type": "string", + }, + { + "metadata": { + "foo": "detailed description of the task. This is optional.", + }, + "name": "description", + "type": "string", + }, + { + "metadata": { + "foo": "status of the task, e.g., pending, completed, etc.", + }, + "name": "status", + "type": "string", + }, + { + "metadata": null, + "name": "dueDate", + "type": "string", + }, + { + "metadata": { + "foo": "priority level of the task, e.g., low, medium, high", + }, + "name": "priority", + "type": "string", + }, + { + "metadata": { + "foo": "date when the task was created", + }, + "name": "creationDate", + "type": "string", + }, + { + "metadata": { + "foo": "date when the task was last modified", + }, + "name": "lastModifiedDate", + "type": "string", + }, + { + "metadata": { + "foo": "tags associated with the task, for categorization", + }, + "name": "tags", + "type": "string", + }, + ], + "name": "TodoApp", + }, "refusal": null, "role": "assistant", "tool_calls": [], From 925a93062924f11759339b5f9318175c6c68e4cf Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 9 Aug 2024 18:49:52 +0000 Subject: [PATCH 488/725] release: 4.55.4 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 19 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d34e87f46..04004d7d1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.55.3" + ".": "4.55.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index fefb710b2..d43fd4772 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 4.55.4 (2024-08-09) + +Full Changelog: [v4.55.3...v4.55.4](https://github.com/openai/openai-node/compare/v4.55.3...v4.55.4) + +### Bug Fixes + +* **helpers/zod:** nested union schema extraction ([#979](https://github.com/openai/openai-node/issues/979)) ([31b05aa](https://github.com/openai/openai-node/commit/31b05aa6fa0445141ae17a1b1eff533b83735f3a)) + + +### Chores + +* **ci:** bump prism mock server version ([#982](https://github.com/openai/openai-node/issues/982)) ([7442643](https://github.com/openai/openai-node/commit/7442643e8445eea15da54843a7c9d7580a402979)) +* **ci:** codeowners file ([#980](https://github.com/openai/openai-node/issues/980)) ([17a42b2](https://github.com/openai/openai-node/commit/17a42b2f6e2de2dce338358a48f6d7d4ed723f6f)) + ## 4.55.3 (2024-08-08) Full Changelog: [v4.55.2...v4.55.3](https://github.com/openai/openai-node/compare/v4.55.2...v4.55.3) diff --git a/README.md b/README.md index 13f449a29..50f7f09e2 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.55.3/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.55.4/mod.ts'; ``` diff --git a/package.json b/package.json index 31f5bc16a..9110c179b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.55.3", + "version": "4.55.4", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index cd4cbd4f5..79fd58ea4 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.55.3/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.55.4/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index ec9119c18..f4a031b0b 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.55.3'; // x-release-please-version +export const VERSION = '4.55.4'; // x-release-please-version From 7e993db2ee1bd00ab556638c4f75949a53b56abb Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 19:47:41 +0000 Subject: [PATCH 489/725] chore(examples): minor formatting changes (#987) --- tests/api-resources/beta/assistants.test.ts | 2 +- .../beta/threads/runs/runs.test.ts | 12 ++++++------ .../api-resources/beta/threads/threads.test.ts | 18 +++++++++--------- tests/api-resources/chat/completions.test.ts | 8 ++++---- .../fine-tuning/jobs/jobs.test.ts | 6 +++--- tests/api-resources/images.test.ts | 6 +++--- 6 files changed, 26 insertions(+), 26 deletions(-) diff --git a/tests/api-resources/beta/assistants.test.ts b/tests/api-resources/beta/assistants.test.ts index 13fec377d..fdc325254 100644 --- a/tests/api-resources/beta/assistants.test.ts +++ b/tests/api-resources/beta/assistants.test.ts @@ -34,7 +34,7 @@ describe('resource assistants', () => { file_search: { vector_store_ids: ['string'], vector_stores: [ - { file_ids: ['string', 'string', 'string'], chunking_strategy: { type: 'auto' }, metadata: {} }, + { chunking_strategy: { type: 'auto' }, file_ids: ['string', 'string', 'string'], metadata: {} }, ], }, }, diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts index f6a7dead6..a2fda7757 100644 --- a/tests/api-resources/beta/threads/runs/runs.test.ts +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -26,8 +26,8 @@ describe('resource runs', () => { additional_instructions: 'additional_instructions', additional_messages: [ { - role: 'user', content: 'string', + role: 'user', attachments: [ { file_id: 'file_id', @@ -57,8 +57,8 @@ describe('resource runs', () => { metadata: {}, }, { - role: 'user', content: 'string', + role: 'user', attachments: [ { file_id: 'file_id', @@ -88,8 +88,8 @@ describe('resource runs', () => { metadata: {}, }, { - role: 'user', content: 'string', + role: 'user', attachments: [ { file_id: 'file_id', @@ -227,9 +227,9 @@ describe('resource runs', () => { test('submitToolOutputs: required and optional params', async () => { const response = await client.beta.threads.runs.submitToolOutputs('thread_id', 'run_id', { tool_outputs: [ - { tool_call_id: 'tool_call_id', output: 'output' }, - { tool_call_id: 'tool_call_id', output: 'output' }, - { tool_call_id: 'tool_call_id', output: 'output' }, + { output: 'output', tool_call_id: 'tool_call_id' }, + { output: 'output', tool_call_id: 'tool_call_id' }, + { output: 'output', tool_call_id: 'tool_call_id' }, ], stream: false, }); diff --git a/tests/api-resources/beta/threads/threads.test.ts b/tests/api-resources/beta/threads/threads.test.ts index abf631adb..dc0a94a7d 100644 --- a/tests/api-resources/beta/threads/threads.test.ts +++ b/tests/api-resources/beta/threads/threads.test.ts @@ -34,8 +34,8 @@ describe('resource threads', () => { { messages: [ { - role: 'user', content: 'string', + role: 'user', attachments: [ { file_id: 'file_id', @@ -65,8 +65,8 @@ describe('resource threads', () => { metadata: {}, }, { - role: 'user', content: 'string', + role: 'user', attachments: [ { file_id: 'file_id', @@ -96,8 +96,8 @@ describe('resource threads', () => { metadata: {}, }, { - role: 'user', content: 'string', + role: 'user', attachments: [ { file_id: 'file_id', @@ -134,8 +134,8 @@ describe('resource threads', () => { vector_store_ids: ['string'], vector_stores: [ { - file_ids: ['string', 'string', 'string'], chunking_strategy: { type: 'auto' }, + file_ids: ['string', 'string', 'string'], metadata: {}, }, ], @@ -220,8 +220,8 @@ describe('resource threads', () => { thread: { messages: [ { - role: 'user', content: 'string', + role: 'user', attachments: [ { file_id: 'file_id', @@ -251,8 +251,8 @@ describe('resource threads', () => { metadata: {}, }, { - role: 'user', content: 'string', + role: 'user', attachments: [ { file_id: 'file_id', @@ -282,8 +282,8 @@ describe('resource threads', () => { metadata: {}, }, { - role: 'user', content: 'string', + role: 'user', attachments: [ { file_id: 'file_id', @@ -313,16 +313,16 @@ describe('resource threads', () => { metadata: {}, }, ], + metadata: {}, tool_resources: { code_interpreter: { file_ids: ['string', 'string', 'string'] }, file_search: { vector_store_ids: ['string'], vector_stores: [ - { file_ids: ['string', 'string', 'string'], chunking_strategy: { type: 'auto' }, metadata: {} }, + { chunking_strategy: { type: 'auto' }, file_ids: ['string', 'string', 'string'], metadata: {} }, ], }, }, - metadata: {}, }, tool_choice: 'none', tool_resources: { diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 5cdd1e670..2179c52c3 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -29,7 +29,7 @@ describe('resource completions', () => { model: 'gpt-4o', frequency_penalty: -2, function_call: 'none', - functions: [{ description: 'description', name: 'name', parameters: { foo: 'bar' } }], + functions: [{ name: 'name', description: 'description', parameters: { foo: 'bar' } }], logit_bias: { foo: 0 }, logprobs: true, max_tokens: 0, @@ -46,16 +46,16 @@ describe('resource completions', () => { tool_choice: 'none', tools: [ { + function: { name: 'name', description: 'description', parameters: { foo: 'bar' }, strict: true }, type: 'function', - function: { description: 'description', name: 'name', parameters: { foo: 'bar' }, strict: true }, }, { + function: { name: 'name', description: 'description', parameters: { foo: 'bar' }, strict: true }, type: 'function', - function: { description: 'description', name: 'name', parameters: { foo: 'bar' }, strict: true }, }, { + function: { name: 'name', description: 'description', parameters: { foo: 'bar' }, strict: true }, type: 'function', - function: { description: 'description', name: 'name', parameters: { foo: 'bar' }, strict: true }, }, ], top_logprobs: 0, diff --git a/tests/api-resources/fine-tuning/jobs/jobs.test.ts b/tests/api-resources/fine-tuning/jobs/jobs.test.ts index e683dfe3e..646c2f5cf 100644 --- a/tests/api-resources/fine-tuning/jobs/jobs.test.ts +++ b/tests/api-resources/fine-tuning/jobs/jobs.test.ts @@ -33,8 +33,8 @@ describe('resource jobs', () => { type: 'wandb', wandb: { project: 'my-wandb-project', - name: 'name', entity: 'entity', + name: 'name', tags: ['custom-tag', 'custom-tag', 'custom-tag'], }, }, @@ -42,8 +42,8 @@ describe('resource jobs', () => { type: 'wandb', wandb: { project: 'my-wandb-project', - name: 'name', entity: 'entity', + name: 'name', tags: ['custom-tag', 'custom-tag', 'custom-tag'], }, }, @@ -51,8 +51,8 @@ describe('resource jobs', () => { type: 'wandb', wandb: { project: 'my-wandb-project', - name: 'name', entity: 'entity', + name: 'name', tags: ['custom-tag', 'custom-tag', 'custom-tag'], }, }, diff --git a/tests/api-resources/images.test.ts b/tests/api-resources/images.test.ts index 43e67b030..88eb97a93 100644 --- a/tests/api-resources/images.test.ts +++ b/tests/api-resources/images.test.ts @@ -28,7 +28,7 @@ describe('resource images', () => { model: 'dall-e-2', n: 1, response_format: 'url', - size: '1024x1024', + size: '256x256', user: 'user-1234', }); }); @@ -55,7 +55,7 @@ describe('resource images', () => { model: 'dall-e-2', n: 1, response_format: 'url', - size: '1024x1024', + size: '256x256', user: 'user-1234', }); }); @@ -78,7 +78,7 @@ describe('resource images', () => { n: 1, quality: 'standard', response_format: 'url', - size: '1024x1024', + size: '256x256', style: 'vivid', user: 'user-1234', }); From 06016386f6c8fc270ccbfd6039e18833fb8fa70f Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 21:25:22 +0000 Subject: [PATCH 490/725] chore: sync openapi url (#989) --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index cad2c64cd..2371b7b8d 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-97797a9363b9960b5f2fbdc84426a2b91e75533ecd409fe99e37c231180a4339.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-285bce7dcdae7eea5fe84a8d6e5af2c1473d65ea193109370fb2257851eef7eb.yml From d1c40090e7797f3f57f213784996d21a97dc3ec6 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 21:25:47 +0000 Subject: [PATCH 491/725] release: 4.55.5 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 04004d7d1..a06275749 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.55.4" + ".": "4.55.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d43fd4772..c61b8138f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 4.55.5 (2024-08-12) + +Full Changelog: [v4.55.4...v4.55.5](https://github.com/openai/openai-node/compare/v4.55.4...v4.55.5) + +### Chores + +* **examples:** minor formatting changes ([#987](https://github.com/openai/openai-node/issues/987)) ([8e6b615](https://github.com/openai/openai-node/commit/8e6b615ada09fa4e50dc8e0b5decf662eed19856)) +* sync openapi url ([#989](https://github.com/openai/openai-node/issues/989)) ([02ff1c5](https://github.com/openai/openai-node/commit/02ff1c55b5eefd8b6193ba2bf10dd5515945bd7a)) + ## 4.55.4 (2024-08-09) Full Changelog: [v4.55.3...v4.55.4](https://github.com/openai/openai-node/compare/v4.55.3...v4.55.4) diff --git a/README.md b/README.md index 50f7f09e2..116375c15 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.55.4/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.55.5/mod.ts'; ``` diff --git a/package.json b/package.json index 9110c179b..42e3f6eec 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.55.4", + "version": "4.55.5", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 79fd58ea4..3083cfdab 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.55.4/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.55.5/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index f4a031b0b..1d2b59cb4 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.55.4'; // x-release-please-version +export const VERSION = '4.55.5'; // x-release-please-version From 62f985a351e3fea078226706d6d861a475c8c11e Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Tue, 13 Aug 2024 11:26:08 -0400 Subject: [PATCH 492/725] fix(zod-to-json-schema): correct licensing (#986) --- src/_vendor/zod-to-json-schema/LICENSE | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/_vendor/zod-to-json-schema/LICENSE diff --git a/src/_vendor/zod-to-json-schema/LICENSE b/src/_vendor/zod-to-json-schema/LICENSE new file mode 100644 index 000000000..a4690a1b6 --- /dev/null +++ b/src/_vendor/zod-to-json-schema/LICENSE @@ -0,0 +1,15 @@ +ISC License + +Copyright (c) 2020, Stefan Terdell + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. From d486d275d33465ce55047eb77206ec1b7eaaabfd Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 13 Aug 2024 15:26:30 +0000 Subject: [PATCH 493/725] release: 4.55.6 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a06275749..3fb120d0e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.55.5" + ".": "4.55.6" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c61b8138f..e213c9bca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.55.6 (2024-08-13) + +Full Changelog: [v4.55.5...v4.55.6](https://github.com/openai/openai-node/compare/v4.55.5...v4.55.6) + +### Bug Fixes + +* **zod-to-json-schema:** correct licensing ([#986](https://github.com/openai/openai-node/issues/986)) ([bd2051e](https://github.com/openai/openai-node/commit/bd2051e501e2ceafcd095f82205c2e668e1d68d7)) + ## 4.55.5 (2024-08-12) Full Changelog: [v4.55.4...v4.55.5](https://github.com/openai/openai-node/compare/v4.55.4...v4.55.5) diff --git a/README.md b/README.md index 116375c15..193fc24fc 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.55.5/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.55.6/mod.ts'; ``` diff --git a/package.json b/package.json index 42e3f6eec..683ae9afb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.55.5", + "version": "4.55.6", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 3083cfdab..dd1410d53 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.55.5/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.55.6/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 1d2b59cb4..64d6dc952 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.55.5'; // x-release-please-version +export const VERSION = '4.55.6'; // x-release-please-version From 3c1224d2320f4eae8836e324339fe7794aeabee0 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Tue, 13 Aug 2024 16:45:30 -0400 Subject: [PATCH 494/725] fix(json-schema): correct handling of nested recursive schemas (#992) * Fix zod to json schema with nested and recursive objects * minor style updates * add an iteration limit --------- Co-authored-by: Zijia Zhang --- src/_vendor/zod-to-json-schema/Options.ts | 31 +-- .../zod-to-json-schema/zodToJsonSchema.ts | 28 ++- tests/lib/__snapshots__/parser.test.ts.snap | 28 +++ tests/lib/parser.test.ts | 182 +++++++++++++++++- 4 files changed, 242 insertions(+), 27 deletions(-) diff --git a/src/_vendor/zod-to-json-schema/Options.ts b/src/_vendor/zod-to-json-schema/Options.ts index a83690e59..a9abfc0e2 100644 --- a/src/_vendor/zod-to-json-schema/Options.ts +++ b/src/_vendor/zod-to-json-schema/Options.ts @@ -38,10 +38,9 @@ export type Options = { openaiStrictMode?: boolean; }; -export const defaultOptions: Options = { +const defaultOptions: Omit = { name: undefined, $refStrategy: 'root', - basePath: ['#'], effectStrategy: 'input', pipeStrategy: 'all', dateStrategy: 'format:date-time', @@ -51,7 +50,6 @@ export const defaultOptions: Options = { definitionPath: 'definitions', target: 'jsonSchema7', strictUnions: false, - definitions: {}, errorMessages: false, markdownDescription: false, patternStrategy: 'escape', @@ -63,13 +61,20 @@ export const defaultOptions: Options = { export const getDefaultOptions = ( options: Partial> | string | undefined, -) => - (typeof options === 'string' ? - { - ...defaultOptions, - name: options, - } - : { - ...defaultOptions, - ...options, - }) as Options; +) => { + // We need to add `definitions` here as we may mutate it + return ( + typeof options === 'string' ? + { + ...defaultOptions, + basePath: ['#'], + definitions: {}, + name: options, + } + : { + ...defaultOptions, + basePath: ['#'], + definitions: {}, + ...options, + }) as Options; +}; diff --git a/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts b/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts index 1c3290008..e0d63d525 100644 --- a/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts +++ b/src/_vendor/zod-to-json-schema/zodToJsonSchema.ts @@ -49,14 +49,28 @@ const zodToJsonSchema = ( } const definitions: Record = {}; + const processedDefinitions = new Set(); - for (const [name, zodSchema] of Object.entries(refs.definitions)) { - definitions[name] = - parseDef( - zodDef(zodSchema), - { ...refs, currentPath: [...refs.basePath, refs.definitionPath, name] }, - true, - ) ?? {}; + // the call to `parseDef()` here might itself add more entries to `.definitions` + // so we need to continually evaluate definitions until we've resolved all of them + // + // we have a generous iteration limit here to avoid blowing up the stack if there + // are any bugs that would otherwise result in us iterating indefinitely + for (let i = 0; i < 500; i++) { + const newDefinitions = Object.entries(refs.definitions).filter( + ([key]) => !processedDefinitions.has(key), + ); + if (newDefinitions.length === 0) break; + + for (const [key, schema] of newDefinitions) { + definitions[key] = + parseDef( + zodDef(schema), + { ...refs, currentPath: [...refs.basePath, refs.definitionPath, key] }, + true, + ) ?? {}; + processedDefinitions.add(key); + } } return definitions; diff --git a/tests/lib/__snapshots__/parser.test.ts.snap b/tests/lib/__snapshots__/parser.test.ts.snap index d98db2345..12e737f5c 100644 --- a/tests/lib/__snapshots__/parser.test.ts.snap +++ b/tests/lib/__snapshots__/parser.test.ts.snap @@ -84,6 +84,34 @@ exports[`.parse() zod nested schema extraction 2`] = ` " `; +exports[`.parse() zod recursive schema extraction 2`] = ` +"{ + "id": "chatcmpl-9vdbw9dekyUSEsSKVQDhTxA2RCxcK", + "object": "chat.completion", + "created": 1723523988, + "model": "gpt-4o-2024-08-06", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "{\\"linked_list\\":{\\"value\\":1,\\"next\\":{\\"value\\":2,\\"next\\":{\\"value\\":3,\\"next\\":{\\"value\\":4,\\"next\\":{\\"value\\":5,\\"next\\":null}}}}}}", + "refusal": null + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 40, + "completion_tokens": 38, + "total_tokens": 78 + }, + "system_fingerprint": "fp_2a322c9ffc" +} +" +`; + exports[`.parse() zod top-level recursive schemas 1`] = ` "{ "id": "chatcmpl-9uLhw79ArBF4KsQQOlsoE68m6vh6v", diff --git a/tests/lib/parser.test.ts b/tests/lib/parser.test.ts index 331b16895..cbcc2f186 100644 --- a/tests/lib/parser.test.ts +++ b/tests/lib/parser.test.ts @@ -525,13 +525,6 @@ describe('.parse()', () => { "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { - "contactPerson_properties_person1_properties_name": { - "type": "string", - }, - "contactPerson_properties_person1_properties_phone_number": { - "nullable": true, - "type": "string", - }, "query": { "additionalProperties": false, "properties": { @@ -616,6 +609,21 @@ describe('.parse()', () => { }, ], }, + "query_properties_fields_items_anyOf_0_properties_metadata_anyOf_0": { + "additionalProperties": false, + "properties": { + "foo": { + "$ref": "#/definitions/query_properties_fields_items_anyOf_0_properties_metadata_anyOf_0_properties_foo", + }, + }, + "required": [ + "foo", + ], + "type": "object", + }, + "query_properties_fields_items_anyOf_0_properties_metadata_anyOf_0_properties_foo": { + "type": "string", + }, }, "properties": { "fields": { @@ -783,5 +791,165 @@ describe('.parse()', () => { } `); }); + + test('recursive schema extraction', async () => { + const baseLinkedListNodeSchema = z.object({ + value: z.number(), + }); + type LinkedListNode = z.infer & { + next: LinkedListNode | null; + }; + const linkedListNodeSchema: z.ZodType = baseLinkedListNodeSchema.extend({ + next: z.lazy(() => z.union([linkedListNodeSchema, z.null()])), + }); + + // Define the main schema + const mainSchema = z.object({ + linked_list: linkedListNodeSchema, + }); + + expect(zodResponseFormat(mainSchema, 'query').json_schema.schema).toMatchInlineSnapshot(` + { + "$schema": "http://json-schema.org/draft-07/schema#", + "additionalProperties": false, + "definitions": { + "query": { + "additionalProperties": false, + "properties": { + "linked_list": { + "additionalProperties": false, + "properties": { + "next": { + "anyOf": [ + { + "$ref": "#/definitions/query_properties_linked_list", + }, + { + "type": "null", + }, + ], + }, + "value": { + "type": "number", + }, + }, + "required": [ + "value", + "next", + ], + "type": "object", + }, + }, + "required": [ + "linked_list", + ], + "type": "object", + }, + "query_properties_linked_list": { + "additionalProperties": false, + "properties": { + "next": { + "$ref": "#/definitions/query_properties_linked_list_properties_next", + }, + "value": { + "$ref": "#/definitions/query_properties_linked_list_properties_value", + }, + }, + "required": [ + "value", + "next", + ], + "type": "object", + }, + "query_properties_linked_list_properties_next": { + "anyOf": [ + { + "$ref": "#/definitions/query_properties_linked_list", + }, + { + "type": "null", + }, + ], + }, + "query_properties_linked_list_properties_value": { + "type": "number", + }, + }, + "properties": { + "linked_list": { + "additionalProperties": false, + "properties": { + "next": { + "anyOf": [ + { + "$ref": "#/definitions/query_properties_linked_list", + }, + { + "type": "null", + }, + ], + }, + "value": { + "type": "number", + }, + }, + "required": [ + "value", + "next", + ], + "type": "object", + }, + }, + "required": [ + "linked_list", + ], + "type": "object", + } + `); + + const completion = await makeSnapshotRequest( + (openai) => + openai.beta.chat.completions.parse({ + model: 'gpt-4o-2024-08-06', + messages: [ + { + role: 'system', + content: + "You are a helpful assistant. Generate a data model according to the user's instructions.", + }, + { role: 'user', content: 'create a linklist from 1 to 5' }, + ], + response_format: zodResponseFormat(mainSchema, 'query'), + }), + 2, + ); + + expect(completion.choices[0]?.message).toMatchInlineSnapshot(` + { + "content": "{"linked_list":{"value":1,"next":{"value":2,"next":{"value":3,"next":{"value":4,"next":{"value":5,"next":null}}}}}}", + "parsed": { + "linked_list": { + "next": { + "next": { + "next": { + "next": { + "next": null, + "value": 5, + }, + "value": 4, + }, + "value": 3, + }, + "value": 2, + }, + "value": 1, + }, + }, + "refusal": null, + "role": "assistant", + "tool_calls": [], + } + `); + }); }); }); From 19a5ba3b09299375b50b49d43a13bd89214b8575 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 13 Aug 2024 20:45:51 +0000 Subject: [PATCH 495/725] release: 4.55.7 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3fb120d0e..3156504f7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.55.6" + ".": "4.55.7" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e213c9bca..c9aa0a024 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.55.7 (2024-08-13) + +Full Changelog: [v4.55.6...v4.55.7](https://github.com/openai/openai-node/compare/v4.55.6...v4.55.7) + +### Bug Fixes + +* **json-schema:** correct handling of nested recursive schemas ([#992](https://github.com/openai/openai-node/issues/992)) ([ac309ab](https://github.com/openai/openai-node/commit/ac309abee3419594f45680c7d0ab11e13ce28c5b)) + ## 4.55.6 (2024-08-13) Full Changelog: [v4.55.5...v4.55.6](https://github.com/openai/openai-node/compare/v4.55.5...v4.55.6) diff --git a/README.md b/README.md index 193fc24fc..0d6a9b6ad 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.55.6/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.55.7/mod.ts'; ``` diff --git a/package.json b/package.json index 683ae9afb..b746ad36c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.55.6", + "version": "4.55.7", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index dd1410d53..296fad532 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.55.6/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.55.7/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 64d6dc952..2e8b039e5 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.55.6'; // x-release-please-version +export const VERSION = '4.55.7'; // x-release-please-version From 589ec49f305ecc562ffdb254eff199baf6a06461 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 15 Aug 2024 21:58:43 +0000 Subject: [PATCH 496/725] chore(types): define FilePurpose enum (#997) --- .stats.yml | 2 +- api.md | 1 + src/index.ts | 1 + src/resources/files.ts | 15 ++++++++++++++- src/resources/index.ts | 1 + src/resources/uploads/uploads.ts | 2 +- 6 files changed, 19 insertions(+), 3 deletions(-) diff --git a/.stats.yml b/.stats.yml index 2371b7b8d..185585b67 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-285bce7dcdae7eea5fe84a8d6e5af2c1473d65ea193109370fb2257851eef7eb.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-8ff62fa1091460d68fbd36d72c17d91b709917bebf2983c9c4de5784bc384a2e.yml diff --git a/api.md b/api.md index 25f08b130..9594a101c 100644 --- a/api.md +++ b/api.md @@ -76,6 +76,7 @@ Types: - FileContent - FileDeleted - FileObject +- FilePurpose Methods: diff --git a/src/index.ts b/src/index.ts index 5f7dffd67..97ffb596d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -277,6 +277,7 @@ export namespace OpenAI { export import FileContent = API.FileContent; export import FileDeleted = API.FileDeleted; export import FileObject = API.FileObject; + export import FilePurpose = API.FilePurpose; export import FileObjectsPage = API.FileObjectsPage; export import FileCreateParams = API.FileCreateParams; export import FileListParams = API.FileListParams; diff --git a/src/resources/files.ts b/src/resources/files.ts index a2d3aaa44..ba01a9041 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -183,6 +183,18 @@ export interface FileObject { status_details?: string; } +/** + * The intended purpose of the uploaded file. + * + * Use "assistants" for + * [Assistants](https://platform.openai.com/docs/api-reference/assistants) and + * [Message](https://platform.openai.com/docs/api-reference/messages) files, + * "vision" for Assistants image file inputs, "batch" for + * [Batch API](https://platform.openai.com/docs/guides/batch), and "fine-tune" for + * [Fine-tuning](https://platform.openai.com/docs/api-reference/fine-tuning). + */ +export type FilePurpose = 'assistants' | 'batch' | 'fine-tune' | 'vision'; + export interface FileCreateParams { /** * The File object (not file name) to be uploaded. @@ -199,7 +211,7 @@ export interface FileCreateParams { * [Batch API](https://platform.openai.com/docs/guides/batch), and "fine-tune" for * [Fine-tuning](https://platform.openai.com/docs/api-reference/fine-tuning). */ - purpose: 'assistants' | 'batch' | 'fine-tune' | 'vision'; + purpose: FilePurpose; } export interface FileListParams { @@ -213,6 +225,7 @@ export namespace Files { export import FileContent = FilesAPI.FileContent; export import FileDeleted = FilesAPI.FileDeleted; export import FileObject = FilesAPI.FileObject; + export import FilePurpose = FilesAPI.FilePurpose; export import FileObjectsPage = FilesAPI.FileObjectsPage; export import FileCreateParams = FilesAPI.FileCreateParams; export import FileListParams = FilesAPI.FileListParams; diff --git a/src/resources/index.ts b/src/resources/index.ts index 8d952e2db..a78808584 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -27,6 +27,7 @@ export { FileContent, FileDeleted, FileObject, + FilePurpose, FileCreateParams, FileListParams, FileObjectsPage, diff --git a/src/resources/uploads/uploads.ts b/src/resources/uploads/uploads.ts index ceb2b6d23..1c3ed708d 100644 --- a/src/resources/uploads/uploads.ts +++ b/src/resources/uploads/uploads.ts @@ -143,7 +143,7 @@ export interface UploadCreateParams { * See the * [documentation on File purposes](https://platform.openai.com/docs/api-reference/files/create#files-create-purpose). */ - purpose: 'assistants' | 'batch' | 'fine-tune' | 'vision'; + purpose: FilesAPI.FilePurpose; } export interface UploadCompleteParams { From 0fc2ae418095f1e84e8bf8de5f6f16d2d00dfc83 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 15 Aug 2024 21:59:08 +0000 Subject: [PATCH 497/725] release: 4.55.8 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3156504f7..50eb779fe 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.55.7" + ".": "4.55.8" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c9aa0a024..d55b31275 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.55.8 (2024-08-15) + +Full Changelog: [v4.55.7...v4.55.8](https://github.com/openai/openai-node/compare/v4.55.7...v4.55.8) + +### Chores + +* **types:** define FilePurpose enum ([#997](https://github.com/openai/openai-node/issues/997)) ([19b941b](https://github.com/openai/openai-node/commit/19b941be4ff3e4fa7e67b820a5aac51e5c8d4f60)) + ## 4.55.7 (2024-08-13) Full Changelog: [v4.55.6...v4.55.7](https://github.com/openai/openai-node/compare/v4.55.6...v4.55.7) diff --git a/README.md b/README.md index 0d6a9b6ad..03364dbe2 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.55.7/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.55.8/mod.ts'; ``` diff --git a/package.json b/package.json index b746ad36c..bf193dcae 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.55.7", + "version": "4.55.8", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 296fad532..e31a7f76e 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.55.7/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.55.8/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 2e8b039e5..f2078f00d 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.55.7'; // x-release-please-version +export const VERSION = '4.55.8'; // x-release-please-version From 0121251f6e68dcc569061ed4a444ace2ffeb8c77 Mon Sep 17 00:00:00 2001 From: Deyaaeldeen Almahallawi Date: Thu, 15 Aug 2024 18:00:45 -0700 Subject: [PATCH 498/725] fix(azure/tts): avoid stripping model param (#999) * [Azure] Fix tts required model issue * add tests * remove console.log call --- src/index.ts | 1 - tests/lib/azure.test.ts | 332 ++++++++++++++++++---------------------- 2 files changed, 148 insertions(+), 185 deletions(-) diff --git a/src/index.ts b/src/index.ts index 97ffb596d..422e26c92 100644 --- a/src/index.ts +++ b/src/index.ts @@ -460,7 +460,6 @@ export class AzureOpenAI extends OpenAI { throw new Error('Expected request body to be an object'); } const model = this._deployment || options.body['model']; - delete options.body['model']; if (model !== undefined && !this.baseURL.includes('/deployments')) { options.path = `/deployments/${model}${options.path}`; } diff --git a/tests/lib/azure.test.ts b/tests/lib/azure.test.ts index 06ca1d464..6bb6e0d1e 100644 --- a/tests/lib/azure.test.ts +++ b/tests/lib/azure.test.ts @@ -278,8 +278,10 @@ describe('azure request building', () => { const client = new AzureOpenAI({ baseURL: 'https://example.com/', apiKey: 'My API Key', apiVersion }); describe('model to deployment mapping', function () { - const testFetch = async (url: RequestInfo): Promise => { - return new Response(JSON.stringify({ url }), { headers: { 'content-type': 'application/json' } }); + const testFetch = async (url: RequestInfo, { body }: RequestInit = {}): Promise => { + return new Response(JSON.stringify({ url, body }), { + headers: { 'content-type': 'application/json' }, + }); }; describe('with client-level deployment', function () { const client = new AzureOpenAI({ @@ -291,127 +293,109 @@ describe('azure request building', () => { }); test('handles batch', async () => { - expect( - await client.batches.create({ - completion_window: '24h', - endpoint: '/v1/chat/completions', - input_file_id: 'file-id', - }), - ).toStrictEqual({ - url: `https://example.com/openai/batches?api-version=${apiVersion}`, - }); + const { url } = (await client.batches.create({ + completion_window: '24h', + endpoint: '/v1/chat/completions', + input_file_id: 'file-id', + })) as any; + expect(url).toStrictEqual(`https://example.com/openai/batches?api-version=${apiVersion}`); }); test('handles completions', async () => { - expect( - await client.completions.create({ - model, - prompt: 'prompt', - }), - ).toStrictEqual({ - url: `https://example.com/openai/deployments/${deployment}/completions?api-version=${apiVersion}`, - }); + const { url } = (await client.completions.create({ + model, + prompt: 'prompt', + })) as any; + expect(url).toStrictEqual( + `https://example.com/openai/deployments/${deployment}/completions?api-version=${apiVersion}`, + ); }); test('handles chat completions', async () => { - expect( - await client.chat.completions.create({ - model, - messages: [{ role: 'system', content: 'Hello' }], - }), - ).toStrictEqual({ - url: `https://example.com/openai/deployments/${deployment}/chat/completions?api-version=${apiVersion}`, - }); + const { url } = (await client.chat.completions.create({ + model, + messages: [{ role: 'system', content: 'Hello' }], + })) as any; + expect(url).toStrictEqual( + `https://example.com/openai/deployments/${deployment}/chat/completions?api-version=${apiVersion}`, + ); }); test('handles embeddings', async () => { - expect( - await client.embeddings.create({ - model, - input: 'input', - }), - ).toStrictEqual({ - url: `https://example.com/openai/deployments/${deployment}/embeddings?api-version=${apiVersion}`, - }); + const { url } = (await client.embeddings.create({ + model, + input: 'input', + })) as any; + expect(url).toStrictEqual( + `https://example.com/openai/deployments/${deployment}/embeddings?api-version=${apiVersion}`, + ); }); test('handles audio translations', async () => { - expect( - await client.audio.translations.create({ - model, - file: { url: 'https://example.com/', blob: () => 0 as any }, - }), - ).toStrictEqual({ - url: `https://example.com/openai/deployments/${deployment}/audio/translations?api-version=${apiVersion}`, - }); + const { url } = (await client.audio.translations.create({ + model, + file: { url: 'https://example.com/', blob: () => 0 as any }, + })) as any; + expect(url).toStrictEqual( + `https://example.com/openai/deployments/${deployment}/audio/translations?api-version=${apiVersion}`, + ); }); test('handles audio transcriptions', async () => { - expect( - await client.audio.transcriptions.create({ - model, - file: { url: 'https://example.com/', blob: () => 0 as any }, - }), - ).toStrictEqual({ - url: `https://example.com/openai/deployments/${deployment}/audio/transcriptions?api-version=${apiVersion}`, - }); + const { url } = (await client.audio.transcriptions.create({ + model, + file: { url: 'https://example.com/', blob: () => 0 as any }, + })) as any; + expect(url).toStrictEqual( + `https://example.com/openai/deployments/${deployment}/audio/transcriptions?api-version=${apiVersion}`, + ); }); test('handles text to speech', async () => { - expect( - await ( - await client.audio.speech.create({ - model, - input: '', - voice: 'alloy', - }) - ).json(), - ).toStrictEqual({ - url: `https://example.com/openai/deployments/${deployment}/audio/speech?api-version=${apiVersion}`, - }); + const { url, body } = await ( + await client.audio.speech.create({ + model, + input: '', + voice: 'alloy', + }) + ).json(); + expect(url).toStrictEqual( + `https://example.com/openai/deployments/${deployment}/audio/speech?api-version=${apiVersion}`, + ); + expect(body).toMatch(new RegExp(`"model": "${model}"`)); }); test('handles image generation', async () => { - expect( - await client.images.generate({ - model, - prompt: 'prompt', - }), - ).toStrictEqual({ - url: `https://example.com/openai/deployments/${deployment}/images/generations?api-version=${apiVersion}`, - }); + const { url } = (await client.images.generate({ + model, + prompt: 'prompt', + })) as any; + expect(url).toStrictEqual( + `https://example.com/openai/deployments/${deployment}/images/generations?api-version=${apiVersion}`, + ); }); test('handles assistants', async () => { - expect( - await client.beta.assistants.create({ - model, - }), - ).toStrictEqual({ - url: `https://example.com/openai/assistants?api-version=${apiVersion}`, - }); + const { url } = (await client.beta.assistants.create({ + model, + })) as any; + expect(url).toStrictEqual(`https://example.com/openai/assistants?api-version=${apiVersion}`); }); test('handles files', async () => { - expect( - await client.files.create({ - file: { url: 'https://example.com/', blob: () => 0 as any }, - purpose: 'assistants', - }), - ).toStrictEqual({ - url: `https://example.com/openai/files?api-version=${apiVersion}`, - }); + const { url } = (await client.files.create({ + file: { url: 'https://example.com/', blob: () => 0 as any }, + purpose: 'assistants', + })) as any; + expect(url).toStrictEqual(`https://example.com/openai/files?api-version=${apiVersion}`); }); test('handles fine tuning', async () => { - expect( - await client.fineTuning.jobs.create({ - model, - training_file: '', - }), - ).toStrictEqual({ - url: `https://example.com/openai/fine_tuning/jobs?api-version=${apiVersion}`, - }); + const { url } = (await client.fineTuning.jobs.create({ + model, + training_file: '', + })) as any; + expect(url).toStrictEqual(`https://example.com/openai/fine_tuning/jobs?api-version=${apiVersion}`); }); }); @@ -424,127 +408,107 @@ describe('azure request building', () => { }); test('handles batch', async () => { - expect( - await client.batches.create({ - completion_window: '24h', - endpoint: '/v1/chat/completions', - input_file_id: 'file-id', - }), - ).toStrictEqual({ - url: `https://example.com/openai/batches?api-version=${apiVersion}`, - }); + const { url } = (await client.batches.create({ + completion_window: '24h', + endpoint: '/v1/chat/completions', + input_file_id: 'file-id', + })) as any; + expect(url).toStrictEqual(`https://example.com/openai/batches?api-version=${apiVersion}`); }); test('handles completions', async () => { - expect( - await client.completions.create({ - model: deployment, - prompt: 'prompt', - }), - ).toStrictEqual({ - url: `https://example.com/openai/deployments/${deployment}/completions?api-version=${apiVersion}`, - }); + const { url } = (await client.completions.create({ + model: deployment, + prompt: 'prompt', + })) as any; + expect(url).toStrictEqual( + `https://example.com/openai/deployments/${deployment}/completions?api-version=${apiVersion}`, + ); }); test('handles chat completions', async () => { - expect( - await client.chat.completions.create({ - model: deployment, - messages: [{ role: 'system', content: 'Hello' }], - }), - ).toStrictEqual({ - url: `https://example.com/openai/deployments/${deployment}/chat/completions?api-version=${apiVersion}`, - }); + const { url } = (await client.chat.completions.create({ + model: deployment, + messages: [{ role: 'system', content: 'Hello' }], + })) as any; + expect(url).toStrictEqual( + `https://example.com/openai/deployments/${deployment}/chat/completions?api-version=${apiVersion}`, + ); }); test('handles embeddings', async () => { - expect( - await client.embeddings.create({ - model: deployment, - input: 'input', - }), - ).toStrictEqual({ - url: `https://example.com/openai/deployments/${deployment}/embeddings?api-version=${apiVersion}`, - }); + const { url } = (await client.embeddings.create({ + model: deployment, + input: 'input', + })) as any; + expect(url).toStrictEqual( + `https://example.com/openai/deployments/${deployment}/embeddings?api-version=${apiVersion}`, + ); }); test('Audio translations is not handled', async () => { - expect( - await client.audio.translations.create({ - model: deployment, - file: { url: 'https://example.com/', blob: () => 0 as any }, - }), - ).toStrictEqual({ - url: `https://example.com/openai/audio/translations?api-version=${apiVersion}`, - }); + const { url } = (await client.audio.translations.create({ + model: deployment, + file: { url: 'https://example.com/', blob: () => 0 as any }, + })) as any; + expect(url).toStrictEqual(`https://example.com/openai/audio/translations?api-version=${apiVersion}`); }); test('Audio transcriptions is not handled', async () => { - expect( - await client.audio.transcriptions.create({ - model: deployment, - file: { url: 'https://example.com/', blob: () => 0 as any }, - }), - ).toStrictEqual({ - url: `https://example.com/openai/audio/transcriptions?api-version=${apiVersion}`, - }); + const { url } = (await client.audio.transcriptions.create({ + model: deployment, + file: { url: 'https://example.com/', blob: () => 0 as any }, + })) as any; + expect(url).toStrictEqual( + `https://example.com/openai/audio/transcriptions?api-version=${apiVersion}`, + ); }); test('handles text to speech', async () => { - expect( - await ( - await client.audio.speech.create({ - model: deployment, - input: '', - voice: 'alloy', - }) - ).json(), - ).toStrictEqual({ - url: `https://example.com/openai/deployments/${deployment}/audio/speech?api-version=${apiVersion}`, - }); + const { url, body } = await ( + await client.audio.speech.create({ + model: deployment, + input: '', + voice: 'alloy', + }) + ).json(); + expect(url).toStrictEqual( + `https://example.com/openai/deployments/${deployment}/audio/speech?api-version=${apiVersion}`, + ); + expect(body).toMatch(new RegExp(`"model": "${deployment}"`)); }); test('handles image generation', async () => { - expect( - await client.images.generate({ - model: deployment, - prompt: 'prompt', - }), - ).toStrictEqual({ - url: `https://example.com/openai/deployments/${deployment}/images/generations?api-version=${apiVersion}`, - }); + const { url } = (await client.images.generate({ + model: deployment, + prompt: 'prompt', + })) as any; + expect(url).toStrictEqual( + `https://example.com/openai/deployments/${deployment}/images/generations?api-version=${apiVersion}`, + ); }); test('handles assistants', async () => { - expect( - await client.beta.assistants.create({ - model, - }), - ).toStrictEqual({ - url: `https://example.com/openai/assistants?api-version=${apiVersion}`, - }); + const { url } = (await client.beta.assistants.create({ + model, + })) as any; + expect(url).toStrictEqual(`https://example.com/openai/assistants?api-version=${apiVersion}`); }); test('handles files', async () => { - expect( - await client.files.create({ - file: { url: 'https://example.com/', blob: () => 0 as any }, - purpose: 'assistants', - }), - ).toStrictEqual({ - url: `https://example.com/openai/files?api-version=${apiVersion}`, - }); + const { url } = (await client.files.create({ + file: { url: 'https://example.com/', blob: () => 0 as any }, + purpose: 'assistants', + })) as any; + expect(url).toStrictEqual(`https://example.com/openai/files?api-version=${apiVersion}`); }); test('handles fine tuning', async () => { - expect( - await client.fineTuning.jobs.create({ - model, - training_file: '', - }), - ).toStrictEqual({ - url: `https://example.com/openai/fine_tuning/jobs?api-version=${apiVersion}`, - }); + const { url } = (await client.fineTuning.jobs.create({ + model: deployment, + training_file: '', + })) as any; + expect(url).toStrictEqual(`https://example.com/openai/fine_tuning/jobs?api-version=${apiVersion}`); }); }); }); From a16873d9011c6aef7a58ba6b1beb69989377abb4 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 16 Aug 2024 01:01:02 +0000 Subject: [PATCH 499/725] release: 4.55.9 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 50eb779fe..174efd398 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.55.8" + ".": "4.55.9" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d55b31275..2bdf09fe1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.55.9 (2024-08-16) + +Full Changelog: [v4.55.8...v4.55.9](https://github.com/openai/openai-node/compare/v4.55.8...v4.55.9) + +### Bug Fixes + +* **azure/tts:** avoid stripping model param ([#999](https://github.com/openai/openai-node/issues/999)) ([c3a7ccd](https://github.com/openai/openai-node/commit/c3a7ccdbd6d9a2576509c2dc6c1605bc73c6dde7)) + ## 4.55.8 (2024-08-15) Full Changelog: [v4.55.7...v4.55.8](https://github.com/openai/openai-node/compare/v4.55.7...v4.55.8) diff --git a/README.md b/README.md index 03364dbe2..c322073f5 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.55.8/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.55.9/mod.ts'; ``` diff --git a/package.json b/package.json index bf193dcae..4f5c0cbd4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.55.8", + "version": "4.55.9", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index e31a7f76e..317f45e7d 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.55.8/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.55.9/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index f2078f00d..61170c3ee 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.55.8'; // x-release-please-version +export const VERSION = '4.55.9'; // x-release-please-version From f94bef28ac5b7469a8a67ec2f44a3e38e0cbcac2 Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Fri, 16 Aug 2024 13:40:30 +0000 Subject: [PATCH 500/725] feat(api): add chatgpt-4o-latest model --- src/resources/chat/completions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 26e7490e0..764bdb129 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -475,7 +475,7 @@ export interface ChatCompletionMessage { * @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of * a function that should be called, as generated by the model. */ - function_call?: ChatCompletionMessage.FunctionCall; + function_call?: ChatCompletionMessage.FunctionCall | null; /** * The tool calls generated by the model, such as function calls. From 39731a60b99053d41b1943c85e115c2f23ccb2b9 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 16 Aug 2024 13:40:51 +0000 Subject: [PATCH 501/725] release: 4.56.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 174efd398..4cce37624 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.55.9" + ".": "4.56.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bdf09fe1..b3447cc50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.56.0 (2024-08-16) + +Full Changelog: [v4.55.9...v4.56.0](https://github.com/openai/openai-node/compare/v4.55.9...v4.56.0) + +### Features + +* **api:** add chatgpt-4o-latest model ([edc4398](https://github.com/openai/openai-node/commit/edc43986ba96a0fda48f7eea368efe706f68dcac)) + ## 4.55.9 (2024-08-16) Full Changelog: [v4.55.8...v4.55.9](https://github.com/openai/openai-node/compare/v4.55.8...v4.55.9) diff --git a/README.md b/README.md index c322073f5..04fe6470c 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.55.9/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.56.0/mod.ts'; ``` diff --git a/package.json b/package.json index 4f5c0cbd4..bf3ec6303 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.55.9", + "version": "4.56.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 317f45e7d..6a1fd236b 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.55.9/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.56.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 61170c3ee..03692402f 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.55.9'; // x-release-please-version +export const VERSION = '4.56.0'; // x-release-please-version From 5236bbc16fe4f2f93ee3398299c1d875e60fde64 Mon Sep 17 00:00:00 2001 From: Deyaaeldeen Almahallawi Date: Tue, 20 Aug 2024 15:46:03 -0700 Subject: [PATCH 502/725] [Azure] Refresh AAD token on retry (#1003) * [Azure] Refresh AAD token on retry * add context --- src/index.ts | 8 +++++++- tests/lib/azure.test.ts | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 422e26c92..0c6c7badb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -485,7 +485,13 @@ export class AzureOpenAI extends OpenAI { } protected override async prepareOptions(opts: Core.FinalRequestOptions): Promise { - if (opts.headers?.['Authorization'] || opts.headers?.['api-key']) { + /** + * The user should provide a bearer token provider if they want + * to use Azure AD authentication. The user shouldn't set the + * Authorization header manually because the header is overwritten + * with the Azure AD token if a bearer token provider is provided. + */ + if (opts.headers?.['api-key']) { return super.prepareOptions(opts); } const token = await this._getAzureADToken(); diff --git a/tests/lib/azure.test.ts b/tests/lib/azure.test.ts index 6bb6e0d1e..064a0098c 100644 --- a/tests/lib/azure.test.ts +++ b/tests/lib/azure.test.ts @@ -254,6 +254,43 @@ describe('instantiate azure client', () => { /The `apiKey` and `azureADTokenProvider` arguments are mutually exclusive; only one can be passed at a time./, ); }); + + test('AAD token is refreshed', async () => { + let fail = true; + const testFetch = async (url: RequestInfo, req: RequestInit | undefined): Promise => { + if (fail) { + fail = false; + return new Response(undefined, { + status: 429, + headers: { + 'Retry-After': '0.1', + }, + }); + } + return new Response( + JSON.stringify({ auth: (req?.headers as Record)['authorization'] }), + { headers: { 'content-type': 'application/json' } }, + ); + }; + let counter = 0; + async function azureADTokenProvider() { + return `token-${counter++}`; + } + const client = new AzureOpenAI({ + baseURL: 'http://localhost:5000/', + azureADTokenProvider, + apiVersion, + fetch: testFetch, + }); + expect( + await client.chat.completions.create({ + model, + messages: [{ role: 'system', content: 'Hello' }], + }), + ).toStrictEqual({ + auth: 'Bearer token-1', + }); + }); }); test('with endpoint', () => { From 52b7cfe3572305671e70d47257cb224233ad79f4 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 27 Aug 2024 17:51:17 +0000 Subject: [PATCH 503/725] chore(ci): check for build errors (#1013) --- .github/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68f80399b..333139a53 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,6 +27,25 @@ jobs: - name: Check types run: ./scripts/lint + + build: + name: build + runs-on: ubuntu-latest + if: github.repository == 'openai/openai-node' + + steps: + - uses: actions/checkout@v4 + + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: '18' + + - name: Install dependencies + run: yarn install + + - name: Check build + run: ./scripts/build test: name: test runs-on: ubuntu-latest From 82439072952ebac9fdc82f895063c7996676b1e1 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 27 Aug 2024 17:51:42 +0000 Subject: [PATCH 504/725] release: 4.56.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4cce37624..a1aa971a9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.56.0" + ".": "4.56.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b3447cc50..9ce651a98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.56.1 (2024-08-27) + +Full Changelog: [v4.56.0...v4.56.1](https://github.com/openai/openai-node/compare/v4.56.0...v4.56.1) + +### Chores + +* **ci:** check for build errors ([#1013](https://github.com/openai/openai-node/issues/1013)) ([7ff2127](https://github.com/openai/openai-node/commit/7ff21273091a605e05173502654cfb9c90a4382e)) + ## 4.56.0 (2024-08-16) Full Changelog: [v4.55.9...v4.56.0](https://github.com/openai/openai-node/compare/v4.55.9...v4.56.0) diff --git a/README.md b/README.md index 04fe6470c..5bde96318 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.56.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.56.1/mod.ts'; ``` diff --git a/package.json b/package.json index bf3ec6303..d02286c59 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.56.0", + "version": "4.56.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 6a1fd236b..90c555c85 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.56.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.56.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 03692402f..893e19f6a 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.56.0'; // x-release-please-version +export const VERSION = '4.56.1'; // x-release-please-version From 3f12b9243b2534195502f95e588619413875675a Mon Sep 17 00:00:00 2001 From: Darren McElligott <1863428+darrenmce@users.noreply.github.com> Date: Wed, 28 Aug 2024 15:49:57 -0400 Subject: [PATCH 505/725] helpers/zod: fix type on props parameter and add test (#1018) --- src/helpers/zod.ts | 2 +- tests/helpers/zod.test.ts | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/src/helpers/zod.ts b/src/helpers/zod.ts index 1946b2199..463ef588c 100644 --- a/src/helpers/zod.ts +++ b/src/helpers/zod.ts @@ -58,7 +58,7 @@ function zodToJsonSchema(schema: z.ZodType, options: { name: string }): Record( zodObject: ZodInput, name: string, - props?: Omit, + props?: Omit, ): AutoParseableResponseFormat> { return makeParseableResponseFormat( { diff --git a/tests/helpers/zod.test.ts b/tests/helpers/zod.test.ts index 1ad4b7475..493b4c0c8 100644 --- a/tests/helpers/zod.test.ts +++ b/tests/helpers/zod.test.ts @@ -132,6 +132,18 @@ describe('zodResponseFormat', () => { `); }); + it('allows description field to be passed in', () => { + expect( + zodResponseFormat( + z.object({ + city: z.string(), + }), + 'city', + { description: 'A city' }, + ).json_schema, + ).toHaveProperty('description', 'A city'); + }); + test('kitchen sink types', () => { const Table = z.enum(['orders', 'customers', 'products']); From eb50fc46dd1e70f9dac831ad82379ac6787cffe7 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 29 Aug 2024 12:47:29 +0000 Subject: [PATCH 506/725] chore: run tsc as part of lint script (#1020) --- scripts/lint | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/lint b/scripts/lint index 4af1de013..6ba75dfb5 100755 --- a/scripts/lint +++ b/scripts/lint @@ -6,3 +6,6 @@ cd "$(dirname "$0")/.." echo "==> Running eslint" ESLINT_USE_FLAT_CONFIG="false" ./node_modules/.bin/eslint --ext ts,js . + +echo "==> Running tsc" +./node_modules/.bin/tsc --noEmit From 081e21acf9f49c21b0dffece08e7c61b2d90cc6e Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 29 Aug 2024 12:47:54 +0000 Subject: [PATCH 507/725] release: 4.56.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a1aa971a9..780c9d947 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.56.1" + ".": "4.56.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ce651a98..b6420ffe3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.56.2 (2024-08-29) + +Full Changelog: [v4.56.1...v4.56.2](https://github.com/openai/openai-node/compare/v4.56.1...v4.56.2) + +### Chores + +* run tsc as part of lint script ([#1020](https://github.com/openai/openai-node/issues/1020)) ([4942347](https://github.com/openai/openai-node/commit/49423472f2b0a0b63961174bedfc00bfd99d47f9)) + ## 4.56.1 (2024-08-27) Full Changelog: [v4.56.0...v4.56.1](https://github.com/openai/openai-node/compare/v4.56.0...v4.56.1) diff --git a/README.md b/README.md index 5bde96318..80a266fb2 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.56.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.56.2/mod.ts'; ``` diff --git a/package.json b/package.json index d02286c59..1fa8e59d4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.56.1", + "version": "4.56.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 90c555c85..14f03b5e7 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.56.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.56.2/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 893e19f6a..8d5cfea61 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.56.1'; // x-release-please-version +export const VERSION = '4.56.2'; // x-release-please-version From 619903cbc75df18ab6563bffc164b880970cf2c9 Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Thu, 29 Aug 2024 16:14:13 +0000 Subject: [PATCH 508/725] feat(api): add file search result details to run steps (#1023) --- .stats.yml | 2 +- api.md | 3 +- package.json | 4 +- src/index.ts | 7 + src/resources/beta/assistants.ts | 82 +++++++---- src/resources/beta/threads/runs/index.ts | 2 + src/resources/beta/threads/runs/runs.ts | 133 ++++++++++-------- src/resources/beta/threads/runs/steps.ts | 124 +++++++++++++++- .../beta/threads/runs/runs.test.ts | 1 + .../beta/threads/runs/steps.test.ts | 21 ++- tests/stringifyQuery.test.ts | 6 - yarn.lock | 106 ++++++++++++++ 12 files changed, 400 insertions(+), 91 deletions(-) diff --git a/.stats.yml b/.stats.yml index 185585b67..fd4f27136 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-8ff62fa1091460d68fbd36d72c17d91b709917bebf2983c9c4de5784bc384a2e.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-1dbac0e95bdb5a89a0dd3d93265475a378214551b7d8c22862928e0d87ace94b.yml diff --git a/api.md b/api.md index 9594a101c..936f64196 100644 --- a/api.md +++ b/api.md @@ -339,6 +339,7 @@ Types: - RunStepDelta - RunStepDeltaEvent - RunStepDeltaMessageDelta +- RunStepInclude - ToolCall - ToolCallDelta - ToolCallDeltaObject @@ -346,7 +347,7 @@ Types: Methods: -- client.beta.threads.runs.steps.retrieve(threadId, runId, stepId) -> RunStep +- client.beta.threads.runs.steps.retrieve(threadId, runId, stepId, { ...params }) -> RunStep - client.beta.threads.runs.steps.list(threadId, runId, { ...params }) -> RunStepsPage ### Messages diff --git a/package.json b/package.json index 1fa8e59d4..e4d595eae 100644 --- a/package.json +++ b/package.json @@ -26,11 +26,13 @@ "dependencies": { "@types/node": "^18.11.18", "@types/node-fetch": "^2.6.4", + "@types/qs": "^6.9.7", "abort-controller": "^3.0.0", "agentkeepalive": "^4.2.1", "form-data-encoder": "1.7.2", "formdata-node": "^4.3.2", - "node-fetch": "^2.6.7" + "node-fetch": "^2.6.7", + "qs": "^6.10.3" }, "devDependencies": { "@swc/core": "^1.3.102", diff --git a/src/index.ts b/src/index.ts index 0c6c7badb..c0e527d25 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,7 +2,10 @@ import * as Errors from './error'; import * as Uploads from './uploads'; + import { type Agent, type RequestInit } from './_shims/index'; +import * as qs from 'qs'; + import * as Core from './core'; import * as Pagination from './pagination'; import * as API from './resources/index'; @@ -183,6 +186,10 @@ export class OpenAI extends Core.APIClient { return { Authorization: `Bearer ${this.apiKey}` }; } + protected override stringifyQuery(query: Record): string { + return qs.stringify(query, { arrayFormat: 'brackets' }); + } + static OpenAI = this; static DEFAULT_TIMEOUT = 600000; // 10 minutes diff --git a/src/resources/beta/assistants.ts b/src/resources/beta/assistants.ts index 8d07e45b0..924d63d5c 100644 --- a/src/resources/beta/assistants.ts +++ b/src/resources/beta/assistants.ts @@ -441,8 +441,8 @@ export namespace AssistantStreamEvent { /** * Occurs when a - * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) is - * created. + * [run step](https://platform.openai.com/docs/api-reference/run-steps/step-object) + * is created. */ export interface ThreadRunStepCreated { /** @@ -455,7 +455,7 @@ export namespace AssistantStreamEvent { /** * Occurs when a - * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) + * [run step](https://platform.openai.com/docs/api-reference/run-steps/step-object) * moves to an `in_progress` state. */ export interface ThreadRunStepInProgress { @@ -469,8 +469,8 @@ export namespace AssistantStreamEvent { /** * Occurs when parts of a - * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) are - * being streamed. + * [run step](https://platform.openai.com/docs/api-reference/run-steps/step-object) + * are being streamed. */ export interface ThreadRunStepDelta { /** @@ -484,8 +484,8 @@ export namespace AssistantStreamEvent { /** * Occurs when a - * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) is - * completed. + * [run step](https://platform.openai.com/docs/api-reference/run-steps/step-object) + * is completed. */ export interface ThreadRunStepCompleted { /** @@ -498,7 +498,7 @@ export namespace AssistantStreamEvent { /** * Occurs when a - * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) + * [run step](https://platform.openai.com/docs/api-reference/run-steps/step-object) * fails. */ export interface ThreadRunStepFailed { @@ -512,8 +512,8 @@ export namespace AssistantStreamEvent { /** * Occurs when a - * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) is - * cancelled. + * [run step](https://platform.openai.com/docs/api-reference/run-steps/step-object) + * is cancelled. */ export interface ThreadRunStepCancelled { /** @@ -526,7 +526,7 @@ export namespace AssistantStreamEvent { /** * Occurs when a - * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) + * [run step](https://platform.openai.com/docs/api-reference/run-steps/step-object) * expires. */ export interface ThreadRunStepExpired { @@ -658,10 +658,42 @@ export namespace FileSearchTool { * * Note that the file search tool may output fewer than `max_num_results` results. * See the - * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/number-of-chunks-returned) + * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings) * for more information. */ max_num_results?: number; + + /** + * The ranking options for the file search. + * + * See the + * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings) + * for more information. + */ + ranking_options?: FileSearch.RankingOptions; + } + + export namespace FileSearch { + /** + * The ranking options for the file search. + * + * See the + * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings) + * for more information. + */ + export interface RankingOptions { + /** + * The ranker to use for the file search. If not specified will use the `auto` + * ranker. + */ + ranker?: 'auto' | 'default_2024_08_21'; + + /** + * The score threshold for the file search. All values must be a floating point + * number between 0 and 1. + */ + score_threshold?: number; + } } } @@ -765,8 +797,8 @@ export namespace MessageStreamEvent { /** * Occurs when a - * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) is - * created. + * [run step](https://platform.openai.com/docs/api-reference/run-steps/step-object) + * is created. */ export type RunStepStreamEvent = | RunStepStreamEvent.ThreadRunStepCreated @@ -780,8 +812,8 @@ export type RunStepStreamEvent = export namespace RunStepStreamEvent { /** * Occurs when a - * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) is - * created. + * [run step](https://platform.openai.com/docs/api-reference/run-steps/step-object) + * is created. */ export interface ThreadRunStepCreated { /** @@ -794,7 +826,7 @@ export namespace RunStepStreamEvent { /** * Occurs when a - * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) + * [run step](https://platform.openai.com/docs/api-reference/run-steps/step-object) * moves to an `in_progress` state. */ export interface ThreadRunStepInProgress { @@ -808,8 +840,8 @@ export namespace RunStepStreamEvent { /** * Occurs when parts of a - * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) are - * being streamed. + * [run step](https://platform.openai.com/docs/api-reference/run-steps/step-object) + * are being streamed. */ export interface ThreadRunStepDelta { /** @@ -823,8 +855,8 @@ export namespace RunStepStreamEvent { /** * Occurs when a - * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) is - * completed. + * [run step](https://platform.openai.com/docs/api-reference/run-steps/step-object) + * is completed. */ export interface ThreadRunStepCompleted { /** @@ -837,7 +869,7 @@ export namespace RunStepStreamEvent { /** * Occurs when a - * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) + * [run step](https://platform.openai.com/docs/api-reference/run-steps/step-object) * fails. */ export interface ThreadRunStepFailed { @@ -851,8 +883,8 @@ export namespace RunStepStreamEvent { /** * Occurs when a - * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) is - * cancelled. + * [run step](https://platform.openai.com/docs/api-reference/run-steps/step-object) + * is cancelled. */ export interface ThreadRunStepCancelled { /** @@ -865,7 +897,7 @@ export namespace RunStepStreamEvent { /** * Occurs when a - * [run step](https://platform.openai.com/docs/api-reference/runs/step-object) + * [run step](https://platform.openai.com/docs/api-reference/run-steps/step-object) * expires. */ export interface ThreadRunStepExpired { diff --git a/src/resources/beta/threads/runs/index.ts b/src/resources/beta/threads/runs/index.ts index d216195cb..9496f59e1 100644 --- a/src/resources/beta/threads/runs/index.ts +++ b/src/resources/beta/threads/runs/index.ts @@ -14,10 +14,12 @@ export { RunStepDelta, RunStepDeltaEvent, RunStepDeltaMessageDelta, + RunStepInclude, ToolCall, ToolCallDelta, ToolCallDeltaObject, ToolCallsStepDetails, + StepRetrieveParams, StepListParams, RunStepsPage, Steps, diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 9383e70cc..fe3a278e9 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -22,27 +22,33 @@ export class Runs extends APIResource { /** * Create a run. */ - create(threadId: string, body: RunCreateParamsNonStreaming, options?: Core.RequestOptions): APIPromise; create( threadId: string, - body: RunCreateParamsStreaming, + params: RunCreateParamsNonStreaming, + options?: Core.RequestOptions, + ): APIPromise; + create( + threadId: string, + params: RunCreateParamsStreaming, options?: Core.RequestOptions, ): APIPromise>; create( threadId: string, - body: RunCreateParamsBase, + params: RunCreateParamsBase, options?: Core.RequestOptions, ): APIPromise | Run>; create( threadId: string, - body: RunCreateParams, + params: RunCreateParams, options?: Core.RequestOptions, ): APIPromise | APIPromise> { + const { include, ...body } = params; return this._client.post(`/threads/${threadId}/runs`, { + query: { include }, body, ...options, headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, - stream: body.stream ?? false, + stream: params.stream ?? false, }) as APIPromise | APIPromise>; } @@ -617,74 +623,87 @@ export type RunCreateParams = RunCreateParamsNonStreaming | RunCreateParamsStrea export interface RunCreateParamsBase { /** - * The ID of the + * Body param: The ID of the * [assistant](https://platform.openai.com/docs/api-reference/assistants) to use to * execute this run. */ assistant_id: string; /** - * Appends additional instructions at the end of the instructions for the run. This - * is useful for modifying the behavior on a per-run basis without overriding other - * instructions. + * Query param: A list of additional fields to include in the response. Currently + * the only supported value is + * `step_details.tool_calls[*].file_search.results[*].content` to fetch the file + * search result content. + * + * See the + * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings) + * for more information. + */ + include?: Array; + + /** + * Body param: Appends additional instructions at the end of the instructions for + * the run. This is useful for modifying the behavior on a per-run basis without + * overriding other instructions. */ additional_instructions?: string | null; /** - * Adds additional messages to the thread before creating the run. + * Body param: Adds additional messages to the thread before creating the run. */ additional_messages?: Array | null; /** - * Overrides the + * Body param: Overrides the * [instructions](https://platform.openai.com/docs/api-reference/assistants/createAssistant) * of the assistant. This is useful for modifying the behavior on a per-run basis. */ instructions?: string | null; /** - * The maximum number of completion tokens that may be used over the course of the - * run. The run will make a best effort to use only the number of completion tokens - * specified, across multiple turns of the run. If the run exceeds the number of - * completion tokens specified, the run will end with status `incomplete`. See - * `incomplete_details` for more info. + * Body param: The maximum number of completion tokens that may be used over the + * course of the run. The run will make a best effort to use only the number of + * completion tokens specified, across multiple turns of the run. If the run + * exceeds the number of completion tokens specified, the run will end with status + * `incomplete`. See `incomplete_details` for more info. */ max_completion_tokens?: number | null; /** - * The maximum number of prompt tokens that may be used over the course of the run. - * The run will make a best effort to use only the number of prompt tokens - * specified, across multiple turns of the run. If the run exceeds the number of - * prompt tokens specified, the run will end with status `incomplete`. See - * `incomplete_details` for more info. + * Body param: The maximum number of prompt tokens that may be used over the course + * of the run. The run will make a best effort to use only the number of prompt + * tokens specified, across multiple turns of the run. If the run exceeds the + * number of prompt tokens specified, the run will end with status `incomplete`. + * See `incomplete_details` for more info. */ max_prompt_tokens?: number | null; /** - * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * Body param: Set of 16 key-value pairs that can be attached to an object. This + * can be useful for storing additional information about the object in a + * structured format. Keys can be a maximum of 64 characters long and values can be + * a maxium of 512 characters long. */ metadata?: unknown | null; /** - * The ID of the [Model](https://platform.openai.com/docs/api-reference/models) to - * be used to execute this run. If a value is provided here, it will override the - * model associated with the assistant. If not, the model associated with the - * assistant will be used. + * Body param: The ID of the + * [Model](https://platform.openai.com/docs/api-reference/models) to be used to + * execute this run. If a value is provided here, it will override the model + * associated with the assistant. If not, the model associated with the assistant + * will be used. */ model?: (string & {}) | ChatAPI.ChatModel | null; /** - * Whether to enable + * Body param: Whether to enable * [parallel function calling](https://platform.openai.com/docs/guides/function-calling/parallel-function-calling) * during tool use. */ parallel_tool_calls?: boolean; /** - * Specifies the format that the model must output. Compatible with + * Body param: Specifies the format that the model must output. Compatible with * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. @@ -708,48 +727,50 @@ export interface RunCreateParamsBase { response_format?: ThreadsAPI.AssistantResponseFormatOption | null; /** - * If `true`, returns a stream of events that happen during the Run as server-sent - * events, terminating when the Run enters a terminal state with a `data: [DONE]` - * message. + * Body param: If `true`, returns a stream of events that happen during the Run as + * server-sent events, terminating when the Run enters a terminal state with a + * `data: [DONE]` message. */ stream?: boolean | null; /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will - * make the output more random, while lower values like 0.2 will make it more - * focused and deterministic. + * Body param: What sampling temperature to use, between 0 and 2. Higher values + * like 0.8 will make the output more random, while lower values like 0.2 will make + * it more focused and deterministic. */ temperature?: number | null; /** - * Controls which (if any) tool is called by the model. `none` means the model will - * not call any tools and instead generates a message. `auto` is the default value - * and means the model can pick between generating a message or calling one or more - * tools. `required` means the model must call one or more tools before responding - * to the user. Specifying a particular tool like `{"type": "file_search"}` or + * Body param: Controls which (if any) tool is called by the model. `none` means + * the model will not call any tools and instead generates a message. `auto` is the + * default value and means the model can pick between generating a message or + * calling one or more tools. `required` means the model must call one or more + * tools before responding to the user. Specifying a particular tool like + * `{"type": "file_search"}` or * `{"type": "function", "function": {"name": "my_function"}}` forces the model to * call that tool. */ tool_choice?: ThreadsAPI.AssistantToolChoiceOption | null; /** - * Override the tools the assistant can use for this run. This is useful for - * modifying the behavior on a per-run basis. + * Body param: Override the tools the assistant can use for this run. This is + * useful for modifying the behavior on a per-run basis. */ tools?: Array | null; /** - * An alternative to sampling with temperature, called nucleus sampling, where the - * model considers the results of the tokens with top_p probability mass. So 0.1 - * means only the tokens comprising the top 10% probability mass are considered. + * Body param: An alternative to sampling with temperature, called nucleus + * sampling, where the model considers the results of the tokens with top_p + * probability mass. So 0.1 means only the tokens comprising the top 10% + * probability mass are considered. * * We generally recommend altering this or temperature but not both. */ top_p?: number | null; /** - * Controls for how a thread will be truncated prior to the run. Use this to - * control the intial context window of the run. + * Body param: Controls for how a thread will be truncated prior to the run. Use + * this to control the intial context window of the run. */ truncation_strategy?: RunCreateParams.TruncationStrategy | null; } @@ -834,18 +855,18 @@ export namespace RunCreateParams { export interface RunCreateParamsNonStreaming extends RunCreateParamsBase { /** - * If `true`, returns a stream of events that happen during the Run as server-sent - * events, terminating when the Run enters a terminal state with a `data: [DONE]` - * message. + * Body param: If `true`, returns a stream of events that happen during the Run as + * server-sent events, terminating when the Run enters a terminal state with a + * `data: [DONE]` message. */ stream?: false | null; } export interface RunCreateParamsStreaming extends RunCreateParamsBase { /** - * If `true`, returns a stream of events that happen during the Run as server-sent - * events, terminating when the Run enters a terminal state with a `data: [DONE]` - * message. + * Body param: If `true`, returns a stream of events that happen during the Run as + * server-sent events, terminating when the Run enters a terminal state with a + * `data: [DONE]` message. */ stream: true; } @@ -1630,10 +1651,12 @@ export namespace Runs { export import RunStepDelta = StepsAPI.RunStepDelta; export import RunStepDeltaEvent = StepsAPI.RunStepDeltaEvent; export import RunStepDeltaMessageDelta = StepsAPI.RunStepDeltaMessageDelta; + export import RunStepInclude = StepsAPI.RunStepInclude; export import ToolCall = StepsAPI.ToolCall; export import ToolCallDelta = StepsAPI.ToolCallDelta; export import ToolCallDeltaObject = StepsAPI.ToolCallDeltaObject; export import ToolCallsStepDetails = StepsAPI.ToolCallsStepDetails; export import RunStepsPage = StepsAPI.RunStepsPage; + export import StepRetrieveParams = StepsAPI.StepRetrieveParams; export import StepListParams = StepsAPI.StepListParams; } diff --git a/src/resources/beta/threads/runs/steps.ts b/src/resources/beta/threads/runs/steps.ts index 09605d458..c076191a3 100644 --- a/src/resources/beta/threads/runs/steps.ts +++ b/src/resources/beta/threads/runs/steps.ts @@ -14,9 +14,27 @@ export class Steps extends APIResource { threadId: string, runId: string, stepId: string, + query?: StepRetrieveParams, + options?: Core.RequestOptions, + ): Core.APIPromise; + retrieve( + threadId: string, + runId: string, + stepId: string, + options?: Core.RequestOptions, + ): Core.APIPromise; + retrieve( + threadId: string, + runId: string, + stepId: string, + query: StepRetrieveParams | Core.RequestOptions = {}, options?: Core.RequestOptions, ): Core.APIPromise { + if (isRequestOptions(query)) { + return this.retrieve(threadId, runId, stepId, {}, query); + } return this._client.get(`/threads/${threadId}/runs/${runId}/steps/${stepId}`, { + query, ...options, headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); @@ -229,7 +247,7 @@ export interface FileSearchToolCall { /** * For now, this is always going to be an empty object. */ - file_search: unknown; + file_search: FileSearchToolCall.FileSearch; /** * The type of tool call. This is always going to be `file_search` for this type of @@ -238,6 +256,82 @@ export interface FileSearchToolCall { type: 'file_search'; } +export namespace FileSearchToolCall { + /** + * For now, this is always going to be an empty object. + */ + export interface FileSearch { + /** + * The ranking options for the file search. + */ + ranking_options?: FileSearch.RankingOptions; + + /** + * The results of the file search. + */ + results?: Array; + } + + export namespace FileSearch { + /** + * The ranking options for the file search. + */ + export interface RankingOptions { + /** + * The ranker used for the file search. + */ + ranker: 'default_2024_08_21'; + + /** + * The score threshold for the file search. All values must be a floating point + * number between 0 and 1. + */ + score_threshold: number; + } + + /** + * A result instance of the file search. + */ + export interface Result { + /** + * The ID of the file that result was found in. + */ + file_id: string; + + /** + * The name of the file that result was found in. + */ + file_name: string; + + /** + * The score of the result. All values must be a floating point number between 0 + * and 1. + */ + score: number; + + /** + * The content of the result that was found. The content is only included if + * requested via the include query parameter. + */ + content?: Array; + } + + export namespace Result { + export interface Content { + /** + * The text content of the file. + */ + text?: string; + + /** + * The type of the content. + */ + type?: 'text'; + } + } + } +} + export interface FileSearchToolCallDelta { /** * For now, this is always going to be an empty object. @@ -558,6 +652,8 @@ export namespace RunStepDeltaMessageDelta { } } +export type RunStepInclude = 'step_details.tool_calls[*].file_search.results[*].content'; + /** * Details of the Code Interpreter tool call the run step was involved in. */ @@ -602,6 +698,19 @@ export interface ToolCallsStepDetails { type: 'tool_calls'; } +export interface StepRetrieveParams { + /** + * A list of additional fields to include in the response. Currently the only + * supported value is `step_details.tool_calls[*].file_search.results[*].content` + * to fetch the file search result content. + * + * See the + * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings) + * for more information. + */ + include?: Array; +} + export interface StepListParams extends CursorPageParams { /** * A cursor for use in pagination. `before` is an object ID that defines your place @@ -611,6 +720,17 @@ export interface StepListParams extends CursorPageParams { */ before?: string; + /** + * A list of additional fields to include in the response. Currently the only + * supported value is `step_details.tool_calls[*].file_search.results[*].content` + * to fetch the file search result content. + * + * See the + * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings) + * for more information. + */ + include?: Array; + /** * Sort order by the `created_at` timestamp of the objects. `asc` for ascending * order and `desc` for descending order. @@ -632,10 +752,12 @@ export namespace Steps { export import RunStepDelta = StepsAPI.RunStepDelta; export import RunStepDeltaEvent = StepsAPI.RunStepDeltaEvent; export import RunStepDeltaMessageDelta = StepsAPI.RunStepDeltaMessageDelta; + export import RunStepInclude = StepsAPI.RunStepInclude; export import ToolCall = StepsAPI.ToolCall; export import ToolCallDelta = StepsAPI.ToolCallDelta; export import ToolCallDeltaObject = StepsAPI.ToolCallDeltaObject; export import ToolCallsStepDetails = StepsAPI.ToolCallsStepDetails; export import RunStepsPage = StepsAPI.RunStepsPage; + export import StepRetrieveParams = StepsAPI.StepRetrieveParams; export import StepListParams = StepsAPI.StepListParams; } diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts index a2fda7757..352d775c0 100644 --- a/tests/api-resources/beta/threads/runs/runs.test.ts +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -23,6 +23,7 @@ describe('resource runs', () => { test('create: required and optional params', async () => { const response = await client.beta.threads.runs.create('thread_id', { assistant_id: 'assistant_id', + include: ['step_details.tool_calls[*].file_search.results[*].content'], additional_instructions: 'additional_instructions', additional_messages: [ { diff --git a/tests/api-resources/beta/threads/runs/steps.test.ts b/tests/api-resources/beta/threads/runs/steps.test.ts index 21487c17b..64cd228ae 100644 --- a/tests/api-resources/beta/threads/runs/steps.test.ts +++ b/tests/api-resources/beta/threads/runs/steps.test.ts @@ -29,6 +29,19 @@ describe('resource steps', () => { ).rejects.toThrow(OpenAI.NotFoundError); }); + test('retrieve: request options and params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + client.beta.threads.runs.steps.retrieve( + 'thread_id', + 'run_id', + 'step_id', + { include: ['step_details.tool_calls[*].file_search.results[*].content'] }, + { path: '/_stainless_unknown_path' }, + ), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + test('list', async () => { const responsePromise = client.beta.threads.runs.steps.list('thread_id', 'run_id'); const rawResponse = await responsePromise.asResponse(); @@ -53,7 +66,13 @@ describe('resource steps', () => { client.beta.threads.runs.steps.list( 'thread_id', 'run_id', - { after: 'after', before: 'before', limit: 0, order: 'asc' }, + { + after: 'after', + before: 'before', + include: ['step_details.tool_calls[*].file_search.results[*].content'], + limit: 0, + order: 'asc', + }, { path: '/_stainless_unknown_path' }, ), ).rejects.toThrow(OpenAI.NotFoundError); diff --git a/tests/stringifyQuery.test.ts b/tests/stringifyQuery.test.ts index 724743f30..e5f3e560a 100644 --- a/tests/stringifyQuery.test.ts +++ b/tests/stringifyQuery.test.ts @@ -20,10 +20,4 @@ describe(stringifyQuery, () => { expect(stringifyQuery(input)).toEqual(expected); }); } - - for (const value of [[], {}, new Date()]) { - it(`${JSON.stringify(value)} -> `, () => { - expect(() => stringifyQuery({ value })).toThrow(`Cannot stringify type ${typeof value}`); - }); - } }); diff --git a/yarn.lock b/yarn.lock index 1b0863df1..c916c0a6a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -881,6 +881,11 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.18.tgz#8dfb97f0da23c2293e554c5a50d61ef134d7697f" integrity sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA== +"@types/qs@^6.9.7": + version "6.9.15" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.15.tgz#adde8a060ec9c305a82de1babc1056e73bd64dce" + integrity sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg== + "@types/semver@^7.5.0": version "7.5.3" resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.3.tgz#9a726e116beb26c24f1ccd6850201e1246122e04" @@ -1243,6 +1248,17 @@ bundle-name@^3.0.0: dependencies: run-applescript "^5.0.0" +call-bind@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" + integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + set-function-length "^1.2.1" + callsites@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" @@ -1432,6 +1448,15 @@ default-browser@^4.0.0: execa "^7.1.1" titleize "^3.0.0" +define-data-property@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" + integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + gopd "^1.0.1" + define-lazy-prop@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz#dbb19adfb746d7fc6d734a06b72f4a00d021255f" @@ -1498,6 +1523,18 @@ error-ex@^1.3.1: dependencies: is-arrayish "^0.2.1" +es-define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" + integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== + dependencies: + get-intrinsic "^1.2.4" + +es-errors@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== + escalade@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" @@ -1845,6 +1882,17 @@ get-caller-file@^2.0.5: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== +get-intrinsic@^1.1.3, get-intrinsic@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" + integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + has-proto "^1.0.1" + has-symbols "^1.0.3" + hasown "^2.0.0" + get-package-type@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" @@ -1910,6 +1958,13 @@ globby@^11.1.0: merge2 "^1.4.1" slash "^3.0.0" +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + graceful-fs@^4.2.9: version "4.2.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" @@ -1930,6 +1985,23 @@ has-flag@^4.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== +has-property-descriptors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" + integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== + dependencies: + es-define-property "^1.0.0" + +has-proto@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" + integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== + +has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + hasown@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.0.tgz#f4c513d454a57b7c7e1650778de226b11700546c" @@ -2747,6 +2819,11 @@ npm-run-path@^5.1.0: dependencies: path-key "^4.0.0" +object-inspect@^1.13.1: + version "1.13.2" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.2.tgz#dea0088467fb991e67af4058147a24824a3043ff" + integrity sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g== + once@^1.3.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" @@ -2960,6 +3037,13 @@ pure-rand@^6.0.0: resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.0.4.tgz#50b737f6a925468679bff00ad20eade53f37d5c7" integrity sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA== +qs@^6.10.3: + version "6.13.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.13.0.tgz#6ca3bd58439f7e245655798997787b0d88a51906" + integrity sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg== + dependencies: + side-channel "^1.0.6" + queue-microtask@^1.2.2: version "1.2.3" resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" @@ -3058,6 +3142,18 @@ semver@^7.5.3, semver@^7.5.4: dependencies: lru-cache "^6.0.0" +set-function-length@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" + integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + shebang-command@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" @@ -3070,6 +3166,16 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== +side-channel@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" + integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + object-inspect "^1.13.1" + signal-exit@^3.0.3, signal-exit@^3.0.7: version "3.0.7" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" From a01d574a521c0803fc0dfe14f25ae582a1a8e1d5 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 29 Aug 2024 18:16:24 +0200 Subject: [PATCH 509/725] fix: install examples deps as part of bootstrap script (#1022) Co-authored-by: Samuel El-Borai --- .github/workflows/ci.yml | 8 ++++---- examples/logprobs.ts | 2 +- scripts/bootstrap | 3 +++ 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 333139a53..d6798e38a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,8 +22,8 @@ jobs: with: node-version: '18' - - name: Install dependencies - run: yarn install + - name: Bootstrap + run: ./scripts/bootstrap - name: Check types run: ./scripts/lint @@ -41,8 +41,8 @@ jobs: with: node-version: '18' - - name: Install dependencies - run: yarn install + - name: Bootstrap + run: ./scripts/bootstrap - name: Check build run: ./scripts/build diff --git a/examples/logprobs.ts b/examples/logprobs.ts index 5a4daf7de..8cf274a14 100755 --- a/examples/logprobs.ts +++ b/examples/logprobs.ts @@ -13,7 +13,7 @@ async function main() { stream: true, logprobs: true, }) - .on('logprob', (logprob) => { + .on('logprobs.content.delta', (logprob) => { console.log(logprob); }); diff --git a/scripts/bootstrap b/scripts/bootstrap index 05dd47a61..033156d3a 100755 --- a/scripts/bootstrap +++ b/scripts/bootstrap @@ -16,3 +16,6 @@ echo "==> Installing Node dependencies…" PACKAGE_MANAGER=$(command -v yarn >/dev/null 2>&1 && echo "yarn" || echo "npm") $PACKAGE_MANAGER install + +cd "$(dirname "$0")/../examples" +$PACKAGE_MANAGER install \ No newline at end of file From 3ba96a77eb314f908efc615b7333fc0f1729bdb7 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 29 Aug 2024 16:16:44 +0000 Subject: [PATCH 510/725] release: 4.57.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 780c9d947..83a9352d7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.56.2" + ".": "4.57.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b6420ffe3..680b164cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.57.0 (2024-08-29) + +Full Changelog: [v4.56.2...v4.57.0](https://github.com/openai/openai-node/compare/v4.56.2...v4.57.0) + +### Features + +* **api:** add file search result details to run steps ([#1023](https://github.com/openai/openai-node/issues/1023)) ([d9acd0a](https://github.com/openai/openai-node/commit/d9acd0a2c52b27983f8db6a8de6a776078b1d41b)) + + +### Bug Fixes + +* install examples deps as part of bootstrap script ([#1022](https://github.com/openai/openai-node/issues/1022)) ([eae8e36](https://github.com/openai/openai-node/commit/eae8e36fd5514eb60773646ec775badde50e783c)) + ## 4.56.2 (2024-08-29) Full Changelog: [v4.56.1...v4.56.2](https://github.com/openai/openai-node/compare/v4.56.1...v4.56.2) diff --git a/README.md b/README.md index 80a266fb2..c648d5a6e 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.56.2/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.57.0/mod.ts'; ``` diff --git a/package.json b/package.json index e4d595eae..d481813db 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.56.2", + "version": "4.57.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 14f03b5e7..7a646d14d 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.56.2/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.57.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 8d5cfea61..99e4b86d6 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.56.2'; // x-release-please-version +export const VERSION = '4.57.0'; // x-release-please-version From dfad54d9215d0dd70c0b588a6d54f1cf4645535f Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Tue, 3 Sep 2024 13:10:07 +0100 Subject: [PATCH 511/725] chore(internal/tests): workaround bug in recent types/node release --- ecosystem-tests/node-ts-cjs/package-lock.json | 19 +++++-------------- ecosystem-tests/node-ts-cjs/package.json | 5 ++++- 2 files changed, 9 insertions(+), 15 deletions(-) diff --git a/ecosystem-tests/node-ts-cjs/package-lock.json b/ecosystem-tests/node-ts-cjs/package-lock.json index c9493b515..2f5374e35 100644 --- a/ecosystem-tests/node-ts-cjs/package-lock.json +++ b/ecosystem-tests/node-ts-cjs/package-lock.json @@ -13,7 +13,7 @@ "tsconfig-paths": "^4.0.0" }, "devDependencies": { - "@types/node": "^20.4.2", + "@types/node": "20.4.2", "@types/node-fetch": "^2.6.1", "@types/ws": "^8.5.4", "fastest-levenshtein": "^1.0.16", @@ -1135,13 +1135,10 @@ } }, "node_modules/@types/node": { - "version": "20.11.30", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.30.tgz", - "integrity": "sha512-dHM6ZxwlmuZaRmUPfv1p+KrdD1Dci04FbdEm/9wEMouFqxYoFl5aMkt0VMAUtYRQDyYvD41WJLukhq/ha3YuTw==", - "dev": true, - "dependencies": { - "undici-types": "~5.26.4" - } + "version": "20.4.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.4.2.tgz", + "integrity": "sha512-Dd0BYtWgnWJKwO1jkmTrzofjK2QXXcai0dmtzvIBhcA+RsG5h8R3xlyta0kGOZRNfL9GuRtb1knmPEhQrePCEw==", + "dev": true }, "node_modules/@types/node-fetch": { "version": "2.6.11", @@ -4233,12 +4230,6 @@ "node": ">=4.2.0" } }, - "node_modules/undici-types": { - "version": "5.26.5", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", - "dev": true - }, "node_modules/universalify": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", diff --git a/ecosystem-tests/node-ts-cjs/package.json b/ecosystem-tests/node-ts-cjs/package.json index 76f866b0b..039b37a3d 100644 --- a/ecosystem-tests/node-ts-cjs/package.json +++ b/ecosystem-tests/node-ts-cjs/package.json @@ -13,7 +13,7 @@ "tsconfig-paths": "^4.0.0" }, "devDependencies": { - "@types/node": "^20.4.2", + "@types/node": "20.4.2", "@types/node-fetch": "^2.6.1", "@types/ws": "^8.5.4", "fastest-levenshtein": "^1.0.16", @@ -22,5 +22,8 @@ "text-encoding-polyfill": "^0.6.7", "ts-jest": "^29.1.0", "typescript": "4.7.4" + }, + "overrides": { + "@types/node": "20.4.2" } } From 2083545a0f906870c66c9fb59259206d55887eb3 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 12:40:03 +0000 Subject: [PATCH 512/725] fix(client): correct File construction from node-fetch Responses (#1029) --- src/uploads.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/uploads.ts b/src/uploads.ts index 081827c9a..a920351cd 100644 --- a/src/uploads.ts +++ b/src/uploads.ts @@ -114,7 +114,12 @@ export async function toFile( const blob = await value.blob(); name ||= new URL(value.url).pathname.split(/[\\/]/).pop() ?? 'unknown_file'; - return new File([blob as any], name, options); + // we need to convert the `Blob` into an array buffer because the `Blob` class + // that `node-fetch` defines is incompatible with the web standard which results + // in `new File` interpreting it as a string instead of binary data. + const data = isBlobLike(blob) ? [(await blob.arrayBuffer()) as any] : [blob]; + + return new File(data, name, options); } const bits = await getBytes(value); From be5269d2ac03dc5cae12455a4650699318e86179 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Tue, 3 Sep 2024 14:16:39 +0100 Subject: [PATCH 513/725] fix(assistants): correctly accumulate tool calls when streaming (#1031) * fix(accumulateDelta): AssistantStream accumulateDelta toolCall (#771) * minor style changes --------- Co-authored-by: A4F54B --- src/lib/AssistantStream.ts | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/lib/AssistantStream.ts b/src/lib/AssistantStream.ts index 32cde3e7a..7c5ffb58e 100644 --- a/src/lib/AssistantStream.ts +++ b/src/lib/AssistantStream.ts @@ -684,6 +684,30 @@ export class AssistantStream accValue.push(...deltaValue); // Use spread syntax for efficient addition continue; } + + for (const deltaEntry of deltaValue) { + if (!Core.isObj(deltaEntry)) { + throw new Error(`Expected array delta entry to be an object but got: ${deltaEntry}`); + } + + const index = deltaEntry['index']; + if (index == null) { + console.error(deltaEntry); + throw new Error('Expected array delta entry to have an `index` property'); + } + + if (typeof index !== 'number') { + throw new Error(`Expected array delta entry \`index\` property to be a number but got ${index}`); + } + + const accEntry = accValue[index]; + if (accEntry == null) { + accValue.push(deltaEntry); + } else { + accValue[index] = this.accumulateDelta(accEntry, deltaEntry); + } + } + continue; } else { throw Error(`Unhandled record type: ${key}, deltaValue: ${deltaValue}, accValue: ${accValue}`); } From 3e10b85f09865ba5a0f31b41605807d19563b6cc Mon Sep 17 00:00:00 2001 From: Young Jin Park Date: Tue, 3 Sep 2024 07:12:11 -0700 Subject: [PATCH 514/725] fix: runTools without stream should not emit user message events (#1005) --- src/lib/ChatCompletionRunner.ts | 8 ++++++-- tests/lib/ChatCompletionRunFunctions.test.ts | 12 ------------ 2 files changed, 6 insertions(+), 14 deletions(-) diff --git a/src/lib/ChatCompletionRunner.ts b/src/lib/ChatCompletionRunner.ts index 8139c577b..0b962a110 100644 --- a/src/lib/ChatCompletionRunner.ts +++ b/src/lib/ChatCompletionRunner.ts @@ -63,8 +63,12 @@ export class ChatCompletionRunner extends AbstractChatCompletion return runner; } - override _addMessage(this: ChatCompletionRunner, message: ChatCompletionMessageParam) { - super._addMessage(message); + override _addMessage( + this: ChatCompletionRunner, + message: ChatCompletionMessageParam, + emit: boolean = true, + ) { + super._addMessage(message, emit); if (isAssistantMessage(message) && message.content) { this._emit('content', message.content as string); } diff --git a/tests/lib/ChatCompletionRunFunctions.test.ts b/tests/lib/ChatCompletionRunFunctions.test.ts index cddfe4a5f..b684f204d 100644 --- a/tests/lib/ChatCompletionRunFunctions.test.ts +++ b/tests/lib/ChatCompletionRunFunctions.test.ts @@ -605,7 +605,6 @@ describe('resource completions', () => { await runner.done(); expect(listener.messages).toEqual([ - { role: 'user', content: 'tell me what the weather is like' }, { role: 'assistant', content: null, @@ -700,7 +699,6 @@ describe('resource completions', () => { await runner.done().catch(() => {}); expect(listener.messages).toEqual([ - { role: 'user', content: 'tell me what the weather is like' }, { role: 'assistant', content: null, @@ -855,10 +853,6 @@ describe('resource completions', () => { await runner.done(); expect(listener.messages).toEqual([ - { - role: 'user', - content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', - }, { role: 'assistant', content: null, @@ -1090,10 +1084,6 @@ describe('resource completions', () => { ]); expect(listener.messages).toEqual([ - { - role: 'user', - content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}', - }, { role: 'assistant', content: null, @@ -1207,7 +1197,6 @@ describe('resource completions', () => { ]); expect(listener.messages).toEqual([ - { role: 'user', content: 'tell me what the weather is like' }, { role: 'assistant', content: null, @@ -1413,7 +1402,6 @@ describe('resource completions', () => { ]); expect(listener.messages).toEqual([ - { role: 'user', content: 'tell me what the weather is like' }, { role: 'assistant', content: null, From 5e29cb2f2825d5abcdb536d843dcafe4ee980698 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 14:12:33 +0000 Subject: [PATCH 515/725] release: 4.57.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 15 +++++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 20 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 83a9352d7..e38854037 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.57.0" + ".": "4.57.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 680b164cb..b38d80c3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 4.57.1 (2024-09-03) + +Full Changelog: [v4.57.0...v4.57.1](https://github.com/openai/openai-node/compare/v4.57.0...v4.57.1) + +### Bug Fixes + +* **assistants:** correctly accumulate tool calls when streaming ([#1031](https://github.com/openai/openai-node/issues/1031)) ([d935ad3](https://github.com/openai/openai-node/commit/d935ad3fa37b2701f4c9f6e433ada6074280a871)) +* **client:** correct File construction from node-fetch Responses ([#1029](https://github.com/openai/openai-node/issues/1029)) ([22ebdc2](https://github.com/openai/openai-node/commit/22ebdc2ca7d98e0f266110c4cf827e53a0a22026)) +* runTools without stream should not emit user message events ([#1005](https://github.com/openai/openai-node/issues/1005)) ([22ded4d](https://github.com/openai/openai-node/commit/22ded4d549a157482a8de2faf65e92c5be07fa95)) + + +### Chores + +* **internal/tests:** workaround bug in recent types/node release ([3c7bdfd](https://github.com/openai/openai-node/commit/3c7bdfdb373bff77db0e3fecd5d49ddfa4284cd9)) + ## 4.57.0 (2024-08-29) Full Changelog: [v4.56.2...v4.57.0](https://github.com/openai/openai-node/compare/v4.56.2...v4.57.0) diff --git a/README.md b/README.md index c648d5a6e..198a6e584 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.57.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.57.1/mod.ts'; ``` diff --git a/package.json b/package.json index d481813db..e0721e4d9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.57.0", + "version": "4.57.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 7a646d14d..f4920e507 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.57.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.57.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 99e4b86d6..5967551de 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.57.0'; // x-release-please-version +export const VERSION = '4.57.1'; // x-release-please-version From 09e20df50d7dc97b49a0d3ed4e7256afa605ff55 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 14:21:55 +0000 Subject: [PATCH 516/725] chore(internal): dependency updates (#1035) --- yarn.lock | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/yarn.lock b/yarn.lock index c916c0a6a..c18ab42a0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1205,12 +1205,12 @@ brace-expansion@^2.0.1: dependencies: balanced-match "^1.0.0" -braces@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== +braces@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" + integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== dependencies: - fill-range "^7.0.1" + fill-range "^7.1.1" browserslist@^4.22.2: version "4.22.2" @@ -1799,10 +1799,10 @@ file-entry-cache@^6.0.1: dependencies: flat-cache "^3.0.4" -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== +fill-range@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" + integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== dependencies: to-regex-range "^5.0.1" @@ -2710,11 +2710,11 @@ merge2@^1.3.0, merge2@^1.4.1: integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== micromatch@^4.0.4: - version "4.0.5" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" - integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + version "4.0.8" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" + integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== dependencies: - braces "^3.0.2" + braces "^3.0.3" picomatch "^2.3.1" mime-db@1.51.0: From f919b8ea7e456e118a4b8d41151e63531c843857 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 14:22:24 +0000 Subject: [PATCH 517/725] release: 4.57.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e38854037..3530ae9dc 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.57.1" + ".": "4.57.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b38d80c3b..aa81491dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.57.2 (2024-09-04) + +Full Changelog: [v4.57.1...v4.57.2](https://github.com/openai/openai-node/compare/v4.57.1...v4.57.2) + +### Chores + +* **internal:** dependency updates ([#1035](https://github.com/openai/openai-node/issues/1035)) ([e815fb6](https://github.com/openai/openai-node/commit/e815fb6dee75219563d3a7776774ba1c2984560e)) + ## 4.57.1 (2024-09-03) Full Changelog: [v4.57.0...v4.57.1](https://github.com/openai/openai-node/compare/v4.57.0...v4.57.1) diff --git a/README.md b/README.md index 198a6e584..d062feff0 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.57.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.57.2/mod.ts'; ``` diff --git a/package.json b/package.json index e0721e4d9..17cdac037 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.57.1", + "version": "4.57.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index f4920e507..3a67aa66a 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.57.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.57.2/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 5967551de..f625b0bf6 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.57.1'; // x-release-please-version +export const VERSION = '4.57.2'; // x-release-please-version From 195fff86be2ec0e799a22bf09a7cbf4175d47a26 Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Wed, 4 Sep 2024 19:43:42 +0000 Subject: [PATCH 518/725] chore(internal): minor bump qs version (#1037) --- package.json | 2 +- yarn.lock | 28 ++++++++++++++-------------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/package.json b/package.json index 17cdac037..55997318d 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ "dependencies": { "@types/node": "^18.11.18", "@types/node-fetch": "^2.6.4", - "@types/qs": "^6.9.7", + "@types/qs": "^6.9.15", "abort-controller": "^3.0.0", "agentkeepalive": "^4.2.1", "form-data-encoder": "1.7.2", diff --git a/yarn.lock b/yarn.lock index c18ab42a0..3c7bdb93e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -881,7 +881,7 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.18.tgz#8dfb97f0da23c2293e554c5a50d61ef134d7697f" integrity sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA== -"@types/qs@^6.9.7": +"@types/qs@^6.9.15": version "6.9.15" resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.15.tgz#adde8a060ec9c305a82de1babc1056e73bd64dce" integrity sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg== @@ -1205,12 +1205,12 @@ brace-expansion@^2.0.1: dependencies: balanced-match "^1.0.0" -braces@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" - integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== +braces@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== dependencies: - fill-range "^7.1.1" + fill-range "^7.0.1" browserslist@^4.22.2: version "4.22.2" @@ -1799,10 +1799,10 @@ file-entry-cache@^6.0.1: dependencies: flat-cache "^3.0.4" -fill-range@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" - integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== dependencies: to-regex-range "^5.0.1" @@ -2710,11 +2710,11 @@ merge2@^1.3.0, merge2@^1.4.1: integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== micromatch@^4.0.4: - version "4.0.8" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" - integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== + version "4.0.5" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== dependencies: - braces "^3.0.3" + braces "^3.0.2" picomatch "^2.3.1" mime-db@1.51.0: From 1e9808ac68a22eb5fa3640a5b33d27af122f50a0 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Wed, 4 Sep 2024 20:46:58 +0100 Subject: [PATCH 519/725] fix(helpers/zod): avoid import issue in certain environments (#1039) --- ecosystem-tests/cli.ts | 5 + ecosystem-tests/node-ts-es2020/index.ts | 36 ++++ .../node-ts-es2020/package-lock.json | 193 ++++++++++++++++++ ecosystem-tests/node-ts-es2020/package.json | 16 ++ .../node-ts-es2020/tsconfig.base.json | 37 ++++ ecosystem-tests/node-ts-es2020/tsconfig.json | 18 ++ .../node-ts-es2020/tsconfig.nodenext.json | 55 +++++ src/helpers/zod.ts | 16 +- 8 files changed, 368 insertions(+), 8 deletions(-) create mode 100644 ecosystem-tests/node-ts-es2020/index.ts create mode 100644 ecosystem-tests/node-ts-es2020/package-lock.json create mode 100644 ecosystem-tests/node-ts-es2020/package.json create mode 100644 ecosystem-tests/node-ts-es2020/tsconfig.base.json create mode 100644 ecosystem-tests/node-ts-es2020/tsconfig.json create mode 100644 ecosystem-tests/node-ts-es2020/tsconfig.nodenext.json diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index e315ccd6c..2d9702112 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -25,6 +25,11 @@ const projectRunners = { 'node-ts-esm': defaultNodeRunner, 'node-ts-esm-web': defaultNodeRunner, 'node-ts-esm-auto': defaultNodeRunner, + 'node-ts-es2020': async () => { + await installPackage(); + await run('npm', ['run', 'tsc']); + await run('npm', ['run', 'main']); + }, 'node-js': async () => { await installPackage(); await run('node', ['test.js']); diff --git a/ecosystem-tests/node-ts-es2020/index.ts b/ecosystem-tests/node-ts-es2020/index.ts new file mode 100644 index 000000000..d92cc2720 --- /dev/null +++ b/ecosystem-tests/node-ts-es2020/index.ts @@ -0,0 +1,36 @@ +import { zodResponseFormat } from 'openai/helpers/zod'; +import OpenAI from 'openai/index'; +import { z } from 'zod'; + +const Step = z.object({ + explanation: z.string(), + output: z.string(), +}); + +const MathResponse = z.object({ + steps: z.array(Step), + final_answer: z.string(), +}); + +async function main() { + const client = new OpenAI(); + + const completion = await client.beta.chat.completions.parse({ + model: 'gpt-4o-2024-08-06', + messages: [ + { role: 'system', content: 'You are a helpful math tutor.' }, + { role: 'user', content: 'solve 8x + 31 = 2' }, + ], + response_format: zodResponseFormat(MathResponse, 'math_response'), + }); + + console.dir(completion, { depth: 5 }); + + const message = completion.choices[0]?.message; + if (message?.parsed) { + console.log(message.parsed.steps); + console.log(`answer: ${message.parsed.final_answer}`); + } +} + +main(); diff --git a/ecosystem-tests/node-ts-es2020/package-lock.json b/ecosystem-tests/node-ts-es2020/package-lock.json new file mode 100644 index 000000000..5ae1d5aa0 --- /dev/null +++ b/ecosystem-tests/node-ts-es2020/package-lock.json @@ -0,0 +1,193 @@ +{ + "name": "node-ts-es2020", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "node-ts-es2020", + "version": "1.0.0", + "dependencies": { + "ts-node": "^10.9.2", + "zod": "^3.23.8" + } + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", + "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==" + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==" + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==" + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==" + }, + "node_modules/@types/node": { + "version": "20.4.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.4.2.tgz", + "integrity": "sha512-Dd0BYtWgnWJKwO1jkmTrzofjK2QXXcai0dmtzvIBhcA+RsG5h8R3xlyta0kGOZRNfL9GuRtb1knmPEhQrePCEw==", + "peer": true + }, + "node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" + }, + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" + }, + "node_modules/ts-node": { + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", + "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/typescript": { + "version": "4.7.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", + "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==" + }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "engines": { + "node": ">=6" + } + }, + "node_modules/zod": { + "version": "3.23.8", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz", + "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + } + } +} diff --git a/ecosystem-tests/node-ts-es2020/package.json b/ecosystem-tests/node-ts-es2020/package.json new file mode 100644 index 000000000..ea7e488f5 --- /dev/null +++ b/ecosystem-tests/node-ts-es2020/package.json @@ -0,0 +1,16 @@ +{ + "name": "node-ts-es2020", + "version": "1.0.0", + "main": "index.js", + "scripts": { + "tsc": "tsc && tsc -p tsconfig.nodenext.json && tsc -p node_modules/openai/src/tsconfig.json", + "main": "ts-node index.ts" + }, + "dependencies": { + "ts-node": "^10.9.2", + "zod": "^3.23.8" + }, + "overrides": { + "@types/node": "20.4.2" + } +} diff --git a/ecosystem-tests/node-ts-es2020/tsconfig.base.json b/ecosystem-tests/node-ts-es2020/tsconfig.base.json new file mode 100644 index 000000000..8edad9422 --- /dev/null +++ b/ecosystem-tests/node-ts-es2020/tsconfig.base.json @@ -0,0 +1,37 @@ +{ + "compilerOptions": { + "target": "es2020", + "module": "commonjs", + "lib": ["es2020", "dom"], + "allowJs": false, + "declaration": true, + "declarationMap": true, + "sourceMap": true, + "removeComments": true, + "forceConsistentCasingInFileNames": true, + "downlevelIteration": true, + "strict": true, + "moduleResolution": "node", + "paths": {}, + "typeRoots": ["node_modules/@types"], + "types": ["node"], + "allowSyntheticDefaultImports": false, + "experimentalDecorators": true, + "emitDecoratorMetadata": true, + "resolveJsonModule": true, + "incremental": true, + "strictBindCallApply": true, + "strictFunctionTypes": true, + "strictNullChecks": true, + "strictPropertyInitialization": true, + "noImplicitAny": true, + "noImplicitThis": true, + "noImplicitReturns": true, + "noUnusedParameters": true, + "noUnusedLocals": true, + "noFallthroughCasesInSwitch": true, + "preserveSymlinks": true, + "suppressImplicitAnyIndexErrors": true + }, + "exclude": ["node_modules"] +} diff --git a/ecosystem-tests/node-ts-es2020/tsconfig.json b/ecosystem-tests/node-ts-es2020/tsconfig.json new file mode 100644 index 000000000..aa3b68f53 --- /dev/null +++ b/ecosystem-tests/node-ts-es2020/tsconfig.json @@ -0,0 +1,18 @@ +{ + "extends": "./tsconfig.base.json", + "ts-node": { + "swc": true, + "transpileOnly": true + }, + "compilerOptions": { + "declaration": false, + "declarationMap": false, + "allowJs": true, + "checkJs": false, + "outDir": "./dist", + "baseUrl": "./", + "types": ["node", "jest"], + "paths": {} + }, + "include": ["index.ts", "tsconfig.json", "jest.config.ts", ".eslintrc.js"] +} diff --git a/ecosystem-tests/node-ts-es2020/tsconfig.nodenext.json b/ecosystem-tests/node-ts-es2020/tsconfig.nodenext.json new file mode 100644 index 000000000..97df071fb --- /dev/null +++ b/ecosystem-tests/node-ts-es2020/tsconfig.nodenext.json @@ -0,0 +1,55 @@ +{ + "include": ["tests/*.ts", "index.ts"], + "exclude": ["tests/*-shim-errors.ts"], + + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ + /* Projects */ + "incremental": true, + + /* Language and Environment */ + "target": "ES2015", + "lib": ["ES2015"], + "jsx": "react", + + /* Modules */ + "module": "commonjs", + "rootDir": "./", + "moduleResolution": "NodeNext", + "baseUrl": "./", + "paths": { + "~/*": ["*"] + }, + "resolveJsonModule": true, + "composite": true, + + /* Emit */ + "outDir": "node_modules", + "noEmit": true, + + /* Interop Constraints */ + "isolatedModules": true, + "allowSyntheticDefaultImports": true, + /* "esModuleInterop": true, */ + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "checkJs": true, + + /* Experimental Features */ + "experimentalDecorators": true, + + /* Type Checking */ + "strict": true, + "noImplicitAny": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "strictBindCallApply": true, + "strictPropertyInitialization": true, + "noImplicitThis": true, + "alwaysStrict": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + "noPropertyAccessFromIndexSignature": true, + "skipLibCheck": false + } +} diff --git a/src/helpers/zod.ts b/src/helpers/zod.ts index 463ef588c..99b9eb4b0 100644 --- a/src/helpers/zod.ts +++ b/src/helpers/zod.ts @@ -1,5 +1,5 @@ -import { ResponseFormatJSONSchema } from 'openai/resources'; -import type z from 'zod'; +import { ResponseFormatJSONSchema } from '../resources/index'; +import type { infer as zodInfer, ZodType } from 'zod'; import { AutoParseableResponseFormat, AutoParseableTool, @@ -8,7 +8,7 @@ import { } from '../lib/parser'; import { zodToJsonSchema as _zodToJsonSchema } from '../_vendor/zod-to-json-schema'; -function zodToJsonSchema(schema: z.ZodType, options: { name: string }): Record { +function zodToJsonSchema(schema: ZodType, options: { name: string }): Record { return _zodToJsonSchema(schema, { openaiStrictMode: true, name: options.name, @@ -55,11 +55,11 @@ function zodToJsonSchema(schema: z.ZodType, options: { name: string }): Record( +export function zodResponseFormat( zodObject: ZodInput, name: string, props?: Omit, -): AutoParseableResponseFormat> { +): AutoParseableResponseFormat> { return makeParseableResponseFormat( { type: 'json_schema', @@ -79,15 +79,15 @@ export function zodResponseFormat( * automatically by the chat completion `.runTools()` method or automatically * parsed by `.parse()` / `.stream()`. */ -export function zodFunction(options: { +export function zodFunction(options: { name: string; parameters: Parameters; - function?: ((args: z.infer) => unknown | Promise) | undefined; + function?: ((args: zodInfer) => unknown | Promise) | undefined; description?: string | undefined; }): AutoParseableTool<{ arguments: Parameters; name: string; - function: (args: z.infer) => unknown; + function: (args: zodInfer) => unknown; }> { // @ts-expect-error TODO return makeParseableTool( From 0c0b6c9e9681dc7c26ffa3e6101b6473d651e69a Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 19:47:18 +0000 Subject: [PATCH 520/725] release: 4.57.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3530ae9dc..5876e9cf1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.57.2" + ".": "4.57.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index aa81491dc..c92fb6e61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.57.3 (2024-09-04) + +Full Changelog: [v4.57.2...v4.57.3](https://github.com/openai/openai-node/compare/v4.57.2...v4.57.3) + +### Bug Fixes + +* **helpers/zod:** avoid import issue in certain environments ([#1039](https://github.com/openai/openai-node/issues/1039)) ([e238daa](https://github.com/openai/openai-node/commit/e238daa7c12f3fb13369f58b9d405365f5efcc8f)) + + +### Chores + +* **internal:** minor bump qs version ([#1037](https://github.com/openai/openai-node/issues/1037)) ([8ec218e](https://github.com/openai/openai-node/commit/8ec218e9efb657927b3c0346822a96872aeaf137)) + ## 4.57.2 (2024-09-04) Full Changelog: [v4.57.1...v4.57.2](https://github.com/openai/openai-node/compare/v4.57.1...v4.57.2) diff --git a/README.md b/README.md index d062feff0..0c89cbc7c 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.57.2/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.57.3/mod.ts'; ``` diff --git a/package.json b/package.json index 55997318d..5bb52f130 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.57.2", + "version": "4.57.3", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 3a67aa66a..2aedee39e 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.57.2/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.57.3/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index f625b0bf6..5292f3437 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.57.2'; // x-release-please-version +export const VERSION = '4.57.3'; // x-release-please-version From 1d475417c43771e2ac2e153b6cd1e445042f74b3 Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Thu, 5 Sep 2024 21:26:44 +0000 Subject: [PATCH 521/725] feat(vector store): improve chunking strategy type names (#1041) --- .stats.yml | 2 +- api.md | 7 ++ src/resources/beta/assistants.ts | 44 +------ src/resources/beta/beta.ts | 7 ++ src/resources/beta/index.ts | 7 ++ src/resources/beta/threads/threads.ts | 87 +------------- .../beta/vector-stores/file-batches.ts | 46 +------ src/resources/beta/vector-stores/files.ts | 86 +------------ src/resources/beta/vector-stores/index.ts | 7 ++ .../beta/vector-stores/vector-stores.ts | 113 ++++++++++++------ 10 files changed, 119 insertions(+), 287 deletions(-) diff --git a/.stats.yml b/.stats.yml index fd4f27136..903c15996 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-1dbac0e95bdb5a89a0dd3d93265475a378214551b7d8c22862928e0d87ace94b.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-85a85e0c08de456441431c0ae4e9c078cc8f9748c29430b9a9058340db6389ee.yml diff --git a/api.md b/api.md index 936f64196..7fb8f86a6 100644 --- a/api.md +++ b/api.md @@ -199,6 +199,13 @@ Methods: Types: +- AutoFileChunkingStrategyParam +- FileChunkingStrategy +- FileChunkingStrategyParam +- OtherFileChunkingStrategyObject +- StaticFileChunkingStrategy +- StaticFileChunkingStrategyObject +- StaticFileChunkingStrategyParam - VectorStore - VectorStoreDeleted diff --git a/src/resources/beta/assistants.ts b/src/resources/beta/assistants.ts index 924d63d5c..0dbb076d5 100644 --- a/src/resources/beta/assistants.ts +++ b/src/resources/beta/assistants.ts @@ -8,6 +8,7 @@ import * as Shared from '../shared'; import * as ChatAPI from '../chat/chat'; import * as MessagesAPI from './threads/messages'; import * as ThreadsAPI from './threads/threads'; +import * as VectorStoresAPI from './vector-stores/vector-stores'; import * as RunsAPI from './threads/runs/runs'; import * as StepsAPI from './threads/runs/steps'; import { CursorPage, type CursorPageParams } from '../../pagination'; @@ -1218,9 +1219,9 @@ export namespace AssistantCreateParams { export interface VectorStore { /** * The chunking strategy used to chunk the file(s). If not set, will use the `auto` - * strategy. + * strategy. Only applicable if `file_ids` is non-empty. */ - chunking_strategy?: VectorStore.Auto | VectorStore.Static; + chunking_strategy?: VectorStoresAPI.FileChunkingStrategyParam; /** * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs to @@ -1237,45 +1238,6 @@ export namespace AssistantCreateParams { */ metadata?: unknown; } - - export namespace VectorStore { - /** - * The default strategy. This strategy currently uses a `max_chunk_size_tokens` of - * `800` and `chunk_overlap_tokens` of `400`. - */ - export interface Auto { - /** - * Always `auto`. - */ - type: 'auto'; - } - - export interface Static { - static: Static.Static; - - /** - * Always `static`. - */ - type: 'static'; - } - - export namespace Static { - export interface Static { - /** - * The number of tokens that overlap between chunks. The default value is `400`. - * - * Note that the overlap must not exceed half of `max_chunk_size_tokens`. - */ - chunk_overlap_tokens: number; - - /** - * The maximum number of tokens in each chunk. The default value is `800`. The - * minimum value is `100` and the maximum value is `4096`. - */ - max_chunk_size_tokens: number; - } - } - } } } } diff --git a/src/resources/beta/beta.ts b/src/resources/beta/beta.ts index 4993d02fb..0bcf217a8 100644 --- a/src/resources/beta/beta.ts +++ b/src/resources/beta/beta.ts @@ -15,6 +15,13 @@ export class Beta extends APIResource { export namespace Beta { export import VectorStores = VectorStoresAPI.VectorStores; + export import AutoFileChunkingStrategyParam = VectorStoresAPI.AutoFileChunkingStrategyParam; + export import FileChunkingStrategy = VectorStoresAPI.FileChunkingStrategy; + export import FileChunkingStrategyParam = VectorStoresAPI.FileChunkingStrategyParam; + export import OtherFileChunkingStrategyObject = VectorStoresAPI.OtherFileChunkingStrategyObject; + export import StaticFileChunkingStrategy = VectorStoresAPI.StaticFileChunkingStrategy; + export import StaticFileChunkingStrategyObject = VectorStoresAPI.StaticFileChunkingStrategyObject; + export import StaticFileChunkingStrategyParam = VectorStoresAPI.StaticFileChunkingStrategyParam; export import VectorStore = VectorStoresAPI.VectorStore; export import VectorStoreDeleted = VectorStoresAPI.VectorStoreDeleted; export import VectorStoresPage = VectorStoresAPI.VectorStoresPage; diff --git a/src/resources/beta/index.ts b/src/resources/beta/index.ts index 392be1f35..9fcf805a1 100644 --- a/src/resources/beta/index.ts +++ b/src/resources/beta/index.ts @@ -37,6 +37,13 @@ export { export { Beta } from './beta'; export { Chat } from './chat/index'; export { + AutoFileChunkingStrategyParam, + FileChunkingStrategy, + FileChunkingStrategyParam, + OtherFileChunkingStrategyObject, + StaticFileChunkingStrategy, + StaticFileChunkingStrategyObject, + StaticFileChunkingStrategyParam, VectorStore, VectorStoreDeleted, VectorStoreCreateParams, diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index b4551da76..c49618f0c 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -10,6 +10,7 @@ import * as Shared from '../../shared'; import * as AssistantsAPI from '../assistants'; import * as ChatAPI from '../../chat/chat'; import * as MessagesAPI from './messages'; +import * as VectorStoresAPI from '../vector-stores/vector-stores'; import * as RunsAPI from './runs/runs'; import { Stream } from '../../../streaming'; @@ -379,9 +380,9 @@ export namespace ThreadCreateParams { export interface VectorStore { /** * The chunking strategy used to chunk the file(s). If not set, will use the `auto` - * strategy. + * strategy. Only applicable if `file_ids` is non-empty. */ - chunking_strategy?: VectorStore.Auto | VectorStore.Static; + chunking_strategy?: VectorStoresAPI.FileChunkingStrategyParam; /** * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs to @@ -398,45 +399,6 @@ export namespace ThreadCreateParams { */ metadata?: unknown; } - - export namespace VectorStore { - /** - * The default strategy. This strategy currently uses a `max_chunk_size_tokens` of - * `800` and `chunk_overlap_tokens` of `400`. - */ - export interface Auto { - /** - * Always `auto`. - */ - type: 'auto'; - } - - export interface Static { - static: Static.Static; - - /** - * Always `static`. - */ - type: 'static'; - } - - export namespace Static { - export interface Static { - /** - * The number of tokens that overlap between chunks. The default value is `400`. - * - * Note that the overlap must not exceed half of `max_chunk_size_tokens`. - */ - chunk_overlap_tokens: number; - - /** - * The maximum number of tokens in each chunk. The default value is `800`. The - * minimum value is `100` and the maximum value is `4096`. - */ - max_chunk_size_tokens: number; - } - } - } } } } @@ -765,9 +727,9 @@ export namespace ThreadCreateAndRunParams { export interface VectorStore { /** * The chunking strategy used to chunk the file(s). If not set, will use the `auto` - * strategy. + * strategy. Only applicable if `file_ids` is non-empty. */ - chunking_strategy?: VectorStore.Auto | VectorStore.Static; + chunking_strategy?: VectorStoresAPI.FileChunkingStrategyParam; /** * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs to @@ -784,45 +746,6 @@ export namespace ThreadCreateAndRunParams { */ metadata?: unknown; } - - export namespace VectorStore { - /** - * The default strategy. This strategy currently uses a `max_chunk_size_tokens` of - * `800` and `chunk_overlap_tokens` of `400`. - */ - export interface Auto { - /** - * Always `auto`. - */ - type: 'auto'; - } - - export interface Static { - static: Static.Static; - - /** - * Always `static`. - */ - type: 'static'; - } - - export namespace Static { - export interface Static { - /** - * The number of tokens that overlap between chunks. The default value is `400`. - * - * Note that the overlap must not exceed half of `max_chunk_size_tokens`. - */ - chunk_overlap_tokens: number; - - /** - * The maximum number of tokens in each chunk. The default value is `800`. The - * minimum value is `100` and the maximum value is `4096`. - */ - max_chunk_size_tokens: number; - } - } - } } } } diff --git a/src/resources/beta/vector-stores/file-batches.ts b/src/resources/beta/vector-stores/file-batches.ts index e4a5c46fe..3436d7575 100644 --- a/src/resources/beta/vector-stores/file-batches.ts +++ b/src/resources/beta/vector-stores/file-batches.ts @@ -9,6 +9,7 @@ import * as Core from '../../../core'; import * as FileBatchesAPI from './file-batches'; import * as FilesAPI from './files'; import { VectorStoreFilesPage } from './files'; +import * as VectorStoresAPI from './vector-stores'; import { type CursorPageParams } from '../../../pagination'; export class FileBatches extends APIResource { @@ -267,50 +268,9 @@ export interface FileBatchCreateParams { /** * The chunking strategy used to chunk the file(s). If not set, will use the `auto` - * strategy. + * strategy. Only applicable if `file_ids` is non-empty. */ - chunking_strategy?: - | FileBatchCreateParams.AutoChunkingStrategyRequestParam - | FileBatchCreateParams.StaticChunkingStrategyRequestParam; -} - -export namespace FileBatchCreateParams { - /** - * The default strategy. This strategy currently uses a `max_chunk_size_tokens` of - * `800` and `chunk_overlap_tokens` of `400`. - */ - export interface AutoChunkingStrategyRequestParam { - /** - * Always `auto`. - */ - type: 'auto'; - } - - export interface StaticChunkingStrategyRequestParam { - static: StaticChunkingStrategyRequestParam.Static; - - /** - * Always `static`. - */ - type: 'static'; - } - - export namespace StaticChunkingStrategyRequestParam { - export interface Static { - /** - * The number of tokens that overlap between chunks. The default value is `400`. - * - * Note that the overlap must not exceed half of `max_chunk_size_tokens`. - */ - chunk_overlap_tokens: number; - - /** - * The maximum number of tokens in each chunk. The default value is `800`. The - * minimum value is `100` and the maximum value is `4096`. - */ - max_chunk_size_tokens: number; - } - } + chunking_strategy?: VectorStoresAPI.FileChunkingStrategyParam; } export interface FileBatchListFilesParams extends CursorPageParams { diff --git a/src/resources/beta/vector-stores/files.ts b/src/resources/beta/vector-stores/files.ts index c0f695223..f82cd63df 100644 --- a/src/resources/beta/vector-stores/files.ts +++ b/src/resources/beta/vector-stores/files.ts @@ -4,6 +4,7 @@ import { APIResource } from '../../../resource'; import { sleep, Uploadable, isRequestOptions } from '../../../core'; import * as Core from '../../../core'; import * as FilesAPI from './files'; +import * as VectorStoresAPI from './vector-stores'; import { CursorPage, type CursorPageParams } from '../../../pagination'; export class Files extends APIResource { @@ -220,7 +221,7 @@ export interface VectorStoreFile { /** * The strategy used to chunk the file. */ - chunking_strategy?: VectorStoreFile.Static | VectorStoreFile.Other; + chunking_strategy?: VectorStoresAPI.FileChunkingStrategy; } export namespace VectorStoreFile { @@ -239,44 +240,6 @@ export namespace VectorStoreFile { */ message: string; } - - export interface Static { - static: Static.Static; - - /** - * Always `static`. - */ - type: 'static'; - } - - export namespace Static { - export interface Static { - /** - * The number of tokens that overlap between chunks. The default value is `400`. - * - * Note that the overlap must not exceed half of `max_chunk_size_tokens`. - */ - chunk_overlap_tokens: number; - - /** - * The maximum number of tokens in each chunk. The default value is `800`. The - * minimum value is `100` and the maximum value is `4096`. - */ - max_chunk_size_tokens: number; - } - } - - /** - * This is returned when the chunking strategy is unknown. Typically, this is - * because the file was indexed before the `chunking_strategy` concept was - * introduced in the API. - */ - export interface Other { - /** - * Always `other`. - */ - type: 'other'; - } } export interface VectorStoreFileDeleted { @@ -297,50 +260,9 @@ export interface FileCreateParams { /** * The chunking strategy used to chunk the file(s). If not set, will use the `auto` - * strategy. + * strategy. Only applicable if `file_ids` is non-empty. */ - chunking_strategy?: - | FileCreateParams.AutoChunkingStrategyRequestParam - | FileCreateParams.StaticChunkingStrategyRequestParam; -} - -export namespace FileCreateParams { - /** - * The default strategy. This strategy currently uses a `max_chunk_size_tokens` of - * `800` and `chunk_overlap_tokens` of `400`. - */ - export interface AutoChunkingStrategyRequestParam { - /** - * Always `auto`. - */ - type: 'auto'; - } - - export interface StaticChunkingStrategyRequestParam { - static: StaticChunkingStrategyRequestParam.Static; - - /** - * Always `static`. - */ - type: 'static'; - } - - export namespace StaticChunkingStrategyRequestParam { - export interface Static { - /** - * The number of tokens that overlap between chunks. The default value is `400`. - * - * Note that the overlap must not exceed half of `max_chunk_size_tokens`. - */ - chunk_overlap_tokens: number; - - /** - * The maximum number of tokens in each chunk. The default value is `800`. The - * minimum value is `100` and the maximum value is `4096`. - */ - max_chunk_size_tokens: number; - } - } + chunking_strategy?: VectorStoresAPI.FileChunkingStrategyParam; } export interface FileListParams extends CursorPageParams { diff --git a/src/resources/beta/vector-stores/index.ts b/src/resources/beta/vector-stores/index.ts index 8fb787ccd..f70215f8f 100644 --- a/src/resources/beta/vector-stores/index.ts +++ b/src/resources/beta/vector-stores/index.ts @@ -1,6 +1,13 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. export { + AutoFileChunkingStrategyParam, + FileChunkingStrategy, + FileChunkingStrategyParam, + OtherFileChunkingStrategyObject, + StaticFileChunkingStrategy, + StaticFileChunkingStrategyObject, + StaticFileChunkingStrategyParam, VectorStore, VectorStoreDeleted, VectorStoreCreateParams, diff --git a/src/resources/beta/vector-stores/vector-stores.ts b/src/resources/beta/vector-stores/vector-stores.ts index 343f25953..3c9aa707d 100644 --- a/src/resources/beta/vector-stores/vector-stores.ts +++ b/src/resources/beta/vector-stores/vector-stores.ts @@ -83,6 +83,73 @@ export class VectorStores extends APIResource { export class VectorStoresPage extends CursorPage {} +/** + * The default strategy. This strategy currently uses a `max_chunk_size_tokens` of + * `800` and `chunk_overlap_tokens` of `400`. + */ +export interface AutoFileChunkingStrategyParam { + /** + * Always `auto`. + */ + type: 'auto'; +} + +/** + * The strategy used to chunk the file. + */ +export type FileChunkingStrategy = StaticFileChunkingStrategyObject | OtherFileChunkingStrategyObject; + +/** + * The chunking strategy used to chunk the file(s). If not set, will use the `auto` + * strategy. Only applicable if `file_ids` is non-empty. + */ +export type FileChunkingStrategyParam = AutoFileChunkingStrategyParam | StaticFileChunkingStrategyParam; + +/** + * This is returned when the chunking strategy is unknown. Typically, this is + * because the file was indexed before the `chunking_strategy` concept was + * introduced in the API. + */ +export interface OtherFileChunkingStrategyObject { + /** + * Always `other`. + */ + type: 'other'; +} + +export interface StaticFileChunkingStrategy { + /** + * The number of tokens that overlap between chunks. The default value is `400`. + * + * Note that the overlap must not exceed half of `max_chunk_size_tokens`. + */ + chunk_overlap_tokens: number; + + /** + * The maximum number of tokens in each chunk. The default value is `800`. The + * minimum value is `100` and the maximum value is `4096`. + */ + max_chunk_size_tokens: number; +} + +export interface StaticFileChunkingStrategyObject { + static: StaticFileChunkingStrategy; + + /** + * Always `static`. + */ + type: 'static'; +} + +export interface StaticFileChunkingStrategyParam { + static: StaticFileChunkingStrategy; + + /** + * Always `static`. + */ + type: 'static'; +} + /** * A vector store is a collection of processed files can be used by the * `file_search` tool. @@ -204,7 +271,7 @@ export interface VectorStoreCreateParams { * The chunking strategy used to chunk the file(s). If not set, will use the `auto` * strategy. Only applicable if `file_ids` is non-empty. */ - chunking_strategy?: VectorStoreCreateParams.Auto | VectorStoreCreateParams.Static; + chunking_strategy?: FileChunkingStrategyParam; /** * The expiration policy for a vector store. @@ -233,43 +300,6 @@ export interface VectorStoreCreateParams { } export namespace VectorStoreCreateParams { - /** - * The default strategy. This strategy currently uses a `max_chunk_size_tokens` of - * `800` and `chunk_overlap_tokens` of `400`. - */ - export interface Auto { - /** - * Always `auto`. - */ - type: 'auto'; - } - - export interface Static { - static: Static.Static; - - /** - * Always `static`. - */ - type: 'static'; - } - - export namespace Static { - export interface Static { - /** - * The number of tokens that overlap between chunks. The default value is `400`. - * - * Note that the overlap must not exceed half of `max_chunk_size_tokens`. - */ - chunk_overlap_tokens: number; - - /** - * The maximum number of tokens in each chunk. The default value is `800`. The - * minimum value is `100` and the maximum value is `4096`. - */ - max_chunk_size_tokens: number; - } - } - /** * The expiration policy for a vector store. */ @@ -342,6 +372,13 @@ export interface VectorStoreListParams extends CursorPageParams { } export namespace VectorStores { + export import AutoFileChunkingStrategyParam = VectorStoresAPI.AutoFileChunkingStrategyParam; + export import FileChunkingStrategy = VectorStoresAPI.FileChunkingStrategy; + export import FileChunkingStrategyParam = VectorStoresAPI.FileChunkingStrategyParam; + export import OtherFileChunkingStrategyObject = VectorStoresAPI.OtherFileChunkingStrategyObject; + export import StaticFileChunkingStrategy = VectorStoresAPI.StaticFileChunkingStrategy; + export import StaticFileChunkingStrategyObject = VectorStoresAPI.StaticFileChunkingStrategyObject; + export import StaticFileChunkingStrategyParam = VectorStoresAPI.StaticFileChunkingStrategyParam; export import VectorStore = VectorStoresAPI.VectorStore; export import VectorStoreDeleted = VectorStoresAPI.VectorStoreDeleted; export import VectorStoresPage = VectorStoresAPI.VectorStoresPage; From c31ffc0fd6260c02a72e2bcc00f6803520a70648 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 21:11:23 +0000 Subject: [PATCH 522/725] fix(uploads): avoid making redundant memory copies (#1043) --- src/uploads.ts | 8 +++++--- tests/uploads.test.ts | 8 ++++++++ 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/src/uploads.ts b/src/uploads.ts index a920351cd..8fd2154d4 100644 --- a/src/uploads.ts +++ b/src/uploads.ts @@ -107,8 +107,10 @@ export async function toFile( // If it's a promise, resolve it. value = await value; - // Use the file's options if there isn't one provided - options ??= isFileLike(value) ? { lastModified: value.lastModified, type: value.type } : {}; + // If we've been given a `File` we don't need to do anything + if (isFileLike(value)) { + return value; + } if (isResponseLike(value)) { const blob = await value.blob(); @@ -126,7 +128,7 @@ export async function toFile( name ||= getName(value) ?? 'unknown_file'; - if (!options.type) { + if (!options?.type) { const type = (bits[0] as any)?.type; if (typeof type === 'string') { options = { ...options, type }; diff --git a/tests/uploads.test.ts b/tests/uploads.test.ts index b40856e29..b64b80285 100644 --- a/tests/uploads.test.ts +++ b/tests/uploads.test.ts @@ -54,4 +54,12 @@ describe('toFile', () => { const file = await toFile(input); expect(file.name).toEqual('uploads.test.ts'); }); + + it('does not copy File objects', async () => { + const input = new File(['foo'], 'input.jsonl', { type: 'jsonl' }); + const file = await toFile(input); + expect(file).toBe(input); + expect(file.name).toEqual('input.jsonl'); + expect(file.type).toBe('jsonl'); + }); }); From 7e044282f0d4dc1c8e6fa2e653f8666f00a6df9e Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 21:54:39 +0000 Subject: [PATCH 523/725] release: 4.58.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5876e9cf1..5531ef5d2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.57.3" + ".": "4.58.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c92fb6e61..6ebb5c0b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.58.0 (2024-09-05) + +Full Changelog: [v4.57.3...v4.58.0](https://github.com/openai/openai-node/compare/v4.57.3...v4.58.0) + +### Features + +* **vector store:** improve chunking strategy type names ([#1041](https://github.com/openai/openai-node/issues/1041)) ([471cec3](https://github.com/openai/openai-node/commit/471cec3228886253f07c13a362827a31e9ec7b63)) + + +### Bug Fixes + +* **uploads:** avoid making redundant memory copies ([#1043](https://github.com/openai/openai-node/issues/1043)) ([271297b](https://github.com/openai/openai-node/commit/271297bd32393d4c5663023adf82f8fb19dc3d25)) + ## 4.57.3 (2024-09-04) Full Changelog: [v4.57.2...v4.57.3](https://github.com/openai/openai-node/compare/v4.57.2...v4.57.3) diff --git a/README.md b/README.md index 0c89cbc7c..4d433c25b 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.57.3/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.58.0/mod.ts'; ``` diff --git a/package.json b/package.json index 5bb52f130..d3ed9fc2d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.57.3", + "version": "4.58.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 2aedee39e..23787ceab 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.57.3/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.58.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 5292f3437..96374498a 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.57.3'; // x-release-please-version +export const VERSION = '4.58.0'; // x-release-please-version From 315ca6b1da171619a81922bc9271193dbb931820 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 09:40:12 +0000 Subject: [PATCH 524/725] chore(docs): update browser support information (#1045) --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4d433c25b..23a8684dc 100644 --- a/README.md +++ b/README.md @@ -618,16 +618,22 @@ The following runtimes are supported: - Jest 28 or greater with the `"node"` environment (`"jsdom"` is not supported at this time). - Nitro v2.6 or greater. - Web browsers: disabled by default to avoid exposing your secret API credentials. Enable browser support by explicitly setting `dangerouslyAllowBrowser` to true'. -
- More explanation +
+ More explanation + ### Why is this dangerous? + Enabling the `dangerouslyAllowBrowser` option can be dangerous because it exposes your secret API credentials in the client-side code. Web browsers are inherently less secure than server environments, any user with access to the browser can potentially inspect, extract, and misuse these credentials. This could lead to unauthorized access using your credentials and potentially compromise sensitive data or functionality. + ### When might this not be dangerous? + In certain scenarios where enabling browser support might not pose significant risks: + - Internal Tools: If the application is used solely within a controlled internal environment where the users are trusted, the risk of credential exposure can be mitigated. - Public APIs with Limited Scope: If your API has very limited scope and the exposed credentials do not grant access to sensitive data or critical operations, the potential impact of exposure is reduced. - Development or debugging purpose: Enabling this feature temporarily might be acceptable, provided the credentials are short-lived, aren't also used in production environments, or are frequently rotated. +
Note that React Native is not supported at this time. From 25f1b599fad21f166bcf0f72ca373ed563c302b8 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 09:40:37 +0000 Subject: [PATCH 525/725] release: 4.58.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5531ef5d2..42af9b44f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.58.0" + ".": "4.58.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ebb5c0b4..cca823075 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.58.1 (2024-09-06) + +Full Changelog: [v4.58.0...v4.58.1](https://github.com/openai/openai-node/compare/v4.58.0...v4.58.1) + +### Chores + +* **docs:** update browser support information ([#1045](https://github.com/openai/openai-node/issues/1045)) ([d326cc5](https://github.com/openai/openai-node/commit/d326cc54a77c450672fbf07d736cec80a9ba72fb)) + ## 4.58.0 (2024-09-05) Full Changelog: [v4.57.3...v4.58.0](https://github.com/openai/openai-node/compare/v4.57.3...v4.58.0) diff --git a/README.md b/README.md index 23a8684dc..0aaa4e984 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.58.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.58.1/mod.ts'; ``` diff --git a/package.json b/package.json index d3ed9fc2d..f4310009e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.58.0", + "version": "4.58.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 23787ceab..314ef998e 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.58.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.58.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 96374498a..ee6349863 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.58.0'; // x-release-please-version +export const VERSION = '4.58.1'; // x-release-please-version From b8dc229ec68a7af9309a2b7bd4241f15901fc35d Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 15:30:11 +0000 Subject: [PATCH 526/725] fix(errors): pass message through to APIConnectionError (#1050) --- src/error.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/error.ts b/src/error.ts index 83ddbfafa..87eeea046 100644 --- a/src/error.ts +++ b/src/error.ts @@ -61,7 +61,7 @@ export class APIError extends OpenAIError { headers: Headers | undefined, ) { if (!status) { - return new APIConnectionError({ cause: castToError(errorResponse) }); + return new APIConnectionError({ message, cause: castToError(errorResponse) }); } const error = (errorResponse as Record)?.['error']; @@ -113,7 +113,7 @@ export class APIUserAbortError extends APIError { export class APIConnectionError extends APIError { override readonly status: undefined = undefined; - constructor({ message, cause }: { message?: string; cause?: Error | undefined }) { + constructor({ message, cause }: { message?: string | undefined; cause?: Error | undefined }) { super(undefined, undefined, message || 'Connection error.', undefined); // in some environments the 'cause' property is already declared // @ts-ignore From 36dcce01992183fead79a74949e1432c87f942f5 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 19:36:54 +0000 Subject: [PATCH 527/725] chore: better object fallback behaviour for casting errors (#1053) --- src/core.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/core.ts b/src/core.ts index 2d91751d7..a4bb87a32 100644 --- a/src/core.ts +++ b/src/core.ts @@ -994,6 +994,11 @@ const validatePositiveInteger = (name: string, n: unknown): number => { export const castToError = (err: any): Error => { if (err instanceof Error) return err; + if (typeof err === 'object' && err !== null) { + try { + return new Error(JSON.stringify(err)); + } catch {} + } return new Error(err); }; From e7d1fce78f733997808cb3f25991cadb957ca57d Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 19:37:22 +0000 Subject: [PATCH 528/725] release: 4.58.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 42af9b44f..c740afe14 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.58.1" + ".": "4.58.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index cca823075..468be63b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.58.2 (2024-09-09) + +Full Changelog: [v4.58.1...v4.58.2](https://github.com/openai/openai-node/compare/v4.58.1...v4.58.2) + +### Bug Fixes + +* **errors:** pass message through to APIConnectionError ([#1050](https://github.com/openai/openai-node/issues/1050)) ([5a34316](https://github.com/openai/openai-node/commit/5a3431672e200a6bc161d39873e914434557801e)) + + +### Chores + +* better object fallback behaviour for casting errors ([#1053](https://github.com/openai/openai-node/issues/1053)) ([b7d4619](https://github.com/openai/openai-node/commit/b7d46190d2bb775145a9a3de6408c38abacfa055)) + ## 4.58.1 (2024-09-06) Full Changelog: [v4.58.0...v4.58.1](https://github.com/openai/openai-node/compare/v4.58.0...v4.58.1) diff --git a/README.md b/README.md index 0aaa4e984..8415ed186 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.58.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.58.2/mod.ts'; ``` diff --git a/package.json b/package.json index f4310009e..b284c38a6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.58.1", + "version": "4.58.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 314ef998e..ef3867dc2 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.58.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.58.2/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index ee6349863..f650f76c3 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.58.1'; // x-release-please-version +export const VERSION = '4.58.2'; // x-release-please-version From 04b88383c81cad76847b3d8fe8cbed384221e5cd Mon Sep 17 00:00:00 2001 From: Angelos Petropoulos Date: Wed, 11 Sep 2024 05:11:32 -0500 Subject: [PATCH 529/725] docs(azure): example for custom base URL (#1055) Co-authored-by: Angelos Petropoulos --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index c0e527d25..36064286d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -381,7 +381,7 @@ export class AzureOpenAI extends OpenAI { * @param {string | undefined} [opts.apiKey=process.env['AZURE_OPENAI_API_KEY'] ?? undefined] * @param {string | undefined} opts.deployment - A model deployment, if given, sets the base client URL to include `/deployments/{deployment}`. * @param {string | null | undefined} [opts.organization=process.env['OPENAI_ORG_ID'] ?? null] - * @param {string} [opts.baseURL=process.env['OPENAI_BASE_URL']] - Sets the base URL for the API. + * @param {string} [opts.baseURL=process.env['OPENAI_BASE_URL']] - Sets the base URL for the API, e.g. `https://example-resource.azure.openai.com/openai/`. * @param {number} [opts.timeout=10 minutes] - The maximum amount of time (in milliseconds) the client will wait for a response before timing out. * @param {number} [opts.httpAgent] - An HTTP agent used to manage HTTP(s) connections. * @param {Core.Fetch} [opts.fetch] - Specify a custom `fetch` function implementation. From fc549fc033ee3dc5fbb678ea8969a2160336746e Mon Sep 17 00:00:00 2001 From: Scott Addie <10702007+scottaddie@users.noreply.github.com> Date: Wed, 11 Sep 2024 05:12:33 -0500 Subject: [PATCH 530/725] docs(azure): remove locale from docs link (#1054) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8415ed186..31a7776d6 100644 --- a/README.md +++ b/README.md @@ -363,7 +363,7 @@ Error codes are as followed: ## Microsoft Azure OpenAI -To use this library with [Azure OpenAI](https://learn.microsoft.com/en-us/azure/ai-services/openai/overview), use the `AzureOpenAI` +To use this library with [Azure OpenAI](https://learn.microsoft.com/azure/ai-services/openai/overview), use the `AzureOpenAI` class instead of the `OpenAI` class. > [!IMPORTANT] From d9dee78c7052649131b3897243366a9b58d9616e Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Wed, 11 Sep 2024 11:14:17 +0100 Subject: [PATCH 531/725] feat(structured outputs): support accessing raw responses (#1058) --- src/resources/beta/chat/completions.ts | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/resources/beta/chat/completions.ts b/src/resources/beta/chat/completions.ts index 96c4118bf..113de4026 100644 --- a/src/resources/beta/chat/completions.ts +++ b/src/resources/beta/chat/completions.ts @@ -59,21 +59,21 @@ export interface ParsedChatCompletion extends ChatCompletion { export type ChatCompletionParseParams = ChatCompletionCreateParamsNonStreaming; export class Completions extends APIResource { - async parse>( + parse>( body: Params, options?: Core.RequestOptions, - ): Promise> { + ): Core.APIPromise> { validateInputTools(body.tools); - const completion = await this._client.chat.completions.create(body, { - ...options, - headers: { - ...options?.headers, - 'X-Stainless-Helper-Method': 'beta.chat.completions.parse', - }, - }); - - return parseChatCompletion(completion, body); + return this._client.chat.completions + .create(body, { + ...options, + headers: { + ...options?.headers, + 'X-Stainless-Helper-Method': 'beta.chat.completions.parse', + }, + }) + ._thenUnwrap((completion) => parseChatCompletion(completion, body)); } /** From 8958d9711b66e0cbacf816b7b4538217016beb0b Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 11 Sep 2024 10:14:38 +0000 Subject: [PATCH 532/725] release: 4.59.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 19 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c740afe14..99d650398 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.58.2" + ".": "4.59.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 468be63b2..a245938c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 4.59.0 (2024-09-11) + +Full Changelog: [v4.58.2...v4.59.0](https://github.com/openai/openai-node/compare/v4.58.2...v4.59.0) + +### Features + +* **structured outputs:** support accessing raw responses ([#1058](https://github.com/openai/openai-node/issues/1058)) ([af17697](https://github.com/openai/openai-node/commit/af176979894ee95a51e09abc239a8fd3a639dcde)) + + +### Documentation + +* **azure:** example for custom base URL ([#1055](https://github.com/openai/openai-node/issues/1055)) ([20defc8](https://github.com/openai/openai-node/commit/20defc80801e1f1f489a07bd1264be71c56c586f)) +* **azure:** remove locale from docs link ([#1054](https://github.com/openai/openai-node/issues/1054)) ([f9b7eac](https://github.com/openai/openai-node/commit/f9b7eac58020cff0e367a15b9a2ca4e7c95cbb89)) + ## 4.58.2 (2024-09-09) Full Changelog: [v4.58.1...v4.58.2](https://github.com/openai/openai-node/compare/v4.58.1...v4.58.2) diff --git a/README.md b/README.md index 31a7776d6..11e3216f1 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.58.2/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.59.0/mod.ts'; ``` diff --git a/package.json b/package.json index b284c38a6..c3147af52 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.58.2", + "version": "4.59.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index ef3867dc2..32ac4ce7f 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.58.2/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.59.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index f650f76c3..22b9a14fc 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.58.2'; // x-release-please-version +export const VERSION = '4.59.0'; // x-release-please-version From dcb1bc6098964f55e6ce24e361c681093679abf0 Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Thu, 12 Sep 2024 16:55:10 +0000 Subject: [PATCH 533/725] feat(api): add o1 models (#1061) See https://platform.openai.com/docs/guides/reasoning for details. --- .stats.yml | 2 +- src/resources/beta/assistants.ts | 36 +++++++++++--------- src/resources/beta/threads/runs/runs.ts | 12 +++---- src/resources/beta/threads/threads.ts | 12 +++---- src/resources/chat/chat.ts | 7 +++- src/resources/chat/completions.ts | 30 ++++++++++------ src/resources/completions.ts | 17 +++++++++ src/resources/fine-tuning/jobs/jobs.ts | 2 +- tests/api-resources/chat/completions.test.ts | 1 + 9 files changed, 77 insertions(+), 42 deletions(-) diff --git a/.stats.yml b/.stats.yml index 903c15996..de3167f3a 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-85a85e0c08de456441431c0ae4e9c078cc8f9748c29430b9a9058340db6389ee.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-501122aa32adaa2abb3d4487880ab9cdf2141addce2e6c3d1bd9bb6b44c318a8.yml diff --git a/src/resources/beta/assistants.ts b/src/resources/beta/assistants.ts index 0dbb076d5..410d520b0 100644 --- a/src/resources/beta/assistants.ts +++ b/src/resources/beta/assistants.ts @@ -151,11 +151,11 @@ export interface Assistant { * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured - * Outputs which guarantees the model will match your supplied JSON schema. Learn - * more in the + * Outputs which ensures the model will match your supplied JSON schema. Learn more + * in the * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). * - * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * Setting to `{ "type": "json_object" }` enables JSON mode, which ensures the * message the model generates is valid JSON. * * **Important:** when using JSON mode, you **must** also instruct the model to @@ -665,7 +665,8 @@ export namespace FileSearchTool { max_num_results?: number; /** - * The ranking options for the file search. + * The ranking options for the file search. If not specified, the file search tool + * will use the `auto` ranker and a score_threshold of 0. * * See the * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings) @@ -676,7 +677,8 @@ export namespace FileSearchTool { export namespace FileSearch { /** - * The ranking options for the file search. + * The ranking options for the file search. If not specified, the file search tool + * will use the `auto` ranker and a score_threshold of 0. * * See the * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings) @@ -684,16 +686,16 @@ export namespace FileSearchTool { */ export interface RankingOptions { /** - * The ranker to use for the file search. If not specified will use the `auto` - * ranker. + * The score threshold for the file search. All values must be a floating point + * number between 0 and 1. */ - ranker?: 'auto' | 'default_2024_08_21'; + score_threshold: number; /** - * The score threshold for the file search. All values must be a floating point - * number between 0 and 1. + * The ranker to use for the file search. If not specified will use the `auto` + * ranker. */ - score_threshold?: number; + ranker?: 'auto' | 'default_2024_08_21'; } } } @@ -1125,11 +1127,11 @@ export interface AssistantCreateParams { * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured - * Outputs which guarantees the model will match your supplied JSON schema. Learn - * more in the + * Outputs which ensures the model will match your supplied JSON schema. Learn more + * in the * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). * - * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * Setting to `{ "type": "json_object" }` enables JSON mode, which ensures the * message the model generates is valid JSON. * * **Important:** when using JSON mode, you **must** also instruct the model to @@ -1283,11 +1285,11 @@ export interface AssistantUpdateParams { * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured - * Outputs which guarantees the model will match your supplied JSON schema. Learn - * more in the + * Outputs which ensures the model will match your supplied JSON schema. Learn more + * in the * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). * - * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * Setting to `{ "type": "json_object" }` enables JSON mode, which ensures the * message the model generates is valid JSON. * * **Important:** when using JSON mode, you **must** also instruct the model to diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index fe3a278e9..b48edd5b1 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -429,11 +429,11 @@ export interface Run { * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured - * Outputs which guarantees the model will match your supplied JSON schema. Learn - * more in the + * Outputs which ensures the model will match your supplied JSON schema. Learn more + * in the * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). * - * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * Setting to `{ "type": "json_object" }` enables JSON mode, which ensures the * message the model generates is valid JSON. * * **Important:** when using JSON mode, you **must** also instruct the model to @@ -709,11 +709,11 @@ export interface RunCreateParamsBase { * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured - * Outputs which guarantees the model will match your supplied JSON schema. Learn - * more in the + * Outputs which ensures the model will match your supplied JSON schema. Learn more + * in the * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). * - * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * Setting to `{ "type": "json_object" }` enables JSON mode, which ensures the * message the model generates is valid JSON. * * **Important:** when using JSON mode, you **must** also instruct the model to diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index c49618f0c..be959eb30 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -126,11 +126,11 @@ export class Threads extends APIResource { * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured - * Outputs which guarantees the model will match your supplied JSON schema. Learn - * more in the + * Outputs which ensures the model will match your supplied JSON schema. Learn more + * in the * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). * - * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * Setting to `{ "type": "json_object" }` enables JSON mode, which ensures the * message the model generates is valid JSON. * * **Important:** when using JSON mode, you **must** also instruct the model to @@ -522,11 +522,11 @@ export interface ThreadCreateAndRunParamsBase { * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured - * Outputs which guarantees the model will match your supplied JSON schema. Learn - * more in the + * Outputs which ensures the model will match your supplied JSON schema. Learn more + * in the * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). * - * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * Setting to `{ "type": "json_object" }` enables JSON mode, which ensures the * message the model generates is valid JSON. * * **Important:** when using JSON mode, you **must** also instruct the model to diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 684b1307a..1a758fbb5 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -9,9 +9,14 @@ export class Chat extends APIResource { } export type ChatModel = + | 'o1-preview' + | 'o1-preview-2024-09-12' + | 'o1-mini' + | 'o1-mini-2024-09-12' | 'gpt-4o' - | 'gpt-4o-2024-05-13' | 'gpt-4o-2024-08-06' + | 'gpt-4o-2024-05-13' + | 'chatgpt-4o-latest' | 'gpt-4o-mini' | 'gpt-4o-mini-2024-07-18' | 'gpt-4-turbo' diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 764bdb129..f426ce36f 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -788,14 +788,21 @@ export interface ChatCompletionCreateParamsBase { */ logprobs?: boolean | null; + /** + * An upper bound for the number of tokens that can be generated for a completion, + * including visible output tokens and + * [reasoning tokens](https://platform.openai.com/docs/guides/reasoning). + */ + max_completion_tokens?: number | null; + /** * The maximum number of [tokens](/tokenizer) that can be generated in the chat - * completion. + * completion. This value can be used to control + * [costs](https://openai.com/api/pricing/) for text generated via API. * - * The total length of input tokens and generated tokens is limited by the model's - * context length. - * [Example Python code](https://cookbook.openai.com/examples/how_to_count_tokens_with_tiktoken) - * for counting tokens. + * This value is now deprecated in favor of `max_completion_tokens`, and is not + * compatible with + * [o1 series models](https://platform.openai.com/docs/guides/reasoning). */ max_tokens?: number | null; @@ -830,11 +837,11 @@ export interface ChatCompletionCreateParamsBase { * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured - * Outputs which guarantees the model will match your supplied JSON schema. Learn - * more in the + * Outputs which ensures the model will match your supplied JSON schema. Learn more + * in the * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). * - * Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the + * Setting to `{ "type": "json_object" }` enables JSON mode, which ensures the * message the model generates is valid JSON. * * **Important:** when using JSON mode, you **must** also instruct the model to @@ -863,8 +870,11 @@ export interface ChatCompletionCreateParamsBase { * Specifies the latency tier to use for processing the request. This parameter is * relevant for customers subscribed to the scale tier service: * - * - If set to 'auto', the system will utilize scale tier credits until they are - * exhausted. + * - If set to 'auto', and the Project is Scale tier enabled, the system will + * utilize scale tier credits until they are exhausted. + * - If set to 'auto', and the Project is not Scale tier enabled, the request will + * be processed using the default service tier with a lower uptime SLA and no + * latency guarentee. * - If set to 'default', the request will be processed using the default service * tier with a lower uptime SLA and no latency guarentee. * - When not set, the default behavior is 'auto'. diff --git a/src/resources/completions.ts b/src/resources/completions.ts index a6b527995..152496766 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -120,6 +120,23 @@ export interface CompletionUsage { * Total number of tokens used in the request (prompt + completion). */ total_tokens: number; + + /** + * Breakdown of tokens used in a completion. + */ + completion_tokens_details?: CompletionUsage.CompletionTokensDetails; +} + +export namespace CompletionUsage { + /** + * Breakdown of tokens used in a completion. + */ + export interface CompletionTokensDetails { + /** + * Tokens generated by the model for reasoning. + */ + reasoning_tokens?: number; + } } export type CompletionCreateParams = CompletionCreateParamsNonStreaming | CompletionCreateParamsStreaming; diff --git a/src/resources/fine-tuning/jobs/jobs.ts b/src/resources/fine-tuning/jobs/jobs.ts index aeb646279..54b5c4e6a 100644 --- a/src/resources/fine-tuning/jobs/jobs.ts +++ b/src/resources/fine-tuning/jobs/jobs.ts @@ -340,7 +340,7 @@ export interface JobCreateParams { seed?: number | null; /** - * A string of up to 18 characters that will be added to your fine-tuned model + * A string of up to 64 characters that will be added to your fine-tuned model * name. * * For example, a `suffix` of "custom-model-name" would produce a model name like diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 2179c52c3..692b953f2 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -32,6 +32,7 @@ describe('resource completions', () => { functions: [{ name: 'name', description: 'description', parameters: { foo: 'bar' } }], logit_bias: { foo: 0 }, logprobs: true, + max_completion_tokens: 0, max_tokens: 0, n: 1, parallel_tool_calls: true, From 720a84336debce1beedeaedfc15a94ecd3afae0e Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 12 Sep 2024 16:55:32 +0000 Subject: [PATCH 534/725] release: 4.60.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 99d650398..6e417e5c0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.59.0" + ".": "4.60.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a245938c6..344fb67b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.60.0 (2024-09-12) + +Full Changelog: [v4.59.0...v4.60.0](https://github.com/openai/openai-node/compare/v4.59.0...v4.60.0) + +### Features + +* **api:** add o1 models ([#1061](https://github.com/openai/openai-node/issues/1061)) ([224cc04](https://github.com/openai/openai-node/commit/224cc045200cd1ce1517b4376c505de9b9a74ccc)) + ## 4.59.0 (2024-09-11) Full Changelog: [v4.58.2...v4.59.0](https://github.com/openai/openai-node/compare/v4.58.2...v4.59.0) diff --git a/README.md b/README.md index 11e3216f1..8ae42faaa 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.59.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.60.0/mod.ts'; ``` diff --git a/package.json b/package.json index c3147af52..be86f4c0d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.59.0", + "version": "4.60.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 32ac4ce7f..db3ec6eef 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.59.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.60.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 22b9a14fc..30c6fccf2 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.59.0'; // x-release-please-version +export const VERSION = '4.60.0'; // x-release-please-version From 908ae61f3c228e0c285f736aab226b1e6db5247f Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Fri, 13 Sep 2024 13:53:28 +0100 Subject: [PATCH 535/725] fix(zod): correctly add $ref definitions for transformed schemas (#1065) --- src/_vendor/zod-to-json-schema/parseDef.ts | 11 +- .../zod-to-json-schema/parsers/effects.ts | 8 +- tests/lib/__snapshots__/parser.test.ts.snap | 31 +++++ tests/lib/parser.test.ts | 114 ++++++++++++++++++ 4 files changed, 159 insertions(+), 5 deletions(-) diff --git a/src/_vendor/zod-to-json-schema/parseDef.ts b/src/_vendor/zod-to-json-schema/parseDef.ts index a8c8e7063..8af5ce4be 100644 --- a/src/_vendor/zod-to-json-schema/parseDef.ts +++ b/src/_vendor/zod-to-json-schema/parseDef.ts @@ -99,7 +99,7 @@ export function parseDef( refs.seen.set(def, newItem); - const jsonSchema = selectParser(def, (def as any).typeName, refs); + const jsonSchema = selectParser(def, (def as any).typeName, refs, forceResolution); if (jsonSchema) { addMeta(def, refs, jsonSchema); @@ -166,7 +166,12 @@ const getRelativePath = (pathA: string[], pathB: string[]) => { return [(pathA.length - i).toString(), ...pathB.slice(i)].join('/'); }; -const selectParser = (def: any, typeName: ZodFirstPartyTypeKind, refs: Refs): JsonSchema7Type | undefined => { +const selectParser = ( + def: any, + typeName: ZodFirstPartyTypeKind, + refs: Refs, + forceResolution: boolean, +): JsonSchema7Type | undefined => { switch (typeName) { case ZodFirstPartyTypeKind.ZodString: return parseStringDef(def, refs); @@ -217,7 +222,7 @@ const selectParser = (def: any, typeName: ZodFirstPartyTypeKind, refs: Refs): Js case ZodFirstPartyTypeKind.ZodNever: return parseNeverDef(); case ZodFirstPartyTypeKind.ZodEffects: - return parseEffectsDef(def, refs); + return parseEffectsDef(def, refs, forceResolution); case ZodFirstPartyTypeKind.ZodAny: return parseAnyDef(); case ZodFirstPartyTypeKind.ZodUnknown: diff --git a/src/_vendor/zod-to-json-schema/parsers/effects.ts b/src/_vendor/zod-to-json-schema/parsers/effects.ts index 23d368987..b010d5c47 100644 --- a/src/_vendor/zod-to-json-schema/parsers/effects.ts +++ b/src/_vendor/zod-to-json-schema/parsers/effects.ts @@ -2,6 +2,10 @@ import { ZodEffectsDef } from 'zod'; import { JsonSchema7Type, parseDef } from '../parseDef'; import { Refs } from '../Refs'; -export function parseEffectsDef(_def: ZodEffectsDef, refs: Refs): JsonSchema7Type | undefined { - return refs.effectStrategy === 'input' ? parseDef(_def.schema._def, refs) : {}; +export function parseEffectsDef( + _def: ZodEffectsDef, + refs: Refs, + forceResolution: boolean, +): JsonSchema7Type | undefined { + return refs.effectStrategy === 'input' ? parseDef(_def.schema._def, refs, forceResolution) : {}; } diff --git a/tests/lib/__snapshots__/parser.test.ts.snap b/tests/lib/__snapshots__/parser.test.ts.snap index 12e737f5c..11d68ab4e 100644 --- a/tests/lib/__snapshots__/parser.test.ts.snap +++ b/tests/lib/__snapshots__/parser.test.ts.snap @@ -112,6 +112,37 @@ exports[`.parse() zod recursive schema extraction 2`] = ` " `; +exports[`.parse() zod ref schemas with \`.transform()\` 2`] = ` +"{ + "id": "chatcmpl-A6zyLEtubMlUvGplOmr92S0mK0kiG", + "object": "chat.completion", + "created": 1726231553, + "model": "gpt-4o-2024-08-06", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "{\\"first\\":{\\"baz\\":true},\\"second\\":{\\"baz\\":false}}", + "refusal": null + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 167, + "completion_tokens": 13, + "total_tokens": 180, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + }, + "system_fingerprint": "fp_143bb8492c" +} +" +`; + exports[`.parse() zod top-level recursive schemas 1`] = ` "{ "id": "chatcmpl-9uLhw79ArBF4KsQQOlsoE68m6vh6v", diff --git a/tests/lib/parser.test.ts b/tests/lib/parser.test.ts index cbcc2f186..b220e92d3 100644 --- a/tests/lib/parser.test.ts +++ b/tests/lib/parser.test.ts @@ -951,5 +951,119 @@ describe('.parse()', () => { } `); }); + + test('ref schemas with `.transform()`', async () => { + const Inner = z.object({ + baz: z.boolean().transform((v) => v ?? true), + }); + + const Outer = z.object({ + first: Inner, + second: Inner, + }); + + expect(zodResponseFormat(Outer, 'data').json_schema.schema).toMatchInlineSnapshot(` + { + "$schema": "http://json-schema.org/draft-07/schema#", + "additionalProperties": false, + "definitions": { + "data": { + "additionalProperties": false, + "properties": { + "first": { + "additionalProperties": false, + "properties": { + "baz": { + "type": "boolean", + }, + }, + "required": [ + "baz", + ], + "type": "object", + }, + "second": { + "$ref": "#/definitions/data_properties_first", + }, + }, + "required": [ + "first", + "second", + ], + "type": "object", + }, + "data_properties_first": { + "additionalProperties": false, + "properties": { + "baz": { + "$ref": "#/definitions/data_properties_first_properties_baz", + }, + }, + "required": [ + "baz", + ], + "type": "object", + }, + "data_properties_first_properties_baz": { + "type": "boolean", + }, + }, + "properties": { + "first": { + "additionalProperties": false, + "properties": { + "baz": { + "type": "boolean", + }, + }, + "required": [ + "baz", + ], + "type": "object", + }, + "second": { + "$ref": "#/definitions/data_properties_first", + }, + }, + "required": [ + "first", + "second", + ], + "type": "object", + } + `); + + const completion = await makeSnapshotRequest( + (openai) => + openai.beta.chat.completions.parse({ + model: 'gpt-4o-2024-08-06', + messages: [ + { + role: 'user', + content: 'can you generate fake data matching the given response format?', + }, + ], + response_format: zodResponseFormat(Outer, 'fakeData'), + }), + 2, + ); + + expect(completion.choices[0]?.message).toMatchInlineSnapshot(` + { + "content": "{"first":{"baz":true},"second":{"baz":false}}", + "parsed": { + "first": { + "baz": true, + }, + "second": { + "baz": false, + }, + }, + "refusal": null, + "role": "assistant", + "tool_calls": [], + } + `); + }); }); }); From 58eb50c781260290b3ef9d664ee3d5153e5d9479 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 13 Sep 2024 12:53:50 +0000 Subject: [PATCH 536/725] release: 4.60.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6e417e5c0..0a2d02022 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.60.0" + ".": "4.60.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 344fb67b5..7bbcaaa2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.60.1 (2024-09-13) + +Full Changelog: [v4.60.0...v4.60.1](https://github.com/openai/openai-node/compare/v4.60.0...v4.60.1) + +### Bug Fixes + +* **zod:** correctly add $ref definitions for transformed schemas ([#1065](https://github.com/openai/openai-node/issues/1065)) ([9b93b24](https://github.com/openai/openai-node/commit/9b93b24b8ae267fe403fb9cd4876d9772f40878b)) + ## 4.60.0 (2024-09-12) Full Changelog: [v4.59.0...v4.60.0](https://github.com/openai/openai-node/compare/v4.59.0...v4.60.0) diff --git a/README.md b/README.md index 8ae42faaa..35a958759 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.60.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.60.1/mod.ts'; ``` diff --git a/package.json b/package.json index be86f4c0d..2f684d212 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.60.0", + "version": "4.60.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index db3ec6eef..9ad4399b7 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.60.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.60.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 30c6fccf2..7070d859c 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.60.0'; // x-release-please-version +export const VERSION = '4.60.1'; // x-release-please-version From 90c2da5792f1e93dae162bba54be8a9c20704b1e Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Fri, 13 Sep 2024 16:15:28 +0100 Subject: [PATCH 537/725] fix(examples): handle usage chunk in tool call streaming (#1068) --------- Co-authored-by: Jacob Zimmerman --- examples/tool-calls-stream.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/examples/tool-calls-stream.ts b/examples/tool-calls-stream.ts index 924e6b7cf..687ea86fd 100755 --- a/examples/tool-calls-stream.ts +++ b/examples/tool-calls-stream.ts @@ -184,7 +184,13 @@ function messageReducer(previous: ChatCompletionMessage, item: ChatCompletionChu } return acc; }; - return reduce(previous, item.choices[0]!.delta) as ChatCompletionMessage; + + const choice = item.choices[0]; + if (!choice) { + // chunk contains information about usage and token counts + return previous; + } + return reduce(previous, choice.delta) as ChatCompletionMessage; } function lineRewriter() { From 1fa551337a6d33df39f12dd973e80726c8e727a8 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 13 Sep 2024 15:29:42 +0000 Subject: [PATCH 538/725] docs: update CONTRIBUTING.md (#1071) --- CONTRIBUTING.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9e8f669a7..62b48d828 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,13 +14,13 @@ This will install all the required dependencies and build output files to `dist/ ## Modifying/Adding code -Most of the SDK is generated code, and any modified code will be overridden on the next generation. The -`src/lib/` and `examples/` directories are exceptions and will never be overridden. +Most of the SDK is generated code. Modifications to code will be persisted between generations, but may +result in merge conflicts between manual patches and changes from the generator. The generator will never +modify the contents of the `src/lib/` and `examples/` directories. ## Adding and running examples -All files in the `examples/` directory are not modified by the Stainless generator and can be freely edited or -added to. +All files in the `examples/` directory are not modified by the generator and can be freely edited or added to. ```bash // add an example to examples/.ts From bf72a084ec67549ff4414c94c6879cc6550b7aa4 Mon Sep 17 00:00:00 2001 From: Jacob Zimmerman Date: Sat, 7 Sep 2024 19:02:36 -0400 Subject: [PATCH 539/725] fix(client): partial parsing update to handle strings small testing additions lint --- package.json | 1 + src/_vendor/partial-json-parser/README.md | 2 +- src/_vendor/partial-json-parser/parser.ts | 469 +++++++++--------- .../partial-json-parsing.test.ts | 58 +++ yarn.lock | 12 + 5 files changed, 298 insertions(+), 244 deletions(-) create mode 100644 tests/_vendor/partial-json-parser/partial-json-parsing.test.ts diff --git a/package.json b/package.json index 2f684d212..934e1e722 100644 --- a/package.json +++ b/package.json @@ -43,6 +43,7 @@ "eslint": "^8.49.0", "eslint-plugin-prettier": "^5.0.1", "eslint-plugin-unused-imports": "^3.0.0", + "fast-check": "^3.22.0", "jest": "^29.4.0", "prettier": "^3.0.0", "prettier-2": "npm:prettier@^2", diff --git a/src/_vendor/partial-json-parser/README.md b/src/_vendor/partial-json-parser/README.md index bc6ea4e3d..d4e1c85d6 100644 --- a/src/_vendor/partial-json-parser/README.md +++ b/src/_vendor/partial-json-parser/README.md @@ -1,3 +1,3 @@ # Partial JSON Parser -Vendored from https://www.npmjs.com/package/partial-json-parser and updated to use TypeScript. +Vendored from https://www.npmjs.com/package/partial-json with some modifications diff --git a/src/_vendor/partial-json-parser/parser.ts b/src/_vendor/partial-json-parser/parser.ts index 9470c462f..5ee62b76b 100644 --- a/src/_vendor/partial-json-parser/parser.ts +++ b/src/_vendor/partial-json-parser/parser.ts @@ -1,264 +1,247 @@ -type Token = { - type: string; - value: string; +const STR = 0b000000001; +const NUM = 0b000000010; +const ARR = 0b000000100; +const OBJ = 0b000001000; +const NULL = 0b000010000; +const BOOL = 0b000100000; +const NAN = 0b001000000; +const INFINITY = 0b010000000; +const MINUS_INFINITY = 0b100000000; + +const INF = INFINITY | MINUS_INFINITY; +const SPECIAL = NULL | BOOL | INF | NAN; +const ATOM = STR | NUM | SPECIAL; +const COLLECTION = ARR | OBJ; +const ALL = ATOM | COLLECTION; + +const Allow = { + STR, + NUM, + ARR, + OBJ, + NULL, + BOOL, + NAN, + INFINITY, + MINUS_INFINITY, + INF, + SPECIAL, + ATOM, + COLLECTION, + ALL, }; -const tokenize = (input: string): Token[] => { - let current = 0; - let tokens: Token[] = []; - - while (current < input.length) { - let char = input[current]; - - if (char === '\\') { - current++; - continue; - } - - if (char === '{') { - tokens.push({ - type: 'brace', - value: '{', - }); - - current++; - continue; - } - - if (char === '}') { - tokens.push({ - type: 'brace', - value: '}', - }); - - current++; - continue; - } - - if (char === '[') { - tokens.push({ - type: 'paren', - value: '[', - }); - - current++; - continue; - } - - if (char === ']') { - tokens.push({ - type: 'paren', - value: ']', - }); - - current++; - continue; - } - - if (char === ':') { - tokens.push({ - type: 'separator', - value: ':', - }); - - current++; - continue; +// The JSON string segment was unable to be parsed completely +class PartialJSON extends Error {} + +class MalformedJSON extends Error {} + +/** + * Parse incomplete JSON + * @param {string} jsonString Partial JSON to be parsed + * @param {number} allowPartial Specify what types are allowed to be partial, see {@link Allow} for details + * @returns The parsed JSON + * @throws {PartialJSON} If the JSON is incomplete (related to the `allow` parameter) + * @throws {MalformedJSON} If the JSON is malformed + */ +function parseJSON(jsonString: string, allowPartial: number = Allow.ALL): any { + if (typeof jsonString !== 'string') { + throw new TypeError(`expecting str, got ${typeof jsonString}`); + } + if (!jsonString.trim()) { + throw new Error(`${jsonString} is empty`); + } + return _parseJSON(jsonString.trim(), allowPartial); +} + +const _parseJSON = (jsonString: string, allow: number) => { + const length = jsonString.length; + let index = 0; + + const markPartialJSON = (msg: string) => { + throw new PartialJSON(`${msg} at position ${index}`); + }; + + const throwMalformedError = (msg: string) => { + throw new MalformedJSON(`${msg} at position ${index}`); + }; + + const parseAny: () => any = () => { + skipBlank(); + if (index >= length) markPartialJSON('Unexpected end of input'); + if (jsonString[index] === '"') return parseStr(); + if (jsonString[index] === '{') return parseObj(); + if (jsonString[index] === '[') return parseArr(); + if ( + jsonString.substring(index, index + 4) === 'null' || + (Allow.NULL & allow && length - index < 4 && 'null'.startsWith(jsonString.substring(index))) + ) { + index += 4; + return null; + } + if ( + jsonString.substring(index, index + 4) === 'true' || + (Allow.BOOL & allow && length - index < 4 && 'true'.startsWith(jsonString.substring(index))) + ) { + index += 4; + return true; + } + if ( + jsonString.substring(index, index + 5) === 'false' || + (Allow.BOOL & allow && length - index < 5 && 'false'.startsWith(jsonString.substring(index))) + ) { + index += 5; + return false; + } + if ( + jsonString.substring(index, index + 8) === 'Infinity' || + (Allow.INFINITY & allow && length - index < 8 && 'Infinity'.startsWith(jsonString.substring(index))) + ) { + index += 8; + return Infinity; + } + if ( + jsonString.substring(index, index + 9) === '-Infinity' || + (Allow.MINUS_INFINITY & allow && + 1 < length - index && + length - index < 9 && + '-Infinity'.startsWith(jsonString.substring(index))) + ) { + index += 9; + return -Infinity; + } + if ( + jsonString.substring(index, index + 3) === 'NaN' || + (Allow.NAN & allow && length - index < 3 && 'NaN'.startsWith(jsonString.substring(index))) + ) { + index += 3; + return NaN; + } + return parseNum(); + }; + + const parseStr: () => string = () => { + const start = index; + let escape = false; + index++; // skip initial quote + while (index < length && (jsonString[index] !== '"' || (escape && jsonString[index - 1] === '\\'))) { + escape = jsonString[index] === '\\' ? !escape : false; + index++; + } + if (jsonString.charAt(index) == '"') { + try { + return JSON.parse(jsonString.substring(start, ++index - Number(escape))); + } catch (e) { + throwMalformedError(String(e)); } - - if (char === ',') { - tokens.push({ - type: 'delimiter', - value: ',', - }); - - current++; - continue; + } else if (Allow.STR & allow) { + try { + return JSON.parse(jsonString.substring(start, index - Number(escape)) + '"'); + } catch (e) { + // SyntaxError: Invalid escape sequence + return JSON.parse(jsonString.substring(start, jsonString.lastIndexOf('\\')) + '"'); } - - if (char === '"') { - let value = ''; - let danglingQuote = false; - - char = input[++current]; - - while (char !== '"') { - if (current === input.length) { - danglingQuote = true; - break; - } - - if (char === '\\') { - current++; - if (current === input.length) { - danglingQuote = true; - break; - } - value += char + input[current]; - char = input[++current]; - } else { - value += char; - char = input[++current]; - } - } - - char = input[++current]; - - if (!danglingQuote) { - tokens.push({ - type: 'string', - value, - }); + } + markPartialJSON('Unterminated string literal'); + }; + + const parseObj = () => { + index++; // skip initial brace + skipBlank(); + const obj: Record = {}; + try { + while (jsonString[index] !== '}') { + skipBlank(); + if (index >= length && Allow.OBJ & allow) return obj; + const key = parseStr(); + skipBlank(); + index++; // skip colon + try { + const value = parseAny(); + Object.defineProperty(obj, key, { value, writable: true, enumerable: true, configurable: true }); + } catch (e) { + if (Allow.OBJ & allow) return obj; + else throw e; } - continue; - } - - let WHITESPACE = /\s/; - if (char && WHITESPACE.test(char)) { - current++; - continue; + skipBlank(); + if (jsonString[index] === ',') index++; // skip comma } - - let NUMBERS = /[0-9]/; - if ((char && NUMBERS.test(char)) || char === '-' || char === '.') { - let value = ''; - - if (char === '-') { - value += char; - char = input[++current]; - } - - while ((char && NUMBERS.test(char)) || char === '.') { - value += char; - char = input[++current]; + } catch (e) { + if (Allow.OBJ & allow) return obj; + else markPartialJSON("Expected '}' at end of object"); + } + index++; // skip final brace + return obj; + }; + + const parseArr = () => { + index++; // skip initial bracket + const arr = []; + try { + while (jsonString[index] !== ']') { + arr.push(parseAny()); + skipBlank(); + if (jsonString[index] === ',') { + index++; // skip comma } - - tokens.push({ - type: 'number', - value, - }); - continue; } - - let LETTERS = /[a-z]/i; - if (char && LETTERS.test(char)) { - let value = ''; - - while (char && LETTERS.test(char)) { - if (current === input.length) { - break; - } - value += char; - char = input[++current]; - } - - if (value == 'true' || value == 'false' || value === 'null') { - tokens.push({ - type: 'name', - value, - }); - } else { - // unknown token, e.g. `nul` which isn't quite `null` - current++; - continue; - } - continue; + } catch (e) { + if (Allow.ARR & allow) { + return arr; } - - current++; + markPartialJSON("Expected ']' at end of array"); } - - return tokens; - }, - strip = (tokens: Token[]): Token[] => { - if (tokens.length === 0) { - return tokens; + index++; // skip final bracket + return arr; + }; + + const parseNum = () => { + if (index === 0) { + if (jsonString === '-' && Allow.NUM & allow) markPartialJSON("Not sure what '-' is"); + try { + return JSON.parse(jsonString); + } catch (e) { + if (Allow.NUM & allow) { + try { + if ('.' === jsonString[jsonString.length - 1]) + return JSON.parse(jsonString.substring(0, jsonString.lastIndexOf('.'))); + return JSON.parse(jsonString.substring(0, jsonString.lastIndexOf('e'))); + } catch (e) {} + } + throwMalformedError(String(e)); + } } - let lastToken = tokens[tokens.length - 1]!; + const start = index; - switch (lastToken.type) { - case 'separator': - tokens = tokens.slice(0, tokens.length - 1); - return strip(tokens); - break; - case 'number': - let lastCharacterOfLastToken = lastToken.value[lastToken.value.length - 1]; - if (lastCharacterOfLastToken === '.' || lastCharacterOfLastToken === '-') { - tokens = tokens.slice(0, tokens.length - 1); - return strip(tokens); - } - case 'string': - let tokenBeforeTheLastToken = tokens[tokens.length - 2]; - if (tokenBeforeTheLastToken?.type === 'delimiter') { - tokens = tokens.slice(0, tokens.length - 1); - return strip(tokens); - } else if (tokenBeforeTheLastToken?.type === 'brace' && tokenBeforeTheLastToken.value === '{') { - tokens = tokens.slice(0, tokens.length - 1); - return strip(tokens); - } - break; - case 'delimiter': - tokens = tokens.slice(0, tokens.length - 1); - return strip(tokens); - break; - } + if (jsonString[index] === '-') index++; + while (jsonString[index] && !',]}'.includes(jsonString[index]!)) index++; - return tokens; - }, - unstrip = (tokens: Token[]): Token[] => { - let tail: string[] = []; + if (index == length && !(Allow.NUM & allow)) markPartialJSON('Unterminated number literal'); - tokens.map((token) => { - if (token.type === 'brace') { - if (token.value === '{') { - tail.push('}'); - } else { - tail.splice(tail.lastIndexOf('}'), 1); - } + try { + return JSON.parse(jsonString.substring(start, index)); + } catch (e) { + if (jsonString.substring(start, index) === '-' && Allow.NUM & allow) + markPartialJSON("Not sure what '-' is"); + try { + return JSON.parse(jsonString.substring(start, jsonString.lastIndexOf('e'))); + } catch (e) { + throwMalformedError(String(e)); } - if (token.type === 'paren') { - if (token.value === '[') { - tail.push(']'); - } else { - tail.splice(tail.lastIndexOf(']'), 1); - } - } - }); - - if (tail.length > 0) { - tail.reverse().map((item) => { - if (item === '}') { - tokens.push({ - type: 'brace', - value: '}', - }); - } else if (item === ']') { - tokens.push({ - type: 'paren', - value: ']', - }); - } - }); } + }; - return tokens; - }, - generate = (tokens: Token[]): string => { - let output = ''; + const skipBlank = () => { + while (index < length && ' \n\r\t'.includes(jsonString[index]!)) { + index++; + } + }; - tokens.map((token) => { - switch (token.type) { - case 'string': - output += '"' + token.value + '"'; - break; - default: - output += token.value; - break; - } - }); + return parseAny(); +}; - return output; - }, - partialParse = (input: string): unknown => JSON.parse(generate(unstrip(strip(tokenize(input))))); +// using this function with malformed JSON is undefined behavior +const partialParse = (input: string) => parseJSON(input, Allow.ALL ^ Allow.NUM); -export { partialParse }; +export { partialParse, PartialJSON, MalformedJSON }; diff --git a/tests/_vendor/partial-json-parser/partial-json-parsing.test.ts b/tests/_vendor/partial-json-parser/partial-json-parsing.test.ts new file mode 100644 index 000000000..6fad8f1a9 --- /dev/null +++ b/tests/_vendor/partial-json-parser/partial-json-parsing.test.ts @@ -0,0 +1,58 @@ +import fc from 'fast-check'; +import { MalformedJSON, partialParse } from 'openai/_vendor/partial-json-parser/parser'; + +describe('partial parsing', () => { + test('should parse complete json', () => { + expect(partialParse('{"__proto__": 0}')).toEqual(JSON.parse('{"__proto__": 0}')); + + fc.assert( + fc.property(fc.json({ depthSize: 'large', noUnicodeString: false }), (jsonString) => { + const parsedNormal = JSON.parse(jsonString); + const parsedPartial = partialParse(jsonString); + expect(parsedPartial).toEqual(parsedNormal); + }), + ); + }); + + test('should parse partial json', () => { + expect(partialParse('{"field')).toEqual({}); + expect(partialParse('"')).toEqual(''); + expect(partialParse('[2, 3, 4')).toEqual([2, 3]); + expect(partialParse('{"field": true, "field2')).toEqual({ field: true }); + expect(partialParse('{"field": true, "field2":')).toEqual({ field: true }); + expect(partialParse('{"field": true, "field2":{')).toEqual({ field: true, field2: {} }); + expect(partialParse('{"field": true, "field2": { "obj": "somestr')).toEqual({ + field: true, + field2: { obj: 'somestr' }, + }); + expect(partialParse('{"field": true, "field2": { "obj": "somestr",')).toEqual({ + field: true, + field2: { obj: 'somestr' }, + }); + expect(partialParse('{"field": "va')).toEqual({ field: 'va' }); + expect(partialParse('[ "v1", 2, "v2", 3')).toEqual(['v1', 2, 'v2']); + expect(partialParse('[ "v1", 2, "v2", -')).toEqual(['v1', 2, 'v2']); + expect(partialParse('[1, 2e')).toEqual([1]); + }); + + test('should only throw errors parsing numbers', () => + fc.assert( + fc.property(fc.json({ depthSize: 'large', noUnicodeString: false }), (jsonString) => { + for (let i = 1; i < jsonString.length; i++) { + // speedup + i += Math.floor(Math.random() * 3); + const substring = jsonString.substring(0, i); + + // since we don't allow partial parsing for numbers + if ( + typeof JSON.parse(jsonString) === 'number' && + 'e-+.'.includes(substring[substring.length - 1]!) + ) { + expect(() => partialParse(substring)).toThrow(MalformedJSON); + } else { + partialParse(substring); + } + } + }), + )); +}); diff --git a/yarn.lock b/yarn.lock index 3c7bdb93e..68486892b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1725,6 +1725,13 @@ expect@^29.0.0, expect@^29.7.0: jest-message-util "^29.7.0" jest-util "^29.7.0" +fast-check@^3.22.0: + version "3.22.0" + resolved "https://registry.yarnpkg.com/fast-check/-/fast-check-3.22.0.tgz#1a8153e9d6fbdcc60b818f447cbb9cac1fdd8fb6" + integrity sha512-8HKz3qXqnHYp/VCNn2qfjHdAdcI8zcSqOyX64GOMukp7SL2bfzfeDKjSd+UyECtejccaZv3LcvZTm9YDD22iCQ== + dependencies: + pure-rand "^6.1.0" + fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" @@ -3037,6 +3044,11 @@ pure-rand@^6.0.0: resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.0.4.tgz#50b737f6a925468679bff00ad20eade53f37d5c7" integrity sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA== +pure-rand@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.1.0.tgz#d173cf23258231976ccbdb05247c9787957604f2" + integrity sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA== + qs@^6.10.3: version "6.13.0" resolved "https://registry.yarnpkg.com/qs/-/qs-6.13.0.tgz#6ca3bd58439f7e245655798997787b0d88a51906" From 872f74c61b4aa2ea4072d345142d6e89be68f54b Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Fri, 13 Sep 2024 18:45:42 +0100 Subject: [PATCH 540/725] chore(examples): add a small delay to tool-calls example streaming --- examples/tool-calls-stream.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/tool-calls-stream.ts b/examples/tool-calls-stream.ts index 687ea86fd..93f16a245 100755 --- a/examples/tool-calls-stream.ts +++ b/examples/tool-calls-stream.ts @@ -27,6 +27,9 @@ import { ChatCompletionMessageParam, } from 'openai/resources/chat'; +// Used so that the each chunk coming in is noticable +const CHUNK_DELAY_MS = 100; + // gets API Key from environment variable OPENAI_API_KEY const openai = new OpenAI(); @@ -126,6 +129,9 @@ async function main() { for await (const chunk of stream) { message = messageReducer(message, chunk); writeLine(message); + + // Add a small delay so that the chunks coming in are noticablej + await new Promise((resolve) => setTimeout(resolve, CHUNK_DELAY_MS)); } console.log(); messages.push(message); From 328f75caef55f2d7a829d3de520b741855e2e104 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 13 Sep 2024 17:53:38 +0000 Subject: [PATCH 541/725] release: 4.61.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 19 +++++++++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 24 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0a2d02022..e284d59ae 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.60.1" + ".": "4.61.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bbcaaa2c..0829a7151 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## 4.61.0 (2024-09-13) + +Full Changelog: [v4.60.1...v4.61.0](https://github.com/openai/openai-node/compare/v4.60.1...v4.61.0) + +### Bug Fixes + +* **client:** partial parsing update to handle strings ([46e8eb6](https://github.com/openai/openai-node/commit/46e8eb6a9a45b11f9e4c97474ed6c02b1faa43af)) +* **examples:** handle usage chunk in tool call streaming ([#1068](https://github.com/openai/openai-node/issues/1068)) ([e4188c4](https://github.com/openai/openai-node/commit/e4188c4ba443a21d1ef94658df5366f80f0e573b)) + + +### Chores + +* **examples:** add a small delay to tool-calls example streaming ([a3fc659](https://github.com/openai/openai-node/commit/a3fc65928af7085d1d8d785ad4765fedc3955641)) + + +### Documentation + +* update CONTRIBUTING.md ([#1071](https://github.com/openai/openai-node/issues/1071)) ([5de81c9](https://github.com/openai/openai-node/commit/5de81c95d7326602865e007715a76d5595824fd9)) + ## 4.60.1 (2024-09-13) Full Changelog: [v4.60.0...v4.60.1](https://github.com/openai/openai-node/compare/v4.60.0...v4.60.1) diff --git a/README.md b/README.md index 35a958759..8811d8ab4 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.60.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.61.0/mod.ts'; ``` diff --git a/package.json b/package.json index 934e1e722..42b1d795a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.60.1", + "version": "4.61.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 9ad4399b7..a64186518 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.60.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.61.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 7070d859c..150565572 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.60.1'; // x-release-please-version +export const VERSION = '4.61.0'; // x-release-please-version From 5d4d74fd684699c5be420a6b441e7e46fdd43bed Mon Sep 17 00:00:00 2001 From: Matt Granmoe Date: Mon, 16 Sep 2024 03:21:14 -0500 Subject: [PATCH 542/725] fix(runTools): correct request options type (#1073) --- src/resources/beta/chat/completions.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/resources/beta/chat/completions.ts b/src/resources/beta/chat/completions.ts index 113de4026..03ea0aab5 100644 --- a/src/resources/beta/chat/completions.ts +++ b/src/resources/beta/chat/completions.ts @@ -21,6 +21,7 @@ export { ParsingFunction, ParsingToolFunction, } from '../../../lib/RunnableFunction'; +import { RunnerOptions } from '../../../lib/AbstractChatCompletionRunner'; import { ChatCompletionToolRunnerParams } from '../../../lib/ChatCompletionRunner'; export { ChatCompletionToolRunnerParams } from '../../../lib/ChatCompletionRunner'; import { ChatCompletionStreamingToolRunnerParams } from '../../../lib/ChatCompletionStreamingRunner'; @@ -119,19 +120,19 @@ export class Completions extends APIResource { runTools< Params extends ChatCompletionToolRunnerParams, ParsedT = ExtractParsedContentFromParams, - >(body: Params, options?: Core.RequestOptions): ChatCompletionRunner; + >(body: Params, options?: RunnerOptions): ChatCompletionRunner; runTools< Params extends ChatCompletionStreamingToolRunnerParams, ParsedT = ExtractParsedContentFromParams, - >(body: Params, options?: Core.RequestOptions): ChatCompletionStreamingRunner; + >(body: Params, options?: RunnerOptions): ChatCompletionStreamingRunner; runTools< Params extends ChatCompletionToolRunnerParams | ChatCompletionStreamingToolRunnerParams, ParsedT = ExtractParsedContentFromParams, >( body: Params, - options?: Core.RequestOptions, + options?: RunnerOptions, ): ChatCompletionRunner | ChatCompletionStreamingRunner { if (body.stream) { return ChatCompletionStreamingRunner.runTools( From 0389da8d84c8c396b50f6efef72154102511d8c7 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 12:23:48 +0000 Subject: [PATCH 543/725] chore(internal): update spec link (#1076) --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index de3167f3a..2fc39385e 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-501122aa32adaa2abb3d4487880ab9cdf2141addce2e6c3d1bd9bb6b44c318a8.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-ff407aa10917e62f2b0c12d1ad2c4f1258ed083bd45753c70eaaf5b1cf8356ae.yml From e26f31c4540ae0e61f649b400b120b95e12cf783 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 12:24:36 +0000 Subject: [PATCH 544/725] release: 4.61.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e284d59ae..8f32b4daf 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.61.0" + ".": "4.61.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 0829a7151..1fc81d615 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.61.1 (2024-09-16) + +Full Changelog: [v4.61.0...v4.61.1](https://github.com/openai/openai-node/compare/v4.61.0...v4.61.1) + +### Bug Fixes + +* **runTools:** correct request options type ([#1073](https://github.com/openai/openai-node/issues/1073)) ([399f971](https://github.com/openai/openai-node/commit/399f9710f9a1406fe2dd048a1d26418c0de7ff0c)) + + +### Chores + +* **internal:** update spec link ([#1076](https://github.com/openai/openai-node/issues/1076)) ([20f1bcc](https://github.com/openai/openai-node/commit/20f1bcce2b5d03c5185989212a5c5271a8d4209c)) + ## 4.61.0 (2024-09-13) Full Changelog: [v4.60.1...v4.61.0](https://github.com/openai/openai-node/compare/v4.60.1...v4.61.0) diff --git a/README.md b/README.md index 8811d8ab4..03ee259ee 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.61.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.61.1/mod.ts'; ``` diff --git a/package.json b/package.json index 42b1d795a..86e594c2c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.61.0", + "version": "4.61.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index a64186518..641b61c02 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.61.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.61.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 150565572..6c1e0cb8e 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.61.0'; // x-release-please-version +export const VERSION = '4.61.1'; // x-release-please-version From d5c21314449091dd1c668c7358b25e041466f588 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Tue, 17 Sep 2024 17:20:58 +0100 Subject: [PATCH 545/725] feat(client): add ._request_id property to object responses (#1078) --- README.md | 11 +++++ src/core.ts | 58 +++++++++++++++------- tests/responses.test.ts | 104 +++++++++++++++++++++++++++++++++++++++- tests/utils/typing.ts | 9 ++++ 4 files changed, 165 insertions(+), 17 deletions(-) create mode 100644 tests/utils/typing.ts diff --git a/README.md b/README.md index 03ee259ee..b3de7fa55 100644 --- a/README.md +++ b/README.md @@ -361,6 +361,17 @@ Error codes are as followed: | >=500 | `InternalServerError` | | N/A | `APIConnectionError` | +## Request IDs + +> For more information on debugging requests, see [these docs](https://platform.openai.com/docs/api-reference/debugging-requests) + +All object responses in the SDK provide a `_request_id` property which is added from the `x-request-id` response header so that you can quickly log failing requests and report them back to OpenAI. + +```ts +const completion = await client.chat.completions.create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-4' }); +console.log(completion._request_id) // req_123 +``` + ## Microsoft Azure OpenAI To use this library with [Azure OpenAI](https://learn.microsoft.com/azure/ai-services/openai/overview), use the `AzureOpenAI` diff --git a/src/core.ts b/src/core.ts index a4bb87a32..90714d3ce 100644 --- a/src/core.ts +++ b/src/core.ts @@ -37,7 +37,7 @@ type APIResponseProps = { controller: AbortController; }; -async function defaultParseResponse(props: APIResponseProps): Promise { +async function defaultParseResponse(props: APIResponseProps): Promise> { const { response } = props; if (props.options.stream) { debug('response', response.status, response.url, response.headers, response.body); @@ -54,11 +54,11 @@ async function defaultParseResponse(props: APIResponseProps): Promise { // fetch refuses to read the body when the status code is 204. if (response.status === 204) { - return null as T; + return null as WithRequestID; } if (props.options.__binaryResponse) { - return response as unknown as T; + return response as unknown as WithRequestID; } const contentType = response.headers.get('content-type'); @@ -69,26 +69,44 @@ async function defaultParseResponse(props: APIResponseProps): Promise { debug('response', response.status, response.url, response.headers, json); - return json as T; + return _addRequestID(json, response); } const text = await response.text(); debug('response', response.status, response.url, response.headers, text); // TODO handle blob, arraybuffer, other content types, etc. - return text as unknown as T; + return text as unknown as WithRequestID; +} + +type WithRequestID = + T extends Array | Response | AbstractPage ? T + : T extends Record ? T & { _request_id?: string | null } + : T; + +function _addRequestID(value: T, response: Response): WithRequestID { + if (!value || typeof value !== 'object' || Array.isArray(value)) { + return value as WithRequestID; + } + + return Object.defineProperty(value, '_request_id', { + value: response.headers.get('x-request-id'), + enumerable: false, + }) as WithRequestID; } /** * A subclass of `Promise` providing additional helper methods * for interacting with the SDK. */ -export class APIPromise extends Promise { - private parsedPromise: Promise | undefined; +export class APIPromise extends Promise> { + private parsedPromise: Promise> | undefined; constructor( private responsePromise: Promise, - private parseResponse: (props: APIResponseProps) => PromiseOrValue = defaultParseResponse, + private parseResponse: ( + props: APIResponseProps, + ) => PromiseOrValue> = defaultParseResponse, ) { super((resolve) => { // this is maybe a bit weird but this has to be a no-op to not implicitly @@ -99,7 +117,9 @@ export class APIPromise extends Promise { } _thenUnwrap(transform: (data: T) => U): APIPromise { - return new APIPromise(this.responsePromise, async (props) => transform(await this.parseResponse(props))); + return new APIPromise(this.responsePromise, async (props) => + _addRequestID(transform(await this.parseResponse(props)), props.response), + ); } /** @@ -136,15 +156,15 @@ export class APIPromise extends Promise { return { data, response }; } - private parse(): Promise { + private parse(): Promise> { if (!this.parsedPromise) { - this.parsedPromise = this.responsePromise.then(this.parseResponse); + this.parsedPromise = this.responsePromise.then(this.parseResponse) as any as Promise>; } return this.parsedPromise; } - override then( - onfulfilled?: ((value: T) => TResult1 | PromiseLike) | undefined | null, + override then, TResult2 = never>( + onfulfilled?: ((value: WithRequestID) => TResult1 | PromiseLike) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike) | undefined | null, ): Promise { return this.parse().then(onfulfilled, onrejected); @@ -152,11 +172,11 @@ export class APIPromise extends Promise { override catch( onrejected?: ((reason: any) => TResult | PromiseLike) | undefined | null, - ): Promise { + ): Promise | TResult> { return this.parse().catch(onrejected); } - override finally(onfinally?: (() => void) | undefined | null): Promise { + override finally(onfinally?: (() => void) | undefined | null): Promise> { return this.parse().finally(onfinally); } } @@ -706,7 +726,13 @@ export class PagePromise< ) { super( request, - async (props) => new Page(client, props.response, await defaultParseResponse(props), props.options), + async (props) => + new Page( + client, + props.response, + await defaultParseResponse(props), + props.options, + ) as WithRequestID, ); } diff --git a/tests/responses.test.ts b/tests/responses.test.ts index ef6ba27bf..fbd073a79 100644 --- a/tests/responses.test.ts +++ b/tests/responses.test.ts @@ -1,5 +1,8 @@ -import { createResponseHeaders } from 'openai/core'; +import { APIPromise, createResponseHeaders } from 'openai/core'; +import OpenAI from 'openai/index'; import { Headers } from 'openai/_shims/index'; +import { Response } from 'node-fetch'; +import { compareType } from './utils/typing'; describe('response parsing', () => { // TODO: test unicode characters @@ -23,3 +26,102 @@ describe('response parsing', () => { expect(headers['content-type']).toBe('text/xml, application/json'); }); }); + +describe('request id', () => { + test('types', () => { + compareType>, string>(true); + compareType>, number>(true); + compareType>, null>(true); + compareType>, void>(true); + compareType>, Response>(true); + compareType>, Response>(true); + compareType>, { foo: string } & { _request_id?: string | null }>( + true, + ); + compareType>>, Array<{ foo: string }>>(true); + }); + + test('object response', async () => { + const client = new OpenAI({ + apiKey: 'dummy', + fetch: async () => + new Response(JSON.stringify({ id: 'bar' }), { + headers: { 'x-request-id': 'req_id_xxx', 'content-type': 'application/json' }, + }), + }); + + const rsp = await client.chat.completions.create({ messages: [], model: 'gpt-4' }); + expect(rsp.id).toBe('bar'); + expect(rsp._request_id).toBe('req_id_xxx'); + expect(JSON.stringify(rsp)).toBe('{"id":"bar"}'); + }); + + test('envelope response', async () => { + const promise = new APIPromise<{ data: { foo: string } }>( + (async () => { + return { + response: new Response(JSON.stringify({ data: { foo: 'bar' } }), { + headers: { 'x-request-id': 'req_id_xxx', 'content-type': 'application/json' }, + }), + controller: {} as any, + options: {} as any, + }; + })(), + )._thenUnwrap((d) => d.data); + + const rsp = await promise; + expect(rsp.foo).toBe('bar'); + expect(rsp._request_id).toBe('req_id_xxx'); + }); + + test('page response', async () => { + const client = new OpenAI({ + apiKey: 'dummy', + fetch: async () => + new Response(JSON.stringify({ data: [{ foo: 'bar' }] }), { + headers: { 'x-request-id': 'req_id_xxx', 'content-type': 'application/json' }, + }), + }); + + const page = await client.fineTuning.jobs.list(); + expect(page.data).toMatchObject([{ foo: 'bar' }]); + expect((page as any)._request_id).toBeUndefined(); + }); + + test('array response', async () => { + const promise = new APIPromise>( + (async () => { + return { + response: new Response(JSON.stringify([{ foo: 'bar' }]), { + headers: { 'x-request-id': 'req_id_xxx', 'content-type': 'application/json' }, + }), + controller: {} as any, + options: {} as any, + }; + })(), + ); + + const rsp = await promise; + expect(rsp.length).toBe(1); + expect(rsp[0]).toMatchObject({ foo: 'bar' }); + expect((rsp as any)._request_id).toBeUndefined(); + }); + + test('string response', async () => { + const promise = new APIPromise( + (async () => { + return { + response: new Response('hello world', { + headers: { 'x-request-id': 'req_id_xxx', 'content-type': 'application/text' }, + }), + controller: {} as any, + options: {} as any, + }; + })(), + ); + + const result = await promise; + expect(result).toBe('hello world'); + expect((result as any)._request_id).toBeUndefined(); + }); +}); diff --git a/tests/utils/typing.ts b/tests/utils/typing.ts new file mode 100644 index 000000000..4a791d2a7 --- /dev/null +++ b/tests/utils/typing.ts @@ -0,0 +1,9 @@ +type Equal = (() => T extends X ? 1 : 2) extends () => T extends Y ? 1 : 2 ? true : false; + +export const expectType = (_expression: T): void => { + return; +}; + +export const compareType = (_expression: Equal): void => { + return; +}; From 1eb4e124ef635488de9cd3001cd94aad6c9a6f24 Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Tue, 17 Sep 2024 12:20:35 +0000 Subject: [PATCH 546/725] chore(internal): add query string encoder (#1079) --- package.json | 5 +- scripts/utils/denoify.ts | 3 - src/index.ts | 4 +- src/internal/qs/LICENSE.md | 13 + src/internal/qs/README.md | 3 + src/internal/qs/formats.ts | 9 + src/internal/qs/index.ts | 13 + src/internal/qs/stringify.ts | 388 ++++++ src/internal/qs/types.ts | 71 ++ src/internal/qs/utils.ts | 265 ++++ tests/qs/empty-keys-cases.ts | 271 +++++ tests/qs/stringify.test.ts | 2232 ++++++++++++++++++++++++++++++++++ tests/qs/utils.test.ts | 169 +++ yarn.lock | 144 +-- 14 files changed, 3462 insertions(+), 128 deletions(-) create mode 100644 src/internal/qs/LICENSE.md create mode 100644 src/internal/qs/README.md create mode 100644 src/internal/qs/formats.ts create mode 100644 src/internal/qs/index.ts create mode 100644 src/internal/qs/stringify.ts create mode 100644 src/internal/qs/types.ts create mode 100644 src/internal/qs/utils.ts create mode 100644 tests/qs/empty-keys-cases.ts create mode 100644 tests/qs/stringify.test.ts create mode 100644 tests/qs/utils.test.ts diff --git a/package.json b/package.json index 86e594c2c..a65c9d6ba 100644 --- a/package.json +++ b/package.json @@ -26,13 +26,11 @@ "dependencies": { "@types/node": "^18.11.18", "@types/node-fetch": "^2.6.4", - "@types/qs": "^6.9.15", "abort-controller": "^3.0.0", "agentkeepalive": "^4.2.1", "form-data-encoder": "1.7.2", "formdata-node": "^4.3.2", - "node-fetch": "^2.6.7", - "qs": "^6.10.3" + "node-fetch": "^2.6.7" }, "devDependencies": { "@swc/core": "^1.3.102", @@ -43,6 +41,7 @@ "eslint": "^8.49.0", "eslint-plugin-prettier": "^5.0.1", "eslint-plugin-unused-imports": "^3.0.0", + "iconv-lite": "^0.6.3", "fast-check": "^3.22.0", "jest": "^29.4.0", "prettier": "^3.0.0", diff --git a/scripts/utils/denoify.ts b/scripts/utils/denoify.ts index 742bc069f..52705802a 100644 --- a/scripts/utils/denoify.ts +++ b/scripts/utils/denoify.ts @@ -102,9 +102,6 @@ async function denoify() { } else if (specifier.startsWith(pkgName + '/')) { // convert self-referencing module specifiers to relative paths specifier = file.getRelativePathAsModuleSpecifierTo(denoDir + specifier.substring(pkgName.length)); - } else if (specifier === 'qs') { - decl.replaceWithText(`import { qs } from "https://deno.land/x/deno_qs@0.0.1/mod.ts"`); - continue; } else if (!decl.isModuleSpecifierRelative()) { specifier = `npm:${specifier}`; } diff --git a/src/index.ts b/src/index.ts index 36064286d..b52406f6c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,10 +2,8 @@ import * as Errors from './error'; import * as Uploads from './uploads'; - import { type Agent, type RequestInit } from './_shims/index'; -import * as qs from 'qs'; - +import * as qs from './internal/qs'; import * as Core from './core'; import * as Pagination from './pagination'; import * as API from './resources/index'; diff --git a/src/internal/qs/LICENSE.md b/src/internal/qs/LICENSE.md new file mode 100644 index 000000000..3fda1573b --- /dev/null +++ b/src/internal/qs/LICENSE.md @@ -0,0 +1,13 @@ +BSD 3-Clause License + +Copyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/puruvj/neoqs/graphs/contributors) All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/src/internal/qs/README.md b/src/internal/qs/README.md new file mode 100644 index 000000000..67ae04ecd --- /dev/null +++ b/src/internal/qs/README.md @@ -0,0 +1,3 @@ +# qs + +This is a vendored version of [neoqs](https://github.com/PuruVJ/neoqs) which is a TypeScript rewrite of [qs](https://github.com/ljharb/qs), a query string library. diff --git a/src/internal/qs/formats.ts b/src/internal/qs/formats.ts new file mode 100644 index 000000000..1cf9e2cde --- /dev/null +++ b/src/internal/qs/formats.ts @@ -0,0 +1,9 @@ +import type { Format } from './types'; + +export const default_format: Format = 'RFC3986'; +export const formatters: Record string> = { + RFC1738: (v: PropertyKey) => String(v).replace(/%20/g, '+'), + RFC3986: (v: PropertyKey) => String(v), +}; +export const RFC1738 = 'RFC1738'; +export const RFC3986 = 'RFC3986'; diff --git a/src/internal/qs/index.ts b/src/internal/qs/index.ts new file mode 100644 index 000000000..c3a3620d0 --- /dev/null +++ b/src/internal/qs/index.ts @@ -0,0 +1,13 @@ +import { default_format, formatters, RFC1738, RFC3986 } from './formats'; + +const formats = { + formatters, + RFC1738, + RFC3986, + default: default_format, +}; + +export { stringify } from './stringify'; +export { formats }; + +export type { DefaultDecoder, DefaultEncoder, Format, ParseOptions, StringifyOptions } from './types'; diff --git a/src/internal/qs/stringify.ts b/src/internal/qs/stringify.ts new file mode 100644 index 000000000..d0c450341 --- /dev/null +++ b/src/internal/qs/stringify.ts @@ -0,0 +1,388 @@ +import { encode, is_buffer, maybe_map } from './utils'; +import { default_format, formatters } from './formats'; +import type { NonNullableProperties, StringifyOptions } from './types'; + +const has = Object.prototype.hasOwnProperty; + +const array_prefix_generators = { + brackets(prefix: PropertyKey) { + return String(prefix) + '[]'; + }, + comma: 'comma', + indices(prefix: PropertyKey, key: string) { + return String(prefix) + '[' + key + ']'; + }, + repeat(prefix: PropertyKey) { + return String(prefix); + }, +}; + +const is_array = Array.isArray; +const push = Array.prototype.push; +const push_to_array = function (arr: any[], value_or_array: any) { + push.apply(arr, is_array(value_or_array) ? value_or_array : [value_or_array]); +}; + +const to_ISO = Date.prototype.toISOString; + +const defaults = { + addQueryPrefix: false, + allowDots: false, + allowEmptyArrays: false, + arrayFormat: 'indices', + charset: 'utf-8', + charsetSentinel: false, + delimiter: '&', + encode: true, + encodeDotInKeys: false, + encoder: encode, + encodeValuesOnly: false, + format: default_format, + formatter: formatters[default_format], + /** @deprecated */ + indices: false, + serializeDate(date) { + return to_ISO.call(date); + }, + skipNulls: false, + strictNullHandling: false, +} as NonNullableProperties; + +function is_non_nullish_primitive(v: unknown): v is string | number | boolean | symbol | bigint { + return ( + typeof v === 'string' || + typeof v === 'number' || + typeof v === 'boolean' || + typeof v === 'symbol' || + typeof v === 'bigint' + ); +} + +const sentinel = {}; + +function inner_stringify( + object: any, + prefix: PropertyKey, + generateArrayPrefix: StringifyOptions['arrayFormat'] | ((prefix: string, key: string) => string), + commaRoundTrip: boolean, + allowEmptyArrays: boolean, + strictNullHandling: boolean, + skipNulls: boolean, + encodeDotInKeys: boolean, + encoder: StringifyOptions['encoder'], + filter: StringifyOptions['filter'], + sort: StringifyOptions['sort'], + allowDots: StringifyOptions['allowDots'], + serializeDate: StringifyOptions['serializeDate'], + format: StringifyOptions['format'], + formatter: StringifyOptions['formatter'], + encodeValuesOnly: boolean, + charset: StringifyOptions['charset'], + sideChannel: WeakMap, +) { + let obj = object; + + let tmp_sc = sideChannel; + let step = 0; + let find_flag = false; + while ((tmp_sc = tmp_sc.get(sentinel)) !== void undefined && !find_flag) { + // Where object last appeared in the ref tree + const pos = tmp_sc.get(object); + step += 1; + if (typeof pos !== 'undefined') { + if (pos === step) { + throw new RangeError('Cyclic object value'); + } else { + find_flag = true; // Break while + } + } + if (typeof tmp_sc.get(sentinel) === 'undefined') { + step = 0; + } + } + + if (typeof filter === 'function') { + obj = filter(prefix, obj); + } else if (obj instanceof Date) { + obj = serializeDate?.(obj); + } else if (generateArrayPrefix === 'comma' && is_array(obj)) { + obj = maybe_map(obj, function (value) { + if (value instanceof Date) { + return serializeDate?.(value); + } + return value; + }); + } + + if (obj === null) { + if (strictNullHandling) { + return encoder && !encodeValuesOnly ? + // @ts-expect-error + encoder(prefix, defaults.encoder, charset, 'key', format) + : prefix; + } + + obj = ''; + } + + if (is_non_nullish_primitive(obj) || is_buffer(obj)) { + if (encoder) { + const key_value = + encodeValuesOnly ? prefix + // @ts-expect-error + : encoder(prefix, defaults.encoder, charset, 'key', format); + return [ + formatter?.(key_value) + + '=' + + // @ts-expect-error + formatter?.(encoder(obj, defaults.encoder, charset, 'value', format)), + ]; + } + return [formatter?.(prefix) + '=' + formatter?.(String(obj))]; + } + + const values: string[] = []; + + if (typeof obj === 'undefined') { + return values; + } + + let obj_keys; + if (generateArrayPrefix === 'comma' && is_array(obj)) { + // we need to join elements in + if (encodeValuesOnly && encoder) { + // @ts-expect-error values only + obj = maybe_map(obj, encoder); + } + obj_keys = [{ value: obj.length > 0 ? obj.join(',') || null : void undefined }]; + } else if (is_array(filter)) { + obj_keys = filter; + } else { + const keys = Object.keys(obj); + obj_keys = sort ? keys.sort(sort) : keys; + } + + const encoded_prefix = encodeDotInKeys ? String(prefix).replace(/\./g, '%2E') : String(prefix); + + const adjusted_prefix = + commaRoundTrip && is_array(obj) && obj.length === 1 ? encoded_prefix + '[]' : encoded_prefix; + + if (allowEmptyArrays && is_array(obj) && obj.length === 0) { + return adjusted_prefix + '[]'; + } + + for (let j = 0; j < obj_keys.length; ++j) { + const key = obj_keys[j]; + const value = + // @ts-ignore + typeof key === 'object' && typeof key.value !== 'undefined' ? key.value : obj[key as any]; + + if (skipNulls && value === null) { + continue; + } + + // @ts-ignore + const encoded_key = allowDots && encodeDotInKeys ? (key as any).replace(/\./g, '%2E') : key; + const key_prefix = + is_array(obj) ? + typeof generateArrayPrefix === 'function' ? + generateArrayPrefix(adjusted_prefix, encoded_key) + : adjusted_prefix + : adjusted_prefix + (allowDots ? '.' + encoded_key : '[' + encoded_key + ']'); + + sideChannel.set(object, step); + const valueSideChannel = new WeakMap(); + valueSideChannel.set(sentinel, sideChannel); + push_to_array( + values, + inner_stringify( + value, + key_prefix, + generateArrayPrefix, + commaRoundTrip, + allowEmptyArrays, + strictNullHandling, + skipNulls, + encodeDotInKeys, + // @ts-expect-error + generateArrayPrefix === 'comma' && encodeValuesOnly && is_array(obj) ? null : encoder, + filter, + sort, + allowDots, + serializeDate, + format, + formatter, + encodeValuesOnly, + charset, + valueSideChannel, + ), + ); + } + + return values; +} + +function normalize_stringify_options( + opts: StringifyOptions = defaults, +): NonNullableProperties { + if (typeof opts.allowEmptyArrays !== 'undefined' && typeof opts.allowEmptyArrays !== 'boolean') { + throw new TypeError('`allowEmptyArrays` option can only be `true` or `false`, when provided'); + } + + if (typeof opts.encodeDotInKeys !== 'undefined' && typeof opts.encodeDotInKeys !== 'boolean') { + throw new TypeError('`encodeDotInKeys` option can only be `true` or `false`, when provided'); + } + + if (opts.encoder !== null && typeof opts.encoder !== 'undefined' && typeof opts.encoder !== 'function') { + throw new TypeError('Encoder has to be a function.'); + } + + const charset = opts.charset || defaults.charset; + if (typeof opts.charset !== 'undefined' && opts.charset !== 'utf-8' && opts.charset !== 'iso-8859-1') { + throw new TypeError('The charset option must be either utf-8, iso-8859-1, or undefined'); + } + + let format = default_format; + if (typeof opts.format !== 'undefined') { + if (!has.call(formatters, opts.format)) { + throw new TypeError('Unknown format option provided.'); + } + format = opts.format; + } + const formatter = formatters[format]; + + let filter = defaults.filter; + if (typeof opts.filter === 'function' || is_array(opts.filter)) { + filter = opts.filter; + } + + let arrayFormat: StringifyOptions['arrayFormat']; + if (opts.arrayFormat && opts.arrayFormat in array_prefix_generators) { + arrayFormat = opts.arrayFormat; + } else if ('indices' in opts) { + arrayFormat = opts.indices ? 'indices' : 'repeat'; + } else { + arrayFormat = defaults.arrayFormat; + } + + if ('commaRoundTrip' in opts && typeof opts.commaRoundTrip !== 'boolean') { + throw new TypeError('`commaRoundTrip` must be a boolean, or absent'); + } + + const allowDots = + typeof opts.allowDots === 'undefined' ? + !!opts.encodeDotInKeys === true ? + true + : defaults.allowDots + : !!opts.allowDots; + + return { + addQueryPrefix: typeof opts.addQueryPrefix === 'boolean' ? opts.addQueryPrefix : defaults.addQueryPrefix, + // @ts-ignore + allowDots: allowDots, + allowEmptyArrays: + typeof opts.allowEmptyArrays === 'boolean' ? !!opts.allowEmptyArrays : defaults.allowEmptyArrays, + arrayFormat: arrayFormat, + charset: charset, + charsetSentinel: + typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel, + commaRoundTrip: !!opts.commaRoundTrip, + delimiter: typeof opts.delimiter === 'undefined' ? defaults.delimiter : opts.delimiter, + encode: typeof opts.encode === 'boolean' ? opts.encode : defaults.encode, + encodeDotInKeys: + typeof opts.encodeDotInKeys === 'boolean' ? opts.encodeDotInKeys : defaults.encodeDotInKeys, + encoder: typeof opts.encoder === 'function' ? opts.encoder : defaults.encoder, + encodeValuesOnly: + typeof opts.encodeValuesOnly === 'boolean' ? opts.encodeValuesOnly : defaults.encodeValuesOnly, + filter: filter, + format: format, + formatter: formatter, + serializeDate: typeof opts.serializeDate === 'function' ? opts.serializeDate : defaults.serializeDate, + skipNulls: typeof opts.skipNulls === 'boolean' ? opts.skipNulls : defaults.skipNulls, + // @ts-expect-error + sort: typeof opts.sort === 'function' ? opts.sort : null, + strictNullHandling: + typeof opts.strictNullHandling === 'boolean' ? opts.strictNullHandling : defaults.strictNullHandling, + }; +} + +export function stringify(object: any, opts: StringifyOptions = {}) { + let obj = object; + const options = normalize_stringify_options(opts); + + let obj_keys: PropertyKey[] | undefined; + let filter; + + if (typeof options.filter === 'function') { + filter = options.filter; + obj = filter('', obj); + } else if (is_array(options.filter)) { + filter = options.filter; + obj_keys = filter; + } + + const keys: string[] = []; + + if (typeof obj !== 'object' || obj === null) { + return ''; + } + + const generateArrayPrefix = array_prefix_generators[options.arrayFormat]; + const commaRoundTrip = generateArrayPrefix === 'comma' && options.commaRoundTrip; + + if (!obj_keys) { + obj_keys = Object.keys(obj); + } + + if (options.sort) { + obj_keys.sort(options.sort); + } + + const sideChannel = new WeakMap(); + for (let i = 0; i < obj_keys.length; ++i) { + const key = obj_keys[i]!; + + if (options.skipNulls && obj[key] === null) { + continue; + } + push_to_array( + keys, + inner_stringify( + obj[key], + key, + // @ts-expect-error + generateArrayPrefix, + commaRoundTrip, + options.allowEmptyArrays, + options.strictNullHandling, + options.skipNulls, + options.encodeDotInKeys, + options.encode ? options.encoder : null, + options.filter, + options.sort, + options.allowDots, + options.serializeDate, + options.format, + options.formatter, + options.encodeValuesOnly, + options.charset, + sideChannel, + ), + ); + } + + const joined = keys.join(options.delimiter); + let prefix = options.addQueryPrefix === true ? '?' : ''; + + if (options.charsetSentinel) { + if (options.charset === 'iso-8859-1') { + // encodeURIComponent('✓'), the "numeric entity" representation of a checkmark + prefix += 'utf8=%26%2310003%3B&'; + } else { + // encodeURIComponent('✓') + prefix += 'utf8=%E2%9C%93&'; + } + } + + return joined.length > 0 ? prefix + joined : ''; +} diff --git a/src/internal/qs/types.ts b/src/internal/qs/types.ts new file mode 100644 index 000000000..7c28dbb46 --- /dev/null +++ b/src/internal/qs/types.ts @@ -0,0 +1,71 @@ +export type Format = 'RFC1738' | 'RFC3986'; + +export type DefaultEncoder = (str: any, defaultEncoder?: any, charset?: string) => string; +export type DefaultDecoder = (str: string, decoder?: any, charset?: string) => string; + +export type BooleanOptional = boolean | undefined; + +export type StringifyBaseOptions = { + delimiter?: string; + allowDots?: boolean; + encodeDotInKeys?: boolean; + strictNullHandling?: boolean; + skipNulls?: boolean; + encode?: boolean; + encoder?: ( + str: any, + defaultEncoder: DefaultEncoder, + charset: string, + type: 'key' | 'value', + format?: Format, + ) => string; + filter?: Array | ((prefix: PropertyKey, value: any) => any); + arrayFormat?: 'indices' | 'brackets' | 'repeat' | 'comma'; + indices?: boolean; + sort?: ((a: PropertyKey, b: PropertyKey) => number) | null; + serializeDate?: (d: Date) => string; + format?: 'RFC1738' | 'RFC3986'; + formatter?: (str: PropertyKey) => string; + encodeValuesOnly?: boolean; + addQueryPrefix?: boolean; + charset?: 'utf-8' | 'iso-8859-1'; + charsetSentinel?: boolean; + allowEmptyArrays?: boolean; + commaRoundTrip?: boolean; +}; + +export type StringifyOptions = StringifyBaseOptions; + +export type ParseBaseOptions = { + comma?: boolean; + delimiter?: string | RegExp; + depth?: number | false; + decoder?: (str: string, defaultDecoder: DefaultDecoder, charset: string, type: 'key' | 'value') => any; + arrayLimit?: number; + parseArrays?: boolean; + plainObjects?: boolean; + allowPrototypes?: boolean; + allowSparse?: boolean; + parameterLimit?: number; + strictDepth?: boolean; + strictNullHandling?: boolean; + ignoreQueryPrefix?: boolean; + charset?: 'utf-8' | 'iso-8859-1'; + charsetSentinel?: boolean; + interpretNumericEntities?: boolean; + allowEmptyArrays?: boolean; + duplicates?: 'combine' | 'first' | 'last'; + allowDots?: boolean; + decodeDotInKeys?: boolean; +}; + +export type ParseOptions = ParseBaseOptions; + +export type ParsedQs = { + [key: string]: undefined | string | string[] | ParsedQs | ParsedQs[]; +}; + +// Type to remove null or undefined union from each property +export type NonNullableProperties = { + [K in keyof T]-?: Exclude; +}; diff --git a/src/internal/qs/utils.ts b/src/internal/qs/utils.ts new file mode 100644 index 000000000..113b18fb9 --- /dev/null +++ b/src/internal/qs/utils.ts @@ -0,0 +1,265 @@ +import { RFC1738 } from './formats'; +import type { DefaultEncoder, Format } from './types'; + +const has = Object.prototype.hasOwnProperty; +const is_array = Array.isArray; + +const hex_table = (() => { + const array = []; + for (let i = 0; i < 256; ++i) { + array.push('%' + ((i < 16 ? '0' : '') + i.toString(16)).toUpperCase()); + } + + return array; +})(); + +function compact_queue>(queue: Array<{ obj: T; prop: string }>) { + while (queue.length > 1) { + const item = queue.pop(); + if (!item) continue; + + const obj = item.obj[item.prop]; + + if (is_array(obj)) { + const compacted: unknown[] = []; + + for (let j = 0; j < obj.length; ++j) { + if (typeof obj[j] !== 'undefined') { + compacted.push(obj[j]); + } + } + + // @ts-ignore + item.obj[item.prop] = compacted; + } + } +} + +function array_to_object(source: any[], options: { plainObjects: boolean }) { + const obj = options && options.plainObjects ? Object.create(null) : {}; + for (let i = 0; i < source.length; ++i) { + if (typeof source[i] !== 'undefined') { + obj[i] = source[i]; + } + } + + return obj; +} + +export function merge( + target: any, + source: any, + options: { plainObjects?: boolean; allowPrototypes?: boolean } = {}, +) { + if (!source) { + return target; + } + + if (typeof source !== 'object') { + if (is_array(target)) { + target.push(source); + } else if (target && typeof target === 'object') { + if ( + (options && (options.plainObjects || options.allowPrototypes)) || + !has.call(Object.prototype, source) + ) { + target[source] = true; + } + } else { + return [target, source]; + } + + return target; + } + + if (!target || typeof target !== 'object') { + return [target].concat(source); + } + + let mergeTarget = target; + if (is_array(target) && !is_array(source)) { + // @ts-ignore + mergeTarget = array_to_object(target, options); + } + + if (is_array(target) && is_array(source)) { + source.forEach(function (item, i) { + if (has.call(target, i)) { + const targetItem = target[i]; + if (targetItem && typeof targetItem === 'object' && item && typeof item === 'object') { + target[i] = merge(targetItem, item, options); + } else { + target.push(item); + } + } else { + target[i] = item; + } + }); + return target; + } + + return Object.keys(source).reduce(function (acc, key) { + const value = source[key]; + + if (has.call(acc, key)) { + acc[key] = merge(acc[key], value, options); + } else { + acc[key] = value; + } + return acc; + }, mergeTarget); +} + +export function assign_single_source(target: any, source: any) { + return Object.keys(source).reduce(function (acc, key) { + acc[key] = source[key]; + return acc; + }, target); +} + +export function decode(str: string, _: any, charset: string) { + const strWithoutPlus = str.replace(/\+/g, ' '); + if (charset === 'iso-8859-1') { + // unescape never throws, no try...catch needed: + return strWithoutPlus.replace(/%[0-9a-f]{2}/gi, unescape); + } + // utf-8 + try { + return decodeURIComponent(strWithoutPlus); + } catch (e) { + return strWithoutPlus; + } +} + +const limit = 1024; + +export const encode: ( + str: any, + defaultEncoder: DefaultEncoder, + charset: string, + type: 'key' | 'value', + format: Format, +) => string = (str, _defaultEncoder, charset, _kind, format: Format) => { + // This code was originally written by Brian White for the io.js core querystring library. + // It has been adapted here for stricter adherence to RFC 3986 + if (str.length === 0) { + return str; + } + + let string = str; + if (typeof str === 'symbol') { + string = Symbol.prototype.toString.call(str); + } else if (typeof str !== 'string') { + string = String(str); + } + + if (charset === 'iso-8859-1') { + return escape(string).replace(/%u[0-9a-f]{4}/gi, function ($0) { + return '%26%23' + parseInt($0.slice(2), 16) + '%3B'; + }); + } + + let out = ''; + for (let j = 0; j < string.length; j += limit) { + const segment = string.length >= limit ? string.slice(j, j + limit) : string; + const arr = []; + + for (let i = 0; i < segment.length; ++i) { + let c = segment.charCodeAt(i); + if ( + c === 0x2d || // - + c === 0x2e || // . + c === 0x5f || // _ + c === 0x7e || // ~ + (c >= 0x30 && c <= 0x39) || // 0-9 + (c >= 0x41 && c <= 0x5a) || // a-z + (c >= 0x61 && c <= 0x7a) || // A-Z + (format === RFC1738 && (c === 0x28 || c === 0x29)) // ( ) + ) { + arr[arr.length] = segment.charAt(i); + continue; + } + + if (c < 0x80) { + arr[arr.length] = hex_table[c]; + continue; + } + + if (c < 0x800) { + arr[arr.length] = hex_table[0xc0 | (c >> 6)]! + hex_table[0x80 | (c & 0x3f)]; + continue; + } + + if (c < 0xd800 || c >= 0xe000) { + arr[arr.length] = + hex_table[0xe0 | (c >> 12)]! + hex_table[0x80 | ((c >> 6) & 0x3f)] + hex_table[0x80 | (c & 0x3f)]; + continue; + } + + i += 1; + c = 0x10000 + (((c & 0x3ff) << 10) | (segment.charCodeAt(i) & 0x3ff)); + + arr[arr.length] = + hex_table[0xf0 | (c >> 18)]! + + hex_table[0x80 | ((c >> 12) & 0x3f)] + + hex_table[0x80 | ((c >> 6) & 0x3f)] + + hex_table[0x80 | (c & 0x3f)]; + } + + out += arr.join(''); + } + + return out; +}; + +export function compact(value: any) { + const queue = [{ obj: { o: value }, prop: 'o' }]; + const refs = []; + + for (let i = 0; i < queue.length; ++i) { + const item = queue[i]; + // @ts-ignore + const obj = item.obj[item.prop]; + + const keys = Object.keys(obj); + for (let j = 0; j < keys.length; ++j) { + const key = keys[j]!; + const val = obj[key]; + if (typeof val === 'object' && val !== null && refs.indexOf(val) === -1) { + queue.push({ obj: obj, prop: key }); + refs.push(val); + } + } + } + + compact_queue(queue); + + return value; +} + +export function is_regexp(obj: any) { + return Object.prototype.toString.call(obj) === '[object RegExp]'; +} + +export function is_buffer(obj: any) { + if (!obj || typeof obj !== 'object') { + return false; + } + + return !!(obj.constructor && obj.constructor.isBuffer && obj.constructor.isBuffer(obj)); +} + +export function combine(a: any, b: any) { + return [].concat(a, b); +} + +export function maybe_map(val: T[], fn: (v: T) => T) { + if (is_array(val)) { + const mapped = []; + for (let i = 0; i < val.length; i += 1) { + mapped.push(fn(val[i]!)); + } + return mapped; + } + return fn(val); +} diff --git a/tests/qs/empty-keys-cases.ts b/tests/qs/empty-keys-cases.ts new file mode 100644 index 000000000..ea2c1b0a2 --- /dev/null +++ b/tests/qs/empty-keys-cases.ts @@ -0,0 +1,271 @@ +export const empty_test_cases = [ + { + input: '&', + with_empty_keys: {}, + stringify_output: { + brackets: '', + indices: '', + repeat: '', + }, + no_empty_keys: {}, + }, + { + input: '&&', + with_empty_keys: {}, + stringify_output: { + brackets: '', + indices: '', + repeat: '', + }, + no_empty_keys: {}, + }, + { + input: '&=', + with_empty_keys: { '': '' }, + stringify_output: { + brackets: '=', + indices: '=', + repeat: '=', + }, + no_empty_keys: {}, + }, + { + input: '&=&', + with_empty_keys: { '': '' }, + stringify_output: { + brackets: '=', + indices: '=', + repeat: '=', + }, + no_empty_keys: {}, + }, + { + input: '&=&=', + with_empty_keys: { '': ['', ''] }, + stringify_output: { + brackets: '[]=&[]=', + indices: '[0]=&[1]=', + repeat: '=&=', + }, + no_empty_keys: {}, + }, + { + input: '&=&=&', + with_empty_keys: { '': ['', ''] }, + stringify_output: { + brackets: '[]=&[]=', + indices: '[0]=&[1]=', + repeat: '=&=', + }, + no_empty_keys: {}, + }, + { + input: '=', + with_empty_keys: { '': '' }, + no_empty_keys: {}, + stringify_output: { + brackets: '=', + indices: '=', + repeat: '=', + }, + }, + { + input: '=&', + with_empty_keys: { '': '' }, + stringify_output: { + brackets: '=', + indices: '=', + repeat: '=', + }, + no_empty_keys: {}, + }, + { + input: '=&&&', + with_empty_keys: { '': '' }, + stringify_output: { + brackets: '=', + indices: '=', + repeat: '=', + }, + no_empty_keys: {}, + }, + { + input: '=&=&=&', + with_empty_keys: { '': ['', '', ''] }, + stringify_output: { + brackets: '[]=&[]=&[]=', + indices: '[0]=&[1]=&[2]=', + repeat: '=&=&=', + }, + no_empty_keys: {}, + }, + { + input: '=&a[]=b&a[1]=c', + with_empty_keys: { '': '', a: ['b', 'c'] }, + stringify_output: { + brackets: '=&a[]=b&a[]=c', + indices: '=&a[0]=b&a[1]=c', + repeat: '=&a=b&a=c', + }, + no_empty_keys: { a: ['b', 'c'] }, + }, + { + input: '=a', + with_empty_keys: { '': 'a' }, + no_empty_keys: {}, + stringify_output: { + brackets: '=a', + indices: '=a', + repeat: '=a', + }, + }, + { + input: 'a==a', + with_empty_keys: { a: '=a' }, + no_empty_keys: { a: '=a' }, + stringify_output: { + brackets: 'a==a', + indices: 'a==a', + repeat: 'a==a', + }, + }, + { + input: '=&a[]=b', + with_empty_keys: { '': '', a: ['b'] }, + stringify_output: { + brackets: '=&a[]=b', + indices: '=&a[0]=b', + repeat: '=&a=b', + }, + no_empty_keys: { a: ['b'] }, + }, + { + input: '=&a[]=b&a[]=c&a[2]=d', + with_empty_keys: { '': '', a: ['b', 'c', 'd'] }, + stringify_output: { + brackets: '=&a[]=b&a[]=c&a[]=d', + indices: '=&a[0]=b&a[1]=c&a[2]=d', + repeat: '=&a=b&a=c&a=d', + }, + no_empty_keys: { a: ['b', 'c', 'd'] }, + }, + { + input: '=a&=b', + with_empty_keys: { '': ['a', 'b'] }, + stringify_output: { + brackets: '[]=a&[]=b', + indices: '[0]=a&[1]=b', + repeat: '=a&=b', + }, + no_empty_keys: {}, + }, + { + input: '=a&foo=b', + with_empty_keys: { '': 'a', foo: 'b' }, + no_empty_keys: { foo: 'b' }, + stringify_output: { + brackets: '=a&foo=b', + indices: '=a&foo=b', + repeat: '=a&foo=b', + }, + }, + { + input: 'a[]=b&a=c&=', + with_empty_keys: { '': '', a: ['b', 'c'] }, + stringify_output: { + brackets: '=&a[]=b&a[]=c', + indices: '=&a[0]=b&a[1]=c', + repeat: '=&a=b&a=c', + }, + no_empty_keys: { a: ['b', 'c'] }, + }, + { + input: 'a[]=b&a=c&=', + with_empty_keys: { '': '', a: ['b', 'c'] }, + stringify_output: { + brackets: '=&a[]=b&a[]=c', + indices: '=&a[0]=b&a[1]=c', + repeat: '=&a=b&a=c', + }, + no_empty_keys: { a: ['b', 'c'] }, + }, + { + input: 'a[0]=b&a=c&=', + with_empty_keys: { '': '', a: ['b', 'c'] }, + stringify_output: { + brackets: '=&a[]=b&a[]=c', + indices: '=&a[0]=b&a[1]=c', + repeat: '=&a=b&a=c', + }, + no_empty_keys: { a: ['b', 'c'] }, + }, + { + input: 'a=b&a[]=c&=', + with_empty_keys: { '': '', a: ['b', 'c'] }, + stringify_output: { + brackets: '=&a[]=b&a[]=c', + indices: '=&a[0]=b&a[1]=c', + repeat: '=&a=b&a=c', + }, + no_empty_keys: { a: ['b', 'c'] }, + }, + { + input: 'a=b&a[0]=c&=', + with_empty_keys: { '': '', a: ['b', 'c'] }, + stringify_output: { + brackets: '=&a[]=b&a[]=c', + indices: '=&a[0]=b&a[1]=c', + repeat: '=&a=b&a=c', + }, + no_empty_keys: { a: ['b', 'c'] }, + }, + { + input: '[]=a&[]=b& []=1', + with_empty_keys: { '': ['a', 'b'], ' ': ['1'] }, + stringify_output: { + brackets: '[]=a&[]=b& []=1', + indices: '[0]=a&[1]=b& [0]=1', + repeat: '=a&=b& =1', + }, + no_empty_keys: { 0: 'a', 1: 'b', ' ': ['1'] }, + }, + { + input: '[0]=a&[1]=b&a[0]=1&a[1]=2', + with_empty_keys: { '': ['a', 'b'], a: ['1', '2'] }, + no_empty_keys: { 0: 'a', 1: 'b', a: ['1', '2'] }, + stringify_output: { + brackets: '[]=a&[]=b&a[]=1&a[]=2', + indices: '[0]=a&[1]=b&a[0]=1&a[1]=2', + repeat: '=a&=b&a=1&a=2', + }, + }, + { + input: '[deep]=a&[deep]=2', + with_empty_keys: { '': { deep: ['a', '2'] } }, + stringify_output: { + brackets: '[deep][]=a&[deep][]=2', + indices: '[deep][0]=a&[deep][1]=2', + repeat: '[deep]=a&[deep]=2', + }, + no_empty_keys: { deep: ['a', '2'] }, + }, + { + input: '%5B0%5D=a&%5B1%5D=b', + with_empty_keys: { '': ['a', 'b'] }, + stringify_output: { + brackets: '[]=a&[]=b', + indices: '[0]=a&[1]=b', + repeat: '=a&=b', + }, + no_empty_keys: { 0: 'a', 1: 'b' }, + }, +] satisfies { + input: string; + with_empty_keys: Record; + stringify_output: { + brackets: string; + indices: string; + repeat: string; + }; + no_empty_keys: Record; +}[]; diff --git a/tests/qs/stringify.test.ts b/tests/qs/stringify.test.ts new file mode 100644 index 000000000..ab3456824 --- /dev/null +++ b/tests/qs/stringify.test.ts @@ -0,0 +1,2232 @@ +import iconv from 'iconv-lite'; +import { stringify } from 'openai/internal/qs'; +import { encode } from 'openai/internal/qs/utils'; +import { StringifyOptions } from 'openai/internal/qs/types'; +import { empty_test_cases } from './empty-keys-cases'; +import assert from 'assert'; + +describe('stringify()', function () { + test('stringifies a querystring object', function () { + expect(stringify({ a: 'b' })).toBe('a=b'); + expect(stringify({ a: 1 })).toBe('a=1'); + expect(stringify({ a: 1, b: 2 })).toBe('a=1&b=2'); + expect(stringify({ a: 'A_Z' })).toBe('a=A_Z'); + expect(stringify({ a: '€' })).toBe('a=%E2%82%AC'); + expect(stringify({ a: '' })).toBe('a=%EE%80%80'); + expect(stringify({ a: 'א' })).toBe('a=%D7%90'); + expect(stringify({ a: '𐐷' })).toBe('a=%F0%90%90%B7'); + }); + + test('stringifies falsy values', function () { + expect(stringify(undefined)).toBe(''); + expect(stringify(null)).toBe(''); + expect(stringify(null, { strictNullHandling: true })).toBe(''); + expect(stringify(false)).toBe(''); + expect(stringify(0)).toBe(''); + }); + + test('stringifies symbols', function () { + expect(stringify(Symbol.iterator)).toBe(''); + expect(stringify([Symbol.iterator])).toBe('0=Symbol%28Symbol.iterator%29'); + expect(stringify({ a: Symbol.iterator })).toBe('a=Symbol%28Symbol.iterator%29'); + expect(stringify({ a: [Symbol.iterator] }, { encodeValuesOnly: true, arrayFormat: 'brackets' })).toBe( + 'a[]=Symbol%28Symbol.iterator%29', + ); + }); + + test('stringifies bigints', function () { + var three = BigInt(3); + // @ts-expect-error + var encodeWithN = function (value, defaultEncoder, charset) { + var result = defaultEncoder(value, defaultEncoder, charset); + return typeof value === 'bigint' ? result + 'n' : result; + }; + + expect(stringify(three)).toBe(''); + expect(stringify([three])).toBe('0=3'); + expect(stringify([three], { encoder: encodeWithN })).toBe('0=3n'); + expect(stringify({ a: three })).toBe('a=3'); + expect(stringify({ a: three }, { encoder: encodeWithN })).toBe('a=3n'); + expect(stringify({ a: [three] }, { encodeValuesOnly: true, arrayFormat: 'brackets' })).toBe('a[]=3'); + expect( + stringify({ a: [three] }, { encodeValuesOnly: true, encoder: encodeWithN, arrayFormat: 'brackets' }), + ).toBe('a[]=3n'); + }); + + test('encodes dot in key of object when encodeDotInKeys and allowDots is provided', function () { + expect( + stringify({ 'name.obj': { first: 'John', last: 'Doe' } }, { allowDots: false, encodeDotInKeys: false }), + ).toBe('name.obj%5Bfirst%5D=John&name.obj%5Blast%5D=Doe'); + expect( + stringify({ 'name.obj': { first: 'John', last: 'Doe' } }, { allowDots: true, encodeDotInKeys: false }), + ).toBe('name.obj.first=John&name.obj.last=Doe'); + expect( + stringify({ 'name.obj': { first: 'John', last: 'Doe' } }, { allowDots: false, encodeDotInKeys: true }), + ).toBe('name%252Eobj%5Bfirst%5D=John&name%252Eobj%5Blast%5D=Doe'); + expect( + stringify({ 'name.obj': { first: 'John', last: 'Doe' } }, { allowDots: true, encodeDotInKeys: true }), + ).toBe('name%252Eobj.first=John&name%252Eobj.last=Doe'); + + // st.equal( + // stringify( + // { 'name.obj.subobject': { 'first.godly.name': 'John', last: 'Doe' } }, + // { allowDots: false, encodeDotInKeys: false }, + // ), + // 'name.obj.subobject%5Bfirst.godly.name%5D=John&name.obj.subobject%5Blast%5D=Doe', + // 'with allowDots false and encodeDotInKeys false', + // ); + // st.equal( + // stringify( + // { 'name.obj.subobject': { 'first.godly.name': 'John', last: 'Doe' } }, + // { allowDots: true, encodeDotInKeys: false }, + // ), + // 'name.obj.subobject.first.godly.name=John&name.obj.subobject.last=Doe', + // 'with allowDots false and encodeDotInKeys false', + // ); + // st.equal( + // stringify( + // { 'name.obj.subobject': { 'first.godly.name': 'John', last: 'Doe' } }, + // { allowDots: false, encodeDotInKeys: true }, + // ), + // 'name%252Eobj%252Esubobject%5Bfirst.godly.name%5D=John&name%252Eobj%252Esubobject%5Blast%5D=Doe', + // 'with allowDots false and encodeDotInKeys true', + // ); + // st.equal( + // stringify( + // { 'name.obj.subobject': { 'first.godly.name': 'John', last: 'Doe' } }, + // { allowDots: true, encodeDotInKeys: true }, + // ), + // 'name%252Eobj%252Esubobject.first%252Egodly%252Ename=John&name%252Eobj%252Esubobject.last=Doe', + // 'with allowDots true and encodeDotInKeys true', + // ); + expect( + stringify( + { 'name.obj.subobject': { 'first.godly.name': 'John', last: 'Doe' } }, + { allowDots: false, encodeDotInKeys: false }, + ), + ).toBe('name.obj.subobject%5Bfirst.godly.name%5D=John&name.obj.subobject%5Blast%5D=Doe'); + expect( + stringify( + { 'name.obj.subobject': { 'first.godly.name': 'John', last: 'Doe' } }, + { allowDots: true, encodeDotInKeys: false }, + ), + ).toBe('name.obj.subobject.first.godly.name=John&name.obj.subobject.last=Doe'); + expect( + stringify( + { 'name.obj.subobject': { 'first.godly.name': 'John', last: 'Doe' } }, + { allowDots: false, encodeDotInKeys: true }, + ), + ).toBe('name%252Eobj%252Esubobject%5Bfirst.godly.name%5D=John&name%252Eobj%252Esubobject%5Blast%5D=Doe'); + expect( + stringify( + { 'name.obj.subobject': { 'first.godly.name': 'John', last: 'Doe' } }, + { allowDots: true, encodeDotInKeys: true }, + ), + ).toBe('name%252Eobj%252Esubobject.first%252Egodly%252Ename=John&name%252Eobj%252Esubobject.last=Doe'); + }); + + test('should encode dot in key of object, and automatically set allowDots to `true` when encodeDotInKeys is true and allowDots in undefined', function () { + // st.equal( + // stringify( + // { 'name.obj.subobject': { 'first.godly.name': 'John', last: 'Doe' } }, + // { encodeDotInKeys: true }, + // ), + // 'name%252Eobj%252Esubobject.first%252Egodly%252Ename=John&name%252Eobj%252Esubobject.last=Doe', + // 'with allowDots undefined and encodeDotInKeys true', + // ); + expect( + stringify( + { 'name.obj.subobject': { 'first.godly.name': 'John', last: 'Doe' } }, + { encodeDotInKeys: true }, + ), + ).toBe('name%252Eobj%252Esubobject.first%252Egodly%252Ename=John&name%252Eobj%252Esubobject.last=Doe'); + }); + + test('should encode dot in key of object when encodeDotInKeys and allowDots is provided, and nothing else when encodeValuesOnly is provided', function () { + // st.equal( + // stringify( + // { 'name.obj': { first: 'John', last: 'Doe' } }, + // { + // encodeDotInKeys: true, + // allowDots: true, + // encodeValuesOnly: true, + // }, + // ), + // 'name%2Eobj.first=John&name%2Eobj.last=Doe', + // ); + expect( + stringify( + { 'name.obj': { first: 'John', last: 'Doe' } }, + { + encodeDotInKeys: true, + allowDots: true, + encodeValuesOnly: true, + }, + ), + ).toBe('name%2Eobj.first=John&name%2Eobj.last=Doe'); + + // st.equal( + // stringify( + // { 'name.obj.subobject': { 'first.godly.name': 'John', last: 'Doe' } }, + // { allowDots: true, encodeDotInKeys: true, encodeValuesOnly: true }, + // ), + // 'name%2Eobj%2Esubobject.first%2Egodly%2Ename=John&name%2Eobj%2Esubobject.last=Doe', + // ); + expect( + stringify( + { 'name.obj.subobject': { 'first.godly.name': 'John', last: 'Doe' } }, + { allowDots: true, encodeDotInKeys: true, encodeValuesOnly: true }, + ), + ).toBe('name%2Eobj%2Esubobject.first%2Egodly%2Ename=John&name%2Eobj%2Esubobject.last=Doe'); + }); + + test('throws when `commaRoundTrip` is not a boolean', function () { + // st['throws']( + // function () { + // stringify({}, { commaRoundTrip: 'not a boolean' }); + // }, + // TypeError, + // 'throws when `commaRoundTrip` is not a boolean', + // ); + expect(() => { + // @ts-expect-error + stringify({}, { commaRoundTrip: 'not a boolean' }); + }).toThrow(TypeError); + }); + + test('throws when `encodeDotInKeys` is not a boolean', function () { + // st['throws'](function () { + // stringify({ a: [], b: 'zz' }, { encodeDotInKeys: 'foobar' }); + // }, TypeError); + expect(() => { + // @ts-expect-error + stringify({ a: [], b: 'zz' }, { encodeDotInKeys: 'foobar' }); + }).toThrow(TypeError); + + // st['throws'](function () { + // stringify({ a: [], b: 'zz' }, { encodeDotInKeys: 0 }); + // }, TypeError); + expect(() => { + // @ts-expect-error + stringify({ a: [], b: 'zz' }, { encodeDotInKeys: 0 }); + }).toThrow(TypeError); + + // st['throws'](function () { + // stringify({ a: [], b: 'zz' }, { encodeDotInKeys: NaN }); + // }, TypeError); + expect(() => { + // @ts-expect-error + stringify({ a: [], b: 'zz' }, { encodeDotInKeys: NaN }); + }).toThrow(TypeError); + + // st['throws'](function () { + // stringify({ a: [], b: 'zz' }, { encodeDotInKeys: null }); + // }, TypeError); + expect(() => { + // @ts-expect-error + stringify({ a: [], b: 'zz' }, { encodeDotInKeys: null }); + }).toThrow(TypeError); + }); + + test('adds query prefix', function () { + // st.equal(stringify({ a: 'b' }, { addQueryPrefix: true }), '?a=b'); + expect(stringify({ a: 'b' }, { addQueryPrefix: true })).toBe('?a=b'); + }); + + test('with query prefix, outputs blank string given an empty object', function () { + // st.equal(stringify({}, { addQueryPrefix: true }), ''); + expect(stringify({}, { addQueryPrefix: true })).toBe(''); + }); + + test('stringifies nested falsy values', function () { + // st.equal(stringify({ a: { b: { c: null } } }), 'a%5Bb%5D%5Bc%5D='); + // st.equal( + // stringify({ a: { b: { c: null } } }, { strictNullHandling: true }), + // 'a%5Bb%5D%5Bc%5D', + // ); + // st.equal(stringify({ a: { b: { c: false } } }), 'a%5Bb%5D%5Bc%5D=false'); + expect(stringify({ a: { b: { c: null } } })).toBe('a%5Bb%5D%5Bc%5D='); + expect(stringify({ a: { b: { c: null } } }, { strictNullHandling: true })).toBe('a%5Bb%5D%5Bc%5D'); + expect(stringify({ a: { b: { c: false } } })).toBe('a%5Bb%5D%5Bc%5D=false'); + }); + + test('stringifies a nested object', function () { + // st.equal(stringify({ a: { b: 'c' } }), 'a%5Bb%5D=c'); + // st.equal(stringify({ a: { b: { c: { d: 'e' } } } }), 'a%5Bb%5D%5Bc%5D%5Bd%5D=e'); + expect(stringify({ a: { b: 'c' } })).toBe('a%5Bb%5D=c'); + expect(stringify({ a: { b: { c: { d: 'e' } } } })).toBe('a%5Bb%5D%5Bc%5D%5Bd%5D=e'); + }); + + test('`allowDots` option: stringifies a nested object with dots notation', function () { + // st.equal(stringify({ a: { b: 'c' } }, { allowDots: true }), 'a.b=c'); + // st.equal(stringify({ a: { b: { c: { d: 'e' } } } }, { allowDots: true }), 'a.b.c.d=e'); + expect(stringify({ a: { b: 'c' } }, { allowDots: true })).toBe('a.b=c'); + expect(stringify({ a: { b: { c: { d: 'e' } } } }, { allowDots: true })).toBe('a.b.c.d=e'); + }); + + test('stringifies an array value', function () { + // st.equal( + // stringify({ a: ['b', 'c', 'd'] }, { arrayFormat: 'indices' }), + // 'a%5B0%5D=b&a%5B1%5D=c&a%5B2%5D=d', + // 'indices => indices', + // ); + // st.equal( + // stringify({ a: ['b', 'c', 'd'] }, { arrayFormat: 'brackets' }), + // 'a%5B%5D=b&a%5B%5D=c&a%5B%5D=d', + // 'brackets => brackets', + // ); + // st.equal( + // stringify({ a: ['b', 'c', 'd'] }, { arrayFormat: 'comma' }), + // 'a=b%2Cc%2Cd', + // 'comma => comma', + // ); + // st.equal( + // stringify({ a: ['b', 'c', 'd'] }, { arrayFormat: 'comma', commaRoundTrip: true }), + // 'a=b%2Cc%2Cd', + // 'comma round trip => comma', + // ); + // st.equal( + // stringify({ a: ['b', 'c', 'd'] }), + // 'a%5B0%5D=b&a%5B1%5D=c&a%5B2%5D=d', + // 'default => indices', + // ); + expect(stringify({ a: ['b', 'c', 'd'] }, { arrayFormat: 'indices' })).toBe( + 'a%5B0%5D=b&a%5B1%5D=c&a%5B2%5D=d', + ); + expect(stringify({ a: ['b', 'c', 'd'] }, { arrayFormat: 'brackets' })).toBe( + 'a%5B%5D=b&a%5B%5D=c&a%5B%5D=d', + ); + expect(stringify({ a: ['b', 'c', 'd'] }, { arrayFormat: 'comma' })).toBe('a=b%2Cc%2Cd'); + expect(stringify({ a: ['b', 'c', 'd'] }, { arrayFormat: 'comma', commaRoundTrip: true })).toBe( + 'a=b%2Cc%2Cd', + ); + expect(stringify({ a: ['b', 'c', 'd'] })).toBe('a%5B0%5D=b&a%5B1%5D=c&a%5B2%5D=d'); + }); + + test('`skipNulls` option', function () { + // st.equal( + // stringify({ a: 'b', c: null }, { skipNulls: true }), + // 'a=b', + // 'omits nulls when asked', + // ); + expect(stringify({ a: 'b', c: null }, { skipNulls: true })).toBe('a=b'); + + // st.equal( + // stringify({ a: { b: 'c', d: null } }, { skipNulls: true }), + // 'a%5Bb%5D=c', + // 'omits nested nulls when asked', + // ); + expect(stringify({ a: { b: 'c', d: null } }, { skipNulls: true })).toBe('a%5Bb%5D=c'); + }); + + test('omits array indices when asked', function () { + // st.equal(stringify({ a: ['b', 'c', 'd'] }, { indices: false }), 'a=b&a=c&a=d'); + expect(stringify({ a: ['b', 'c', 'd'] }, { indices: false })).toBe('a=b&a=c&a=d'); + }); + + test('omits object key/value pair when value is empty array', function () { + // st.equal(stringify({ a: [], b: 'zz' }), 'b=zz'); + expect(stringify({ a: [], b: 'zz' })).toBe('b=zz'); + }); + + test('should not omit object key/value pair when value is empty array and when asked', function () { + // st.equal(stringify({ a: [], b: 'zz' }), 'b=zz'); + // st.equal(stringify({ a: [], b: 'zz' }, { allowEmptyArrays: false }), 'b=zz'); + // st.equal(stringify({ a: [], b: 'zz' }, { allowEmptyArrays: true }), 'a[]&b=zz'); + expect(stringify({ a: [], b: 'zz' })).toBe('b=zz'); + expect(stringify({ a: [], b: 'zz' }, { allowEmptyArrays: false })).toBe('b=zz'); + expect(stringify({ a: [], b: 'zz' }, { allowEmptyArrays: true })).toBe('a[]&b=zz'); + }); + + test('should throw when allowEmptyArrays is not of type boolean', function () { + // st['throws'](function () { + // stringify({ a: [], b: 'zz' }, { allowEmptyArrays: 'foobar' }); + // }, TypeError); + expect(() => { + // @ts-expect-error + stringify({ a: [], b: 'zz' }, { allowEmptyArrays: 'foobar' }); + }).toThrow(TypeError); + + // st['throws'](function () { + // stringify({ a: [], b: 'zz' }, { allowEmptyArrays: 0 }); + // }, TypeError); + expect(() => { + // @ts-expect-error + stringify({ a: [], b: 'zz' }, { allowEmptyArrays: 0 }); + }).toThrow(TypeError); + + // st['throws'](function () { + // stringify({ a: [], b: 'zz' }, { allowEmptyArrays: NaN }); + // }, TypeError); + expect(() => { + // @ts-expect-error + stringify({ a: [], b: 'zz' }, { allowEmptyArrays: NaN }); + }).toThrow(TypeError); + + // st['throws'](function () { + // stringify({ a: [], b: 'zz' }, { allowEmptyArrays: null }); + // }, TypeError); + expect(() => { + // @ts-expect-error + stringify({ a: [], b: 'zz' }, { allowEmptyArrays: null }); + }).toThrow(TypeError); + }); + + test('allowEmptyArrays + strictNullHandling', function () { + // st.equal( + // stringify({ testEmptyArray: [] }, { strictNullHandling: true, allowEmptyArrays: true }), + // 'testEmptyArray[]', + // ); + expect(stringify({ testEmptyArray: [] }, { strictNullHandling: true, allowEmptyArrays: true })).toBe( + 'testEmptyArray[]', + ); + }); + + describe('stringifies an array value with one item vs multiple items', function () { + test('non-array item', function () { + // s2t.equal( + // stringify({ a: 'c' }, { encodeValuesOnly: true, arrayFormat: 'indices' }), + // 'a=c', + // ); + // s2t.equal( + // stringify({ a: 'c' }, { encodeValuesOnly: true, arrayFormat: 'brackets' }), + // 'a=c', + // ); + // s2t.equal(stringify({ a: 'c' }, { encodeValuesOnly: true, arrayFormat: 'comma' }), 'a=c'); + // s2t.equal(stringify({ a: 'c' }, { encodeValuesOnly: true }), 'a=c'); + expect(stringify({ a: 'c' }, { encodeValuesOnly: true, arrayFormat: 'indices' })).toBe('a=c'); + expect(stringify({ a: 'c' }, { encodeValuesOnly: true, arrayFormat: 'brackets' })).toBe('a=c'); + expect(stringify({ a: 'c' }, { encodeValuesOnly: true, arrayFormat: 'comma' })).toBe('a=c'); + expect(stringify({ a: 'c' }, { encodeValuesOnly: true })).toBe('a=c'); + }); + + test('array with a single item', function () { + // s2t.equal( + // stringify({ a: ['c'] }, { encodeValuesOnly: true, arrayFormat: 'indices' }), + // 'a[0]=c', + // ); + // s2t.equal( + // stringify({ a: ['c'] }, { encodeValuesOnly: true, arrayFormat: 'brackets' }), + // 'a[]=c', + // ); + // s2t.equal( + // stringify({ a: ['c'] }, { encodeValuesOnly: true, arrayFormat: 'comma' }), + // 'a=c', + // ); + // s2t.equal( + // stringify( + // { a: ['c'] }, + // { encodeValuesOnly: true, arrayFormat: 'comma', commaRoundTrip: true }, + // ), + // 'a[]=c', + // ); // so it parses back as an array + // s2t.equal(stringify({ a: ['c'] }, { encodeValuesOnly: true }), 'a[0]=c'); + expect(stringify({ a: ['c'] }, { encodeValuesOnly: true, arrayFormat: 'indices' })).toBe('a[0]=c'); + expect(stringify({ a: ['c'] }, { encodeValuesOnly: true, arrayFormat: 'brackets' })).toBe('a[]=c'); + expect(stringify({ a: ['c'] }, { encodeValuesOnly: true, arrayFormat: 'comma' })).toBe('a=c'); + expect( + stringify({ a: ['c'] }, { encodeValuesOnly: true, arrayFormat: 'comma', commaRoundTrip: true }), + ).toBe('a[]=c'); + expect(stringify({ a: ['c'] }, { encodeValuesOnly: true })).toBe('a[0]=c'); + }); + + test('array with multiple items', function () { + // s2t.equal( + // stringify({ a: ['c', 'd'] }, { encodeValuesOnly: true, arrayFormat: 'indices' }), + // 'a[0]=c&a[1]=d', + // ); + // s2t.equal( + // stringify({ a: ['c', 'd'] }, { encodeValuesOnly: true, arrayFormat: 'brackets' }), + // 'a[]=c&a[]=d', + // ); + // s2t.equal( + // stringify({ a: ['c', 'd'] }, { encodeValuesOnly: true, arrayFormat: 'comma' }), + // 'a=c,d', + // ); + // s2t.equal( + // stringify( + // { a: ['c', 'd'] }, + // { encodeValuesOnly: true, arrayFormat: 'comma', commaRoundTrip: true }, + // ), + // 'a=c,d', + // ); + // s2t.equal(stringify({ a: ['c', 'd'] }, { encodeValuesOnly: true }), 'a[0]=c&a[1]=d'); + expect(stringify({ a: ['c', 'd'] }, { encodeValuesOnly: true, arrayFormat: 'indices' })).toBe( + 'a[0]=c&a[1]=d', + ); + expect(stringify({ a: ['c', 'd'] }, { encodeValuesOnly: true, arrayFormat: 'brackets' })).toBe( + 'a[]=c&a[]=d', + ); + expect(stringify({ a: ['c', 'd'] }, { encodeValuesOnly: true, arrayFormat: 'comma' })).toBe('a=c,d'); + expect( + stringify({ a: ['c', 'd'] }, { encodeValuesOnly: true, arrayFormat: 'comma', commaRoundTrip: true }), + ).toBe('a=c,d'); + expect(stringify({ a: ['c', 'd'] }, { encodeValuesOnly: true })).toBe('a[0]=c&a[1]=d'); + }); + + test('array with multiple items with a comma inside', function () { + // s2t.equal( + // stringify({ a: ['c,d', 'e'] }, { encodeValuesOnly: true, arrayFormat: 'comma' }), + // 'a=c%2Cd,e', + // ); + // s2t.equal(stringify({ a: ['c,d', 'e'] }, { arrayFormat: 'comma' }), 'a=c%2Cd%2Ce'); + expect(stringify({ a: ['c,d', 'e'] }, { encodeValuesOnly: true, arrayFormat: 'comma' })).toBe( + 'a=c%2Cd,e', + ); + expect(stringify({ a: ['c,d', 'e'] }, { arrayFormat: 'comma' })).toBe('a=c%2Cd%2Ce'); + + // s2t.equal( + // stringify( + // { a: ['c,d', 'e'] }, + // { encodeValuesOnly: true, arrayFormat: 'comma', commaRoundTrip: true }, + // ), + // 'a=c%2Cd,e', + // ); + // s2t.equal( + // stringify({ a: ['c,d', 'e'] }, { arrayFormat: 'comma', commaRoundTrip: true }), + // 'a=c%2Cd%2Ce', + // ); + expect( + stringify( + { a: ['c,d', 'e'] }, + { encodeValuesOnly: true, arrayFormat: 'comma', commaRoundTrip: true }, + ), + ).toBe('a=c%2Cd,e'); + expect(stringify({ a: ['c,d', 'e'] }, { arrayFormat: 'comma', commaRoundTrip: true })).toBe( + 'a=c%2Cd%2Ce', + ); + }); + }); + + test('stringifies a nested array value', function () { + expect(stringify({ a: { b: ['c', 'd'] } }, { encodeValuesOnly: true, arrayFormat: 'indices' })).toBe( + 'a[b][0]=c&a[b][1]=d', + ); + expect(stringify({ a: { b: ['c', 'd'] } }, { encodeValuesOnly: true, arrayFormat: 'brackets' })).toBe( + 'a[b][]=c&a[b][]=d', + ); + expect(stringify({ a: { b: ['c', 'd'] } }, { encodeValuesOnly: true, arrayFormat: 'comma' })).toBe( + 'a[b]=c,d', + ); + expect(stringify({ a: { b: ['c', 'd'] } }, { encodeValuesOnly: true })).toBe('a[b][0]=c&a[b][1]=d'); + }); + + test('stringifies comma and empty array values', function () { + // st.equal( + // stringify({ a: [',', '', 'c,d%'] }, { encode: false, arrayFormat: 'indices' }), + // 'a[0]=,&a[1]=&a[2]=c,d%', + // ); + // st.equal( + // stringify({ a: [',', '', 'c,d%'] }, { encode: false, arrayFormat: 'brackets' }), + // 'a[]=,&a[]=&a[]=c,d%', + // ); + // st.equal( + // stringify({ a: [',', '', 'c,d%'] }, { encode: false, arrayFormat: 'comma' }), + // 'a=,,,c,d%', + // ); + // st.equal( + // stringify({ a: [',', '', 'c,d%'] }, { encode: false, arrayFormat: 'repeat' }), + // 'a=,&a=&a=c,d%', + // ); + expect(stringify({ a: [',', '', 'c,d%'] }, { encode: false, arrayFormat: 'indices' })).toBe( + 'a[0]=,&a[1]=&a[2]=c,d%', + ); + expect(stringify({ a: [',', '', 'c,d%'] }, { encode: false, arrayFormat: 'brackets' })).toBe( + 'a[]=,&a[]=&a[]=c,d%', + ); + expect(stringify({ a: [',', '', 'c,d%'] }, { encode: false, arrayFormat: 'comma' })).toBe('a=,,,c,d%'); + expect(stringify({ a: [',', '', 'c,d%'] }, { encode: false, arrayFormat: 'repeat' })).toBe( + 'a=,&a=&a=c,d%', + ); + + // st.equal( + // stringify( + // { a: [',', '', 'c,d%'] }, + // { encode: true, encodeValuesOnly: true, arrayFormat: 'indices' }, + // ), + // 'a[0]=%2C&a[1]=&a[2]=c%2Cd%25', + // ); + // st.equal( + // stringify( + // { a: [',', '', 'c,d%'] }, + // { encode: true, encodeValuesOnly: true, arrayFormat: 'brackets' }, + // ), + // 'a[]=%2C&a[]=&a[]=c%2Cd%25', + // ); + // st.equal( + // stringify( + // { a: [',', '', 'c,d%'] }, + // { encode: true, encodeValuesOnly: true, arrayFormat: 'comma' }, + // ), + // 'a=%2C,,c%2Cd%25', + // ); + // st.equal( + // stringify( + // { a: [',', '', 'c,d%'] }, + // { encode: true, encodeValuesOnly: true, arrayFormat: 'repeat' }, + // ), + // 'a=%2C&a=&a=c%2Cd%25', + // ); + expect( + stringify({ a: [',', '', 'c,d%'] }, { encode: true, encodeValuesOnly: false, arrayFormat: 'indices' }), + ).toBe('a%5B0%5D=%2C&a%5B1%5D=&a%5B2%5D=c%2Cd%25'); + expect( + stringify({ a: [',', '', 'c,d%'] }, { encode: true, encodeValuesOnly: true, arrayFormat: 'brackets' }), + ).toBe('a[]=%2C&a[]=&a[]=c%2Cd%25'); + expect( + stringify({ a: [',', '', 'c,d%'] }, { encode: true, encodeValuesOnly: false, arrayFormat: 'comma' }), + ).toBe('a=%2C%2C%2Cc%2Cd%25'); + expect( + stringify({ a: [',', '', 'c,d%'] }, { encode: true, encodeValuesOnly: false, arrayFormat: 'repeat' }), + ).toBe('a=%2C&a=&a=c%2Cd%25'); + + // st.equal( + // stringify( + // { a: [',', '', 'c,d%'] }, + // { encode: true, encodeValuesOnly: false, arrayFormat: 'indices' }, + // ), + // 'a%5B0%5D=%2C&a%5B1%5D=&a%5B2%5D=c%2Cd%25', + // ); + // st.equal( + // stringify( + // { a: [',', '', 'c,d%'] }, + // { encode: true, encodeValuesOnly: false, arrayFormat: 'brackets' }, + // ), + // 'a%5B%5D=%2C&a%5B%5D=&a%5B%5D=c%2Cd%25', + // ); + // st.equal( + // stringify( + // { a: [',', '', 'c,d%'] }, + // { encode: true, encodeValuesOnly: false, arrayFormat: 'comma' }, + // ), + // 'a=%2C%2C%2Cc%2Cd%25', + // ); + // st.equal( + // stringify( + // { a: [',', '', 'c,d%'] }, + // { encode: true, encodeValuesOnly: false, arrayFormat: 'repeat' }, + // ), + // 'a=%2C&a=&a=c%2Cd%25', + // ); + expect( + stringify({ a: [',', '', 'c,d%'] }, { encode: true, encodeValuesOnly: false, arrayFormat: 'repeat' }), + ).toBe('a=%2C&a=&a=c%2Cd%25'); + expect( + stringify({ a: [',', '', 'c,d%'] }, { encode: true, encodeValuesOnly: false, arrayFormat: 'indices' }), + ).toBe('a%5B0%5D=%2C&a%5B1%5D=&a%5B2%5D=c%2Cd%25'); + expect( + stringify({ a: [',', '', 'c,d%'] }, { encode: true, encodeValuesOnly: true, arrayFormat: 'brackets' }), + ).toBe('a[]=%2C&a[]=&a[]=c%2Cd%25'); + expect( + stringify({ a: [',', '', 'c,d%'] }, { encode: true, encodeValuesOnly: false, arrayFormat: 'comma' }), + ).toBe('a=%2C%2C%2Cc%2Cd%25'); + expect( + stringify({ a: [',', '', 'c,d%'] }, { encode: true, encodeValuesOnly: false, arrayFormat: 'repeat' }), + ).toBe('a=%2C&a=&a=c%2Cd%25'); + }); + + test('stringifies comma and empty non-array values', function () { + // st.equal( + // stringify({ a: ',', b: '', c: 'c,d%' }, { encode: false, arrayFormat: 'indices' }), + // 'a=,&b=&c=c,d%', + // ); + // st.equal( + // stringify({ a: ',', b: '', c: 'c,d%' }, { encode: false, arrayFormat: 'brackets' }), + // 'a=,&b=&c=c,d%', + // ); + // st.equal( + // stringify({ a: ',', b: '', c: 'c,d%' }, { encode: false, arrayFormat: 'comma' }), + // 'a=,&b=&c=c,d%', + // ); + // st.equal( + // stringify({ a: ',', b: '', c: 'c,d%' }, { encode: false, arrayFormat: 'repeat' }), + // 'a=,&b=&c=c,d%', + // ); + expect(stringify({ a: ',', b: '', c: 'c,d%' }, { encode: false, arrayFormat: 'indices' })).toBe( + 'a=,&b=&c=c,d%', + ); + expect(stringify({ a: ',', b: '', c: 'c,d%' }, { encode: false, arrayFormat: 'brackets' })).toBe( + 'a=,&b=&c=c,d%', + ); + + // st.equal( + // stringify( + // { a: ',', b: '', c: 'c,d%' }, + // { encode: true, encodeValuesOnly: true, arrayFormat: 'indices' }, + // ), + // 'a=%2C&b=&c=c%2Cd%25', + // ); + // st.equal( + // stringify( + // { a: ',', b: '', c: 'c,d%' }, + // { encode: true, encodeValuesOnly: true, arrayFormat: 'brackets' }, + // ), + // 'a=%2C&b=&c=c%2Cd%25', + // ); + // st.equal( + // stringify( + // { a: ',', b: '', c: 'c,d%' }, + // { encode: true, encodeValuesOnly: true, arrayFormat: 'comma' }, + // ), + // 'a=%2C&b=&c=c%2Cd%25', + // ); + // st.equal( + // stringify( + // { a: ',', b: '', c: 'c,d%' }, + // { encode: true, encodeValuesOnly: true, arrayFormat: 'repeat' }, + // ), + // 'a=%2C&b=&c=c%2Cd%25', + // ); + expect( + stringify( + { a: ',', b: '', c: 'c,d%' }, + { encode: true, encodeValuesOnly: true, arrayFormat: 'indices' }, + ), + ).toBe('a=%2C&b=&c=c%2Cd%25'); + expect( + stringify( + { a: ',', b: '', c: 'c,d%' }, + { encode: true, encodeValuesOnly: true, arrayFormat: 'brackets' }, + ), + ).toBe('a=%2C&b=&c=c%2Cd%25'); + expect( + stringify({ a: ',', b: '', c: 'c,d%' }, { encode: true, encodeValuesOnly: true, arrayFormat: 'comma' }), + ).toBe('a=%2C&b=&c=c%2Cd%25'); + expect( + stringify( + { a: ',', b: '', c: 'c,d%' }, + { encode: true, encodeValuesOnly: true, arrayFormat: 'repeat' }, + ), + ).toBe('a=%2C&b=&c=c%2Cd%25'); + + // st.equal( + // stringify( + // { a: ',', b: '', c: 'c,d%' }, + // { encode: true, encodeValuesOnly: false, arrayFormat: 'indices' }, + // ), + // 'a=%2C&b=&c=c%2Cd%25', + // ); + // st.equal( + // stringify( + // { a: ',', b: '', c: 'c,d%' }, + // { encode: true, encodeValuesOnly: false, arrayFormat: 'brackets' }, + // ), + // 'a=%2C&b=&c=c%2Cd%25', + // ); + // st.equal( + // stringify( + // { a: ',', b: '', c: 'c,d%' }, + // { encode: true, encodeValuesOnly: false, arrayFormat: 'comma' }, + // ), + // 'a=%2C&b=&c=c%2Cd%25', + // ); + // st.equal( + // stringify( + // { a: ',', b: '', c: 'c,d%' }, + // { encode: true, encodeValuesOnly: false, arrayFormat: 'repeat' }, + // ), + // 'a=%2C&b=&c=c%2Cd%25', + // ); + expect( + stringify( + { a: ',', b: '', c: 'c,d%' }, + { encode: true, encodeValuesOnly: false, arrayFormat: 'indices' }, + ), + ).toBe('a=%2C&b=&c=c%2Cd%25'); + expect( + stringify( + { a: ',', b: '', c: 'c,d%' }, + { encode: true, encodeValuesOnly: false, arrayFormat: 'brackets' }, + ), + ).toBe('a=%2C&b=&c=c%2Cd%25'); + expect( + stringify( + { a: ',', b: '', c: 'c,d%' }, + { encode: true, encodeValuesOnly: false, arrayFormat: 'comma' }, + ), + ).toBe('a=%2C&b=&c=c%2Cd%25'); + expect( + stringify( + { a: ',', b: '', c: 'c,d%' }, + { encode: true, encodeValuesOnly: false, arrayFormat: 'repeat' }, + ), + ).toBe('a=%2C&b=&c=c%2Cd%25'); + }); + + test('stringifies a nested array value with dots notation', function () { + // st.equal( + // stringify( + // { a: { b: ['c', 'd'] } }, + // { allowDots: true, encodeValuesOnly: true, arrayFormat: 'indices' }, + // ), + // 'a.b[0]=c&a.b[1]=d', + // 'indices: stringifies with dots + indices', + // ); + // st.equal( + // stringify( + // { a: { b: ['c', 'd'] } }, + // { allowDots: true, encodeValuesOnly: true, arrayFormat: 'brackets' }, + // ), + // 'a.b[]=c&a.b[]=d', + // 'brackets: stringifies with dots + brackets', + // ); + // st.equal( + // stringify( + // { a: { b: ['c', 'd'] } }, + // { allowDots: true, encodeValuesOnly: true, arrayFormat: 'comma' }, + // ), + // 'a.b=c,d', + // 'comma: stringifies with dots + comma', + // ); + // st.equal( + // stringify({ a: { b: ['c', 'd'] } }, { allowDots: true, encodeValuesOnly: true }), + // 'a.b[0]=c&a.b[1]=d', + // 'default: stringifies with dots + indices', + // ); + expect( + stringify( + { a: { b: ['c', 'd'] } }, + { allowDots: true, encodeValuesOnly: true, arrayFormat: 'indices' }, + ), + ).toBe('a.b[0]=c&a.b[1]=d'); + expect( + stringify( + { a: { b: ['c', 'd'] } }, + { allowDots: true, encodeValuesOnly: true, arrayFormat: 'brackets' }, + ), + ).toBe('a.b[]=c&a.b[]=d'); + expect( + stringify({ a: { b: ['c', 'd'] } }, { allowDots: true, encodeValuesOnly: true, arrayFormat: 'comma' }), + ).toBe('a.b=c,d'); + expect(stringify({ a: { b: ['c', 'd'] } }, { allowDots: true, encodeValuesOnly: true })).toBe( + 'a.b[0]=c&a.b[1]=d', + ); + }); + + test('stringifies an object inside an array', function () { + // st.equal( + // stringify({ a: [{ b: 'c' }] }, { arrayFormat: 'indices', encodeValuesOnly: true }), + // 'a[0][b]=c', + // 'indices => indices', + // ); + // st.equal( + // stringify({ a: [{ b: 'c' }] }, { arrayFormat: 'repeat', encodeValuesOnly: true }), + // 'a[b]=c', + // 'repeat => repeat', + // ); + // st.equal( + // stringify({ a: [{ b: 'c' }] }, { arrayFormat: 'brackets', encodeValuesOnly: true }), + // 'a[][b]=c', + // 'brackets => brackets', + // ); + // st.equal( + // stringify({ a: [{ b: 'c' }] }, { encodeValuesOnly: true }), + // 'a[0][b]=c', + // 'default => indices', + // ); + expect(stringify({ a: [{ b: 'c' }] }, { arrayFormat: 'indices', encodeValuesOnly: true })).toBe( + 'a[0][b]=c', + ); + expect(stringify({ a: [{ b: 'c' }] }, { arrayFormat: 'repeat', encodeValuesOnly: true })).toBe('a[b]=c'); + expect(stringify({ a: [{ b: 'c' }] }, { arrayFormat: 'brackets', encodeValuesOnly: true })).toBe( + 'a[][b]=c', + ); + expect(stringify({ a: [{ b: 'c' }] }, { encodeValuesOnly: true })).toBe('a[0][b]=c'); + + // st.equal( + // stringify({ a: [{ b: { c: [1] } }] }, { arrayFormat: 'indices', encodeValuesOnly: true }), + // 'a[0][b][c][0]=1', + // 'indices => indices', + // ); + // st.equal( + // stringify({ a: [{ b: { c: [1] } }] }, { arrayFormat: 'repeat', encodeValuesOnly: true }), + // 'a[b][c]=1', + // 'repeat => repeat', + // ); + // st.equal( + // stringify({ a: [{ b: { c: [1] } }] }, { arrayFormat: 'brackets', encodeValuesOnly: true }), + // 'a[][b][c][]=1', + // 'brackets => brackets', + // ); + // st.equal( + // stringify({ a: [{ b: { c: [1] } }] }, { encodeValuesOnly: true }), + // 'a[0][b][c][0]=1', + // 'default => indices', + // ); + expect(stringify({ a: [{ b: { c: [1] } }] }, { arrayFormat: 'indices', encodeValuesOnly: true })).toBe( + 'a[0][b][c][0]=1', + ); + expect(stringify({ a: [{ b: { c: [1] } }] }, { arrayFormat: 'repeat', encodeValuesOnly: true })).toBe( + 'a[b][c]=1', + ); + expect(stringify({ a: [{ b: { c: [1] } }] }, { arrayFormat: 'brackets', encodeValuesOnly: true })).toBe( + 'a[][b][c][]=1', + ); + expect(stringify({ a: [{ b: { c: [1] } }] }, { encodeValuesOnly: true })).toBe('a[0][b][c][0]=1'); + }); + + test('stringifies an array with mixed objects and primitives', function () { + // st.equal( + // stringify({ a: [{ b: 1 }, 2, 3] }, { encodeValuesOnly: true, arrayFormat: 'indices' }), + // 'a[0][b]=1&a[1]=2&a[2]=3', + // 'indices => indices', + // ); + // st.equal( + // stringify({ a: [{ b: 1 }, 2, 3] }, { encodeValuesOnly: true, arrayFormat: 'brackets' }), + // 'a[][b]=1&a[]=2&a[]=3', + // 'brackets => brackets', + // ); + // st.equal( + // stringify({ a: [{ b: 1 }, 2, 3] }, { encodeValuesOnly: true, arrayFormat: 'comma' }), + // '???', + // 'brackets => brackets', + // { skip: 'TODO: figure out what this should do' }, + // ); + // st.equal( + // stringify({ a: [{ b: 1 }, 2, 3] }, { encodeValuesOnly: true }), + // 'a[0][b]=1&a[1]=2&a[2]=3', + // 'default => indices', + // ); + expect(stringify({ a: [{ b: 1 }, 2, 3] }, { encodeValuesOnly: true, arrayFormat: 'indices' })).toBe( + 'a[0][b]=1&a[1]=2&a[2]=3', + ); + expect(stringify({ a: [{ b: 1 }, 2, 3] }, { encodeValuesOnly: true, arrayFormat: 'brackets' })).toBe( + 'a[][b]=1&a[]=2&a[]=3', + ); + // !Skipped: Figure out what this should do + // expect( + // stringify({ a: [{ b: 1 }, 2, 3] }, { encodeValuesOnly: true, arrayFormat: 'comma' }), + // ).toBe('???'); + expect(stringify({ a: [{ b: 1 }, 2, 3] }, { encodeValuesOnly: true })).toBe('a[0][b]=1&a[1]=2&a[2]=3'); + }); + + test('stringifies an object inside an array with dots notation', function () { + // st.equal( + // stringify({ a: [{ b: 'c' }] }, { allowDots: true, encode: false, arrayFormat: 'indices' }), + // 'a[0].b=c', + // 'indices => indices', + // ); + // st.equal( + // stringify( + // { a: [{ b: 'c' }] }, + // { allowDots: true, encode: false, arrayFormat: 'brackets' }, + // ), + // 'a[].b=c', + // 'brackets => brackets', + // ); + // st.equal( + // stringify({ a: [{ b: 'c' }] }, { allowDots: true, encode: false }), + // 'a[0].b=c', + // 'default => indices', + // ); + expect(stringify({ a: [{ b: 'c' }] }, { allowDots: true, encode: false, arrayFormat: 'indices' })).toBe( + 'a[0].b=c', + ); + expect(stringify({ a: [{ b: 'c' }] }, { allowDots: true, encode: false, arrayFormat: 'brackets' })).toBe( + 'a[].b=c', + ); + expect(stringify({ a: [{ b: 'c' }] }, { allowDots: true, encode: false })).toBe('a[0].b=c'); + + // st.equal( + // stringify( + // { a: [{ b: { c: [1] } }] }, + // { allowDots: true, encode: false, arrayFormat: 'indices' }, + // ), + // 'a[0].b.c[0]=1', + // 'indices => indices', + // ); + // st.equal( + // stringify( + // { a: [{ b: { c: [1] } }] }, + // { allowDots: true, encode: false, arrayFormat: 'brackets' }, + // ), + // 'a[].b.c[]=1', + // 'brackets => brackets', + // ); + // st.equal( + // stringify({ a: [{ b: { c: [1] } }] }, { allowDots: true, encode: false }), + // 'a[0].b.c[0]=1', + // 'default => indices', + // ); + expect( + stringify({ a: [{ b: { c: [1] } }] }, { allowDots: true, encode: false, arrayFormat: 'indices' }), + ).toBe('a[0].b.c[0]=1'); + expect( + stringify({ a: [{ b: { c: [1] } }] }, { allowDots: true, encode: false, arrayFormat: 'brackets' }), + ).toBe('a[].b.c[]=1'); + expect(stringify({ a: [{ b: { c: [1] } }] }, { allowDots: true, encode: false })).toBe('a[0].b.c[0]=1'); + }); + + test('does not omit object keys when indices = false', function () { + // st.equal(stringify({ a: [{ b: 'c' }] }, { indices: false }), 'a%5Bb%5D=c'); + expect(stringify({ a: [{ b: 'c' }] }, { indices: false })).toBe('a%5Bb%5D=c'); + }); + + test('uses indices notation for arrays when indices=true', function () { + // st.equal(stringify({ a: ['b', 'c'] }, { indices: true }), 'a%5B0%5D=b&a%5B1%5D=c'); + expect(stringify({ a: ['b', 'c'] }, { indices: true })).toBe('a%5B0%5D=b&a%5B1%5D=c'); + }); + + test('uses indices notation for arrays when no arrayFormat is specified', function () { + // st.equal(stringify({ a: ['b', 'c'] }), 'a%5B0%5D=b&a%5B1%5D=c'); + expect(stringify({ a: ['b', 'c'] })).toBe('a%5B0%5D=b&a%5B1%5D=c'); + }); + + test('uses indices notation for arrays when arrayFormat=indices', function () { + // st.equal(stringify({ a: ['b', 'c'] }, { arrayFormat: 'indices' }), 'a%5B0%5D=b&a%5B1%5D=c'); + expect(stringify({ a: ['b', 'c'] }, { arrayFormat: 'indices' })).toBe('a%5B0%5D=b&a%5B1%5D=c'); + }); + + test('uses repeat notation for arrays when arrayFormat=repeat', function () { + // st.equal(stringify({ a: ['b', 'c'] }, { arrayFormat: 'repeat' }), 'a=b&a=c'); + expect(stringify({ a: ['b', 'c'] }, { arrayFormat: 'repeat' })).toBe('a=b&a=c'); + }); + + test('uses brackets notation for arrays when arrayFormat=brackets', function () { + // st.equal(stringify({ a: ['b', 'c'] }, { arrayFormat: 'brackets' }), 'a%5B%5D=b&a%5B%5D=c'); + expect(stringify({ a: ['b', 'c'] }, { arrayFormat: 'brackets' })).toBe('a%5B%5D=b&a%5B%5D=c'); + }); + + test('stringifies a complicated object', function () { + // st.equal(stringify({ a: { b: 'c', d: 'e' } }), 'a%5Bb%5D=c&a%5Bd%5D=e'); + expect(stringify({ a: { b: 'c', d: 'e' } })).toBe('a%5Bb%5D=c&a%5Bd%5D=e'); + }); + + test('stringifies an empty value', function () { + // st.equal(stringify({ a: '' }), 'a='); + // st.equal(stringify({ a: null }, { strictNullHandling: true }), 'a'); + expect(stringify({ a: '' })).toBe('a='); + expect(stringify({ a: null }, { strictNullHandling: true })).toBe('a'); + + // st.equal(stringify({ a: '', b: '' }), 'a=&b='); + // st.equal(stringify({ a: null, b: '' }, { strictNullHandling: true }), 'a&b='); + expect(stringify({ a: '', b: '' })).toBe('a=&b='); + expect(stringify({ a: null, b: '' }, { strictNullHandling: true })).toBe('a&b='); + + // st.equal(stringify({ a: { b: '' } }), 'a%5Bb%5D='); + // st.equal(stringify({ a: { b: null } }, { strictNullHandling: true }), 'a%5Bb%5D'); + // st.equal(stringify({ a: { b: null } }, { strictNullHandling: false }), 'a%5Bb%5D='); + expect(stringify({ a: { b: '' } })).toBe('a%5Bb%5D='); + expect(stringify({ a: { b: null } }, { strictNullHandling: true })).toBe('a%5Bb%5D'); + expect(stringify({ a: { b: null } }, { strictNullHandling: false })).toBe('a%5Bb%5D='); + }); + + test('stringifies an empty array in different arrayFormat', function () { + // st.equal(stringify({ a: [], b: [null], c: 'c' }, { encode: false }), 'b[0]=&c=c'); + expect(stringify({ a: [], b: [null], c: 'c' }, { encode: false })).toBe('b[0]=&c=c'); + // arrayFormat default + // st.equal( + // stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'indices' }), + // 'b[0]=&c=c', + // ); + // st.equal( + // stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'brackets' }), + // 'b[]=&c=c', + // ); + // st.equal( + // stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'repeat' }), + // 'b=&c=c', + // ); + // st.equal( + // stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'comma' }), + // 'b=&c=c', + // ); + // st.equal( + // stringify( + // { a: [], b: [null], c: 'c' }, + // { encode: false, arrayFormat: 'comma', commaRoundTrip: true }, + // ), + // 'b[]=&c=c', + // ); + expect(stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'indices' })).toBe( + 'b[0]=&c=c', + ); + expect(stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'brackets' })).toBe( + 'b[]=&c=c', + ); + expect(stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'repeat' })).toBe('b=&c=c'); + expect(stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'comma' })).toBe('b=&c=c'); + expect( + stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'comma', commaRoundTrip: true }), + ).toBe('b[]=&c=c'); + + // with strictNullHandling + // st.equal( + // stringify( + // { a: [], b: [null], c: 'c' }, + // { encode: false, arrayFormat: 'indices', strictNullHandling: true }, + // ), + // 'b[0]&c=c', + // ); + // st.equal( + // stringify( + // { a: [], b: [null], c: 'c' }, + // { encode: false, arrayFormat: 'brackets', strictNullHandling: true }, + // ), + // 'b[]&c=c', + // ); + // st.equal( + // stringify( + // { a: [], b: [null], c: 'c' }, + // { encode: false, arrayFormat: 'repeat', strictNullHandling: true }, + // ), + // 'b&c=c', + // ); + // st.equal( + // stringify( + // { a: [], b: [null], c: 'c' }, + // { encode: false, arrayFormat: 'comma', strictNullHandling: true }, + // ), + // 'b&c=c', + // ); + // st.equal( + // stringify( + // { a: [], b: [null], c: 'c' }, + // { encode: false, arrayFormat: 'comma', strictNullHandling: true, commaRoundTrip: true }, + // ), + // 'b[]&c=c', + // ); + + expect( + stringify( + { a: [], b: [null], c: 'c' }, + { encode: false, arrayFormat: 'indices', strictNullHandling: true }, + ), + ).toBe('b[0]&c=c'); + expect( + stringify( + { a: [], b: [null], c: 'c' }, + { encode: false, arrayFormat: 'brackets', strictNullHandling: true }, + ), + ).toBe('b[]&c=c'); + expect( + stringify( + { a: [], b: [null], c: 'c' }, + { encode: false, arrayFormat: 'repeat', strictNullHandling: true }, + ), + ).toBe('b&c=c'); + expect( + stringify( + { a: [], b: [null], c: 'c' }, + { encode: false, arrayFormat: 'comma', strictNullHandling: true }, + ), + ).toBe('b&c=c'); + expect( + stringify( + { a: [], b: [null], c: 'c' }, + { encode: false, arrayFormat: 'comma', strictNullHandling: true, commaRoundTrip: true }, + ), + ).toBe('b[]&c=c'); + + // with skipNulls + // st.equal( + // stringify( + // { a: [], b: [null], c: 'c' }, + // { encode: false, arrayFormat: 'indices', skipNulls: true }, + // ), + // 'c=c', + // ); + // st.equal( + // stringify( + // { a: [], b: [null], c: 'c' }, + // { encode: false, arrayFormat: 'brackets', skipNulls: true }, + // ), + // 'c=c', + // ); + // st.equal( + // stringify( + // { a: [], b: [null], c: 'c' }, + // { encode: false, arrayFormat: 'repeat', skipNulls: true }, + // ), + // 'c=c', + // ); + // st.equal( + // stringify( + // { a: [], b: [null], c: 'c' }, + // { encode: false, arrayFormat: 'comma', skipNulls: true }, + // ), + // 'c=c', + // ); + expect( + stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'indices', skipNulls: true }), + ).toBe('c=c'); + expect( + stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'brackets', skipNulls: true }), + ).toBe('c=c'); + expect( + stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'repeat', skipNulls: true }), + ).toBe('c=c'); + expect( + stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'comma', skipNulls: true }), + ).toBe('c=c'); + }); + + test('stringifies a null object', function () { + var obj = Object.create(null); + obj.a = 'b'; + // st.equal(stringify(obj), 'a=b'); + expect(stringify(obj)).toBe('a=b'); + }); + + test('returns an empty string for invalid input', function () { + // st.equal(stringify(undefined), ''); + // st.equal(stringify(false), ''); + // st.equal(stringify(null), ''); + // st.equal(stringify(''), ''); + expect(stringify(undefined)).toBe(''); + expect(stringify(false)).toBe(''); + expect(stringify(null)).toBe(''); + expect(stringify('')).toBe(''); + }); + + test('stringifies an object with a null object as a child', function () { + var obj = { a: Object.create(null) }; + + obj.a.b = 'c'; + // st.equal(stringify(obj), 'a%5Bb%5D=c'); + expect(stringify(obj)).toBe('a%5Bb%5D=c'); + }); + + test('drops keys with a value of undefined', function () { + // st.equal(stringify({ a: undefined }), ''); + expect(stringify({ a: undefined })).toBe(''); + + // st.equal( + // stringify({ a: { b: undefined, c: null } }, { strictNullHandling: true }), + // 'a%5Bc%5D', + // ); + // st.equal( + // stringify({ a: { b: undefined, c: null } }, { strictNullHandling: false }), + // 'a%5Bc%5D=', + // ); + // st.equal(stringify({ a: { b: undefined, c: '' } }), 'a%5Bc%5D='); + expect(stringify({ a: { b: undefined, c: null } }, { strictNullHandling: true })).toBe('a%5Bc%5D'); + expect(stringify({ a: { b: undefined, c: null } }, { strictNullHandling: false })).toBe('a%5Bc%5D='); + expect(stringify({ a: { b: undefined, c: '' } })).toBe('a%5Bc%5D='); + }); + + test('url encodes values', function () { + // st.equal(stringify({ a: 'b c' }), 'a=b%20c'); + expect(stringify({ a: 'b c' })).toBe('a=b%20c'); + }); + + test('stringifies a date', function () { + var now = new Date(); + var str = 'a=' + encodeURIComponent(now.toISOString()); + // st.equal(stringify({ a: now }), str); + expect(stringify({ a: now })).toBe(str); + }); + + test('stringifies the weird object from qs', function () { + // st.equal( + // stringify({ 'my weird field': '~q1!2"\'w$5&7/z8)?' }), + // 'my%20weird%20field=~q1%212%22%27w%245%267%2Fz8%29%3F', + // ); + expect(stringify({ 'my weird field': '~q1!2"\'w$5&7/z8)?' })).toBe( + 'my%20weird%20field=~q1%212%22%27w%245%267%2Fz8%29%3F', + ); + }); + + // TODO: Investigate how to to intercept in vitest + // TODO(rob) + test('skips properties that are part of the object prototype', function () { + // st.intercept(Object.prototype, 'crash', { value: 'test' }); + // @ts-expect-error + Object.prototype.crash = 'test'; + + // st.equal(stringify({ a: 'b' }), 'a=b'); + // st.equal(stringify({ a: { b: 'c' } }), 'a%5Bb%5D=c'); + expect(stringify({ a: 'b' })).toBe('a=b'); + expect(stringify({ a: { b: 'c' } })).toBe('a%5Bb%5D=c'); + }); + + test('stringifies boolean values', function () { + // st.equal(stringify({ a: true }), 'a=true'); + // st.equal(stringify({ a: { b: true } }), 'a%5Bb%5D=true'); + // st.equal(stringify({ b: false }), 'b=false'); + // st.equal(stringify({ b: { c: false } }), 'b%5Bc%5D=false'); + expect(stringify({ a: true })).toBe('a=true'); + expect(stringify({ a: { b: true } })).toBe('a%5Bb%5D=true'); + expect(stringify({ b: false })).toBe('b=false'); + expect(stringify({ b: { c: false } })).toBe('b%5Bc%5D=false'); + }); + + test('stringifies buffer values', function () { + // st.equal(stringify({ a: Buffer.from('test') }), 'a=test'); + // st.equal(stringify({ a: { b: Buffer.from('test') } }), 'a%5Bb%5D=test'); + }); + + test('stringifies an object using an alternative delimiter', function () { + // st.equal(stringify({ a: 'b', c: 'd' }, { delimiter: ';' }), 'a=b;c=d'); + expect(stringify({ a: 'b', c: 'd' }, { delimiter: ';' })).toBe('a=b;c=d'); + }); + + // We dont target environments which dont even have Buffer + // test('does not blow up when Buffer global is missing', function () { + // var restore = mockProperty(global, 'Buffer', { delete: true }); + + // var result = stringify({ a: 'b', c: 'd' }); + + // restore(); + + // st.equal(result, 'a=b&c=d'); + // st.end(); + // }); + + test('does not crash when parsing circular references', function () { + var a: any = {}; + a.b = a; + + // st['throws']( + // function () { + // stringify({ 'foo[bar]': 'baz', 'foo[baz]': a }); + // }, + // /RangeError: Cyclic object value/, + // 'cyclic values throw', + // ); + expect(() => { + stringify({ 'foo[bar]': 'baz', 'foo[baz]': a }); + }).toThrow('Cyclic object value'); + + var circular: any = { + a: 'value', + }; + circular.a = circular; + // st['throws']( + // function () { + // stringify(circular); + // }, + // /RangeError: Cyclic object value/, + // 'cyclic values throw', + // ); + expect(() => { + stringify(circular); + }).toThrow('Cyclic object value'); + + var arr = ['a']; + // st.doesNotThrow(function () { + // stringify({ x: arr, y: arr }); + // }, 'non-cyclic values do not throw'); + expect(() => { + stringify({ x: arr, y: arr }); + }).not.toThrow(); + }); + + test('non-circular duplicated references can still work', function () { + var hourOfDay = { + function: 'hour_of_day', + }; + + var p1 = { + function: 'gte', + arguments: [hourOfDay, 0], + }; + var p2 = { + function: 'lte', + arguments: [hourOfDay, 23], + }; + + // st.equal( + // stringify( + // { filters: { $and: [p1, p2] } }, + // { encodeValuesOnly: true, arrayFormat: 'indices' }, + // ), + // 'filters[$and][0][function]=gte&filters[$and][0][arguments][0][function]=hour_of_day&filters[$and][0][arguments][1]=0&filters[$and][1][function]=lte&filters[$and][1][arguments][0][function]=hour_of_day&filters[$and][1][arguments][1]=23', + // ); + // st.equal( + // stringify( + // { filters: { $and: [p1, p2] } }, + // { encodeValuesOnly: true, arrayFormat: 'brackets' }, + // ), + // 'filters[$and][][function]=gte&filters[$and][][arguments][][function]=hour_of_day&filters[$and][][arguments][]=0&filters[$and][][function]=lte&filters[$and][][arguments][][function]=hour_of_day&filters[$and][][arguments][]=23', + // ); + // st.equal( + // stringify( + // { filters: { $and: [p1, p2] } }, + // { encodeValuesOnly: true, arrayFormat: 'repeat' }, + // ), + // 'filters[$and][function]=gte&filters[$and][arguments][function]=hour_of_day&filters[$and][arguments]=0&filters[$and][function]=lte&filters[$and][arguments][function]=hour_of_day&filters[$and][arguments]=23', + // ); + expect( + stringify({ filters: { $and: [p1, p2] } }, { encodeValuesOnly: true, arrayFormat: 'indices' }), + ).toBe( + 'filters[$and][0][function]=gte&filters[$and][0][arguments][0][function]=hour_of_day&filters[$and][0][arguments][1]=0&filters[$and][1][function]=lte&filters[$and][1][arguments][0][function]=hour_of_day&filters[$and][1][arguments][1]=23', + ); + expect( + stringify({ filters: { $and: [p1, p2] } }, { encodeValuesOnly: true, arrayFormat: 'brackets' }), + ).toBe( + 'filters[$and][][function]=gte&filters[$and][][arguments][][function]=hour_of_day&filters[$and][][arguments][]=0&filters[$and][][function]=lte&filters[$and][][arguments][][function]=hour_of_day&filters[$and][][arguments][]=23', + ); + expect( + stringify({ filters: { $and: [p1, p2] } }, { encodeValuesOnly: true, arrayFormat: 'repeat' }), + ).toBe( + 'filters[$and][function]=gte&filters[$and][arguments][function]=hour_of_day&filters[$and][arguments]=0&filters[$and][function]=lte&filters[$and][arguments][function]=hour_of_day&filters[$and][arguments]=23', + ); + }); + + test('selects properties when filter=array', function () { + // st.equal(stringify({ a: 'b' }, { filter: ['a'] }), 'a=b'); + // st.equal(stringify({ a: 1 }, { filter: [] }), ''); + expect(stringify({ a: 'b' }, { filter: ['a'] })).toBe('a=b'); + expect(stringify({ a: 1 }, { filter: [] })).toBe(''); + + // st.equal( + // stringify( + // { a: { b: [1, 2, 3, 4], c: 'd' }, c: 'f' }, + // { filter: ['a', 'b', 0, 2], arrayFormat: 'indices' }, + // ), + // 'a%5Bb%5D%5B0%5D=1&a%5Bb%5D%5B2%5D=3', + // 'indices => indices', + // ); + // st.equal( + // stringify( + // { a: { b: [1, 2, 3, 4], c: 'd' }, c: 'f' }, + // { filter: ['a', 'b', 0, 2], arrayFormat: 'brackets' }, + // ), + // 'a%5Bb%5D%5B%5D=1&a%5Bb%5D%5B%5D=3', + // 'brackets => brackets', + // ); + // st.equal( + // stringify({ a: { b: [1, 2, 3, 4], c: 'd' }, c: 'f' }, { filter: ['a', 'b', 0, 2] }), + // 'a%5Bb%5D%5B0%5D=1&a%5Bb%5D%5B2%5D=3', + // 'default => indices', + // ); + expect(stringify({ a: { b: [1, 2, 3, 4], c: 'd' }, c: 'f' }, { filter: ['a', 'b', 0, 2] })).toBe( + 'a%5Bb%5D%5B0%5D=1&a%5Bb%5D%5B2%5D=3', + ); + expect( + stringify( + { a: { b: [1, 2, 3, 4], c: 'd' }, c: 'f' }, + { filter: ['a', 'b', 0, 2], arrayFormat: 'indices' }, + ), + ).toBe('a%5Bb%5D%5B0%5D=1&a%5Bb%5D%5B2%5D=3'); + expect( + stringify( + { a: { b: [1, 2, 3, 4], c: 'd' }, c: 'f' }, + { filter: ['a', 'b', 0, 2], arrayFormat: 'brackets' }, + ), + ).toBe('a%5Bb%5D%5B%5D=1&a%5Bb%5D%5B%5D=3'); + }); + + test('supports custom representations when filter=function', function () { + var calls = 0; + var obj = { a: 'b', c: 'd', e: { f: new Date(1257894000000) } }; + var filterFunc: StringifyOptions['filter'] = function (prefix, value) { + calls += 1; + if (calls === 1) { + // st.equal(prefix, '', 'prefix is empty'); + // st.equal(value, obj); + expect(prefix).toBe(''); + expect(value).toBe(obj); + } else if (prefix === 'c') { + return void 0; + } else if (value instanceof Date) { + // st.equal(prefix, 'e[f]'); + expect(prefix).toBe('e[f]'); + return value.getTime(); + } + return value; + }; + + // st.equal(stringify(obj, { filter: filterFunc }), 'a=b&e%5Bf%5D=1257894000000'); + // st.equal(calls, 5); + expect(stringify(obj, { filter: filterFunc })).toBe('a=b&e%5Bf%5D=1257894000000'); + expect(calls).toBe(5); + }); + + test('can disable uri encoding', function () { + // st.equal(stringify({ a: 'b' }, { encode: false }), 'a=b'); + // st.equal(stringify({ a: { b: 'c' } }, { encode: false }), 'a[b]=c'); + // st.equal( + // stringify({ a: 'b', c: null }, { strictNullHandling: true, encode: false }), + // 'a=b&c', + // ); + expect(stringify({ a: 'b' }, { encode: false })).toBe('a=b'); + expect(stringify({ a: { b: 'c' } }, { encode: false })).toBe('a[b]=c'); + expect(stringify({ a: 'b', c: null }, { strictNullHandling: true, encode: false })).toBe('a=b&c'); + }); + + test('can sort the keys', function () { + // @ts-expect-error + var sort: NonNullable = function (a: string, b: string) { + return a.localeCompare(b); + }; + // st.equal(stringify({ a: 'c', z: 'y', b: 'f' }, { sort: sort }), 'a=c&b=f&z=y'); + // st.equal( + // stringify({ a: 'c', z: { j: 'a', i: 'b' }, b: 'f' }, { sort: sort }), + // 'a=c&b=f&z%5Bi%5D=b&z%5Bj%5D=a', + // ); + expect(stringify({ a: 'c', z: 'y', b: 'f' }, { sort: sort })).toBe('a=c&b=f&z=y'); + expect(stringify({ a: 'c', z: { j: 'a', i: 'b' }, b: 'f' }, { sort: sort })).toBe( + 'a=c&b=f&z%5Bi%5D=b&z%5Bj%5D=a', + ); + }); + + test('can sort the keys at depth 3 or more too', function () { + // @ts-expect-error + var sort: NonNullable = function (a: string, b: string) { + return a.localeCompare(b); + }; + // st.equal( + // stringify( + // { a: 'a', z: { zj: { zjb: 'zjb', zja: 'zja' }, zi: { zib: 'zib', zia: 'zia' } }, b: 'b' }, + // { sort: sort, encode: false }, + // ), + // 'a=a&b=b&z[zi][zia]=zia&z[zi][zib]=zib&z[zj][zja]=zja&z[zj][zjb]=zjb', + // ); + // st.equal( + // stringify( + // { a: 'a', z: { zj: { zjb: 'zjb', zja: 'zja' }, zi: { zib: 'zib', zia: 'zia' } }, b: 'b' }, + // { sort: null, encode: false }, + // ), + // 'a=a&z[zj][zjb]=zjb&z[zj][zja]=zja&z[zi][zib]=zib&z[zi][zia]=zia&b=b', + // ); + expect( + stringify( + { a: 'a', z: { zj: { zjb: 'zjb', zja: 'zja' }, zi: { zib: 'zib', zia: 'zia' } }, b: 'b' }, + { sort: sort, encode: false }, + ), + ).toBe('a=a&b=b&z[zi][zia]=zia&z[zi][zib]=zib&z[zj][zja]=zja&z[zj][zjb]=zjb'); + expect( + stringify( + { a: 'a', z: { zj: { zjb: 'zjb', zja: 'zja' }, zi: { zib: 'zib', zia: 'zia' } }, b: 'b' }, + { sort: null, encode: false }, + ), + ).toBe('a=a&z[zj][zjb]=zjb&z[zj][zja]=zja&z[zi][zib]=zib&z[zi][zia]=zia&b=b'); + }); + + test('can stringify with custom encoding', function () { + // st.equal( + // stringify( + // { 県: '大阪府', '': '' }, + // { + // encoder: function (str) { + // if (str.length === 0) { + // return ''; + // } + // var buf = iconv.encode(str, 'shiftjis'); + // var result = []; + // for (var i = 0; i < buf.length; ++i) { + // result.push(buf.readUInt8(i).toString(16)); + // } + // return '%' + result.join('%'); + // }, + // }, + // ), + // '%8c%a7=%91%e5%8d%e3%95%7b&=', + // ); + expect( + stringify( + { 県: '大阪府', '': '' }, + { + encoder: function (str) { + if (str.length === 0) { + return ''; + } + var buf = iconv.encode(str, 'shiftjis'); + var result = []; + for (var i = 0; i < buf.length; ++i) { + result.push(buf.readUInt8(i).toString(16)); + } + return '%' + result.join('%'); + }, + }, + ), + ).toBe('%8c%a7=%91%e5%8d%e3%95%7b&='); + }); + + test('receives the default encoder as a second argument', function () { + // stringify( + // { a: 1, b: new Date(), c: true, d: [1] }, + // { + // encoder: function (str) { + // st.match(typeof str, /^(?:string|number|boolean)$/); + // return ''; + // }, + // }, + // ); + + stringify( + { a: 1, b: new Date(), c: true, d: [1] }, + { + encoder: function (str) { + // st.match(typeof str, /^(?:string|number|boolean)$/); + assert.match(typeof str, /^(?:string|number|boolean)$/); + return ''; + }, + }, + ); + }); + + test('receives the default encoder as a second argument', function () { + // stringify( + // { a: 1 }, + // { + // encoder: function (str, defaultEncoder) { + // st.equal(defaultEncoder, utils.encode); + // }, + // }, + // ); + + stringify( + { a: 1 }, + { + // @ts-ignore + encoder: function (_str, defaultEncoder) { + expect(defaultEncoder).toBe(encode); + }, + }, + ); + }); + + test('throws error with wrong encoder', function () { + // st['throws'](function () { + // stringify({}, { encoder: 'string' }); + // }, new TypeError('Encoder has to be a function.')); + // st.end(); + expect(() => { + // @ts-expect-error + stringify({}, { encoder: 'string' }); + }).toThrow(TypeError); + }); + + (typeof Buffer === 'undefined' ? test.skip : test)( + 'can use custom encoder for a buffer object', + function () { + // st.equal( + // stringify( + // { a: Buffer.from([1]) }, + // { + // encoder: function (buffer) { + // if (typeof buffer === 'string') { + // return buffer; + // } + // return String.fromCharCode(buffer.readUInt8(0) + 97); + // }, + // }, + // ), + // 'a=b', + // ); + expect( + stringify( + { a: Buffer.from([1]) }, + { + encoder: function (buffer) { + if (typeof buffer === 'string') { + return buffer; + } + return String.fromCharCode(buffer.readUInt8(0) + 97); + }, + }, + ), + ).toBe('a=b'); + + // st.equal( + // stringify( + // { a: Buffer.from('a b') }, + // { + // encoder: function (buffer) { + // return buffer; + // }, + // }, + // ), + // 'a=a b', + // ); + expect( + stringify( + { a: Buffer.from('a b') }, + { + encoder: function (buffer) { + return buffer; + }, + }, + ), + ).toBe('a=a b'); + }, + ); + + test('serializeDate option', function () { + var date = new Date(); + // st.equal( + // stringify({ a: date }), + // 'a=' + date.toISOString().replace(/:/g, '%3A'), + // 'default is toISOString', + // ); + expect(stringify({ a: date })).toBe('a=' + date.toISOString().replace(/:/g, '%3A')); + + var mutatedDate = new Date(); + mutatedDate.toISOString = function () { + throw new SyntaxError(); + }; + // st['throws'](function () { + // mutatedDate.toISOString(); + // }, SyntaxError); + expect(() => { + mutatedDate.toISOString(); + }).toThrow(SyntaxError); + // st.equal( + // stringify({ a: mutatedDate }), + // 'a=' + Date.prototype.toISOString.call(mutatedDate).replace(/:/g, '%3A'), + // 'toISOString works even when method is not locally present', + // ); + expect(stringify({ a: mutatedDate })).toBe( + 'a=' + Date.prototype.toISOString.call(mutatedDate).replace(/:/g, '%3A'), + ); + + var specificDate = new Date(6); + // st.equal( + // stringify( + // { a: specificDate }, + // { + // serializeDate: function (d) { + // return d.getTime() * 7; + // }, + // }, + // ), + // 'a=42', + // 'custom serializeDate function called', + // ); + expect( + stringify( + { a: specificDate }, + { + // @ts-ignore + serializeDate: function (d) { + return d.getTime() * 7; + }, + }, + ), + ).toBe('a=42'); + + // st.equal( + // stringify( + // { a: [date] }, + // { + // serializeDate: function (d) { + // return d.getTime(); + // }, + // arrayFormat: 'comma', + // }, + // ), + // 'a=' + date.getTime(), + // 'works with arrayFormat comma', + // ); + // st.equal( + // stringify( + // { a: [date] }, + // { + // serializeDate: function (d) { + // return d.getTime(); + // }, + // arrayFormat: 'comma', + // commaRoundTrip: true, + // }, + // ), + // 'a%5B%5D=' + date.getTime(), + // 'works with arrayFormat comma', + // ); + expect( + stringify( + { a: [date] }, + { + // @ts-expect-error + serializeDate: function (d) { + return d.getTime(); + }, + arrayFormat: 'comma', + }, + ), + ).toBe('a=' + date.getTime()); + expect( + stringify( + { a: [date] }, + { + // @ts-expect-error + serializeDate: function (d) { + return d.getTime(); + }, + arrayFormat: 'comma', + commaRoundTrip: true, + }, + ), + ).toBe('a%5B%5D=' + date.getTime()); + }); + + test('RFC 1738 serialization', function () { + // st.equal(stringify({ a: 'b c' }, { format: formats.RFC1738 }), 'a=b+c'); + // st.equal(stringify({ 'a b': 'c d' }, { format: formats.RFC1738 }), 'a+b=c+d'); + // st.equal( + // stringify({ 'a b': Buffer.from('a b') }, { format: formats.RFC1738 }), + // 'a+b=a+b', + // ); + expect(stringify({ a: 'b c' }, { format: 'RFC1738' })).toBe('a=b+c'); + expect(stringify({ 'a b': 'c d' }, { format: 'RFC1738' })).toBe('a+b=c+d'); + expect(stringify({ 'a b': Buffer.from('a b') }, { format: 'RFC1738' })).toBe('a+b=a+b'); + + // st.equal(stringify({ 'foo(ref)': 'bar' }, { format: formats.RFC1738 }), 'foo(ref)=bar'); + expect(stringify({ 'foo(ref)': 'bar' }, { format: 'RFC1738' })).toBe('foo(ref)=bar'); + }); + + test('RFC 3986 spaces serialization', function () { + // st.equal(stringify({ a: 'b c' }, { format: formats.RFC3986 }), 'a=b%20c'); + // st.equal(stringify({ 'a b': 'c d' }, { format: formats.RFC3986 }), 'a%20b=c%20d'); + // st.equal( + // stringify({ 'a b': Buffer.from('a b') }, { format: formats.RFC3986 }), + // 'a%20b=a%20b', + // ); + expect(stringify({ a: 'b c' }, { format: 'RFC3986' })).toBe('a=b%20c'); + expect(stringify({ 'a b': 'c d' }, { format: 'RFC3986' })).toBe('a%20b=c%20d'); + expect(stringify({ 'a b': Buffer.from('a b') }, { format: 'RFC3986' })).toBe('a%20b=a%20b'); + }); + + test('Backward compatibility to RFC 3986', function () { + // st.equal(stringify({ a: 'b c' }), 'a=b%20c'); + // st.equal(stringify({ 'a b': Buffer.from('a b') }), 'a%20b=a%20b'); + expect(stringify({ a: 'b c' })).toBe('a=b%20c'); + expect(stringify({ 'a b': Buffer.from('a b') })).toBe('a%20b=a%20b'); + }); + + test('Edge cases and unknown formats', function () { + ['UFO1234', false, 1234, null, {}, []].forEach(function (format) { + // st['throws'](function () { + // stringify({ a: 'b c' }, { format: format }); + // }, new TypeError('Unknown format option provided.')); + expect(() => { + // @ts-expect-error + stringify({ a: 'b c' }, { format: format }); + }).toThrow(TypeError); + }); + }); + + test('encodeValuesOnly', function () { + // st.equal( + // stringify( + // { a: 'b', c: ['d', 'e=f'], f: [['g'], ['h']] }, + // { encodeValuesOnly: true, arrayFormat: 'indices' }, + // ), + // 'a=b&c[0]=d&c[1]=e%3Df&f[0][0]=g&f[1][0]=h', + // 'encodeValuesOnly + indices', + // ); + // st.equal( + // stringify( + // { a: 'b', c: ['d', 'e=f'], f: [['g'], ['h']] }, + // { encodeValuesOnly: true, arrayFormat: 'brackets' }, + // ), + // 'a=b&c[]=d&c[]=e%3Df&f[][]=g&f[][]=h', + // 'encodeValuesOnly + brackets', + // ); + // st.equal( + // stringify( + // { a: 'b', c: ['d', 'e=f'], f: [['g'], ['h']] }, + // { encodeValuesOnly: true, arrayFormat: 'repeat' }, + // ), + // 'a=b&c=d&c=e%3Df&f=g&f=h', + // 'encodeValuesOnly + repeat', + // ); + expect( + stringify( + { a: 'b', c: ['d', 'e=f'], f: [['g'], ['h']] }, + { encodeValuesOnly: true, arrayFormat: 'indices' }, + ), + ).toBe('a=b&c[0]=d&c[1]=e%3Df&f[0][0]=g&f[1][0]=h'); + expect( + stringify( + { a: 'b', c: ['d', 'e=f'], f: [['g'], ['h']] }, + { encodeValuesOnly: true, arrayFormat: 'brackets' }, + ), + ).toBe('a=b&c[]=d&c[]=e%3Df&f[][]=g&f[][]=h'); + expect( + stringify( + { a: 'b', c: ['d', 'e=f'], f: [['g'], ['h']] }, + { encodeValuesOnly: true, arrayFormat: 'repeat' }, + ), + ).toBe('a=b&c=d&c=e%3Df&f=g&f=h'); + + // st.equal( + // stringify({ a: 'b', c: ['d', 'e'], f: [['g'], ['h']] }, { arrayFormat: 'indices' }), + // 'a=b&c%5B0%5D=d&c%5B1%5D=e&f%5B0%5D%5B0%5D=g&f%5B1%5D%5B0%5D=h', + // 'no encodeValuesOnly + indices', + // ); + // st.equal( + // stringify({ a: 'b', c: ['d', 'e'], f: [['g'], ['h']] }, { arrayFormat: 'brackets' }), + // 'a=b&c%5B%5D=d&c%5B%5D=e&f%5B%5D%5B%5D=g&f%5B%5D%5B%5D=h', + // 'no encodeValuesOnly + brackets', + // ); + // st.equal( + // stringify({ a: 'b', c: ['d', 'e'], f: [['g'], ['h']] }, { arrayFormat: 'repeat' }), + // 'a=b&c=d&c=e&f=g&f=h', + // 'no encodeValuesOnly + repeat', + // ); + expect(stringify({ a: 'b', c: ['d', 'e'], f: [['g'], ['h']] }, { arrayFormat: 'indices' })).toBe( + 'a=b&c%5B0%5D=d&c%5B1%5D=e&f%5B0%5D%5B0%5D=g&f%5B1%5D%5B0%5D=h', + ); + expect(stringify({ a: 'b', c: ['d', 'e'], f: [['g'], ['h']] }, { arrayFormat: 'brackets' })).toBe( + 'a=b&c%5B%5D=d&c%5B%5D=e&f%5B%5D%5B%5D=g&f%5B%5D%5B%5D=h', + ); + expect(stringify({ a: 'b', c: ['d', 'e'], f: [['g'], ['h']] }, { arrayFormat: 'repeat' })).toBe( + 'a=b&c=d&c=e&f=g&f=h', + ); + }); + + test('encodeValuesOnly - strictNullHandling', function () { + // st.equal( + // stringify({ a: { b: null } }, { encodeValuesOnly: true, strictNullHandling: true }), + // 'a[b]', + // ); + expect(stringify({ a: { b: null } }, { encodeValuesOnly: true, strictNullHandling: true })).toBe('a[b]'); + }); + + test('throws if an invalid charset is specified', function () { + // st['throws'](function () { + // stringify({ a: 'b' }, { charset: 'foobar' }); + // }, new TypeError('The charset option must be either utf-8, iso-8859-1, or undefined')); + expect(() => { + // @ts-expect-error + stringify({ a: 'b' }, { charset: 'foobar' }); + }).toThrow(TypeError); + }); + + test('respects a charset of iso-8859-1', function () { + // st.equal(stringify({ æ: 'æ' }, { charset: 'iso-8859-1' }), '%E6=%E6'); + expect(stringify({ æ: 'æ' }, { charset: 'iso-8859-1' })).toBe('%E6=%E6'); + }); + + test('encodes unrepresentable chars as numeric entities in iso-8859-1 mode', function () { + // st.equal(stringify({ a: '☺' }, { charset: 'iso-8859-1' }), 'a=%26%239786%3B'); + expect(stringify({ a: '☺' }, { charset: 'iso-8859-1' })).toBe('a=%26%239786%3B'); + }); + + test('respects an explicit charset of utf-8 (the default)', function () { + // st.equal(stringify({ a: 'æ' }, { charset: 'utf-8' }), 'a=%C3%A6'); + expect(stringify({ a: 'æ' }, { charset: 'utf-8' })).toBe('a=%C3%A6'); + }); + + test('`charsetSentinel` option', function () { + // st.equal( + // stringify({ a: 'æ' }, { charsetSentinel: true, charset: 'utf-8' }), + // 'utf8=%E2%9C%93&a=%C3%A6', + // 'adds the right sentinel when instructed to and the charset is utf-8', + // ); + expect(stringify({ a: 'æ' }, { charsetSentinel: true, charset: 'utf-8' })).toBe( + 'utf8=%E2%9C%93&a=%C3%A6', + ); + + // st.equal( + // stringify({ a: 'æ' }, { charsetSentinel: true, charset: 'iso-8859-1' }), + // 'utf8=%26%2310003%3B&a=%E6', + // 'adds the right sentinel when instructed to and the charset is iso-8859-1', + // ); + expect(stringify({ a: 'æ' }, { charsetSentinel: true, charset: 'iso-8859-1' })).toBe( + 'utf8=%26%2310003%3B&a=%E6', + ); + }); + + test('does not mutate the options argument', function () { + var options = {}; + stringify({}, options); + // st.deepEqual(options, {}); + expect(options).toEqual({}); + }); + + test('strictNullHandling works with custom filter', function () { + // @ts-expect-error + var filter = function (_prefix, value) { + return value; + }; + + var options = { strictNullHandling: true, filter: filter }; + // st.equal(stringify({ key: null }, options), 'key'); + expect(stringify({ key: null }, options)).toBe('key'); + }); + + test('strictNullHandling works with null serializeDate', function () { + var serializeDate = function () { + return null; + }; + var options = { strictNullHandling: true, serializeDate: serializeDate }; + var date = new Date(); + // st.equal(stringify({ key: date }, options), 'key'); + // @ts-expect-error + expect(stringify({ key: date }, options)).toBe('key'); + }); + + test('allows for encoding keys and values differently', function () { + // @ts-expect-error + var encoder = function (str, defaultEncoder, charset, type) { + if (type === 'key') { + return defaultEncoder(str, defaultEncoder, charset, type).toLowerCase(); + } + if (type === 'value') { + return defaultEncoder(str, defaultEncoder, charset, type).toUpperCase(); + } + throw 'this should never happen! type: ' + type; + }; + + // st.deepEqual(stringify({ KeY: 'vAlUe' }, { encoder: encoder }), 'key=VALUE'); + expect(stringify({ KeY: 'vAlUe' }, { encoder: encoder })).toBe('key=VALUE'); + }); + + test('objects inside arrays', function () { + var obj = { a: { b: { c: 'd', e: 'f' } } }; + var withArray = { a: { b: [{ c: 'd', e: 'f' }] } }; + + // st.equal( + // stringify(obj, { encode: false }), + // 'a[b][c]=d&a[b][e]=f', + // 'no array, no arrayFormat', + // ); + // st.equal( + // stringify(obj, { encode: false, arrayFormat: 'brackets' }), + // 'a[b][c]=d&a[b][e]=f', + // 'no array, bracket', + // ); + // st.equal( + // stringify(obj, { encode: false, arrayFormat: 'indices' }), + // 'a[b][c]=d&a[b][e]=f', + // 'no array, indices', + // ); + // st.equal( + // stringify(obj, { encode: false, arrayFormat: 'repeat' }), + // 'a[b][c]=d&a[b][e]=f', + // 'no array, repeat', + // ); + // st.equal( + // stringify(obj, { encode: false, arrayFormat: 'comma' }), + // 'a[b][c]=d&a[b][e]=f', + // 'no array, comma', + // ); + expect(stringify(obj, { encode: false })).toBe('a[b][c]=d&a[b][e]=f'); + expect(stringify(obj, { encode: false, arrayFormat: 'brackets' })).toBe('a[b][c]=d&a[b][e]=f'); + expect(stringify(obj, { encode: false, arrayFormat: 'indices' })).toBe('a[b][c]=d&a[b][e]=f'); + expect(stringify(obj, { encode: false, arrayFormat: 'repeat' })).toBe('a[b][c]=d&a[b][e]=f'); + expect(stringify(obj, { encode: false, arrayFormat: 'comma' })).toBe('a[b][c]=d&a[b][e]=f'); + + // st.equal( + // stringify(withArray, { encode: false }), + // 'a[b][0][c]=d&a[b][0][e]=f', + // 'array, no arrayFormat', + // ); + // st.equal( + // stringify(withArray, { encode: false, arrayFormat: 'brackets' }), + // 'a[b][][c]=d&a[b][][e]=f', + // 'array, bracket', + // ); + // st.equal( + // stringify(withArray, { encode: false, arrayFormat: 'indices' }), + // 'a[b][0][c]=d&a[b][0][e]=f', + // 'array, indices', + // ); + // st.equal( + // stringify(withArray, { encode: false, arrayFormat: 'repeat' }), + // 'a[b][c]=d&a[b][e]=f', + // 'array, repeat', + // ); + // st.equal( + // stringify(withArray, { encode: false, arrayFormat: 'comma' }), + // '???', + // 'array, comma', + // { skip: 'TODO: figure out what this should do' }, + // ); + expect(stringify(withArray, { encode: false })).toBe('a[b][0][c]=d&a[b][0][e]=f'); + expect(stringify(withArray, { encode: false, arrayFormat: 'brackets' })).toBe('a[b][][c]=d&a[b][][e]=f'); + expect(stringify(withArray, { encode: false, arrayFormat: 'indices' })).toBe('a[b][0][c]=d&a[b][0][e]=f'); + expect(stringify(withArray, { encode: false, arrayFormat: 'repeat' })).toBe('a[b][c]=d&a[b][e]=f'); + // !TODo: Figure out what this should do + // expect(stringify(withArray, { encode: false, arrayFormat: 'comma' })).toBe( + // 'a[b][c]=d&a[b][e]=f', + // ); + }); + + test('stringifies sparse arrays', function () { + // st.equal( + // stringify({ a: [, '2', , , '1'] }, { encodeValuesOnly: true, arrayFormat: 'indices' }), + // 'a[1]=2&a[4]=1', + // ); + // st.equal( + // stringify({ a: [, '2', , , '1'] }, { encodeValuesOnly: true, arrayFormat: 'brackets' }), + // 'a[]=2&a[]=1', + // ); + // st.equal( + // stringify({ a: [, '2', , , '1'] }, { encodeValuesOnly: true, arrayFormat: 'repeat' }), + // 'a=2&a=1', + // ); + expect(stringify({ a: [, '2', , , '1'] }, { encodeValuesOnly: true, arrayFormat: 'indices' })).toBe( + 'a[1]=2&a[4]=1', + ); + expect(stringify({ a: [, '2', , , '1'] }, { encodeValuesOnly: true, arrayFormat: 'brackets' })).toBe( + 'a[]=2&a[]=1', + ); + expect(stringify({ a: [, '2', , , '1'] }, { encodeValuesOnly: true, arrayFormat: 'repeat' })).toBe( + 'a=2&a=1', + ); + + // st.equal( + // stringify( + // { a: [, { b: [, , { c: '1' }] }] }, + // { encodeValuesOnly: true, arrayFormat: 'indices' }, + // ), + // 'a[1][b][2][c]=1', + // ); + // st.equal( + // stringify( + // { a: [, { b: [, , { c: '1' }] }] }, + // { encodeValuesOnly: true, arrayFormat: 'brackets' }, + // ), + // 'a[][b][][c]=1', + // ); + // st.equal( + // stringify( + // { a: [, { b: [, , { c: '1' }] }] }, + // { encodeValuesOnly: true, arrayFormat: 'repeat' }, + // ), + // 'a[b][c]=1', + // ); + expect( + stringify({ a: [, { b: [, , { c: '1' }] }] }, { encodeValuesOnly: true, arrayFormat: 'indices' }), + ).toBe('a[1][b][2][c]=1'); + expect( + stringify({ a: [, { b: [, , { c: '1' }] }] }, { encodeValuesOnly: true, arrayFormat: 'brackets' }), + ).toBe('a[][b][][c]=1'); + expect( + stringify({ a: [, { b: [, , { c: '1' }] }] }, { encodeValuesOnly: true, arrayFormat: 'repeat' }), + ).toBe('a[b][c]=1'); + + // st.equal( + // stringify( + // { a: [, [, , [, , , { c: '1' }]]] }, + // { encodeValuesOnly: true, arrayFormat: 'indices' }, + // ), + // 'a[1][2][3][c]=1', + // ); + // st.equal( + // stringify( + // { a: [, [, , [, , , { c: '1' }]]] }, + // { encodeValuesOnly: true, arrayFormat: 'brackets' }, + // ), + // 'a[][][][c]=1', + // ); + // st.equal( + // stringify( + // { a: [, [, , [, , , { c: '1' }]]] }, + // { encodeValuesOnly: true, arrayFormat: 'repeat' }, + // ), + // 'a[c]=1', + // ); + expect( + stringify({ a: [, [, , [, , , { c: '1' }]]] }, { encodeValuesOnly: true, arrayFormat: 'indices' }), + ).toBe('a[1][2][3][c]=1'); + expect( + stringify({ a: [, [, , [, , , { c: '1' }]]] }, { encodeValuesOnly: true, arrayFormat: 'brackets' }), + ).toBe('a[][][][c]=1'); + expect( + stringify({ a: [, [, , [, , , { c: '1' }]]] }, { encodeValuesOnly: true, arrayFormat: 'repeat' }), + ).toBe('a[c]=1'); + + // st.equal( + // stringify( + // { a: [, [, , [, , , { c: [, '1'] }]]] }, + // { encodeValuesOnly: true, arrayFormat: 'indices' }, + // ), + // 'a[1][2][3][c][1]=1', + // ); + // st.equal( + // stringify( + // { a: [, [, , [, , , { c: [, '1'] }]]] }, + // { encodeValuesOnly: true, arrayFormat: 'brackets' }, + // ), + // 'a[][][][c][]=1', + // ); + // st.equal( + // stringify( + // { a: [, [, , [, , , { c: [, '1'] }]]] }, + // { encodeValuesOnly: true, arrayFormat: 'repeat' }, + // ), + // 'a[c]=1', + // ); + expect( + stringify({ a: [, [, , [, , , { c: [, '1'] }]]] }, { encodeValuesOnly: true, arrayFormat: 'indices' }), + ).toBe('a[1][2][3][c][1]=1'); + expect( + stringify({ a: [, [, , [, , , { c: [, '1'] }]]] }, { encodeValuesOnly: true, arrayFormat: 'brackets' }), + ).toBe('a[][][][c][]=1'); + expect( + stringify({ a: [, [, , [, , , { c: [, '1'] }]]] }, { encodeValuesOnly: true, arrayFormat: 'repeat' }), + ).toBe('a[c]=1'); + }); + + test('encodes a very long string', function () { + var chars = []; + var expected = []; + for (var i = 0; i < 5e3; i++) { + chars.push(' ' + i); + + expected.push('%20' + i); + } + + var obj = { + foo: chars.join(''), + }; + + // st.equal( + // stringify(obj, { arrayFormat: 'bracket', charset: 'utf-8' }), + // 'foo=' + expected.join(''), + // ); + // @ts-expect-error + expect(stringify(obj, { arrayFormat: 'bracket', charset: 'utf-8' })).toBe('foo=' + expected.join('')); + }); +}); + +describe('stringifies empty keys', function () { + empty_test_cases.forEach(function (testCase) { + test('stringifies an object with empty string key with ' + testCase.input, function () { + // st.deepEqual( + // stringify(testCase.withEmptyKeys, { encode: false, arrayFormat: 'indices' }), + // testCase.stringifyOutput.indices, + // 'test case: ' + testCase.input + ', indices', + // ); + // st.deepEqual( + // stringify(testCase.withEmptyKeys, { encode: false, arrayFormat: 'brackets' }), + // testCase.stringifyOutput.brackets, + // 'test case: ' + testCase.input + ', brackets', + // ); + // st.deepEqual( + // stringify(testCase.withEmptyKeys, { encode: false, arrayFormat: 'repeat' }), + // testCase.stringifyOutput.repeat, + // 'test case: ' + testCase.input + ', repeat', + // ); + expect(stringify(testCase.with_empty_keys, { encode: false, arrayFormat: 'indices' })).toBe( + testCase.stringify_output.indices, + ); + expect(stringify(testCase.with_empty_keys, { encode: false, arrayFormat: 'brackets' })).toBe( + testCase.stringify_output.brackets, + ); + expect(stringify(testCase.with_empty_keys, { encode: false, arrayFormat: 'repeat' })).toBe( + testCase.stringify_output.repeat, + ); + }); + }); + + test('edge case with object/arrays', function () { + // st.deepEqual(stringify({ '': { '': [2, 3] } }, { encode: false }), '[][0]=2&[][1]=3'); + // st.deepEqual( + // stringify({ '': { '': [2, 3], a: 2 } }, { encode: false }), + // '[][0]=2&[][1]=3&[a]=2', + // ); + // st.deepEqual( + // stringify({ '': { '': [2, 3] } }, { encode: false, arrayFormat: 'indices' }), + // '[][0]=2&[][1]=3', + // ); + // st.deepEqual( + // stringify({ '': { '': [2, 3], a: 2 } }, { encode: false, arrayFormat: 'indices' }), + // '[][0]=2&[][1]=3&[a]=2', + // ); + expect(stringify({ '': { '': [2, 3] } }, { encode: false })).toBe('[][0]=2&[][1]=3'); + expect(stringify({ '': { '': [2, 3], a: 2 } }, { encode: false })).toBe('[][0]=2&[][1]=3&[a]=2'); + expect(stringify({ '': { '': [2, 3] } }, { encode: false, arrayFormat: 'indices' })).toBe( + '[][0]=2&[][1]=3', + ); + expect(stringify({ '': { '': [2, 3], a: 2 } }, { encode: false, arrayFormat: 'indices' })).toBe( + '[][0]=2&[][1]=3&[a]=2', + ); + }); +}); diff --git a/tests/qs/utils.test.ts b/tests/qs/utils.test.ts new file mode 100644 index 000000000..3df95e5bd --- /dev/null +++ b/tests/qs/utils.test.ts @@ -0,0 +1,169 @@ +import { combine, merge, is_buffer, assign_single_source } from 'openai/internal/qs/utils'; + +describe('merge()', function () { + // t.deepEqual(merge(null, true), [null, true], 'merges true into null'); + expect(merge(null, true)).toEqual([null, true]); + + // t.deepEqual(merge(null, [42]), [null, 42], 'merges null into an array'); + expect(merge(null, [42])).toEqual([null, 42]); + + // t.deepEqual( + // merge({ a: 'b' }, { a: 'c' }), + // { a: ['b', 'c'] }, + // 'merges two objects with the same key', + // ); + expect(merge({ a: 'b' }, { a: 'c' })).toEqual({ a: ['b', 'c'] }); + + var oneMerged = merge({ foo: 'bar' }, { foo: { first: '123' } }); + // t.deepEqual( + // oneMerged, + // { foo: ['bar', { first: '123' }] }, + // 'merges a standalone and an object into an array', + // ); + expect(oneMerged).toEqual({ foo: ['bar', { first: '123' }] }); + + var twoMerged = merge({ foo: ['bar', { first: '123' }] }, { foo: { second: '456' } }); + // t.deepEqual( + // twoMerged, + // { foo: { 0: 'bar', 1: { first: '123' }, second: '456' } }, + // 'merges a standalone and two objects into an array', + // ); + expect(twoMerged).toEqual({ foo: { 0: 'bar', 1: { first: '123' }, second: '456' } }); + + var sandwiched = merge({ foo: ['bar', { first: '123', second: '456' }] }, { foo: 'baz' }); + // t.deepEqual( + // sandwiched, + // { foo: ['bar', { first: '123', second: '456' }, 'baz'] }, + // 'merges an object sandwiched by two standalones into an array', + // ); + expect(sandwiched).toEqual({ foo: ['bar', { first: '123', second: '456' }, 'baz'] }); + + var nestedArrays = merge({ foo: ['baz'] }, { foo: ['bar', 'xyzzy'] }); + // t.deepEqual(nestedArrays, { foo: ['baz', 'bar', 'xyzzy'] }); + expect(nestedArrays).toEqual({ foo: ['baz', 'bar', 'xyzzy'] }); + + var noOptionsNonObjectSource = merge({ foo: 'baz' }, 'bar'); + // t.deepEqual(noOptionsNonObjectSource, { foo: 'baz', bar: true }); + expect(noOptionsNonObjectSource).toEqual({ foo: 'baz', bar: true }); + + (typeof Object.defineProperty !== 'function' ? test.skip : test)( + 'avoids invoking array setters unnecessarily', + function () { + var setCount = 0; + var getCount = 0; + var observed: any[] = []; + Object.defineProperty(observed, 0, { + get: function () { + getCount += 1; + return { bar: 'baz' }; + }, + set: function () { + setCount += 1; + }, + }); + merge(observed, [null]); + // st.equal(setCount, 0); + // st.equal(getCount, 1); + expect(setCount).toEqual(0); + expect(getCount).toEqual(1); + observed[0] = observed[0]; // eslint-disable-line no-self-assign + // st.equal(setCount, 1); + // st.equal(getCount, 2); + expect(setCount).toEqual(1); + expect(getCount).toEqual(2); + }, + ); +}); + +test('assign()', function () { + var target = { a: 1, b: 2 }; + var source = { b: 3, c: 4 }; + var result = assign_single_source(target, source); + + expect(result).toEqual(target); + expect(target).toEqual({ a: 1, b: 3, c: 4 }); + expect(source).toEqual({ b: 3, c: 4 }); +}); + +describe('combine()', function () { + test('both arrays', function () { + var a = [1]; + var b = [2]; + var combined = combine(a, b); + + // st.deepEqual(a, [1], 'a is not mutated'); + // st.deepEqual(b, [2], 'b is not mutated'); + // st.notEqual(a, combined, 'a !== combined'); + // st.notEqual(b, combined, 'b !== combined'); + // st.deepEqual(combined, [1, 2], 'combined is a + b'); + expect(a).toEqual([1]); + expect(b).toEqual([2]); + expect(combined).toEqual([1, 2]); + expect(a).not.toEqual(combined); + expect(b).not.toEqual(combined); + }); + + test('one array, one non-array', function () { + var aN = 1; + var a = [aN]; + var bN = 2; + var b = [bN]; + + var combinedAnB = combine(aN, b); + // st.deepEqual(b, [bN], 'b is not mutated'); + // st.notEqual(aN, combinedAnB, 'aN + b !== aN'); + // st.notEqual(a, combinedAnB, 'aN + b !== a'); + // st.notEqual(bN, combinedAnB, 'aN + b !== bN'); + // st.notEqual(b, combinedAnB, 'aN + b !== b'); + // st.deepEqual([1, 2], combinedAnB, 'first argument is array-wrapped when not an array'); + expect(b).toEqual([bN]); + expect(combinedAnB).not.toEqual(aN); + expect(combinedAnB).not.toEqual(a); + expect(combinedAnB).not.toEqual(bN); + expect(combinedAnB).not.toEqual(b); + expect(combinedAnB).toEqual([1, 2]); + + var combinedABn = combine(a, bN); + // st.deepEqual(a, [aN], 'a is not mutated'); + // st.notEqual(aN, combinedABn, 'a + bN !== aN'); + // st.notEqual(a, combinedABn, 'a + bN !== a'); + // st.notEqual(bN, combinedABn, 'a + bN !== bN'); + // st.notEqual(b, combinedABn, 'a + bN !== b'); + // st.deepEqual([1, 2], combinedABn, 'second argument is array-wrapped when not an array'); + expect(a).toEqual([aN]); + expect(combinedABn).not.toEqual(aN); + expect(combinedABn).not.toEqual(a); + expect(combinedABn).not.toEqual(bN); + expect(combinedABn).not.toEqual(b); + expect(combinedABn).toEqual([1, 2]); + }); + + test('neither is an array', function () { + var combined = combine(1, 2); + // st.notEqual(1, combined, '1 + 2 !== 1'); + // st.notEqual(2, combined, '1 + 2 !== 2'); + // st.deepEqual([1, 2], combined, 'both arguments are array-wrapped when not an array'); + expect(combined).not.toEqual(1); + expect(combined).not.toEqual(2); + expect(combined).toEqual([1, 2]); + }); +}); + +test('is_buffer()', function () { + for (const x of [null, undefined, true, false, '', 'abc', 42, 0, NaN, {}, [], function () {}, /a/g]) { + // t.equal(is_buffer(x), false, inspect(x) + ' is not a buffer'); + expect(is_buffer(x)).toEqual(false); + } + + var fakeBuffer = { constructor: Buffer }; + // t.equal(is_buffer(fakeBuffer), false, 'fake buffer is not a buffer'); + expect(is_buffer(fakeBuffer)).toEqual(false); + + var saferBuffer = Buffer.from('abc'); + // t.equal(is_buffer(saferBuffer), true, 'SaferBuffer instance is a buffer'); + expect(is_buffer(saferBuffer)).toEqual(true); + + var buffer = Buffer.from('abc'); + // t.equal(is_buffer(buffer), true, 'real Buffer instance is a buffer'); + expect(is_buffer(buffer)).toEqual(true); +}); diff --git a/yarn.lock b/yarn.lock index 68486892b..5a01e39e3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -881,11 +881,6 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.18.tgz#8dfb97f0da23c2293e554c5a50d61ef134d7697f" integrity sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA== -"@types/qs@^6.9.15": - version "6.9.15" - resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.15.tgz#adde8a060ec9c305a82de1babc1056e73bd64dce" - integrity sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg== - "@types/semver@^7.5.0": version "7.5.3" resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.3.tgz#9a726e116beb26c24f1ccd6850201e1246122e04" @@ -1205,12 +1200,12 @@ brace-expansion@^2.0.1: dependencies: balanced-match "^1.0.0" -braces@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== +braces@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" + integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== dependencies: - fill-range "^7.0.1" + fill-range "^7.1.1" browserslist@^4.22.2: version "4.22.2" @@ -1248,17 +1243,6 @@ bundle-name@^3.0.0: dependencies: run-applescript "^5.0.0" -call-bind@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" - integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== - dependencies: - es-define-property "^1.0.0" - es-errors "^1.3.0" - function-bind "^1.1.2" - get-intrinsic "^1.2.4" - set-function-length "^1.2.1" - callsites@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" @@ -1448,15 +1432,6 @@ default-browser@^4.0.0: execa "^7.1.1" titleize "^3.0.0" -define-data-property@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" - integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== - dependencies: - es-define-property "^1.0.0" - es-errors "^1.3.0" - gopd "^1.0.1" - define-lazy-prop@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz#dbb19adfb746d7fc6d734a06b72f4a00d021255f" @@ -1523,18 +1498,6 @@ error-ex@^1.3.1: dependencies: is-arrayish "^0.2.1" -es-define-property@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" - integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== - dependencies: - get-intrinsic "^1.2.4" - -es-errors@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" - integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== - escalade@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" @@ -1806,10 +1769,10 @@ file-entry-cache@^6.0.1: dependencies: flat-cache "^3.0.4" -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== +fill-range@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" + integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== dependencies: to-regex-range "^5.0.1" @@ -1889,17 +1852,6 @@ get-caller-file@^2.0.5: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.1.3, get-intrinsic@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" - integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== - dependencies: - es-errors "^1.3.0" - function-bind "^1.1.2" - has-proto "^1.0.1" - has-symbols "^1.0.3" - hasown "^2.0.0" - get-package-type@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" @@ -1965,13 +1917,6 @@ globby@^11.1.0: merge2 "^1.4.1" slash "^3.0.0" -gopd@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" - integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== - dependencies: - get-intrinsic "^1.1.3" - graceful-fs@^4.2.9: version "4.2.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" @@ -1992,23 +1937,6 @@ has-flag@^4.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== -has-property-descriptors@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" - integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== - dependencies: - es-define-property "^1.0.0" - -has-proto@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" - integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== - -has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== - hasown@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.0.tgz#f4c513d454a57b7c7e1650778de226b11700546c" @@ -2038,6 +1966,13 @@ humanize-ms@^1.2.1: dependencies: ms "^2.0.0" +iconv-lite@^0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + ignore@^5.2.0, ignore@^5.2.4: version "5.2.4" resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" @@ -2717,11 +2652,11 @@ merge2@^1.3.0, merge2@^1.4.1: integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== micromatch@^4.0.4: - version "4.0.5" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" - integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + version "4.0.8" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" + integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== dependencies: - braces "^3.0.2" + braces "^3.0.3" picomatch "^2.3.1" mime-db@1.51.0: @@ -2826,11 +2761,6 @@ npm-run-path@^5.1.0: dependencies: path-key "^4.0.0" -object-inspect@^1.13.1: - version "1.13.2" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.2.tgz#dea0088467fb991e67af4058147a24824a3043ff" - integrity sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g== - once@^1.3.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" @@ -3049,13 +2979,6 @@ pure-rand@^6.1.0: resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.1.0.tgz#d173cf23258231976ccbdb05247c9787957604f2" integrity sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA== -qs@^6.10.3: - version "6.13.0" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.13.0.tgz#6ca3bd58439f7e245655798997787b0d88a51906" - integrity sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg== - dependencies: - side-channel "^1.0.6" - queue-microtask@^1.2.2: version "1.2.3" resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" @@ -3142,6 +3065,11 @@ safe-buffer@~5.2.0: resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== +"safer-buffer@>= 2.1.2 < 3.0.0": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + semver@^6.3.0, semver@^6.3.1: version "6.3.1" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" @@ -3154,18 +3082,6 @@ semver@^7.5.3, semver@^7.5.4: dependencies: lru-cache "^6.0.0" -set-function-length@^1.2.1: - version "1.2.2" - resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" - integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== - dependencies: - define-data-property "^1.1.4" - es-errors "^1.3.0" - function-bind "^1.1.2" - get-intrinsic "^1.2.4" - gopd "^1.0.1" - has-property-descriptors "^1.0.2" - shebang-command@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" @@ -3178,16 +3094,6 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -side-channel@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" - integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== - dependencies: - call-bind "^1.0.7" - es-errors "^1.3.0" - get-intrinsic "^1.2.4" - object-inspect "^1.13.1" - signal-exit@^3.0.3, signal-exit@^3.0.7: version "3.0.7" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" From b5dbd622fd6029cab6020282d17d81996d3171d0 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Tue, 17 Sep 2024 12:26:15 +0100 Subject: [PATCH 547/725] chore(tests): add query string tests to ecosystem tests --- ecosystem-tests/node-js/test.js | 37 ++++++++++++++++--- .../node-ts-cjs-auto/tests/test.ts | 9 +++++ .../node-ts-cjs-web/tests/test-jsdom.ts | 9 +++++ .../node-ts-cjs-web/tests/test-node.ts | 9 +++++ .../node-ts-cjs/tests/test-jsdom.ts | 9 +++++ .../node-ts-cjs/tests/test-node.ts | 9 +++++ .../node-ts-esm-auto/tests/test.ts | 9 +++++ ecosystem-tests/node-ts-esm-web/tests/test.ts | 9 +++++ .../node-ts-esm/tests/test-esnext.ts | 9 +++++ ecosystem-tests/node-ts-esm/tests/test.ts | 9 +++++ .../node-ts4.5-jest27/tests/test.ts | 9 +++++ .../ts-browser-webpack/src/index.ts | 9 +++++ .../vercel-edge/src/uploadWebApiTestCases.ts | 11 ++++++ 13 files changed, 142 insertions(+), 5 deletions(-) diff --git a/ecosystem-tests/node-js/test.js b/ecosystem-tests/node-js/test.js index 7f9f21736..e2a26f856 100644 --- a/ecosystem-tests/node-js/test.js +++ b/ecosystem-tests/node-js/test.js @@ -1,8 +1,35 @@ -const openaiKey = "a valid OpenAI key" const OpenAI = require('openai'); -console.log(OpenAI) +const openai = new OpenAI(); -const openai = new OpenAI({ - apiKey: openaiKey, -}); +function assertEqual(actual, expected) { + if (actual === expected) { + return; + } + + console.error('expected', expected); + console.error('actual ', actual); + throw new Error('expected values to be equal'); +} + +async function main() { + const completion = await openai.chat.completions.create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + }); + if (!completion.choices[0].message.content) { + console.dir(completion, { depth: 4 }); + throw new Error('no response content!'); + } + + assertEqual( + decodeURIComponent(openai.stringifyQuery({ foo: { nested: { a: true, b: 'foo' } } })), + 'foo[nested][a]=true&foo[nested][b]=foo', + ); + assertEqual( + decodeURIComponent(openai.stringifyQuery({ foo: { nested: { a: ['hello', 'world'] } } })), + 'foo[nested][a][]=hello&foo[nested][a][]=world', + ); +} + +main(); diff --git a/ecosystem-tests/node-ts-cjs-auto/tests/test.ts b/ecosystem-tests/node-ts-cjs-auto/tests/test.ts index 84c99ee5a..203afba5a 100644 --- a/ecosystem-tests/node-ts-cjs-auto/tests/test.ts +++ b/ecosystem-tests/node-ts-cjs-auto/tests/test.ts @@ -257,3 +257,12 @@ describe('toFile', () => { expect(result.filename).toEqual('finetune.jsonl'); }); }); + +test('query strings', () => { + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: true, b: 'foo' } } })), + ).toEqual('foo[nested][a]=true&foo[nested][b]=foo'); + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: ['hello', 'world'] } } })), + ).toEqual('foo[nested][a][]=hello&foo[nested][a][]=world'); +}); diff --git a/ecosystem-tests/node-ts-cjs-web/tests/test-jsdom.ts b/ecosystem-tests/node-ts-cjs-web/tests/test-jsdom.ts index adcb44858..e7b6be07d 100644 --- a/ecosystem-tests/node-ts-cjs-web/tests/test-jsdom.ts +++ b/ecosystem-tests/node-ts-cjs-web/tests/test-jsdom.ts @@ -164,3 +164,12 @@ describe.skip('toFile', () => { expect(result.filename).toEqual('finetune.jsonl'); }); }); + +test('query strings', () => { + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: true, b: 'foo' } } })), + ).toEqual('foo[nested][a]=true&foo[nested][b]=foo'); + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: ['hello', 'world'] } } })), + ).toEqual('foo[nested][a][]=hello&foo[nested][a][]=world'); +}); diff --git a/ecosystem-tests/node-ts-cjs-web/tests/test-node.ts b/ecosystem-tests/node-ts-cjs-web/tests/test-node.ts index 1784f8d5e..668e65332 100644 --- a/ecosystem-tests/node-ts-cjs-web/tests/test-node.ts +++ b/ecosystem-tests/node-ts-cjs-web/tests/test-node.ts @@ -151,3 +151,12 @@ describe('toFile', () => { expect(result.filename).toEqual('finetune.jsonl'); }); }); + +test('query strings', () => { + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: true, b: 'foo' } } })), + ).toEqual('foo[nested][a]=true&foo[nested][b]=foo'); + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: ['hello', 'world'] } } })), + ).toEqual('foo[nested][a][]=hello&foo[nested][a][]=world'); +}); diff --git a/ecosystem-tests/node-ts-cjs/tests/test-jsdom.ts b/ecosystem-tests/node-ts-cjs/tests/test-jsdom.ts index 9908e45f8..15b9df7c9 100644 --- a/ecosystem-tests/node-ts-cjs/tests/test-jsdom.ts +++ b/ecosystem-tests/node-ts-cjs/tests/test-jsdom.ts @@ -144,3 +144,12 @@ describe.skip('toFile', () => { expect(result.filename).toEqual('finetune.jsonl'); }); }); + +test('query strings', () => { + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: true, b: 'foo' } } })), + ).toEqual('foo[nested][a]=true&foo[nested][b]=foo'); + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: ['hello', 'world'] } } })), + ).toEqual('foo[nested][a][]=hello&foo[nested][a][]=world'); +}); diff --git a/ecosystem-tests/node-ts-cjs/tests/test-node.ts b/ecosystem-tests/node-ts-cjs/tests/test-node.ts index 5ece57019..3f6e5d572 100644 --- a/ecosystem-tests/node-ts-cjs/tests/test-node.ts +++ b/ecosystem-tests/node-ts-cjs/tests/test-node.ts @@ -192,3 +192,12 @@ describe('toFile', () => { expect(result.filename).toEqual('finetune.jsonl'); }); }); + +test('query strings', () => { + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: true, b: 'foo' } } })), + ).toEqual('foo[nested][a]=true&foo[nested][b]=foo'); + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: ['hello', 'world'] } } })), + ).toEqual('foo[nested][a][]=hello&foo[nested][a][]=world'); +}); diff --git a/ecosystem-tests/node-ts-esm-auto/tests/test.ts b/ecosystem-tests/node-ts-esm-auto/tests/test.ts index d28bc2b37..88beb2f54 100644 --- a/ecosystem-tests/node-ts-esm-auto/tests/test.ts +++ b/ecosystem-tests/node-ts-esm-auto/tests/test.ts @@ -194,3 +194,12 @@ describe('toFile', () => { expect(result.filename).toEqual('finetune.jsonl'); }); }); + +test('query strings', () => { + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: true, b: 'foo' } } })), + ).toEqual('foo[nested][a]=true&foo[nested][b]=foo'); + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: ['hello', 'world'] } } })), + ).toEqual('foo[nested][a][]=hello&foo[nested][a][]=world'); +}); diff --git a/ecosystem-tests/node-ts-esm-web/tests/test.ts b/ecosystem-tests/node-ts-esm-web/tests/test.ts index e0055c89f..675fb9a73 100644 --- a/ecosystem-tests/node-ts-esm-web/tests/test.ts +++ b/ecosystem-tests/node-ts-esm-web/tests/test.ts @@ -152,3 +152,12 @@ describe('toFile', () => { expect(result.filename).toEqual('finetune.jsonl'); }); }); + +test('query strings', () => { + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: true, b: 'foo' } } })), + ).toEqual('foo[nested][a]=true&foo[nested][b]=foo'); + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: ['hello', 'world'] } } })), + ).toEqual('foo[nested][a][]=hello&foo[nested][a][]=world'); +}); diff --git a/ecosystem-tests/node-ts-esm/tests/test-esnext.ts b/ecosystem-tests/node-ts-esm/tests/test-esnext.ts index d3b77971e..05cdd1047 100644 --- a/ecosystem-tests/node-ts-esm/tests/test-esnext.ts +++ b/ecosystem-tests/node-ts-esm/tests/test-esnext.ts @@ -64,3 +64,12 @@ it(`raw response`, async function () { const json: ChatCompletion = JSON.parse(chunks.join('')); expect(json.choices[0]?.message.content || '').toBeSimilarTo('This is a test', 10); }); + +test('query strings', () => { + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: true, b: 'foo' } } })), + ).toEqual('foo[nested][a]=true&foo[nested][b]=foo'); + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: ['hello', 'world'] } } })), + ).toEqual('foo[nested][a][]=hello&foo[nested][a][]=world'); +}); diff --git a/ecosystem-tests/node-ts-esm/tests/test.ts b/ecosystem-tests/node-ts-esm/tests/test.ts index 906220e95..7694a9874 100644 --- a/ecosystem-tests/node-ts-esm/tests/test.ts +++ b/ecosystem-tests/node-ts-esm/tests/test.ts @@ -173,3 +173,12 @@ describe('toFile', () => { expect(result.filename).toEqual('finetune.jsonl'); }); }); + +test('query strings', () => { + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: true, b: 'foo' } } })), + ).toEqual('foo[nested][a]=true&foo[nested][b]=foo'); + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: ['hello', 'world'] } } })), + ).toEqual('foo[nested][a][]=hello&foo[nested][a][]=world'); +}); diff --git a/ecosystem-tests/node-ts4.5-jest27/tests/test.ts b/ecosystem-tests/node-ts4.5-jest27/tests/test.ts index 5ece57019..3f6e5d572 100644 --- a/ecosystem-tests/node-ts4.5-jest27/tests/test.ts +++ b/ecosystem-tests/node-ts4.5-jest27/tests/test.ts @@ -192,3 +192,12 @@ describe('toFile', () => { expect(result.filename).toEqual('finetune.jsonl'); }); }); + +test('query strings', () => { + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: true, b: 'foo' } } })), + ).toEqual('foo[nested][a]=true&foo[nested][b]=foo'); + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: ['hello', 'world'] } } })), + ).toEqual('foo[nested][a][]=hello&foo[nested][a][]=world'); +}); diff --git a/ecosystem-tests/ts-browser-webpack/src/index.ts b/ecosystem-tests/ts-browser-webpack/src/index.ts index b7821f568..75fb6ea7a 100644 --- a/ecosystem-tests/ts-browser-webpack/src/index.ts +++ b/ecosystem-tests/ts-browser-webpack/src/index.ts @@ -209,4 +209,13 @@ describe('toFile', () => { }); }); +it('handles query strings', () => { + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: true, b: 'foo' } } })), + ).toEqual('foo[nested][a]=true&foo[nested][b]=foo'); + expect( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: ['hello', 'world'] } } })), + ).toEqual('foo[nested][a][]=hello&foo[nested][a][]=world'); +}); + runTests(); diff --git a/ecosystem-tests/vercel-edge/src/uploadWebApiTestCases.ts b/ecosystem-tests/vercel-edge/src/uploadWebApiTestCases.ts index 3f2c6b468..eb8be0030 100644 --- a/ecosystem-tests/vercel-edge/src/uploadWebApiTestCases.ts +++ b/ecosystem-tests/vercel-edge/src/uploadWebApiTestCases.ts @@ -180,4 +180,15 @@ export function uploadWebApiTestCases({ expectEqual(result.filename, 'finetune.jsonl'); }); } + + it('handles query strings', async () => { + expectEqual( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: true, b: 'foo' } } })), + 'foo[nested][a]=true&foo[nested][b]=foo', + ); + expectEqual( + decodeURIComponent((client as any).stringifyQuery({ foo: { nested: { a: ['hello', 'world'] } } })), + 'foo[nested][a][]=hello&foo[nested][a][]=world', + ); + }); } From 40e82841e6aac7c2c103053bf017d043cac6b8dc Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 13:03:36 +0000 Subject: [PATCH 548/725] chore(internal): fix some types (#1082) --- src/internal/qs/stringify.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/internal/qs/stringify.ts b/src/internal/qs/stringify.ts index d0c450341..67497561a 100644 --- a/src/internal/qs/stringify.ts +++ b/src/internal/qs/stringify.ts @@ -204,7 +204,7 @@ function inner_stringify( strictNullHandling, skipNulls, encodeDotInKeys, - // @ts-expect-error + // @ts-ignore generateArrayPrefix === 'comma' && encodeValuesOnly && is_array(obj) ? null : encoder, filter, sort, @@ -224,7 +224,7 @@ function inner_stringify( function normalize_stringify_options( opts: StringifyOptions = defaults, -): NonNullableProperties { +): NonNullableProperties> & { indices?: boolean } { if (typeof opts.allowEmptyArrays !== 'undefined' && typeof opts.allowEmptyArrays !== 'boolean') { throw new TypeError('`allowEmptyArrays` option can only be `true` or `false`, when provided'); } @@ -299,7 +299,7 @@ function normalize_stringify_options( formatter: formatter, serializeDate: typeof opts.serializeDate === 'function' ? opts.serializeDate : defaults.serializeDate, skipNulls: typeof opts.skipNulls === 'boolean' ? opts.skipNulls : defaults.skipNulls, - // @ts-expect-error + // @ts-ignore sort: typeof opts.sort === 'function' ? opts.sort : null, strictNullHandling: typeof opts.strictNullHandling === 'boolean' ? opts.strictNullHandling : defaults.strictNullHandling, From 0341ff618866200f0cc33a61037fe789338be799 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Tue, 3 Sep 2024 16:22:30 +0100 Subject: [PATCH 549/725] chore(internal): add ecosystem test for qs reproduction --- ecosystem-tests/cli.ts | 8 + ecosystem-tests/nodenext-tsup/index.ts | 41 + .../nodenext-tsup/package-lock.json | 2078 +++++++++++++++++ ecosystem-tests/nodenext-tsup/package.json | 16 + ecosystem-tests/nodenext-tsup/tsconfig.json | 18 + ecosystem-tests/nodenext-tsup/tsup.config.ts | 7 + 6 files changed, 2168 insertions(+) create mode 100644 ecosystem-tests/nodenext-tsup/index.ts create mode 100644 ecosystem-tests/nodenext-tsup/package-lock.json create mode 100644 ecosystem-tests/nodenext-tsup/package.json create mode 100644 ecosystem-tests/nodenext-tsup/tsconfig.json create mode 100644 ecosystem-tests/nodenext-tsup/tsup.config.ts diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index 2d9702112..550512634 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -34,6 +34,14 @@ const projectRunners = { await installPackage(); await run('node', ['test.js']); }, + 'nodenext-tsup': async () => { + await installPackage(); + await run('npm', ['run', 'build']); + + if (state.live) { + await run('npm', ['run', 'main']); + } + }, 'ts-browser-webpack': async () => { await installPackage(); diff --git a/ecosystem-tests/nodenext-tsup/index.ts b/ecosystem-tests/nodenext-tsup/index.ts new file mode 100644 index 000000000..f70568435 --- /dev/null +++ b/ecosystem-tests/nodenext-tsup/index.ts @@ -0,0 +1,41 @@ +import { OpenAI } from 'openai'; + +const openai = new OpenAI(); + +function assertEqual(actual: any, expected: any) { + if (actual === expected) { + return; + } + + console.error('expected', expected); + console.error('actual ', actual); + throw new Error('expected values to be equal'); +} + +async function main() { + const completion = await openai.chat.completions.create({ + model: 'gpt-4o-mini', + messages: [ + { + role: 'user', + content: 'What is the capital of the United States?', + }, + ], + }); + // smoke test for responses + if (!completion.choices[0]?.message.content) { + console.dir(completion, { depth: 4 }); + throw new Error('no response content!'); + } + + assertEqual( + decodeURIComponent((openai as any).stringifyQuery({ foo: { nested: { a: true, b: 'foo' } } })), + 'foo[nested][a]=true&foo[nested][b]=foo', + ); + assertEqual( + decodeURIComponent((openai as any).stringifyQuery({ foo: { nested: { a: ['hello', 'world'] } } })), + 'foo[nested][a][]=hello&foo[nested][a][]=world', + ); +} + +main(); diff --git a/ecosystem-tests/nodenext-tsup/package-lock.json b/ecosystem-tests/nodenext-tsup/package-lock.json new file mode 100644 index 000000000..8f4729374 --- /dev/null +++ b/ecosystem-tests/nodenext-tsup/package-lock.json @@ -0,0 +1,2078 @@ +{ + "name": "nodenext-tsup", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "nodenext-tsup", + "devDependencies": { + "tsup": "^8.2.4" + }, + "peerDependencies": { + "typescript": "^5.5.4" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.23.1.tgz", + "integrity": "sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.23.1.tgz", + "integrity": "sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.23.1.tgz", + "integrity": "sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.23.1.tgz", + "integrity": "sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.23.1.tgz", + "integrity": "sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.23.1.tgz", + "integrity": "sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.23.1.tgz", + "integrity": "sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.23.1.tgz", + "integrity": "sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.23.1.tgz", + "integrity": "sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.23.1.tgz", + "integrity": "sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.23.1.tgz", + "integrity": "sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.23.1.tgz", + "integrity": "sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.23.1.tgz", + "integrity": "sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.23.1.tgz", + "integrity": "sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.23.1.tgz", + "integrity": "sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.23.1.tgz", + "integrity": "sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.23.1.tgz", + "integrity": "sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.23.1.tgz", + "integrity": "sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.23.1.tgz", + "integrity": "sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.23.1.tgz", + "integrity": "sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.23.1.tgz", + "integrity": "sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.23.1.tgz", + "integrity": "sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.23.1.tgz", + "integrity": "sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.23.1.tgz", + "integrity": "sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.21.2.tgz", + "integrity": "sha512-fSuPrt0ZO8uXeS+xP3b+yYTCBUd05MoSp2N/MFOgjhhUhMmchXlpTQrTpI8T+YAwAQuK7MafsCOxW7VrPMrJcg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.21.2.tgz", + "integrity": "sha512-xGU5ZQmPlsjQS6tzTTGwMsnKUtu0WVbl0hYpTPauvbRAnmIvpInhJtgjj3mcuJpEiuUw4v1s4BimkdfDWlh7gA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.21.2.tgz", + "integrity": "sha512-99AhQ3/ZMxU7jw34Sq8brzXqWH/bMnf7ZVhvLk9QU2cOepbQSVTns6qoErJmSiAvU3InRqC2RRZ5ovh1KN0d0Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.21.2.tgz", + "integrity": "sha512-ZbRaUvw2iN/y37x6dY50D8m2BnDbBjlnMPotDi/qITMJ4sIxNY33HArjikDyakhSv0+ybdUxhWxE6kTI4oX26w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.21.2.tgz", + "integrity": "sha512-ztRJJMiE8nnU1YFcdbd9BcH6bGWG1z+jP+IPW2oDUAPxPjo9dverIOyXz76m6IPA6udEL12reYeLojzW2cYL7w==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.21.2.tgz", + "integrity": "sha512-flOcGHDZajGKYpLV0JNc0VFH361M7rnV1ee+NTeC/BQQ1/0pllYcFmxpagltANYt8FYf9+kL6RSk80Ziwyhr7w==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.21.2.tgz", + "integrity": "sha512-69CF19Kp3TdMopyteO/LJbWufOzqqXzkrv4L2sP8kfMaAQ6iwky7NoXTp7bD6/irKgknDKM0P9E/1l5XxVQAhw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.21.2.tgz", + "integrity": "sha512-48pD/fJkTiHAZTnZwR0VzHrao70/4MlzJrq0ZsILjLW/Ab/1XlVUStYyGt7tdyIiVSlGZbnliqmult/QGA2O2w==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.21.2.tgz", + "integrity": "sha512-cZdyuInj0ofc7mAQpKcPR2a2iu4YM4FQfuUzCVA2u4HI95lCwzjoPtdWjdpDKyHxI0UO82bLDoOaLfpZ/wviyQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.21.2.tgz", + "integrity": "sha512-RL56JMT6NwQ0lXIQmMIWr1SW28z4E4pOhRRNqwWZeXpRlykRIlEpSWdsgNWJbYBEWD84eocjSGDu/XxbYeCmwg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.21.2.tgz", + "integrity": "sha512-PMxkrWS9z38bCr3rWvDFVGD6sFeZJw4iQlhrup7ReGmfn7Oukrr/zweLhYX6v2/8J6Cep9IEA/SmjXjCmSbrMQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.21.2.tgz", + "integrity": "sha512-B90tYAUoLhU22olrafY3JQCFLnT3NglazdwkHyxNDYF/zAxJt5fJUB/yBoWFoIQ7SQj+KLe3iL4BhOMa9fzgpw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.21.2.tgz", + "integrity": "sha512-7twFizNXudESmC9oneLGIUmoHiiLppz/Xs5uJQ4ShvE6234K0VB1/aJYU3f/4g7PhssLGKBVCC37uRkkOi8wjg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.21.2.tgz", + "integrity": "sha512-9rRero0E7qTeYf6+rFh3AErTNU1VCQg2mn7CQcI44vNUWM9Ze7MSRS/9RFuSsox+vstRt97+x3sOhEey024FRQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.21.2.tgz", + "integrity": "sha512-5rA4vjlqgrpbFVVHX3qkrCo/fZTj1q0Xxpg+Z7yIo3J2AilW7t2+n6Q8Jrx+4MrYpAnjttTYF8rr7bP46BPzRw==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.2.tgz", + "integrity": "sha512-6UUxd0+SKomjdzuAcp+HAmxw1FlGBnl1v2yEPSabtx4lBfdXHDVsW7+lQkgz9cNFJGY3AWR7+V8P5BqkD9L9nA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "dev": true + }, + "node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/bundle-require": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/bundle-require/-/bundle-require-5.0.0.tgz", + "integrity": "sha512-GuziW3fSSmopcx4KRymQEJVbZUfqlCqcq7dvs6TYwKRZiegK/2buMxQTPs6MGlNv50wms1699qYO54R8XfRX4w==", + "dev": true, + "dependencies": { + "load-tsconfig": "^0.2.3" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "peerDependencies": { + "esbuild": ">=0.18" + } + }, + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "dev": true, + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", + "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/debug/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/esbuild": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.23.1.tgz", + "integrity": "sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.23.1", + "@esbuild/android-arm": "0.23.1", + "@esbuild/android-arm64": "0.23.1", + "@esbuild/android-x64": "0.23.1", + "@esbuild/darwin-arm64": "0.23.1", + "@esbuild/darwin-x64": "0.23.1", + "@esbuild/freebsd-arm64": "0.23.1", + "@esbuild/freebsd-x64": "0.23.1", + "@esbuild/linux-arm": "0.23.1", + "@esbuild/linux-arm64": "0.23.1", + "@esbuild/linux-ia32": "0.23.1", + "@esbuild/linux-loong64": "0.23.1", + "@esbuild/linux-mips64el": "0.23.1", + "@esbuild/linux-ppc64": "0.23.1", + "@esbuild/linux-riscv64": "0.23.1", + "@esbuild/linux-s390x": "0.23.1", + "@esbuild/linux-x64": "0.23.1", + "@esbuild/netbsd-x64": "0.23.1", + "@esbuild/openbsd-arm64": "0.23.1", + "@esbuild/openbsd-x64": "0.23.1", + "@esbuild/sunos-x64": "0.23.1", + "@esbuild/win32-arm64": "0.23.1", + "@esbuild/win32-ia32": "0.23.1", + "@esbuild/win32-x64": "0.23.1" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/foreground-child": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/joycon": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/joycon/-/joycon-3.1.1.tgz", + "integrity": "sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lilconfig": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", + "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/load-tsconfig": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/load-tsconfig/-/load-tsconfig-0.2.5.tgz", + "integrity": "sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", + "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", + "dev": true + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz", + "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-load-config": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-6.0.1.tgz", + "integrity": "sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "lilconfig": "^3.1.1" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "jiti": ">=1.21.0", + "postcss": ">=8.0.9", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + }, + "postcss": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.21.2.tgz", + "integrity": "sha512-e3TapAgYf9xjdLvKQCkQTnbTKd4a6jwlpQSJJFokHGaX2IVjoEqkIIhiQfqsi0cdwlOD+tQGuOd5AJkc5RngBw==", + "dev": true, + "dependencies": { + "@types/estree": "1.0.5" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.21.2", + "@rollup/rollup-android-arm64": "4.21.2", + "@rollup/rollup-darwin-arm64": "4.21.2", + "@rollup/rollup-darwin-x64": "4.21.2", + "@rollup/rollup-linux-arm-gnueabihf": "4.21.2", + "@rollup/rollup-linux-arm-musleabihf": "4.21.2", + "@rollup/rollup-linux-arm64-gnu": "4.21.2", + "@rollup/rollup-linux-arm64-musl": "4.21.2", + "@rollup/rollup-linux-powerpc64le-gnu": "4.21.2", + "@rollup/rollup-linux-riscv64-gnu": "4.21.2", + "@rollup/rollup-linux-s390x-gnu": "4.21.2", + "@rollup/rollup-linux-x64-gnu": "4.21.2", + "@rollup/rollup-linux-x64-musl": "4.21.2", + "@rollup/rollup-win32-arm64-msvc": "4.21.2", + "@rollup/rollup-win32-ia32-msvc": "4.21.2", + "@rollup/rollup-win32-x64-msvc": "4.21.2", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", + "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", + "dev": true, + "dependencies": { + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/source-map/node_modules/tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/source-map/node_modules/webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "dev": true + }, + "node_modules/source-map/node_modules/whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dev": true, + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true, + "bin": { + "tree-kill": "cli.js" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true + }, + "node_modules/tsup": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/tsup/-/tsup-8.2.4.tgz", + "integrity": "sha512-akpCPePnBnC/CXgRrcy72ZSntgIEUa1jN0oJbbvpALWKNOz1B7aM+UVDWGRGIO/T/PZugAESWDJUAb5FD48o8Q==", + "dev": true, + "dependencies": { + "bundle-require": "^5.0.0", + "cac": "^6.7.14", + "chokidar": "^3.6.0", + "consola": "^3.2.3", + "debug": "^4.3.5", + "esbuild": "^0.23.0", + "execa": "^5.1.1", + "globby": "^11.1.0", + "joycon": "^3.1.1", + "picocolors": "^1.0.1", + "postcss-load-config": "^6.0.1", + "resolve-from": "^5.0.0", + "rollup": "^4.19.0", + "source-map": "0.8.0-beta.0", + "sucrase": "^3.35.0", + "tree-kill": "^1.2.2" + }, + "bin": { + "tsup": "dist/cli-default.js", + "tsup-node": "dist/cli-node.js" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@microsoft/api-extractor": "^7.36.0", + "@swc/core": "^1", + "postcss": "^8.4.12", + "typescript": ">=4.5.0" + }, + "peerDependenciesMeta": { + "@microsoft/api-extractor": { + "optional": true + }, + "@swc/core": { + "optional": true + }, + "postcss": { + "optional": true + }, + "typescript": { + "optional": true + } + } + }, + "node_modules/typescript": { + "version": "5.5.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.4.tgz", + "integrity": "sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + } + } +} diff --git a/ecosystem-tests/nodenext-tsup/package.json b/ecosystem-tests/nodenext-tsup/package.json new file mode 100644 index 000000000..ddef80219 --- /dev/null +++ b/ecosystem-tests/nodenext-tsup/package.json @@ -0,0 +1,16 @@ +{ + "name": "nodenext-tsup", + "module": "index.ts", + "type": "module", + "scripts": { + "build": "tsup", + "main": "npm run build && node dist/index.cjs" + }, + "dependencies": {}, + "devDependencies": { + "tsup": "^8.2.4" + }, + "peerDependencies": { + "typescript": "^5.5.4" + } +} diff --git a/ecosystem-tests/nodenext-tsup/tsconfig.json b/ecosystem-tests/nodenext-tsup/tsconfig.json new file mode 100644 index 000000000..49111f4a1 --- /dev/null +++ b/ecosystem-tests/nodenext-tsup/tsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "declaration": true, + "declarationMap": true, + "esModuleInterop": true, + "incremental": false, + "isolatedModules": true, + "lib": ["es2022", "DOM", "DOM.Iterable"], + "module": "NodeNext", + "moduleDetection": "force", + "moduleResolution": "NodeNext", + "noUncheckedIndexedAccess": true, + "resolveJsonModule": true, + "skipLibCheck": true, + "strict": true, + "target": "ES2022" + } +} diff --git a/ecosystem-tests/nodenext-tsup/tsup.config.ts b/ecosystem-tests/nodenext-tsup/tsup.config.ts new file mode 100644 index 000000000..657cd79fa --- /dev/null +++ b/ecosystem-tests/nodenext-tsup/tsup.config.ts @@ -0,0 +1,7 @@ +import { defineConfig } from "tsup"; + +export default defineConfig({ + entry: ["index.ts"], + noExternal: ["openai"], + platform: "neutral", +}); From 7110f07cb79f27f69341b01b75f8a1f102ceab21 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 16:41:48 +0000 Subject: [PATCH 550/725] release: 4.62.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 16 ++++++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 21 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8f32b4daf..281a52027 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.61.1" + ".": "4.62.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fc81d615..87fff3e15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## 4.62.0 (2024-09-17) + +Full Changelog: [v4.61.1...v4.62.0](https://github.com/openai/openai-node/compare/v4.61.1...v4.62.0) + +### Features + +* **client:** add ._request_id property to object responses ([#1078](https://github.com/openai/openai-node/issues/1078)) ([d5c2131](https://github.com/openai/openai-node/commit/d5c21314449091dd1c668c7358b25e041466f588)) + + +### Chores + +* **internal:** add ecosystem test for qs reproduction ([0199dd8](https://github.com/openai/openai-node/commit/0199dd85981497fac2b60f786acc00ea30683897)) +* **internal:** add query string encoder ([#1079](https://github.com/openai/openai-node/issues/1079)) ([f870682](https://github.com/openai/openai-node/commit/f870682d5c490182547c428b0b5c75da0e34d15a)) +* **internal:** fix some types ([#1082](https://github.com/openai/openai-node/issues/1082)) ([1ec41a7](https://github.com/openai/openai-node/commit/1ec41a7d768502a31abb33bf86b0539e5b4b6541)) +* **tests:** add query string tests to ecosystem tests ([36be724](https://github.com/openai/openai-node/commit/36be724384401bb697d8b07b0a1965be721cfa51)) + ## 4.61.1 (2024-09-16) Full Changelog: [v4.61.0...v4.61.1](https://github.com/openai/openai-node/compare/v4.61.0...v4.61.1) diff --git a/README.md b/README.md index b3de7fa55..88774c05b 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.61.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.62.0/mod.ts'; ``` diff --git a/package.json b/package.json index a65c9d6ba..69dab3ea5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.61.1", + "version": "4.62.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 641b61c02..e773b7fc5 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.61.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.62.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 6c1e0cb8e..70b394b16 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.61.1'; // x-release-please-version +export const VERSION = '4.62.0'; // x-release-please-version From 30a90ccca338c468aefcf98af703a9792ce424f2 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 18 Sep 2024 13:43:47 +0000 Subject: [PATCH 551/725] fix(types): remove leftover polyfill usage (#1084) --- src/_shims/node-types.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_shims/node-types.d.ts b/src/_shims/node-types.d.ts index b31698f78..c159e5fa7 100644 --- a/src/_shims/node-types.d.ts +++ b/src/_shims/node-types.d.ts @@ -7,7 +7,7 @@ import * as fd from 'formdata-node'; export { type Agent } from 'node:http'; export { type Readable } from 'node:stream'; export { type ReadStream as FsReadStream } from 'node:fs'; -export { ReadableStream } from 'web-streams-polyfill'; +export { ReadableStream } from 'node:stream/web'; export const fetch: typeof nf.default; From 17ef084839dc3a152fb489b5c1fcad4280b98edc Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 18 Sep 2024 13:44:15 +0000 Subject: [PATCH 552/725] release: 4.62.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 281a52027..7a0305307 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.62.0" + ".": "4.62.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 87fff3e15..cdf113343 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.62.1 (2024-09-18) + +Full Changelog: [v4.62.0...v4.62.1](https://github.com/openai/openai-node/compare/v4.62.0...v4.62.1) + +### Bug Fixes + +* **types:** remove leftover polyfill usage ([#1084](https://github.com/openai/openai-node/issues/1084)) ([b7c9538](https://github.com/openai/openai-node/commit/b7c9538981a11005fb0a00774683d979d3ca663a)) + ## 4.62.0 (2024-09-17) Full Changelog: [v4.61.1...v4.62.0](https://github.com/openai/openai-node/compare/v4.61.1...v4.62.0) diff --git a/README.md b/README.md index 88774c05b..55e6c291d 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.62.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.62.1/mod.ts'; ``` diff --git a/package.json b/package.json index 69dab3ea5..146f1e6f9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.62.0", + "version": "4.62.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index e773b7fc5..ef51b1e45 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.62.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.62.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 70b394b16..1cfad9ed4 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.62.0'; // x-release-please-version +export const VERSION = '4.62.1'; // x-release-please-version From e5b3d50d9cdf57c023dbead988617d8abcdb99a5 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 19 Sep 2024 16:11:32 +0000 Subject: [PATCH 553/725] feat(client): send retry count header (#1087) --- src/core.ts | 16 ++++++++++++---- tests/index.test.ts | 25 +++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 4 deletions(-) diff --git a/src/core.ts b/src/core.ts index 90714d3ce..877ae8de1 100644 --- a/src/core.ts +++ b/src/core.ts @@ -308,7 +308,10 @@ export abstract class APIClient { return null; } - buildRequest(options: FinalRequestOptions): { req: RequestInit; url: string; timeout: number } { + buildRequest( + options: FinalRequestOptions, + { retryCount = 0 }: { retryCount?: number } = {}, + ): { req: RequestInit; url: string; timeout: number } { const { method, path, query, headers: headers = {} } = options; const body = @@ -340,7 +343,7 @@ export abstract class APIClient { headers[this.idempotencyHeader] = options.idempotencyKey; } - const reqHeaders = this.buildHeaders({ options, headers, contentLength }); + const reqHeaders = this.buildHeaders({ options, headers, contentLength, retryCount }); const req: RequestInit = { method, @@ -359,10 +362,12 @@ export abstract class APIClient { options, headers, contentLength, + retryCount, }: { options: FinalRequestOptions; headers: Record; contentLength: string | null | undefined; + retryCount: number; }): Record { const reqHeaders: Record = {}; if (contentLength) { @@ -378,6 +383,8 @@ export abstract class APIClient { delete reqHeaders['content-type']; } + reqHeaders['x-stainless-retry-count'] = String(retryCount); + this.validateHeaders(reqHeaders, headers); return reqHeaders; @@ -429,13 +436,14 @@ export abstract class APIClient { retriesRemaining: number | null, ): Promise { const options = await optionsInput; + const maxRetries = options.maxRetries ?? this.maxRetries; if (retriesRemaining == null) { - retriesRemaining = options.maxRetries ?? this.maxRetries; + retriesRemaining = maxRetries; } await this.prepareOptions(options); - const { req, url, timeout } = this.buildRequest(options); + const { req, url, timeout } = this.buildRequest(options, { retryCount: maxRetries - retriesRemaining }); await this.prepareRequest(req, { url, options }); diff --git a/tests/index.test.ts b/tests/index.test.ts index cd5f2a0a9..a6fa97199 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -241,6 +241,31 @@ describe('retries', () => { expect(count).toEqual(3); }); + test('retry count header', async () => { + let count = 0; + let capturedRequest: RequestInit | undefined; + const testFetch = async (url: RequestInfo, init: RequestInit = {}): Promise => { + count++; + if (count <= 2) { + return new Response(undefined, { + status: 429, + headers: { + 'Retry-After': '0.1', + }, + }); + } + capturedRequest = init; + return new Response(JSON.stringify({ a: 1 }), { headers: { 'Content-Type': 'application/json' } }); + }; + + const client = new OpenAI({ apiKey: 'My API Key', fetch: testFetch, maxRetries: 4 }); + + expect(await client.request({ path: '/foo', method: 'get' })).toEqual({ a: 1 }); + + expect((capturedRequest!.headers as Headers)['x-stainless-retry-count']).toEqual('2'); + expect(count).toEqual(3); + }); + test('retry on 429 with retry-after', async () => { let count = 0; const testFetch = async (url: RequestInfo, { signal }: RequestInit = {}): Promise => { From 8b9624400d799ce690e2a394a7ef3b76fbca1dfa Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 19 Sep 2024 16:21:05 +0000 Subject: [PATCH 554/725] chore(types): improve type name for embedding models (#1089) --- .stats.yml | 2 +- api.md | 1 + src/index.ts | 1 + src/resources/embeddings.ts | 5 ++++- src/resources/index.ts | 8 +++++++- 5 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.stats.yml b/.stats.yml index 2fc39385e..0151c5a10 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-ff407aa10917e62f2b0c12d1ad2c4f1258ed083bd45753c70eaaf5b1cf8356ae.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-de1981b64ac229493473670d618500c6362c195f1057eb7de00bd1bc9184fbd5.yml diff --git a/api.md b/api.md index 7fb8f86a6..f38ab69be 100644 --- a/api.md +++ b/api.md @@ -64,6 +64,7 @@ Types: - CreateEmbeddingResponse - Embedding +- EmbeddingModel Methods: diff --git a/src/index.ts b/src/index.ts index b52406f6c..7fed1dc8c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -276,6 +276,7 @@ export namespace OpenAI { export import Embeddings = API.Embeddings; export import CreateEmbeddingResponse = API.CreateEmbeddingResponse; export import Embedding = API.Embedding; + export import EmbeddingModel = API.EmbeddingModel; export import EmbeddingCreateParams = API.EmbeddingCreateParams; export import Files = API.Files; diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index f72b9308a..6d8e670a7 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -77,6 +77,8 @@ export interface Embedding { object: 'embedding'; } +export type EmbeddingModel = 'text-embedding-ada-002' | 'text-embedding-3-small' | 'text-embedding-3-large'; + export interface EmbeddingCreateParams { /** * Input text to embed, encoded as a string or array of tokens. To embed multiple @@ -96,7 +98,7 @@ export interface EmbeddingCreateParams { * [Model overview](https://platform.openai.com/docs/models/overview) for * descriptions of them. */ - model: (string & {}) | 'text-embedding-ada-002' | 'text-embedding-3-small' | 'text-embedding-3-large'; + model: (string & {}) | EmbeddingModel; /** * The number of dimensions the resulting output embeddings should have. Only @@ -121,5 +123,6 @@ export interface EmbeddingCreateParams { export namespace Embeddings { export import CreateEmbeddingResponse = EmbeddingsAPI.CreateEmbeddingResponse; export import Embedding = EmbeddingsAPI.Embedding; + export import EmbeddingModel = EmbeddingsAPI.EmbeddingModel; export import EmbeddingCreateParams = EmbeddingsAPI.EmbeddingCreateParams; } diff --git a/src/resources/index.ts b/src/resources/index.ts index a78808584..68bd88a31 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -22,7 +22,13 @@ export { CompletionCreateParamsStreaming, Completions, } from './completions'; -export { CreateEmbeddingResponse, Embedding, EmbeddingCreateParams, Embeddings } from './embeddings'; +export { + CreateEmbeddingResponse, + Embedding, + EmbeddingModel, + EmbeddingCreateParams, + Embeddings, +} from './embeddings'; export { FileContent, FileDeleted, From ee1e4504d74f456800b671d163ad506f73846cca Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 20 Sep 2024 05:06:35 +0000 Subject: [PATCH 555/725] release: 4.63.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7a0305307..541459357 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.62.1" + ".": "4.63.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index cdf113343..a9677f6d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.63.0 (2024-09-20) + +Full Changelog: [v4.62.1...v4.63.0](https://github.com/openai/openai-node/compare/v4.62.1...v4.63.0) + +### Features + +* **client:** send retry count header ([#1087](https://github.com/openai/openai-node/issues/1087)) ([7bcebc0](https://github.com/openai/openai-node/commit/7bcebc0e3965c2decd1dffb1e67f5197260ca89e)) + + +### Chores + +* **types:** improve type name for embedding models ([#1089](https://github.com/openai/openai-node/issues/1089)) ([d6966d9](https://github.com/openai/openai-node/commit/d6966d9872a14b7fbee85a7bb1fae697852b8ce0)) + ## 4.62.1 (2024-09-18) Full Changelog: [v4.62.0...v4.62.1](https://github.com/openai/openai-node/compare/v4.62.0...v4.62.1) diff --git a/README.md b/README.md index 55e6c291d..b2a3bc4b4 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.62.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.63.0/mod.ts'; ``` diff --git a/package.json b/package.json index 146f1e6f9..831169e2d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.62.1", + "version": "4.63.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index ef51b1e45..f006e3f3f 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.62.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.63.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 1cfad9ed4..ee209cb0e 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.62.1'; // x-release-please-version +export const VERSION = '4.63.0'; // x-release-please-version From 5ecdeae16716106ae5c3fa7c8235633c98ad3dd9 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Mon, 23 Sep 2024 18:49:47 +0100 Subject: [PATCH 556/725] chore(internal): fix slow ecosystem test (#1093) --- ecosystem-tests/ts-browser-webpack/.babelrc | 6 +- .../ts-browser-webpack/package-lock.json | 4516 +++++++++-------- .../ts-browser-webpack/package.json | 12 +- .../ts-browser-webpack/webpack.config.js | 12 +- 4 files changed, 2478 insertions(+), 2068 deletions(-) diff --git a/ecosystem-tests/ts-browser-webpack/.babelrc b/ecosystem-tests/ts-browser-webpack/.babelrc index c13c5f627..248fa61e3 100644 --- a/ecosystem-tests/ts-browser-webpack/.babelrc +++ b/ecosystem-tests/ts-browser-webpack/.babelrc @@ -1,3 +1,7 @@ { - "presets": ["es2015"] + "presets": [ + "@babel/preset-env", // Automatically determines the Babel plugins and polyfills you need based on your target environments + "@babel/preset-typescript" // If you're using TypeScript, this preset will enable TypeScript transformation + ], + "plugins": [] } diff --git a/ecosystem-tests/ts-browser-webpack/package-lock.json b/ecosystem-tests/ts-browser-webpack/package-lock.json index 686d0c2f9..695b85955 100644 --- a/ecosystem-tests/ts-browser-webpack/package-lock.json +++ b/ecosystem-tests/ts-browser-webpack/package-lock.json @@ -8,17 +8,17 @@ "name": "ts-browser-webpack", "version": "0.0.1", "devDependencies": { - "babel-core": "^6.26.3", + "@babel/core": "^7.21.0", + "@babel/preset-env": "^7.21.0", + "@babel/preset-typescript": "^7.21.0", "babel-loader": "^9.1.2", - "babel-preset-es2015": "^6.24.1", "fastest-levenshtein": "^1.0.16", - "force": "^0.0.3", "html-webpack-plugin": "^5.5.3", - "puppeteer": "^20.8.3", + "puppeteer": "^23.4.0", "start-server-and-test": "^2.0.0", "ts-loader": "^9.4.3", "ts-node": "^10.9.1", - "typescript": "4.7.4", + "typescript": "^4.7.4", "webpack": "^5.87.0", "webpack-cli": "^5.0.2", "webpack-dev-server": "^4.15.1" @@ -29,7 +29,6 @@ "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", "dev": true, - "peer": true, "dependencies": { "@jridgewell/gen-mapping": "^0.3.0", "@jridgewell/trace-mapping": "^0.3.9" @@ -39,24 +38,23 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.22.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", - "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", + "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", "dev": true, "dependencies": { - "@babel/highlight": "^7.22.13", - "chalk": "^2.4.2" + "@babel/highlight": "^7.24.7", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.22.9", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz", - "integrity": "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.4.tgz", + "integrity": "sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==", "dev": true, - "peer": true, "engines": { "node": ">=6.9.0" } @@ -66,7 +64,6 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.11.tgz", "integrity": "sha512-lh7RJrtPdhibbxndr6/xx0w8+CVlY5FJZiaSz908Fpy+G0xkBFTvwLcKJFF4PJxVfGhVWNebikpWGnOoC71juQ==", "dev": true, - "peer": true, "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.22.10", @@ -93,31 +90,54 @@ } }, "node_modules/@babel/generator": { - "version": "7.22.10", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz", - "integrity": "sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.6.tgz", + "integrity": "sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==", "dev": true, - "peer": true, "dependencies": { - "@babel/types": "^7.22.10", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", + "@babel/types": "^7.25.6", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", + "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.22.10", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz", - "integrity": "sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz", + "integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==", "dev": true, - "peer": true, "dependencies": { - "@babel/compat-data": "^7.22.9", - "@babel/helper-validator-option": "^7.22.5", - "browserslist": "^4.21.9", + "@babel/compat-data": "^7.25.2", + "@babel/helper-validator-option": "^7.24.8", + "browserslist": "^4.23.1", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, @@ -125,68 +145,189 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", - "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.4.tgz", + "integrity": "sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==", "dev": true, - "peer": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.8", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/helper-replace-supers": "^7.25.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/traverse": "^7.25.4", + "semver": "^6.3.1" + }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-function-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", - "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.2.tgz", + "integrity": "sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==", "dev": true, - "peer": true, "dependencies": { - "@babel/template": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/helper-annotate-as-pure": "^7.24.7", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "dev": true, + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dev": true, + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", + "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz", + "integrity": "sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==", "dev": true, - "peer": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.24.8", + "@babel/types": "^7.24.8" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", - "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", + "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", "dev": true, - "peer": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.22.9", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz", - "integrity": "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz", + "integrity": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7", + "@babel/traverse": "^7.25.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", + "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", + "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.0.tgz", + "integrity": "sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-wrap-function": "^7.25.0", + "@babel/traverse": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz", + "integrity": "sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==", "dev": true, - "peer": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-module-imports": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/helper-validator-identifier": "^7.22.5" + "@babel/helper-member-expression-to-functions": "^7.24.8", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/traverse": "^7.25.0" }, "engines": { "node": ">=6.9.0" @@ -196,56 +337,68 @@ } }, "node_modules/@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", + "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", "dev": true, - "peer": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", - "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", + "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", "dev": true, - "peer": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", - "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", + "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", "dev": true, - "peer": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", - "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", + "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", - "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", + "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", "dev": true, - "peer": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.0.tgz", + "integrity": "sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.0", + "@babel/types": "^7.25.0" + }, "engines": { "node": ">=6.9.0" } @@ -255,7 +408,6 @@ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.11.tgz", "integrity": "sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==", "dev": true, - "peer": true, "dependencies": { "@babel/template": "^7.22.5", "@babel/traverse": "^7.22.11", @@ -266,25 +418,28 @@ } }, "node_modules/@babel/highlight": { - "version": "7.22.13", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz", - "integrity": "sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", + "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", "dev": true, "dependencies": { - "@babel/helper-validator-identifier": "^7.22.5", + "@babel/helper-validator-identifier": "^7.24.7", "chalk": "^2.4.2", - "js-tokens": "^4.0.0" + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { - "version": "7.22.14", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.14.tgz", - "integrity": "sha512-1KucTHgOvaw/LzCVrEOAyXkr9rQlp0A1HiHRYnSUE9dmb8PvPW7o5sscg+5169r54n3vGlbx6GevTE/Iw/P3AQ==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.6.tgz", + "integrity": "sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==", "dev": true, - "peer": true, + "dependencies": { + "@babel/types": "^7.25.6" + }, "bin": { "parser": "bin/babel-parser.js" }, @@ -292,1603 +447,2338 @@ "node": ">=6.0.0" } }, - "node_modules/@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.25.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.3.tgz", + "integrity": "sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==", "dev": true, - "peer": true, "dependencies": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.3" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/traverse": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.11.tgz", - "integrity": "sha512-mzAenteTfomcB7mfPtyi+4oe5BZ6MXxWcn4CX+h4IRJ+OOGXBrWU6jDQavkQI9Vuc5P+donFabBfFCcmWka9lQ==", + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.0.tgz", + "integrity": "sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==", "dev": true, - "peer": true, "dependencies": { - "@babel/code-frame": "^7.22.10", - "@babel/generator": "^7.22.10", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.22.11", - "@babel/types": "^7.22.11", - "debug": "^4.1.0", - "globals": "^11.1.0" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/types": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.11.tgz", - "integrity": "sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg==", + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.0.tgz", + "integrity": "sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==", "dev": true, - "peer": true, "dependencies": { - "@babel/helper-string-parser": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "to-fast-properties": "^2.0.0" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", + "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", "dev": true, "dependencies": { - "@jridgewell/trace-mapping": "0.3.9" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.7" }, "engines": { - "node": ">=12" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" } }, - "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.0.tgz", + "integrity": "sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==", "dev": true, "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@discoveryjs/json-ext": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", - "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", "dev": true, "engines": { - "node": ">=10.0.0" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@hapi/hoek": { - "version": "9.3.0", - "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", - "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", - "dev": true - }, - "node_modules/@hapi/topo": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", - "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, "dependencies": { - "@hapi/hoek": "^9.0.0" + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@babel/helper-plugin-utils": "^7.12.13" }, - "engines": { - "node": ">=6.0.0" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", - "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, "engines": { - "node": ">=6.0.0" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", "dev": true, - "engines": { - "node": ">=6.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", - "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", "dev": true, "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", - "dev": true - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.19", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", - "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.25.6.tgz", + "integrity": "sha512-aABl0jHw9bZ2karQ/uUD6XP4u0SG22SJrOHFoL6XB1R7dTovOP4TzTlsxOYC5yQ1pdscVK2JTUnF6QL3ARoAiQ==", "dev": true, "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@leichtgewicht/ip-codec": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", - "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", - "dev": true - }, - "node_modules/@puppeteer/browsers": { - "version": "1.4.6", - "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-1.4.6.tgz", - "integrity": "sha512-x4BEjr2SjOPowNeiguzjozQbsc6h437ovD/wu+JpaenxVLm3jkgzHY2xOslMTp50HoTvQreMjiexiGQw1sqZlQ==", + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.25.6.tgz", + "integrity": "sha512-sXaDXaJN9SNLymBdlWFA+bjzBhFD617ZaFiY13dGt7TVslVvVgA6fkZOP7Ki3IGElC45lwHdOTrCtKZGVAWeLQ==", "dev": true, "dependencies": { - "debug": "4.3.4", - "extract-zip": "2.0.1", - "progress": "2.0.3", - "proxy-agent": "6.3.0", - "tar-fs": "3.0.4", - "unbzip2-stream": "1.4.3", - "yargs": "17.7.1" - }, - "bin": { - "browsers": "lib/cjs/main-cli.js" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { - "node": ">=16.3.0" + "node": ">=6.9.0" }, "peerDependencies": { - "typescript": ">= 4.7.4" + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@sideway/address": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz", - "integrity": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==", + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, "dependencies": { - "@hapi/hoek": "^9.0.0" + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@sideway/formula": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", - "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==", - "dev": true - }, - "node_modules/@sideway/pinpoint": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", - "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", - "dev": true - }, - "node_modules/@tootallnate/quickjs-emscripten": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz", - "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==", - "dev": true - }, - "node_modules/@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", - "dev": true - }, - "node_modules/@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "dev": true - }, - "node_modules/@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "dev": true - }, - "node_modules/@tsconfig/node16": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", - "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", - "dev": true - }, - "node_modules/@types/body-parser": { - "version": "1.19.2", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", - "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz", + "integrity": "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==", "dev": true, "dependencies": { - "@types/connect": "*", - "@types/node": "*" + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/bonjour": { - "version": "3.5.10", - "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", - "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, "dependencies": { - "@types/node": "*" + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/connect": { - "version": "3.4.35", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", - "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, "dependencies": { - "@types/node": "*" + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/connect-history-api-fallback": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz", - "integrity": "sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==", + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, "dependencies": { - "@types/express-serve-static-core": "*", - "@types/node": "*" + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/eslint": { - "version": "8.44.2", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.2.tgz", - "integrity": "sha512-sdPRb9K6iL5XZOmBubg8yiFp5yS/JdUDQsq5e6h95km91MCYMuvp7mh1fjPEYUhvHepKpZOjnEaMBR4PxjWDzg==", + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/estree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", - "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", - "dev": true - }, - "node_modules/@types/express": { - "version": "4.17.17", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", - "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, "dependencies": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.33", - "@types/qs": "*", - "@types/serve-static": "*" + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/express-serve-static-core": { - "version": "4.17.36", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.36.tgz", - "integrity": "sha512-zbivROJ0ZqLAtMzgzIUC4oNqDG9iF0lSsAqpOD9kbs5xcIM3dTiyuHvBc7R8MtWBp3AAWGaovJa+wzWPjLYW7Q==", + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", "dev": true, "dependencies": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*", - "@types/send": "*" + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/html-minifier-terser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", - "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", - "dev": true - }, - "node_modules/@types/http-errors": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.1.tgz", - "integrity": "sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==", - "dev": true - }, - "node_modules/@types/http-proxy": { - "version": "1.17.11", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", - "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, "dependencies": { - "@types/node": "*" + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/json-schema": { - "version": "7.0.12", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", - "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", - "dev": true - }, - "node_modules/@types/mime": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", - "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", - "dev": true - }, - "node_modules/@types/node": { - "version": "20.5.7", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.7.tgz", - "integrity": "sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==", - "dev": true - }, - "node_modules/@types/qs": { - "version": "6.9.8", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.8.tgz", - "integrity": "sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg==", - "dev": true - }, - "node_modules/@types/range-parser": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", - "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", - "dev": true - }, - "node_modules/@types/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", - "dev": true - }, - "node_modules/@types/send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz", - "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==", + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.4.tgz", + "integrity": "sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg==", "dev": true, "dependencies": { - "@types/mime": "^1", - "@types/node": "*" + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", "dev": true, "dependencies": { - "@types/express": "*" + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@types/serve-static": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.2.tgz", - "integrity": "sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==", + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", + "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", "dev": true, "dependencies": { - "@types/http-errors": "*", - "@types/mime": "*", - "@types/node": "*" + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/sockjs": { - "version": "0.3.33", - "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", - "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.4.tgz", + "integrity": "sha512-jz8cV2XDDTqjKPwVPJBIjORVEmSGYhdRa8e5k5+vN+uwcjSrSxUaebBRa4ko1jqNF2uxyg8G6XYk30Jv285xzg==", "dev": true, "dependencies": { - "@types/node": "*" + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-remap-async-to-generator": "^7.25.0", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/traverse": "^7.25.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/ws": { - "version": "8.5.5", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", - "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz", + "integrity": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==", "dev": true, "dependencies": { - "@types/node": "*" + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-remap-async-to-generator": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", + "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", "dev": true, - "optional": true, "dependencies": { - "@types/node": "*" + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.0.tgz", + "integrity": "sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==", "dev": true, "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", - "dev": true - }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", - "dev": true - }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", - "dev": true - }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.4.tgz", + "integrity": "sha512-nZeZHyCWPfjkdU5pA/uHiTaDAFUEqkpzf1YoQT2NeSynCGYq9rxfyI3XpQbfx/a0hSnFH6TGlEXvae5Vi7GD8g==", "dev": true, "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@xtuc/long": "4.2.2" + "@babel/helper-create-class-features-plugin": "^7.25.4", + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", - "dev": true - }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz", + "integrity": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" } }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "node_modules/@babel/plugin-transform-classes": { + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.4.tgz", + "integrity": "sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg==", "dev": true, "dependencies": { - "@xtuc/ieee754": "^1.2.0" + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-compilation-targets": "^7.25.2", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-replace-supers": "^7.25.0", + "@babel/traverse": "^7.25.4", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", + "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", "dev": true, "dependencies": { - "@xtuc/long": "4.2.2" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/template": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", - "dev": true - }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.8.tgz", + "integrity": "sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", + "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", + "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.0.tgz", + "integrity": "sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@babel/helper-create-regexp-features-plugin": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz", + "integrity": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@xtuc/long": "4.2.2" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webpack-cli/configtest": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.1.1.tgz", - "integrity": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==", + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", + "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", "dev": true, + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, "engines": { - "node": ">=14.15.0" + "node": ">=6.9.0" }, "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webpack-cli/info": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.2.tgz", - "integrity": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==", + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz", + "integrity": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==", "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, "engines": { - "node": ">=14.15.0" + "node": ">=6.9.0" }, "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@webpack-cli/serve": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-2.0.5.tgz", - "integrity": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==", + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz", + "integrity": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==", "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + }, "engines": { - "node": ">=14.15.0" + "node": ">=6.9.0" }, "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" - }, - "peerDependenciesMeta": { - "webpack-dev-server": { - "optional": true - } + "@babel/core": "^7.0.0-0" } }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "dev": true - }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.25.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.1.tgz", + "integrity": "sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==", "dev": true, "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.1" }, "engines": { - "node": ">= 0.6" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/acorn": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", - "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz", + "integrity": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==", "dev": true, - "bin": { - "acorn": "bin/acorn" + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-json-strings": "^7.8.3" }, "engines": { - "node": ">=0.4.0" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "node_modules/@babel/plugin-transform-literals": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.2.tgz", + "integrity": "sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==", "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, "peerDependencies": { - "acorn": "^8" + "@babel/core": "^7.0.0-0" } }, - "node_modules/acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz", + "integrity": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==", "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, "engines": { - "node": ">=0.4.0" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", + "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", "dev": true, "dependencies": { - "debug": "^4.3.4" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { - "node": ">= 14" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", + "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz", + "integrity": "sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==", "dev": true, "dependencies": { - "ajv": "^8.0.0" + "@babel/helper-module-transforms": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-simple-access": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" }, "peerDependencies": { - "ajv": "^8.0.0" + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.0.tgz", + "integrity": "sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", + "@babel/traverse": "^7.25.0" }, - "peerDependenciesMeta": { - "ajv": { - "optional": true - } + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/ajv-formats/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", + "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/ajv-formats/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", + "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", + "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, "peerDependencies": { - "ajv": "^6.9.1" + "@babel/core": "^7.0.0-0" } }, - "node_modules/ansi-html-community": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", - "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz", + "integrity": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==", "dev": true, - "engines": [ - "node >= 0.8.0" - ], - "bin": { - "ansi-html": "bin/ansi-html" + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz", + "integrity": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==", "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, "engines": { - "node": ">=8" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz", + "integrity": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==", "dev": true, "dependencies": { - "color-convert": "^1.9.0" + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.24.7" }, "engines": { - "node": ">=4" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", + "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", "dev": true, "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7" }, "engines": { - "node": ">= 8" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", - "dev": true + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz", + "integrity": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.8.tgz", + "integrity": "sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", - "dev": true + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz", + "integrity": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/asn1": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", - "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.4.tgz", + "integrity": "sha512-ao8BG7E2b/URaUQGqN3Tlsg+M3KlHY6rJ1O1gXAEUnZoyNQnvKyH87Kfg+FoxSeyWUB8ISZZsC91C44ZuBFytw==", "dev": true, "dependencies": { - "safer-buffer": "~2.1.0" + "@babel/helper-create-class-features-plugin": "^7.25.4", + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz", + "integrity": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==", "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, "engines": { - "node": ">=0.8" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/ast-types": { - "version": "0.13.4", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", - "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", + "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", "dev": true, "dependencies": { - "tslib": "^2.0.1" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { - "node": ">=4" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", + "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "regenerator-transform": "^0.15.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator/node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", + "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", + "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", + "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", + "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", + "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.8.tgz", + "integrity": "sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.2.tgz", + "integrity": "sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-syntax-typescript": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", + "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz", + "integrity": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", + "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.4.tgz", + "integrity": "sha512-qesBxiWkgN1Q+31xUE9RcMk79eOXXDCv6tfyGMRSs4RGlioSg2WVyQAm07k726cSE56pa+Kb0y9epX2qaXzTvA==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.2", + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.25.4.tgz", + "integrity": "sha512-W9Gyo+KmcxjGahtt3t9fb14vFRWvPpu5pT6GBlovAK6BTBcxgjfVMSQCfJl4oi35ODrxP6xx2Wr8LNST57Mraw==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.25.4", + "@babel/helper-compilation-targets": "^7.25.2", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-validator-option": "^7.24.8", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.3", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.0", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.0", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.7", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.0", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.24.7", + "@babel/plugin-syntax-import-attributes": "^7.24.7", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.24.7", + "@babel/plugin-transform-async-generator-functions": "^7.25.4", + "@babel/plugin-transform-async-to-generator": "^7.24.7", + "@babel/plugin-transform-block-scoped-functions": "^7.24.7", + "@babel/plugin-transform-block-scoping": "^7.25.0", + "@babel/plugin-transform-class-properties": "^7.25.4", + "@babel/plugin-transform-class-static-block": "^7.24.7", + "@babel/plugin-transform-classes": "^7.25.4", + "@babel/plugin-transform-computed-properties": "^7.24.7", + "@babel/plugin-transform-destructuring": "^7.24.8", + "@babel/plugin-transform-dotall-regex": "^7.24.7", + "@babel/plugin-transform-duplicate-keys": "^7.24.7", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.0", + "@babel/plugin-transform-dynamic-import": "^7.24.7", + "@babel/plugin-transform-exponentiation-operator": "^7.24.7", + "@babel/plugin-transform-export-namespace-from": "^7.24.7", + "@babel/plugin-transform-for-of": "^7.24.7", + "@babel/plugin-transform-function-name": "^7.25.1", + "@babel/plugin-transform-json-strings": "^7.24.7", + "@babel/plugin-transform-literals": "^7.25.2", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", + "@babel/plugin-transform-member-expression-literals": "^7.24.7", + "@babel/plugin-transform-modules-amd": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.8", + "@babel/plugin-transform-modules-systemjs": "^7.25.0", + "@babel/plugin-transform-modules-umd": "^7.24.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", + "@babel/plugin-transform-new-target": "^7.24.7", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", + "@babel/plugin-transform-numeric-separator": "^7.24.7", + "@babel/plugin-transform-object-rest-spread": "^7.24.7", + "@babel/plugin-transform-object-super": "^7.24.7", + "@babel/plugin-transform-optional-catch-binding": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.8", + "@babel/plugin-transform-parameters": "^7.24.7", + "@babel/plugin-transform-private-methods": "^7.25.4", + "@babel/plugin-transform-private-property-in-object": "^7.24.7", + "@babel/plugin-transform-property-literals": "^7.24.7", + "@babel/plugin-transform-regenerator": "^7.24.7", + "@babel/plugin-transform-reserved-words": "^7.24.7", + "@babel/plugin-transform-shorthand-properties": "^7.24.7", + "@babel/plugin-transform-spread": "^7.24.7", + "@babel/plugin-transform-sticky-regex": "^7.24.7", + "@babel/plugin-transform-template-literals": "^7.24.7", + "@babel/plugin-transform-typeof-symbol": "^7.24.8", + "@babel/plugin-transform-unicode-escapes": "^7.24.7", + "@babel/plugin-transform-unicode-property-regex": "^7.24.7", + "@babel/plugin-transform-unicode-regex": "^7.24.7", + "@babel/plugin-transform-unicode-sets-regex": "^7.25.4", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.6", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "core-js-compat": "^3.37.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.24.7.tgz", + "integrity": "sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-syntax-jsx": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.7", + "@babel/plugin-transform-typescript": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", + "dev": true + }, + "node_modules/@babel/runtime": { + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.6.tgz", + "integrity": "sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==", + "dev": true, + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime/node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", + "dev": true + }, + "node_modules/@babel/template": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", + "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/parser": "^7.25.0", + "@babel/types": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.6.tgz", + "integrity": "sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.25.6", + "@babel/parser": "^7.25.6", + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.6", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.6.tgz", + "integrity": "sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", + "dev": true + }, + "node_modules/@hapi/topo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", + "dev": true + }, + "node_modules/@puppeteer/browsers": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.4.0.tgz", + "integrity": "sha512-x8J1csfIygOwf6D6qUAZ0ASk3z63zPb7wkNeHRerCMh82qWKUrOgkuP005AJC8lDL6/evtXETGEJVcwykKT4/g==", + "dev": true, + "dependencies": { + "debug": "^4.3.6", + "extract-zip": "^2.0.1", + "progress": "^2.0.3", + "proxy-agent": "^6.4.0", + "semver": "^7.6.3", + "tar-fs": "^3.0.6", + "unbzip2-stream": "^1.4.3", + "yargs": "^17.7.2" + }, + "bin": { + "browsers": "lib/cjs/main-cli.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@puppeteer/browsers/node_modules/debug": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@puppeteer/browsers/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/@puppeteer/browsers/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@sideway/address": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz", + "integrity": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@sideway/formula": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", + "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==", + "dev": true + }, + "node_modules/@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", + "dev": true + }, + "node_modules/@tootallnate/quickjs-emscripten": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz", + "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==", + "dev": true + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true + }, + "node_modules/@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "dev": true, + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect-history-api-fallback": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz", + "integrity": "sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==", + "dev": true, + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "node_modules/@types/eslint": { + "version": "8.44.2", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.2.tgz", + "integrity": "sha512-sdPRb9K6iL5XZOmBubg8yiFp5yS/JdUDQsq5e6h95km91MCYMuvp7mh1fjPEYUhvHepKpZOjnEaMBR4PxjWDzg==", + "dev": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "dev": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", + "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", + "dev": true + }, + "node_modules/@types/express": { + "version": "4.17.17", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", + "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", + "dev": true, + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.17.36", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.36.tgz", + "integrity": "sha512-zbivROJ0ZqLAtMzgzIUC4oNqDG9iF0lSsAqpOD9kbs5xcIM3dTiyuHvBc7R8MtWBp3AAWGaovJa+wzWPjLYW7Q==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", + "dev": true + }, + "node_modules/@types/http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==", + "dev": true + }, + "node_modules/@types/http-proxy": { + "version": "1.17.11", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", + "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", + "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", + "dev": true + }, + "node_modules/@types/mime": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", + "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", + "dev": true + }, + "node_modules/@types/node": { + "version": "20.5.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.7.tgz", + "integrity": "sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==", + "dev": true + }, + "node_modules/@types/qs": { + "version": "6.9.8", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.8.tgz", + "integrity": "sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg==", "dev": true }, - "node_modules/aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", - "dev": true, - "engines": { - "node": "*" - } + "node_modules/@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "dev": true }, - "node_modules/aws4": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", - "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==", + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", "dev": true }, - "node_modules/axios": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", - "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", + "node_modules/@types/send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz", + "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==", "dev": true, "dependencies": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" + "@types/mime": "^1", + "@types/node": "*" } }, - "node_modules/axios/node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "node_modules/@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", "dev": true, "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" + "@types/express": "*" } }, - "node_modules/b4a": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.4.tgz", - "integrity": "sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==", - "dev": true - }, - "node_modules/babel-code-frame": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", - "integrity": "sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==", + "node_modules/@types/serve-static": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.2.tgz", + "integrity": "sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==", "dev": true, "dependencies": { - "chalk": "^1.1.3", - "esutils": "^2.0.2", - "js-tokens": "^3.0.2" - } - }, - "node_modules/babel-code-frame/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/babel-code-frame/node_modules/ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "@types/http-errors": "*", + "@types/mime": "*", + "@types/node": "*" } }, - "node_modules/babel-code-frame/node_modules/chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "node_modules/@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", "dev": true, "dependencies": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" + "@types/node": "*" } }, - "node_modules/babel-code-frame/node_modules/js-tokens": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", - "integrity": "sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==", - "dev": true - }, - "node_modules/babel-code-frame/node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "node_modules/@types/ws": { + "version": "8.5.5", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz", + "integrity": "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==", "dev": true, "dependencies": { - "ansi-regex": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" + "@types/node": "*" } }, - "node_modules/babel-code-frame/node_modules/supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "node_modules/@types/yauzl": { + "version": "2.10.3", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz", + "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==", "dev": true, - "engines": { - "node": ">=0.8.0" + "optional": true, + "dependencies": { + "@types/node": "*" } }, - "node_modules/babel-core": { - "version": "6.26.3", - "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz", - "integrity": "sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==", - "dev": true, - "dependencies": { - "babel-code-frame": "^6.26.0", - "babel-generator": "^6.26.0", - "babel-helpers": "^6.24.1", - "babel-messages": "^6.23.0", - "babel-register": "^6.26.0", - "babel-runtime": "^6.26.0", - "babel-template": "^6.26.0", - "babel-traverse": "^6.26.0", - "babel-types": "^6.26.0", - "babylon": "^6.18.0", - "convert-source-map": "^1.5.1", - "debug": "^2.6.9", - "json5": "^0.5.1", - "lodash": "^4.17.4", - "minimatch": "^3.0.4", - "path-is-absolute": "^1.0.1", - "private": "^0.1.8", - "slash": "^1.0.0", - "source-map": "^0.5.7" - } - }, - "node_modules/babel-core/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/@webassemblyjs/ast": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "dev": true, "dependencies": { - "ms": "2.0.0" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, - "node_modules/babel-core/node_modules/json5": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", - "integrity": "sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==", - "dev": true, - "bin": { - "json5": "lib/cli.js" - } + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "dev": true }, - "node_modules/babel-core/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", "dev": true }, - "node_modules/babel-generator": { - "version": "6.26.1", - "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz", - "integrity": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==", + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "dev": true, "dependencies": { - "babel-messages": "^6.23.0", - "babel-runtime": "^6.26.0", - "babel-types": "^6.26.0", - "detect-indent": "^4.0.0", - "jsesc": "^1.3.0", - "lodash": "^4.17.4", - "source-map": "^0.5.7", - "trim-right": "^1.0.1" + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" } }, - "node_modules/babel-generator/node_modules/jsesc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz", - "integrity": "sha512-Mke0DA0QjUWuJlhsE0ZPPhYiJkRap642SmI/4ztCFaUs6V2AiH1sfecc+57NgaryfAA2VR3v6O+CSjC1jZJKOA==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" - } + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "dev": true }, - "node_modules/babel-helper-call-delegate": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz", - "integrity": "sha512-RL8n2NiEj+kKztlrVJM9JT1cXzzAdvWFh76xh/H1I4nKwunzE4INBXn8ieCZ+wh4zWszZk7NBS1s/8HR5jDkzQ==", + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "dev": true, "dependencies": { - "babel-helper-hoist-variables": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, - "node_modules/babel-helper-define-map": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz", - "integrity": "sha512-bHkmjcC9lM1kmZcVpA5t2om2nzT/xiZpo6TJq7UlZ3wqKfzia4veeXbIhKvJXAMzhhEBd3cR1IElL5AenWEUpA==", + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "dev": true, "dependencies": { - "babel-helper-function-name": "^6.24.1", - "babel-runtime": "^6.26.0", - "babel-types": "^6.26.0", - "lodash": "^4.17.4" + "@xtuc/ieee754": "^1.2.0" } }, - "node_modules/babel-helper-function-name": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz", - "integrity": "sha512-Oo6+e2iX+o9eVvJ9Y5eKL5iryeRdsIkwRYheCuhYdVHsdEQysbc2z2QkqCLIYnNxkT5Ss3ggrHdXiDI7Dhrn4Q==", + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "dev": true, "dependencies": { - "babel-helper-get-function-arity": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" + "@xtuc/long": "4.2.2" } }, - "node_modules/babel-helper-get-function-arity": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz", - "integrity": "sha512-WfgKFX6swFB1jS2vo+DwivRN4NB8XUdM3ij0Y1gnC21y1tdBoe6xjVnd7NSI6alv+gZXCtJqvrTeMW3fR/c0ng==", - "dev": true, - "dependencies": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "dev": true }, - "node_modules/babel-helper-hoist-variables": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz", - "integrity": "sha512-zAYl3tqerLItvG5cKYw7f1SpvIxS9zi7ohyGHaI9cgDUjAT6YcY9jIEH5CstetP5wHIVSceXwNS7Z5BpJg+rOw==", + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "dev": true, "dependencies": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, - "node_modules/babel-helper-optimise-call-expression": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz", - "integrity": "sha512-Op9IhEaxhbRT8MDXx2iNuMgciu2V8lDvYCNQbDGjdBNCjaMvyLf4wl4A3b8IgndCyQF8TwfgsQ8T3VD8aX1/pA==", + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "dev": true, "dependencies": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, - "node_modules/babel-helper-regex": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz", - "integrity": "sha512-VlPiWmqmGJp0x0oK27Out1D+71nVVCTSdlbhIVoaBAj2lUgrNjBCRR9+llO4lTSb2O4r7PJg+RobRkhBrf6ofg==", + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "dev": true, "dependencies": { - "babel-runtime": "^6.26.0", - "babel-types": "^6.26.0", - "lodash": "^4.17.4" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, - "node_modules/babel-helper-replace-supers": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz", - "integrity": "sha512-sLI+u7sXJh6+ToqDr57Bv973kCepItDhMou0xCP2YPVmR1jkHSCY+p1no8xErbV1Siz5QE8qKT1WIwybSWlqjw==", + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "dev": true, "dependencies": { - "babel-helper-optimise-call-expression": "^6.24.1", - "babel-messages": "^6.23.0", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, - "node_modules/babel-helpers": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz", - "integrity": "sha512-n7pFrqQm44TCYvrCDb0MqabAF+JUBq+ijBvNMUxpkLjJaAu32faIexewMumrH5KLLJ1HDyT0PTEqRyAe/GwwuQ==", + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "dev": true, "dependencies": { - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" } }, - "node_modules/babel-loader": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.3.tgz", - "integrity": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==", + "node_modules/@webpack-cli/configtest": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.1.1.tgz", + "integrity": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==", "dev": true, - "dependencies": { - "find-cache-dir": "^4.0.0", - "schema-utils": "^4.0.0" - }, "engines": { - "node": ">= 14.15.0" + "node": ">=14.15.0" }, "peerDependencies": { - "@babel/core": "^7.12.0", - "webpack": ">=5" - } - }, - "node_modules/babel-messages": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz", - "integrity": "sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w==", - "dev": true, - "dependencies": { - "babel-runtime": "^6.22.0" - } - }, - "node_modules/babel-plugin-check-es2015-constants": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz", - "integrity": "sha512-B1M5KBP29248dViEo1owyY32lk1ZSH2DaNNrXLGt8lyjjHm7pBqAdQ7VKUPR6EEDO323+OvT3MQXbCin8ooWdA==", - "dev": true, - "dependencies": { - "babel-runtime": "^6.22.0" - } - }, - "node_modules/babel-plugin-transform-es2015-arrow-functions": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz", - "integrity": "sha512-PCqwwzODXW7JMrzu+yZIaYbPQSKjDTAsNNlK2l5Gg9g4rz2VzLnZsStvp/3c46GfXpwkyufb3NCyG9+50FF1Vg==", - "dev": true, - "dependencies": { - "babel-runtime": "^6.22.0" + "webpack": "5.x.x", + "webpack-cli": "5.x.x" } }, - "node_modules/babel-plugin-transform-es2015-block-scoped-functions": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz", - "integrity": "sha512-2+ujAT2UMBzYFm7tidUsYh+ZoIutxJ3pN9IYrF1/H6dCKtECfhmB8UkHVpyxDwkj0CYbQG35ykoz925TUnBc3A==", + "node_modules/@webpack-cli/info": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.2.tgz", + "integrity": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==", "dev": true, - "dependencies": { - "babel-runtime": "^6.22.0" + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" } }, - "node_modules/babel-plugin-transform-es2015-block-scoping": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz", - "integrity": "sha512-YiN6sFAQ5lML8JjCmr7uerS5Yc/EMbgg9G8ZNmk2E3nYX4ckHR01wrkeeMijEf5WHNK5TW0Sl0Uu3pv3EdOJWw==", + "node_modules/@webpack-cli/serve": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-2.0.5.tgz", + "integrity": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==", "dev": true, - "dependencies": { - "babel-runtime": "^6.26.0", - "babel-template": "^6.26.0", - "babel-traverse": "^6.26.0", - "babel-types": "^6.26.0", - "lodash": "^4.17.4" + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + }, + "peerDependenciesMeta": { + "webpack-dev-server": { + "optional": true + } } }, - "node_modules/babel-plugin-transform-es2015-classes": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz", - "integrity": "sha512-5Dy7ZbRinGrNtmWpquZKZ3EGY8sDgIVB4CU8Om8q8tnMLrD/m94cKglVcHps0BCTdZ0TJeeAWOq2TK9MIY6cag==", - "dev": true, - "dependencies": { - "babel-helper-define-map": "^6.24.1", - "babel-helper-function-name": "^6.24.1", - "babel-helper-optimise-call-expression": "^6.24.1", - "babel-helper-replace-supers": "^6.24.1", - "babel-messages": "^6.23.0", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true }, - "node_modules/babel-plugin-transform-es2015-computed-properties": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz", - "integrity": "sha512-C/uAv4ktFP/Hmh01gMTvYvICrKze0XVX9f2PdIXuriCSvUmV9j+u+BB9f5fJK3+878yMK6dkdcq+Ymr9mrcLzw==", - "dev": true, - "dependencies": { - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" - } + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true }, - "node_modules/babel-plugin-transform-es2015-destructuring": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz", - "integrity": "sha512-aNv/GDAW0j/f4Uy1OEPZn1mqD+Nfy9viFGBfQ5bZyT35YqOiqx7/tXdyfZkJ1sC21NyEsBdfDY6PYmLHF4r5iA==", + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dev": true, "dependencies": { - "babel-runtime": "^6.22.0" + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" } }, - "node_modules/babel-plugin-transform-es2015-duplicate-keys": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz", - "integrity": "sha512-ossocTuPOssfxO2h+Z3/Ea1Vo1wWx31Uqy9vIiJusOP4TbF7tPs9U0sJ9pX9OJPf4lXRGj5+6Gkl/HHKiAP5ug==", + "node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", "dev": true, - "dependencies": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" } }, - "node_modules/babel-plugin-transform-es2015-for-of": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz", - "integrity": "sha512-DLuRwoygCoXx+YfxHLkVx5/NpeSbVwfoTeBykpJK7JhYWlL/O8hgAK/reforUnZDlxasOrVPPJVI/guE3dCwkw==", + "node_modules/acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", "dev": true, - "dependencies": { - "babel-runtime": "^6.22.0" + "peerDependencies": { + "acorn": "^8" } }, - "node_modules/babel-plugin-transform-es2015-function-name": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz", - "integrity": "sha512-iFp5KIcorf11iBqu/y/a7DK3MN5di3pNCzto61FqCNnUX4qeBwcV1SLqe10oXNnCaxBUImX3SckX2/o1nsrTcg==", + "node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", "dev": true, - "dependencies": { - "babel-helper-function-name": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" + "engines": { + "node": ">=0.4.0" } }, - "node_modules/babel-plugin-transform-es2015-literals": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz", - "integrity": "sha512-tjFl0cwMPpDYyoqYA9li1/7mGFit39XiNX5DKC/uCNjBctMxyL1/PT/l4rSlbvBG1pOKI88STRdUsWXB3/Q9hQ==", + "node_modules/agent-base": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", + "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", "dev": true, "dependencies": { - "babel-runtime": "^6.22.0" + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" } }, - "node_modules/babel-plugin-transform-es2015-modules-amd": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz", - "integrity": "sha512-LnIIdGWIKdw7zwckqx+eGjcS8/cl8D74A3BpJbGjKTFFNJSMrjN4bIh22HY1AlkUbeLG6X6OZj56BDvWD+OeFA==", + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "dependencies": { - "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/babel-plugin-transform-es2015-modules-commonjs": { - "version": "6.26.2", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz", - "integrity": "sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==", + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "dev": true, "dependencies": { - "babel-plugin-transform-strict-mode": "^6.24.1", - "babel-runtime": "^6.26.0", - "babel-template": "^6.26.0", - "babel-types": "^6.26.0" + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } } }, - "node_modules/babel-plugin-transform-es2015-modules-systemjs": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz", - "integrity": "sha512-ONFIPsq8y4bls5PPsAWYXH/21Hqv64TBxdje0FvU3MhIV6QM2j5YS7KvAzg/nTIVLot2D2fmFQrFWCbgHlFEjg==", + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dev": true, "dependencies": { - "babel-helper-hoist-variables": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/babel-plugin-transform-es2015-modules-umd": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz", - "integrity": "sha512-LpVbiT9CLsuAIp3IG0tfbVo81QIhn6pE8xBJ7XSeCtFlMltuar5VuBV6y6Q45tpui9QWcy5i0vLQfCfrnF7Kiw==", - "dev": true, - "dependencies": { - "babel-plugin-transform-es2015-modules-amd": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" - } + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true }, - "node_modules/babel-plugin-transform-es2015-object-super": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz", - "integrity": "sha512-8G5hpZMecb53vpD3mjs64NhI1au24TAmokQ4B+TBFBjN9cVoGoOvotdrMMRmHvVZUEvqGUPWL514woru1ChZMA==", + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "dev": true, - "dependencies": { - "babel-helper-replace-supers": "^6.24.1", - "babel-runtime": "^6.22.0" + "peerDependencies": { + "ajv": "^6.9.1" } }, - "node_modules/babel-plugin-transform-es2015-parameters": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz", - "integrity": "sha512-8HxlW+BB5HqniD+nLkQ4xSAVq3bR/pcYW9IigY+2y0dI+Y7INFeTbfAQr+63T3E4UDsZGjyb+l9txUnABWxlOQ==", + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", "dev": true, - "dependencies": { - "babel-helper-call-delegate": "^6.24.1", - "babel-helper-get-function-arity": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" } }, - "node_modules/babel-plugin-transform-es2015-shorthand-properties": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz", - "integrity": "sha512-mDdocSfUVm1/7Jw/FIRNw9vPrBQNePy6wZJlR8HAUBLybNp1w/6lr6zZ2pjMShee65t/ybR5pT8ulkLzD1xwiw==", + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, - "dependencies": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" + "engines": { + "node": ">=8" } }, - "node_modules/babel-plugin-transform-es2015-spread": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz", - "integrity": "sha512-3Ghhi26r4l3d0Js933E5+IhHwk0A1yiutj9gwvzmFbVV0sPMYk2lekhOufHBswX7NCoSeF4Xrl3sCIuSIa+zOg==", + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "dependencies": { - "babel-runtime": "^6.22.0" + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/babel-plugin-transform-es2015-sticky-regex": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz", - "integrity": "sha512-CYP359ADryTo3pCsH0oxRo/0yn6UsEZLqYohHmvLQdfS9xkf+MbCzE3/Kolw9OYIY4ZMilH25z/5CbQbwDD+lQ==", + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, "dependencies": { - "babel-helper-regex": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" } }, - "node_modules/babel-plugin-transform-es2015-template-literals": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz", - "integrity": "sha512-x8b9W0ngnKzDMHimVtTfn5ryimars1ByTqsfBDwAqLibmuuQY6pgBQi5z1ErIsUOWBdw1bW9FSz5RZUojM4apg==", - "dev": true, - "dependencies": { - "babel-runtime": "^6.22.0" - } + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true }, - "node_modules/babel-plugin-transform-es2015-typeof-symbol": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz", - "integrity": "sha512-fz6J2Sf4gYN6gWgRZaoFXmq93X+Li/8vf+fb0sGDVtdeWvxC9y5/bTD7bvfWMEq6zetGEHpWjtzRGSugt5kNqw==", - "dev": true, - "dependencies": { - "babel-runtime": "^6.22.0" - } + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true }, - "node_modules/babel-plugin-transform-es2015-unicode-regex": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz", - "integrity": "sha512-v61Dbbihf5XxnYjtBN04B/JBvsScY37R1cZT5r9permN1cp+b70DY3Ib3fIkgn1DI9U3tGgBJZVD8p/mE/4JbQ==", - "dev": true, - "dependencies": { - "babel-helper-regex": "^6.24.1", - "babel-runtime": "^6.22.0", - "regexpu-core": "^2.0.0" - } + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true }, - "node_modules/babel-plugin-transform-regenerator": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz", - "integrity": "sha512-LS+dBkUGlNR15/5WHKe/8Neawx663qttS6AGqoOUhICc9d1KciBvtrQSuc0PI+CxQ2Q/S1aKuJ+u64GtLdcEZg==", + "node_modules/ast-types": { + "version": "0.13.4", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", + "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", "dev": true, "dependencies": { - "regenerator-transform": "^0.10.0" + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" } }, - "node_modules/babel-plugin-transform-strict-mode": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz", - "integrity": "sha512-j3KtSpjyLSJxNoCDrhwiJad8kw0gJ9REGj8/CqL0HeRyLnvUNYV9zcqluL6QJSXh3nfsLEmSLvwRfGzrgR96Pw==", - "dev": true, - "dependencies": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true }, - "node_modules/babel-preset-es2015": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz", - "integrity": "sha512-XfwUqG1Ry6R43m4Wfob+vHbIVBIqTg/TJY4Snku1iIzeH7mUnwHA8Vagmv+ZQbPwhS8HgsdQvy28Py3k5zpoFQ==", - "deprecated": "🙌 Thanks for using Babel: we recommend using babel-preset-env now: please read https://babeljs.io/env to update!", + "node_modules/axios": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", + "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", "dev": true, "dependencies": { - "babel-plugin-check-es2015-constants": "^6.22.0", - "babel-plugin-transform-es2015-arrow-functions": "^6.22.0", - "babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0", - "babel-plugin-transform-es2015-block-scoping": "^6.24.1", - "babel-plugin-transform-es2015-classes": "^6.24.1", - "babel-plugin-transform-es2015-computed-properties": "^6.24.1", - "babel-plugin-transform-es2015-destructuring": "^6.22.0", - "babel-plugin-transform-es2015-duplicate-keys": "^6.24.1", - "babel-plugin-transform-es2015-for-of": "^6.22.0", - "babel-plugin-transform-es2015-function-name": "^6.24.1", - "babel-plugin-transform-es2015-literals": "^6.22.0", - "babel-plugin-transform-es2015-modules-amd": "^6.24.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1", - "babel-plugin-transform-es2015-modules-systemjs": "^6.24.1", - "babel-plugin-transform-es2015-modules-umd": "^6.24.1", - "babel-plugin-transform-es2015-object-super": "^6.24.1", - "babel-plugin-transform-es2015-parameters": "^6.24.1", - "babel-plugin-transform-es2015-shorthand-properties": "^6.24.1", - "babel-plugin-transform-es2015-spread": "^6.22.0", - "babel-plugin-transform-es2015-sticky-regex": "^6.24.1", - "babel-plugin-transform-es2015-template-literals": "^6.22.0", - "babel-plugin-transform-es2015-typeof-symbol": "^6.22.0", - "babel-plugin-transform-es2015-unicode-regex": "^6.24.1", - "babel-plugin-transform-regenerator": "^6.24.1" + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" } }, - "node_modules/babel-register": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz", - "integrity": "sha512-veliHlHX06wjaeY8xNITbveXSiI+ASFnOqvne/LaIJIqOWi2Ogmj91KOugEz/hoh/fwMhXNBJPCv8Xaz5CyM4A==", + "node_modules/axios/node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dev": true, "dependencies": { - "babel-core": "^6.26.0", - "babel-runtime": "^6.26.0", - "core-js": "^2.5.0", - "home-or-tmp": "^2.0.0", - "lodash": "^4.17.4", - "mkdirp": "^0.5.1", - "source-map-support": "^0.4.15" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/babel-runtime": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", - "integrity": "sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==", - "dev": true, - "dependencies": { - "core-js": "^2.4.0", - "regenerator-runtime": "^0.11.0" - } + "node_modules/b4a": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.6.tgz", + "integrity": "sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==", + "dev": true }, - "node_modules/babel-template": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz", - "integrity": "sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg==", + "node_modules/babel-loader": { + "version": "9.1.3", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.3.tgz", + "integrity": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==", "dev": true, "dependencies": { - "babel-runtime": "^6.26.0", - "babel-traverse": "^6.26.0", - "babel-types": "^6.26.0", - "babylon": "^6.18.0", - "lodash": "^4.17.4" + "find-cache-dir": "^4.0.0", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 14.15.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0", + "webpack": ">=5" } }, - "node_modules/babel-traverse": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz", - "integrity": "sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA==", + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", + "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", "dev": true, "dependencies": { - "babel-code-frame": "^6.26.0", - "babel-messages": "^6.23.0", - "babel-runtime": "^6.26.0", - "babel-types": "^6.26.0", - "babylon": "^6.18.0", - "debug": "^2.6.8", - "globals": "^9.18.0", - "invariant": "^2.2.2", - "lodash": "^4.17.4" + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.2", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/babel-traverse/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.10.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz", + "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==", "dev": true, "dependencies": { - "ms": "2.0.0" + "@babel/helper-define-polyfill-provider": "^0.6.2", + "core-js-compat": "^3.38.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/babel-traverse/node_modules/globals": { - "version": "9.18.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz", - "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==", + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", + "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/babel-traverse/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, - "node_modules/babel-types": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz", - "integrity": "sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==", + "node_modules/bare-events": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.4.2.tgz", + "integrity": "sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==", + "dev": true, + "optional": true + }, + "node_modules/bare-fs": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-2.3.5.tgz", + "integrity": "sha512-SlE9eTxifPDJrT6YgemQ1WGFleevzwY+XAP1Xqgl56HtcrisC2CHCZ2tq6dBpcH2TnNxwUEUGhweo+lrQtYuiw==", "dev": true, + "optional": true, "dependencies": { - "babel-runtime": "^6.26.0", - "esutils": "^2.0.2", - "lodash": "^4.17.4", - "to-fast-properties": "^1.0.3" + "bare-events": "^2.0.0", + "bare-path": "^2.0.0", + "bare-stream": "^2.0.0" } }, - "node_modules/babel-types/node_modules/to-fast-properties": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", - "integrity": "sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==", + "node_modules/bare-os": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-2.4.4.tgz", + "integrity": "sha512-z3UiI2yi1mK0sXeRdc4O1Kk8aOa/e+FNWZcTiPB/dfTWyLypuE99LibgRaQki914Jq//yAWylcAt+mknKdixRQ==", "dev": true, - "engines": { - "node": ">=0.10.0" - } + "optional": true }, - "node_modules/babylon": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", - "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==", + "node_modules/bare-path": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-2.1.3.tgz", + "integrity": "sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==", "dev": true, - "bin": { - "babylon": "bin/babylon.js" + "optional": true, + "dependencies": { + "bare-os": "^2.1.0" } }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true + "node_modules/bare-stream": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.3.0.tgz", + "integrity": "sha512-pVRWciewGUeCyKEuRxwv06M079r+fRjAQjBEK2P6OYGrO43O+Z0LrPZZEjlc4mB6C2RpZ9AxJ1s7NLEtOHO6eA==", + "dev": true, + "optional": true, + "dependencies": { + "b4a": "^1.6.6", + "streamx": "^2.20.0" + } }, "node_modules/base64-js": { "version": "1.5.1", @@ -1911,9 +2801,9 @@ ] }, "node_modules/basic-ftp": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.3.tgz", - "integrity": "sha512-QHX8HLlncOLpy54mh+k/sWIFd0ThmRqwe9ZjELybGZK+tZ8rUb9VO0saKJUROTbE+KhzDUT7xziGpGrW8Kmd+g==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz", + "integrity": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==", "dev": true, "engines": { "node": ">=10.0.0" @@ -1925,15 +2815,6 @@ "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", "dev": true }, - "node_modules/bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", - "dev": true, - "dependencies": { - "tweetnacl": "^0.14.3" - } - }, "node_modules/binary-extensions": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", @@ -2053,9 +2934,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.10", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", - "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "version": "4.23.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz", + "integrity": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==", "dev": true, "funding": [ { @@ -2072,10 +2953,10 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001517", - "electron-to-chromium": "^1.4.477", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.11" + "caniuse-lite": "^1.0.30001646", + "electron-to-chromium": "^1.5.4", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.0" }, "bin": { "browserslist": "cli.js" @@ -2165,9 +3046,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001524", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001524.tgz", - "integrity": "sha512-Jj917pJtYg9HSJBF95HVX3Cdr89JUyLT4IZ8SvM5aDRni95swKgYi3TgYLH5hnGfPE/U1dg6IfZ50UsIlLkwSA==", + "version": "1.0.30001663", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001663.tgz", + "integrity": "sha512-o9C3X27GLKbLeTYZ6HBOLU1tsAcBZsLis28wrVzddShCS16RujjHp9GDHKZqrB3meE0YjhawvMFsGb/igqiPzA==", "dev": true, "funding": [ { @@ -2184,12 +3065,6 @@ } ] }, - "node_modules/caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", - "dev": true - }, "node_modules/chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", @@ -2250,12 +3125,14 @@ } }, "node_modules/chromium-bidi": { - "version": "0.4.16", - "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.4.16.tgz", - "integrity": "sha512-7ZbXdWERxRxSwo3txsBjjmc/NLxqb1Bk30mRb0BMS4YIaiV6zvKZqL/UAH+DdqcDYayDWk2n/y8klkBDODrPvA==", + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.6.5.tgz", + "integrity": "sha512-RuLrmzYrxSb0s9SgpB+QN5jJucPduZQ/9SIe76MDxYJuecPW5mxMdacJ1f4EtgiV+R0p3sCkznTMvH0MPGFqjA==", "dev": true, "dependencies": { - "mitt": "3.0.0" + "mitt": "3.0.1", + "urlpattern-polyfill": "10.0.0", + "zod": "3.23.8" }, "peerDependencies": { "devtools-protocol": "*" @@ -2273,15 +3150,6 @@ "node": ">= 10.0" } }, - "node_modules/clean-css/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/cliui": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", @@ -2466,19 +3334,18 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", "dev": true }, - "node_modules/cookiejar": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.4.tgz", - "integrity": "sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==", - "dev": true - }, - "node_modules/core-js": { - "version": "2.6.12", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", - "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", - "deprecated": "core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.", + "node_modules/core-js-compat": { + "version": "3.38.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.38.1.tgz", + "integrity": "sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==", "dev": true, - "hasInstallScript": true + "dependencies": { + "browserslist": "^4.23.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } }, "node_modules/core-util-is": { "version": "1.0.2", @@ -2486,39 +3353,12 @@ "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", "dev": true }, - "node_modules/cosmiconfig": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.2.0.tgz", - "integrity": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==", - "dev": true, - "dependencies": { - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/d-fischer" - } - }, "node_modules/create-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", "dev": true }, - "node_modules/cross-fetch": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.0.0.tgz", - "integrity": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==", - "dev": true, - "dependencies": { - "node-fetch": "^2.6.12" - } - }, "node_modules/cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", @@ -2561,22 +3401,10 @@ "url": "https://github.com/sponsors/fb55" } }, - "node_modules/dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", - "dev": true, - "dependencies": { - "assert-plus": "^1.0.0" - }, - "engines": { - "node": ">=0.10" - } - }, "node_modules/data-uri-to-buffer": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-5.0.1.tgz", - "integrity": "sha512-a9l6T1qqDogvvnw0nKlfZzqsyikEBZBClF39V3TFoKhDtGBqHu2HkuomJc02j5zft8zrUaXEuoicLeW54RkzPg==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz", + "integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==", "dev": true, "engines": { "node": ">= 14" @@ -2662,18 +3490,6 @@ "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/detect-indent": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz", - "integrity": "sha512-BDKtmHlOzwI7iRuEkhzsnPoi5ypEhWAJB5RvHWe1kMr06js3uK5B3734i3ui5Yd+wOJV1cpE4JnivPD283GU/A==", - "dev": true, - "dependencies": { - "repeating": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/detect-node": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", @@ -2681,9 +3497,9 @@ "dev": true }, "node_modules/devtools-protocol": { - "version": "0.0.1147663", - "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1147663.tgz", - "integrity": "sha512-hyWmRrexdhbZ1tcJUGpO95ivbRhWXz++F4Ko+n21AY5PNln2ovoJw+8ZMNDTtip+CNFQfrtLVh/w4009dXO/eQ==", + "version": "0.0.1342118", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1342118.tgz", + "integrity": "sha512-75fMas7PkYNDTmDyb6PRJCH7ILmHLp+BhrZGeMsa4bCh40DTxgCz2NRy5UDzII4C5KuD0oBMZ9vXKhEl6UD/3w==", "dev": true }, "node_modules/diff": { @@ -2793,16 +3609,6 @@ "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", "dev": true }, - "node_modules/ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", - "dev": true, - "dependencies": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", @@ -2810,9 +3616,9 @@ "dev": true }, "node_modules/electron-to-chromium": { - "version": "1.4.506", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.506.tgz", - "integrity": "sha512-xxGct4GPAKSRlrLBtJxJFYy74W11zX6PO9GyHgl/U+2s3Dp0ZEwAklDfNHXOWcvH7zWMpsmgbR0ggEuaYAVvHA==", + "version": "1.5.27", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.27.tgz", + "integrity": "sha512-o37j1vZqCoEgBuWWXLHQgTN/KDKe7zwpiY5CPeq2RvUqOyJw9xnrULzZAEVQ5p4h+zjMk7hgtOoPdnLxr7m/jw==", "dev": true }, "node_modules/emoji-regex": { @@ -2861,6 +3667,15 @@ "url": "https://github.com/fb55/entities?sponsor=1" } }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/envinfo": { "version": "7.10.0", "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.10.0.tgz", @@ -2889,9 +3704,9 @@ "dev": true }, "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "dev": true, "engines": { "node": ">=6" @@ -2933,16 +3748,6 @@ "source-map": "~0.6.1" } }, - "node_modules/escodegen/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/eslint-scope": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", @@ -3160,12 +3965,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, "node_modules/extract-zip": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", @@ -3186,15 +3985,6 @@ "@types/yauzl": "^2.9.1" } }, - "node_modules/extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", - "dev": true, - "engines": [ - "node >=0.6.0" - ] - }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", @@ -3222,19 +4012,6 @@ "node": ">= 4.9.1" } }, - "node_modules/faye": { - "version": "0.8.11", - "resolved": "https://registry.npmjs.org/faye/-/faye-0.8.11.tgz", - "integrity": "sha512-d2SXlWy+wR8D2AgYjCnJrA8v4RvwKeRQeTB2aLUetyhrNKTU28mAvSMezSZDNyOONVrsF0IY1s4625QgggM2XA==", - "dev": true, - "dependencies": { - "cookiejar": "", - "faye-websocket": ">=0.4.0" - }, - "engines": { - "node": ">=0.1.96" - } - }, "node_modules/faye-websocket": { "version": "0.11.4", "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", @@ -3353,43 +4130,6 @@ } } }, - "node_modules/force": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/force/-/force-0.0.3.tgz", - "integrity": "sha512-B/4gl3/7o8Q4jYfXNKSvTHlAPxB1ruYCkxVkiVUUuHziYbDa2NsURljSgpm+Q+d4cGmN1EaAD5QXhLodGN44zA==", - "dev": true, - "dependencies": { - "faye": "~0.8.3", - "mime": "~1.2.9", - "request": "*" - }, - "engines": { - "node": "*" - } - }, - "node_modules/forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 0.12" - } - }, "node_modules/forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", @@ -3415,17 +4155,17 @@ "dev": true }, "node_modules/fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "dependencies": { "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">=6 <7 || >=8" + "node": ">=14.14" } }, "node_modules/fs-monkey": { @@ -3465,7 +4205,6 @@ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, - "peer": true, "engines": { "node": ">=6.9.0" } @@ -3510,29 +4249,20 @@ } }, "node_modules/get-uri": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.1.tgz", - "integrity": "sha512-7ZqONUVqaabogsYNWlYj0t3YZaL6dhuEueZXGF+/YVmf6dHmaFg8/6psJKqhx9QykIDKzpGcy2cn4oV4YC7V/Q==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.3.tgz", + "integrity": "sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==", "dev": true, "dependencies": { "basic-ftp": "^5.0.2", - "data-uri-to-buffer": "^5.0.1", + "data-uri-to-buffer": "^6.0.2", "debug": "^4.3.4", - "fs-extra": "^8.1.0" + "fs-extra": "^11.2.0" }, "engines": { "node": ">= 14" } }, - "node_modules/getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", - "dev": true, - "dependencies": { - "assert-plus": "^1.0.0" - } - }, "node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", @@ -3576,7 +4306,6 @@ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true, - "peer": true, "engines": { "node": ">=4" } @@ -3593,29 +4322,6 @@ "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", "dev": true }, - "node_modules/har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "deprecated": "this library is no longer supported", - "dev": true, - "dependencies": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", @@ -3628,27 +4334,6 @@ "node": ">= 0.4.0" } }, - "node_modules/has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", - "dev": true, - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-ansi/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", @@ -3691,19 +4376,6 @@ "he": "bin/he" } }, - "node_modules/home-or-tmp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz", - "integrity": "sha512-ycURW7oUxE2sNiPVw1HVEFsW+ecOpJ5zaj7eC0RlwhibhRBod20muUN8qu/gzx956YrLolVvs1MTXwKgC2rVEg==", - "dev": true, - "dependencies": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/hpack.js": { "version": "2.1.6", "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", @@ -3868,9 +4540,9 @@ } }, "node_modules/http-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", - "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", "dev": true, "dependencies": { "agent-base": "^7.1.0", @@ -3904,25 +4576,10 @@ } } }, - "node_modules/http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", - "dev": true, - "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - }, - "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" - } - }, "node_modules/https-proxy-agent": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.1.tgz", - "integrity": "sha512-Eun8zV0kcYS1g19r78osiQLEFIRspRUDd9tIfBCTBPBeMieF/EsJNL8VI3xOIdYRDEkjQnqOYPsZ2DsWsVsFwQ==", + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", + "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", "dev": true, "dependencies": { "agent-base": "^7.0.2", @@ -4106,21 +4763,19 @@ "node": ">=10.13.0" } }, - "node_modules/invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "node_modules/ip-address": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", + "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", "dev": true, "dependencies": { - "loose-envify": "^1.0.0" + "jsbn": "1.1.0", + "sprintf-js": "^1.1.3" + }, + "engines": { + "node": ">= 12" } }, - "node_modules/ip": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", - "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", - "dev": true - }, "node_modules/ipaddr.js": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", @@ -4184,18 +4839,6 @@ "node": ">=0.10.0" } }, - "node_modules/is-finite": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", - "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", - "dev": true, - "engines": { - "node": ">=0.10.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", @@ -4262,12 +4905,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", - "dev": true - }, "node_modules/is-wsl": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", @@ -4301,12 +4938,6 @@ "node": ">=0.10.0" } }, - "node_modules/isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", - "dev": true - }, "node_modules/jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", @@ -4377,9 +5008,9 @@ } }, "node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", + "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==", "dev": true }, "node_modules/jsesc": { @@ -4387,7 +5018,6 @@ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true, - "peer": true, "bin": { "jsesc": "bin/jsesc" }, @@ -4401,30 +5031,17 @@ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, - "node_modules/json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", - "dev": true - }, "node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", - "dev": true - }, "node_modules/json5": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, - "peer": true, "bin": { "json5": "lib/cli.js" }, @@ -4433,27 +5050,15 @@ } }, "node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "dev": true, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/jsprim": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", - "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" + "universalify": "^2.0.0" }, - "engines": { - "node": ">=0.6.0" + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, "node_modules/kind-of": { @@ -4520,17 +5125,11 @@ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dev": true, - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true }, "node_modules/lower-case": { "version": "2.0.2", @@ -4546,7 +5145,6 @@ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, - "peer": true, "dependencies": { "yallist": "^3.0.2" } @@ -4618,12 +5216,6 @@ "node": ">=8.6" } }, - "node_modules/mime": { - "version": "1.2.11", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz", - "integrity": "sha512-Ysa2F/nqTNGHhhm9MV8ure4+Hc+Y8AWiqUdHxsO7xu8zc92ND9f3kpALHjaP026Ft17UfxrMt95c50PLUeynBw==", - "dev": true - }, "node_modules/mime-db": { "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", @@ -4682,27 +5274,9 @@ } }, "node_modules/mitt": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.0.tgz", - "integrity": "sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ==", - "dev": true - }, - "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dev": true, - "dependencies": { - "minimist": "^1.2.6" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, - "node_modules/mkdirp-classic": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", "dev": true }, "node_modules/ms": { @@ -4755,27 +5329,7 @@ "dev": true, "dependencies": { "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } - }, - "node_modules/node-fetch": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", - "dev": true, - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } + "tslib": "^2.0.3" } }, "node_modules/node-forge": { @@ -4788,9 +5342,9 @@ } }, "node_modules/node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", "dev": true }, "node_modules/normalize-path": { @@ -4826,15 +5380,6 @@ "url": "https://github.com/fb55/nth-check?sponsor=1" } }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "dev": true, - "engines": { - "node": "*" - } - }, "node_modules/object-inspect": { "version": "1.12.3", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", @@ -4912,24 +5457,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/os-homedir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/p-limit": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", @@ -4983,9 +5510,9 @@ } }, "node_modules/pac-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.0.tgz", - "integrity": "sha512-t4tRAMx0uphnZrio0S0Jw9zg3oDbz1zVhQ/Vy18FjLfP1XOLNUEjaVxYCYRI6NS+BsMBXKIzV6cTLOkO9AtywA==", + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.2.tgz", + "integrity": "sha512-BFi3vZnO9X5Qt6NRz7ZOaPja3ic0PhlsmCRYLOpN11+mWBCR6XJDqW5RF3j8jm4WGGQZtBA+bTfxYzeKW73eHg==", "dev": true, "dependencies": { "@tootallnate/quickjs-emscripten": "^0.23.0", @@ -4993,22 +5520,21 @@ "debug": "^4.3.4", "get-uri": "^6.0.1", "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.0", - "pac-resolver": "^7.0.0", - "socks-proxy-agent": "^8.0.1" + "https-proxy-agent": "^7.0.5", + "pac-resolver": "^7.0.1", + "socks-proxy-agent": "^8.0.4" }, "engines": { "node": ">= 14" } }, "node_modules/pac-resolver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.0.tgz", - "integrity": "sha512-Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg==", + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.1.tgz", + "integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==", "dev": true, "dependencies": { "degenerator": "^5.0.0", - "ip": "^1.1.8", "netmask": "^2.0.2" }, "engines": { @@ -5113,15 +5639,6 @@ "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", "dev": true }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/pause-stream": { "version": "0.0.11", "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", @@ -5137,16 +5654,10 @@ "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", "dev": true }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", - "dev": true - }, "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz", + "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==", "dev": true }, "node_modules/picomatch": { @@ -5186,15 +5697,6 @@ "renderkid": "^3.0.0" } }, - "node_modules/private": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", - "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, "node_modules/process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", @@ -5233,19 +5735,19 @@ } }, "node_modules/proxy-agent": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.3.0.tgz", - "integrity": "sha512-0LdR757eTj/JfuU7TL2YCuAZnxWXu3tkJbg4Oq3geW/qFNT/32T0sp2HnZ9O0lMR4q3vwAt0+xCA8SR0WAD0og==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.4.0.tgz", + "integrity": "sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==", "dev": true, "dependencies": { "agent-base": "^7.0.2", "debug": "^4.3.4", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.0", + "http-proxy-agent": "^7.0.1", + "https-proxy-agent": "^7.0.3", "lru-cache": "^7.14.1", - "pac-proxy-agent": "^7.0.0", + "pac-proxy-agent": "^7.0.1", "proxy-from-env": "^1.1.0", - "socks-proxy-agent": "^8.0.1" + "socks-proxy-agent": "^8.0.2" }, "engines": { "node": ">= 14" @@ -5281,16 +5783,10 @@ "node": ">= 0.10" } }, - "node_modules/psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", - "dev": true - }, "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", + "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", "dev": true, "dependencies": { "end-of-stream": "^1.1.0", @@ -5307,38 +5803,85 @@ } }, "node_modules/puppeteer": { - "version": "20.9.0", - "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-20.9.0.tgz", - "integrity": "sha512-kAglT4VZ9fWEGg3oLc4/de+JcONuEJhlh3J6f5R1TLkrY/EHHIHxWXDOzXvaxQCtedmyVXBwg8M+P8YCO/wZjw==", + "version": "23.4.0", + "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-23.4.0.tgz", + "integrity": "sha512-FxgFFJI7NAsX8uebiEDSjS86vufz9TaqERQHShQT0lCbSRI3jUPEcz/0HdwLiYvfYNsc1zGjqY3NsGZya4PvUA==", "dev": true, "hasInstallScript": true, "dependencies": { - "@puppeteer/browsers": "1.4.6", - "cosmiconfig": "8.2.0", - "puppeteer-core": "20.9.0" + "@puppeteer/browsers": "2.4.0", + "chromium-bidi": "0.6.5", + "cosmiconfig": "^9.0.0", + "devtools-protocol": "0.0.1342118", + "puppeteer-core": "23.4.0", + "typed-query-selector": "^2.12.0" + }, + "bin": { + "puppeteer": "lib/cjs/puppeteer/node/cli.js" }, "engines": { - "node": ">=16.3.0" + "node": ">=18" } }, "node_modules/puppeteer-core": { - "version": "20.9.0", - "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-20.9.0.tgz", - "integrity": "sha512-H9fYZQzMTRrkboEfPmf7m3CLDN6JvbxXA3qTtS+dFt27tR+CsFHzPsT6pzp6lYL6bJbAPaR0HaPO6uSi+F94Pg==", + "version": "23.4.0", + "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-23.4.0.tgz", + "integrity": "sha512-fqkIP5FOcb38jfBj/OcBz1wFaI9nk40uQKSORvnXws6wCbep2dg8yxZ3ddJxBIfQsxoiEOvnrykFinUScrB/ew==", "dev": true, "dependencies": { - "@puppeteer/browsers": "1.4.6", - "chromium-bidi": "0.4.16", - "cross-fetch": "4.0.0", - "debug": "4.3.4", - "devtools-protocol": "0.0.1147663", - "ws": "8.13.0" + "@puppeteer/browsers": "2.4.0", + "chromium-bidi": "0.6.5", + "debug": "^4.3.7", + "devtools-protocol": "0.0.1342118", + "typed-query-selector": "^2.12.0", + "ws": "^8.18.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/puppeteer-core/node_modules/debug": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/puppeteer-core/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/puppeteer/node_modules/cosmiconfig": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", + "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", + "dev": true, + "dependencies": { + "env-paths": "^2.2.1", + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0" }, "engines": { - "node": ">=16.3.0" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" }, "peerDependencies": { - "typescript": ">= 4.7.4" + "typescript": ">=4.9.5" }, "peerDependenciesMeta": { "typescript": { @@ -5346,13 +5889,19 @@ } } }, - "node_modules/qs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", - "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", + "node_modules/puppeteer/node_modules/typescript": { + "version": "5.6.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.2.tgz", + "integrity": "sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==", "dev": true, + "optional": true, + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, "engines": { - "node": ">=0.6" + "node": ">=14.17" } }, "node_modules/queue-tick": { @@ -5447,59 +5996,16 @@ "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", "dev": true }, - "node_modules/regenerator-runtime": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", - "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", - "dev": true - }, - "node_modules/regenerator-transform": { - "version": "0.10.1", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz", - "integrity": "sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==", - "dev": true, - "dependencies": { - "babel-runtime": "^6.18.0", - "babel-types": "^6.19.0", - "private": "^0.1.6" - } - }, - "node_modules/regexpu-core": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz", - "integrity": "sha512-tJ9+S4oKjxY8IZ9jmjnp/mtytu1u3iyIQAfmI51IKWH6bFf7XR1ybtaO6j7INhZKXOTYADk7V5qxaqLkmNxiZQ==", - "dev": true, - "dependencies": { - "regenerate": "^1.2.1", - "regjsgen": "^0.2.0", - "regjsparser": "^0.1.4" - } - }, - "node_modules/regjsgen": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz", - "integrity": "sha512-x+Y3yA24uF68m5GA+tBjbGYo64xXVJpbToBaWCoSNSc1hdk6dfctaRWrNFTVJZIIhL5GxW8zwjoixbnifnK59g==", - "dev": true - }, - "node_modules/regjsparser": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz", - "integrity": "sha512-jlQ9gYLfk2p3V5Ag5fYhA7fv7OHzd1KUH0PRP46xc3TgwjwgROIW572AfYg/X9kaNq/LJnu6oJcFRXlIrGoTRw==", + "node_modules/regenerate-unicode-properties": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", + "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", "dev": true, "dependencies": { - "jsesc": "~0.5.0" + "regenerate": "^1.4.2" }, - "bin": { - "regjsparser": "bin/parser" - } - }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" + "engines": { + "node": ">=4" } }, "node_modules/relateurl": { @@ -5524,50 +6030,6 @@ "strip-ansi": "^6.0.1" } }, - "node_modules/repeating": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", - "integrity": "sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==", - "dev": true, - "dependencies": { - "is-finite": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", - "dev": true, - "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -5774,7 +6236,6 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, - "peer": true, "bin": { "semver": "bin/semver.js" } @@ -6006,15 +6467,6 @@ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, - "node_modules/slash": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", - "integrity": "sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/smart-buffer": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", @@ -6046,57 +6498,42 @@ } }, "node_modules/socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz", + "integrity": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==", "dev": true, "dependencies": { - "ip": "^2.0.0", + "ip-address": "^9.0.5", "smart-buffer": "^4.2.0" }, "engines": { - "node": ">= 10.13.0", + "node": ">= 10.0.0", "npm": ">= 3.0.0" } }, "node_modules/socks-proxy-agent": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.1.tgz", - "integrity": "sha512-59EjPbbgg8U3x62hhKOFVAmySQUcfRQ4C7Q/D5sEHnZTQRrQlNKINks44DMR1gwXp0p4LaVIeccX2KHTTcHVqQ==", + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.4.tgz", + "integrity": "sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw==", "dev": true, "dependencies": { - "agent-base": "^7.0.1", + "agent-base": "^7.1.1", "debug": "^4.3.4", - "socks": "^2.7.1" + "socks": "^2.8.3" }, "engines": { "node": ">= 14" } }, - "node_modules/socks/node_modules/ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", - "dev": true - }, "node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/source-map-support": { - "version": "0.4.18", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz", - "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==", - "dev": true, - "dependencies": { - "source-map": "^0.5.6" - } - }, "node_modules/spdy": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", @@ -6139,30 +6576,11 @@ "node": "*" } }, - "node_modules/sshpk": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", - "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", - "dev": true, - "dependencies": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "bin": { - "sshpk-conv": "bin/sshpk-conv", - "sshpk-sign": "bin/sshpk-sign", - "sshpk-verify": "bin/sshpk-verify" - }, - "engines": { - "node": ">=0.10.0" - } + "node_modules/sprintf-js": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", + "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", + "dev": true }, "node_modules/start-server-and-test": { "version": "2.0.3", @@ -6207,13 +6625,17 @@ } }, "node_modules/streamx": { - "version": "2.15.1", - "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.15.1.tgz", - "integrity": "sha512-fQMzy2O/Q47rgwErk/eGeLu/roaFWV0jVsogDmrszM9uIw8L5OA+t+V93MgYlufNptfjmYR1tOMWhei/Eh7TQA==", + "version": "2.20.1", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.20.1.tgz", + "integrity": "sha512-uTa0mU6WUC65iUvzKH4X9hEdvSW7rbPxPtwfWiLMSj3qTdQbAiUboZTxauKfpFuGIGa1C2BYijZ7wgdUXICJhA==", "dev": true, "dependencies": { - "fast-fifo": "^1.1.0", - "queue-tick": "^1.0.1" + "fast-fifo": "^1.3.2", + "queue-tick": "^1.0.1", + "text-decoder": "^1.1.0" + }, + "optionalDependencies": { + "bare-events": "^2.2.0" } }, "node_modules/string_decoder": { @@ -6294,20 +6716,23 @@ } }, "node_modules/tar-fs": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.4.tgz", - "integrity": "sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.6.tgz", + "integrity": "sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==", "dev": true, "dependencies": { - "mkdirp-classic": "^0.5.2", "pump": "^3.0.0", "tar-stream": "^3.1.5" + }, + "optionalDependencies": { + "bare-fs": "^2.1.1", + "bare-path": "^2.1.0" } }, "node_modules/tar-stream": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.6.tgz", - "integrity": "sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", + "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", "dev": true, "dependencies": { "b4a": "^1.6.4", @@ -6391,15 +6816,6 @@ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "dev": true }, - "node_modules/terser/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/terser/node_modules/source-map-support": { "version": "0.5.21", "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", @@ -6410,6 +6826,15 @@ "source-map": "^0.6.0" } }, + "node_modules/text-decoder": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.0.tgz", + "integrity": "sha512-n1yg1mOj9DNpk3NeZOx7T6jchTbyJS3i3cucbNN6FcdPriMZx7NsgrGpWWdWZZGxD7ES1XB+3uoqHMgOKaN+fg==", + "dev": true, + "dependencies": { + "b4a": "^1.6.4" + } + }, "node_modules/through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", @@ -6427,7 +6852,6 @@ "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", "dev": true, - "peer": true, "engines": { "node": ">=4" } @@ -6453,34 +6877,6 @@ "node": ">=0.6" } }, - "node_modules/tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "dev": true, - "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true - }, - "node_modules/trim-right": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", - "integrity": "sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/ts-loader": { "version": "9.4.4", "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.4.tgz", @@ -6658,24 +7054,6 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", "dev": true }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", - "dev": true, - "dependencies": { - "safe-buffer": "^5.0.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", - "dev": true - }, "node_modules/type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", @@ -6689,6 +7067,12 @@ "node": ">= 0.6" } }, + "node_modules/typed-query-selector": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/typed-query-selector/-/typed-query-selector-2.12.0.tgz", + "integrity": "sha512-SbklCd1F0EiZOyPiW192rrHZzZ5sBijB6xM+cpmrwDqObvdtunOHHIk9fCGsoK5JVIYXoyEp4iEdE3upFH3PAg==", + "dev": true + }, "node_modules/typescript": { "version": "4.7.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", @@ -6712,13 +7096,53 @@ "through": "^2.3.8" } }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", + "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", + "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "dev": true, "engines": { - "node": ">= 4.0.0" + "node": ">= 10.0.0" } }, "node_modules/unpipe": { @@ -6731,9 +7155,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", + "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", "dev": true, "funding": [ { @@ -6750,8 +7174,8 @@ } ], "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.1.2", + "picocolors": "^1.0.1" }, "bin": { "update-browserslist-db": "cli.js" @@ -6769,6 +7193,12 @@ "punycode": "^2.1.0" } }, + "node_modules/urlpattern-polyfill": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz", + "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==", + "dev": true + }, "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", @@ -6790,16 +7220,6 @@ "node": ">= 0.4.0" } }, - "node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", - "dev": true, - "bin": { - "uuid": "bin/uuid" - } - }, "node_modules/v8-compile-cache-lib": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", @@ -6815,20 +7235,6 @@ "node": ">= 0.8" } }, - "node_modules/verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", - "dev": true, - "engines": [ - "node >=0.6.0" - ], - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, "node_modules/wait-on": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-7.2.0.tgz", @@ -6870,12 +7276,6 @@ "minimalistic-assert": "^1.0.0" } }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", - "dev": true - }, "node_modules/webpack": { "version": "5.88.2", "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", @@ -7122,16 +7522,6 @@ "node": ">=0.8.0" } }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dev": true, - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -7210,9 +7600,9 @@ "dev": true }, "node_modules/ws": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", - "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", "dev": true, "engines": { "node": ">=10.0.0" @@ -7243,13 +7633,12 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true, - "peer": true + "dev": true }, "node_modules/yargs": { - "version": "17.7.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.1.tgz", - "integrity": "sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==", + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, "dependencies": { "cliui": "^8.0.1", @@ -7303,6 +7692,15 @@ "funding": { "url": "https://github.com/sponsors/sindresorhus" } + }, + "node_modules/zod": { + "version": "3.23.8", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz", + "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } } } } diff --git a/ecosystem-tests/ts-browser-webpack/package.json b/ecosystem-tests/ts-browser-webpack/package.json index ac251790f..921495cb0 100644 --- a/ecosystem-tests/ts-browser-webpack/package.json +++ b/ecosystem-tests/ts-browser-webpack/package.json @@ -5,23 +5,23 @@ "description": "ts-browser-webpack", "scripts": { "tsc": "tsc", - "serve": "webpack-cli serve", + "serve": "webpack serve", "build": "webpack", "test": "ts-node src/test.ts", "test:ci": "start-server-and-test serve http://localhost:8080 test" }, "devDependencies": { - "babel-core": "^6.26.3", + "@babel/core": "^7.21.0", + "@babel/preset-env": "^7.21.0", + "@babel/preset-typescript": "^7.21.0", "babel-loader": "^9.1.2", - "babel-preset-es2015": "^6.24.1", "fastest-levenshtein": "^1.0.16", - "force": "^0.0.3", "html-webpack-plugin": "^5.5.3", - "puppeteer": "^20.8.3", + "puppeteer": "^23.4.0", "start-server-and-test": "^2.0.0", "ts-loader": "^9.4.3", "ts-node": "^10.9.1", - "typescript": "4.7.4", + "typescript": "^4.7.4", "webpack": "^5.87.0", "webpack-cli": "^5.0.2", "webpack-dev-server": "^4.15.1" diff --git a/ecosystem-tests/ts-browser-webpack/webpack.config.js b/ecosystem-tests/ts-browser-webpack/webpack.config.js index 4dec6efb4..0b5c3c7d5 100644 --- a/ecosystem-tests/ts-browser-webpack/webpack.config.js +++ b/ecosystem-tests/ts-browser-webpack/webpack.config.js @@ -25,13 +25,13 @@ module.exports = { { test: /\.ts$/, exclude: /node_modules/, - loader: 'ts-loader', + use: 'ts-loader', }, ], }, resolve: { - extensions: ['*', '.js', '.ts'], + extensions: ['.js', '.ts'], }, devtool: 'eval', @@ -42,4 +42,12 @@ module.exports = { filename: 'index.html', }), ], + + devServer: { + static: { + directory: publicPath, + }, + compress: true, + port: 8080, + }, }; From 9f86d2776d8c5578d46b23a2fc313e6fb13c70a0 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 25 Sep 2024 12:02:33 +0000 Subject: [PATCH 557/725] fix(audio): correct response_format translations type (#1097) --- .stats.yml | 2 +- api.md | 1 + src/index.ts | 1 + src/resources/audio/audio.ts | 7 +++++++ src/resources/audio/index.ts | 2 +- src/resources/audio/transcriptions.ts | 6 +++--- src/resources/audio/translations.ts | 6 +++--- src/resources/index.ts | 2 +- tests/api-resources/audio/translations.test.ts | 2 +- 9 files changed, 19 insertions(+), 10 deletions(-) diff --git a/.stats.yml b/.stats.yml index 0151c5a10..e8bca3c6d 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-de1981b64ac229493473670d618500c6362c195f1057eb7de00bd1bc9184fbd5.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-073331021d48db6af646a3552ab0c682efe31b7fb4e59a109ed1ba539f9b89c5.yml diff --git a/api.md b/api.md index f38ab69be..39cf72f1d 100644 --- a/api.md +++ b/api.md @@ -108,6 +108,7 @@ Methods: Types: - AudioModel +- AudioResponseFormat ## Transcriptions diff --git a/src/index.ts b/src/index.ts index 7fed1dc8c..55f603608 100644 --- a/src/index.ts +++ b/src/index.ts @@ -298,6 +298,7 @@ export namespace OpenAI { export import Audio = API.Audio; export import AudioModel = API.AudioModel; + export import AudioResponseFormat = API.AudioResponseFormat; export import Moderations = API.Moderations; export import Moderation = API.Moderation; diff --git a/src/resources/audio/audio.ts b/src/resources/audio/audio.ts index 1f0269d03..a8b35d986 100644 --- a/src/resources/audio/audio.ts +++ b/src/resources/audio/audio.ts @@ -14,8 +14,15 @@ export class Audio extends APIResource { export type AudioModel = 'whisper-1'; +/** + * The format of the output, in one of these options: `json`, `text`, `srt`, + * `verbose_json`, or `vtt`. + */ +export type AudioResponseFormat = 'json' | 'text' | 'srt' | 'verbose_json' | 'vtt'; + export namespace Audio { export import AudioModel = AudioAPI.AudioModel; + export import AudioResponseFormat = AudioAPI.AudioResponseFormat; export import Transcriptions = TranscriptionsAPI.Transcriptions; export import Transcription = TranscriptionsAPI.Transcription; export import TranscriptionCreateParams = TranscriptionsAPI.TranscriptionCreateParams; diff --git a/src/resources/audio/index.ts b/src/resources/audio/index.ts index a7f935964..e8836470c 100644 --- a/src/resources/audio/index.ts +++ b/src/resources/audio/index.ts @@ -1,6 +1,6 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -export { AudioModel, Audio } from './audio'; +export { AudioModel, AudioResponseFormat, Audio } from './audio'; export { SpeechModel, SpeechCreateParams, Speech } from './speech'; export { Transcription, TranscriptionCreateParams, Transcriptions } from './transcriptions'; export { Translation, TranslationCreateParams, Translations } from './translations'; diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index 5c30d6c59..1ee6921cd 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -54,10 +54,10 @@ export interface TranscriptionCreateParams { prompt?: string; /** - * The format of the transcript output, in one of these options: `json`, `text`, - * `srt`, `verbose_json`, or `vtt`. + * The format of the output, in one of these options: `json`, `text`, `srt`, + * `verbose_json`, or `vtt`. */ - response_format?: 'json' | 'text' | 'srt' | 'verbose_json' | 'vtt'; + response_format?: AudioAPI.AudioResponseFormat; /** * The sampling temperature, between 0 and 1. Higher values like 0.8 will make the diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index dedc15b65..6df718112 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -40,10 +40,10 @@ export interface TranslationCreateParams { prompt?: string; /** - * The format of the transcript output, in one of these options: `json`, `text`, - * `srt`, `verbose_json`, or `vtt`. + * The format of the output, in one of these options: `json`, `text`, `srt`, + * `verbose_json`, or `vtt`. */ - response_format?: string; + response_format?: AudioAPI.AudioResponseFormat; /** * The sampling temperature, between 0 and 1. Higher values like 0.8 will make the diff --git a/src/resources/index.ts b/src/resources/index.ts index 68bd88a31..87203ab39 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -2,7 +2,7 @@ export * from './chat/index'; export * from './shared'; -export { AudioModel, Audio } from './audio/audio'; +export { AudioModel, AudioResponseFormat, Audio } from './audio/audio'; export { Batch, BatchError, diff --git a/tests/api-resources/audio/translations.test.ts b/tests/api-resources/audio/translations.test.ts index 8264a5818..7966ff49a 100644 --- a/tests/api-resources/audio/translations.test.ts +++ b/tests/api-resources/audio/translations.test.ts @@ -28,7 +28,7 @@ describe('resource translations', () => { file: await toFile(Buffer.from('# my file contents'), 'README.md'), model: 'whisper-1', prompt: 'prompt', - response_format: 'response_format', + response_format: 'json', temperature: 0, }); }); From ee2bb62f055e588c5c8ac1a36348e52270f10c90 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Wed, 25 Sep 2024 13:15:06 +0100 Subject: [PATCH 558/725] chore(internal): fix ecosystem tests error output (#1096) --- ecosystem-tests/cli.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index 550512634..c03ea668a 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -506,8 +506,9 @@ async function run(command: string, args: string[], config?: RunOpts): Promise Date: Wed, 25 Sep 2024 14:31:47 +0000 Subject: [PATCH 559/725] feat(client): allow overriding retry count header (#1098) --- src/core.ts | 18 +++++++++++--- tests/index.test.ts | 58 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+), 3 deletions(-) diff --git a/src/core.ts b/src/core.ts index 877ae8de1..f0619c3d9 100644 --- a/src/core.ts +++ b/src/core.ts @@ -383,7 +383,11 @@ export abstract class APIClient { delete reqHeaders['content-type']; } - reqHeaders['x-stainless-retry-count'] = String(retryCount); + // Don't set the retry count header if it was already set or removed by the caller. We check `headers`, + // which can contain nulls, instead of `reqHeaders` to account for the removal case. + if (getHeader(headers, 'x-stainless-retry-count') === undefined) { + reqHeaders['x-stainless-retry-count'] = String(retryCount); + } this.validateHeaders(reqHeaders, headers); @@ -1170,7 +1174,15 @@ export const isHeadersProtocol = (headers: any): headers is HeadersProtocol => { return typeof headers?.get === 'function'; }; -export const getRequiredHeader = (headers: HeadersLike, header: string): string => { +export const getRequiredHeader = (headers: HeadersLike | Headers, header: string): string => { + const foundHeader = getHeader(headers, header); + if (foundHeader === undefined) { + throw new Error(`Could not find ${header} header`); + } + return foundHeader; +}; + +export const getHeader = (headers: HeadersLike | Headers, header: string): string | undefined => { const lowerCasedHeader = header.toLowerCase(); if (isHeadersProtocol(headers)) { // to deal with the case where the header looks like Stainless-Event-Id @@ -1196,7 +1208,7 @@ export const getRequiredHeader = (headers: HeadersLike, header: string): string } } - throw new Error(`Could not find ${header} header`); + return undefined; }; /** diff --git a/tests/index.test.ts b/tests/index.test.ts index a6fa97199..b55ec5f67 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -266,6 +266,64 @@ describe('retries', () => { expect(count).toEqual(3); }); + test('omit retry count header', async () => { + let count = 0; + let capturedRequest: RequestInit | undefined; + const testFetch = async (url: RequestInfo, init: RequestInit = {}): Promise => { + count++; + if (count <= 2) { + return new Response(undefined, { + status: 429, + headers: { + 'Retry-After': '0.1', + }, + }); + } + capturedRequest = init; + return new Response(JSON.stringify({ a: 1 }), { headers: { 'Content-Type': 'application/json' } }); + }; + const client = new OpenAI({ apiKey: 'My API Key', fetch: testFetch, maxRetries: 4 }); + + expect( + await client.request({ + path: '/foo', + method: 'get', + headers: { 'X-Stainless-Retry-Count': null }, + }), + ).toEqual({ a: 1 }); + + expect(capturedRequest!.headers as Headers).not.toHaveProperty('x-stainless-retry-count'); + }); + + test('overwrite retry count header', async () => { + let count = 0; + let capturedRequest: RequestInit | undefined; + const testFetch = async (url: RequestInfo, init: RequestInit = {}): Promise => { + count++; + if (count <= 2) { + return new Response(undefined, { + status: 429, + headers: { + 'Retry-After': '0.1', + }, + }); + } + capturedRequest = init; + return new Response(JSON.stringify({ a: 1 }), { headers: { 'Content-Type': 'application/json' } }); + }; + const client = new OpenAI({ apiKey: 'My API Key', fetch: testFetch, maxRetries: 4 }); + + expect( + await client.request({ + path: '/foo', + method: 'get', + headers: { 'X-Stainless-Retry-Count': '42' }, + }), + ).toEqual({ a: 1 }); + + expect((capturedRequest!.headers as Headers)['x-stainless-retry-count']).toBe('42'); + }); + test('retry on 429 with retry-after', async () => { let count = 0; const testFetch = async (url: RequestInfo, { signal }: RequestInit = {}): Promise => { From b7db4b15fd6306100efc859cdf44497470e60afc Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 25 Sep 2024 14:32:16 +0000 Subject: [PATCH 560/725] release: 4.64.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 19 +++++++++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 24 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 541459357..27e41843b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.63.0" + ".": "4.64.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a9677f6d3..dd4553eb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## 4.64.0 (2024-09-25) + +Full Changelog: [v4.63.0...v4.64.0](https://github.com/openai/openai-node/compare/v4.63.0...v4.64.0) + +### Features + +* **client:** allow overriding retry count header ([#1098](https://github.com/openai/openai-node/issues/1098)) ([a466ff7](https://github.com/openai/openai-node/commit/a466ff78a436db82d79a8f53066a85a3b1dbe039)) + + +### Bug Fixes + +* **audio:** correct response_format translations type ([#1097](https://github.com/openai/openai-node/issues/1097)) ([9a5f461](https://github.com/openai/openai-node/commit/9a5f461306e84b62ce1ed8aedbfee90798def5fb)) + + +### Chores + +* **internal:** fix ecosystem tests error output ([#1096](https://github.com/openai/openai-node/issues/1096)) ([ecdb4e9](https://github.com/openai/openai-node/commit/ecdb4e923f94e828d8758559aea78c82417b8f12)) +* **internal:** fix slow ecosystem test ([#1093](https://github.com/openai/openai-node/issues/1093)) ([80ed9ec](https://github.com/openai/openai-node/commit/80ed9ecbd60129164cb407e46dddbc06ef1c54ab)) + ## 4.63.0 (2024-09-20) Full Changelog: [v4.62.1...v4.63.0](https://github.com/openai/openai-node/compare/v4.62.1...v4.63.0) diff --git a/README.md b/README.md index b2a3bc4b4..3d03b9c5d 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.63.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.64.0/mod.ts'; ``` diff --git a/package.json b/package.json index 831169e2d..fbd5bbc07 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.63.0", + "version": "4.64.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index f006e3f3f..fc61a2d35 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.63.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.64.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index ee209cb0e..ebc183c48 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.63.0'; // x-release-please-version +export const VERSION = '4.64.0'; // x-release-please-version From 43464dce83eb2732d195b3669d1cc8d0fc4e1528 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 26 Sep 2024 17:25:07 +0000 Subject: [PATCH 561/725] feat(api): add omni-moderation model (#1100) --- .stats.yml | 2 +- api.md | 3 + src/index.ts | 3 + src/resources/index.ts | 3 + src/resources/moderations.ts | 175 ++++++++++++++++++++++-- tests/api-resources/moderations.test.ts | 2 +- 6 files changed, 174 insertions(+), 14 deletions(-) diff --git a/.stats.yml b/.stats.yml index e8bca3c6d..0998368a4 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-073331021d48db6af646a3552ab0c682efe31b7fb4e59a109ed1ba539f9b89c5.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-17ddd746c775ca4d4fbe64e5621ac30756ef09c061ff6313190b6ec162222d4c.yml diff --git a/api.md b/api.md index 39cf72f1d..73ac38068 100644 --- a/api.md +++ b/api.md @@ -145,7 +145,10 @@ Methods: Types: - Moderation +- ModerationImageURLInput - ModerationModel +- ModerationMultiModalInput +- ModerationTextInput - ModerationCreateResponse Methods: diff --git a/src/index.ts b/src/index.ts index 55f603608..d3e1d2a78 100644 --- a/src/index.ts +++ b/src/index.ts @@ -302,7 +302,10 @@ export namespace OpenAI { export import Moderations = API.Moderations; export import Moderation = API.Moderation; + export import ModerationImageURLInput = API.ModerationImageURLInput; export import ModerationModel = API.ModerationModel; + export import ModerationMultiModalInput = API.ModerationMultiModalInput; + export import ModerationTextInput = API.ModerationTextInput; export import ModerationCreateResponse = API.ModerationCreateResponse; export import ModerationCreateParams = API.ModerationCreateParams; diff --git a/src/resources/index.ts b/src/resources/index.ts index 87203ab39..15c5db77f 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -52,7 +52,10 @@ export { export { Model, ModelDeleted, ModelsPage, Models } from './models'; export { Moderation, + ModerationImageURLInput, ModerationModel, + ModerationMultiModalInput, + ModerationTextInput, ModerationCreateResponse, ModerationCreateParams, Moderations, diff --git a/src/resources/moderations.ts b/src/resources/moderations.ts index f80bc7acb..ba800509e 100644 --- a/src/resources/moderations.ts +++ b/src/resources/moderations.ts @@ -6,7 +6,8 @@ import * as ModerationsAPI from './moderations'; export class Moderations extends APIResource { /** - * Classifies if text is potentially harmful. + * Classifies if text and/or image inputs are potentially harmful. Learn more in + * the [moderation guide](https://platform.openai.com/docs/guides/moderation). */ create( body: ModerationCreateParams, @@ -22,6 +23,11 @@ export interface Moderation { */ categories: Moderation.Categories; + /** + * A list of the categories along with the input type(s) that the score applies to. + */ + category_applied_input_types: Moderation.CategoryAppliedInputTypes; + /** * A list of the categories along with their scores as predicted by model. */ @@ -65,6 +71,20 @@ export namespace Moderation { */ 'hate/threatening': boolean; + /** + * Content that includes instructions or advice that facilitate the planning or + * execution of wrongdoing, or that gives advice or instruction on how to commit + * illicit acts. For example, "how to shoplift" would fit this category. + */ + illicit: boolean; + + /** + * Content that includes instructions or advice that facilitate the planning or + * execution of wrongdoing that also includes violence, or that gives advice or + * instruction on the procurement of any weapon. + */ + 'illicit/violent': boolean; + /** * Content that promotes, encourages, or depicts acts of self-harm, such as * suicide, cutting, and eating disorders. @@ -107,6 +127,76 @@ export namespace Moderation { 'violence/graphic': boolean; } + /** + * A list of the categories along with the input type(s) that the score applies to. + */ + export interface CategoryAppliedInputTypes { + /** + * The applied input type(s) for the category 'harassment'. + */ + harassment: Array<'text'>; + + /** + * The applied input type(s) for the category 'harassment/threatening'. + */ + 'harassment/threatening': Array<'text'>; + + /** + * The applied input type(s) for the category 'hate'. + */ + hate: Array<'text'>; + + /** + * The applied input type(s) for the category 'hate/threatening'. + */ + 'hate/threatening': Array<'text'>; + + /** + * The applied input type(s) for the category 'illicit'. + */ + illicit: Array<'text'>; + + /** + * The applied input type(s) for the category 'illicit/violent'. + */ + 'illicit/violent': Array<'text'>; + + /** + * The applied input type(s) for the category 'self-harm'. + */ + 'self-harm': Array<'text' | 'image'>; + + /** + * The applied input type(s) for the category 'self-harm/instructions'. + */ + 'self-harm/instructions': Array<'text' | 'image'>; + + /** + * The applied input type(s) for the category 'self-harm/intent'. + */ + 'self-harm/intent': Array<'text' | 'image'>; + + /** + * The applied input type(s) for the category 'sexual'. + */ + sexual: Array<'text' | 'image'>; + + /** + * The applied input type(s) for the category 'sexual/minors'. + */ + 'sexual/minors': Array<'text'>; + + /** + * The applied input type(s) for the category 'violence'. + */ + violence: Array<'text' | 'image'>; + + /** + * The applied input type(s) for the category 'violence/graphic'. + */ + 'violence/graphic': Array<'text' | 'image'>; + } + /** * A list of the categories along with their scores as predicted by model. */ @@ -131,6 +221,16 @@ export namespace Moderation { */ 'hate/threatening': number; + /** + * The score for the category 'illicit'. + */ + illicit: number; + + /** + * The score for the category 'illicit/violent'. + */ + 'illicit/violent': number; + /** * The score for the category 'self-harm'. */ @@ -168,7 +268,58 @@ export namespace Moderation { } } -export type ModerationModel = 'text-moderation-latest' | 'text-moderation-stable'; +/** + * An object describing an image to classify. + */ +export interface ModerationImageURLInput { + /** + * Contains either an image URL or a data URL for a base64 encoded image. + */ + image_url: ModerationImageURLInput.ImageURL; + + /** + * Always `image_url`. + */ + type: 'image_url'; +} + +export namespace ModerationImageURLInput { + /** + * Contains either an image URL or a data URL for a base64 encoded image. + */ + export interface ImageURL { + /** + * Either a URL of the image or the base64 encoded image data. + */ + url: string; + } +} + +export type ModerationModel = + | 'omni-moderation-latest' + | 'omni-moderation-2024-09-26' + | 'text-moderation-latest' + | 'text-moderation-stable'; + +/** + * An object describing an image to classify. + */ +export type ModerationMultiModalInput = ModerationImageURLInput | ModerationTextInput; + +/** + * An object describing text to classify. + */ +export interface ModerationTextInput { + /** + * A string of text to classify. + */ + text: string; + + /** + * Always `text`. + */ + type: 'text'; +} /** * Represents if a given text input is potentially harmful. @@ -192,26 +343,26 @@ export interface ModerationCreateResponse { export interface ModerationCreateParams { /** - * The input text to classify + * Input (or inputs) to classify. Can be a single string, an array of strings, or + * an array of multi-modal input objects similar to other models. */ - input: string | Array; + input: string | Array | Array; /** - * Two content moderations models are available: `text-moderation-stable` and - * `text-moderation-latest`. - * - * The default is `text-moderation-latest` which will be automatically upgraded - * over time. This ensures you are always using our most accurate model. If you use - * `text-moderation-stable`, we will provide advanced notice before updating the - * model. Accuracy of `text-moderation-stable` may be slightly lower than for - * `text-moderation-latest`. + * The content moderation model you would like to use. Learn more in + * [the moderation guide](https://platform.openai.com/docs/guides/moderation), and + * learn about available models + * [here](https://platform.openai.com/docs/models/moderation). */ model?: (string & {}) | ModerationModel; } export namespace Moderations { export import Moderation = ModerationsAPI.Moderation; + export import ModerationImageURLInput = ModerationsAPI.ModerationImageURLInput; export import ModerationModel = ModerationsAPI.ModerationModel; + export import ModerationMultiModalInput = ModerationsAPI.ModerationMultiModalInput; + export import ModerationTextInput = ModerationsAPI.ModerationTextInput; export import ModerationCreateResponse = ModerationsAPI.ModerationCreateResponse; export import ModerationCreateParams = ModerationsAPI.ModerationCreateParams; } diff --git a/tests/api-resources/moderations.test.ts b/tests/api-resources/moderations.test.ts index 0df1f0371..64f9acf3c 100644 --- a/tests/api-resources/moderations.test.ts +++ b/tests/api-resources/moderations.test.ts @@ -23,7 +23,7 @@ describe('resource moderations', () => { test('create: required and optional params', async () => { const response = await client.moderations.create({ input: 'I want to kill them.', - model: 'text-moderation-stable', + model: 'omni-moderation-2024-09-26', }); }); }); From 453141d1af377d5251929c1d505c3a1e3c2b9ca0 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 26 Sep 2024 17:25:34 +0000 Subject: [PATCH 562/725] release: 4.65.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 27e41843b..98144b04e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.64.0" + ".": "4.65.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index dd4553eb4..d05b606e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.65.0 (2024-09-26) + +Full Changelog: [v4.64.0...v4.65.0](https://github.com/openai/openai-node/compare/v4.64.0...v4.65.0) + +### Features + +* **api:** add omni-moderation model ([#1100](https://github.com/openai/openai-node/issues/1100)) ([66c0f21](https://github.com/openai/openai-node/commit/66c0f21fad3be9c57b810c4a7eebb71eb6ccbcc1)) + ## 4.64.0 (2024-09-25) Full Changelog: [v4.63.0...v4.64.0](https://github.com/openai/openai-node/compare/v4.63.0...v4.64.0) diff --git a/README.md b/README.md index 3d03b9c5d..7bcb0dcda 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.64.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.65.0/mod.ts'; ``` diff --git a/package.json b/package.json index fbd5bbc07..03825be64 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.64.0", + "version": "4.65.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index fc61a2d35..cbedabbb5 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.64.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.65.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index ebc183c48..db5c3bcf7 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.64.0'; // x-release-please-version +export const VERSION = '4.65.0'; // x-release-please-version From 9e6c55a53940e88ae6af6033980081d5e5ea7d80 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Fri, 27 Sep 2024 16:02:33 +0100 Subject: [PATCH 563/725] feat(client): add request_id to `.withResponse()` (#1095) --- src/core.ts | 9 ++++++--- tests/responses.test.ts | 21 +++++++++++++++++++++ 2 files changed, 27 insertions(+), 3 deletions(-) diff --git a/src/core.ts b/src/core.ts index f0619c3d9..c104b61d1 100644 --- a/src/core.ts +++ b/src/core.ts @@ -138,8 +138,11 @@ export class APIPromise extends Promise> { asResponse(): Promise { return this.responsePromise.then((p) => p.response); } + /** - * Gets the parsed response data and the raw `Response` instance. + * Gets the parsed response data, the raw `Response` instance and the ID of the request, + * returned via the X-Request-ID header which is useful for debugging requests and reporting + * issues to OpenAI. * * If you just want to get the raw `Response` instance without parsing it, * you can use {@link asResponse()}. @@ -151,9 +154,9 @@ export class APIPromise extends Promise> { * - `import 'openai/shims/node'` (if you're running on Node) * - `import 'openai/shims/web'` (otherwise) */ - async withResponse(): Promise<{ data: T; response: Response }> { + async withResponse(): Promise<{ data: T; response: Response; request_id: string | null | undefined }> { const [data, response] = await Promise.all([this.parse(), this.asResponse()]); - return { data, response }; + return { data, response, request_id: response.headers.get('x-request-id') }; } private parse(): Promise> { diff --git a/tests/responses.test.ts b/tests/responses.test.ts index fbd073a79..527763465 100644 --- a/tests/responses.test.ts +++ b/tests/responses.test.ts @@ -41,6 +41,27 @@ describe('request id', () => { compareType>>, Array<{ foo: string }>>(true); }); + test('withResponse', async () => { + const client = new OpenAI({ + apiKey: 'dummy', + fetch: async () => + new Response(JSON.stringify({ id: 'bar' }), { + headers: { 'x-request-id': 'req_id_xxx', 'content-type': 'application/json' }, + }), + }); + + const { + data: completion, + response, + request_id, + } = await client.chat.completions.create({ messages: [], model: 'gpt-4' }).withResponse(); + + expect(request_id).toBe('req_id_xxx'); + expect(response.headers.get('x-request-id')).toBe('req_id_xxx'); + expect(completion.id).toBe('bar'); + expect(JSON.stringify(completion)).toBe('{"id":"bar"}'); + }); + test('object response', async () => { const client = new OpenAI({ apiKey: 'dummy', From 6792170ace26391e9e3af3ec81fb6b0b94817cb3 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Fri, 27 Sep 2024 23:52:15 +0100 Subject: [PATCH 564/725] fix(audio): correct types for transcriptions / translations (#1104) --- .stats.yml | 2 +- api.md | 10 +- src/resources/audio/audio.ts | 6 ++ src/resources/audio/index.ts | 18 +++- src/resources/audio/transcriptions.ts | 136 +++++++++++++++++++++++++- src/resources/audio/translations.ts | 50 +++++++++- 6 files changed, 211 insertions(+), 11 deletions(-) diff --git a/.stats.yml b/.stats.yml index 0998368a4..68789976b 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-17ddd746c775ca4d4fbe64e5621ac30756ef09c061ff6313190b6ec162222d4c.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-71e58a77027c67e003fdd1b1ac8ac11557d8bfabc7666d1a827c6b1ca8ab98b5.yml diff --git a/api.md b/api.md index 73ac38068..71027acfd 100644 --- a/api.md +++ b/api.md @@ -115,20 +115,26 @@ Types: Types: - Transcription +- TranscriptionSegment +- TranscriptionVerbose +- TranscriptionWord +- TranscriptionCreateResponse Methods: -- client.audio.transcriptions.create({ ...params }) -> Transcription +- client.audio.transcriptions.create({ ...params }) -> TranscriptionCreateResponse ## Translations Types: - Translation +- TranslationVerbose +- TranslationCreateResponse Methods: -- client.audio.translations.create({ ...params }) -> Translation +- client.audio.translations.create({ ...params }) -> TranslationCreateResponse ## Speech diff --git a/src/resources/audio/audio.ts b/src/resources/audio/audio.ts index a8b35d986..9c2c2b982 100644 --- a/src/resources/audio/audio.ts +++ b/src/resources/audio/audio.ts @@ -25,9 +25,15 @@ export namespace Audio { export import AudioResponseFormat = AudioAPI.AudioResponseFormat; export import Transcriptions = TranscriptionsAPI.Transcriptions; export import Transcription = TranscriptionsAPI.Transcription; + export import TranscriptionSegment = TranscriptionsAPI.TranscriptionSegment; + export import TranscriptionVerbose = TranscriptionsAPI.TranscriptionVerbose; + export import TranscriptionWord = TranscriptionsAPI.TranscriptionWord; + export import TranscriptionCreateResponse = TranscriptionsAPI.TranscriptionCreateResponse; export import TranscriptionCreateParams = TranscriptionsAPI.TranscriptionCreateParams; export import Translations = TranslationsAPI.Translations; export import Translation = TranslationsAPI.Translation; + export import TranslationVerbose = TranslationsAPI.TranslationVerbose; + export import TranslationCreateResponse = TranslationsAPI.TranslationCreateResponse; export import TranslationCreateParams = TranslationsAPI.TranslationCreateParams; export import Speech = SpeechAPI.Speech; export import SpeechModel = SpeechAPI.SpeechModel; diff --git a/src/resources/audio/index.ts b/src/resources/audio/index.ts index e8836470c..952c05b03 100644 --- a/src/resources/audio/index.ts +++ b/src/resources/audio/index.ts @@ -2,5 +2,19 @@ export { AudioModel, AudioResponseFormat, Audio } from './audio'; export { SpeechModel, SpeechCreateParams, Speech } from './speech'; -export { Transcription, TranscriptionCreateParams, Transcriptions } from './transcriptions'; -export { Translation, TranslationCreateParams, Translations } from './translations'; +export { + Transcription, + TranscriptionSegment, + TranscriptionVerbose, + TranscriptionWord, + TranscriptionCreateResponse, + TranscriptionCreateParams, + Transcriptions, +} from './transcriptions'; +export { + Translation, + TranslationVerbose, + TranslationCreateResponse, + TranslationCreateParams, + Translations, +} from './translations'; diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index 1ee6921cd..e230bc4a4 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -9,7 +9,22 @@ export class Transcriptions extends APIResource { /** * Transcribes audio into the input language. */ - create(body: TranscriptionCreateParams, options?: Core.RequestOptions): Core.APIPromise { + create( + body: TranscriptionCreateParams<'json' | undefined>, + options?: Core.RequestOptions, + ): Core.APIPromise; + create( + body: TranscriptionCreateParams<'verbose_json'>, + options?: Core.RequestOptions, + ): Core.APIPromise; + create( + body: TranscriptionCreateParams<'srt' | 'vtt' | 'text'>, + options?: Core.RequestOptions, + ): Core.APIPromise; + create( + body: TranscriptionCreateParams, + options?: Core.RequestOptions, + ): Core.APIPromise { return this._client.post('/audio/transcriptions', Core.multipartFormRequestOptions({ body, ...options })); } } @@ -25,7 +40,118 @@ export interface Transcription { text: string; } -export interface TranscriptionCreateParams { +export interface TranscriptionSegment { + /** + * Unique identifier of the segment. + */ + id: number; + + /** + * Average logprob of the segment. If the value is lower than -1, consider the + * logprobs failed. + */ + avg_logprob: number; + + /** + * Compression ratio of the segment. If the value is greater than 2.4, consider the + * compression failed. + */ + compression_ratio: number; + + /** + * End time of the segment in seconds. + */ + end: number; + + /** + * Probability of no speech in the segment. If the value is higher than 1.0 and the + * `avg_logprob` is below -1, consider this segment silent. + */ + no_speech_prob: number; + + /** + * Seek offset of the segment. + */ + seek: number; + + /** + * Start time of the segment in seconds. + */ + start: number; + + /** + * Temperature parameter used for generating the segment. + */ + temperature: number; + + /** + * Text content of the segment. + */ + text: string; + + /** + * Array of token IDs for the text content. + */ + tokens: Array; +} + +/** + * Represents a verbose json transcription response returned by model, based on the + * provided input. + */ +export interface TranscriptionVerbose { + /** + * The duration of the input audio. + */ + duration: string; + + /** + * The language of the input audio. + */ + language: string; + + /** + * The transcribed text. + */ + text: string; + + /** + * Segments of the transcribed text and their corresponding details. + */ + segments?: Array; + + /** + * Extracted words and their corresponding timestamps. + */ + words?: Array; +} + +export interface TranscriptionWord { + /** + * End time of the word in seconds. + */ + end: number; + + /** + * Start time of the word in seconds. + */ + start: number; + + /** + * The text content of the word. + */ + word: string; +} + +/** + * Represents a transcription response returned by model, based on the provided + * input. + */ +export type TranscriptionCreateResponse = Transcription | TranscriptionVerbose; + +export interface TranscriptionCreateParams< + ResponseFormat extends AudioAPI.AudioResponseFormat | undefined = AudioAPI.AudioResponseFormat | undefined, +> { /** * The audio file object (not file name) to transcribe, in one of these formats: * flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. @@ -57,7 +183,7 @@ export interface TranscriptionCreateParams { * The format of the output, in one of these options: `json`, `text`, `srt`, * `verbose_json`, or `vtt`. */ - response_format?: AudioAPI.AudioResponseFormat; + response_format?: ResponseFormat; /** * The sampling temperature, between 0 and 1. Higher values like 0.8 will make the @@ -80,5 +206,9 @@ export interface TranscriptionCreateParams { export namespace Transcriptions { export import Transcription = TranscriptionsAPI.Transcription; + export import TranscriptionSegment = TranscriptionsAPI.TranscriptionSegment; + export import TranscriptionVerbose = TranscriptionsAPI.TranscriptionVerbose; + export import TranscriptionWord = TranscriptionsAPI.TranscriptionWord; + export import TranscriptionCreateResponse = TranscriptionsAPI.TranscriptionCreateResponse; export import TranscriptionCreateParams = TranscriptionsAPI.TranscriptionCreateParams; } diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index 6df718112..819804332 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -4,12 +4,28 @@ import { APIResource } from '../../resource'; import * as Core from '../../core'; import * as TranslationsAPI from './translations'; import * as AudioAPI from './audio'; +import * as TranscriptionsAPI from './transcriptions'; export class Translations extends APIResource { /** * Translates audio into English. */ - create(body: TranslationCreateParams, options?: Core.RequestOptions): Core.APIPromise { + create( + body: TranslationCreateParams<'json' | undefined>, + options?: Core.RequestOptions, + ): Core.APIPromise; + create( + body: TranslationCreateParams<'verbose_json'>, + options?: Core.RequestOptions, + ): Core.APIPromise; + create( + body: TranslationCreateParams<'text' | 'srt' | 'vtt'>, + options?: Core.RequestOptions, + ): Core.APIPromise; + create( + body: TranslationCreateParams, + options?: Core.RequestOptions, + ): Core.APIPromise { return this._client.post('/audio/translations', Core.multipartFormRequestOptions({ body, ...options })); } } @@ -18,7 +34,33 @@ export interface Translation { text: string; } -export interface TranslationCreateParams { +export interface TranslationVerbose { + /** + * The duration of the input audio. + */ + duration: string; + + /** + * The language of the output translation (always `english`). + */ + language: string; + + /** + * The translated text. + */ + text: string; + + /** + * Segments of the translated text and their corresponding details. + */ + segments?: Array; +} + +export type TranslationCreateResponse = Translation | TranslationVerbose; + +export interface TranslationCreateParams< + ResponseFormat extends AudioAPI.AudioResponseFormat | undefined = AudioAPI.AudioResponseFormat | undefined, +> { /** * The audio file object (not file name) translate, in one of these formats: flac, * mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. @@ -43,7 +85,7 @@ export interface TranslationCreateParams { * The format of the output, in one of these options: `json`, `text`, `srt`, * `verbose_json`, or `vtt`. */ - response_format?: AudioAPI.AudioResponseFormat; + response_format?: ResponseFormat; /** * The sampling temperature, between 0 and 1. Higher values like 0.8 will make the @@ -57,5 +99,7 @@ export interface TranslationCreateParams { export namespace Translations { export import Translation = TranslationsAPI.Translation; + export import TranslationVerbose = TranslationsAPI.TranslationVerbose; + export import TranslationCreateResponse = TranslationsAPI.TranslationCreateResponse; export import TranslationCreateParams = TranslationsAPI.TranslationCreateParams; } From 806a873244cf9edac65d4c7999205a55e2a1b48d Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 27 Sep 2024 23:01:18 +0000 Subject: [PATCH 565/725] release: 4.66.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 19 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 98144b04e..efb39fad4 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.65.0" + ".": "4.66.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d05b606e7..61e398258 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 4.66.0 (2024-09-27) + +Full Changelog: [v4.65.0...v4.66.0](https://github.com/openai/openai-node/compare/v4.65.0...v4.66.0) + +### Features + +* **client:** add request_id to `.withResponse()` ([#1095](https://github.com/openai/openai-node/issues/1095)) ([2d0f565](https://github.com/openai/openai-node/commit/2d0f565f124a8862bc24214cc3ddce9db0ba75bc)) + + +### Bug Fixes + +* **audio:** correct types for transcriptions / translations ([#1104](https://github.com/openai/openai-node/issues/1104)) ([96e86c2](https://github.com/openai/openai-node/commit/96e86c214ba79d50035b61e5daa3489f082512c4)) +* **client:** correct types for transcriptions / translations ([#1105](https://github.com/openai/openai-node/issues/1105)) ([fa16ebb](https://github.com/openai/openai-node/commit/fa16ebbb314ebc7c274d27f0148d248edf48e055)) + ## 4.65.0 (2024-09-26) Full Changelog: [v4.64.0...v4.65.0](https://github.com/openai/openai-node/compare/v4.64.0...v4.65.0) diff --git a/README.md b/README.md index 7bcb0dcda..1058dce4c 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.65.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.66.0/mod.ts'; ``` diff --git a/package.json b/package.json index 03825be64..b8cdcb658 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.65.0", + "version": "4.66.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index cbedabbb5..04f414a32 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.65.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.66.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index db5c3bcf7..3da94762b 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.65.0'; // x-release-please-version +export const VERSION = '4.66.0'; // x-release-please-version From 7c6c1e29e1cb32648dc1dcc585d7f49f4b7c6438 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Mon, 30 Sep 2024 10:33:47 -0400 Subject: [PATCH 566/725] fix(audio): use export type --- src/resources/audio/audio.ts | 12 ++++++++++-- src/resources/audio/transcriptions.ts | 6 +++++- src/resources/audio/translations.ts | 6 +++++- 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/src/resources/audio/audio.ts b/src/resources/audio/audio.ts index 9c2c2b982..e06e28094 100644 --- a/src/resources/audio/audio.ts +++ b/src/resources/audio/audio.ts @@ -29,12 +29,20 @@ export namespace Audio { export import TranscriptionVerbose = TranscriptionsAPI.TranscriptionVerbose; export import TranscriptionWord = TranscriptionsAPI.TranscriptionWord; export import TranscriptionCreateResponse = TranscriptionsAPI.TranscriptionCreateResponse; - export import TranscriptionCreateParams = TranscriptionsAPI.TranscriptionCreateParams; + export type TranscriptionCreateParams< + ResponseFormat extends AudioAPI.AudioResponseFormat | undefined = + | AudioAPI.AudioResponseFormat + | undefined, + > = TranscriptionsAPI.TranscriptionCreateParams; export import Translations = TranslationsAPI.Translations; export import Translation = TranslationsAPI.Translation; export import TranslationVerbose = TranslationsAPI.TranslationVerbose; export import TranslationCreateResponse = TranslationsAPI.TranslationCreateResponse; - export import TranslationCreateParams = TranslationsAPI.TranslationCreateParams; + export type TranslationCreateParams< + ResponseFormat extends AudioAPI.AudioResponseFormat | undefined = + | AudioAPI.AudioResponseFormat + | undefined, + > = TranslationsAPI.TranslationCreateParams; export import Speech = SpeechAPI.Speech; export import SpeechModel = SpeechAPI.SpeechModel; export import SpeechCreateParams = SpeechAPI.SpeechCreateParams; diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index e230bc4a4..bdbfc6268 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -210,5 +210,9 @@ export namespace Transcriptions { export import TranscriptionVerbose = TranscriptionsAPI.TranscriptionVerbose; export import TranscriptionWord = TranscriptionsAPI.TranscriptionWord; export import TranscriptionCreateResponse = TranscriptionsAPI.TranscriptionCreateResponse; - export import TranscriptionCreateParams = TranscriptionsAPI.TranscriptionCreateParams; + export type TranscriptionCreateParams< + ResponseFormat extends AudioAPI.AudioResponseFormat | undefined = + | AudioAPI.AudioResponseFormat + | undefined, + > = TranscriptionsAPI.TranscriptionCreateParams; } diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index 819804332..a76c72351 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -101,5 +101,9 @@ export namespace Translations { export import Translation = TranslationsAPI.Translation; export import TranslationVerbose = TranslationsAPI.TranslationVerbose; export import TranslationCreateResponse = TranslationsAPI.TranslationCreateResponse; - export import TranslationCreateParams = TranslationsAPI.TranslationCreateParams; + export type TranslationCreateParams< + ResponseFormat extends AudioAPI.AudioResponseFormat | undefined = + | AudioAPI.AudioResponseFormat + | undefined, + > = TranslationsAPI.TranslationCreateParams; } From fcbad2c5eaeabd368528a8bd26ea08fd62c690b5 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Mon, 30 Sep 2024 10:12:52 -0400 Subject: [PATCH 567/725] fix(audio): add fallback overload types --- src/resources/audio/transcriptions.ts | 1 + src/resources/audio/translations.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index bdbfc6268..902dc9e5f 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -21,6 +21,7 @@ export class Transcriptions extends APIResource { body: TranscriptionCreateParams<'srt' | 'vtt' | 'text'>, options?: Core.RequestOptions, ): Core.APIPromise; + create(body: TranscriptionCreateParams, options?: Core.RequestOptions): Core.APIPromise; create( body: TranscriptionCreateParams, options?: Core.RequestOptions, diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index a76c72351..36c2dc7c2 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -22,6 +22,7 @@ export class Translations extends APIResource { body: TranslationCreateParams<'text' | 'srt' | 'vtt'>, options?: Core.RequestOptions, ): Core.APIPromise; + create(body: TranslationCreateParams, options?: Core.RequestOptions): Core.APIPromise; create( body: TranslationCreateParams, options?: Core.RequestOptions, From 52c0bb506d418323f1f78ed197ebcd97ee948a7c Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 30 Sep 2024 14:47:44 +0000 Subject: [PATCH 568/725] release: 4.66.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index efb39fad4..933d4022c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.66.0" + ".": "4.66.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 61e398258..e927252ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 4.66.1 (2024-09-30) + +Full Changelog: [v4.66.0...v4.66.1](https://github.com/openai/openai-node/compare/v4.66.0...v4.66.1) + +### Bug Fixes + +* **audio:** add fallback overload types ([0c00a13](https://github.com/openai/openai-node/commit/0c00a13dd864b974d3376c905647209e4a79f244)) +* **audio:** use export type ([1519100](https://github.com/openai/openai-node/commit/1519100e530e08e7683549d0bcdd919b9c2d1654)) + ## 4.66.0 (2024-09-27) Full Changelog: [v4.65.0...v4.66.0](https://github.com/openai/openai-node/compare/v4.65.0...v4.66.0) diff --git a/README.md b/README.md index 1058dce4c..a0132bb63 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.66.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.66.1/mod.ts'; ``` diff --git a/package.json b/package.json index b8cdcb658..038d377ea 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.66.0", + "version": "4.66.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 04f414a32..7d0c4219d 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.66.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.66.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 3da94762b..ce3023d68 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.66.0'; // x-release-please-version +export const VERSION = '4.66.1'; // x-release-please-version From 96225e167b2d29be4f5a9a266a7391c0e8e04cef Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Tue, 1 Oct 2024 17:52:44 +0000 Subject: [PATCH 569/725] feat(api): support storing chat completions, enabling evals and model distillation in the dashboard (#1112) Learn more at http://openai.com/devday2024 --- src/resources/chat/chat.ts | 1 + src/resources/chat/completions.ts | 20 ++++++++++++++-- src/resources/completions.ts | 25 ++++++++++++++++++++ tests/api-resources/chat/completions.test.ts | 2 ++ 4 files changed, 46 insertions(+), 2 deletions(-) diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 1a758fbb5..5bc7de955 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -16,6 +16,7 @@ export type ChatModel = | 'gpt-4o' | 'gpt-4o-2024-08-06' | 'gpt-4o-2024-05-13' + | 'gpt-4o-realtime-preview-2024-10-01' | 'chatgpt-4o-latest' | 'gpt-4o-mini' | 'gpt-4o-mini-2024-07-18' diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index f426ce36f..27aebdc4c 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -727,8 +727,12 @@ export type ChatCompletionCreateParams = export interface ChatCompletionCreateParamsBase { /** - * A list of messages comprising the conversation so far. - * [Example Python code](https://cookbook.openai.com/examples/how_to_format_inputs_to_chatgpt_models). + * A list of messages comprising the conversation so far. Depending on the + * [model](https://platform.openai.com/docs/models) you use, different message + * types (modalities) are supported, like + * [text](https://platform.openai.com/docs/guides/text-generation), + * [images](https://platform.openai.com/docs/guides/vision), and + * [audio](https://platform.openai.com/docs/guides/audio). */ messages: Array; @@ -806,6 +810,12 @@ export interface ChatCompletionCreateParamsBase { */ max_tokens?: number | null; + /** + * Developer-defined tags and values used for filtering completions in the + * [dashboard](https://platform.openai.com/completions). + */ + metadata?: Record | null; + /** * How many chat completion choices to generate for each input message. Note that * you will be charged based on the number of generated tokens across all of the @@ -889,6 +899,12 @@ export interface ChatCompletionCreateParamsBase { */ stop?: string | null | Array; + /** + * Whether or not to store the output of this completion request for traffic + * logging in the [dashboard](https://platform.openai.com/completions). + */ + store?: boolean | null; + /** * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be * sent as data-only diff --git a/src/resources/completions.ts b/src/resources/completions.ts index 152496766..7acd5d13f 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -125,6 +125,11 @@ export interface CompletionUsage { * Breakdown of tokens used in a completion. */ completion_tokens_details?: CompletionUsage.CompletionTokensDetails; + + /** + * Breakdown of tokens used in the prompt. + */ + prompt_tokens_details?: CompletionUsage.PromptTokensDetails; } export namespace CompletionUsage { @@ -132,11 +137,31 @@ export namespace CompletionUsage { * Breakdown of tokens used in a completion. */ export interface CompletionTokensDetails { + /** + * Audio input tokens generated by the model. + */ + audio_tokens?: number; + /** * Tokens generated by the model for reasoning. */ reasoning_tokens?: number; } + + /** + * Breakdown of tokens used in the prompt. + */ + export interface PromptTokensDetails { + /** + * Audio input tokens present in the prompt. + */ + audio_tokens?: number; + + /** + * Cached tokens present in the prompt. + */ + cached_tokens?: number; + } } export type CompletionCreateParams = CompletionCreateParamsNonStreaming | CompletionCreateParamsStreaming; diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 692b953f2..4f015b47e 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -34,6 +34,7 @@ describe('resource completions', () => { logprobs: true, max_completion_tokens: 0, max_tokens: 0, + metadata: { foo: 'string' }, n: 1, parallel_tool_calls: true, presence_penalty: -2, @@ -41,6 +42,7 @@ describe('resource completions', () => { seed: -9007199254740991, service_tier: 'auto', stop: 'string', + store: true, stream: false, stream_options: { include_usage: true }, temperature: 1, From e53eb194c9a79064e303575fb92b3ee5ddd77268 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 17:53:05 +0000 Subject: [PATCH 570/725] release: 4.67.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 933d4022c..6872cea50 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.66.1" + ".": "4.67.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e927252ce..1c8960f56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.67.0 (2024-10-01) + +Full Changelog: [v4.66.1...v4.67.0](https://github.com/openai/openai-node/compare/v4.66.1...v4.67.0) + +### Features + +* **api:** support storing chat completions, enabling evals and model distillation in the dashboard ([#1112](https://github.com/openai/openai-node/issues/1112)) ([6424924](https://github.com/openai/openai-node/commit/6424924b6361e54f07c04fce9075ab16fcb712fb)) + ## 4.66.1 (2024-09-30) Full Changelog: [v4.66.0...v4.66.1](https://github.com/openai/openai-node/compare/v4.66.0...v4.66.1) diff --git a/README.md b/README.md index a0132bb63..4eaa2a8f7 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.66.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.67.0/mod.ts'; ``` diff --git a/package.json b/package.json index 038d377ea..eb6aa2fa0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.66.1", + "version": "4.67.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 7d0c4219d..91d392205 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.66.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.67.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index ce3023d68..fe2f611c2 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.66.1'; // x-release-please-version +export const VERSION = '4.67.0'; // x-release-please-version From 6ff5cd9ea2d5267d4784f77e0be71efa8bcc5591 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 19:35:05 +0000 Subject: [PATCH 571/725] docs: improve and reference contributing documentation (#1115) --- CONTRIBUTING.md | 46 +++++++++++++++++++++++----------------------- README.md | 4 ++++ 2 files changed, 27 insertions(+), 23 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 62b48d828..e8bbc1b07 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,9 +5,9 @@ Other package managers may work but are not officially supported for development To set up the repository, run: -```bash -yarn -yarn build +```sh +$ yarn +$ yarn build ``` This will install all the required dependencies and build output files to `dist/`. @@ -22,7 +22,7 @@ modify the contents of the `src/lib/` and `examples/` directories. All files in the `examples/` directory are not modified by the generator and can be freely edited or added to. -```bash +```ts // add an example to examples/.ts #!/usr/bin/env -S npm run tsn -T @@ -41,38 +41,38 @@ If you’d like to use the repository from source, you can either install from g To install via git: -```bash -npm install git+ssh://git@github.com:openai/openai-node.git +```sh +$ npm install git+ssh://git@github.com:openai/openai-node.git ``` Alternatively, to link a local copy of the repo: -```bash +```sh # Clone -git clone https://www.github.com/openai/openai-node -cd openai-node +$ git clone https://www.github.com/openai/openai-node +$ cd openai-node # With yarn -yarn link -cd ../my-package -yarn link openai +$ yarn link +$ cd ../my-package +$ yarn link openai # With pnpm -pnpm link --global -cd ../my-package -pnpm link -—global openai +$ pnpm link --global +$ cd ../my-package +$ pnpm link -—global openai ``` ## Running tests Most tests require you to [set up a mock server](https://github.com/stoplightio/prism) against the OpenAPI spec to run the tests. -```bash -npx prism mock path/to/your/openapi.yml +```sh +$ npx prism mock path/to/your/openapi.yml ``` -```bash -yarn run test +```sh +$ yarn run test ``` ## Linting and formatting @@ -82,14 +82,14 @@ This repository uses [prettier](https://www.npmjs.com/package/prettier) and To lint: -```bash -yarn lint +```sh +$ yarn lint ``` To format and fix all lint issues automatically: -```bash -yarn fix +```sh +$ yarn fix ``` ## Publishing and releases diff --git a/README.md b/README.md index 4eaa2a8f7..c5fc3273b 100644 --- a/README.md +++ b/README.md @@ -650,3 +650,7 @@ The following runtimes are supported: Note that React Native is not supported at this time. If you are interested in other runtime environments, please open or upvote an issue on GitHub. + +## Contributing + +See [the contributing documentation](./CONTRIBUTING.md). From 785ef4b579637d3a6a205c0a9c51aa71987bf30e Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 2 Oct 2024 05:07:04 +0000 Subject: [PATCH 572/725] release: 4.67.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6872cea50..913154f97 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.67.0" + ".": "4.67.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c8960f56..b866aeff2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.67.1 (2024-10-02) + +Full Changelog: [v4.67.0...v4.67.1](https://github.com/openai/openai-node/compare/v4.67.0...v4.67.1) + +### Documentation + +* improve and reference contributing documentation ([#1115](https://github.com/openai/openai-node/issues/1115)) ([7fa30b3](https://github.com/openai/openai-node/commit/7fa30b3ebf276556141df95ba8e824a0276b61f8)) + ## 4.67.0 (2024-10-01) Full Changelog: [v4.66.1...v4.67.0](https://github.com/openai/openai-node/compare/v4.66.1...v4.67.0) diff --git a/README.md b/README.md index c5fc3273b..058f412d5 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.67.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.67.1/mod.ts'; ``` diff --git a/package.json b/package.json index eb6aa2fa0..b04cf8a6a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.67.0", + "version": "4.67.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 91d392205..a717ae498 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.67.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.67.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index fe2f611c2..b60359315 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.67.0'; // x-release-please-version +export const VERSION = '4.67.1'; // x-release-please-version From f7c96748caccf79aa60c63cb94f5a8582f45e371 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 4 Oct 2024 18:11:15 +0000 Subject: [PATCH 573/725] chore(internal): move LineDecoder to a separate file (#1120) --- src/internal/decoders/line.ts | 114 ++++++++++++++++++++++++++++++++++ src/streaming.ts | 112 +-------------------------------- 2 files changed, 115 insertions(+), 111 deletions(-) create mode 100644 src/internal/decoders/line.ts diff --git a/src/internal/decoders/line.ts b/src/internal/decoders/line.ts new file mode 100644 index 000000000..1e0bbf390 --- /dev/null +++ b/src/internal/decoders/line.ts @@ -0,0 +1,114 @@ +import { OpenAIError } from '../../error'; + +type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined; + +/** + * A re-implementation of httpx's `LineDecoder` in Python that handles incrementally + * reading lines from text. + * + * https://github.com/encode/httpx/blob/920333ea98118e9cf617f246905d7b202510941c/httpx/_decoders.py#L258 + */ +export class LineDecoder { + // prettier-ignore + static NEWLINE_CHARS = new Set(['\n', '\r']); + static NEWLINE_REGEXP = /\r\n|[\n\r]/g; + + buffer: string[]; + trailingCR: boolean; + textDecoder: any; // TextDecoder found in browsers; not typed to avoid pulling in either "dom" or "node" types. + + constructor() { + this.buffer = []; + this.trailingCR = false; + } + + decode(chunk: Bytes): string[] { + let text = this.decodeText(chunk); + + if (this.trailingCR) { + text = '\r' + text; + this.trailingCR = false; + } + if (text.endsWith('\r')) { + this.trailingCR = true; + text = text.slice(0, -1); + } + + if (!text) { + return []; + } + + const trailingNewline = LineDecoder.NEWLINE_CHARS.has(text[text.length - 1] || ''); + let lines = text.split(LineDecoder.NEWLINE_REGEXP); + + // if there is a trailing new line then the last entry will be an empty + // string which we don't care about + if (trailingNewline) { + lines.pop(); + } + + if (lines.length === 1 && !trailingNewline) { + this.buffer.push(lines[0]!); + return []; + } + + if (this.buffer.length > 0) { + lines = [this.buffer.join('') + lines[0], ...lines.slice(1)]; + this.buffer = []; + } + + if (!trailingNewline) { + this.buffer = [lines.pop() || '']; + } + + return lines; + } + + decodeText(bytes: Bytes): string { + if (bytes == null) return ''; + if (typeof bytes === 'string') return bytes; + + // Node: + if (typeof Buffer !== 'undefined') { + if (bytes instanceof Buffer) { + return bytes.toString(); + } + if (bytes instanceof Uint8Array) { + return Buffer.from(bytes).toString(); + } + + throw new OpenAIError( + `Unexpected: received non-Uint8Array (${bytes.constructor.name}) stream chunk in an environment with a global "Buffer" defined, which this library assumes to be Node. Please report this error.`, + ); + } + + // Browser + if (typeof TextDecoder !== 'undefined') { + if (bytes instanceof Uint8Array || bytes instanceof ArrayBuffer) { + this.textDecoder ??= new TextDecoder('utf8'); + return this.textDecoder.decode(bytes); + } + + throw new OpenAIError( + `Unexpected: received non-Uint8Array/ArrayBuffer (${ + (bytes as any).constructor.name + }) in a web platform. Please report this error.`, + ); + } + + throw new OpenAIError( + `Unexpected: neither Buffer nor TextDecoder are available as globals. Please report this error.`, + ); + } + + flush(): string[] { + if (!this.buffer.length && !this.trailingCR) { + return []; + } + + const lines = [this.buffer.join('')]; + this.buffer = []; + this.trailingCR = false; + return lines; + } +} diff --git a/src/streaming.ts b/src/streaming.ts index 722a8f69c..597ee89fa 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -1,5 +1,6 @@ import { ReadableStream, type Response } from './_shims/index'; import { OpenAIError } from './error'; +import { LineDecoder } from './internal/decoders/line'; import { APIError } from 'openai/error'; @@ -343,117 +344,6 @@ class SSEDecoder { } } -/** - * A re-implementation of httpx's `LineDecoder` in Python that handles incrementally - * reading lines from text. - * - * https://github.com/encode/httpx/blob/920333ea98118e9cf617f246905d7b202510941c/httpx/_decoders.py#L258 - */ -class LineDecoder { - // prettier-ignore - static NEWLINE_CHARS = new Set(['\n', '\r']); - static NEWLINE_REGEXP = /\r\n|[\n\r]/g; - - buffer: string[]; - trailingCR: boolean; - textDecoder: any; // TextDecoder found in browsers; not typed to avoid pulling in either "dom" or "node" types. - - constructor() { - this.buffer = []; - this.trailingCR = false; - } - - decode(chunk: Bytes): string[] { - let text = this.decodeText(chunk); - - if (this.trailingCR) { - text = '\r' + text; - this.trailingCR = false; - } - if (text.endsWith('\r')) { - this.trailingCR = true; - text = text.slice(0, -1); - } - - if (!text) { - return []; - } - - const trailingNewline = LineDecoder.NEWLINE_CHARS.has(text[text.length - 1] || ''); - let lines = text.split(LineDecoder.NEWLINE_REGEXP); - - // if there is a trailing new line then the last entry will be an empty - // string which we don't care about - if (trailingNewline) { - lines.pop(); - } - - if (lines.length === 1 && !trailingNewline) { - this.buffer.push(lines[0]!); - return []; - } - - if (this.buffer.length > 0) { - lines = [this.buffer.join('') + lines[0], ...lines.slice(1)]; - this.buffer = []; - } - - if (!trailingNewline) { - this.buffer = [lines.pop() || '']; - } - - return lines; - } - - decodeText(bytes: Bytes): string { - if (bytes == null) return ''; - if (typeof bytes === 'string') return bytes; - - // Node: - if (typeof Buffer !== 'undefined') { - if (bytes instanceof Buffer) { - return bytes.toString(); - } - if (bytes instanceof Uint8Array) { - return Buffer.from(bytes).toString(); - } - - throw new OpenAIError( - `Unexpected: received non-Uint8Array (${bytes.constructor.name}) stream chunk in an environment with a global "Buffer" defined, which this library assumes to be Node. Please report this error.`, - ); - } - - // Browser - if (typeof TextDecoder !== 'undefined') { - if (bytes instanceof Uint8Array || bytes instanceof ArrayBuffer) { - this.textDecoder ??= new TextDecoder('utf8'); - return this.textDecoder.decode(bytes); - } - - throw new OpenAIError( - `Unexpected: received non-Uint8Array/ArrayBuffer (${ - (bytes as any).constructor.name - }) in a web platform. Please report this error.`, - ); - } - - throw new OpenAIError( - `Unexpected: neither Buffer nor TextDecoder are available as globals. Please report this error.`, - ); - } - - flush(): string[] { - if (!this.buffer.length && !this.trailingCR) { - return []; - } - - const lines = [this.buffer.join('')]; - this.buffer = []; - this.trailingCR = false; - return lines; - } -} - /** This is an internal helper function that's just used for testing */ export function _decodeChunks(chunks: string[]): string[] { const decoder = new LineDecoder(); From 7f8b872f68df6a77d0c27d858c18bccae939cdc6 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 05:07:29 +0000 Subject: [PATCH 574/725] release: 4.67.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 913154f97..f45113292 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.67.1" + ".": "4.67.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b866aeff2..72e61a413 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.67.2 (2024-10-07) + +Full Changelog: [v4.67.1...v4.67.2](https://github.com/openai/openai-node/compare/v4.67.1...v4.67.2) + +### Chores + +* **internal:** move LineDecoder to a separate file ([#1120](https://github.com/openai/openai-node/issues/1120)) ([0a4be65](https://github.com/openai/openai-node/commit/0a4be6506bf26d2b9552ff3fd13a22c04b53ea18)) + ## 4.67.1 (2024-10-02) Full Changelog: [v4.67.0...v4.67.1](https://github.com/openai/openai-node/compare/v4.67.0...v4.67.1) diff --git a/README.md b/README.md index 058f412d5..11e1455e2 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.67.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.67.2/mod.ts'; ``` diff --git a/package.json b/package.json index b04cf8a6a..79b73d5cb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.67.1", + "version": "4.67.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index a717ae498..46c3f3db3 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.67.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.67.2/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index b60359315..fb7e251f7 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.67.1'; // x-release-please-version +export const VERSION = '4.67.2'; // x-release-please-version From 6cdc77de20f27cbc9e0a3bac52f2308e4216ad76 Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Tue, 8 Oct 2024 13:42:35 +0000 Subject: [PATCH 575/725] chore(internal): pass props through internal parser (#1125) --- src/core.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core.ts b/src/core.ts index c104b61d1..d78e9e926 100644 --- a/src/core.ts +++ b/src/core.ts @@ -116,9 +116,9 @@ export class APIPromise extends Promise> { }); } - _thenUnwrap(transform: (data: T) => U): APIPromise { + _thenUnwrap(transform: (data: T, props: APIResponseProps) => U): APIPromise { return new APIPromise(this.responsePromise, async (props) => - _addRequestID(transform(await this.parseResponse(props)), props.response), + _addRequestID(transform(await this.parseResponse(props), props), props.response), ); } From 3c326626c1035d43ee184cedc9084a7d399331df Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 13:42:59 +0000 Subject: [PATCH 576/725] release: 4.67.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f45113292..e8c54ecee 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.67.2" + ".": "4.67.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 72e61a413..710d09ca9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.67.3 (2024-10-08) + +Full Changelog: [v4.67.2...v4.67.3](https://github.com/openai/openai-node/compare/v4.67.2...v4.67.3) + +### Chores + +* **internal:** pass props through internal parser ([#1125](https://github.com/openai/openai-node/issues/1125)) ([5ef8aa8](https://github.com/openai/openai-node/commit/5ef8aa8d308f7374dd01d8079cd76e0d96999ec2)) + ## 4.67.2 (2024-10-07) Full Changelog: [v4.67.1...v4.67.2](https://github.com/openai/openai-node/compare/v4.67.1...v4.67.2) diff --git a/README.md b/README.md index 11e1455e2..407933634 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.67.2/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.67.3/mod.ts'; ``` diff --git a/package.json b/package.json index 79b73d5cb..e20c1b9c1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.67.2", + "version": "4.67.3", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 46c3f3db3..f59404dbc 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.67.2/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.67.3/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index fb7e251f7..174c31111 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.67.2'; // x-release-please-version +export const VERSION = '4.67.3'; // x-release-please-version From 16e094b5e50e4b61e5d1f6519282a12672fc71a3 Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Thu, 17 Oct 2024 16:52:53 +0000 Subject: [PATCH 577/725] feat(api): add gpt-4o-audio-preview model for chat completions (#1135) This enables audio inputs and outputs. https://platform.openai.com/docs/guides/audio --- .stats.yml | 2 +- api.md | 4 + src/index.ts | 4 + src/lib/AbstractChatCompletionRunner.ts | 4 +- src/resources/beta/assistants.ts | 10 ++ src/resources/chat/chat.ts | 7 + src/resources/chat/completions.ts | 153 ++++++++++++++++++- src/resources/chat/index.ts | 4 + tests/api-resources/chat/completions.test.ts | 2 + 9 files changed, 183 insertions(+), 7 deletions(-) diff --git a/.stats.yml b/.stats.yml index 68789976b..984e8a8d5 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-71e58a77027c67e003fdd1b1ac8ac11557d8bfabc7666d1a827c6b1ca8ab98b5.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-8729aaa35436531ab453224af10e67f89677db8f350f0346bb3537489edea649.yml diff --git a/api.md b/api.md index 71027acfd..da60f65bd 100644 --- a/api.md +++ b/api.md @@ -33,9 +33,12 @@ Types: - ChatCompletion - ChatCompletionAssistantMessageParam +- ChatCompletionAudio +- ChatCompletionAudioParam - ChatCompletionChunk - ChatCompletionContentPart - ChatCompletionContentPartImage +- ChatCompletionContentPartInputAudio - ChatCompletionContentPartRefusal - ChatCompletionContentPartText - ChatCompletionFunctionCallOption @@ -43,6 +46,7 @@ Types: - ChatCompletionMessage - ChatCompletionMessageParam - ChatCompletionMessageToolCall +- ChatCompletionModality - ChatCompletionNamedToolChoice - ChatCompletionRole - ChatCompletionStreamOptions diff --git a/src/index.ts b/src/index.ts index d3e1d2a78..56108223a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -250,9 +250,12 @@ export namespace OpenAI { export import ChatModel = API.ChatModel; export import ChatCompletion = API.ChatCompletion; export import ChatCompletionAssistantMessageParam = API.ChatCompletionAssistantMessageParam; + export import ChatCompletionAudio = API.ChatCompletionAudio; + export import ChatCompletionAudioParam = API.ChatCompletionAudioParam; export import ChatCompletionChunk = API.ChatCompletionChunk; export import ChatCompletionContentPart = API.ChatCompletionContentPart; export import ChatCompletionContentPartImage = API.ChatCompletionContentPartImage; + export import ChatCompletionContentPartInputAudio = API.ChatCompletionContentPartInputAudio; export import ChatCompletionContentPartRefusal = API.ChatCompletionContentPartRefusal; export import ChatCompletionContentPartText = API.ChatCompletionContentPartText; export import ChatCompletionFunctionCallOption = API.ChatCompletionFunctionCallOption; @@ -260,6 +263,7 @@ export namespace OpenAI { export import ChatCompletionMessage = API.ChatCompletionMessage; export import ChatCompletionMessageParam = API.ChatCompletionMessageParam; export import ChatCompletionMessageToolCall = API.ChatCompletionMessageToolCall; + export import ChatCompletionModality = API.ChatCompletionModality; export import ChatCompletionNamedToolChoice = API.ChatCompletionNamedToolChoice; export import ChatCompletionRole = API.ChatCompletionRole; export import ChatCompletionStreamOptions = API.ChatCompletionStreamOptions; diff --git a/src/lib/AbstractChatCompletionRunner.ts b/src/lib/AbstractChatCompletionRunner.ts index 39ee4e993..e943a4e4f 100644 --- a/src/lib/AbstractChatCompletionRunner.ts +++ b/src/lib/AbstractChatCompletionRunner.ts @@ -105,7 +105,9 @@ export class AbstractChatCompletionRunner< const message = this.messages[i]; if (isAssistantMessage(message)) { const { function_call, ...rest } = message; - const ret: ChatCompletionMessage = { + + // TODO: support audio here + const ret: Omit = { ...rest, content: (message as ChatCompletionMessage).content ?? null, refusal: (message as ChatCompletionMessage).refusal ?? null, diff --git a/src/resources/beta/assistants.ts b/src/resources/beta/assistants.ts index 410d520b0..aa7362297 100644 --- a/src/resources/beta/assistants.ts +++ b/src/resources/beta/assistants.ts @@ -298,6 +298,11 @@ export namespace AssistantStreamEvent { data: ThreadsAPI.Thread; event: 'thread.created'; + + /** + * Whether to enable input audio transcription. + */ + enabled?: boolean; } /** @@ -1084,6 +1089,11 @@ export interface ThreadStreamEvent { data: ThreadsAPI.Thread; event: 'thread.created'; + + /** + * Whether to enable input audio transcription. + */ + enabled?: boolean; } export interface AssistantCreateParams { diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 5bc7de955..43ef5662c 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -16,7 +16,10 @@ export type ChatModel = | 'gpt-4o' | 'gpt-4o-2024-08-06' | 'gpt-4o-2024-05-13' + | 'gpt-4o-realtime-preview' | 'gpt-4o-realtime-preview-2024-10-01' + | 'gpt-4o-audio-preview' + | 'gpt-4o-audio-preview-2024-10-01' | 'chatgpt-4o-latest' | 'gpt-4o-mini' | 'gpt-4o-mini-2024-07-18' @@ -45,9 +48,12 @@ export namespace Chat { export import Completions = CompletionsAPI.Completions; export import ChatCompletion = CompletionsAPI.ChatCompletion; export import ChatCompletionAssistantMessageParam = CompletionsAPI.ChatCompletionAssistantMessageParam; + export import ChatCompletionAudio = CompletionsAPI.ChatCompletionAudio; + export import ChatCompletionAudioParam = CompletionsAPI.ChatCompletionAudioParam; export import ChatCompletionChunk = CompletionsAPI.ChatCompletionChunk; export import ChatCompletionContentPart = CompletionsAPI.ChatCompletionContentPart; export import ChatCompletionContentPartImage = CompletionsAPI.ChatCompletionContentPartImage; + export import ChatCompletionContentPartInputAudio = CompletionsAPI.ChatCompletionContentPartInputAudio; export import ChatCompletionContentPartRefusal = CompletionsAPI.ChatCompletionContentPartRefusal; export import ChatCompletionContentPartText = CompletionsAPI.ChatCompletionContentPartText; export import ChatCompletionFunctionCallOption = CompletionsAPI.ChatCompletionFunctionCallOption; @@ -55,6 +61,7 @@ export namespace Chat { export import ChatCompletionMessage = CompletionsAPI.ChatCompletionMessage; export import ChatCompletionMessageParam = CompletionsAPI.ChatCompletionMessageParam; export import ChatCompletionMessageToolCall = CompletionsAPI.ChatCompletionMessageToolCall; + export import ChatCompletionModality = CompletionsAPI.ChatCompletionModality; export import ChatCompletionNamedToolChoice = CompletionsAPI.ChatCompletionNamedToolChoice; export import ChatCompletionRole = CompletionsAPI.ChatCompletionRole; export import ChatCompletionStreamOptions = CompletionsAPI.ChatCompletionStreamOptions; diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 27aebdc4c..97174ec1b 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -11,7 +11,10 @@ import { Stream } from '../../streaming'; export class Completions extends APIResource { /** - * Creates a model response for the given chat conversation. + * Creates a model response for the given chat conversation. Learn more in the + * [text generation](https://platform.openai.com/docs/guides/text-generation), + * [vision](https://platform.openai.com/docs/guides/vision), and + * [audio](https://platform.openai.com/docs/guides/audio) guides. */ create( body: ChatCompletionCreateParamsNonStreaming, @@ -138,6 +141,12 @@ export interface ChatCompletionAssistantMessageParam { */ role: 'assistant'; + /** + * Data about a previous audio response from the model. + * [Learn more](https://platform.openai.com/docs/guides/audio). + */ + audio?: ChatCompletionAssistantMessageParam.Audio | null; + /** * The contents of the assistant message. Required unless `tool_calls` or * `function_call` is specified. @@ -168,6 +177,17 @@ export interface ChatCompletionAssistantMessageParam { } export namespace ChatCompletionAssistantMessageParam { + /** + * Data about a previous audio response from the model. + * [Learn more](https://platform.openai.com/docs/guides/audio). + */ + export interface Audio { + /** + * Unique identifier for a previous audio response from the model. + */ + id: string; + } + /** * @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of * a function that should be called, as generated by the model. @@ -188,6 +208,54 @@ export namespace ChatCompletionAssistantMessageParam { } } +/** + * If the audio output modality is requested, this object contains data about the + * audio response from the model. + * [Learn more](https://platform.openai.com/docs/guides/audio). + */ +export interface ChatCompletionAudio { + /** + * Unique identifier for this audio response. + */ + id: string; + + /** + * Base64 encoded audio bytes generated by the model, in the format specified in + * the request. + */ + data: string; + + /** + * The Unix timestamp (in seconds) for when this audio response will no longer be + * accessible on the server for use in multi-turn conversations. + */ + expires_at: number; + + /** + * Transcript of the audio generated by the model. + */ + transcript: string; +} + +/** + * Parameters for audio output. Required when audio output is requested with + * `modalities: ["audio"]`. + * [Learn more](https://platform.openai.com/docs/guides/audio). + */ +export interface ChatCompletionAudioParam { + /** + * Specifies the output audio format. Must be one of `wav`, `mp3`, `flac`, `opus`, + * or `pcm16`. + */ + format: 'wav' | 'mp3' | 'flac' | 'opus' | 'pcm16'; + + /** + * Specifies the voice type. Supported voices are `alloy`, `echo`, `fable`, `onyx`, + * `nova`, and `shimmer`. + */ + voice: 'alloy' | 'echo' | 'fable' | 'onyx' | 'nova' | 'shimmer'; +} + /** * Represents a streamed chunk of a chat completion response returned by model, * based on the provided input. @@ -371,8 +439,18 @@ export namespace ChatCompletionChunk { } } -export type ChatCompletionContentPart = ChatCompletionContentPartText | ChatCompletionContentPartImage; +/** + * Learn about + * [text inputs](https://platform.openai.com/docs/guides/text-generation). + */ +export type ChatCompletionContentPart = + | ChatCompletionContentPartText + | ChatCompletionContentPartImage + | ChatCompletionContentPartInputAudio; +/** + * Learn about [image inputs](https://platform.openai.com/docs/guides/vision). + */ export interface ChatCompletionContentPartImage { image_url: ChatCompletionContentPartImage.ImageURL; @@ -397,6 +475,32 @@ export namespace ChatCompletionContentPartImage { } } +/** + * Learn about [audio inputs](https://platform.openai.com/docs/guides/audio). + */ +export interface ChatCompletionContentPartInputAudio { + input_audio: ChatCompletionContentPartInputAudio.InputAudio; + + /** + * The type of the content part. Always `input_audio`. + */ + type: 'input_audio'; +} + +export namespace ChatCompletionContentPartInputAudio { + export interface InputAudio { + /** + * Base64 encoded audio data. + */ + data: string; + + /** + * The format of the encoded audio data. Currently supports "wav" and "mp3". + */ + format: 'wav' | 'mp3'; + } +} + export interface ChatCompletionContentPartRefusal { /** * The refusal message generated by the model. @@ -409,6 +513,10 @@ export interface ChatCompletionContentPartRefusal { type: 'refusal'; } +/** + * Learn about + * [text inputs](https://platform.openai.com/docs/guides/text-generation). + */ export interface ChatCompletionContentPartText { /** * The text content. @@ -471,6 +579,13 @@ export interface ChatCompletionMessage { */ role: 'assistant'; + /** + * If the audio output modality is requested, this object contains data about the + * audio response from the model. + * [Learn more](https://platform.openai.com/docs/guides/audio). + */ + audio?: ChatCompletionAudio | null; + /** * @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of * a function that should be called, as generated by the model. @@ -548,6 +663,8 @@ export namespace ChatCompletionMessageToolCall { } } +export type ChatCompletionModality = 'text' | 'audio'; + /** * Specifies a tool the model should use. Use to force the model to call a specific * function. @@ -743,6 +860,13 @@ export interface ChatCompletionCreateParamsBase { */ model: (string & {}) | ChatAPI.ChatModel; + /** + * Parameters for audio output. Required when audio output is requested with + * `modalities: ["audio"]`. + * [Learn more](https://platform.openai.com/docs/guides/audio). + */ + audio?: ChatCompletionAudioParam | null; + /** * Number between -2.0 and 2.0. Positive values penalize new tokens based on their * existing frequency in the text so far, decreasing the model's likelihood to @@ -812,10 +936,24 @@ export interface ChatCompletionCreateParamsBase { /** * Developer-defined tags and values used for filtering completions in the - * [dashboard](https://platform.openai.com/completions). + * [dashboard](https://platform.openai.com/chat-completions). */ metadata?: Record | null; + /** + * Output types that you would like the model to generate for this request. Most + * models are capable of generating text, which is the default: + * + * `["text"]` + * + * The `gpt-4o-audio-preview` model can also be used to + * [generate audio](https://platform.openai.com/docs/guides/audio). To request that + * this model generate both text and audio responses, you can use: + * + * `["text", "audio"]` + */ + modalities?: Array | null; + /** * How many chat completion choices to generate for each input message. Note that * you will be charged based on the number of generated tokens across all of the @@ -900,8 +1038,9 @@ export interface ChatCompletionCreateParamsBase { stop?: string | null | Array; /** - * Whether or not to store the output of this completion request for traffic - * logging in the [dashboard](https://platform.openai.com/completions). + * Whether or not to store the output of this chat completion request for use in + * our [model distillation](https://platform.openai.com/docs/guides/distillation) + * or [evals](https://platform.openai.com/docs/guides/evals) products. */ store?: boolean | null; @@ -1049,9 +1188,12 @@ export type CompletionCreateParamsStreaming = ChatCompletionCreateParamsStreamin export namespace Completions { export import ChatCompletion = ChatCompletionsAPI.ChatCompletion; export import ChatCompletionAssistantMessageParam = ChatCompletionsAPI.ChatCompletionAssistantMessageParam; + export import ChatCompletionAudio = ChatCompletionsAPI.ChatCompletionAudio; + export import ChatCompletionAudioParam = ChatCompletionsAPI.ChatCompletionAudioParam; export import ChatCompletionChunk = ChatCompletionsAPI.ChatCompletionChunk; export import ChatCompletionContentPart = ChatCompletionsAPI.ChatCompletionContentPart; export import ChatCompletionContentPartImage = ChatCompletionsAPI.ChatCompletionContentPartImage; + export import ChatCompletionContentPartInputAudio = ChatCompletionsAPI.ChatCompletionContentPartInputAudio; export import ChatCompletionContentPartRefusal = ChatCompletionsAPI.ChatCompletionContentPartRefusal; export import ChatCompletionContentPartText = ChatCompletionsAPI.ChatCompletionContentPartText; export import ChatCompletionFunctionCallOption = ChatCompletionsAPI.ChatCompletionFunctionCallOption; @@ -1059,6 +1201,7 @@ export namespace Completions { export import ChatCompletionMessage = ChatCompletionsAPI.ChatCompletionMessage; export import ChatCompletionMessageParam = ChatCompletionsAPI.ChatCompletionMessageParam; export import ChatCompletionMessageToolCall = ChatCompletionsAPI.ChatCompletionMessageToolCall; + export import ChatCompletionModality = ChatCompletionsAPI.ChatCompletionModality; export import ChatCompletionNamedToolChoice = ChatCompletionsAPI.ChatCompletionNamedToolChoice; export import ChatCompletionRole = ChatCompletionsAPI.ChatCompletionRole; export import ChatCompletionStreamOptions = ChatCompletionsAPI.ChatCompletionStreamOptions; diff --git a/src/resources/chat/index.ts b/src/resources/chat/index.ts index 748770948..22803e819 100644 --- a/src/resources/chat/index.ts +++ b/src/resources/chat/index.ts @@ -3,9 +3,12 @@ export { ChatCompletion, ChatCompletionAssistantMessageParam, + ChatCompletionAudio, + ChatCompletionAudioParam, ChatCompletionChunk, ChatCompletionContentPart, ChatCompletionContentPartImage, + ChatCompletionContentPartInputAudio, ChatCompletionContentPartRefusal, ChatCompletionContentPartText, ChatCompletionFunctionCallOption, @@ -13,6 +16,7 @@ export { ChatCompletionMessage, ChatCompletionMessageParam, ChatCompletionMessageToolCall, + ChatCompletionModality, ChatCompletionNamedToolChoice, ChatCompletionRole, ChatCompletionStreamOptions, diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 4f015b47e..77d4a251c 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -27,6 +27,7 @@ describe('resource completions', () => { const response = await client.chat.completions.create({ messages: [{ content: 'string', role: 'system', name: 'name' }], model: 'gpt-4o', + audio: { format: 'wav', voice: 'alloy' }, frequency_penalty: -2, function_call: 'none', functions: [{ name: 'name', description: 'description', parameters: { foo: 'bar' } }], @@ -35,6 +36,7 @@ describe('resource completions', () => { max_completion_tokens: 0, max_tokens: 0, metadata: { foo: 'string' }, + modalities: ['text', 'audio'], n: 1, parallel_tool_calls: true, presence_penalty: -2, From 6ae19ce08eea4f6b3c4865861a6cce09d403cac8 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 17 Oct 2024 17:19:37 +0000 Subject: [PATCH 578/725] release: 4.68.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e8c54ecee..91b39801d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.67.3" + ".": "4.68.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 710d09ca9..2fcd3be4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.68.0 (2024-10-17) + +Full Changelog: [v4.67.3...v4.68.0](https://github.com/openai/openai-node/compare/v4.67.3...v4.68.0) + +### Features + +* **api:** add gpt-4o-audio-preview model for chat completions ([#1135](https://github.com/openai/openai-node/issues/1135)) ([17a623f](https://github.com/openai/openai-node/commit/17a623f70050bca4538ad2939055cd9d9b165f89)) + ## 4.67.3 (2024-10-08) Full Changelog: [v4.67.2...v4.67.3](https://github.com/openai/openai-node/compare/v4.67.2...v4.67.3) diff --git a/README.md b/README.md index 407933634..bbfc821d2 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.67.3/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.68.0/mod.ts'; ``` diff --git a/package.json b/package.json index e20c1b9c1..807c79098 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.67.3", + "version": "4.68.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index f59404dbc..5e813aeb2 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.67.3/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.68.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 174c31111..12aaa52bb 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.67.3'; // x-release-please-version +export const VERSION = '4.68.0'; // x-release-please-version From 02fd7699130e2ff442aca45622b064bc4eda6fab Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 18 Oct 2024 18:12:40 +0000 Subject: [PATCH 579/725] fix(client): respect x-stainless-retry-count default headers (#1138) --- src/core.ts | 10 +++++++--- tests/index.test.ts | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 3 deletions(-) diff --git a/src/core.ts b/src/core.ts index d78e9e926..9d90178ab 100644 --- a/src/core.ts +++ b/src/core.ts @@ -386,9 +386,13 @@ export abstract class APIClient { delete reqHeaders['content-type']; } - // Don't set the retry count header if it was already set or removed by the caller. We check `headers`, - // which can contain nulls, instead of `reqHeaders` to account for the removal case. - if (getHeader(headers, 'x-stainless-retry-count') === undefined) { + // Don't set the retry count header if it was already set or removed through default headers or by the + // caller. We check `defaultHeaders` and `headers`, which can contain nulls, instead of `reqHeaders` to + // account for the removal case. + if ( + getHeader(defaultHeaders, 'x-stainless-retry-count') === undefined && + getHeader(headers, 'x-stainless-retry-count') === undefined + ) { reqHeaders['x-stainless-retry-count'] = String(retryCount); } diff --git a/tests/index.test.ts b/tests/index.test.ts index b55ec5f67..f39571121 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -295,6 +295,39 @@ describe('retries', () => { expect(capturedRequest!.headers as Headers).not.toHaveProperty('x-stainless-retry-count'); }); + test('omit retry count header by default', async () => { + let count = 0; + let capturedRequest: RequestInit | undefined; + const testFetch = async (url: RequestInfo, init: RequestInit = {}): Promise => { + count++; + if (count <= 2) { + return new Response(undefined, { + status: 429, + headers: { + 'Retry-After': '0.1', + }, + }); + } + capturedRequest = init; + return new Response(JSON.stringify({ a: 1 }), { headers: { 'Content-Type': 'application/json' } }); + }; + const client = new OpenAI({ + apiKey: 'My API Key', + fetch: testFetch, + maxRetries: 4, + defaultHeaders: { 'X-Stainless-Retry-Count': null }, + }); + + expect( + await client.request({ + path: '/foo', + method: 'get', + }), + ).toEqual({ a: 1 }); + + expect(capturedRequest!.headers as Headers).not.toHaveProperty('x-stainless-retry-count'); + }); + test('overwrite retry count header', async () => { let count = 0; let capturedRequest: RequestInit | undefined; From d08bf1a8fa779e6a9349d92ddf65530dd84e686d Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 18 Oct 2024 18:13:06 +0000 Subject: [PATCH 580/725] release: 4.68.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 91b39801d..64f1d21d4 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.68.0" + ".": "4.68.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fcd3be4d..9a2102f46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.68.1 (2024-10-18) + +Full Changelog: [v4.68.0...v4.68.1](https://github.com/openai/openai-node/compare/v4.68.0...v4.68.1) + +### Bug Fixes + +* **client:** respect x-stainless-retry-count default headers ([#1138](https://github.com/openai/openai-node/issues/1138)) ([266717b](https://github.com/openai/openai-node/commit/266717b3301828c7df735064a380a055576183bc)) + ## 4.68.0 (2024-10-17) Full Changelog: [v4.67.3...v4.68.0](https://github.com/openai/openai-node/compare/v4.67.3...v4.68.0) diff --git a/README.md b/README.md index bbfc821d2..d4b838897 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.68.0/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.68.1/mod.ts'; ``` diff --git a/package.json b/package.json index 807c79098..538163b0f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.68.0", + "version": "4.68.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 5e813aeb2..b7459b609 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.68.0/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.68.1/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 12aaa52bb..dcff7c8bd 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.68.0'; // x-release-please-version +export const VERSION = '4.68.1'; // x-release-please-version From 9b27b22f83756c91c9277ce8334da2120b6afe90 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 18:23:54 +0000 Subject: [PATCH 581/725] chore(internal): update spec version (#1141) --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index 984e8a8d5..e1a430e50 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-8729aaa35436531ab453224af10e67f89677db8f350f0346bb3537489edea649.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-f9320ebf347140052c7f8b0bc5c7db24f5e367c368c8cb34c3606af4e2b6591b.yml From ab7770115e88ff1274cf8863afddd6b58f8f158f Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 18:24:22 +0000 Subject: [PATCH 582/725] release: 4.68.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 64f1d21d4..7de9a93f1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.68.1" + ".": "4.68.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a2102f46..93cf66d4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.68.2 (2024-10-22) + +Full Changelog: [v4.68.1...v4.68.2](https://github.com/openai/openai-node/compare/v4.68.1...v4.68.2) + +### Chores + +* **internal:** update spec version ([#1141](https://github.com/openai/openai-node/issues/1141)) ([2ccb3e3](https://github.com/openai/openai-node/commit/2ccb3e357aa2f3eb0fa32c619d8336c3b94cc882)) + ## 4.68.1 (2024-10-18) Full Changelog: [v4.68.0...v4.68.1](https://github.com/openai/openai-node/compare/v4.68.0...v4.68.1) diff --git a/README.md b/README.md index d4b838897..5011b82a1 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.68.1/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.68.2/mod.ts'; ``` diff --git a/package.json b/package.json index 538163b0f..0eaebee91 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.68.1", + "version": "4.68.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index b7459b609..c2276e5ea 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.68.1/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.68.2/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index dcff7c8bd..bb7f3f7bd 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.68.1'; // x-release-please-version +export const VERSION = '4.68.2'; // x-release-please-version From 58a645d572572a3de2688a1fd8511f3edab97866 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 20:11:28 +0000 Subject: [PATCH 583/725] chore(internal): bumps eslint and related dependencies (#1143) --- yarn.lock | 180 ++++++++++++++++++++++++++++-------------------------- 1 file changed, 92 insertions(+), 88 deletions(-) diff --git a/yarn.lock b/yarn.lock index 5a01e39e3..91b22b941 100644 --- a/yarn.lock +++ b/yarn.lock @@ -322,9 +322,9 @@ eslint-visitor-keys "^3.3.0" "@eslint-community/regexpp@^4.5.1": - version "4.9.0" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.9.0.tgz#7ccb5f58703fa61ffdcbf39e2c604a109e781162" - integrity sha512-zJmuCWj2VLBt4c25CfBIbMZLGLyhkvs7LznyVX5HfpzeocThgIj5XQK4L+g3U36mMcx8bPMhGyPpwCATamC4jQ== + version "4.11.1" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.11.1.tgz#a547badfc719eb3e5f4b556325e542fbe9d7a18f" + integrity sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q== "@eslint-community/regexpp@^4.6.1": version "4.6.2" @@ -857,9 +857,9 @@ pretty-format "^29.0.0" "@types/json-schema@^7.0.12": - version "7.0.13" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.13.tgz#02c24f4363176d2d18fc8b70b9f3c54aba178a85" - integrity sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ== + version "7.0.15" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" + integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== "@types/node-fetch@^2.6.4": version "2.6.4" @@ -882,9 +882,9 @@ integrity sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA== "@types/semver@^7.5.0": - version "7.5.3" - resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.3.tgz#9a726e116beb26c24f1ccd6850201e1246122e04" - integrity sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw== + version "7.5.8" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.8.tgz#8268a8c57a3e4abd25c165ecd36237db7948a55e" + integrity sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ== "@types/stack-utils@^2.0.0": version "2.0.3" @@ -904,15 +904,15 @@ "@types/yargs-parser" "*" "@typescript-eslint/eslint-plugin@^6.7.0": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.7.3.tgz#d98046e9f7102d49a93d944d413c6055c47fafd7" - integrity sha512-vntq452UHNltxsaaN+L9WyuMch8bMd9CqJ3zhzTPXXidwbf5mqqKCVXEuvRZUqLJSTLeWE65lQwyXsRGnXkCTA== + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.21.0.tgz#30830c1ca81fd5f3c2714e524c4303e0194f9cd3" + integrity sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA== dependencies: "@eslint-community/regexpp" "^4.5.1" - "@typescript-eslint/scope-manager" "6.7.3" - "@typescript-eslint/type-utils" "6.7.3" - "@typescript-eslint/utils" "6.7.3" - "@typescript-eslint/visitor-keys" "6.7.3" + "@typescript-eslint/scope-manager" "6.21.0" + "@typescript-eslint/type-utils" "6.21.0" + "@typescript-eslint/utils" "6.21.0" + "@typescript-eslint/visitor-keys" "6.21.0" debug "^4.3.4" graphemer "^1.4.0" ignore "^5.2.4" @@ -921,71 +921,72 @@ ts-api-utils "^1.0.1" "@typescript-eslint/parser@^6.7.0": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.7.3.tgz#aaf40092a32877439e5957e18f2d6a91c82cc2fd" - integrity sha512-TlutE+iep2o7R8Lf+yoer3zU6/0EAUc8QIBB3GYBc1KGz4c4TRm83xwXUZVPlZ6YCLss4r77jbu6j3sendJoiQ== - dependencies: - "@typescript-eslint/scope-manager" "6.7.3" - "@typescript-eslint/types" "6.7.3" - "@typescript-eslint/typescript-estree" "6.7.3" - "@typescript-eslint/visitor-keys" "6.7.3" + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.21.0.tgz#af8fcf66feee2edc86bc5d1cf45e33b0630bf35b" + integrity sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ== + dependencies: + "@typescript-eslint/scope-manager" "6.21.0" + "@typescript-eslint/types" "6.21.0" + "@typescript-eslint/typescript-estree" "6.21.0" + "@typescript-eslint/visitor-keys" "6.21.0" debug "^4.3.4" -"@typescript-eslint/scope-manager@6.7.3": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.7.3.tgz#07e5709c9bdae3eaf216947433ef97b3b8b7d755" - integrity sha512-wOlo0QnEou9cHO2TdkJmzF7DFGvAKEnB82PuPNHpT8ZKKaZu6Bm63ugOTn9fXNJtvuDPanBc78lGUGGytJoVzQ== +"@typescript-eslint/scope-manager@6.21.0": + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz#ea8a9bfc8f1504a6ac5d59a6df308d3a0630a2b1" + integrity sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg== dependencies: - "@typescript-eslint/types" "6.7.3" - "@typescript-eslint/visitor-keys" "6.7.3" + "@typescript-eslint/types" "6.21.0" + "@typescript-eslint/visitor-keys" "6.21.0" -"@typescript-eslint/type-utils@6.7.3": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.7.3.tgz#c2c165c135dda68a5e70074ade183f5ad68f3400" - integrity sha512-Fc68K0aTDrKIBvLnKTZ5Pf3MXK495YErrbHb1R6aTpfK5OdSFj0rVN7ib6Tx6ePrZ2gsjLqr0s98NG7l96KSQw== +"@typescript-eslint/type-utils@6.21.0": + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.21.0.tgz#6473281cfed4dacabe8004e8521cee0bd9d4c01e" + integrity sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag== dependencies: - "@typescript-eslint/typescript-estree" "6.7.3" - "@typescript-eslint/utils" "6.7.3" + "@typescript-eslint/typescript-estree" "6.21.0" + "@typescript-eslint/utils" "6.21.0" debug "^4.3.4" ts-api-utils "^1.0.1" -"@typescript-eslint/types@6.7.3": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.7.3.tgz#0402b5628a63f24f2dc9d4a678e9a92cc50ea3e9" - integrity sha512-4g+de6roB2NFcfkZb439tigpAMnvEIg3rIjWQ+EM7IBaYt/CdJt6em9BJ4h4UpdgaBWdmx2iWsafHTrqmgIPNw== +"@typescript-eslint/types@6.21.0": + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.21.0.tgz#205724c5123a8fef7ecd195075fa6e85bac3436d" + integrity sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg== -"@typescript-eslint/typescript-estree@6.7.3": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.7.3.tgz#ec5bb7ab4d3566818abaf0e4a8fa1958561b7279" - integrity sha512-YLQ3tJoS4VxLFYHTw21oe1/vIZPRqAO91z6Uv0Ss2BKm/Ag7/RVQBcXTGcXhgJMdA4U+HrKuY5gWlJlvoaKZ5g== +"@typescript-eslint/typescript-estree@6.21.0": + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz#c47ae7901db3b8bddc3ecd73daff2d0895688c46" + integrity sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ== dependencies: - "@typescript-eslint/types" "6.7.3" - "@typescript-eslint/visitor-keys" "6.7.3" + "@typescript-eslint/types" "6.21.0" + "@typescript-eslint/visitor-keys" "6.21.0" debug "^4.3.4" globby "^11.1.0" is-glob "^4.0.3" + minimatch "9.0.3" semver "^7.5.4" ts-api-utils "^1.0.1" -"@typescript-eslint/utils@6.7.3": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.7.3.tgz#96c655816c373135b07282d67407cb577f62e143" - integrity sha512-vzLkVder21GpWRrmSR9JxGZ5+ibIUSudXlW52qeKpzUEQhRSmyZiVDDj3crAth7+5tmN1ulvgKaCU2f/bPRCzg== +"@typescript-eslint/utils@6.21.0": + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.21.0.tgz#4714e7a6b39e773c1c8e97ec587f520840cd8134" + integrity sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ== dependencies: "@eslint-community/eslint-utils" "^4.4.0" "@types/json-schema" "^7.0.12" "@types/semver" "^7.5.0" - "@typescript-eslint/scope-manager" "6.7.3" - "@typescript-eslint/types" "6.7.3" - "@typescript-eslint/typescript-estree" "6.7.3" + "@typescript-eslint/scope-manager" "6.21.0" + "@typescript-eslint/types" "6.21.0" + "@typescript-eslint/typescript-estree" "6.21.0" semver "^7.5.4" -"@typescript-eslint/visitor-keys@6.7.3": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.7.3.tgz#83809631ca12909bd2083558d2f93f5747deebb2" - integrity sha512-HEVXkU9IB+nk9o63CeICMHxFWbHWr3E1mpilIQBe9+7L/lH97rleFLVtYsfnWB+JVMaiFnEaxvknvmIzX+CqVg== +"@typescript-eslint/visitor-keys@6.21.0": + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz#87a99d077aa507e20e238b11d56cc26ade45fe47" + integrity sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A== dependencies: - "@typescript-eslint/types" "6.7.3" + "@typescript-eslint/types" "6.21.0" eslint-visitor-keys "^3.4.1" abort-controller@^3.0.0: @@ -1392,13 +1393,20 @@ cross-spawn@^7.0.2, cross-spawn@^7.0.3: shebang-command "^2.0.0" which "^2.0.1" -debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: +debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== dependencies: ms "2.1.2" +debug@^4.3.4: + version "4.3.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52" + integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== + dependencies: + ms "^2.1.3" + dedent@^1.0.0: version "1.5.1" resolved "https://registry.yarnpkg.com/dedent/-/dedent-1.5.1.tgz#4f3fc94c8b711e9bb2800d185cd6ad20f2a90aff" @@ -1546,12 +1554,7 @@ eslint-scope@^7.2.2: esrecurse "^4.3.0" estraverse "^5.2.0" -eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1: - version "3.4.2" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.2.tgz#8c2095440eca8c933bedcadf16fefa44dbe9ba5f" - integrity sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw== - -eslint-visitor-keys@^3.4.3: +eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: version "3.4.3" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== @@ -1716,18 +1719,7 @@ fast-glob@^3.2.12: merge2 "^1.3.0" micromatch "^4.0.4" -fast-glob@^3.2.9: - version "3.3.1" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.1.tgz#784b4e897340f3dbbef17413b3f11acf03c874c4" - integrity sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg== - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.2" - merge2 "^1.3.0" - micromatch "^4.0.4" - -fast-glob@^3.3.0: +fast-glob@^3.2.9, fast-glob@^3.3.0: version "3.3.2" resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== @@ -1749,9 +1741,9 @@ fast-levenshtein@^2.0.6: integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== fastq@^1.6.0: - version "1.15.0" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" - integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== + version "1.17.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" + integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== dependencies: reusify "^1.0.4" @@ -1974,9 +1966,9 @@ iconv-lite@^0.6.3: safer-buffer ">= 2.1.2 < 3.0.0" ignore@^5.2.0, ignore@^5.2.4: - version "5.2.4" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" - integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== + version "5.3.2" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" + integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== import-fresh@^3.2.1: version "3.3.0" @@ -2681,6 +2673,13 @@ mimic-fn@^4.0.0: resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== +minimatch@9.0.3: + version "9.0.3" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825" + integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== + dependencies: + brace-expansion "^2.0.1" + minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" @@ -2710,7 +2709,7 @@ ms@2.1.2: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== -ms@^2.0.0: +ms@^2.0.0, ms@^2.1.3: version "2.1.3" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== @@ -3075,13 +3074,18 @@ semver@^6.3.0, semver@^6.3.1: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.5.3, semver@^7.5.4: +semver@^7.5.3: version "7.5.4" resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== dependencies: lru-cache "^6.0.0" +semver@^7.5.4: + version "7.6.3" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" + integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== + shebang-command@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" @@ -3278,9 +3282,9 @@ tr46@~0.0.3: integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= ts-api-utils@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.0.3.tgz#f12c1c781d04427313dbac808f453f050e54a331" - integrity sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg== + version "1.3.0" + resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.3.0.tgz#4b490e27129f1e8e686b45cc4ab63714dc60eea1" + integrity sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ== ts-jest@^29.1.0: version "29.1.1" From c239b5cf7723e825250a26cabefeb27aa398be23 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 23 Oct 2024 05:07:12 +0000 Subject: [PATCH 584/725] release: 4.68.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7de9a93f1..eafafb2cf 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.68.2" + ".": "4.68.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 93cf66d4e..604e5183c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.68.3 (2024-10-23) + +Full Changelog: [v4.68.2...v4.68.3](https://github.com/openai/openai-node/compare/v4.68.2...v4.68.3) + +### Chores + +* **internal:** bumps eslint and related dependencies ([#1143](https://github.com/openai/openai-node/issues/1143)) ([2643f42](https://github.com/openai/openai-node/commit/2643f42a36208c36daf23470ffcd227a891284eb)) + ## 4.68.2 (2024-10-22) Full Changelog: [v4.68.1...v4.68.2](https://github.com/openai/openai-node/compare/v4.68.1...v4.68.2) diff --git a/README.md b/README.md index 5011b82a1..16d0450bb 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.68.2/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.68.3/mod.ts'; ``` diff --git a/package.json b/package.json index 0eaebee91..4fc07b525 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.68.2", + "version": "4.68.3", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index c2276e5ea..fa0fd26ea 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.68.2/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.68.3/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index bb7f3f7bd..2657a62ac 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.68.2'; // x-release-please-version +export const VERSION = '4.68.3'; // x-release-please-version From 748d77154f570b705c198ccd802a7dc0863690d5 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 23 Oct 2024 21:56:39 +0000 Subject: [PATCH 585/725] chore(internal): update spec version (#1146) --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index e1a430e50..0b0872556 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-f9320ebf347140052c7f8b0bc5c7db24f5e367c368c8cb34c3606af4e2b6591b.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-b60d5559d5150ecd3b49136064e5e251d832899770ff385b711378389afba370.yml From 813cb4413d7b03bddf6885df7fd4c5928e2ec49f Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 23 Oct 2024 21:57:05 +0000 Subject: [PATCH 586/725] release: 4.68.4 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index eafafb2cf..b32797c27 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.68.3" + ".": "4.68.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 604e5183c..130b287c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.68.4 (2024-10-23) + +Full Changelog: [v4.68.3...v4.68.4](https://github.com/openai/openai-node/compare/v4.68.3...v4.68.4) + +### Chores + +* **internal:** update spec version ([#1146](https://github.com/openai/openai-node/issues/1146)) ([0165a8d](https://github.com/openai/openai-node/commit/0165a8d79340ede49557e05fd00d6fff9d69d930)) + ## 4.68.3 (2024-10-23) Full Changelog: [v4.68.2...v4.68.3](https://github.com/openai/openai-node/compare/v4.68.2...v4.68.3) diff --git a/README.md b/README.md index 16d0450bb..3bf20a026 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.68.3/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.68.4/mod.ts'; ``` diff --git a/package.json b/package.json index 4fc07b525..ce87796d1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.68.3", + "version": "4.68.4", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index fa0fd26ea..6a67bcdde 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.68.3/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.68.4/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 2657a62ac..5c2c17eaf 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.68.3'; // x-release-please-version +export const VERSION = '4.68.4'; // x-release-please-version From d4966566cb2d804b9892986fe4871eb051a416f0 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 17:46:33 +0000 Subject: [PATCH 587/725] docs(readme): minor typo fixes (#1154) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3bf20a026..9aabd058e 100644 --- a/README.md +++ b/README.md @@ -444,7 +444,7 @@ Note that requests which time out will be [retried twice by default](#retries). ## Auto-pagination List methods in the OpenAI API are paginated. -You can use `for await … of` syntax to iterate through items across all pages: +You can use the `for await … of` syntax to iterate through items across all pages: ```ts async function fetchAllFineTuningJobs(params) { @@ -457,7 +457,7 @@ async function fetchAllFineTuningJobs(params) { } ``` -Alternatively, you can make request a single page at a time: +Alternatively, you can request a single page at a time: ```ts let page = await client.fineTuning.jobs.list({ limit: 20 }); From 8cafc09f3f4795d9a904f63b067d4f05292dab74 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 20:33:10 +0000 Subject: [PATCH 588/725] fix(internal): support pnpm git installs (#1156) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ce87796d1..9f9b3ee86 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "license": "Apache-2.0", "packageManager": "yarn@1.22.22", "files": [ - "*" + "**/*" ], "private": false, "scripts": { From b8e5d396b1524aaeef31c408d79fb30314e50577 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 30 Oct 2024 16:11:29 +0000 Subject: [PATCH 589/725] feat(api): add new, expressive voices for Realtime and Audio in Chat Completions (#1157) https://platform.openai.com/docs/changelog --- .stats.yml | 2 +- src/resources/chat/completions.ts | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.stats.yml b/.stats.yml index 0b0872556..39413df44 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-b60d5559d5150ecd3b49136064e5e251d832899770ff385b711378389afba370.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-7b0a5d715d94f75ac7795bd4d2175a0e3243af9b935a86c273f371e45583140f.yml diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 97174ec1b..d439e9a25 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -250,10 +250,10 @@ export interface ChatCompletionAudioParam { format: 'wav' | 'mp3' | 'flac' | 'opus' | 'pcm16'; /** - * Specifies the voice type. Supported voices are `alloy`, `echo`, `fable`, `onyx`, - * `nova`, and `shimmer`. + * The voice the model uses to respond. Supported voices are `alloy`, `ash`, + * `ballad`, `coral`, `echo`, `sage`, `shimmer`, and `verse`. */ - voice: 'alloy' | 'echo' | 'fable' | 'onyx' | 'nova' | 'shimmer'; + voice: 'alloy' | 'ash' | 'ballad' | 'coral' | 'echo' | 'sage' | 'shimmer' | 'verse'; } /** @@ -308,7 +308,7 @@ export interface ChatCompletionChunk { * contains a null value except for the last chunk which contains the token usage * statistics for the entire request. */ - usage?: CompletionsAPI.CompletionUsage; + usage?: CompletionsAPI.CompletionUsage | null; } export namespace ChatCompletionChunk { From 622c80aaa17c486cbd16cf620b3bee6b73650ba4 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 30 Oct 2024 16:11:59 +0000 Subject: [PATCH 590/725] release: 4.69.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 18 ++++++++++++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 23 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b32797c27..65aac9575 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.68.4" + ".": "4.69.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 130b287c2..b3b52aaa3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## 4.69.0 (2024-10-30) + +Full Changelog: [v4.68.4...v4.69.0](https://github.com/openai/openai-node/compare/v4.68.4...v4.69.0) + +### Features + +* **api:** add new, expressive voices for Realtime and Audio in Chat Completions ([#1157](https://github.com/openai/openai-node/issues/1157)) ([12e501c](https://github.com/openai/openai-node/commit/12e501c8a215a2af29b9b8fceedc5935b6f2feef)) + + +### Bug Fixes + +* **internal:** support pnpm git installs ([#1156](https://github.com/openai/openai-node/issues/1156)) ([b744c5b](https://github.com/openai/openai-node/commit/b744c5b609533e9a6694d6cae0425fe9cd37e26c)) + + +### Documentation + +* **readme:** minor typo fixes ([#1154](https://github.com/openai/openai-node/issues/1154)) ([c6c9f9a](https://github.com/openai/openai-node/commit/c6c9f9aaf75f643016ad73574a7e24a228b5c60f)) + ## 4.68.4 (2024-10-23) Full Changelog: [v4.68.3...v4.68.4](https://github.com/openai/openai-node/compare/v4.68.3...v4.68.4) diff --git a/README.md b/README.md index 9aabd058e..776ea4049 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.68.4/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.69.0/mod.ts'; ``` diff --git a/package.json b/package.json index 9f9b3ee86..9e32feabb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.68.4", + "version": "4.69.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 6a67bcdde..be17942df 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.68.4/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.69.0/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index 5c2c17eaf..be250f2d6 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.68.4'; // x-release-please-version +export const VERSION = '4.69.0'; // x-release-please-version From 6421d69314e89cde4a85d2a70f1dae4cf570d0f7 Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Fri, 1 Nov 2024 04:32:16 +0000 Subject: [PATCH 591/725] refactor: use type imports for type-only imports (#1159) --- src/index.ts | 377 ++++++++++++------ src/lib/AssistantStream.ts | 3 +- src/resources/audio/audio.ts | 70 ++-- src/resources/audio/index.ts | 24 +- src/resources/audio/speech.ts | 6 +- src/resources/audio/transcriptions.ts | 21 +- src/resources/audio/translations.ts | 17 +- src/resources/batches.ts | 18 +- src/resources/beta/assistants.ts | 37 +- src/resources/beta/beta.ts | 158 +++++--- src/resources/beta/index.ts | 82 ++-- src/resources/beta/threads/index.ts | 126 +++--- src/resources/beta/threads/messages.ts | 71 ++-- src/resources/beta/threads/runs/index.ts | 72 ++-- src/resources/beta/threads/runs/runs.ts | 113 ++++-- src/resources/beta/threads/runs/steps.ts | 48 ++- src/resources/beta/threads/threads.ts | 198 ++++++--- .../beta/vector-stores/file-batches.ts | 11 +- src/resources/beta/vector-stores/files.ts | 17 +- src/resources/beta/vector-stores/index.ts | 48 +-- .../beta/vector-stores/vector-stores.ts | 76 ++-- src/resources/chat/chat.ts | 114 ++++-- src/resources/chat/completions.ts | 71 ++-- src/resources/chat/index.ts | 66 +-- src/resources/completions.ts | 16 +- src/resources/embeddings.ts | 13 +- src/resources/files.ts | 21 +- src/resources/fine-tuning/fine-tuning.ts | 43 +- src/resources/fine-tuning/index.ts | 16 +- src/resources/fine-tuning/jobs/checkpoints.ts | 13 +- src/resources/fine-tuning/jobs/index.ts | 28 +- src/resources/fine-tuning/jobs/jobs.ts | 47 ++- src/resources/images.ts | 17 +- src/resources/index.ts | 74 ++-- src/resources/models.ts | 9 +- src/resources/moderations.ts | 19 +- src/resources/uploads/index.ts | 4 +- src/resources/uploads/parts.ts | 6 +- src/resources/uploads/uploads.ts | 19 +- tsconfig.json | 2 +- 40 files changed, 1307 insertions(+), 884 deletions(-) diff --git a/src/index.ts b/src/index.ts index 56108223a..c1506997b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,12 +1,108 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import * as Errors from './error'; -import * as Uploads from './uploads'; import { type Agent, type RequestInit } from './_shims/index'; import * as qs from './internal/qs'; import * as Core from './core'; +import * as Errors from './error'; import * as Pagination from './pagination'; +import { type CursorPageParams, CursorPageResponse, PageResponse } from './pagination'; +import * as Uploads from './uploads'; import * as API from './resources/index'; +import { + Batch, + BatchCreateParams, + BatchError, + BatchListParams, + BatchRequestCounts, + Batches, + BatchesPage, +} from './resources/batches'; +import { + Completion, + CompletionChoice, + CompletionCreateParams, + CompletionCreateParamsNonStreaming, + CompletionCreateParamsStreaming, + CompletionUsage, + Completions, +} from './resources/completions'; +import { + CreateEmbeddingResponse, + Embedding, + EmbeddingCreateParams, + EmbeddingModel, + Embeddings, +} from './resources/embeddings'; +import { + FileContent, + FileCreateParams, + FileDeleted, + FileListParams, + FileObject, + FileObjectsPage, + FilePurpose, + Files, +} from './resources/files'; +import { + Image, + ImageCreateVariationParams, + ImageEditParams, + ImageGenerateParams, + ImageModel, + Images, + ImagesResponse, +} from './resources/images'; +import { Model, ModelDeleted, Models, ModelsPage } from './resources/models'; +import { + Moderation, + ModerationCreateParams, + ModerationCreateResponse, + ModerationImageURLInput, + ModerationModel, + ModerationMultiModalInput, + ModerationTextInput, + Moderations, +} from './resources/moderations'; +import { Audio, AudioModel, AudioResponseFormat } from './resources/audio/audio'; +import { Beta } from './resources/beta/beta'; +import { Chat, ChatModel } from './resources/chat/chat'; +import { + ChatCompletion, + ChatCompletionAssistantMessageParam, + ChatCompletionAudio, + ChatCompletionAudioParam, + ChatCompletionChunk, + ChatCompletionContentPart, + ChatCompletionContentPartImage, + ChatCompletionContentPartInputAudio, + ChatCompletionContentPartRefusal, + ChatCompletionContentPartText, + ChatCompletionCreateParams, + ChatCompletionCreateParamsNonStreaming, + ChatCompletionCreateParamsStreaming, + ChatCompletionFunctionCallOption, + ChatCompletionFunctionMessageParam, + ChatCompletionMessage, + ChatCompletionMessageParam, + ChatCompletionMessageToolCall, + ChatCompletionModality, + ChatCompletionNamedToolChoice, + ChatCompletionRole, + ChatCompletionStreamOptions, + ChatCompletionSystemMessageParam, + ChatCompletionTokenLogprob, + ChatCompletionTool, + ChatCompletionToolChoiceOption, + ChatCompletionToolMessageParam, + ChatCompletionUserMessageParam, +} from './resources/chat/completions'; +import { FineTuning } from './resources/fine-tuning/fine-tuning'; +import { + Upload, + UploadCompleteParams, + UploadCreateParams, + Uploads as UploadsAPIUploads, +} from './resources/uploads/uploads'; export interface ClientOptions { /** @@ -209,138 +305,167 @@ export class OpenAI extends Core.APIClient { static fileFromPath = Uploads.fileFromPath; } -export const { - OpenAIError, - APIError, - APIConnectionError, - APIConnectionTimeoutError, - APIUserAbortError, - NotFoundError, - ConflictError, - RateLimitError, - BadRequestError, - AuthenticationError, - InternalServerError, - PermissionDeniedError, - UnprocessableEntityError, -} = Errors; +export const OpenAIError = Errors.OpenAIError; +export const APIError = Errors.APIError; +export const APIConnectionError = Errors.APIConnectionError; +export const APIConnectionTimeoutError = Errors.APIConnectionTimeoutError; +export const APIUserAbortError = Errors.APIUserAbortError; +export const NotFoundError = Errors.NotFoundError; +export const ConflictError = Errors.ConflictError; +export const RateLimitError = Errors.RateLimitError; +export const BadRequestError = Errors.BadRequestError; +export const AuthenticationError = Errors.AuthenticationError; +export const InternalServerError = Errors.InternalServerError; +export const PermissionDeniedError = Errors.PermissionDeniedError; +export const UnprocessableEntityError = Errors.UnprocessableEntityError; export import toFile = Uploads.toFile; export import fileFromPath = Uploads.fileFromPath; -export namespace OpenAI { - export import RequestOptions = Core.RequestOptions; +OpenAI.Completions = Completions; +OpenAI.Chat = Chat; +OpenAI.Embeddings = Embeddings; +OpenAI.Files = Files; +OpenAI.FileObjectsPage = FileObjectsPage; +OpenAI.Images = Images; +OpenAI.Audio = Audio; +OpenAI.Moderations = Moderations; +OpenAI.Models = Models; +OpenAI.ModelsPage = ModelsPage; +OpenAI.FineTuning = FineTuning; +OpenAI.Beta = Beta; +OpenAI.Batches = Batches; +OpenAI.BatchesPage = BatchesPage; +OpenAI.Uploads = UploadsAPIUploads; + +export declare namespace OpenAI { + export type RequestOptions = Core.RequestOptions; export import Page = Pagination.Page; - export import PageResponse = Pagination.PageResponse; + export { type PageResponse as PageResponse }; export import CursorPage = Pagination.CursorPage; - export import CursorPageParams = Pagination.CursorPageParams; - export import CursorPageResponse = Pagination.CursorPageResponse; - - export import Completions = API.Completions; - export import Completion = API.Completion; - export import CompletionChoice = API.CompletionChoice; - export import CompletionUsage = API.CompletionUsage; - export import CompletionCreateParams = API.CompletionCreateParams; - export import CompletionCreateParamsNonStreaming = API.CompletionCreateParamsNonStreaming; - export import CompletionCreateParamsStreaming = API.CompletionCreateParamsStreaming; - - export import Chat = API.Chat; - export import ChatModel = API.ChatModel; - export import ChatCompletion = API.ChatCompletion; - export import ChatCompletionAssistantMessageParam = API.ChatCompletionAssistantMessageParam; - export import ChatCompletionAudio = API.ChatCompletionAudio; - export import ChatCompletionAudioParam = API.ChatCompletionAudioParam; - export import ChatCompletionChunk = API.ChatCompletionChunk; - export import ChatCompletionContentPart = API.ChatCompletionContentPart; - export import ChatCompletionContentPartImage = API.ChatCompletionContentPartImage; - export import ChatCompletionContentPartInputAudio = API.ChatCompletionContentPartInputAudio; - export import ChatCompletionContentPartRefusal = API.ChatCompletionContentPartRefusal; - export import ChatCompletionContentPartText = API.ChatCompletionContentPartText; - export import ChatCompletionFunctionCallOption = API.ChatCompletionFunctionCallOption; - export import ChatCompletionFunctionMessageParam = API.ChatCompletionFunctionMessageParam; - export import ChatCompletionMessage = API.ChatCompletionMessage; - export import ChatCompletionMessageParam = API.ChatCompletionMessageParam; - export import ChatCompletionMessageToolCall = API.ChatCompletionMessageToolCall; - export import ChatCompletionModality = API.ChatCompletionModality; - export import ChatCompletionNamedToolChoice = API.ChatCompletionNamedToolChoice; - export import ChatCompletionRole = API.ChatCompletionRole; - export import ChatCompletionStreamOptions = API.ChatCompletionStreamOptions; - export import ChatCompletionSystemMessageParam = API.ChatCompletionSystemMessageParam; - export import ChatCompletionTokenLogprob = API.ChatCompletionTokenLogprob; - export import ChatCompletionTool = API.ChatCompletionTool; - export import ChatCompletionToolChoiceOption = API.ChatCompletionToolChoiceOption; - export import ChatCompletionToolMessageParam = API.ChatCompletionToolMessageParam; - export import ChatCompletionUserMessageParam = API.ChatCompletionUserMessageParam; - export import ChatCompletionCreateParams = API.ChatCompletionCreateParams; - export import ChatCompletionCreateParamsNonStreaming = API.ChatCompletionCreateParamsNonStreaming; - export import ChatCompletionCreateParamsStreaming = API.ChatCompletionCreateParamsStreaming; - - export import Embeddings = API.Embeddings; - export import CreateEmbeddingResponse = API.CreateEmbeddingResponse; - export import Embedding = API.Embedding; - export import EmbeddingModel = API.EmbeddingModel; - export import EmbeddingCreateParams = API.EmbeddingCreateParams; - - export import Files = API.Files; - export import FileContent = API.FileContent; - export import FileDeleted = API.FileDeleted; - export import FileObject = API.FileObject; - export import FilePurpose = API.FilePurpose; - export import FileObjectsPage = API.FileObjectsPage; - export import FileCreateParams = API.FileCreateParams; - export import FileListParams = API.FileListParams; - - export import Images = API.Images; - export import Image = API.Image; - export import ImageModel = API.ImageModel; - export import ImagesResponse = API.ImagesResponse; - export import ImageCreateVariationParams = API.ImageCreateVariationParams; - export import ImageEditParams = API.ImageEditParams; - export import ImageGenerateParams = API.ImageGenerateParams; - - export import Audio = API.Audio; - export import AudioModel = API.AudioModel; - export import AudioResponseFormat = API.AudioResponseFormat; - - export import Moderations = API.Moderations; - export import Moderation = API.Moderation; - export import ModerationImageURLInput = API.ModerationImageURLInput; - export import ModerationModel = API.ModerationModel; - export import ModerationMultiModalInput = API.ModerationMultiModalInput; - export import ModerationTextInput = API.ModerationTextInput; - export import ModerationCreateResponse = API.ModerationCreateResponse; - export import ModerationCreateParams = API.ModerationCreateParams; - - export import Models = API.Models; - export import Model = API.Model; - export import ModelDeleted = API.ModelDeleted; - export import ModelsPage = API.ModelsPage; - - export import FineTuning = API.FineTuning; - - export import Beta = API.Beta; - - export import Batches = API.Batches; - export import Batch = API.Batch; - export import BatchError = API.BatchError; - export import BatchRequestCounts = API.BatchRequestCounts; - export import BatchesPage = API.BatchesPage; - export import BatchCreateParams = API.BatchCreateParams; - export import BatchListParams = API.BatchListParams; - - export import Uploads = API.Uploads; - export import Upload = API.Upload; - export import UploadCreateParams = API.UploadCreateParams; - export import UploadCompleteParams = API.UploadCompleteParams; - - export import ErrorObject = API.ErrorObject; - export import FunctionDefinition = API.FunctionDefinition; - export import FunctionParameters = API.FunctionParameters; - export import ResponseFormatJSONObject = API.ResponseFormatJSONObject; - export import ResponseFormatJSONSchema = API.ResponseFormatJSONSchema; - export import ResponseFormatText = API.ResponseFormatText; + export { type CursorPageParams as CursorPageParams, type CursorPageResponse as CursorPageResponse }; + + export { + Completions as Completions, + type Completion as Completion, + type CompletionChoice as CompletionChoice, + type CompletionUsage as CompletionUsage, + type CompletionCreateParams as CompletionCreateParams, + type CompletionCreateParamsNonStreaming as CompletionCreateParamsNonStreaming, + type CompletionCreateParamsStreaming as CompletionCreateParamsStreaming, + }; + + export { + Chat as Chat, + type ChatModel as ChatModel, + type ChatCompletion as ChatCompletion, + type ChatCompletionAssistantMessageParam as ChatCompletionAssistantMessageParam, + type ChatCompletionAudio as ChatCompletionAudio, + type ChatCompletionAudioParam as ChatCompletionAudioParam, + type ChatCompletionChunk as ChatCompletionChunk, + type ChatCompletionContentPart as ChatCompletionContentPart, + type ChatCompletionContentPartImage as ChatCompletionContentPartImage, + type ChatCompletionContentPartInputAudio as ChatCompletionContentPartInputAudio, + type ChatCompletionContentPartRefusal as ChatCompletionContentPartRefusal, + type ChatCompletionContentPartText as ChatCompletionContentPartText, + type ChatCompletionFunctionCallOption as ChatCompletionFunctionCallOption, + type ChatCompletionFunctionMessageParam as ChatCompletionFunctionMessageParam, + type ChatCompletionMessage as ChatCompletionMessage, + type ChatCompletionMessageParam as ChatCompletionMessageParam, + type ChatCompletionMessageToolCall as ChatCompletionMessageToolCall, + type ChatCompletionModality as ChatCompletionModality, + type ChatCompletionNamedToolChoice as ChatCompletionNamedToolChoice, + type ChatCompletionRole as ChatCompletionRole, + type ChatCompletionStreamOptions as ChatCompletionStreamOptions, + type ChatCompletionSystemMessageParam as ChatCompletionSystemMessageParam, + type ChatCompletionTokenLogprob as ChatCompletionTokenLogprob, + type ChatCompletionTool as ChatCompletionTool, + type ChatCompletionToolChoiceOption as ChatCompletionToolChoiceOption, + type ChatCompletionToolMessageParam as ChatCompletionToolMessageParam, + type ChatCompletionUserMessageParam as ChatCompletionUserMessageParam, + type ChatCompletionCreateParams as ChatCompletionCreateParams, + type ChatCompletionCreateParamsNonStreaming as ChatCompletionCreateParamsNonStreaming, + type ChatCompletionCreateParamsStreaming as ChatCompletionCreateParamsStreaming, + }; + + export { + Embeddings as Embeddings, + type CreateEmbeddingResponse as CreateEmbeddingResponse, + type Embedding as Embedding, + type EmbeddingModel as EmbeddingModel, + type EmbeddingCreateParams as EmbeddingCreateParams, + }; + + export { + Files as Files, + type FileContent as FileContent, + type FileDeleted as FileDeleted, + type FileObject as FileObject, + type FilePurpose as FilePurpose, + FileObjectsPage as FileObjectsPage, + type FileCreateParams as FileCreateParams, + type FileListParams as FileListParams, + }; + + export { + Images as Images, + type Image as Image, + type ImageModel as ImageModel, + type ImagesResponse as ImagesResponse, + type ImageCreateVariationParams as ImageCreateVariationParams, + type ImageEditParams as ImageEditParams, + type ImageGenerateParams as ImageGenerateParams, + }; + + export { Audio as Audio, type AudioModel as AudioModel, type AudioResponseFormat as AudioResponseFormat }; + + export { + Moderations as Moderations, + type Moderation as Moderation, + type ModerationImageURLInput as ModerationImageURLInput, + type ModerationModel as ModerationModel, + type ModerationMultiModalInput as ModerationMultiModalInput, + type ModerationTextInput as ModerationTextInput, + type ModerationCreateResponse as ModerationCreateResponse, + type ModerationCreateParams as ModerationCreateParams, + }; + + export { + Models as Models, + type Model as Model, + type ModelDeleted as ModelDeleted, + ModelsPage as ModelsPage, + }; + + export { FineTuning as FineTuning }; + + export { Beta as Beta }; + + export { + Batches as Batches, + type Batch as Batch, + type BatchError as BatchError, + type BatchRequestCounts as BatchRequestCounts, + BatchesPage as BatchesPage, + type BatchCreateParams as BatchCreateParams, + type BatchListParams as BatchListParams, + }; + + export { + UploadsAPIUploads as Uploads, + type Upload as Upload, + type UploadCreateParams as UploadCreateParams, + type UploadCompleteParams as UploadCompleteParams, + }; + + export type ErrorObject = API.ErrorObject; + export type FunctionDefinition = API.FunctionDefinition; + export type FunctionParameters = API.FunctionParameters; + export type ResponseFormatJSONObject = API.ResponseFormatJSONObject; + export type ResponseFormatJSONSchema = API.ResponseFormatJSONSchema; + export type ResponseFormatText = API.ResponseFormatText; } // ---------------------- Azure ---------------------- diff --git a/src/lib/AssistantStream.ts b/src/lib/AssistantStream.ts index 7c5ffb58e..c826c910e 100644 --- a/src/lib/AssistantStream.ts +++ b/src/lib/AssistantStream.ts @@ -6,7 +6,7 @@ import { Text, ImageFile, TextDelta, - Messages, + MessageDelta, MessageContent, } from 'openai/resources/beta/threads/messages'; import * as Core from 'openai/core'; @@ -31,7 +31,6 @@ import { import { RunStep, RunStepDelta, ToolCall, ToolCallDelta } from 'openai/resources/beta/threads/runs/steps'; import { ThreadCreateAndRunParamsBase, Threads } from 'openai/resources/beta/threads/threads'; import { BaseEvents, EventStream } from './EventStream'; -import MessageDelta = Messages.MessageDelta; export interface AssistantStreamEvents extends BaseEvents { run: (run: Run) => void; diff --git a/src/resources/audio/audio.ts b/src/resources/audio/audio.ts index e06e28094..b9a7ad4f8 100644 --- a/src/resources/audio/audio.ts +++ b/src/resources/audio/audio.ts @@ -1,10 +1,26 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from '../../resource'; -import * as AudioAPI from './audio'; import * as SpeechAPI from './speech'; +import { Speech, SpeechCreateParams, SpeechModel } from './speech'; import * as TranscriptionsAPI from './transcriptions'; +import { + Transcription, + TranscriptionCreateParams, + TranscriptionCreateResponse, + TranscriptionSegment, + TranscriptionVerbose, + TranscriptionWord, + Transcriptions, +} from './transcriptions'; import * as TranslationsAPI from './translations'; +import { + Translation, + TranslationCreateParams, + TranslationCreateResponse, + TranslationVerbose, + Translations, +} from './translations'; export class Audio extends APIResource { transcriptions: TranscriptionsAPI.Transcriptions = new TranscriptionsAPI.Transcriptions(this._client); @@ -20,30 +36,30 @@ export type AudioModel = 'whisper-1'; */ export type AudioResponseFormat = 'json' | 'text' | 'srt' | 'verbose_json' | 'vtt'; -export namespace Audio { - export import AudioModel = AudioAPI.AudioModel; - export import AudioResponseFormat = AudioAPI.AudioResponseFormat; - export import Transcriptions = TranscriptionsAPI.Transcriptions; - export import Transcription = TranscriptionsAPI.Transcription; - export import TranscriptionSegment = TranscriptionsAPI.TranscriptionSegment; - export import TranscriptionVerbose = TranscriptionsAPI.TranscriptionVerbose; - export import TranscriptionWord = TranscriptionsAPI.TranscriptionWord; - export import TranscriptionCreateResponse = TranscriptionsAPI.TranscriptionCreateResponse; - export type TranscriptionCreateParams< - ResponseFormat extends AudioAPI.AudioResponseFormat | undefined = - | AudioAPI.AudioResponseFormat - | undefined, - > = TranscriptionsAPI.TranscriptionCreateParams; - export import Translations = TranslationsAPI.Translations; - export import Translation = TranslationsAPI.Translation; - export import TranslationVerbose = TranslationsAPI.TranslationVerbose; - export import TranslationCreateResponse = TranslationsAPI.TranslationCreateResponse; - export type TranslationCreateParams< - ResponseFormat extends AudioAPI.AudioResponseFormat | undefined = - | AudioAPI.AudioResponseFormat - | undefined, - > = TranslationsAPI.TranslationCreateParams; - export import Speech = SpeechAPI.Speech; - export import SpeechModel = SpeechAPI.SpeechModel; - export import SpeechCreateParams = SpeechAPI.SpeechCreateParams; +Audio.Transcriptions = Transcriptions; +Audio.Translations = Translations; +Audio.Speech = Speech; + +export declare namespace Audio { + export { type AudioModel as AudioModel, type AudioResponseFormat as AudioResponseFormat }; + + export { + Transcriptions as Transcriptions, + type Transcription as Transcription, + type TranscriptionSegment as TranscriptionSegment, + type TranscriptionVerbose as TranscriptionVerbose, + type TranscriptionWord as TranscriptionWord, + type TranscriptionCreateResponse as TranscriptionCreateResponse, + type TranscriptionCreateParams as TranscriptionCreateParams, + }; + + export { + Translations as Translations, + type Translation as Translation, + type TranslationVerbose as TranslationVerbose, + type TranslationCreateResponse as TranslationCreateResponse, + type TranslationCreateParams as TranslationCreateParams, + }; + + export { Speech as Speech, type SpeechModel as SpeechModel, type SpeechCreateParams as SpeechCreateParams }; } diff --git a/src/resources/audio/index.ts b/src/resources/audio/index.ts index 952c05b03..2bbe9e3ab 100644 --- a/src/resources/audio/index.ts +++ b/src/resources/audio/index.ts @@ -1,20 +1,20 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -export { AudioModel, AudioResponseFormat, Audio } from './audio'; -export { SpeechModel, SpeechCreateParams, Speech } from './speech'; +export { Audio, type AudioModel, type AudioResponseFormat } from './audio'; +export { Speech, type SpeechModel, type SpeechCreateParams } from './speech'; export { - Transcription, - TranscriptionSegment, - TranscriptionVerbose, - TranscriptionWord, - TranscriptionCreateResponse, - TranscriptionCreateParams, Transcriptions, + type Transcription, + type TranscriptionSegment, + type TranscriptionVerbose, + type TranscriptionWord, + type TranscriptionCreateResponse, + type TranscriptionCreateParams, } from './transcriptions'; export { - Translation, - TranslationVerbose, - TranslationCreateResponse, - TranslationCreateParams, Translations, + type Translation, + type TranslationVerbose, + type TranslationCreateResponse, + type TranslationCreateParams, } from './translations'; diff --git a/src/resources/audio/speech.ts b/src/resources/audio/speech.ts index 34fb26b02..da99bf649 100644 --- a/src/resources/audio/speech.ts +++ b/src/resources/audio/speech.ts @@ -2,7 +2,6 @@ import { APIResource } from '../../resource'; import * as Core from '../../core'; -import * as SpeechAPI from './speech'; import { type Response } from '../../_shims/index'; export class Speech extends APIResource { @@ -49,7 +48,6 @@ export interface SpeechCreateParams { speed?: number; } -export namespace Speech { - export import SpeechModel = SpeechAPI.SpeechModel; - export import SpeechCreateParams = SpeechAPI.SpeechCreateParams; +export declare namespace Speech { + export { type SpeechModel as SpeechModel, type SpeechCreateParams as SpeechCreateParams }; } diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index 902dc9e5f..dd4258787 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -2,7 +2,6 @@ import { APIResource } from '../../resource'; import * as Core from '../../core'; -import * as TranscriptionsAPI from './transcriptions'; import * as AudioAPI from './audio'; export class Transcriptions extends APIResource { @@ -205,15 +204,13 @@ export interface TranscriptionCreateParams< timestamp_granularities?: Array<'word' | 'segment'>; } -export namespace Transcriptions { - export import Transcription = TranscriptionsAPI.Transcription; - export import TranscriptionSegment = TranscriptionsAPI.TranscriptionSegment; - export import TranscriptionVerbose = TranscriptionsAPI.TranscriptionVerbose; - export import TranscriptionWord = TranscriptionsAPI.TranscriptionWord; - export import TranscriptionCreateResponse = TranscriptionsAPI.TranscriptionCreateResponse; - export type TranscriptionCreateParams< - ResponseFormat extends AudioAPI.AudioResponseFormat | undefined = - | AudioAPI.AudioResponseFormat - | undefined, - > = TranscriptionsAPI.TranscriptionCreateParams; +export declare namespace Transcriptions { + export { + type Transcription as Transcription, + type TranscriptionSegment as TranscriptionSegment, + type TranscriptionVerbose as TranscriptionVerbose, + type TranscriptionWord as TranscriptionWord, + type TranscriptionCreateResponse as TranscriptionCreateResponse, + type TranscriptionCreateParams as TranscriptionCreateParams, + }; } diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index 36c2dc7c2..b98a95044 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -2,7 +2,6 @@ import { APIResource } from '../../resource'; import * as Core from '../../core'; -import * as TranslationsAPI from './translations'; import * as AudioAPI from './audio'; import * as TranscriptionsAPI from './transcriptions'; @@ -98,13 +97,11 @@ export interface TranslationCreateParams< temperature?: number; } -export namespace Translations { - export import Translation = TranslationsAPI.Translation; - export import TranslationVerbose = TranslationsAPI.TranslationVerbose; - export import TranslationCreateResponse = TranslationsAPI.TranslationCreateResponse; - export type TranslationCreateParams< - ResponseFormat extends AudioAPI.AudioResponseFormat | undefined = - | AudioAPI.AudioResponseFormat - | undefined, - > = TranslationsAPI.TranslationCreateParams; +export declare namespace Translations { + export { + type Translation as Translation, + type TranslationVerbose as TranslationVerbose, + type TranslationCreateResponse as TranslationCreateResponse, + type TranslationCreateParams as TranslationCreateParams, + }; } diff --git a/src/resources/batches.ts b/src/resources/batches.ts index 738582f9e..e68e7569c 100644 --- a/src/resources/batches.ts +++ b/src/resources/batches.ts @@ -244,11 +244,15 @@ export interface BatchCreateParams { export interface BatchListParams extends CursorPageParams {} -export namespace Batches { - export import Batch = BatchesAPI.Batch; - export import BatchError = BatchesAPI.BatchError; - export import BatchRequestCounts = BatchesAPI.BatchRequestCounts; - export import BatchesPage = BatchesAPI.BatchesPage; - export import BatchCreateParams = BatchesAPI.BatchCreateParams; - export import BatchListParams = BatchesAPI.BatchListParams; +Batches.BatchesPage = BatchesPage; + +export declare namespace Batches { + export { + type Batch as Batch, + type BatchError as BatchError, + type BatchRequestCounts as BatchRequestCounts, + BatchesPage as BatchesPage, + type BatchCreateParams as BatchCreateParams, + type BatchListParams as BatchListParams, + }; } diff --git a/src/resources/beta/assistants.ts b/src/resources/beta/assistants.ts index aa7362297..6d48089ce 100644 --- a/src/resources/beta/assistants.ts +++ b/src/resources/beta/assistants.ts @@ -3,7 +3,6 @@ import { APIResource } from '../../resource'; import { isRequestOptions } from '../../core'; import * as Core from '../../core'; -import * as AssistantsAPI from './assistants'; import * as Shared from '../shared'; import * as ChatAPI from '../chat/chat'; import * as MessagesAPI from './threads/messages'; @@ -1396,20 +1395,24 @@ export interface AssistantListParams extends CursorPageParams { order?: 'asc' | 'desc'; } -export namespace Assistants { - export import Assistant = AssistantsAPI.Assistant; - export import AssistantDeleted = AssistantsAPI.AssistantDeleted; - export import AssistantStreamEvent = AssistantsAPI.AssistantStreamEvent; - export import AssistantTool = AssistantsAPI.AssistantTool; - export import CodeInterpreterTool = AssistantsAPI.CodeInterpreterTool; - export import FileSearchTool = AssistantsAPI.FileSearchTool; - export import FunctionTool = AssistantsAPI.FunctionTool; - export import MessageStreamEvent = AssistantsAPI.MessageStreamEvent; - export import RunStepStreamEvent = AssistantsAPI.RunStepStreamEvent; - export import RunStreamEvent = AssistantsAPI.RunStreamEvent; - export import ThreadStreamEvent = AssistantsAPI.ThreadStreamEvent; - export import AssistantsPage = AssistantsAPI.AssistantsPage; - export import AssistantCreateParams = AssistantsAPI.AssistantCreateParams; - export import AssistantUpdateParams = AssistantsAPI.AssistantUpdateParams; - export import AssistantListParams = AssistantsAPI.AssistantListParams; +Assistants.AssistantsPage = AssistantsPage; + +export declare namespace Assistants { + export { + type Assistant as Assistant, + type AssistantDeleted as AssistantDeleted, + type AssistantStreamEvent as AssistantStreamEvent, + type AssistantTool as AssistantTool, + type CodeInterpreterTool as CodeInterpreterTool, + type FileSearchTool as FileSearchTool, + type FunctionTool as FunctionTool, + type MessageStreamEvent as MessageStreamEvent, + type RunStepStreamEvent as RunStepStreamEvent, + type RunStreamEvent as RunStreamEvent, + type ThreadStreamEvent as ThreadStreamEvent, + AssistantsPage as AssistantsPage, + type AssistantCreateParams as AssistantCreateParams, + type AssistantUpdateParams as AssistantUpdateParams, + type AssistantListParams as AssistantListParams, + }; } diff --git a/src/resources/beta/beta.ts b/src/resources/beta/beta.ts index 0bcf217a8..b904abe4a 100644 --- a/src/resources/beta/beta.ts +++ b/src/resources/beta/beta.ts @@ -3,8 +3,59 @@ import { APIResource } from '../../resource'; import * as AssistantsAPI from './assistants'; import * as ChatAPI from './chat/chat'; +import { + Assistant, + AssistantCreateParams, + AssistantDeleted, + AssistantListParams, + AssistantStreamEvent, + AssistantTool, + AssistantUpdateParams, + Assistants, + AssistantsPage, + CodeInterpreterTool, + FileSearchTool, + FunctionTool, + MessageStreamEvent, + RunStepStreamEvent, + RunStreamEvent, + ThreadStreamEvent, +} from './assistants'; import * as ThreadsAPI from './threads/threads'; +import { + AssistantResponseFormatOption, + AssistantToolChoice, + AssistantToolChoiceFunction, + AssistantToolChoiceOption, + Thread, + ThreadCreateAndRunParams, + ThreadCreateAndRunParamsNonStreaming, + ThreadCreateAndRunParamsStreaming, + ThreadCreateAndRunPollParams, + ThreadCreateAndRunStreamParams, + ThreadCreateParams, + ThreadDeleted, + ThreadUpdateParams, + Threads, +} from './threads/threads'; import * as VectorStoresAPI from './vector-stores/vector-stores'; +import { + AutoFileChunkingStrategyParam, + FileChunkingStrategy, + FileChunkingStrategyParam, + OtherFileChunkingStrategyObject, + StaticFileChunkingStrategy, + StaticFileChunkingStrategyObject, + StaticFileChunkingStrategyParam, + VectorStore, + VectorStoreCreateParams, + VectorStoreDeleted, + VectorStoreListParams, + VectorStoreUpdateParams, + VectorStores, + VectorStoresPage, +} from './vector-stores/vector-stores'; +import { Chat } from './chat/chat'; export class Beta extends APIResource { vectorStores: VectorStoresAPI.VectorStores = new VectorStoresAPI.VectorStores(this._client); @@ -13,50 +64,65 @@ export class Beta extends APIResource { threads: ThreadsAPI.Threads = new ThreadsAPI.Threads(this._client); } -export namespace Beta { - export import VectorStores = VectorStoresAPI.VectorStores; - export import AutoFileChunkingStrategyParam = VectorStoresAPI.AutoFileChunkingStrategyParam; - export import FileChunkingStrategy = VectorStoresAPI.FileChunkingStrategy; - export import FileChunkingStrategyParam = VectorStoresAPI.FileChunkingStrategyParam; - export import OtherFileChunkingStrategyObject = VectorStoresAPI.OtherFileChunkingStrategyObject; - export import StaticFileChunkingStrategy = VectorStoresAPI.StaticFileChunkingStrategy; - export import StaticFileChunkingStrategyObject = VectorStoresAPI.StaticFileChunkingStrategyObject; - export import StaticFileChunkingStrategyParam = VectorStoresAPI.StaticFileChunkingStrategyParam; - export import VectorStore = VectorStoresAPI.VectorStore; - export import VectorStoreDeleted = VectorStoresAPI.VectorStoreDeleted; - export import VectorStoresPage = VectorStoresAPI.VectorStoresPage; - export import VectorStoreCreateParams = VectorStoresAPI.VectorStoreCreateParams; - export import VectorStoreUpdateParams = VectorStoresAPI.VectorStoreUpdateParams; - export import VectorStoreListParams = VectorStoresAPI.VectorStoreListParams; - export import Chat = ChatAPI.Chat; - export import Assistants = AssistantsAPI.Assistants; - export import Assistant = AssistantsAPI.Assistant; - export import AssistantDeleted = AssistantsAPI.AssistantDeleted; - export import AssistantStreamEvent = AssistantsAPI.AssistantStreamEvent; - export import AssistantTool = AssistantsAPI.AssistantTool; - export import CodeInterpreterTool = AssistantsAPI.CodeInterpreterTool; - export import FileSearchTool = AssistantsAPI.FileSearchTool; - export import FunctionTool = AssistantsAPI.FunctionTool; - export import MessageStreamEvent = AssistantsAPI.MessageStreamEvent; - export import RunStepStreamEvent = AssistantsAPI.RunStepStreamEvent; - export import RunStreamEvent = AssistantsAPI.RunStreamEvent; - export import ThreadStreamEvent = AssistantsAPI.ThreadStreamEvent; - export import AssistantsPage = AssistantsAPI.AssistantsPage; - export import AssistantCreateParams = AssistantsAPI.AssistantCreateParams; - export import AssistantUpdateParams = AssistantsAPI.AssistantUpdateParams; - export import AssistantListParams = AssistantsAPI.AssistantListParams; - export import Threads = ThreadsAPI.Threads; - export import AssistantResponseFormatOption = ThreadsAPI.AssistantResponseFormatOption; - export import AssistantToolChoice = ThreadsAPI.AssistantToolChoice; - export import AssistantToolChoiceFunction = ThreadsAPI.AssistantToolChoiceFunction; - export import AssistantToolChoiceOption = ThreadsAPI.AssistantToolChoiceOption; - export import Thread = ThreadsAPI.Thread; - export import ThreadDeleted = ThreadsAPI.ThreadDeleted; - export import ThreadCreateParams = ThreadsAPI.ThreadCreateParams; - export import ThreadUpdateParams = ThreadsAPI.ThreadUpdateParams; - export import ThreadCreateAndRunParams = ThreadsAPI.ThreadCreateAndRunParams; - export import ThreadCreateAndRunParamsNonStreaming = ThreadsAPI.ThreadCreateAndRunParamsNonStreaming; - export import ThreadCreateAndRunParamsStreaming = ThreadsAPI.ThreadCreateAndRunParamsStreaming; - export import ThreadCreateAndRunPollParams = ThreadsAPI.ThreadCreateAndRunPollParams; - export import ThreadCreateAndRunStreamParams = ThreadsAPI.ThreadCreateAndRunStreamParams; +Beta.VectorStores = VectorStores; +Beta.VectorStoresPage = VectorStoresPage; +Beta.Assistants = Assistants; +Beta.AssistantsPage = AssistantsPage; +Beta.Threads = Threads; + +export declare namespace Beta { + export { + VectorStores as VectorStores, + type AutoFileChunkingStrategyParam as AutoFileChunkingStrategyParam, + type FileChunkingStrategy as FileChunkingStrategy, + type FileChunkingStrategyParam as FileChunkingStrategyParam, + type OtherFileChunkingStrategyObject as OtherFileChunkingStrategyObject, + type StaticFileChunkingStrategy as StaticFileChunkingStrategy, + type StaticFileChunkingStrategyObject as StaticFileChunkingStrategyObject, + type StaticFileChunkingStrategyParam as StaticFileChunkingStrategyParam, + type VectorStore as VectorStore, + type VectorStoreDeleted as VectorStoreDeleted, + VectorStoresPage as VectorStoresPage, + type VectorStoreCreateParams as VectorStoreCreateParams, + type VectorStoreUpdateParams as VectorStoreUpdateParams, + type VectorStoreListParams as VectorStoreListParams, + }; + + export { Chat }; + + export { + Assistants as Assistants, + type Assistant as Assistant, + type AssistantDeleted as AssistantDeleted, + type AssistantStreamEvent as AssistantStreamEvent, + type AssistantTool as AssistantTool, + type CodeInterpreterTool as CodeInterpreterTool, + type FileSearchTool as FileSearchTool, + type FunctionTool as FunctionTool, + type MessageStreamEvent as MessageStreamEvent, + type RunStepStreamEvent as RunStepStreamEvent, + type RunStreamEvent as RunStreamEvent, + type ThreadStreamEvent as ThreadStreamEvent, + AssistantsPage as AssistantsPage, + type AssistantCreateParams as AssistantCreateParams, + type AssistantUpdateParams as AssistantUpdateParams, + type AssistantListParams as AssistantListParams, + }; + + export { + Threads as Threads, + type AssistantResponseFormatOption as AssistantResponseFormatOption, + type AssistantToolChoice as AssistantToolChoice, + type AssistantToolChoiceFunction as AssistantToolChoiceFunction, + type AssistantToolChoiceOption as AssistantToolChoiceOption, + type Thread as Thread, + type ThreadDeleted as ThreadDeleted, + type ThreadCreateParams as ThreadCreateParams, + type ThreadUpdateParams as ThreadUpdateParams, + type ThreadCreateAndRunParams as ThreadCreateAndRunParams, + type ThreadCreateAndRunParamsNonStreaming as ThreadCreateAndRunParamsNonStreaming, + type ThreadCreateAndRunParamsStreaming as ThreadCreateAndRunParamsStreaming, + type ThreadCreateAndRunPollParams, + type ThreadCreateAndRunStreamParams, + }; } diff --git a/src/resources/beta/index.ts b/src/resources/beta/index.ts index 9fcf805a1..d7111288f 100644 --- a/src/resources/beta/index.ts +++ b/src/resources/beta/index.ts @@ -1,54 +1,54 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. export { - Assistant, - AssistantDeleted, - AssistantStreamEvent, - AssistantTool, - CodeInterpreterTool, - FileSearchTool, - FunctionTool, - MessageStreamEvent, - RunStepStreamEvent, - RunStreamEvent, - ThreadStreamEvent, - AssistantCreateParams, - AssistantUpdateParams, - AssistantListParams, AssistantsPage, Assistants, + type Assistant, + type AssistantDeleted, + type AssistantStreamEvent, + type AssistantTool, + type CodeInterpreterTool, + type FileSearchTool, + type FunctionTool, + type MessageStreamEvent, + type RunStepStreamEvent, + type RunStreamEvent, + type ThreadStreamEvent, + type AssistantCreateParams, + type AssistantUpdateParams, + type AssistantListParams, } from './assistants'; +export { Beta } from './beta'; +export { Chat } from './chat/index'; export { - AssistantResponseFormatOption, - AssistantToolChoice, - AssistantToolChoiceFunction, - AssistantToolChoiceOption, - Thread, - ThreadDeleted, - ThreadCreateParams, - ThreadUpdateParams, - ThreadCreateAndRunParams, - ThreadCreateAndRunParamsNonStreaming, - ThreadCreateAndRunParamsStreaming, - ThreadCreateAndRunPollParams, - ThreadCreateAndRunStreamParams, Threads, + type AssistantResponseFormatOption, + type AssistantToolChoice, + type AssistantToolChoiceFunction, + type AssistantToolChoiceOption, + type Thread, + type ThreadDeleted, + type ThreadCreateParams, + type ThreadUpdateParams, + type ThreadCreateAndRunParams, + type ThreadCreateAndRunParamsNonStreaming, + type ThreadCreateAndRunParamsStreaming, + type ThreadCreateAndRunPollParams, + type ThreadCreateAndRunStreamParams, } from './threads/index'; -export { Beta } from './beta'; -export { Chat } from './chat/index'; export { - AutoFileChunkingStrategyParam, - FileChunkingStrategy, - FileChunkingStrategyParam, - OtherFileChunkingStrategyObject, - StaticFileChunkingStrategy, - StaticFileChunkingStrategyObject, - StaticFileChunkingStrategyParam, - VectorStore, - VectorStoreDeleted, - VectorStoreCreateParams, - VectorStoreUpdateParams, - VectorStoreListParams, VectorStoresPage, VectorStores, + type AutoFileChunkingStrategyParam, + type FileChunkingStrategy, + type FileChunkingStrategyParam, + type OtherFileChunkingStrategyObject, + type StaticFileChunkingStrategy, + type StaticFileChunkingStrategyObject, + type StaticFileChunkingStrategyParam, + type VectorStore, + type VectorStoreDeleted, + type VectorStoreCreateParams, + type VectorStoreUpdateParams, + type VectorStoreListParams, } from './vector-stores/index'; diff --git a/src/resources/beta/threads/index.ts b/src/resources/beta/threads/index.ts index 1964cffb8..f67a1edde 100644 --- a/src/resources/beta/threads/index.ts +++ b/src/resources/beta/threads/index.ts @@ -1,73 +1,73 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. export { - Annotation, - AnnotationDelta, - FileCitationAnnotation, - FileCitationDeltaAnnotation, - FilePathAnnotation, - FilePathDeltaAnnotation, - ImageFile, - ImageFileContentBlock, - ImageFileDelta, - ImageFileDeltaBlock, - ImageURL, - ImageURLContentBlock, - ImageURLDelta, - ImageURLDeltaBlock, - Message, - MessageContent, - MessageContentDelta, - MessageContentPartParam, - MessageDeleted, - MessageDelta, - MessageDeltaEvent, - RefusalContentBlock, - RefusalDeltaBlock, - Text, - TextContentBlock, - TextContentBlockParam, - TextDelta, - TextDeltaBlock, - MessageCreateParams, - MessageUpdateParams, - MessageListParams, MessagesPage, Messages, + type Annotation, + type AnnotationDelta, + type FileCitationAnnotation, + type FileCitationDeltaAnnotation, + type FilePathAnnotation, + type FilePathDeltaAnnotation, + type ImageFile, + type ImageFileContentBlock, + type ImageFileDelta, + type ImageFileDeltaBlock, + type ImageURL, + type ImageURLContentBlock, + type ImageURLDelta, + type ImageURLDeltaBlock, + type Message, + type MessageContent, + type MessageContentDelta, + type MessageContentPartParam, + type MessageDeleted, + type MessageDelta, + type MessageDeltaEvent, + type RefusalContentBlock, + type RefusalDeltaBlock, + type Text, + type TextContentBlock, + type TextContentBlockParam, + type TextDelta, + type TextDeltaBlock, + type MessageCreateParams, + type MessageUpdateParams, + type MessageListParams, } from './messages'; export { - AssistantResponseFormatOption, - AssistantToolChoice, - AssistantToolChoiceFunction, - AssistantToolChoiceOption, - Thread, - ThreadDeleted, - ThreadCreateParams, - ThreadUpdateParams, - ThreadCreateAndRunParams, - ThreadCreateAndRunParamsNonStreaming, - ThreadCreateAndRunParamsStreaming, - ThreadCreateAndRunPollParams, - ThreadCreateAndRunStreamParams, - Threads, -} from './threads'; -export { - RequiredActionFunctionToolCall, - Run, - RunStatus, - RunCreateParams, - RunCreateParamsNonStreaming, - RunCreateParamsStreaming, - RunUpdateParams, - RunListParams, - RunCreateAndPollParams, - RunCreateAndStreamParams, - RunStreamParams, - RunSubmitToolOutputsParams, - RunSubmitToolOutputsParamsNonStreaming, - RunSubmitToolOutputsParamsStreaming, - RunSubmitToolOutputsAndPollParams, - RunSubmitToolOutputsStreamParams, RunsPage, Runs, + type RequiredActionFunctionToolCall, + type Run, + type RunStatus, + type RunCreateParams, + type RunCreateParamsNonStreaming, + type RunCreateParamsStreaming, + type RunUpdateParams, + type RunListParams, + type RunSubmitToolOutputsParams, + type RunSubmitToolOutputsParamsNonStreaming, + type RunSubmitToolOutputsParamsStreaming, + type RunCreateAndPollParams, + type RunCreateAndStreamParams, + type RunStreamParams, + type RunSubmitToolOutputsAndPollParams, + type RunSubmitToolOutputsStreamParams, } from './runs/index'; +export { + Threads, + type AssistantResponseFormatOption, + type AssistantToolChoice, + type AssistantToolChoiceFunction, + type AssistantToolChoiceOption, + type Thread, + type ThreadDeleted, + type ThreadCreateParams, + type ThreadUpdateParams, + type ThreadCreateAndRunParams, + type ThreadCreateAndRunParamsNonStreaming, + type ThreadCreateAndRunParamsStreaming, + type ThreadCreateAndRunPollParams, + type ThreadCreateAndRunStreamParams, +} from './threads'; diff --git a/src/resources/beta/threads/messages.ts b/src/resources/beta/threads/messages.ts index 59c92675b..af7977667 100644 --- a/src/resources/beta/threads/messages.ts +++ b/src/resources/beta/threads/messages.ts @@ -3,7 +3,6 @@ import { APIResource } from '../../../resource'; import { isRequestOptions } from '../../../core'; import * as Core from '../../../core'; -import * as MessagesAPI from './messages'; import * as AssistantsAPI from '../assistants'; import { CursorPage, type CursorPageParams } from '../../../pagination'; @@ -722,37 +721,41 @@ export interface MessageListParams extends CursorPageParams { run_id?: string; } -export namespace Messages { - export import Annotation = MessagesAPI.Annotation; - export import AnnotationDelta = MessagesAPI.AnnotationDelta; - export import FileCitationAnnotation = MessagesAPI.FileCitationAnnotation; - export import FileCitationDeltaAnnotation = MessagesAPI.FileCitationDeltaAnnotation; - export import FilePathAnnotation = MessagesAPI.FilePathAnnotation; - export import FilePathDeltaAnnotation = MessagesAPI.FilePathDeltaAnnotation; - export import ImageFile = MessagesAPI.ImageFile; - export import ImageFileContentBlock = MessagesAPI.ImageFileContentBlock; - export import ImageFileDelta = MessagesAPI.ImageFileDelta; - export import ImageFileDeltaBlock = MessagesAPI.ImageFileDeltaBlock; - export import ImageURL = MessagesAPI.ImageURL; - export import ImageURLContentBlock = MessagesAPI.ImageURLContentBlock; - export import ImageURLDelta = MessagesAPI.ImageURLDelta; - export import ImageURLDeltaBlock = MessagesAPI.ImageURLDeltaBlock; - export import Message = MessagesAPI.Message; - export import MessageContent = MessagesAPI.MessageContent; - export import MessageContentDelta = MessagesAPI.MessageContentDelta; - export import MessageContentPartParam = MessagesAPI.MessageContentPartParam; - export import MessageDeleted = MessagesAPI.MessageDeleted; - export import MessageDelta = MessagesAPI.MessageDelta; - export import MessageDeltaEvent = MessagesAPI.MessageDeltaEvent; - export import RefusalContentBlock = MessagesAPI.RefusalContentBlock; - export import RefusalDeltaBlock = MessagesAPI.RefusalDeltaBlock; - export import Text = MessagesAPI.Text; - export import TextContentBlock = MessagesAPI.TextContentBlock; - export import TextContentBlockParam = MessagesAPI.TextContentBlockParam; - export import TextDelta = MessagesAPI.TextDelta; - export import TextDeltaBlock = MessagesAPI.TextDeltaBlock; - export import MessagesPage = MessagesAPI.MessagesPage; - export import MessageCreateParams = MessagesAPI.MessageCreateParams; - export import MessageUpdateParams = MessagesAPI.MessageUpdateParams; - export import MessageListParams = MessagesAPI.MessageListParams; +Messages.MessagesPage = MessagesPage; + +export declare namespace Messages { + export { + type Annotation as Annotation, + type AnnotationDelta as AnnotationDelta, + type FileCitationAnnotation as FileCitationAnnotation, + type FileCitationDeltaAnnotation as FileCitationDeltaAnnotation, + type FilePathAnnotation as FilePathAnnotation, + type FilePathDeltaAnnotation as FilePathDeltaAnnotation, + type ImageFile as ImageFile, + type ImageFileContentBlock as ImageFileContentBlock, + type ImageFileDelta as ImageFileDelta, + type ImageFileDeltaBlock as ImageFileDeltaBlock, + type ImageURL as ImageURL, + type ImageURLContentBlock as ImageURLContentBlock, + type ImageURLDelta as ImageURLDelta, + type ImageURLDeltaBlock as ImageURLDeltaBlock, + type Message as Message, + type MessageContent as MessageContent, + type MessageContentDelta as MessageContentDelta, + type MessageContentPartParam as MessageContentPartParam, + type MessageDeleted as MessageDeleted, + type MessageDelta as MessageDelta, + type MessageDeltaEvent as MessageDeltaEvent, + type RefusalContentBlock as RefusalContentBlock, + type RefusalDeltaBlock as RefusalDeltaBlock, + type Text as Text, + type TextContentBlock as TextContentBlock, + type TextContentBlockParam as TextContentBlockParam, + type TextDelta as TextDelta, + type TextDeltaBlock as TextDeltaBlock, + MessagesPage as MessagesPage, + type MessageCreateParams as MessageCreateParams, + type MessageUpdateParams as MessageUpdateParams, + type MessageListParams as MessageListParams, + }; } diff --git a/src/resources/beta/threads/runs/index.ts b/src/resources/beta/threads/runs/index.ts index 9496f59e1..9dbe575bc 100644 --- a/src/resources/beta/threads/runs/index.ts +++ b/src/resources/beta/threads/runs/index.ts @@ -1,46 +1,46 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. export { - CodeInterpreterLogs, - CodeInterpreterOutputImage, - CodeInterpreterToolCall, - CodeInterpreterToolCallDelta, - FileSearchToolCall, - FileSearchToolCallDelta, - FunctionToolCall, - FunctionToolCallDelta, - MessageCreationStepDetails, - RunStep, - RunStepDelta, - RunStepDeltaEvent, - RunStepDeltaMessageDelta, - RunStepInclude, - ToolCall, - ToolCallDelta, - ToolCallDeltaObject, - ToolCallsStepDetails, - StepRetrieveParams, - StepListParams, RunStepsPage, Steps, + type CodeInterpreterLogs, + type CodeInterpreterOutputImage, + type CodeInterpreterToolCall, + type CodeInterpreterToolCallDelta, + type FileSearchToolCall, + type FileSearchToolCallDelta, + type FunctionToolCall, + type FunctionToolCallDelta, + type MessageCreationStepDetails, + type RunStep, + type RunStepDelta, + type RunStepDeltaEvent, + type RunStepDeltaMessageDelta, + type RunStepInclude, + type ToolCall, + type ToolCallDelta, + type ToolCallDeltaObject, + type ToolCallsStepDetails, + type StepRetrieveParams, + type StepListParams, } from './steps'; export { - RequiredActionFunctionToolCall, - Run, - RunStatus, - RunCreateParams, - RunCreateParamsNonStreaming, - RunCreateParamsStreaming, - RunUpdateParams, - RunListParams, - RunCreateAndPollParams, - RunCreateAndStreamParams, - RunStreamParams, - RunSubmitToolOutputsParams, - RunSubmitToolOutputsParamsNonStreaming, - RunSubmitToolOutputsParamsStreaming, - RunSubmitToolOutputsAndPollParams, - RunSubmitToolOutputsStreamParams, RunsPage, Runs, + type RequiredActionFunctionToolCall, + type Run, + type RunStatus, + type RunCreateParams, + type RunCreateParamsNonStreaming, + type RunCreateParamsStreaming, + type RunUpdateParams, + type RunListParams, + type RunCreateAndPollParams, + type RunCreateAndStreamParams, + type RunStreamParams, + type RunSubmitToolOutputsParams, + type RunSubmitToolOutputsParamsNonStreaming, + type RunSubmitToolOutputsParamsStreaming, + type RunSubmitToolOutputsAndPollParams, + type RunSubmitToolOutputsStreamParams, } from './runs'; diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index b48edd5b1..83a447a91 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -13,6 +13,30 @@ import * as ChatAPI from '../../../chat/chat'; import * as MessagesAPI from '../messages'; import * as ThreadsAPI from '../threads'; import * as StepsAPI from './steps'; +import { + CodeInterpreterLogs, + CodeInterpreterOutputImage, + CodeInterpreterToolCall, + CodeInterpreterToolCallDelta, + FileSearchToolCall, + FileSearchToolCallDelta, + FunctionToolCall, + FunctionToolCallDelta, + MessageCreationStepDetails, + RunStep, + RunStepDelta, + RunStepDeltaEvent, + RunStepDeltaMessageDelta, + RunStepInclude, + RunStepsPage, + StepListParams, + StepRetrieveParams, + Steps, + ToolCall, + ToolCallDelta, + ToolCallDeltaObject, + ToolCallsStepDetails, +} from './steps'; import { CursorPage, type CursorPageParams } from '../../../../pagination'; import { Stream } from '../../../../streaming'; @@ -1619,44 +1643,53 @@ export namespace RunSubmitToolOutputsStreamParams { } } -export namespace Runs { - export import RequiredActionFunctionToolCall = RunsAPI.RequiredActionFunctionToolCall; - export import Run = RunsAPI.Run; - export import RunStatus = RunsAPI.RunStatus; - export import RunsPage = RunsAPI.RunsPage; - export import RunCreateParams = RunsAPI.RunCreateParams; - export import RunCreateParamsNonStreaming = RunsAPI.RunCreateParamsNonStreaming; - export import RunCreateParamsStreaming = RunsAPI.RunCreateParamsStreaming; - export import RunUpdateParams = RunsAPI.RunUpdateParams; - export import RunListParams = RunsAPI.RunListParams; - export import RunCreateAndPollParams = RunsAPI.RunCreateAndPollParams; - export import RunCreateAndStreamParams = RunsAPI.RunCreateAndStreamParams; - export import RunStreamParams = RunsAPI.RunStreamParams; - export import RunSubmitToolOutputsParams = RunsAPI.RunSubmitToolOutputsParams; - export import RunSubmitToolOutputsParamsNonStreaming = RunsAPI.RunSubmitToolOutputsParamsNonStreaming; - export import RunSubmitToolOutputsParamsStreaming = RunsAPI.RunSubmitToolOutputsParamsStreaming; - export import RunSubmitToolOutputsAndPollParams = RunsAPI.RunSubmitToolOutputsAndPollParams; - export import RunSubmitToolOutputsStreamParams = RunsAPI.RunSubmitToolOutputsStreamParams; - export import Steps = StepsAPI.Steps; - export import CodeInterpreterLogs = StepsAPI.CodeInterpreterLogs; - export import CodeInterpreterOutputImage = StepsAPI.CodeInterpreterOutputImage; - export import CodeInterpreterToolCall = StepsAPI.CodeInterpreterToolCall; - export import CodeInterpreterToolCallDelta = StepsAPI.CodeInterpreterToolCallDelta; - export import FileSearchToolCall = StepsAPI.FileSearchToolCall; - export import FileSearchToolCallDelta = StepsAPI.FileSearchToolCallDelta; - export import FunctionToolCall = StepsAPI.FunctionToolCall; - export import FunctionToolCallDelta = StepsAPI.FunctionToolCallDelta; - export import MessageCreationStepDetails = StepsAPI.MessageCreationStepDetails; - export import RunStep = StepsAPI.RunStep; - export import RunStepDelta = StepsAPI.RunStepDelta; - export import RunStepDeltaEvent = StepsAPI.RunStepDeltaEvent; - export import RunStepDeltaMessageDelta = StepsAPI.RunStepDeltaMessageDelta; - export import RunStepInclude = StepsAPI.RunStepInclude; - export import ToolCall = StepsAPI.ToolCall; - export import ToolCallDelta = StepsAPI.ToolCallDelta; - export import ToolCallDeltaObject = StepsAPI.ToolCallDeltaObject; - export import ToolCallsStepDetails = StepsAPI.ToolCallsStepDetails; - export import RunStepsPage = StepsAPI.RunStepsPage; - export import StepRetrieveParams = StepsAPI.StepRetrieveParams; - export import StepListParams = StepsAPI.StepListParams; +Runs.RunsPage = RunsPage; +Runs.Steps = Steps; +Runs.RunStepsPage = RunStepsPage; + +export declare namespace Runs { + export { + type RequiredActionFunctionToolCall as RequiredActionFunctionToolCall, + type Run as Run, + type RunStatus as RunStatus, + RunsPage as RunsPage, + type RunCreateParams as RunCreateParams, + type RunCreateParamsNonStreaming as RunCreateParamsNonStreaming, + type RunCreateParamsStreaming as RunCreateParamsStreaming, + type RunUpdateParams as RunUpdateParams, + type RunListParams as RunListParams, + type RunCreateAndPollParams, + type RunCreateAndStreamParams, + type RunStreamParams, + type RunSubmitToolOutputsParams as RunSubmitToolOutputsParams, + type RunSubmitToolOutputsParamsNonStreaming as RunSubmitToolOutputsParamsNonStreaming, + type RunSubmitToolOutputsParamsStreaming as RunSubmitToolOutputsParamsStreaming, + type RunSubmitToolOutputsAndPollParams, + type RunSubmitToolOutputsStreamParams, + }; + + export { + Steps as Steps, + type CodeInterpreterLogs as CodeInterpreterLogs, + type CodeInterpreterOutputImage as CodeInterpreterOutputImage, + type CodeInterpreterToolCall as CodeInterpreterToolCall, + type CodeInterpreterToolCallDelta as CodeInterpreterToolCallDelta, + type FileSearchToolCall as FileSearchToolCall, + type FileSearchToolCallDelta as FileSearchToolCallDelta, + type FunctionToolCall as FunctionToolCall, + type FunctionToolCallDelta as FunctionToolCallDelta, + type MessageCreationStepDetails as MessageCreationStepDetails, + type RunStep as RunStep, + type RunStepDelta as RunStepDelta, + type RunStepDeltaEvent as RunStepDeltaEvent, + type RunStepDeltaMessageDelta as RunStepDeltaMessageDelta, + type RunStepInclude as RunStepInclude, + type ToolCall as ToolCall, + type ToolCallDelta as ToolCallDelta, + type ToolCallDeltaObject as ToolCallDeltaObject, + type ToolCallsStepDetails as ToolCallsStepDetails, + RunStepsPage as RunStepsPage, + type StepRetrieveParams as StepRetrieveParams, + type StepListParams as StepListParams, + }; } diff --git a/src/resources/beta/threads/runs/steps.ts b/src/resources/beta/threads/runs/steps.ts index c076191a3..b10bcb868 100644 --- a/src/resources/beta/threads/runs/steps.ts +++ b/src/resources/beta/threads/runs/steps.ts @@ -738,26 +738,30 @@ export interface StepListParams extends CursorPageParams { order?: 'asc' | 'desc'; } -export namespace Steps { - export import CodeInterpreterLogs = StepsAPI.CodeInterpreterLogs; - export import CodeInterpreterOutputImage = StepsAPI.CodeInterpreterOutputImage; - export import CodeInterpreterToolCall = StepsAPI.CodeInterpreterToolCall; - export import CodeInterpreterToolCallDelta = StepsAPI.CodeInterpreterToolCallDelta; - export import FileSearchToolCall = StepsAPI.FileSearchToolCall; - export import FileSearchToolCallDelta = StepsAPI.FileSearchToolCallDelta; - export import FunctionToolCall = StepsAPI.FunctionToolCall; - export import FunctionToolCallDelta = StepsAPI.FunctionToolCallDelta; - export import MessageCreationStepDetails = StepsAPI.MessageCreationStepDetails; - export import RunStep = StepsAPI.RunStep; - export import RunStepDelta = StepsAPI.RunStepDelta; - export import RunStepDeltaEvent = StepsAPI.RunStepDeltaEvent; - export import RunStepDeltaMessageDelta = StepsAPI.RunStepDeltaMessageDelta; - export import RunStepInclude = StepsAPI.RunStepInclude; - export import ToolCall = StepsAPI.ToolCall; - export import ToolCallDelta = StepsAPI.ToolCallDelta; - export import ToolCallDeltaObject = StepsAPI.ToolCallDeltaObject; - export import ToolCallsStepDetails = StepsAPI.ToolCallsStepDetails; - export import RunStepsPage = StepsAPI.RunStepsPage; - export import StepRetrieveParams = StepsAPI.StepRetrieveParams; - export import StepListParams = StepsAPI.StepListParams; +Steps.RunStepsPage = RunStepsPage; + +export declare namespace Steps { + export { + type CodeInterpreterLogs as CodeInterpreterLogs, + type CodeInterpreterOutputImage as CodeInterpreterOutputImage, + type CodeInterpreterToolCall as CodeInterpreterToolCall, + type CodeInterpreterToolCallDelta as CodeInterpreterToolCallDelta, + type FileSearchToolCall as FileSearchToolCall, + type FileSearchToolCallDelta as FileSearchToolCallDelta, + type FunctionToolCall as FunctionToolCall, + type FunctionToolCallDelta as FunctionToolCallDelta, + type MessageCreationStepDetails as MessageCreationStepDetails, + type RunStep as RunStep, + type RunStepDelta as RunStepDelta, + type RunStepDeltaEvent as RunStepDeltaEvent, + type RunStepDeltaMessageDelta as RunStepDeltaMessageDelta, + type RunStepInclude as RunStepInclude, + type ToolCall as ToolCall, + type ToolCallDelta as ToolCallDelta, + type ToolCallDeltaObject as ToolCallDeltaObject, + type ToolCallsStepDetails as ToolCallsStepDetails, + RunStepsPage as RunStepsPage, + type StepRetrieveParams as StepRetrieveParams, + type StepListParams as StepListParams, + }; } diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index be959eb30..899645508 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -10,8 +10,63 @@ import * as Shared from '../../shared'; import * as AssistantsAPI from '../assistants'; import * as ChatAPI from '../../chat/chat'; import * as MessagesAPI from './messages'; +import { + Annotation, + AnnotationDelta, + FileCitationAnnotation, + FileCitationDeltaAnnotation, + FilePathAnnotation, + FilePathDeltaAnnotation, + ImageFile, + ImageFileContentBlock, + ImageFileDelta, + ImageFileDeltaBlock, + ImageURL, + ImageURLContentBlock, + ImageURLDelta, + ImageURLDeltaBlock, + Message as MessagesAPIMessage, + MessageContent, + MessageContentDelta, + MessageContentPartParam, + MessageCreateParams, + MessageDeleted, + MessageDelta, + MessageDeltaEvent, + MessageListParams, + MessageUpdateParams, + Messages, + MessagesPage, + RefusalContentBlock, + RefusalDeltaBlock, + Text, + TextContentBlock, + TextContentBlockParam, + TextDelta, + TextDeltaBlock, +} from './messages'; import * as VectorStoresAPI from '../vector-stores/vector-stores'; import * as RunsAPI from './runs/runs'; +import { + RequiredActionFunctionToolCall, + Run, + RunCreateAndPollParams, + RunCreateAndStreamParams, + RunCreateParams, + RunCreateParamsNonStreaming, + RunCreateParamsStreaming, + RunListParams, + RunStatus, + RunStreamParams, + RunSubmitToolOutputsAndPollParams, + RunSubmitToolOutputsParams, + RunSubmitToolOutputsParamsNonStreaming, + RunSubmitToolOutputsParamsStreaming, + RunSubmitToolOutputsStreamParams, + RunUpdateParams, + Runs, + RunsPage, +} from './runs/runs'; import { Stream } from '../../../streaming'; export class Threads extends APIResource { @@ -1489,69 +1544,82 @@ export namespace ThreadCreateAndRunStreamParams { } } -export namespace Threads { - export import AssistantResponseFormatOption = ThreadsAPI.AssistantResponseFormatOption; - export import AssistantToolChoice = ThreadsAPI.AssistantToolChoice; - export import AssistantToolChoiceFunction = ThreadsAPI.AssistantToolChoiceFunction; - export import AssistantToolChoiceOption = ThreadsAPI.AssistantToolChoiceOption; - export import Thread = ThreadsAPI.Thread; - export import ThreadDeleted = ThreadsAPI.ThreadDeleted; - export import ThreadCreateParams = ThreadsAPI.ThreadCreateParams; - export import ThreadUpdateParams = ThreadsAPI.ThreadUpdateParams; - export import ThreadCreateAndRunParams = ThreadsAPI.ThreadCreateAndRunParams; - export import ThreadCreateAndRunParamsNonStreaming = ThreadsAPI.ThreadCreateAndRunParamsNonStreaming; - export import ThreadCreateAndRunParamsStreaming = ThreadsAPI.ThreadCreateAndRunParamsStreaming; - export import ThreadCreateAndRunPollParams = ThreadsAPI.ThreadCreateAndRunPollParams; - export import ThreadCreateAndRunStreamParams = ThreadsAPI.ThreadCreateAndRunStreamParams; - export import Runs = RunsAPI.Runs; - export import RequiredActionFunctionToolCall = RunsAPI.RequiredActionFunctionToolCall; - export import Run = RunsAPI.Run; - export import RunStatus = RunsAPI.RunStatus; - export import RunsPage = RunsAPI.RunsPage; - export import RunCreateParams = RunsAPI.RunCreateParams; - export import RunCreateParamsNonStreaming = RunsAPI.RunCreateParamsNonStreaming; - export import RunCreateParamsStreaming = RunsAPI.RunCreateParamsStreaming; - export import RunUpdateParams = RunsAPI.RunUpdateParams; - export import RunListParams = RunsAPI.RunListParams; - export import RunCreateAndPollParams = RunsAPI.RunCreateAndPollParams; - export import RunCreateAndStreamParams = RunsAPI.RunCreateAndStreamParams; - export import RunStreamParams = RunsAPI.RunStreamParams; - export import RunSubmitToolOutputsParams = RunsAPI.RunSubmitToolOutputsParams; - export import RunSubmitToolOutputsParamsNonStreaming = RunsAPI.RunSubmitToolOutputsParamsNonStreaming; - export import RunSubmitToolOutputsParamsStreaming = RunsAPI.RunSubmitToolOutputsParamsStreaming; - export import RunSubmitToolOutputsAndPollParams = RunsAPI.RunSubmitToolOutputsAndPollParams; - export import RunSubmitToolOutputsStreamParams = RunsAPI.RunSubmitToolOutputsStreamParams; - export import Messages = MessagesAPI.Messages; - export import Annotation = MessagesAPI.Annotation; - export import AnnotationDelta = MessagesAPI.AnnotationDelta; - export import FileCitationAnnotation = MessagesAPI.FileCitationAnnotation; - export import FileCitationDeltaAnnotation = MessagesAPI.FileCitationDeltaAnnotation; - export import FilePathAnnotation = MessagesAPI.FilePathAnnotation; - export import FilePathDeltaAnnotation = MessagesAPI.FilePathDeltaAnnotation; - export import ImageFile = MessagesAPI.ImageFile; - export import ImageFileContentBlock = MessagesAPI.ImageFileContentBlock; - export import ImageFileDelta = MessagesAPI.ImageFileDelta; - export import ImageFileDeltaBlock = MessagesAPI.ImageFileDeltaBlock; - export import ImageURL = MessagesAPI.ImageURL; - export import ImageURLContentBlock = MessagesAPI.ImageURLContentBlock; - export import ImageURLDelta = MessagesAPI.ImageURLDelta; - export import ImageURLDeltaBlock = MessagesAPI.ImageURLDeltaBlock; - export import Message = MessagesAPI.Message; - export import MessageContent = MessagesAPI.MessageContent; - export import MessageContentDelta = MessagesAPI.MessageContentDelta; - export import MessageContentPartParam = MessagesAPI.MessageContentPartParam; - export import MessageDeleted = MessagesAPI.MessageDeleted; - export import MessageDelta = MessagesAPI.MessageDelta; - export import MessageDeltaEvent = MessagesAPI.MessageDeltaEvent; - export import RefusalContentBlock = MessagesAPI.RefusalContentBlock; - export import RefusalDeltaBlock = MessagesAPI.RefusalDeltaBlock; - export import Text = MessagesAPI.Text; - export import TextContentBlock = MessagesAPI.TextContentBlock; - export import TextContentBlockParam = MessagesAPI.TextContentBlockParam; - export import TextDelta = MessagesAPI.TextDelta; - export import TextDeltaBlock = MessagesAPI.TextDeltaBlock; - export import MessagesPage = MessagesAPI.MessagesPage; - export import MessageCreateParams = MessagesAPI.MessageCreateParams; - export import MessageUpdateParams = MessagesAPI.MessageUpdateParams; - export import MessageListParams = MessagesAPI.MessageListParams; +Threads.Runs = Runs; +Threads.RunsPage = RunsPage; +Threads.Messages = Messages; +Threads.MessagesPage = MessagesPage; + +export declare namespace Threads { + export { + type AssistantResponseFormatOption as AssistantResponseFormatOption, + type AssistantToolChoice as AssistantToolChoice, + type AssistantToolChoiceFunction as AssistantToolChoiceFunction, + type AssistantToolChoiceOption as AssistantToolChoiceOption, + type Thread as Thread, + type ThreadDeleted as ThreadDeleted, + type ThreadCreateParams as ThreadCreateParams, + type ThreadUpdateParams as ThreadUpdateParams, + type ThreadCreateAndRunParams as ThreadCreateAndRunParams, + type ThreadCreateAndRunParamsNonStreaming as ThreadCreateAndRunParamsNonStreaming, + type ThreadCreateAndRunParamsStreaming as ThreadCreateAndRunParamsStreaming, + type ThreadCreateAndRunPollParams, + type ThreadCreateAndRunStreamParams, + }; + + export { + Runs as Runs, + type RequiredActionFunctionToolCall as RequiredActionFunctionToolCall, + type Run as Run, + type RunStatus as RunStatus, + RunsPage as RunsPage, + type RunCreateParams as RunCreateParams, + type RunCreateParamsNonStreaming as RunCreateParamsNonStreaming, + type RunCreateParamsStreaming as RunCreateParamsStreaming, + type RunUpdateParams as RunUpdateParams, + type RunListParams as RunListParams, + type RunCreateAndPollParams, + type RunCreateAndStreamParams, + type RunStreamParams, + type RunSubmitToolOutputsParams as RunSubmitToolOutputsParams, + type RunSubmitToolOutputsParamsNonStreaming as RunSubmitToolOutputsParamsNonStreaming, + type RunSubmitToolOutputsParamsStreaming as RunSubmitToolOutputsParamsStreaming, + type RunSubmitToolOutputsAndPollParams, + type RunSubmitToolOutputsStreamParams, + }; + + export { + Messages as Messages, + type Annotation as Annotation, + type AnnotationDelta as AnnotationDelta, + type FileCitationAnnotation as FileCitationAnnotation, + type FileCitationDeltaAnnotation as FileCitationDeltaAnnotation, + type FilePathAnnotation as FilePathAnnotation, + type FilePathDeltaAnnotation as FilePathDeltaAnnotation, + type ImageFile as ImageFile, + type ImageFileContentBlock as ImageFileContentBlock, + type ImageFileDelta as ImageFileDelta, + type ImageFileDeltaBlock as ImageFileDeltaBlock, + type ImageURL as ImageURL, + type ImageURLContentBlock as ImageURLContentBlock, + type ImageURLDelta as ImageURLDelta, + type ImageURLDeltaBlock as ImageURLDeltaBlock, + type MessagesAPIMessage as Message, + type MessageContent as MessageContent, + type MessageContentDelta as MessageContentDelta, + type MessageContentPartParam as MessageContentPartParam, + type MessageDeleted as MessageDeleted, + type MessageDelta as MessageDelta, + type MessageDeltaEvent as MessageDeltaEvent, + type RefusalContentBlock as RefusalContentBlock, + type RefusalDeltaBlock as RefusalDeltaBlock, + type Text as Text, + type TextContentBlock as TextContentBlock, + type TextContentBlockParam as TextContentBlockParam, + type TextDelta as TextDelta, + type TextDeltaBlock as TextDeltaBlock, + MessagesPage as MessagesPage, + type MessageCreateParams as MessageCreateParams, + type MessageUpdateParams as MessageUpdateParams, + type MessageListParams as MessageListParams, + }; } diff --git a/src/resources/beta/vector-stores/file-batches.ts b/src/resources/beta/vector-stores/file-batches.ts index 3436d7575..533e6ce03 100644 --- a/src/resources/beta/vector-stores/file-batches.ts +++ b/src/resources/beta/vector-stores/file-batches.ts @@ -6,7 +6,6 @@ import { sleep } from '../../../core'; import { Uploadable } from '../../../core'; import { allSettledWithThrow } from '../../../lib/Util'; import * as Core from '../../../core'; -import * as FileBatchesAPI from './file-batches'; import * as FilesAPI from './files'; import { VectorStoreFilesPage } from './files'; import * as VectorStoresAPI from './vector-stores'; @@ -294,10 +293,12 @@ export interface FileBatchListFilesParams extends CursorPageParams { order?: 'asc' | 'desc'; } -export namespace FileBatches { - export import VectorStoreFileBatch = FileBatchesAPI.VectorStoreFileBatch; - export import FileBatchCreateParams = FileBatchesAPI.FileBatchCreateParams; - export import FileBatchListFilesParams = FileBatchesAPI.FileBatchListFilesParams; +export declare namespace FileBatches { + export { + type VectorStoreFileBatch as VectorStoreFileBatch, + type FileBatchCreateParams as FileBatchCreateParams, + type FileBatchListFilesParams as FileBatchListFilesParams, + }; } export { VectorStoreFilesPage }; diff --git a/src/resources/beta/vector-stores/files.ts b/src/resources/beta/vector-stores/files.ts index f82cd63df..a263a0491 100644 --- a/src/resources/beta/vector-stores/files.ts +++ b/src/resources/beta/vector-stores/files.ts @@ -3,7 +3,6 @@ import { APIResource } from '../../../resource'; import { sleep, Uploadable, isRequestOptions } from '../../../core'; import * as Core from '../../../core'; -import * as FilesAPI from './files'; import * as VectorStoresAPI from './vector-stores'; import { CursorPage, type CursorPageParams } from '../../../pagination'; @@ -286,10 +285,14 @@ export interface FileListParams extends CursorPageParams { order?: 'asc' | 'desc'; } -export namespace Files { - export import VectorStoreFile = FilesAPI.VectorStoreFile; - export import VectorStoreFileDeleted = FilesAPI.VectorStoreFileDeleted; - export import VectorStoreFilesPage = FilesAPI.VectorStoreFilesPage; - export import FileCreateParams = FilesAPI.FileCreateParams; - export import FileListParams = FilesAPI.FileListParams; +Files.VectorStoreFilesPage = VectorStoreFilesPage; + +export declare namespace Files { + export { + type VectorStoreFile as VectorStoreFile, + type VectorStoreFileDeleted as VectorStoreFileDeleted, + VectorStoreFilesPage as VectorStoreFilesPage, + type FileCreateParams as FileCreateParams, + type FileListParams as FileListParams, + }; } diff --git a/src/resources/beta/vector-stores/index.ts b/src/resources/beta/vector-stores/index.ts index f70215f8f..89fc0cde0 100644 --- a/src/resources/beta/vector-stores/index.ts +++ b/src/resources/beta/vector-stores/index.ts @@ -1,32 +1,32 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. export { - AutoFileChunkingStrategyParam, - FileChunkingStrategy, - FileChunkingStrategyParam, - OtherFileChunkingStrategyObject, - StaticFileChunkingStrategy, - StaticFileChunkingStrategyObject, - StaticFileChunkingStrategyParam, - VectorStore, - VectorStoreDeleted, - VectorStoreCreateParams, - VectorStoreUpdateParams, - VectorStoreListParams, - VectorStoresPage, - VectorStores, -} from './vector-stores'; + FileBatches, + type VectorStoreFileBatch, + type FileBatchCreateParams, + type FileBatchListFilesParams, +} from './file-batches'; export { - VectorStoreFile, - VectorStoreFileDeleted, - FileCreateParams, - FileListParams, VectorStoreFilesPage, Files, + type VectorStoreFile, + type VectorStoreFileDeleted, + type FileCreateParams, + type FileListParams, } from './files'; export { - VectorStoreFileBatch, - FileBatchCreateParams, - FileBatchListFilesParams, - FileBatches, -} from './file-batches'; + VectorStoresPage, + VectorStores, + type AutoFileChunkingStrategyParam, + type FileChunkingStrategy, + type FileChunkingStrategyParam, + type OtherFileChunkingStrategyObject, + type StaticFileChunkingStrategy, + type StaticFileChunkingStrategyObject, + type StaticFileChunkingStrategyParam, + type VectorStore, + type VectorStoreDeleted, + type VectorStoreCreateParams, + type VectorStoreUpdateParams, + type VectorStoreListParams, +} from './vector-stores'; diff --git a/src/resources/beta/vector-stores/vector-stores.ts b/src/resources/beta/vector-stores/vector-stores.ts index 3c9aa707d..4d1e83dce 100644 --- a/src/resources/beta/vector-stores/vector-stores.ts +++ b/src/resources/beta/vector-stores/vector-stores.ts @@ -3,9 +3,22 @@ import { APIResource } from '../../../resource'; import { isRequestOptions } from '../../../core'; import * as Core from '../../../core'; -import * as VectorStoresAPI from './vector-stores'; import * as FileBatchesAPI from './file-batches'; +import { + FileBatchCreateParams, + FileBatchListFilesParams, + FileBatches, + VectorStoreFileBatch, +} from './file-batches'; import * as FilesAPI from './files'; +import { + FileCreateParams, + FileListParams, + Files, + VectorStoreFile, + VectorStoreFileDeleted, + VectorStoreFilesPage, +} from './files'; import { CursorPage, type CursorPageParams } from '../../../pagination'; export class VectorStores extends APIResource { @@ -371,28 +384,41 @@ export interface VectorStoreListParams extends CursorPageParams { order?: 'asc' | 'desc'; } -export namespace VectorStores { - export import AutoFileChunkingStrategyParam = VectorStoresAPI.AutoFileChunkingStrategyParam; - export import FileChunkingStrategy = VectorStoresAPI.FileChunkingStrategy; - export import FileChunkingStrategyParam = VectorStoresAPI.FileChunkingStrategyParam; - export import OtherFileChunkingStrategyObject = VectorStoresAPI.OtherFileChunkingStrategyObject; - export import StaticFileChunkingStrategy = VectorStoresAPI.StaticFileChunkingStrategy; - export import StaticFileChunkingStrategyObject = VectorStoresAPI.StaticFileChunkingStrategyObject; - export import StaticFileChunkingStrategyParam = VectorStoresAPI.StaticFileChunkingStrategyParam; - export import VectorStore = VectorStoresAPI.VectorStore; - export import VectorStoreDeleted = VectorStoresAPI.VectorStoreDeleted; - export import VectorStoresPage = VectorStoresAPI.VectorStoresPage; - export import VectorStoreCreateParams = VectorStoresAPI.VectorStoreCreateParams; - export import VectorStoreUpdateParams = VectorStoresAPI.VectorStoreUpdateParams; - export import VectorStoreListParams = VectorStoresAPI.VectorStoreListParams; - export import Files = FilesAPI.Files; - export import VectorStoreFile = FilesAPI.VectorStoreFile; - export import VectorStoreFileDeleted = FilesAPI.VectorStoreFileDeleted; - export import VectorStoreFilesPage = FilesAPI.VectorStoreFilesPage; - export import FileCreateParams = FilesAPI.FileCreateParams; - export import FileListParams = FilesAPI.FileListParams; - export import FileBatches = FileBatchesAPI.FileBatches; - export import VectorStoreFileBatch = FileBatchesAPI.VectorStoreFileBatch; - export import FileBatchCreateParams = FileBatchesAPI.FileBatchCreateParams; - export import FileBatchListFilesParams = FileBatchesAPI.FileBatchListFilesParams; +VectorStores.VectorStoresPage = VectorStoresPage; +VectorStores.Files = Files; +VectorStores.VectorStoreFilesPage = VectorStoreFilesPage; +VectorStores.FileBatches = FileBatches; + +export declare namespace VectorStores { + export { + type AutoFileChunkingStrategyParam as AutoFileChunkingStrategyParam, + type FileChunkingStrategy as FileChunkingStrategy, + type FileChunkingStrategyParam as FileChunkingStrategyParam, + type OtherFileChunkingStrategyObject as OtherFileChunkingStrategyObject, + type StaticFileChunkingStrategy as StaticFileChunkingStrategy, + type StaticFileChunkingStrategyObject as StaticFileChunkingStrategyObject, + type StaticFileChunkingStrategyParam as StaticFileChunkingStrategyParam, + type VectorStore as VectorStore, + type VectorStoreDeleted as VectorStoreDeleted, + VectorStoresPage as VectorStoresPage, + type VectorStoreCreateParams as VectorStoreCreateParams, + type VectorStoreUpdateParams as VectorStoreUpdateParams, + type VectorStoreListParams as VectorStoreListParams, + }; + + export { + Files as Files, + type VectorStoreFile as VectorStoreFile, + type VectorStoreFileDeleted as VectorStoreFileDeleted, + VectorStoreFilesPage as VectorStoreFilesPage, + type FileCreateParams as FileCreateParams, + type FileListParams as FileListParams, + }; + + export { + FileBatches as FileBatches, + type VectorStoreFileBatch as VectorStoreFileBatch, + type FileBatchCreateParams as FileBatchCreateParams, + type FileBatchListFilesParams as FileBatchListFilesParams, + }; } diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 43ef5662c..afe4dd08e 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -1,8 +1,42 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from '../../resource'; -import * as ChatAPI from './chat'; import * as CompletionsAPI from './completions'; +import { + ChatCompletion, + ChatCompletionAssistantMessageParam, + ChatCompletionAudio, + ChatCompletionAudioParam, + ChatCompletionChunk, + ChatCompletionContentPart, + ChatCompletionContentPartImage, + ChatCompletionContentPartInputAudio, + ChatCompletionContentPartRefusal, + ChatCompletionContentPartText, + ChatCompletionCreateParams, + ChatCompletionCreateParamsNonStreaming, + ChatCompletionCreateParamsStreaming, + ChatCompletionFunctionCallOption, + ChatCompletionFunctionMessageParam, + ChatCompletionMessage, + ChatCompletionMessageParam, + ChatCompletionMessageToolCall, + ChatCompletionModality, + ChatCompletionNamedToolChoice, + ChatCompletionRole, + ChatCompletionStreamOptions, + ChatCompletionSystemMessageParam, + ChatCompletionTokenLogprob, + ChatCompletionTool, + ChatCompletionToolChoiceOption, + ChatCompletionToolMessageParam, + ChatCompletionUserMessageParam, + CompletionCreateParams, + CompletionCreateParamsNonStreaming, + CompletionCreateParamsStreaming, + Completions, + CreateChatCompletionRequestMessage, +} from './completions'; export class Chat extends APIResource { completions: CompletionsAPI.Completions = new CompletionsAPI.Completions(this._client); @@ -43,42 +77,44 @@ export type ChatModel = | 'gpt-3.5-turbo-0125' | 'gpt-3.5-turbo-16k-0613'; -export namespace Chat { - export import ChatModel = ChatAPI.ChatModel; - export import Completions = CompletionsAPI.Completions; - export import ChatCompletion = CompletionsAPI.ChatCompletion; - export import ChatCompletionAssistantMessageParam = CompletionsAPI.ChatCompletionAssistantMessageParam; - export import ChatCompletionAudio = CompletionsAPI.ChatCompletionAudio; - export import ChatCompletionAudioParam = CompletionsAPI.ChatCompletionAudioParam; - export import ChatCompletionChunk = CompletionsAPI.ChatCompletionChunk; - export import ChatCompletionContentPart = CompletionsAPI.ChatCompletionContentPart; - export import ChatCompletionContentPartImage = CompletionsAPI.ChatCompletionContentPartImage; - export import ChatCompletionContentPartInputAudio = CompletionsAPI.ChatCompletionContentPartInputAudio; - export import ChatCompletionContentPartRefusal = CompletionsAPI.ChatCompletionContentPartRefusal; - export import ChatCompletionContentPartText = CompletionsAPI.ChatCompletionContentPartText; - export import ChatCompletionFunctionCallOption = CompletionsAPI.ChatCompletionFunctionCallOption; - export import ChatCompletionFunctionMessageParam = CompletionsAPI.ChatCompletionFunctionMessageParam; - export import ChatCompletionMessage = CompletionsAPI.ChatCompletionMessage; - export import ChatCompletionMessageParam = CompletionsAPI.ChatCompletionMessageParam; - export import ChatCompletionMessageToolCall = CompletionsAPI.ChatCompletionMessageToolCall; - export import ChatCompletionModality = CompletionsAPI.ChatCompletionModality; - export import ChatCompletionNamedToolChoice = CompletionsAPI.ChatCompletionNamedToolChoice; - export import ChatCompletionRole = CompletionsAPI.ChatCompletionRole; - export import ChatCompletionStreamOptions = CompletionsAPI.ChatCompletionStreamOptions; - export import ChatCompletionSystemMessageParam = CompletionsAPI.ChatCompletionSystemMessageParam; - export import ChatCompletionTokenLogprob = CompletionsAPI.ChatCompletionTokenLogprob; - export import ChatCompletionTool = CompletionsAPI.ChatCompletionTool; - export import ChatCompletionToolChoiceOption = CompletionsAPI.ChatCompletionToolChoiceOption; - export import ChatCompletionToolMessageParam = CompletionsAPI.ChatCompletionToolMessageParam; - export import ChatCompletionUserMessageParam = CompletionsAPI.ChatCompletionUserMessageParam; - /** - * @deprecated ChatCompletionMessageParam should be used instead - */ - export import CreateChatCompletionRequestMessage = CompletionsAPI.CreateChatCompletionRequestMessage; - export import ChatCompletionCreateParams = CompletionsAPI.ChatCompletionCreateParams; - export import CompletionCreateParams = CompletionsAPI.CompletionCreateParams; - export import ChatCompletionCreateParamsNonStreaming = CompletionsAPI.ChatCompletionCreateParamsNonStreaming; - export import CompletionCreateParamsNonStreaming = CompletionsAPI.CompletionCreateParamsNonStreaming; - export import ChatCompletionCreateParamsStreaming = CompletionsAPI.ChatCompletionCreateParamsStreaming; - export import CompletionCreateParamsStreaming = CompletionsAPI.CompletionCreateParamsStreaming; +Chat.Completions = Completions; + +export declare namespace Chat { + export { type ChatModel as ChatModel }; + + export { + Completions as Completions, + type ChatCompletion as ChatCompletion, + type ChatCompletionAssistantMessageParam as ChatCompletionAssistantMessageParam, + type ChatCompletionAudio as ChatCompletionAudio, + type ChatCompletionAudioParam as ChatCompletionAudioParam, + type ChatCompletionChunk as ChatCompletionChunk, + type ChatCompletionContentPart as ChatCompletionContentPart, + type ChatCompletionContentPartImage as ChatCompletionContentPartImage, + type ChatCompletionContentPartInputAudio as ChatCompletionContentPartInputAudio, + type ChatCompletionContentPartRefusal as ChatCompletionContentPartRefusal, + type ChatCompletionContentPartText as ChatCompletionContentPartText, + type ChatCompletionFunctionCallOption as ChatCompletionFunctionCallOption, + type ChatCompletionFunctionMessageParam as ChatCompletionFunctionMessageParam, + type ChatCompletionMessage as ChatCompletionMessage, + type ChatCompletionMessageParam as ChatCompletionMessageParam, + type ChatCompletionMessageToolCall as ChatCompletionMessageToolCall, + type ChatCompletionModality as ChatCompletionModality, + type ChatCompletionNamedToolChoice as ChatCompletionNamedToolChoice, + type ChatCompletionRole as ChatCompletionRole, + type ChatCompletionStreamOptions as ChatCompletionStreamOptions, + type ChatCompletionSystemMessageParam as ChatCompletionSystemMessageParam, + type ChatCompletionTokenLogprob as ChatCompletionTokenLogprob, + type ChatCompletionTool as ChatCompletionTool, + type ChatCompletionToolChoiceOption as ChatCompletionToolChoiceOption, + type ChatCompletionToolMessageParam as ChatCompletionToolMessageParam, + type ChatCompletionUserMessageParam as ChatCompletionUserMessageParam, + type CreateChatCompletionRequestMessage as CreateChatCompletionRequestMessage, + type ChatCompletionCreateParams as ChatCompletionCreateParams, + type CompletionCreateParams as CompletionCreateParams, + type ChatCompletionCreateParamsNonStreaming as ChatCompletionCreateParamsNonStreaming, + type CompletionCreateParamsNonStreaming as CompletionCreateParamsNonStreaming, + type ChatCompletionCreateParamsStreaming as ChatCompletionCreateParamsStreaming, + type CompletionCreateParamsStreaming as CompletionCreateParamsStreaming, + }; } diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index d439e9a25..430e52bb2 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -1185,40 +1185,39 @@ export interface ChatCompletionCreateParamsStreaming extends ChatCompletionCreat */ export type CompletionCreateParamsStreaming = ChatCompletionCreateParamsStreaming; -export namespace Completions { - export import ChatCompletion = ChatCompletionsAPI.ChatCompletion; - export import ChatCompletionAssistantMessageParam = ChatCompletionsAPI.ChatCompletionAssistantMessageParam; - export import ChatCompletionAudio = ChatCompletionsAPI.ChatCompletionAudio; - export import ChatCompletionAudioParam = ChatCompletionsAPI.ChatCompletionAudioParam; - export import ChatCompletionChunk = ChatCompletionsAPI.ChatCompletionChunk; - export import ChatCompletionContentPart = ChatCompletionsAPI.ChatCompletionContentPart; - export import ChatCompletionContentPartImage = ChatCompletionsAPI.ChatCompletionContentPartImage; - export import ChatCompletionContentPartInputAudio = ChatCompletionsAPI.ChatCompletionContentPartInputAudio; - export import ChatCompletionContentPartRefusal = ChatCompletionsAPI.ChatCompletionContentPartRefusal; - export import ChatCompletionContentPartText = ChatCompletionsAPI.ChatCompletionContentPartText; - export import ChatCompletionFunctionCallOption = ChatCompletionsAPI.ChatCompletionFunctionCallOption; - export import ChatCompletionFunctionMessageParam = ChatCompletionsAPI.ChatCompletionFunctionMessageParam; - export import ChatCompletionMessage = ChatCompletionsAPI.ChatCompletionMessage; - export import ChatCompletionMessageParam = ChatCompletionsAPI.ChatCompletionMessageParam; - export import ChatCompletionMessageToolCall = ChatCompletionsAPI.ChatCompletionMessageToolCall; - export import ChatCompletionModality = ChatCompletionsAPI.ChatCompletionModality; - export import ChatCompletionNamedToolChoice = ChatCompletionsAPI.ChatCompletionNamedToolChoice; - export import ChatCompletionRole = ChatCompletionsAPI.ChatCompletionRole; - export import ChatCompletionStreamOptions = ChatCompletionsAPI.ChatCompletionStreamOptions; - export import ChatCompletionSystemMessageParam = ChatCompletionsAPI.ChatCompletionSystemMessageParam; - export import ChatCompletionTokenLogprob = ChatCompletionsAPI.ChatCompletionTokenLogprob; - export import ChatCompletionTool = ChatCompletionsAPI.ChatCompletionTool; - export import ChatCompletionToolChoiceOption = ChatCompletionsAPI.ChatCompletionToolChoiceOption; - export import ChatCompletionToolMessageParam = ChatCompletionsAPI.ChatCompletionToolMessageParam; - export import ChatCompletionUserMessageParam = ChatCompletionsAPI.ChatCompletionUserMessageParam; - /** - * @deprecated ChatCompletionMessageParam should be used instead - */ - export import CreateChatCompletionRequestMessage = ChatCompletionsAPI.CreateChatCompletionRequestMessage; - export import ChatCompletionCreateParams = ChatCompletionsAPI.ChatCompletionCreateParams; - export import CompletionCreateParams = ChatCompletionsAPI.CompletionCreateParams; - export import ChatCompletionCreateParamsNonStreaming = ChatCompletionsAPI.ChatCompletionCreateParamsNonStreaming; - export import CompletionCreateParamsNonStreaming = ChatCompletionsAPI.CompletionCreateParamsNonStreaming; - export import ChatCompletionCreateParamsStreaming = ChatCompletionsAPI.ChatCompletionCreateParamsStreaming; - export import CompletionCreateParamsStreaming = ChatCompletionsAPI.CompletionCreateParamsStreaming; +export declare namespace Completions { + export { + type ChatCompletion as ChatCompletion, + type ChatCompletionAssistantMessageParam as ChatCompletionAssistantMessageParam, + type ChatCompletionAudio as ChatCompletionAudio, + type ChatCompletionAudioParam as ChatCompletionAudioParam, + type ChatCompletionChunk as ChatCompletionChunk, + type ChatCompletionContentPart as ChatCompletionContentPart, + type ChatCompletionContentPartImage as ChatCompletionContentPartImage, + type ChatCompletionContentPartInputAudio as ChatCompletionContentPartInputAudio, + type ChatCompletionContentPartRefusal as ChatCompletionContentPartRefusal, + type ChatCompletionContentPartText as ChatCompletionContentPartText, + type ChatCompletionFunctionCallOption as ChatCompletionFunctionCallOption, + type ChatCompletionFunctionMessageParam as ChatCompletionFunctionMessageParam, + type ChatCompletionMessage as ChatCompletionMessage, + type ChatCompletionMessageParam as ChatCompletionMessageParam, + type ChatCompletionMessageToolCall as ChatCompletionMessageToolCall, + type ChatCompletionModality as ChatCompletionModality, + type ChatCompletionNamedToolChoice as ChatCompletionNamedToolChoice, + type ChatCompletionRole as ChatCompletionRole, + type ChatCompletionStreamOptions as ChatCompletionStreamOptions, + type ChatCompletionSystemMessageParam as ChatCompletionSystemMessageParam, + type ChatCompletionTokenLogprob as ChatCompletionTokenLogprob, + type ChatCompletionTool as ChatCompletionTool, + type ChatCompletionToolChoiceOption as ChatCompletionToolChoiceOption, + type ChatCompletionToolMessageParam as ChatCompletionToolMessageParam, + type ChatCompletionUserMessageParam as ChatCompletionUserMessageParam, + type CreateChatCompletionRequestMessage as CreateChatCompletionRequestMessage, + type ChatCompletionCreateParams as ChatCompletionCreateParams, + type CompletionCreateParams as CompletionCreateParams, + type ChatCompletionCreateParamsNonStreaming as ChatCompletionCreateParamsNonStreaming, + type CompletionCreateParamsNonStreaming as CompletionCreateParamsNonStreaming, + type ChatCompletionCreateParamsStreaming as ChatCompletionCreateParamsStreaming, + type CompletionCreateParamsStreaming as CompletionCreateParamsStreaming, + }; } diff --git a/src/resources/chat/index.ts b/src/resources/chat/index.ts index 22803e819..d9366bf74 100644 --- a/src/resources/chat/index.ts +++ b/src/resources/chat/index.ts @@ -1,38 +1,38 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. +export { Chat, type ChatModel } from './chat'; export { - ChatCompletion, - ChatCompletionAssistantMessageParam, - ChatCompletionAudio, - ChatCompletionAudioParam, - ChatCompletionChunk, - ChatCompletionContentPart, - ChatCompletionContentPartImage, - ChatCompletionContentPartInputAudio, - ChatCompletionContentPartRefusal, - ChatCompletionContentPartText, - ChatCompletionFunctionCallOption, - ChatCompletionFunctionMessageParam, - ChatCompletionMessage, - ChatCompletionMessageParam, - ChatCompletionMessageToolCall, - ChatCompletionModality, - ChatCompletionNamedToolChoice, - ChatCompletionRole, - ChatCompletionStreamOptions, - ChatCompletionSystemMessageParam, - ChatCompletionTokenLogprob, - ChatCompletionTool, - ChatCompletionToolChoiceOption, - ChatCompletionToolMessageParam, - ChatCompletionUserMessageParam, - CreateChatCompletionRequestMessage, - ChatCompletionCreateParams, - CompletionCreateParams, - ChatCompletionCreateParamsNonStreaming, - CompletionCreateParamsNonStreaming, - ChatCompletionCreateParamsStreaming, - CompletionCreateParamsStreaming, Completions, + type ChatCompletion, + type ChatCompletionAssistantMessageParam, + type ChatCompletionAudio, + type ChatCompletionAudioParam, + type ChatCompletionChunk, + type ChatCompletionContentPart, + type ChatCompletionContentPartImage, + type ChatCompletionContentPartInputAudio, + type ChatCompletionContentPartRefusal, + type ChatCompletionContentPartText, + type ChatCompletionFunctionCallOption, + type ChatCompletionFunctionMessageParam, + type ChatCompletionMessage, + type ChatCompletionMessageParam, + type ChatCompletionMessageToolCall, + type ChatCompletionModality, + type ChatCompletionNamedToolChoice, + type ChatCompletionRole, + type ChatCompletionStreamOptions, + type ChatCompletionSystemMessageParam, + type ChatCompletionTokenLogprob, + type ChatCompletionTool, + type ChatCompletionToolChoiceOption, + type ChatCompletionToolMessageParam, + type ChatCompletionUserMessageParam, + type CreateChatCompletionRequestMessage, + type ChatCompletionCreateParams, + type CompletionCreateParams, + type ChatCompletionCreateParamsNonStreaming, + type CompletionCreateParamsNonStreaming, + type ChatCompletionCreateParamsStreaming, + type CompletionCreateParamsStreaming, } from './completions'; -export { ChatModel, Chat } from './chat'; diff --git a/src/resources/completions.ts b/src/resources/completions.ts index 7acd5d13f..94c4581a1 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -361,11 +361,13 @@ export interface CompletionCreateParamsStreaming extends CompletionCreateParamsB stream: true; } -export namespace Completions { - export import Completion = CompletionsAPI.Completion; - export import CompletionChoice = CompletionsAPI.CompletionChoice; - export import CompletionUsage = CompletionsAPI.CompletionUsage; - export import CompletionCreateParams = CompletionsAPI.CompletionCreateParams; - export import CompletionCreateParamsNonStreaming = CompletionsAPI.CompletionCreateParamsNonStreaming; - export import CompletionCreateParamsStreaming = CompletionsAPI.CompletionCreateParamsStreaming; +export declare namespace Completions { + export { + type Completion as Completion, + type CompletionChoice as CompletionChoice, + type CompletionUsage as CompletionUsage, + type CompletionCreateParams as CompletionCreateParams, + type CompletionCreateParamsNonStreaming as CompletionCreateParamsNonStreaming, + type CompletionCreateParamsStreaming as CompletionCreateParamsStreaming, + }; } diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index 6d8e670a7..e2b35f530 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -2,7 +2,6 @@ import { APIResource } from '../resource'; import * as Core from '../core'; -import * as EmbeddingsAPI from './embeddings'; export class Embeddings extends APIResource { /** @@ -120,9 +119,11 @@ export interface EmbeddingCreateParams { user?: string; } -export namespace Embeddings { - export import CreateEmbeddingResponse = EmbeddingsAPI.CreateEmbeddingResponse; - export import Embedding = EmbeddingsAPI.Embedding; - export import EmbeddingModel = EmbeddingsAPI.EmbeddingModel; - export import EmbeddingCreateParams = EmbeddingsAPI.EmbeddingCreateParams; +export declare namespace Embeddings { + export { + type CreateEmbeddingResponse as CreateEmbeddingResponse, + type Embedding as Embedding, + type EmbeddingModel as EmbeddingModel, + type EmbeddingCreateParams as EmbeddingCreateParams, + }; } diff --git a/src/resources/files.ts b/src/resources/files.ts index ba01a9041..dec815a28 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -5,7 +5,6 @@ import { isRequestOptions } from '../core'; import { sleep } from '../core'; import { APIConnectionTimeoutError } from '../error'; import * as Core from '../core'; -import * as FilesAPI from './files'; import { Page } from '../pagination'; import { type Response } from '../_shims/index'; @@ -221,12 +220,16 @@ export interface FileListParams { purpose?: string; } -export namespace Files { - export import FileContent = FilesAPI.FileContent; - export import FileDeleted = FilesAPI.FileDeleted; - export import FileObject = FilesAPI.FileObject; - export import FilePurpose = FilesAPI.FilePurpose; - export import FileObjectsPage = FilesAPI.FileObjectsPage; - export import FileCreateParams = FilesAPI.FileCreateParams; - export import FileListParams = FilesAPI.FileListParams; +Files.FileObjectsPage = FileObjectsPage; + +export declare namespace Files { + export { + type FileContent as FileContent, + type FileDeleted as FileDeleted, + type FileObject as FileObject, + type FilePurpose as FilePurpose, + FileObjectsPage as FileObjectsPage, + type FileCreateParams as FileCreateParams, + type FileListParams as FileListParams, + }; } diff --git a/src/resources/fine-tuning/fine-tuning.ts b/src/resources/fine-tuning/fine-tuning.ts index b1ba34ecf..df013c8ec 100644 --- a/src/resources/fine-tuning/fine-tuning.ts +++ b/src/resources/fine-tuning/fine-tuning.ts @@ -2,21 +2,40 @@ import { APIResource } from '../../resource'; import * as JobsAPI from './jobs/jobs'; +import { + FineTuningJob, + FineTuningJobEvent, + FineTuningJobEventsPage, + FineTuningJobIntegration, + FineTuningJobWandbIntegration, + FineTuningJobWandbIntegrationObject, + FineTuningJobsPage, + JobCreateParams, + JobListEventsParams, + JobListParams, + Jobs, +} from './jobs/jobs'; export class FineTuning extends APIResource { jobs: JobsAPI.Jobs = new JobsAPI.Jobs(this._client); } -export namespace FineTuning { - export import Jobs = JobsAPI.Jobs; - export import FineTuningJob = JobsAPI.FineTuningJob; - export import FineTuningJobEvent = JobsAPI.FineTuningJobEvent; - export import FineTuningJobIntegration = JobsAPI.FineTuningJobIntegration; - export import FineTuningJobWandbIntegration = JobsAPI.FineTuningJobWandbIntegration; - export import FineTuningJobWandbIntegrationObject = JobsAPI.FineTuningJobWandbIntegrationObject; - export import FineTuningJobsPage = JobsAPI.FineTuningJobsPage; - export import FineTuningJobEventsPage = JobsAPI.FineTuningJobEventsPage; - export import JobCreateParams = JobsAPI.JobCreateParams; - export import JobListParams = JobsAPI.JobListParams; - export import JobListEventsParams = JobsAPI.JobListEventsParams; +FineTuning.Jobs = Jobs; +FineTuning.FineTuningJobsPage = FineTuningJobsPage; +FineTuning.FineTuningJobEventsPage = FineTuningJobEventsPage; + +export declare namespace FineTuning { + export { + Jobs as Jobs, + type FineTuningJob as FineTuningJob, + type FineTuningJobEvent as FineTuningJobEvent, + type FineTuningJobIntegration as FineTuningJobIntegration, + type FineTuningJobWandbIntegration as FineTuningJobWandbIntegration, + type FineTuningJobWandbIntegrationObject as FineTuningJobWandbIntegrationObject, + FineTuningJobsPage as FineTuningJobsPage, + FineTuningJobEventsPage as FineTuningJobEventsPage, + type JobCreateParams as JobCreateParams, + type JobListParams as JobListParams, + type JobListEventsParams as JobListEventsParams, + }; } diff --git a/src/resources/fine-tuning/index.ts b/src/resources/fine-tuning/index.ts index 1d8739a0a..4954406b8 100644 --- a/src/resources/fine-tuning/index.ts +++ b/src/resources/fine-tuning/index.ts @@ -2,15 +2,15 @@ export { FineTuning } from './fine-tuning'; export { - FineTuningJob, - FineTuningJobEvent, - FineTuningJobIntegration, - FineTuningJobWandbIntegration, - FineTuningJobWandbIntegrationObject, - JobCreateParams, - JobListParams, - JobListEventsParams, FineTuningJobsPage, FineTuningJobEventsPage, Jobs, + type FineTuningJob, + type FineTuningJobEvent, + type FineTuningJobIntegration, + type FineTuningJobWandbIntegration, + type FineTuningJobWandbIntegrationObject, + type JobCreateParams, + type JobListParams, + type JobListEventsParams, } from './jobs/index'; diff --git a/src/resources/fine-tuning/jobs/checkpoints.ts b/src/resources/fine-tuning/jobs/checkpoints.ts index 02896b26d..b3018ac5f 100644 --- a/src/resources/fine-tuning/jobs/checkpoints.ts +++ b/src/resources/fine-tuning/jobs/checkpoints.ts @@ -3,7 +3,6 @@ import { APIResource } from '../../../resource'; import { isRequestOptions } from '../../../core'; import * as Core from '../../../core'; -import * as CheckpointsAPI from './checkpoints'; import { CursorPage, type CursorPageParams } from '../../../pagination'; export class Checkpoints extends APIResource { @@ -101,8 +100,12 @@ export namespace FineTuningJobCheckpoint { export interface CheckpointListParams extends CursorPageParams {} -export namespace Checkpoints { - export import FineTuningJobCheckpoint = CheckpointsAPI.FineTuningJobCheckpoint; - export import FineTuningJobCheckpointsPage = CheckpointsAPI.FineTuningJobCheckpointsPage; - export import CheckpointListParams = CheckpointsAPI.CheckpointListParams; +Checkpoints.FineTuningJobCheckpointsPage = FineTuningJobCheckpointsPage; + +export declare namespace Checkpoints { + export { + type FineTuningJobCheckpoint as FineTuningJobCheckpoint, + FineTuningJobCheckpointsPage as FineTuningJobCheckpointsPage, + type CheckpointListParams as CheckpointListParams, + }; } diff --git a/src/resources/fine-tuning/jobs/index.ts b/src/resources/fine-tuning/jobs/index.ts index 275c776e9..7a05b48b2 100644 --- a/src/resources/fine-tuning/jobs/index.ts +++ b/src/resources/fine-tuning/jobs/index.ts @@ -1,21 +1,21 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. export { - FineTuningJob, - FineTuningJobEvent, - FineTuningJobIntegration, - FineTuningJobWandbIntegration, - FineTuningJobWandbIntegrationObject, - JobCreateParams, - JobListParams, - JobListEventsParams, + FineTuningJobCheckpointsPage, + Checkpoints, + type FineTuningJobCheckpoint, + type CheckpointListParams, +} from './checkpoints'; +export { FineTuningJobsPage, FineTuningJobEventsPage, Jobs, + type FineTuningJob, + type FineTuningJobEvent, + type FineTuningJobIntegration, + type FineTuningJobWandbIntegration, + type FineTuningJobWandbIntegrationObject, + type JobCreateParams, + type JobListParams, + type JobListEventsParams, } from './jobs'; -export { - FineTuningJobCheckpoint, - CheckpointListParams, - FineTuningJobCheckpointsPage, - Checkpoints, -} from './checkpoints'; diff --git a/src/resources/fine-tuning/jobs/jobs.ts b/src/resources/fine-tuning/jobs/jobs.ts index 54b5c4e6a..275fad869 100644 --- a/src/resources/fine-tuning/jobs/jobs.ts +++ b/src/resources/fine-tuning/jobs/jobs.ts @@ -3,8 +3,13 @@ import { APIResource } from '../../../resource'; import { isRequestOptions } from '../../../core'; import * as Core from '../../../core'; -import * as JobsAPI from './jobs'; import * as CheckpointsAPI from './checkpoints'; +import { + CheckpointListParams, + Checkpoints, + FineTuningJobCheckpoint, + FineTuningJobCheckpointsPage, +} from './checkpoints'; import { CursorPage, type CursorPageParams } from '../../../pagination'; export class Jobs extends APIResource { @@ -445,19 +450,29 @@ export interface JobListParams extends CursorPageParams {} export interface JobListEventsParams extends CursorPageParams {} -export namespace Jobs { - export import FineTuningJob = JobsAPI.FineTuningJob; - export import FineTuningJobEvent = JobsAPI.FineTuningJobEvent; - export import FineTuningJobIntegration = JobsAPI.FineTuningJobIntegration; - export import FineTuningJobWandbIntegration = JobsAPI.FineTuningJobWandbIntegration; - export import FineTuningJobWandbIntegrationObject = JobsAPI.FineTuningJobWandbIntegrationObject; - export import FineTuningJobsPage = JobsAPI.FineTuningJobsPage; - export import FineTuningJobEventsPage = JobsAPI.FineTuningJobEventsPage; - export import JobCreateParams = JobsAPI.JobCreateParams; - export import JobListParams = JobsAPI.JobListParams; - export import JobListEventsParams = JobsAPI.JobListEventsParams; - export import Checkpoints = CheckpointsAPI.Checkpoints; - export import FineTuningJobCheckpoint = CheckpointsAPI.FineTuningJobCheckpoint; - export import FineTuningJobCheckpointsPage = CheckpointsAPI.FineTuningJobCheckpointsPage; - export import CheckpointListParams = CheckpointsAPI.CheckpointListParams; +Jobs.FineTuningJobsPage = FineTuningJobsPage; +Jobs.FineTuningJobEventsPage = FineTuningJobEventsPage; +Jobs.Checkpoints = Checkpoints; +Jobs.FineTuningJobCheckpointsPage = FineTuningJobCheckpointsPage; + +export declare namespace Jobs { + export { + type FineTuningJob as FineTuningJob, + type FineTuningJobEvent as FineTuningJobEvent, + type FineTuningJobIntegration as FineTuningJobIntegration, + type FineTuningJobWandbIntegration as FineTuningJobWandbIntegration, + type FineTuningJobWandbIntegrationObject as FineTuningJobWandbIntegrationObject, + FineTuningJobsPage as FineTuningJobsPage, + FineTuningJobEventsPage as FineTuningJobEventsPage, + type JobCreateParams as JobCreateParams, + type JobListParams as JobListParams, + type JobListEventsParams as JobListEventsParams, + }; + + export { + Checkpoints as Checkpoints, + type FineTuningJobCheckpoint as FineTuningJobCheckpoint, + FineTuningJobCheckpointsPage as FineTuningJobCheckpointsPage, + type CheckpointListParams as CheckpointListParams, + }; } diff --git a/src/resources/images.ts b/src/resources/images.ts index fdd0b8881..f4d59b941 100644 --- a/src/resources/images.ts +++ b/src/resources/images.ts @@ -2,7 +2,6 @@ import { APIResource } from '../resource'; import * as Core from '../core'; -import * as ImagesAPI from './images'; export class Images extends APIResource { /** @@ -207,11 +206,13 @@ export interface ImageGenerateParams { user?: string; } -export namespace Images { - export import Image = ImagesAPI.Image; - export import ImageModel = ImagesAPI.ImageModel; - export import ImagesResponse = ImagesAPI.ImagesResponse; - export import ImageCreateVariationParams = ImagesAPI.ImageCreateVariationParams; - export import ImageEditParams = ImagesAPI.ImageEditParams; - export import ImageGenerateParams = ImagesAPI.ImageGenerateParams; +export declare namespace Images { + export { + type Image as Image, + type ImageModel as ImageModel, + type ImagesResponse as ImagesResponse, + type ImageCreateVariationParams as ImageCreateVariationParams, + type ImageEditParams as ImageEditParams, + type ImageGenerateParams as ImageGenerateParams, + }; } diff --git a/src/resources/index.ts b/src/resources/index.ts index 15c5db77f..ad0302357 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -2,62 +2,62 @@ export * from './chat/index'; export * from './shared'; -export { AudioModel, AudioResponseFormat, Audio } from './audio/audio'; +export { Audio, type AudioModel, type AudioResponseFormat } from './audio/audio'; export { - Batch, - BatchError, - BatchRequestCounts, - BatchCreateParams, - BatchListParams, BatchesPage, Batches, + type Batch, + type BatchError, + type BatchRequestCounts, + type BatchCreateParams, + type BatchListParams, } from './batches'; export { Beta } from './beta/beta'; export { - Completion, - CompletionChoice, - CompletionUsage, - CompletionCreateParams, - CompletionCreateParamsNonStreaming, - CompletionCreateParamsStreaming, Completions, + type Completion, + type CompletionChoice, + type CompletionUsage, + type CompletionCreateParams, + type CompletionCreateParamsNonStreaming, + type CompletionCreateParamsStreaming, } from './completions'; export { - CreateEmbeddingResponse, - Embedding, - EmbeddingModel, - EmbeddingCreateParams, Embeddings, + type CreateEmbeddingResponse, + type Embedding, + type EmbeddingModel, + type EmbeddingCreateParams, } from './embeddings'; export { - FileContent, - FileDeleted, - FileObject, - FilePurpose, - FileCreateParams, - FileListParams, FileObjectsPage, Files, + type FileContent, + type FileDeleted, + type FileObject, + type FilePurpose, + type FileCreateParams, + type FileListParams, } from './files'; export { FineTuning } from './fine-tuning/fine-tuning'; export { - Image, - ImageModel, - ImagesResponse, - ImageCreateVariationParams, - ImageEditParams, - ImageGenerateParams, Images, + type Image, + type ImageModel, + type ImagesResponse, + type ImageCreateVariationParams, + type ImageEditParams, + type ImageGenerateParams, } from './images'; -export { Model, ModelDeleted, ModelsPage, Models } from './models'; +export { ModelsPage, Models, type Model, type ModelDeleted } from './models'; export { - Moderation, - ModerationImageURLInput, - ModerationModel, - ModerationMultiModalInput, - ModerationTextInput, - ModerationCreateResponse, - ModerationCreateParams, Moderations, + type Moderation, + type ModerationImageURLInput, + type ModerationModel, + type ModerationMultiModalInput, + type ModerationTextInput, + type ModerationCreateResponse, + type ModerationCreateParams, } from './moderations'; -export { Upload, UploadCreateParams, UploadCompleteParams, Uploads } from './uploads/uploads'; +export { Uploads, type Upload, type UploadCreateParams, type UploadCompleteParams } from './uploads/uploads'; diff --git a/src/resources/models.ts b/src/resources/models.ts index 178915747..6d8cd5296 100644 --- a/src/resources/models.ts +++ b/src/resources/models.ts @@ -2,7 +2,6 @@ import { APIResource } from '../resource'; import * as Core from '../core'; -import * as ModelsAPI from './models'; import { Page } from '../pagination'; export class Models extends APIResource { @@ -69,8 +68,8 @@ export interface ModelDeleted { object: string; } -export namespace Models { - export import Model = ModelsAPI.Model; - export import ModelDeleted = ModelsAPI.ModelDeleted; - export import ModelsPage = ModelsAPI.ModelsPage; +Models.ModelsPage = ModelsPage; + +export declare namespace Models { + export { type Model as Model, type ModelDeleted as ModelDeleted, ModelsPage as ModelsPage }; } diff --git a/src/resources/moderations.ts b/src/resources/moderations.ts index ba800509e..cdde12a62 100644 --- a/src/resources/moderations.ts +++ b/src/resources/moderations.ts @@ -2,7 +2,6 @@ import { APIResource } from '../resource'; import * as Core from '../core'; -import * as ModerationsAPI from './moderations'; export class Moderations extends APIResource { /** @@ -357,12 +356,14 @@ export interface ModerationCreateParams { model?: (string & {}) | ModerationModel; } -export namespace Moderations { - export import Moderation = ModerationsAPI.Moderation; - export import ModerationImageURLInput = ModerationsAPI.ModerationImageURLInput; - export import ModerationModel = ModerationsAPI.ModerationModel; - export import ModerationMultiModalInput = ModerationsAPI.ModerationMultiModalInput; - export import ModerationTextInput = ModerationsAPI.ModerationTextInput; - export import ModerationCreateResponse = ModerationsAPI.ModerationCreateResponse; - export import ModerationCreateParams = ModerationsAPI.ModerationCreateParams; +export declare namespace Moderations { + export { + type Moderation as Moderation, + type ModerationImageURLInput as ModerationImageURLInput, + type ModerationModel as ModerationModel, + type ModerationMultiModalInput as ModerationMultiModalInput, + type ModerationTextInput as ModerationTextInput, + type ModerationCreateResponse as ModerationCreateResponse, + type ModerationCreateParams as ModerationCreateParams, + }; } diff --git a/src/resources/uploads/index.ts b/src/resources/uploads/index.ts index 1a353d312..200d3567e 100644 --- a/src/resources/uploads/index.ts +++ b/src/resources/uploads/index.ts @@ -1,4 +1,4 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -export { Upload, UploadCreateParams, UploadCompleteParams, Uploads } from './uploads'; -export { UploadPart, PartCreateParams, Parts } from './parts'; +export { Parts, type UploadPart, type PartCreateParams } from './parts'; +export { Uploads, type Upload, type UploadCreateParams, type UploadCompleteParams } from './uploads'; diff --git a/src/resources/uploads/parts.ts b/src/resources/uploads/parts.ts index a4af5c606..9b54c99e6 100644 --- a/src/resources/uploads/parts.ts +++ b/src/resources/uploads/parts.ts @@ -2,7 +2,6 @@ import { APIResource } from '../../resource'; import * as Core from '../../core'; -import * as PartsAPI from './parts'; export class Parts extends APIResource { /** @@ -62,7 +61,6 @@ export interface PartCreateParams { data: Core.Uploadable; } -export namespace Parts { - export import UploadPart = PartsAPI.UploadPart; - export import PartCreateParams = PartsAPI.PartCreateParams; +export declare namespace Parts { + export { type UploadPart as UploadPart, type PartCreateParams as PartCreateParams }; } diff --git a/src/resources/uploads/uploads.ts b/src/resources/uploads/uploads.ts index 1c3ed708d..78fa3a7b5 100644 --- a/src/resources/uploads/uploads.ts +++ b/src/resources/uploads/uploads.ts @@ -2,9 +2,9 @@ import { APIResource } from '../../resource'; import * as Core from '../../core'; -import * as UploadsAPI from './uploads'; import * as FilesAPI from '../files'; import * as PartsAPI from './parts'; +import { PartCreateParams, Parts, UploadPart } from './parts'; export class Uploads extends APIResource { parts: PartsAPI.Parts = new PartsAPI.Parts(this._client); @@ -159,11 +159,14 @@ export interface UploadCompleteParams { md5?: string; } -export namespace Uploads { - export import Upload = UploadsAPI.Upload; - export import UploadCreateParams = UploadsAPI.UploadCreateParams; - export import UploadCompleteParams = UploadsAPI.UploadCompleteParams; - export import Parts = PartsAPI.Parts; - export import UploadPart = PartsAPI.UploadPart; - export import PartCreateParams = PartsAPI.PartCreateParams; +Uploads.Parts = Parts; + +export declare namespace Uploads { + export { + type Upload as Upload, + type UploadCreateParams as UploadCreateParams, + type UploadCompleteParams as UploadCompleteParams, + }; + + export { Parts as Parts, type UploadPart as UploadPart, type PartCreateParams as PartCreateParams }; } diff --git a/tsconfig.json b/tsconfig.json index 5f99085fc..09a702fca 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,7 +11,7 @@ "paths": { "openai/_shims/auto/*": ["src/_shims/auto/*-node"], "openai/*": ["src/*"], - "openai": ["src/index.ts"], + "openai": ["src/index.ts"] }, "noEmit": true, From 362d868426e5777183a52da8df432fa34f722442 Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Fri, 1 Nov 2024 16:54:12 +0000 Subject: [PATCH 592/725] feat: publish to jsr (#1165) --- .github/workflows/create-releases.yml | 22 +-- .github/workflows/publish-deno.yml | 44 ----- .github/workflows/publish-jsr.yml | 30 ++++ .gitignore | 2 +- README.md | 6 +- bin/publish-jsr | 11 ++ jsr.json | 8 + release-please-config.json | 2 +- scripts/build-deno | 41 +---- scripts/git-publish-deno.sh | 77 --------- scripts/utils/denoify.ts | 226 -------------------------- src/core.ts | 10 +- src/error.ts | 2 +- src/index.ts | 28 ++-- src/streaming.ts | 4 +- tsconfig.deno.json | 11 +- tsconfig.json | 1 + 17 files changed, 88 insertions(+), 437 deletions(-) delete mode 100644 .github/workflows/publish-deno.yml create mode 100644 .github/workflows/publish-jsr.yml create mode 100644 bin/publish-jsr create mode 100644 jsr.json delete mode 100755 scripts/git-publish-deno.sh delete mode 100644 scripts/utils/denoify.ts diff --git a/.github/workflows/create-releases.yml b/.github/workflows/create-releases.yml index d5ae1f755..3a753b31c 100644 --- a/.github/workflows/create-releases.yml +++ b/.github/workflows/create-releases.yml @@ -22,27 +22,12 @@ jobs: repo: ${{ github.event.repository.full_name }} stainless-api-key: ${{ secrets.STAINLESS_API_KEY }} - - name: Generate a token - id: generate_token - uses: actions/create-github-app-token@v1 - with: - app-id: ${{ secrets.APP_ID }} - private-key: ${{ secrets.APP_PRIVATE_KEY }} - owner: 'openai' - repositories: 'openai-node,openai-deno-build' - - name: Set up Node if: ${{ steps.release.outputs.releases_created }} uses: actions/setup-node@v3 with: node-version: '18' - - name: Set up Deno - if: ${{ steps.release.outputs.releases_created }} - uses: denoland/setup-deno@v1 - with: - deno-version: v1.35.1 - - name: Install dependencies if: ${{ steps.release.outputs.releases_created }} run: | @@ -55,11 +40,8 @@ jobs: env: NPM_TOKEN: ${{ secrets.OPENAI_NPM_TOKEN || secrets.NPM_TOKEN }} - - name: Publish to Deno + - name: Publish to JSR if: ${{ steps.release.outputs.releases_created }} run: | - bash ./scripts/git-publish-deno.sh - env: - DENO_PUSH_REMOTE_URL: https://username:${{ steps.generate_token.outputs.token }}@github.com/openai/openai-deno-build.git - DENO_PUSH_BRANCH: main + bash ./bin/publish-jsr diff --git a/.github/workflows/publish-deno.yml b/.github/workflows/publish-deno.yml deleted file mode 100644 index 894c516a0..000000000 --- a/.github/workflows/publish-deno.yml +++ /dev/null @@ -1,44 +0,0 @@ -# workflow for re-running publishing to Deno in case it fails for some reason -# you can run this workflow by navigating to https://www.github.com/openai/openai-node/actions/workflows/publish-deno.yml -name: Publish Deno -on: - workflow_dispatch: - -jobs: - publish: - name: publish - runs-on: ubuntu-latest - environment: publish - - steps: - - uses: actions/checkout@v4 - - - name: Generate a token - id: generate_token - uses: actions/create-github-app-token@v1 - with: - app-id: ${{ secrets.APP_ID }} - private-key: ${{ secrets.APP_PRIVATE_KEY }} - owner: 'openai' - repositories: 'openai-node,openai-deno-build' - - - name: Set up Node - uses: actions/setup-node@v3 - with: - node-version: '18' - - - name: Set up Deno - uses: denoland/setup-deno@v1 - with: - deno-version: v1.35.1 - - - name: Install dependencies - run: | - yarn install - - - name: Publish to Deno - run: | - bash ./scripts/git-publish-deno.sh - env: - DENO_PUSH_REMOTE_URL: https://username:${{ steps.generate_token.outputs.token }}@github.com/openai/openai-deno-build.git - DENO_PUSH_BRANCH: main diff --git a/.github/workflows/publish-jsr.yml b/.github/workflows/publish-jsr.yml new file mode 100644 index 000000000..1e46d6bfb --- /dev/null +++ b/.github/workflows/publish-jsr.yml @@ -0,0 +1,30 @@ +# workflow for re-running publishing to JSR in case it fails for some reason +# you can run this workflow by navigating to https://www.github.com/openai/openai-node/actions/workflows/publish-jsr.yml +name: Publish JSR +on: + workflow_dispatch: + +jobs: + publish: + name: publish + runs-on: ubuntu-latest + permissions: + contents: read + id-token: write + environment: publish + + steps: + - uses: actions/checkout@v4 + + - name: Set up Node + uses: actions/setup-node@v3 + with: + node-version: '18' + + - name: Install dependencies + run: | + yarn install + + - name: Publish to JSR + run: | + bash ./bin/publish-jsr diff --git a/.gitignore b/.gitignore index 0af7568e5..81c4c41ca 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,7 @@ yarn-error.log codegen.log Brewfile.lock.json dist -/deno +dist-deno /*.tgz .idea/ tmp diff --git a/README.md b/README.md index 776ea4049..caa3f9d4a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # OpenAI Node API Library -[![NPM version](https://img.shields.io/npm/v/openai.svg)](https://npmjs.org/package/openai) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/openai) +[![NPM version](https://img.shields.io/npm/v/openai.svg)](https://npmjs.org/package/openai) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/openai) [![JSR Version](https://jsr.io/badges/@openai/openai)](https://jsr.io/@openai/openai) This library provides convenient access to the OpenAI REST API from TypeScript or JavaScript. @@ -14,12 +14,12 @@ To learn how to use the OpenAI API, check out our [API Reference](https://platfo npm install openai ``` -You can import in Deno via: +You can also import from jsr: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.69.0/mod.ts'; +import OpenAI from 'jsr:@openai/openai'; ``` diff --git a/bin/publish-jsr b/bin/publish-jsr new file mode 100644 index 000000000..1b7365087 --- /dev/null +++ b/bin/publish-jsr @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +set -eux + +# Build the project +yarn build + +# Navigate to the dist directory +cd dist-deno + +npx jsr publish ${JSR_TOKEN:+"--token=$JSR_TOKEN"} diff --git a/jsr.json b/jsr.json new file mode 100644 index 000000000..fefb5b291 --- /dev/null +++ b/jsr.json @@ -0,0 +1,8 @@ +{ + "name": "@openai/openai", + "version": "4.47.1", + "exports": "./index.ts", + "publish": { + "exclude": ["!."] + } +} diff --git a/release-please-config.json b/release-please-config.json index 0a9347796..377a76e99 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -63,6 +63,6 @@ "extra-files": [ "src/version.ts", "README.md", - "scripts/build-deno" + "jsr.json" ] } diff --git a/scripts/build-deno b/scripts/build-deno index be17942df..7d542cf24 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -4,47 +4,16 @@ set -exuo pipefail cd "$(dirname "$0")/.." -rm -rf deno; mkdir deno -cp -rp src/* deno +rm -rf dist-deno; mkdir dist-deno +cp -rp src/* jsr.json dist-deno -# x-release-please-start-version -cat << EOF > deno/README.md -# OpenAI Node API Library - Deno build - -This is a build produced from https://github.com/openai/openai-node – please go there to read the source and docs, file issues, etc. - -Usage: - -\`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.69.0/mod.ts"; - -const client = new OpenAI(); -\`\`\` - -Note that in most Deno environments, you can also do this: - -\`\`\`ts -import OpenAI from "npm:openai"; -\`\`\` -EOF -# x-release-please-end - -rm deno/_shims/auto/*-node.ts -for dir in deno/_shims deno/_shims/auto; do +rm dist-deno/_shims/auto/*-node.ts +for dir in dist-deno/_shims dist-deno/_shims/auto; do rm "${dir}"/*.{d.ts,js,mjs} for file in "${dir}"/*-deno.ts; do mv -- "$file" "${file%-deno.ts}.ts" done done for file in LICENSE CHANGELOG.md; do - if [ -e "${file}" ]; then cp "${file}" deno; fi + if [ -e "${file}" ]; then cp "${file}" dist-deno; fi done -npm exec ts-node -T -- scripts/utils/denoify.ts -deno fmt deno -deno check deno/mod.ts -if [ -e deno_tests ]; then - deno test deno_tests --allow-env -fi - -# make sure that nothing crashes when we load the Deno module -(cd deno && deno run mod.ts) diff --git a/scripts/git-publish-deno.sh b/scripts/git-publish-deno.sh deleted file mode 100755 index 701db735e..000000000 --- a/scripts/git-publish-deno.sh +++ /dev/null @@ -1,77 +0,0 @@ -#!/usr/bin/env bash - -set -exuo pipefail - -cd "$(dirname "$0")/.." - -# This script pushes the contents of the `deno` directory to the `deno` branch, -# and creates a `vx.x.x-deno` tag, so that Deno users can -# import OpenAI from "https://raw.githubusercontent.com/openai/openai-node/vx.x.x-deno/mod.ts" - -# It's also possible to publish to deno.land. You can do this by: -# - Creating a separate GitHub repo -# - Add the deno.land webhook to the repo as described at https://deno.com/add_module -# - Set the following environment variables when running this script: -# - DENO_PUSH_REMOTE_URL - the remote url of the separate GitHub repo -# - DENO_PUSH_BRANCH - the branch you want to push to in that repo (probably `main`) -# - DENO_MAIN_BRANCH - the branch you want as the main branch in that repo (probably `main`, sometimes `master`) -# - DENO_PUSH_VERSION - defaults to version in package.json -# - DENO_PUSH_RELEASE_TAG - defaults to v$DENO_PUSH_VERSION-deno - -die () { - echo >&2 "$@" - exit 1 -} - -# Allow caller to set the following environment variables, but provide defaults -# if unset -# : "${FOO:=bar}" sets FOO=bar unless it's set and non-empty -# https://stackoverflow.com/questions/307503/whats-a-concise-way-to-check-that-environment-variables-are-set-in-a-unix-shell -# https://www.gnu.org/software/bash/manual/html_node/Shell-Parameter-Expansion.html - -: "${DENO_PUSH_VERSION:=$(node -p 'require("./package.json").version')}" -: "${DENO_PUSH_BRANCH:=deno}" -: "${DENO_MAIN_BRANCH:=main}" -: "${DENO_PUSH_REMOTE_URL:=$(git remote get-url origin)}" -: "${DENO_GIT_USER_NAME:="Stainless Bot"}" -: "${DENO_GIT_USER_EMAIL:="bot@stainlessapi.com"}" -if [[ $DENO_PUSH_BRANCH = "deno" ]]; then - : "${DENO_PUSH_RELEASE_TAG:="v$DENO_PUSH_VERSION-deno"}" -else - : "${DENO_PUSH_RELEASE_TAG:="v$DENO_PUSH_VERSION"}" -fi - -if [ ! -e deno ]; then ./scripts/build; fi - -# We want to commit and push a branch where everything inside the deno -# directory is at root level in the branch. - -# We can do this by temporarily creating a git repository inside deno, -# committing files to the branch, and pushing it to the remote. - -cd deno -rm -rf .git -git init -b "$DENO_MAIN_BRANCH" -git remote add origin "$DENO_PUSH_REMOTE_URL" -if git fetch origin "$DENO_PUSH_RELEASE_TAG"; then - die "Tag $DENO_PUSH_RELEASE_TAG already exists" -fi -if git fetch origin "$DENO_PUSH_BRANCH"; then - # the branch already exists on the remote; "check out" the branch without - # changing files in the working directory - git branch "$DENO_PUSH_BRANCH" -t origin/"$DENO_PUSH_BRANCH" - git symbolic-ref HEAD refs/heads/"$DENO_PUSH_BRANCH" - git reset -else - # the branch doesn't exist on the remote yet - git checkout -b "$DENO_PUSH_BRANCH" -fi - -git config user.email "$DENO_GIT_USER_EMAIL" -git config user.name "$DENO_GIT_USER_NAME" - -git add . -git commit -m "chore(deno): release $DENO_PUSH_VERSION" -git tag -a "$DENO_PUSH_RELEASE_TAG" -m "release $DENO_PUSH_VERSION" -git push --tags --set-upstream origin "$DENO_PUSH_BRANCH" -rm -rf .git diff --git a/scripts/utils/denoify.ts b/scripts/utils/denoify.ts deleted file mode 100644 index 52705802a..000000000 --- a/scripts/utils/denoify.ts +++ /dev/null @@ -1,226 +0,0 @@ -import path from 'path'; -import * as tm from 'ts-morph'; -import { name as pkgName } from '../../package.json'; -import fs from 'fs'; - -const rootDir = path.resolve(__dirname, '../..'); -const denoDir = path.join(rootDir, 'deno'); -const tsConfigFilePath = path.join(rootDir, 'tsconfig.deno.json'); - -async function denoify() { - const project = new tm.Project({ tsConfigFilePath }); - - for (const file of project.getSourceFiles()) { - if (!file.getFilePath().startsWith(denoDir + '/')) continue; - - let addedBuffer = false, - addedProcess = false; - file.forEachDescendant((node) => { - switch (node.getKind()) { - case tm.ts.SyntaxKind.ExportDeclaration: { - const decl: tm.ExportDeclaration = node as any; - if (decl.isTypeOnly()) return; - for (const named of decl.getNamedExports()) { - // Convert `export { Foo } from './foo.ts'` - // to `export { type Foo } from './foo.ts'` - // if `./foo.ts` only exports types for `Foo` - if (!named.isTypeOnly() && !hasValueDeclarations(named)) { - named.replaceWithText(`type ${named.getText()}`); - } - } - break; - } - case tm.ts.SyntaxKind.ImportEqualsDeclaration: { - const decl: tm.ImportEqualsDeclaration = node as any; - if (decl.isTypeOnly()) return; - - const ref = decl.getModuleReference(); - if (!hasValueDeclarations(ref)) { - const params = isBuiltinType(ref.getType()) ? [] : ref.getType().getTypeArguments(); - if (params.length) { - const paramsStr = params.map((p: tm.TypeParameter) => p.getText()).join(', '); - const bindingsStr = params - .map((p: tm.TypeParameter) => p.getSymbol()?.getName() || p.getText()) - .join(', '); - decl.replaceWithText( - `export type ${decl.getName()}<${paramsStr}> = ${ref.getText()}<${bindingsStr}>`, - ); - } else { - decl.replaceWithText(`export type ${decl.getName()} = ${ref.getText()}`); - } - } - break; - } - case tm.ts.SyntaxKind.Identifier: { - const id = node as tm.Identifier; - if (!addedBuffer && id.getText() === 'Buffer') { - addedBuffer = true; - file?.addVariableStatement({ - declarations: [ - { - name: 'Buffer', - type: 'any', - }, - ], - hasDeclareKeyword: true, - }); - file?.addTypeAlias({ - name: 'Buffer', - type: 'any', - }); - } - if (!addedProcess && id.getText() === 'process') { - addedProcess = true; - file?.addVariableStatement({ - declarations: [ - { - name: 'process', - type: 'any', - }, - ], - hasDeclareKeyword: true, - }); - } - } - } - }); - } - - await project.save(); - - for (const file of project.getSourceFiles()) { - if (!file.getFilePath().startsWith(denoDir + '/')) continue; - for (const decl of [...file.getImportDeclarations(), ...file.getExportDeclarations()]) { - const moduleSpecifier = decl.getModuleSpecifier(); - if (!moduleSpecifier) continue; - let specifier = moduleSpecifier.getLiteralValue().replace(/^node:/, ''); - if (!specifier || specifier.startsWith('http')) continue; - - if (nodeStdModules.has(specifier)) { - // convert node builtins to deno.land/std - specifier = `https://deno.land/std@0.177.0/node/${specifier}.ts`; - } else if (specifier.startsWith(pkgName + '/')) { - // convert self-referencing module specifiers to relative paths - specifier = file.getRelativePathAsModuleSpecifierTo(denoDir + specifier.substring(pkgName.length)); - } else if (!decl.isModuleSpecifierRelative()) { - specifier = `npm:${specifier}`; - } - - if (specifier.startsWith('./') || specifier.startsWith('../')) { - // there may be CJS directory module specifiers that implicitly resolve - // to /index.ts. Add an explicit /index.ts to the end - const sourceFile = decl.getModuleSpecifierSourceFile(); - if (sourceFile && /\/index\.ts$/.test(sourceFile.getFilePath()) && !/\/mod\.ts$/.test(specifier)) { - if (/\/index(\.ts)?$/.test(specifier)) { - specifier = specifier.replace(/\/index(\.ts)?$/, '/mod.ts'); - } else { - specifier += '/mod.ts'; - } - } - // add explicit .ts file extensions to relative module specifiers - specifier = specifier.replace(/(\.[^./]*)?$/, '.ts'); - } - moduleSpecifier.replaceWithText(JSON.stringify(specifier)); - } - } - - await project.save(); - - await Promise.all( - project.getSourceFiles().map(async (f) => { - const filePath = f.getFilePath(); - if (filePath.endsWith('index.ts')) { - const newPath = filePath.replace(/index\.ts$/, 'mod.ts'); - await fs.promises.rename(filePath, newPath); - } - }), - ); -} - -const nodeStdModules = new Set([ - 'assert', - 'assertion_error', - 'async_hooks', - 'buffer', - 'child_process', - 'cluster', - 'console', - 'constants', - 'crypto', - 'dgram', - 'diagnostics_channel', - 'dns', - 'domain', - 'events', - 'fs', - 'global', - 'http', - 'http2', - 'https', - 'inspector', - 'module_all', - 'module_esm', - 'module', - 'net', - 'os', - 'path', - 'perf_hooks', - 'process', - 'punycode', - 'querystring', - 'readline', - 'repl', - 'stream', - 'string_decoder', - 'sys', - 'timers', - 'tls', - 'tty', - 'upstream_modules', - 'url', - 'util', - 'v8', - 'vm', - 'wasi', - 'worker_threads', - 'zlib', -]); - -const typeDeclarationKinds = new Set([ - tm.ts.SyntaxKind.InterfaceDeclaration, - tm.ts.SyntaxKind.ModuleDeclaration, - tm.ts.SyntaxKind.TypeAliasDeclaration, -]); - -const builtinTypeNames = new Set(['Array', 'Set', 'Map', 'Record', 'Promise']); - -function isBuiltinType(type: tm.Type): boolean { - const symbol = type.getSymbol(); - return ( - symbol != null && - builtinTypeNames.has(symbol.getName()) && - symbol.getDeclarations().some((d) => d.getSourceFile().getFilePath().includes('node_modules/typescript')) - ); -} - -function hasValueDeclarations(nodes?: tm.Node): boolean; -function hasValueDeclarations(nodes?: tm.Node[]): boolean; -function hasValueDeclarations(nodes?: tm.Node | tm.Node[]): boolean { - if (nodes && !Array.isArray(nodes)) { - return ( - !isBuiltinType(nodes.getType()) && hasValueDeclarations(nodes.getType().getSymbol()?.getDeclarations()) - ); - } - return nodes ? - nodes.some((n) => { - const parent = n.getParent(); - return ( - !typeDeclarationKinds.has(n.getKind()) && - // sometimes the node will be the right hand side of a type alias - (!parent || !typeDeclarationKinds.has(parent.getKind())) - ); - }) - : false; -} - -denoify(); diff --git a/src/core.ts b/src/core.ts index 9d90178ab..0c8e69ffc 100644 --- a/src/core.ts +++ b/src/core.ts @@ -431,7 +431,7 @@ export abstract class APIClient { error: Object | undefined, message: string | undefined, headers: Headers | undefined, - ) { + ): APIError { return APIError.generate(status, error, message, headers); } @@ -703,9 +703,9 @@ export abstract class AbstractPage implements AsyncIterable { return await this.#client.requestAPIList(this.constructor as any, nextOptions); } - async *iterPages() { + async *iterPages(): AsyncGenerator { // eslint-disable-next-line @typescript-eslint/no-this-alias - let page: AbstractPage = this; + let page: this = this; yield page; while (page.hasNextPage()) { page = await page.getNextPage(); @@ -713,7 +713,7 @@ export abstract class AbstractPage implements AsyncIterable { } } - async *[Symbol.asyncIterator]() { + async *[Symbol.asyncIterator](): AsyncGenerator { for await (const page of this.iterPages()) { for (const item of page.getPaginatedItems()) { yield item; @@ -762,7 +762,7 @@ export class PagePromise< * console.log(item) * } */ - async *[Symbol.asyncIterator]() { + async *[Symbol.asyncIterator](): AsyncGenerator { const page = await this; for await (const item of page) { yield item; diff --git a/src/error.ts b/src/error.ts index 87eeea046..72b4f7bfd 100644 --- a/src/error.ts +++ b/src/error.ts @@ -59,7 +59,7 @@ export class APIError extends OpenAIError { errorResponse: Object | undefined, message: string | undefined, headers: Headers | undefined, - ) { + ): APIError { if (!status) { return new APIConnectionError({ message, cause: castToError(errorResponse) }); } diff --git a/src/index.ts b/src/index.ts index c1506997b..33b0848e4 100644 --- a/src/index.ts +++ b/src/index.ts @@ -305,19 +305,21 @@ export class OpenAI extends Core.APIClient { static fileFromPath = Uploads.fileFromPath; } -export const OpenAIError = Errors.OpenAIError; -export const APIError = Errors.APIError; -export const APIConnectionError = Errors.APIConnectionError; -export const APIConnectionTimeoutError = Errors.APIConnectionTimeoutError; -export const APIUserAbortError = Errors.APIUserAbortError; -export const NotFoundError = Errors.NotFoundError; -export const ConflictError = Errors.ConflictError; -export const RateLimitError = Errors.RateLimitError; -export const BadRequestError = Errors.BadRequestError; -export const AuthenticationError = Errors.AuthenticationError; -export const InternalServerError = Errors.InternalServerError; -export const PermissionDeniedError = Errors.PermissionDeniedError; -export const UnprocessableEntityError = Errors.UnprocessableEntityError; +export { + OpenAIError, + APIError, + APIConnectionError, + APIConnectionTimeoutError, + APIUserAbortError, + NotFoundError, + ConflictError, + RateLimitError, + BadRequestError, + AuthenticationError, + InternalServerError, + PermissionDeniedError, + UnprocessableEntityError, +} from './error'; export import toFile = Uploads.toFile; export import fileFromPath = Uploads.fileFromPath; diff --git a/src/streaming.ts b/src/streaming.ts index 597ee89fa..b48f3ff1d 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -22,7 +22,7 @@ export class Stream implements AsyncIterable { this.controller = controller; } - static fromSSEResponse(response: Response, controller: AbortController) { + static fromSSEResponse(response: Response, controller: AbortController): Stream { let consumed = false; async function* iterator(): AsyncIterator { @@ -90,7 +90,7 @@ export class Stream implements AsyncIterable { * Generates a Stream from a newline-separated ReadableStream * where each item is a JSON value. */ - static fromReadableStream(readableStream: ReadableStream, controller: AbortController) { + static fromReadableStream(readableStream: ReadableStream, controller: AbortController): Stream { let consumed = false; async function* iterLines(): AsyncGenerator { diff --git a/tsconfig.deno.json b/tsconfig.deno.json index d0e9473d9..849e070db 100644 --- a/tsconfig.deno.json +++ b/tsconfig.deno.json @@ -1,19 +1,14 @@ { "extends": "./tsconfig.json", - "include": ["deno"], + "include": ["dist-deno"], "exclude": [], "compilerOptions": { - "rootDir": "./deno", + "rootDir": "./dist-deno", "lib": ["es2020", "DOM"], - "paths": { - "openai/_shims/auto/*": ["deno/_shims/auto/*-deno"], - "openai/*": ["deno/*"], - "openai": ["deno/index.ts"], - }, "noEmit": true, "declaration": true, "declarationMap": true, - "outDir": "deno", + "outDir": "dist-deno", "pretty": true, "sourceMap": true } diff --git a/tsconfig.json b/tsconfig.json index 09a702fca..33767f7b1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -32,6 +32,7 @@ "noUncheckedIndexedAccess": true, "noImplicitOverride": true, "noPropertyAccessFromIndexSignature": true, + "isolatedModules": true, "skipLibCheck": true } From 1c1417ef15f0f7d718773447e338b429c7871723 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Fri, 1 Nov 2024 16:57:31 +0000 Subject: [PATCH 593/725] chore(internal): fix isolated modules exports --- src/resources/beta/chat/completions.ts | 34 ++++++++++++++------------ 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/src/resources/beta/chat/completions.ts b/src/resources/beta/chat/completions.ts index 03ea0aab5..c9360a95c 100644 --- a/src/resources/beta/chat/completions.ts +++ b/src/resources/beta/chat/completions.ts @@ -3,29 +3,14 @@ import * as Core from '../../../core'; import { APIResource } from '../../../resource'; import { ChatCompletionRunner, ChatCompletionFunctionRunnerParams } from '../../../lib/ChatCompletionRunner'; -export { ChatCompletionRunner, ChatCompletionFunctionRunnerParams } from '../../../lib/ChatCompletionRunner'; import { ChatCompletionStreamingRunner, ChatCompletionStreamingFunctionRunnerParams, } from '../../../lib/ChatCompletionStreamingRunner'; -export { - ChatCompletionStreamingRunner, - ChatCompletionStreamingFunctionRunnerParams, -} from '../../../lib/ChatCompletionStreamingRunner'; import { BaseFunctionsArgs } from '../../../lib/RunnableFunction'; -export { - RunnableFunction, - RunnableFunctions, - RunnableFunctionWithParse, - RunnableFunctionWithoutParse, - ParsingFunction, - ParsingToolFunction, -} from '../../../lib/RunnableFunction'; import { RunnerOptions } from '../../../lib/AbstractChatCompletionRunner'; import { ChatCompletionToolRunnerParams } from '../../../lib/ChatCompletionRunner'; -export { ChatCompletionToolRunnerParams } from '../../../lib/ChatCompletionRunner'; import { ChatCompletionStreamingToolRunnerParams } from '../../../lib/ChatCompletionStreamingRunner'; -export { ChatCompletionStreamingToolRunnerParams } from '../../../lib/ChatCompletionStreamingRunner'; import { ChatCompletionStream, type ChatCompletionStreamParams } from '../../../lib/ChatCompletionStream'; import { ChatCompletion, @@ -34,7 +19,26 @@ import { ChatCompletionMessageToolCall, } from '../../chat/completions'; import { ExtractParsedContentFromParams, parseChatCompletion, validateInputTools } from '../../../lib/parser'; + +export { + ChatCompletionStreamingRunner, + type ChatCompletionStreamingFunctionRunnerParams, +} from '../../../lib/ChatCompletionStreamingRunner'; +export { + type RunnableFunction, + type RunnableFunctions, + type RunnableFunctionWithParse, + type RunnableFunctionWithoutParse, + ParsingFunction, + ParsingToolFunction, +} from '../../../lib/RunnableFunction'; +export { type ChatCompletionToolRunnerParams } from '../../../lib/ChatCompletionRunner'; +export { type ChatCompletionStreamingToolRunnerParams } from '../../../lib/ChatCompletionStreamingRunner'; export { ChatCompletionStream, type ChatCompletionStreamParams } from '../../../lib/ChatCompletionStream'; +export { + ChatCompletionRunner, + type ChatCompletionFunctionRunnerParams, +} from '../../../lib/ChatCompletionRunner'; export interface ParsedFunction extends ChatCompletionMessageToolCall.Function { parsed_arguments?: unknown; From f5260ff160cec852f58ff92300d473c05b53f02e Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 16:58:17 +0000 Subject: [PATCH 594/725] release: 4.70.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 18 ++++++++++++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 21 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 65aac9575..d07bcaba7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.69.0" + ".": "4.70.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b3b52aaa3..3f355b2b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## 4.70.0 (2024-11-01) + +Full Changelog: [v4.69.0...v4.70.0](https://github.com/openai/openai-node/compare/v4.69.0...v4.70.0) + +### Features + +* publish to jsr ([#1165](https://github.com/openai/openai-node/issues/1165)) ([5aa93a7](https://github.com/openai/openai-node/commit/5aa93a7fe704ef1ad077787852db38dc29104534)) + + +### Chores + +* **internal:** fix isolated modules exports ([9cd1958](https://github.com/openai/openai-node/commit/9cd19584dcc6f4004ea1adcee917aa88a37d5f1c)) + + +### Refactors + +* use type imports for type-only imports ([#1159](https://github.com/openai/openai-node/issues/1159)) ([07bbaf6](https://github.com/openai/openai-node/commit/07bbaf6ecac9a5e36471a35488020853ddf9214f)) + ## 4.69.0 (2024-10-30) Full Changelog: [v4.68.4...v4.69.0](https://github.com/openai/openai-node/compare/v4.68.4...v4.69.0) diff --git a/package.json b/package.json index 9e32feabb..f200fdb53 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.69.0", + "version": "4.70.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index be250f2d6..f298c56c6 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.69.0'; // x-release-please-version +export const VERSION = '4.70.0'; // x-release-please-version From 9180285caf1aec6da05aa4a0058db39bd875cb60 Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Fri, 1 Nov 2024 19:29:35 +0000 Subject: [PATCH 595/725] fix: don't require deno to run build-deno (#1167) --- scripts/build | 2 +- src/streaming.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build b/scripts/build index b4d686af5..0246c90e3 100755 --- a/scripts/build +++ b/scripts/build @@ -50,7 +50,7 @@ node scripts/utils/postprocess-files.cjs (cd dist && node -e 'require("openai")') (cd dist && node -e 'import("openai")' --input-type=module) -if [ "${OPENAI_DISABLE_DENO_BUILD:-0}" != "1" ] && command -v deno &> /dev/null && [ -e ./scripts/build-deno ] +if [ "${OPENAI_DISABLE_DENO_BUILD:-0}" != "1" ] && [ -e ./scripts/build-deno ] then ./scripts/build-deno fi diff --git a/src/streaming.ts b/src/streaming.ts index b48f3ff1d..2891e6ac3 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -2,7 +2,7 @@ import { ReadableStream, type Response } from './_shims/index'; import { OpenAIError } from './error'; import { LineDecoder } from './internal/decoders/line'; -import { APIError } from 'openai/error'; +import { APIError } from './error'; type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined; From 9b569856e1f39156cebbb939b7b7149b0f494c88 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 19:29:56 +0000 Subject: [PATCH 596/725] release: 4.70.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d07bcaba7..f458b24a5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.70.0" + ".": "4.70.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f355b2b4..7525af900 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.70.1 (2024-11-01) + +Full Changelog: [v4.70.0...v4.70.1](https://github.com/openai/openai-node/compare/v4.70.0...v4.70.1) + +### Bug Fixes + +* don't require deno to run build-deno ([#1167](https://github.com/openai/openai-node/issues/1167)) ([9d857bc](https://github.com/openai/openai-node/commit/9d857bc531a0bb3939f7660e49b31ccc38f60dd3)) + ## 4.70.0 (2024-11-01) Full Changelog: [v4.69.0...v4.70.0](https://github.com/openai/openai-node/compare/v4.69.0...v4.70.0) diff --git a/package.json b/package.json index f200fdb53..7e14e3b3b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.70.0", + "version": "4.70.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index f298c56c6..654369eef 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.70.0'; // x-release-please-version +export const VERSION = '4.70.1'; // x-release-please-version From a3df48926c506bfe649336adcf14011e20f539b9 Mon Sep 17 00:00:00 2001 From: Young-Jin Park Date: Fri, 1 Nov 2024 15:36:55 -0400 Subject: [PATCH 597/725] fix: skip deno ecosystem test --- ecosystem-tests/cli.ts | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index c03ea668a..b0ff712f1 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -95,15 +95,16 @@ const projectRunners = { await run('bun', ['test']); } }, - deno: async () => { - // we don't need to explicitly install the package here - // because our deno setup relies on `rootDir/deno` to exist - // which is an artifact produced from our build process - await run('deno', ['task', 'install']); - await run('deno', ['task', 'check']); - - if (state.live) await run('deno', ['task', 'test']); - }, + // Temporarily comment this out until we can test with JSR transformations end-to-end. + // deno: async () => { + // // we don't need to explicitly install the package here + // // because our deno setup relies on `rootDir/deno` to exist + // // which is an artifact produced from our build process + // await run('deno', ['task', 'install']); + // await run('deno', ['task', 'check']); + + // if (state.live) await run('deno', ['task', 'test']); + // }, }; let projectNames = Object.keys(projectRunners) as Array; From dfd4bbe7412bd41622058434f193db4ad1672bbe Mon Sep 17 00:00:00 2001 From: Young-Jin Park Date: Fri, 1 Nov 2024 15:39:43 -0400 Subject: [PATCH 598/725] fix: add permissions to github workflow --- .github/workflows/create-releases.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/create-releases.yml b/.github/workflows/create-releases.yml index 3a753b31c..19b7dd831 100644 --- a/.github/workflows/create-releases.yml +++ b/.github/workflows/create-releases.yml @@ -12,6 +12,9 @@ jobs: if: github.ref == 'refs/heads/master' && github.repository == 'openai/openai-node' runs-on: ubuntu-latest environment: publish + permissions: + contents: read + id-token: write steps: - uses: actions/checkout@v4 From 53f6ecc9e333a6e9adac2179efecdfe3f2ff6d8a Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 19:40:03 +0000 Subject: [PATCH 599/725] release: 4.70.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f458b24a5..0d068338b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.70.1" + ".": "4.70.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7525af900..09e00049c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 4.70.2 (2024-11-01) + +Full Changelog: [v4.70.1...v4.70.2](https://github.com/openai/openai-node/compare/v4.70.1...v4.70.2) + +### Bug Fixes + +* add permissions to github workflow ([ee75e00](https://github.com/openai/openai-node/commit/ee75e00b0fbf82553b219ee8948a8077e9c26a24)) +* skip deno ecosystem test ([5b181b0](https://github.com/openai/openai-node/commit/5b181b01b62139f8da35d426914c82b8425af141)) + ## 4.70.1 (2024-11-01) Full Changelog: [v4.70.0...v4.70.1](https://github.com/openai/openai-node/compare/v4.70.0...v4.70.1) diff --git a/package.json b/package.json index 7e14e3b3b..cd5fbe3f8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.70.1", + "version": "4.70.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 654369eef..f4beff9fa 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.70.1'; // x-release-please-version +export const VERSION = '4.70.2'; // x-release-please-version From 5d6188d685f371b219456f5b5251e0f33cc3fd27 Mon Sep 17 00:00:00 2001 From: Young-Jin Park Date: Fri, 1 Nov 2024 23:39:30 -0400 Subject: [PATCH 600/725] fix: change streaming helper imports to be relative --- src/lib/AbstractChatCompletionRunner.ts | 10 ++++----- src/lib/AssistantStream.ts | 26 ++++++++++++------------ src/lib/ChatCompletionRunner.ts | 6 +++--- src/lib/ChatCompletionStream.ts | 16 +++++++-------- src/lib/ChatCompletionStreamingRunner.ts | 8 ++++---- src/lib/EventStream.ts | 2 +- src/lib/chatCompletionUtils.ts | 2 +- src/lib/parser.ts | 2 +- 8 files changed, 36 insertions(+), 36 deletions(-) diff --git a/src/lib/AbstractChatCompletionRunner.ts b/src/lib/AbstractChatCompletionRunner.ts index e943a4e4f..406f5a431 100644 --- a/src/lib/AbstractChatCompletionRunner.ts +++ b/src/lib/AbstractChatCompletionRunner.ts @@ -1,13 +1,13 @@ -import * as Core from 'openai/core'; -import { type CompletionUsage } from 'openai/resources/completions'; +import * as Core from '../core'; +import { type CompletionUsage } from '../resources/completions'; import { type ChatCompletion, type ChatCompletionMessage, type ChatCompletionMessageParam, type ChatCompletionCreateParams, type ChatCompletionTool, -} from 'openai/resources/chat/completions'; -import { OpenAIError } from 'openai/error'; +} from '../resources/chat/completions'; +import { OpenAIError } from '../error'; import { type RunnableFunction, isRunnableFunctionWithParse, @@ -23,7 +23,7 @@ import { isAssistantMessage, isFunctionMessage, isToolMessage } from './chatComp import { BaseEvents, EventStream } from './EventStream'; import { ParsedChatCompletion } from '../resources/beta/chat/completions'; import OpenAI from '../index'; -import { isAutoParsableTool, parseChatCompletion } from 'openai/lib/parser'; +import { isAutoParsableTool, parseChatCompletion } from '../lib/parser'; const DEFAULT_MAX_CHAT_COMPLETIONS = 10; export interface RunnerOptions extends Core.RequestOptions { diff --git a/src/lib/AssistantStream.ts b/src/lib/AssistantStream.ts index c826c910e..caf68e7dd 100644 --- a/src/lib/AssistantStream.ts +++ b/src/lib/AssistantStream.ts @@ -8,9 +8,9 @@ import { TextDelta, MessageDelta, MessageContent, -} from 'openai/resources/beta/threads/messages'; -import * as Core from 'openai/core'; -import { RequestOptions } from 'openai/core'; +} from '../resources/beta/threads/messages'; +import * as Core from '../core'; +import { RequestOptions } from '../core'; import { Run, RunCreateParamsBase, @@ -18,18 +18,18 @@ import { Runs, RunSubmitToolOutputsParamsBase, RunSubmitToolOutputsParamsStreaming, -} from 'openai/resources/beta/threads/runs/runs'; -import { type ReadableStream } from 'openai/_shims/index'; -import { Stream } from 'openai/streaming'; -import { APIUserAbortError, OpenAIError } from 'openai/error'; +} from '../resources/beta/threads/runs/runs'; +import { type ReadableStream } from '../_shims/index'; +import { Stream } from '../streaming'; +import { APIUserAbortError, OpenAIError } from '../error'; import { AssistantStreamEvent, MessageStreamEvent, RunStepStreamEvent, RunStreamEvent, -} from 'openai/resources/beta/assistants'; -import { RunStep, RunStepDelta, ToolCall, ToolCallDelta } from 'openai/resources/beta/threads/runs/steps'; -import { ThreadCreateAndRunParamsBase, Threads } from 'openai/resources/beta/threads/threads'; +} from '../resources/beta/assistants'; +import { RunStep, RunStepDelta, ToolCall, ToolCallDelta } from '../resources/beta/threads/runs/steps'; +import { ThreadCreateAndRunParamsBase, Threads } from '../resources/beta/threads/threads'; import { BaseEvents, EventStream } from './EventStream'; export interface AssistantStreamEvents extends BaseEvents { @@ -192,7 +192,7 @@ export class AssistantStream runs: Runs, params: RunSubmitToolOutputsParamsStream, options: RequestOptions | undefined, - ) { + ): AssistantStream { const runner = new AssistantStream(); runner._run(() => runner._runToolAssistantStream(threadId, runId, runs, params, { @@ -238,7 +238,7 @@ export class AssistantStream params: ThreadCreateAndRunParamsBaseStream, thread: Threads, options?: RequestOptions, - ) { + ): AssistantStream { const runner = new AssistantStream(); runner._run(() => runner._threadAssistantStream(params, thread, { @@ -254,7 +254,7 @@ export class AssistantStream runs: Runs, params: RunCreateParamsBaseStream, options?: RequestOptions, - ) { + ): AssistantStream { const runner = new AssistantStream(); runner._run(() => runner._runAssistantStream(threadId, runs, params, { diff --git a/src/lib/ChatCompletionRunner.ts b/src/lib/ChatCompletionRunner.ts index 0b962a110..9e68e6671 100644 --- a/src/lib/ChatCompletionRunner.ts +++ b/src/lib/ChatCompletionRunner.ts @@ -1,7 +1,7 @@ import { type ChatCompletionMessageParam, type ChatCompletionCreateParamsNonStreaming, -} from 'openai/resources/chat/completions'; +} from '../resources/chat/completions'; import { type RunnableFunctions, type BaseFunctionsArgs, RunnableTools } from './RunnableFunction'; import { AbstractChatCompletionRunner, @@ -9,8 +9,8 @@ import { RunnerOptions, } from './AbstractChatCompletionRunner'; import { isAssistantMessage } from './chatCompletionUtils'; -import OpenAI from 'openai/index'; -import { AutoParseableTool } from 'openai/lib/parser'; +import OpenAI from '../index'; +import { AutoParseableTool } from '../lib/parser'; export interface ChatCompletionRunnerEvents extends AbstractChatCompletionRunnerEvents { content: (content: string) => void; diff --git a/src/lib/ChatCompletionStream.ts b/src/lib/ChatCompletionStream.ts index e3661c8c1..a88f8a23b 100644 --- a/src/lib/ChatCompletionStream.ts +++ b/src/lib/ChatCompletionStream.ts @@ -1,10 +1,10 @@ -import * as Core from 'openai/core'; +import * as Core from '../core'; import { OpenAIError, APIUserAbortError, LengthFinishReasonError, ContentFilterFinishReasonError, -} from 'openai/error'; +} from '../error'; import { ChatCompletionTokenLogprob, type ChatCompletion, @@ -12,15 +12,15 @@ import { type ChatCompletionCreateParams, type ChatCompletionCreateParamsStreaming, type ChatCompletionCreateParamsBase, -} from 'openai/resources/chat/completions'; +} from '../resources/chat/completions'; import { AbstractChatCompletionRunner, type AbstractChatCompletionRunnerEvents, } from './AbstractChatCompletionRunner'; -import { type ReadableStream } from 'openai/_shims/index'; -import { Stream } from 'openai/streaming'; -import OpenAI from 'openai/index'; -import { ParsedChatCompletion } from 'openai/resources/beta/chat/completions'; +import { type ReadableStream } from '../_shims/index'; +import { Stream } from '../streaming'; +import OpenAI from '../index'; +import { ParsedChatCompletion } from '../resources/beta/chat/completions'; import { AutoParseableResponseFormat, hasAutoParseableInput, @@ -28,7 +28,7 @@ import { isAutoParsableTool, maybeParseChatCompletion, shouldParseToolCall, -} from 'openai/lib/parser'; +} from '../lib/parser'; import { partialParse } from '../_vendor/partial-json-parser/parser'; export interface ContentDeltaEvent { diff --git a/src/lib/ChatCompletionStreamingRunner.ts b/src/lib/ChatCompletionStreamingRunner.ts index ea6c74116..ba0c6496f 100644 --- a/src/lib/ChatCompletionStreamingRunner.ts +++ b/src/lib/ChatCompletionStreamingRunner.ts @@ -1,13 +1,13 @@ import { type ChatCompletionChunk, type ChatCompletionCreateParamsStreaming, -} from 'openai/resources/chat/completions'; +} from '../resources/chat/completions'; import { RunnerOptions, type AbstractChatCompletionRunnerEvents } from './AbstractChatCompletionRunner'; -import { type ReadableStream } from 'openai/_shims/index'; +import { type ReadableStream } from '../_shims/index'; import { RunnableTools, type BaseFunctionsArgs, type RunnableFunctions } from './RunnableFunction'; import { ChatCompletionSnapshot, ChatCompletionStream } from './ChatCompletionStream'; -import OpenAI from 'openai/index'; -import { AutoParseableTool } from 'openai/lib/parser'; +import OpenAI from '../index'; +import { AutoParseableTool } from '../lib/parser'; export interface ChatCompletionStreamEvents extends AbstractChatCompletionRunnerEvents { content: (contentDelta: string, contentSnapshot: string) => void; diff --git a/src/lib/EventStream.ts b/src/lib/EventStream.ts index a18c771dd..d3f485e9d 100644 --- a/src/lib/EventStream.ts +++ b/src/lib/EventStream.ts @@ -1,4 +1,4 @@ -import { APIUserAbortError, OpenAIError } from 'openai/error'; +import { APIUserAbortError, OpenAIError } from '../error'; export class EventStream { controller: AbortController = new AbortController(); diff --git a/src/lib/chatCompletionUtils.ts b/src/lib/chatCompletionUtils.ts index a0d9099de..7e9f8a093 100644 --- a/src/lib/chatCompletionUtils.ts +++ b/src/lib/chatCompletionUtils.ts @@ -3,7 +3,7 @@ import { type ChatCompletionFunctionMessageParam, type ChatCompletionMessageParam, type ChatCompletionToolMessageParam, -} from 'openai/resources'; +} from '../resources'; export const isAssistantMessage = ( message: ChatCompletionMessageParam | null | undefined, diff --git a/src/lib/parser.ts b/src/lib/parser.ts index 8bf2a3a36..f2678e312 100644 --- a/src/lib/parser.ts +++ b/src/lib/parser.ts @@ -13,7 +13,7 @@ import { ParsedFunctionToolCall, } from '../resources/beta/chat/completions'; import { ResponseFormatJSONSchema } from '../resources/shared'; -import { ContentFilterFinishReasonError, LengthFinishReasonError, OpenAIError } from 'openai/error'; +import { ContentFilterFinishReasonError, LengthFinishReasonError, OpenAIError } from '../error'; type AnyChatCompletionCreateParams = | ChatCompletionCreateParams From e0b675f7ee8202a7522be588f4bc297553f5fb3a Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 05:07:32 +0000 Subject: [PATCH 601/725] release: 4.70.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0d068338b..6c3b02fed 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.70.2" + ".": "4.70.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 09e00049c..abe273b81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.70.3 (2024-11-04) + +Full Changelog: [v4.70.2...v4.70.3](https://github.com/openai/openai-node/compare/v4.70.2...v4.70.3) + +### Bug Fixes + +* change streaming helper imports to be relative ([e73b7cf](https://github.com/openai/openai-node/commit/e73b7cf84272bd02a39a67795d49db23db2d970f)) + ## 4.70.2 (2024-11-01) Full Changelog: [v4.70.1...v4.70.2](https://github.com/openai/openai-node/compare/v4.70.1...v4.70.2) diff --git a/package.json b/package.json index cd5fbe3f8..e9d130380 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.70.2", + "version": "4.70.3", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index f4beff9fa..04f8abf02 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.70.2'; // x-release-please-version +export const VERSION = '4.70.3'; // x-release-please-version From 840179f42eeffc8e533f4b7b2a38e36c593ad8e5 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 22:43:08 +0000 Subject: [PATCH 602/725] feat(api): add support for predicted outputs (#1172) --- .stats.yml | 2 +- api.md | 1 + src/index.ts | 2 + src/resources/audio/speech.ts | 4 +- src/resources/audio/transcriptions.ts | 2 +- src/resources/audio/translations.ts | 2 +- src/resources/beta/assistants.ts | 36 +++++++-------- src/resources/beta/threads/messages.ts | 4 +- src/resources/beta/threads/runs/runs.ts | 18 ++++---- src/resources/beta/threads/runs/steps.ts | 8 ++-- src/resources/beta/threads/threads.ts | 10 ++--- .../beta/vector-stores/file-batches.ts | 4 +- src/resources/beta/vector-stores/files.ts | 4 +- .../beta/vector-stores/vector-stores.ts | 4 +- src/resources/chat/chat.ts | 2 + src/resources/chat/completions.ts | 44 +++++++++++++++---- src/resources/chat/index.ts | 1 + src/resources/completions.ts | 24 +++++++--- src/resources/embeddings.ts | 6 +-- src/resources/files.ts | 17 ++++--- src/resources/fine-tuning/jobs/jobs.ts | 2 +- src/resources/images.ts | 6 +-- src/resources/moderations.ts | 2 +- src/resources/uploads/uploads.ts | 2 +- tests/api-resources/chat/completions.test.ts | 1 + tests/api-resources/files.test.ts | 5 ++- 26 files changed, 133 insertions(+), 80 deletions(-) diff --git a/.stats.yml b/.stats.yml index 39413df44..f368bc881 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-7b0a5d715d94f75ac7795bd4d2175a0e3243af9b935a86c273f371e45583140f.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-2f8ca92b9b1879fd535b685e4767338413fcd533d42f3baac13a9c41da3fce35.yml diff --git a/api.md b/api.md index da60f65bd..465730de8 100644 --- a/api.md +++ b/api.md @@ -48,6 +48,7 @@ Types: - ChatCompletionMessageToolCall - ChatCompletionModality - ChatCompletionNamedToolChoice +- ChatCompletionPredictionContent - ChatCompletionRole - ChatCompletionStreamOptions - ChatCompletionSystemMessageParam diff --git a/src/index.ts b/src/index.ts index 33b0848e4..c3299e00d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -87,6 +87,7 @@ import { ChatCompletionMessageToolCall, ChatCompletionModality, ChatCompletionNamedToolChoice, + ChatCompletionPredictionContent, ChatCompletionRole, ChatCompletionStreamOptions, ChatCompletionSystemMessageParam, @@ -379,6 +380,7 @@ export declare namespace OpenAI { type ChatCompletionMessageToolCall as ChatCompletionMessageToolCall, type ChatCompletionModality as ChatCompletionModality, type ChatCompletionNamedToolChoice as ChatCompletionNamedToolChoice, + type ChatCompletionPredictionContent as ChatCompletionPredictionContent, type ChatCompletionRole as ChatCompletionRole, type ChatCompletionStreamOptions as ChatCompletionStreamOptions, type ChatCompletionSystemMessageParam as ChatCompletionSystemMessageParam, diff --git a/src/resources/audio/speech.ts b/src/resources/audio/speech.ts index da99bf649..1cda80f79 100644 --- a/src/resources/audio/speech.ts +++ b/src/resources/audio/speech.ts @@ -22,7 +22,7 @@ export interface SpeechCreateParams { input: string; /** - * One of the available [TTS models](https://platform.openai.com/docs/models/tts): + * One of the available [TTS models](https://platform.openai.com/docs/models#tts): * `tts-1` or `tts-1-hd` */ model: (string & {}) | SpeechModel; @@ -31,7 +31,7 @@ export interface SpeechCreateParams { * The voice to use when generating the audio. Supported voices are `alloy`, * `echo`, `fable`, `onyx`, `nova`, and `shimmer`. Previews of the voices are * available in the - * [Text to speech guide](https://platform.openai.com/docs/guides/text-to-speech/voice-options). + * [Text to speech guide](https://platform.openai.com/docs/guides/text-to-speech#voice-options). */ voice: 'alloy' | 'echo' | 'fable' | 'onyx' | 'nova' | 'shimmer'; diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index dd4258787..0b6da4620 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -174,7 +174,7 @@ export interface TranscriptionCreateParams< /** * An optional text to guide the model's style or continue a previous audio * segment. The - * [prompt](https://platform.openai.com/docs/guides/speech-to-text/prompting) + * [prompt](https://platform.openai.com/docs/guides/speech-to-text#prompting) * should match the audio language. */ prompt?: string; diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index b98a95044..c6bf7c870 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -76,7 +76,7 @@ export interface TranslationCreateParams< /** * An optional text to guide the model's style or continue a previous audio * segment. The - * [prompt](https://platform.openai.com/docs/guides/speech-to-text/prompting) + * [prompt](https://platform.openai.com/docs/guides/speech-to-text#prompting) * should be in English. */ prompt?: string; diff --git a/src/resources/beta/assistants.ts b/src/resources/beta/assistants.ts index 6d48089ce..0e657b1d4 100644 --- a/src/resources/beta/assistants.ts +++ b/src/resources/beta/assistants.ts @@ -121,8 +121,8 @@ export interface Assistant { * ID of the model to use. You can use the * [List models](https://platform.openai.com/docs/api-reference/models/list) API to * see all of your available models, or see our - * [Model overview](https://platform.openai.com/docs/models/overview) for - * descriptions of them. + * [Model overview](https://platform.openai.com/docs/models) for descriptions of + * them. */ model: string; @@ -145,8 +145,8 @@ export interface Assistant { /** * Specifies the format that the model must output. Compatible with - * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), + * [GPT-4o](https://platform.openai.com/docs/models#gpt-4o), + * [GPT-4 Turbo](https://platform.openai.com/docs/models#gpt-4-turbo-and-gpt-4), * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured @@ -620,7 +620,7 @@ export namespace AssistantStreamEvent { /** * Occurs when an - * [error](https://platform.openai.com/docs/guides/error-codes/api-errors) occurs. + * [error](https://platform.openai.com/docs/guides/error-codes#api-errors) occurs. * This can happen due to an internal server error or a timeout. */ export interface ErrorEvent { @@ -663,7 +663,7 @@ export namespace FileSearchTool { * * Note that the file search tool may output fewer than `max_num_results` results. * See the - * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings) + * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search#customizing-file-search-settings) * for more information. */ max_num_results?: number; @@ -673,7 +673,7 @@ export namespace FileSearchTool { * will use the `auto` ranker and a score_threshold of 0. * * See the - * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings) + * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search#customizing-file-search-settings) * for more information. */ ranking_options?: FileSearch.RankingOptions; @@ -685,7 +685,7 @@ export namespace FileSearchTool { * will use the `auto` ranker and a score_threshold of 0. * * See the - * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings) + * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search#customizing-file-search-settings) * for more information. */ export interface RankingOptions { @@ -1100,8 +1100,8 @@ export interface AssistantCreateParams { * ID of the model to use. You can use the * [List models](https://platform.openai.com/docs/api-reference/models/list) API to * see all of your available models, or see our - * [Model overview](https://platform.openai.com/docs/models/overview) for - * descriptions of them. + * [Model overview](https://platform.openai.com/docs/models) for descriptions of + * them. */ model: (string & {}) | ChatAPI.ChatModel; @@ -1131,8 +1131,8 @@ export interface AssistantCreateParams { /** * Specifies the format that the model must output. Compatible with - * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), + * [GPT-4o](https://platform.openai.com/docs/models#gpt-4o), + * [GPT-4 Turbo](https://platform.openai.com/docs/models#gpt-4-turbo-and-gpt-4), * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured @@ -1277,8 +1277,8 @@ export interface AssistantUpdateParams { * ID of the model to use. You can use the * [List models](https://platform.openai.com/docs/api-reference/models/list) API to * see all of your available models, or see our - * [Model overview](https://platform.openai.com/docs/models/overview) for - * descriptions of them. + * [Model overview](https://platform.openai.com/docs/models) for descriptions of + * them. */ model?: string; @@ -1289,8 +1289,8 @@ export interface AssistantUpdateParams { /** * Specifies the format that the model must output. Compatible with - * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), + * [GPT-4o](https://platform.openai.com/docs/models#gpt-4o), + * [GPT-4 Turbo](https://platform.openai.com/docs/models#gpt-4-turbo-and-gpt-4), * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured @@ -1383,8 +1383,8 @@ export interface AssistantListParams extends CursorPageParams { /** * A cursor for use in pagination. `before` is an object ID that defines your place * in the list. For instance, if you make a list request and receive 100 objects, - * ending with obj_foo, your subsequent call can include before=obj_foo in order to - * fetch the previous page of the list. + * starting with obj_foo, your subsequent call can include before=obj_foo in order + * to fetch the previous page of the list. */ before?: string; diff --git a/src/resources/beta/threads/messages.ts b/src/resources/beta/threads/messages.ts index af7977667..8124f56cd 100644 --- a/src/resources/beta/threads/messages.ts +++ b/src/resources/beta/threads/messages.ts @@ -704,8 +704,8 @@ export interface MessageListParams extends CursorPageParams { /** * A cursor for use in pagination. `before` is an object ID that defines your place * in the list. For instance, if you make a list request and receive 100 objects, - * ending with obj_foo, your subsequent call can include before=obj_foo in order to - * fetch the previous page of the list. + * starting with obj_foo, your subsequent call can include before=obj_foo in order + * to fetch the previous page of the list. */ before?: string; diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 83a447a91..814ad3e89 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -435,7 +435,7 @@ export interface Run { /** * Whether to enable - * [parallel function calling](https://platform.openai.com/docs/guides/function-calling/parallel-function-calling) + * [parallel function calling](https://platform.openai.com/docs/guides/function-calling#configuring-parallel-function-calling) * during tool use. */ parallel_tool_calls: boolean; @@ -448,8 +448,8 @@ export interface Run { /** * Specifies the format that the model must output. Compatible with - * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), + * [GPT-4o](https://platform.openai.com/docs/models#gpt-4o), + * [GPT-4 Turbo](https://platform.openai.com/docs/models#gpt-4-turbo-and-gpt-4), * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured @@ -660,7 +660,7 @@ export interface RunCreateParamsBase { * search result content. * * See the - * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings) + * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search#customizing-file-search-settings) * for more information. */ include?: Array; @@ -721,15 +721,15 @@ export interface RunCreateParamsBase { /** * Body param: Whether to enable - * [parallel function calling](https://platform.openai.com/docs/guides/function-calling/parallel-function-calling) + * [parallel function calling](https://platform.openai.com/docs/guides/function-calling#configuring-parallel-function-calling) * during tool use. */ parallel_tool_calls?: boolean; /** * Body param: Specifies the format that the model must output. Compatible with - * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), + * [GPT-4o](https://platform.openai.com/docs/models#gpt-4o), + * [GPT-4 Turbo](https://platform.openai.com/docs/models#gpt-4-turbo-and-gpt-4), * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured @@ -909,8 +909,8 @@ export interface RunListParams extends CursorPageParams { /** * A cursor for use in pagination. `before` is an object ID that defines your place * in the list. For instance, if you make a list request and receive 100 objects, - * ending with obj_foo, your subsequent call can include before=obj_foo in order to - * fetch the previous page of the list. + * starting with obj_foo, your subsequent call can include before=obj_foo in order + * to fetch the previous page of the list. */ before?: string; diff --git a/src/resources/beta/threads/runs/steps.ts b/src/resources/beta/threads/runs/steps.ts index b10bcb868..6c6722b62 100644 --- a/src/resources/beta/threads/runs/steps.ts +++ b/src/resources/beta/threads/runs/steps.ts @@ -705,7 +705,7 @@ export interface StepRetrieveParams { * to fetch the file search result content. * * See the - * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings) + * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search#customizing-file-search-settings) * for more information. */ include?: Array; @@ -715,8 +715,8 @@ export interface StepListParams extends CursorPageParams { /** * A cursor for use in pagination. `before` is an object ID that defines your place * in the list. For instance, if you make a list request and receive 100 objects, - * ending with obj_foo, your subsequent call can include before=obj_foo in order to - * fetch the previous page of the list. + * starting with obj_foo, your subsequent call can include before=obj_foo in order + * to fetch the previous page of the list. */ before?: string; @@ -726,7 +726,7 @@ export interface StepListParams extends CursorPageParams { * to fetch the file search result content. * * See the - * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings) + * [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search#customizing-file-search-settings) * for more information. */ include?: Array; diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 899645508..453d8fa10 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -176,8 +176,8 @@ export class Threads extends APIResource { /** * Specifies the format that the model must output. Compatible with - * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), + * [GPT-4o](https://platform.openai.com/docs/models#gpt-4o), + * [GPT-4 Turbo](https://platform.openai.com/docs/models#gpt-4-turbo-and-gpt-4), * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured @@ -565,15 +565,15 @@ export interface ThreadCreateAndRunParamsBase { /** * Whether to enable - * [parallel function calling](https://platform.openai.com/docs/guides/function-calling/parallel-function-calling) + * [parallel function calling](https://platform.openai.com/docs/guides/function-calling#configuring-parallel-function-calling) * during tool use. */ parallel_tool_calls?: boolean; /** * Specifies the format that the model must output. Compatible with - * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), + * [GPT-4o](https://platform.openai.com/docs/models#gpt-4o), + * [GPT-4 Turbo](https://platform.openai.com/docs/models#gpt-4-turbo-and-gpt-4), * and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured diff --git a/src/resources/beta/vector-stores/file-batches.ts b/src/resources/beta/vector-stores/file-batches.ts index 533e6ce03..2c47cb9c2 100644 --- a/src/resources/beta/vector-stores/file-batches.ts +++ b/src/resources/beta/vector-stores/file-batches.ts @@ -276,8 +276,8 @@ export interface FileBatchListFilesParams extends CursorPageParams { /** * A cursor for use in pagination. `before` is an object ID that defines your place * in the list. For instance, if you make a list request and receive 100 objects, - * ending with obj_foo, your subsequent call can include before=obj_foo in order to - * fetch the previous page of the list. + * starting with obj_foo, your subsequent call can include before=obj_foo in order + * to fetch the previous page of the list. */ before?: string; diff --git a/src/resources/beta/vector-stores/files.ts b/src/resources/beta/vector-stores/files.ts index a263a0491..1fda9a99b 100644 --- a/src/resources/beta/vector-stores/files.ts +++ b/src/resources/beta/vector-stores/files.ts @@ -268,8 +268,8 @@ export interface FileListParams extends CursorPageParams { /** * A cursor for use in pagination. `before` is an object ID that defines your place * in the list. For instance, if you make a list request and receive 100 objects, - * ending with obj_foo, your subsequent call can include before=obj_foo in order to - * fetch the previous page of the list. + * starting with obj_foo, your subsequent call can include before=obj_foo in order + * to fetch the previous page of the list. */ before?: string; diff --git a/src/resources/beta/vector-stores/vector-stores.ts b/src/resources/beta/vector-stores/vector-stores.ts index 4d1e83dce..35ad8c369 100644 --- a/src/resources/beta/vector-stores/vector-stores.ts +++ b/src/resources/beta/vector-stores/vector-stores.ts @@ -372,8 +372,8 @@ export interface VectorStoreListParams extends CursorPageParams { /** * A cursor for use in pagination. `before` is an object ID that defines your place * in the list. For instance, if you make a list request and receive 100 objects, - * ending with obj_foo, your subsequent call can include before=obj_foo in order to - * fetch the previous page of the list. + * starting with obj_foo, your subsequent call can include before=obj_foo in order + * to fetch the previous page of the list. */ before?: string; diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index afe4dd08e..351430f8c 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -23,6 +23,7 @@ import { ChatCompletionMessageToolCall, ChatCompletionModality, ChatCompletionNamedToolChoice, + ChatCompletionPredictionContent, ChatCompletionRole, ChatCompletionStreamOptions, ChatCompletionSystemMessageParam, @@ -101,6 +102,7 @@ export declare namespace Chat { type ChatCompletionMessageToolCall as ChatCompletionMessageToolCall, type ChatCompletionModality as ChatCompletionModality, type ChatCompletionNamedToolChoice as ChatCompletionNamedToolChoice, + type ChatCompletionPredictionContent as ChatCompletionPredictionContent, type ChatCompletionRole as ChatCompletionRole, type ChatCompletionStreamOptions as ChatCompletionStreamOptions, type ChatCompletionSystemMessageParam as ChatCompletionSystemMessageParam, diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 430e52bb2..9d344744a 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -469,7 +469,7 @@ export namespace ChatCompletionContentPartImage { /** * Specifies the detail level of the image. Learn more in the - * [Vision guide](https://platform.openai.com/docs/guides/vision/low-or-high-fidelity-image-understanding). + * [Vision guide](https://platform.openai.com/docs/guides/vision#low-or-high-fidelity-image-understanding). */ detail?: 'auto' | 'low' | 'high'; } @@ -687,6 +687,25 @@ export namespace ChatCompletionNamedToolChoice { } } +/** + * Static predicted output content, such as the content of a text file that is + * being regenerated. + */ +export interface ChatCompletionPredictionContent { + /** + * The content that should be matched when generating a model response. If + * generated tokens would match this content, the entire model response can be + * returned much more quickly. + */ + content: string | Array; + + /** + * The type of the predicted content you want to provide. This type is currently + * always `content`. + */ + type: 'content'; +} + /** * The role of the author of a message */ @@ -855,7 +874,7 @@ export interface ChatCompletionCreateParamsBase { /** * ID of the model to use. See the - * [model endpoint compatibility](https://platform.openai.com/docs/models/model-endpoint-compatibility) + * [model endpoint compatibility](https://platform.openai.com/docs/models#model-endpoint-compatibility) * table for details on which models work with the Chat API. */ model: (string & {}) | ChatAPI.ChatModel; @@ -872,7 +891,7 @@ export interface ChatCompletionCreateParamsBase { * existing frequency in the text so far, decreasing the model's likelihood to * repeat the same line verbatim. * - * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation/parameter-details) + * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation) */ frequency_penalty?: number | null; @@ -963,25 +982,31 @@ export interface ChatCompletionCreateParamsBase { /** * Whether to enable - * [parallel function calling](https://platform.openai.com/docs/guides/function-calling/parallel-function-calling) + * [parallel function calling](https://platform.openai.com/docs/guides/function-calling#configuring-parallel-function-calling) * during tool use. */ parallel_tool_calls?: boolean; + /** + * Static predicted output content, such as the content of a text file that is + * being regenerated. + */ + prediction?: ChatCompletionPredictionContent | null; + /** * Number between -2.0 and 2.0. Positive values penalize new tokens based on * whether they appear in the text so far, increasing the model's likelihood to * talk about new topics. * - * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation/parameter-details) + * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation) */ presence_penalty?: number | null; /** * An object specifying the format that the model must output. Compatible with - * [GPT-4o](https://platform.openai.com/docs/models/gpt-4o), - * [GPT-4o mini](https://platform.openai.com/docs/models/gpt-4o-mini), - * [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) and + * [GPT-4o](https://platform.openai.com/docs/models#gpt-4o), + * [GPT-4o mini](https://platform.openai.com/docs/models#gpt-4o-mini), + * [GPT-4 Turbo](https://platform.openai.com/docs/models#gpt-4-turbo-and-gpt-4) and * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. * * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured @@ -1107,7 +1132,7 @@ export interface ChatCompletionCreateParamsBase { /** * A unique identifier representing your end-user, which can help OpenAI to monitor * and detect abuse. - * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices/end-user-ids). + * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#end-user-ids). */ user?: string; } @@ -1204,6 +1229,7 @@ export declare namespace Completions { type ChatCompletionMessageToolCall as ChatCompletionMessageToolCall, type ChatCompletionModality as ChatCompletionModality, type ChatCompletionNamedToolChoice as ChatCompletionNamedToolChoice, + type ChatCompletionPredictionContent as ChatCompletionPredictionContent, type ChatCompletionRole as ChatCompletionRole, type ChatCompletionStreamOptions as ChatCompletionStreamOptions, type ChatCompletionSystemMessageParam as ChatCompletionSystemMessageParam, diff --git a/src/resources/chat/index.ts b/src/resources/chat/index.ts index d9366bf74..262bf75a2 100644 --- a/src/resources/chat/index.ts +++ b/src/resources/chat/index.ts @@ -20,6 +20,7 @@ export { type ChatCompletionMessageToolCall, type ChatCompletionModality, type ChatCompletionNamedToolChoice, + type ChatCompletionPredictionContent, type ChatCompletionRole, type ChatCompletionStreamOptions, type ChatCompletionSystemMessageParam, diff --git a/src/resources/completions.ts b/src/resources/completions.ts index 94c4581a1..be75a46f0 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -137,6 +137,12 @@ export namespace CompletionUsage { * Breakdown of tokens used in a completion. */ export interface CompletionTokensDetails { + /** + * When using Predicted Outputs, the number of tokens in the prediction that + * appeared in the completion. + */ + accepted_prediction_tokens?: number; + /** * Audio input tokens generated by the model. */ @@ -146,6 +152,14 @@ export namespace CompletionUsage { * Tokens generated by the model for reasoning. */ reasoning_tokens?: number; + + /** + * When using Predicted Outputs, the number of tokens in the prediction that did + * not appear in the completion. However, like reasoning tokens, these tokens are + * still counted in the total completion tokens for purposes of billing, output, + * and context window limits. + */ + rejected_prediction_tokens?: number; } /** @@ -171,8 +185,8 @@ export interface CompletionCreateParamsBase { * ID of the model to use. You can use the * [List models](https://platform.openai.com/docs/api-reference/models/list) API to * see all of your available models, or see our - * [Model overview](https://platform.openai.com/docs/models/overview) for - * descriptions of them. + * [Model overview](https://platform.openai.com/docs/models) for descriptions of + * them. */ model: (string & {}) | 'gpt-3.5-turbo-instruct' | 'davinci-002' | 'babbage-002'; @@ -209,7 +223,7 @@ export interface CompletionCreateParamsBase { * existing frequency in the text so far, decreasing the model's likelihood to * repeat the same line verbatim. * - * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation/parameter-details) + * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation) */ frequency_penalty?: number | null; @@ -264,7 +278,7 @@ export interface CompletionCreateParamsBase { * whether they appear in the text so far, increasing the model's likelihood to * talk about new topics. * - * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation/parameter-details) + * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation) */ presence_penalty?: number | null; @@ -327,7 +341,7 @@ export interface CompletionCreateParamsBase { /** * A unique identifier representing your end-user, which can help OpenAI to monitor * and detect abuse. - * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices/end-user-ids). + * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#end-user-ids). */ user?: string; } diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index e2b35f530..4b1644a68 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -94,8 +94,8 @@ export interface EmbeddingCreateParams { * ID of the model to use. You can use the * [List models](https://platform.openai.com/docs/api-reference/models/list) API to * see all of your available models, or see our - * [Model overview](https://platform.openai.com/docs/models/overview) for - * descriptions of them. + * [Model overview](https://platform.openai.com/docs/models) for descriptions of + * them. */ model: (string & {}) | EmbeddingModel; @@ -114,7 +114,7 @@ export interface EmbeddingCreateParams { /** * A unique identifier representing your end-user, which can help OpenAI to monitor * and detect abuse. - * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices/end-user-ids). + * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#end-user-ids). */ user?: string; } diff --git a/src/resources/files.ts b/src/resources/files.ts index dec815a28..48d8f8747 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -5,7 +5,7 @@ import { isRequestOptions } from '../core'; import { sleep } from '../core'; import { APIConnectionTimeoutError } from '../error'; import * as Core from '../core'; -import { Page } from '../pagination'; +import { CursorPage, type CursorPageParams } from '../pagination'; import { type Response } from '../_shims/index'; export class Files extends APIResource { @@ -44,7 +44,7 @@ export class Files extends APIResource { } /** - * Returns a list of files that belong to the user's organization. + * Returns a list of files. */ list(query?: FileListParams, options?: Core.RequestOptions): Core.PagePromise; list(options?: Core.RequestOptions): Core.PagePromise; @@ -111,10 +111,7 @@ export class Files extends APIResource { } } -/** - * Note: no pagination actually occurs yet, this is for forwards-compatibility. - */ -export class FileObjectsPage extends Page {} +export class FileObjectsPage extends CursorPage {} export type FileContent = string; @@ -213,7 +210,13 @@ export interface FileCreateParams { purpose: FilePurpose; } -export interface FileListParams { +export interface FileListParams extends CursorPageParams { + /** + * Sort order by the `created_at` timestamp of the objects. `asc` for ascending + * order and `desc` for descending order. + */ + order?: 'asc' | 'desc'; + /** * Only return files with the given purpose. */ diff --git a/src/resources/fine-tuning/jobs/jobs.ts b/src/resources/fine-tuning/jobs/jobs.ts index 275fad869..0c320e028 100644 --- a/src/resources/fine-tuning/jobs/jobs.ts +++ b/src/resources/fine-tuning/jobs/jobs.ts @@ -304,7 +304,7 @@ export interface FineTuningJobWandbIntegrationObject { export interface JobCreateParams { /** * The name of the model to fine-tune. You can select one of the - * [supported models](https://platform.openai.com/docs/guides/fine-tuning/which-models-can-be-fine-tuned). + * [supported models](https://platform.openai.com/docs/guides/fine-tuning#which-models-can-be-fine-tuned). */ model: (string & {}) | 'babbage-002' | 'davinci-002' | 'gpt-3.5-turbo' | 'gpt-4o-mini'; diff --git a/src/resources/images.ts b/src/resources/images.ts index f4d59b941..8e1c6d92e 100644 --- a/src/resources/images.ts +++ b/src/resources/images.ts @@ -94,7 +94,7 @@ export interface ImageCreateVariationParams { /** * A unique identifier representing your end-user, which can help OpenAI to monitor * and detect abuse. - * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices/end-user-ids). + * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#end-user-ids). */ user?: string; } @@ -146,7 +146,7 @@ export interface ImageEditParams { /** * A unique identifier representing your end-user, which can help OpenAI to monitor * and detect abuse. - * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices/end-user-ids). + * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#end-user-ids). */ user?: string; } @@ -201,7 +201,7 @@ export interface ImageGenerateParams { /** * A unique identifier representing your end-user, which can help OpenAI to monitor * and detect abuse. - * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices/end-user-ids). + * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#end-user-ids). */ user?: string; } diff --git a/src/resources/moderations.ts b/src/resources/moderations.ts index cdde12a62..f7b16166d 100644 --- a/src/resources/moderations.ts +++ b/src/resources/moderations.ts @@ -351,7 +351,7 @@ export interface ModerationCreateParams { * The content moderation model you would like to use. Learn more in * [the moderation guide](https://platform.openai.com/docs/guides/moderation), and * learn about available models - * [here](https://platform.openai.com/docs/models/moderation). + * [here](https://platform.openai.com/docs/models#moderation). */ model?: (string & {}) | ModerationModel; } diff --git a/src/resources/uploads/uploads.ts b/src/resources/uploads/uploads.ts index 78fa3a7b5..8491d0fe2 100644 --- a/src/resources/uploads/uploads.ts +++ b/src/resources/uploads/uploads.ts @@ -25,7 +25,7 @@ export class Uploads extends APIResource { * For certain `purpose`s, the correct `mime_type` must be specified. Please refer * to documentation for the supported MIME types for your use case: * - * - [Assistants](https://platform.openai.com/docs/assistants/tools/file-search/supported-files) + * - [Assistants](https://platform.openai.com/docs/assistants/tools/file-search#supported-files) * * For guidance on the proper filename extensions for each purpose, please follow * the documentation on diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 77d4a251c..180a1d77f 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -39,6 +39,7 @@ describe('resource completions', () => { modalities: ['text', 'audio'], n: 1, parallel_tool_calls: true, + prediction: { content: 'string', type: 'content' }, presence_penalty: -2, response_format: { type: 'text' }, seed: -9007199254740991, diff --git a/tests/api-resources/files.test.ts b/tests/api-resources/files.test.ts index bbaa45a65..c907c4987 100644 --- a/tests/api-resources/files.test.ts +++ b/tests/api-resources/files.test.ts @@ -69,7 +69,10 @@ describe('resource files', () => { test('list: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - client.files.list({ purpose: 'purpose' }, { path: '/_stainless_unknown_path' }), + client.files.list( + { after: 'after', limit: 0, order: 'asc', purpose: 'purpose' }, + { path: '/_stainless_unknown_path' }, + ), ).rejects.toThrow(OpenAI.NotFoundError); }); From 35cfdb8d400d90403319418bfe345e0d1bd24be5 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 22:43:34 +0000 Subject: [PATCH 603/725] release: 4.71.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6c3b02fed..b295c3f54 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.70.3" + ".": "4.71.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index abe273b81..bb769c53e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.71.0 (2024-11-04) + +Full Changelog: [v4.70.3...v4.71.0](https://github.com/openai/openai-node/compare/v4.70.3...v4.71.0) + +### Features + +* **api:** add support for predicted outputs ([#1172](https://github.com/openai/openai-node/issues/1172)) ([08a7bb4](https://github.com/openai/openai-node/commit/08a7bb4d4b751aeed9655bfcb9fa27fc79a767c4)) + ## 4.70.3 (2024-11-04) Full Changelog: [v4.70.2...v4.70.3](https://github.com/openai/openai-node/compare/v4.70.2...v4.70.3) diff --git a/package.json b/package.json index e9d130380..501d4f31e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.70.3", + "version": "4.71.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 04f8abf02..273878132 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.70.3'; // x-release-please-version +export const VERSION = '4.71.0'; // x-release-please-version From f0a1288d37683e8eee7df6a9e5838fbfee35cbe3 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 5 Nov 2024 21:19:10 +0000 Subject: [PATCH 604/725] fix: change release please configuration for jsr.json (#1174) --- release-please-config.json | 6 +++++- scripts/build-deno | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/release-please-config.json b/release-please-config.json index 377a76e99..1aa2fb613 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -63,6 +63,10 @@ "extra-files": [ "src/version.ts", "README.md", - "jsr.json" + { + "type": "json", + "path": "jsr.json", + "jsonpath": "$.version" + } ] } diff --git a/scripts/build-deno b/scripts/build-deno index 7d542cf24..4a2000a66 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -14,6 +14,6 @@ for dir in dist-deno/_shims dist-deno/_shims/auto; do mv -- "$file" "${file%-deno.ts}.ts" done done -for file in LICENSE CHANGELOG.md; do +for file in README.md LICENSE CHANGELOG.md; do if [ -e "${file}" ]; then cp "${file}" dist-deno; fi done From f41f1811c90b3e3b54a4356c8e2ca39189f4ce66 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 6 Nov 2024 05:06:50 +0000 Subject: [PATCH 605/725] release: 4.71.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 6 ++++-- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b295c3f54..6fbbb03de 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.71.0" + ".": "4.71.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index bb769c53e..1e74a8ee3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.71.1 (2024-11-06) + +Full Changelog: [v4.71.0...v4.71.1](https://github.com/openai/openai-node/compare/v4.71.0...v4.71.1) + +### Bug Fixes + +* change release please configuration for jsr.json ([#1174](https://github.com/openai/openai-node/issues/1174)) ([c39efba](https://github.com/openai/openai-node/commit/c39efba812209c8906315596cc0a56e54ae8590a)) + ## 4.71.0 (2024-11-04) Full Changelog: [v4.70.3...v4.71.0](https://github.com/openai/openai-node/compare/v4.70.3...v4.71.0) diff --git a/jsr.json b/jsr.json index fefb5b291..48a838612 100644 --- a/jsr.json +++ b/jsr.json @@ -1,8 +1,10 @@ { "name": "@openai/openai", - "version": "4.47.1", + "version": "4.71.1", "exports": "./index.ts", "publish": { - "exclude": ["!."] + "exclude": [ + "!." + ] } } diff --git a/package.json b/package.json index 501d4f31e..dd3dfba7a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.71.0", + "version": "4.71.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 273878132..3474c77c3 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.71.0'; // x-release-please-version +export const VERSION = '4.71.1'; // x-release-please-version From 4dfb0c6aa7c4530665bc7d6beebcd04aa1490e27 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 8 Nov 2024 20:50:47 +0000 Subject: [PATCH 606/725] chore(ecosystem-tests): bump wrangler version (#1178) Co-authored-by: stainless-bot --- .../cloudflare-worker/package-lock.json | 301 +++++++++++------- .../cloudflare-worker/package.json | 2 +- 2 files changed, 189 insertions(+), 114 deletions(-) diff --git a/ecosystem-tests/cloudflare-worker/package-lock.json b/ecosystem-tests/cloudflare-worker/package-lock.json index 0673bb27c..99d787f75 100644 --- a/ecosystem-tests/cloudflare-worker/package-lock.json +++ b/ecosystem-tests/cloudflare-worker/package-lock.json @@ -17,7 +17,7 @@ "start-server-and-test": "^2.0.0", "ts-jest": "^29.1.0", "typescript": "5.0.4", - "wrangler": "^3.0.0" + "wrangler": "^3.85.0" } }, "node_modules/@ampproject/remapping": { @@ -662,18 +662,21 @@ "dev": true }, "node_modules/@cloudflare/kv-asset-handler": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.2.0.tgz", - "integrity": "sha512-MVbXLbTcAotOPUj0pAMhVtJ+3/kFkwJqc5qNOleOZTv6QkZZABDMS21dSrSlVswEHwrpWC03e4fWytjqKvuE2A==", + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.3.4.tgz", + "integrity": "sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==", "dev": true, "dependencies": { "mime": "^3.0.0" + }, + "engines": { + "node": ">=16.13" } }, "node_modules/@cloudflare/workerd-darwin-64": { - "version": "1.20231030.0", - "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20231030.0.tgz", - "integrity": "sha512-J4PQ9utPxLya9yHdMMx3AZeC5M/6FxcoYw6jo9jbDDFTy+a4Gslqf4Im9We3aeOEdPXa3tgQHVQOSelJSZLhIw==", + "version": "1.20241022.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20241022.0.tgz", + "integrity": "sha512-1NNYun37myMTgCUiPQEJ0cMal4mKZVTpkD0b2tx9hV70xji+frVJcSK8YVLeUm1P+Rw1d/ct8DMgQuCpsz3Fsw==", "cpu": [ "x64" ], @@ -687,9 +690,9 @@ } }, "node_modules/@cloudflare/workerd-darwin-arm64": { - "version": "1.20231030.0", - "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20231030.0.tgz", - "integrity": "sha512-WSJJjm11Del4hSneiNB7wTXGtBXI4QMCH9l5qf4iT5PAW8cESGcCmdHtWDWDtGAAGcvmLT04KNvmum92vRKKQQ==", + "version": "1.20241022.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20241022.0.tgz", + "integrity": "sha512-FOO/0P0U82EsTLTdweNVgw+4VOk5nghExLPLSppdOziq6IR5HVgP44Kmq5LdsUeHUhwUmfOh9hzaTpkNzUqKvw==", "cpu": [ "arm64" ], @@ -703,9 +706,9 @@ } }, "node_modules/@cloudflare/workerd-linux-64": { - "version": "1.20231030.0", - "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20231030.0.tgz", - "integrity": "sha512-2HUeRTvoCC17fxE0qdBeR7J9dO8j4A8ZbdcvY8pZxdk+zERU6+N03RTbk/dQMU488PwiDvcC3zZqS4gwLfVT8g==", + "version": "1.20241022.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20241022.0.tgz", + "integrity": "sha512-RsNc19BQJG9yd+ngnjuDeG9ywZG+7t1L4JeglgceyY5ViMNMKVO7Zpbsu69kXslU9h6xyQG+lrmclg3cBpnhYA==", "cpu": [ "x64" ], @@ -719,9 +722,9 @@ } }, "node_modules/@cloudflare/workerd-linux-arm64": { - "version": "1.20231030.0", - "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20231030.0.tgz", - "integrity": "sha512-4/GK5zHh+9JbUI6Z5xTCM0ZmpKKHk7vu9thmHjUxtz+o8Ne9DoD7DlDvXQWgMF6XGaTubDWyp3ttn+Qv8jDFuQ==", + "version": "1.20241022.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20241022.0.tgz", + "integrity": "sha512-x5mUXpKxfsosxcFmcq5DaqLs37PejHYVRsNz1cWI59ma7aC4y4Qn6Tf3i0r9MwQTF/MccP4SjVslMU6m4W7IaA==", "cpu": [ "arm64" ], @@ -735,9 +738,9 @@ } }, "node_modules/@cloudflare/workerd-windows-64": { - "version": "1.20231030.0", - "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20231030.0.tgz", - "integrity": "sha512-fb/Jgj8Yqy3PO1jLhk7mTrHMkR8jklpbQFud6rL/aMAn5d6MQbaSrYOCjzkKGp0Zng8D2LIzSl+Fc0C9Sggxjg==", + "version": "1.20241022.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20241022.0.tgz", + "integrity": "sha512-eBCClx4szCOgKqOlxxbdNszMqQf3MRG1B9BRIqEM/diDfdR9IrZ8l3FaEm+l9gXgPmS6m1NBn40aWuGBl8UTSw==", "cpu": [ "x64" ], @@ -750,12 +753,47 @@ "node": ">=16" } }, + "node_modules/@cloudflare/workers-shared": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workers-shared/-/workers-shared-0.7.0.tgz", + "integrity": "sha512-LLQRTqx7lKC7o2eCYMpyc5FXV8d0pUX6r3A+agzhqS9aoR5A6zCPefwQGcvbKx83ozX22ATZcemwxQXn12UofQ==", + "dev": true, + "dependencies": { + "mime": "^3.0.0", + "zod": "^3.22.3" + }, + "engines": { + "node": ">=16.7.0" + } + }, "node_modules/@cloudflare/workers-types": { - "version": "4.20230821.0", - "resolved": "https://registry.npmjs.org/@cloudflare/workers-types/-/workers-types-4.20230821.0.tgz", - "integrity": "sha512-lVQSyr5E4CEkQw7WIdsrMTj+kHjsm28mJ0B5AhNFByKR+16KTFsU/RW/nGLKHHW2jxT5lvYI+HjNQMzC9QR8Ng==", + "version": "4.20241106.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workers-types/-/workers-types-4.20241106.0.tgz", + "integrity": "sha512-pI4ivacmp+vgNO/siHDsZ6BdITR0LC4Mh/1+yzVLcl9U75pt5DUDCOWOiqIRFXRq6H65DPnJbEPFo3x9UfgofQ==", "dev": true }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, "node_modules/@esbuild-plugins/node-globals-polyfill": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@esbuild-plugins/node-globals-polyfill/-/node-globals-polyfill-0.2.3.tgz", @@ -1142,6 +1180,15 @@ "node": ">=12" } }, + "node_modules/@fastify/busboy": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.1.tgz", + "integrity": "sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==", + "dev": true, + "engines": { + "node": ">=14" + } + }, "node_modules/@hapi/hoek": { "version": "9.3.0", "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", @@ -1655,9 +1702,9 @@ "dev": true }, "node_modules/acorn": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", - "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "version": "8.14.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", + "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -1667,10 +1714,13 @@ } }, "node_modules/acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", + "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", "dev": true, + "dependencies": { + "acorn": "^8.11.0" + }, "engines": { "node": ">=0.4.0" } @@ -1983,18 +2033,6 @@ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, - "node_modules/busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "dev": true, - "dependencies": { - "streamsearch": "^1.1.0" - }, - "engines": { - "node": ">=10.16.0" - } - }, "node_modules/callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", @@ -2198,9 +2236,9 @@ "dev": true }, "node_modules/cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz", + "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", "dev": true, "engines": { "node": ">= 0.6" @@ -2249,6 +2287,16 @@ "node": ">= 12" } }, + "node_modules/date-fns": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-4.1.0.tgz", + "integrity": "sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/kossnocorp" + } + }, "node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -2289,6 +2337,12 @@ "node": ">=0.10.0" } }, + "node_modules/defu": { + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz", + "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==", + "dev": true + }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -3038,6 +3092,12 @@ "node": ">=8" } }, + "node_modules/itty-time": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/itty-time/-/itty-time-1.0.6.tgz", + "integrity": "sha512-+P8IZaLLBtFv8hCkIjcymZOp4UJ+xW6bSlQsXGqrkmJh7vSiMFSlNne0mCYagEE0N7HDNR5jJBRxwN0oYv61Rw==", + "dev": true + }, "node_modules/jest": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", @@ -3894,23 +3954,23 @@ } }, "node_modules/miniflare": { - "version": "3.20231030.3", - "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-3.20231030.3.tgz", - "integrity": "sha512-lquHSh0XiO8uoWDujOLHtDS9mkUTJTc5C5amiQ6A++5y0f+DWiMqbDBvvwjlYf4Dvqk6ChFya9dztk7fg2ZVxA==", + "version": "3.20241022.0", + "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-3.20241022.0.tgz", + "integrity": "sha512-x9Fbq1Hmz1f0osIT9Qmj78iX4UpCP2EqlZnA/tzj/3+I49vc3Kq0fNqSSKplcdf6HlCHdL3fOBicmreQF4BUUQ==", "dev": true, "dependencies": { + "@cspotcode/source-map-support": "0.8.1", "acorn": "^8.8.0", "acorn-walk": "^8.2.0", "capnp-ts": "^0.7.0", "exit-hook": "^2.2.1", "glob-to-regexp": "^0.4.1", - "source-map-support": "0.5.21", "stoppable": "^1.1.0", - "undici": "^5.22.1", - "workerd": "1.20231030.0", - "ws": "^8.11.0", + "undici": "^5.28.4", + "workerd": "1.20241022.0", + "ws": "^8.17.1", "youch": "^3.2.2", - "zod": "^3.20.6" + "zod": "^3.22.3" }, "bin": { "miniflare": "bootstrap.js" @@ -3919,16 +3979,6 @@ "node": ">=16.13" } }, - "node_modules/miniflare/node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, "node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -4066,6 +4116,12 @@ "node": ">=8" } }, + "node_modules/ohash": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/ohash/-/ohash-1.1.4.tgz", + "integrity": "sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==", + "dev": true + }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", @@ -4193,9 +4249,15 @@ "dev": true }, "node_modules/path-to-regexp": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz", - "integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz", + "integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==", + "dev": true + }, + "node_modules/pathe": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", "dev": true }, "node_modules/pause-stream": { @@ -4613,15 +4675,6 @@ "duplexer": "~0.1.1" } }, - "node_modules/streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", - "dev": true, - "engines": { - "node": ">=10.0.0" - } - }, "node_modules/string-length": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", @@ -4878,18 +4931,37 @@ "node": ">=12.20" } }, + "node_modules/ufo": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.4.tgz", + "integrity": "sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==", + "dev": true + }, "node_modules/undici": { - "version": "5.23.0", - "resolved": "https://registry.npmjs.org/undici/-/undici-5.23.0.tgz", - "integrity": "sha512-1D7w+fvRsqlQ9GscLBwcAJinqcZGHUKjbOmXdlE/v8BvEGXjeWAax+341q44EuTcHXXnfyKNbKRq4Lg7OzhMmg==", + "version": "5.28.4", + "resolved": "https://registry.npmjs.org/undici/-/undici-5.28.4.tgz", + "integrity": "sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==", "dev": true, "dependencies": { - "busboy": "^1.6.0" + "@fastify/busboy": "^2.0.0" }, "engines": { "node": ">=14.0" } }, + "node_modules/unenv": { + "name": "unenv-nightly", + "version": "2.0.0-20241024-111401-d4156ac", + "resolved": "https://registry.npmjs.org/unenv-nightly/-/unenv-nightly-2.0.0-20241024-111401-d4156ac.tgz", + "integrity": "sha512-xJO1hfY+Te+/XnfCYrCbFbRcgu6XEODND1s5wnVbaBCkuQX7JXF7fHEXPrukFE2j8EOH848P8QN19VO47XN8hw==", + "dev": true, + "dependencies": { + "defu": "^6.1.4", + "ohash": "^1.1.4", + "pathe": "^1.1.2", + "ufo": "^1.5.4" + } + }, "node_modules/update-browserslist-db": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", @@ -4986,9 +5058,9 @@ } }, "node_modules/workerd": { - "version": "1.20231030.0", - "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20231030.0.tgz", - "integrity": "sha512-+FSW+d31f8RrjHanFf/R9A+Z0csf3OtsvzdPmAKuwuZm/5HrBv83cvG9fFeTxl7/nI6irUUXIRF9xcj/NomQzQ==", + "version": "1.20241022.0", + "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20241022.0.tgz", + "integrity": "sha512-jyGXsgO9DRcJyx6Ovv7gUyDPc3UYC2i/E0p9GFUg6GUzpldw4Y93y9kOmdfsOnKZ3+lY53veSiUniiBPE6Q2NQ==", "dev": true, "hasInstallScript": true, "bin": { @@ -4998,32 +5070,37 @@ "node": ">=16" }, "optionalDependencies": { - "@cloudflare/workerd-darwin-64": "1.20231030.0", - "@cloudflare/workerd-darwin-arm64": "1.20231030.0", - "@cloudflare/workerd-linux-64": "1.20231030.0", - "@cloudflare/workerd-linux-arm64": "1.20231030.0", - "@cloudflare/workerd-windows-64": "1.20231030.0" + "@cloudflare/workerd-darwin-64": "1.20241022.0", + "@cloudflare/workerd-darwin-arm64": "1.20241022.0", + "@cloudflare/workerd-linux-64": "1.20241022.0", + "@cloudflare/workerd-linux-arm64": "1.20241022.0", + "@cloudflare/workerd-windows-64": "1.20241022.0" } }, "node_modules/wrangler": { - "version": "3.19.0", - "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-3.19.0.tgz", - "integrity": "sha512-pY7xWqkQn6DJ+1vz9YHz2pCftEmK+JCTj9sqnucp0NZnlUiILDmBWegsjjCLZycgfiA62J213N7NvjLPr2LB8w==", + "version": "3.85.0", + "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-3.85.0.tgz", + "integrity": "sha512-r5YCWUaF4ApLnloNE6jHHgRYdFzYHoajTlC1tns42UzQ2Ls63VAqD3b0cxOqzDUfmlSb3skpmu0B0Ssi3QWPAg==", "dev": true, "dependencies": { - "@cloudflare/kv-asset-handler": "^0.2.0", + "@cloudflare/kv-asset-handler": "0.3.4", + "@cloudflare/workers-shared": "0.7.0", "@esbuild-plugins/node-globals-polyfill": "^0.2.3", "@esbuild-plugins/node-modules-polyfill": "^0.2.2", "blake3-wasm": "^2.1.5", "chokidar": "^3.5.3", + "date-fns": "^4.1.0", "esbuild": "0.17.19", - "miniflare": "3.20231030.3", + "itty-time": "^1.0.6", + "miniflare": "3.20241022.0", "nanoid": "^3.3.3", - "path-to-regexp": "^6.2.0", + "path-to-regexp": "^6.3.0", + "resolve": "^1.22.8", "resolve.exports": "^2.0.2", "selfsigned": "^2.0.1", - "source-map": "0.6.1", - "source-map-support": "0.5.21", + "source-map": "^0.6.1", + "unenv": "npm:unenv-nightly@2.0.0-20241024-111401-d4156ac", + "workerd": "1.20241022.0", "xxhash-wasm": "^1.0.1" }, "bin": { @@ -5035,16 +5112,14 @@ }, "optionalDependencies": { "fsevents": "~2.3.2" - } - }, - "node_modules/wrangler/node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + }, + "peerDependencies": { + "@cloudflare/workers-types": "^4.20241022.0" + }, + "peerDependenciesMeta": { + "@cloudflare/workers-types": { + "optional": true + } } }, "node_modules/wrap-ansi": { @@ -5084,9 +5159,9 @@ } }, "node_modules/ws": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", - "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", "dev": true, "engines": { "node": ">=10.0.0" @@ -5165,20 +5240,20 @@ } }, "node_modules/youch": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/youch/-/youch-3.2.3.tgz", - "integrity": "sha512-ZBcWz/uzZaQVdCvfV4uk616Bbpf2ee+F/AvuKDR5EwX/Y4v06xWdtMluqTD7+KlZdM93lLm9gMZYo0sKBS0pgw==", + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/youch/-/youch-3.3.4.tgz", + "integrity": "sha512-UeVBXie8cA35DS6+nBkls68xaBBXCye0CNznrhszZjTbRVnJKQuNsyLKBTTL4ln1o1rh2PKtv35twV7irj5SEg==", "dev": true, "dependencies": { - "cookie": "^0.5.0", + "cookie": "^0.7.1", "mustache": "^4.2.0", "stacktracey": "^2.1.8" } }, "node_modules/zod": { - "version": "3.22.2", - "resolved": "https://registry.npmjs.org/zod/-/zod-3.22.2.tgz", - "integrity": "sha512-wvWkphh5WQsJbVk1tbx1l1Ly4yg+XecD+Mq280uBGt9wa5BKSWf4Mhp6GmrkPixhMxmabYY7RbzlwVP32pbGCg==", + "version": "3.23.8", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz", + "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==", "dev": true, "funding": { "url": "https://github.com/sponsors/colinhacks" diff --git a/ecosystem-tests/cloudflare-worker/package.json b/ecosystem-tests/cloudflare-worker/package.json index 463de4045..3034e97f7 100644 --- a/ecosystem-tests/cloudflare-worker/package.json +++ b/ecosystem-tests/cloudflare-worker/package.json @@ -17,7 +17,7 @@ "start-server-and-test": "^2.0.0", "ts-jest": "^29.1.0", "typescript": "5.0.4", - "wrangler": "^3.0.0" + "wrangler": "^3.85.0" }, "dependencies": { "node-fetch": "^3.3.1" From 34306573a15a03a1e84177aa2f74d8e63adc0bf0 Mon Sep 17 00:00:00 2001 From: Young-Jin Park Date: Mon, 11 Nov 2024 17:43:09 -0500 Subject: [PATCH 607/725] feat: add back deno runtime testing without type checks --- ecosystem-tests/cli.ts | 18 ++++++++---------- ecosystem-tests/deno/deno.jsonc | 7 +++---- scripts/build-deno | 18 +++++++++++++----- 3 files changed, 24 insertions(+), 19 deletions(-) diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index b0ff712f1..4803b47c2 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -95,16 +95,14 @@ const projectRunners = { await run('bun', ['test']); } }, - // Temporarily comment this out until we can test with JSR transformations end-to-end. - // deno: async () => { - // // we don't need to explicitly install the package here - // // because our deno setup relies on `rootDir/deno` to exist - // // which is an artifact produced from our build process - // await run('deno', ['task', 'install']); - // await run('deno', ['task', 'check']); - - // if (state.live) await run('deno', ['task', 'test']); - // }, + deno: async () => { + // we don't need to explicitly install the package here + // because our deno setup relies on `rootDir/dist-deno` to exist + // which is an artifact produced from our build process + await run('deno', ['task', 'install', '--unstable-sloppy-imports']); + + if (state.live) await run('deno', ['task', 'test']); + }, }; let projectNames = Object.keys(projectRunners) as Array; diff --git a/ecosystem-tests/deno/deno.jsonc b/ecosystem-tests/deno/deno.jsonc index 7de05f2ba..46d7ee486 100644 --- a/ecosystem-tests/deno/deno.jsonc +++ b/ecosystem-tests/deno/deno.jsonc @@ -1,11 +1,10 @@ { "tasks": { "install": "deno install --node-modules-dir main_test.ts -f", - "check": "deno lint && deno check main_test.ts", - "test": "deno test --allow-env --allow-net --allow-read --node-modules-dir" + "test": "deno test --allow-env --allow-net --allow-read --node-modules-dir --unstable-sloppy-imports --no-check" }, "imports": { - "openai": "../../deno/mod.ts", - "openai/": "../../deno/" + "openai": "../../dist-deno/index.ts", + "openai/": "../../dist-deno/" } } diff --git a/scripts/build-deno b/scripts/build-deno index 4a2000a66..dfce83548 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -7,13 +7,21 @@ cd "$(dirname "$0")/.." rm -rf dist-deno; mkdir dist-deno cp -rp src/* jsr.json dist-deno +rm -rf dist-deno/shims + +rm dist-deno/_shims/node*.{js,mjs,ts} +rm dist-deno/_shims/manual*.{js,mjs,ts} +rm dist-deno/_shims/index.{d.ts,js,mjs} +for file in dist-deno/_shims/*-deno.ts; do + mv -- "$file" "${file%-deno.ts}.ts" +done + rm dist-deno/_shims/auto/*-node.ts -for dir in dist-deno/_shims dist-deno/_shims/auto; do - rm "${dir}"/*.{d.ts,js,mjs} - for file in "${dir}"/*-deno.ts; do - mv -- "$file" "${file%-deno.ts}.ts" - done +rm dist-deno/_shims/auto/*.{d.ts,js,mjs} +for file in dist-deno/_shims/auto/*-deno.ts; do + mv -- "$file" "${file%-deno.ts}.ts" done + for file in README.md LICENSE CHANGELOG.md; do if [ -e "${file}" ]; then cp "${file}" dist-deno; fi done From a92cc1dbc4ab3284c6654d69d5c39399a867f601 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 14:00:36 +0000 Subject: [PATCH 608/725] release: 4.72.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 17 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6fbbb03de..e53c9dd88 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.71.1" + ".": "4.72.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e74a8ee3..951ef0784 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.72.0 (2024-11-12) + +Full Changelog: [v4.71.1...v4.72.0](https://github.com/openai/openai-node/compare/v4.71.1...v4.72.0) + +### Features + +* add back deno runtime testing without type checks ([1626cf5](https://github.com/openai/openai-node/commit/1626cf57e94706e1fc8b2f9ff4f173fe486d5150)) + + +### Chores + +* **ecosystem-tests:** bump wrangler version ([#1178](https://github.com/openai/openai-node/issues/1178)) ([4dfb0c6](https://github.com/openai/openai-node/commit/4dfb0c6aa7c4530665bc7d6beebcd04aa1490e27)) + ## 4.71.1 (2024-11-06) Full Changelog: [v4.71.0...v4.71.1](https://github.com/openai/openai-node/compare/v4.71.0...v4.71.1) diff --git a/jsr.json b/jsr.json index 48a838612..ad1751852 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.71.1", + "version": "4.72.0", "exports": "./index.ts", "publish": { "exclude": [ diff --git a/package.json b/package.json index dd3dfba7a..85fbed4f1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.71.1", + "version": "4.72.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 3474c77c3..cad6e2320 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.71.1'; // x-release-please-version +export const VERSION = '4.72.0'; // x-release-please-version From f555dd6503bc4ccd4d13f4e1a1d36fbbfd51c369 Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Tue, 12 Nov 2024 16:47:12 +0000 Subject: [PATCH 609/725] chore(internal): use reexports not destructuring (#1181) --- src/index.ts | 37 +++++++++++++++++-------------------- 1 file changed, 17 insertions(+), 20 deletions(-) diff --git a/src/index.ts b/src/index.ts index c3299e00d..8e7e7804e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -306,25 +306,6 @@ export class OpenAI extends Core.APIClient { static fileFromPath = Uploads.fileFromPath; } -export { - OpenAIError, - APIError, - APIConnectionError, - APIConnectionTimeoutError, - APIUserAbortError, - NotFoundError, - ConflictError, - RateLimitError, - BadRequestError, - AuthenticationError, - InternalServerError, - PermissionDeniedError, - UnprocessableEntityError, -} from './error'; - -export import toFile = Uploads.toFile; -export import fileFromPath = Uploads.fileFromPath; - OpenAI.Completions = Completions; OpenAI.Chat = Chat; OpenAI.Embeddings = Embeddings; @@ -340,7 +321,6 @@ OpenAI.Beta = Beta; OpenAI.Batches = Batches; OpenAI.BatchesPage = BatchesPage; OpenAI.Uploads = UploadsAPIUploads; - export declare namespace OpenAI { export type RequestOptions = Core.RequestOptions; @@ -664,4 +644,21 @@ const API_KEY_SENTINEL = ''; // ---------------------- End Azure ---------------------- +export { toFile, fileFromPath } from 'openai/uploads'; +export { + OpenAIError, + APIError, + APIConnectionError, + APIConnectionTimeoutError, + APIUserAbortError, + NotFoundError, + ConflictError, + RateLimitError, + BadRequestError, + AuthenticationError, + InternalServerError, + PermissionDeniedError, + UnprocessableEntityError, +} from 'openai/error'; + export default OpenAI; From 4ec402790cf3cfbccbf3ef9b61d577b0118977e8 Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Tue, 12 Nov 2024 16:48:27 +0000 Subject: [PATCH 610/725] docs: bump models in example snippets to gpt-4o (#1184) --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index caa3f9d4a..8d30be928 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ const client = new OpenAI({ async function main() { const chatCompletion = await client.chat.completions.create({ messages: [{ role: 'user', content: 'Say this is a test' }], - model: 'gpt-3.5-turbo', + model: 'gpt-4o', }); } @@ -57,7 +57,7 @@ const client = new OpenAI(); async function main() { const stream = await client.chat.completions.create({ - model: 'gpt-4', + model: 'gpt-4o', messages: [{ role: 'user', content: 'Say this is a test' }], stream: true, }); @@ -87,7 +87,7 @@ const client = new OpenAI({ async function main() { const params: OpenAI.Chat.ChatCompletionCreateParams = { messages: [{ role: 'user', content: 'Say this is a test' }], - model: 'gpt-3.5-turbo', + model: 'gpt-4o', }; const chatCompletion: OpenAI.Chat.ChatCompletion = await client.chat.completions.create(params); } @@ -333,7 +333,7 @@ a subclass of `APIError` will be thrown: ```ts async function main() { const job = await client.fineTuning.jobs - .create({ model: 'gpt-3.5-turbo', training_file: 'file-abc123' }) + .create({ model: 'gpt-4o', training_file: 'file-abc123' }) .catch(async (err) => { if (err instanceof OpenAI.APIError) { console.log(err.status); // 400 @@ -415,7 +415,7 @@ const client = new OpenAI({ }); // Or, configure per-request: -await client.chat.completions.create({ messages: [{ role: 'user', content: 'How can I get the name of the current day in Node.js?' }], model: 'gpt-3.5-turbo' }, { +await client.chat.completions.create({ messages: [{ role: 'user', content: 'How can I get the name of the current day in JavaScript?' }], model: 'gpt-4o' }, { maxRetries: 5, }); ``` @@ -432,7 +432,7 @@ const client = new OpenAI({ }); // Override per-request: -await client.chat.completions.create({ messages: [{ role: 'user', content: 'How can I list all files in a directory using Python?' }], model: 'gpt-3.5-turbo' }, { +await client.chat.completions.create({ messages: [{ role: 'user', content: 'How can I list all files in a directory using Python?' }], model: 'gpt-4o' }, { timeout: 5 * 1000, }); ``` @@ -485,13 +485,13 @@ You can also use the `.withResponse()` method to get the raw `Response` along wi const client = new OpenAI(); const response = await client.chat.completions - .create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-3.5-turbo' }) + .create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-4o' }) .asResponse(); console.log(response.headers.get('X-My-Header')); console.log(response.statusText); // access the underlying Response object const { data: chatCompletion, response: raw } = await client.chat.completions - .create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-3.5-turbo' }) + .create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-4o' }) .withResponse(); console.log(raw.headers.get('X-My-Header')); console.log(chatCompletion); From 524b9e82ae13a3b5093dcfbfd1169a798cf99ab4 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 19:59:44 +0000 Subject: [PATCH 611/725] fix(docs): add missing await to pagination example (#1190) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8d30be928..2f05654b4 100644 --- a/README.md +++ b/README.md @@ -467,7 +467,7 @@ for (const fineTuningJob of page.data) { // Convenience methods are provided for manually paginating: while (page.hasNextPage()) { - page = page.getNextPage(); + page = await page.getNextPage(); // ... } ``` From 8ee6c0335673f2ecf84ea11bdfc990adab607e20 Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Fri, 15 Nov 2024 08:31:55 +0000 Subject: [PATCH 612/725] chore(client): drop unused devDependency (#1191) --- package.json | 1 - src/index.ts | 4 ++-- yarn.lock | 40 ---------------------------------------- 3 files changed, 2 insertions(+), 43 deletions(-) diff --git a/package.json b/package.json index 85fbed4f1..8a61d468f 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,6 @@ "prettier": "^3.0.0", "prettier-2": "npm:prettier@^2", "ts-jest": "^29.1.0", - "ts-morph": "^19.0.0", "ts-node": "^10.5.0", "tsc-multi": "^1.1.0", "tsconfig-paths": "^4.0.0", diff --git a/src/index.ts b/src/index.ts index 8e7e7804e..58d7410e4 100644 --- a/src/index.ts +++ b/src/index.ts @@ -644,7 +644,7 @@ const API_KEY_SENTINEL = ''; // ---------------------- End Azure ---------------------- -export { toFile, fileFromPath } from 'openai/uploads'; +export { toFile, fileFromPath } from './uploads'; export { OpenAIError, APIError, @@ -659,6 +659,6 @@ export { InternalServerError, PermissionDeniedError, UnprocessableEntityError, -} from 'openai/error'; +} from './error'; export default OpenAI; diff --git a/yarn.lock b/yarn.lock index 91b22b941..e139e1fbe 100644 --- a/yarn.lock +++ b/yarn.lock @@ -759,16 +759,6 @@ dependencies: "@swc/counter" "^0.1.3" -"@ts-morph/common@~0.20.0": - version "0.20.0" - resolved "https://registry.yarnpkg.com/@ts-morph/common/-/common-0.20.0.tgz#3f161996b085ba4519731e4d24c35f6cba5b80af" - integrity sha512-7uKjByfbPpwuzkstL3L5MQyuXPSKdoNG93Fmi2JoDcTf3pEP731JdRFAduRVkOs8oqxPsXKA+ScrWkdQ8t/I+Q== - dependencies: - fast-glob "^3.2.12" - minimatch "^7.4.3" - mkdirp "^2.1.6" - path-browserify "^1.0.1" - "@tsconfig/node10@^1.0.7": version "1.0.8" resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.8.tgz#c1e4e80d6f964fbecb3359c43bd48b40f7cadad9" @@ -1315,11 +1305,6 @@ co@^4.6.0: resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== -code-block-writer@^12.0.0: - version "12.0.0" - resolved "https://registry.yarnpkg.com/code-block-writer/-/code-block-writer-12.0.0.tgz#4dd58946eb4234105aff7f0035977b2afdc2a770" - integrity sha512-q4dMFMlXtKR3XNBHyMHt/3pwYNA69EDk00lloMOaaUMKPUXBw6lpXtbu3MMVG6/uOihGnRDOlkyqsONEUj60+w== - collect-v8-coverage@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz#c0b29bcd33bcd0779a1344c2136051e6afd3d9e9" @@ -2687,23 +2672,11 @@ minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: dependencies: brace-expansion "^1.1.7" -minimatch@^7.4.3: - version "7.4.6" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-7.4.6.tgz#845d6f254d8f4a5e4fd6baf44d5f10c8448365fb" - integrity sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw== - dependencies: - brace-expansion "^2.0.1" - minimist@^1.2.6: version "1.2.6" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== -mkdirp@^2.1.6: - version "2.1.6" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-2.1.6.tgz#964fbcb12b2d8c5d6fbc62a963ac95a273e2cc19" - integrity sha512-+hEnITedc8LAtIP9u3HJDFIdcLV2vXP33sqLLIzkv1Db1zO/1OxbvYf0Y1OC/S/Qo5dxHXepofhmxL02PsKe+A== - ms@2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" @@ -2867,11 +2840,6 @@ parse-json@^5.2.0: json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" -path-browserify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" - integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== - path-exists@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" @@ -3300,14 +3268,6 @@ ts-jest@^29.1.0: semver "^7.5.3" yargs-parser "^21.0.1" -ts-morph@^19.0.0: - version "19.0.0" - resolved "https://registry.yarnpkg.com/ts-morph/-/ts-morph-19.0.0.tgz#43e95fb0156c3fe3c77c814ac26b7d0be2f93169" - integrity sha512-D6qcpiJdn46tUqV45vr5UGM2dnIEuTGNxVhg0sk5NX11orcouwj6i1bMqZIz2mZTZB1Hcgy7C3oEVhAT+f6mbQ== - dependencies: - "@ts-morph/common" "~0.20.0" - code-block-writer "^12.0.0" - ts-node@^10.5.0: version "10.7.0" resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.7.0.tgz#35d503d0fab3e2baa672a0e94f4b40653c2463f5" From 12f93346857196b93f94865cc3744d769e5e519c Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 18 Nov 2024 10:42:10 +0000 Subject: [PATCH 613/725] chore(internal): spec update (#1195) --- .stats.yml | 2 +- .../audio/transcriptions.test.ts | 2 +- tests/api-resources/beta/assistants.test.ts | 8 +- .../beta/threads/messages.test.ts | 15 +- .../beta/threads/runs/runs.test.ts | 99 +-------- .../beta/threads/threads.test.ts | 198 +----------------- tests/api-resources/chat/completions.test.ts | 10 +- .../fine-tuning/jobs/jobs.test.ts | 25 +-- tests/api-resources/uploads/uploads.test.ts | 9 +- 9 files changed, 22 insertions(+), 346 deletions(-) diff --git a/.stats.yml b/.stats.yml index f368bc881..fdef8d274 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-2f8ca92b9b1879fd535b685e4767338413fcd533d42f3baac13a9c41da3fce35.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-fb9db2d2c1f0d6b39d8ee042db5d5c59acba6ad1daf47c18792c1f5fb24b3401.yml diff --git a/tests/api-resources/audio/transcriptions.test.ts b/tests/api-resources/audio/transcriptions.test.ts index ef2797911..86ef5e576 100644 --- a/tests/api-resources/audio/transcriptions.test.ts +++ b/tests/api-resources/audio/transcriptions.test.ts @@ -31,7 +31,7 @@ describe('resource transcriptions', () => { prompt: 'prompt', response_format: 'json', temperature: 0, - timestamp_granularities: ['word', 'segment'], + timestamp_granularities: ['word'], }); }); }); diff --git a/tests/api-resources/beta/assistants.test.ts b/tests/api-resources/beta/assistants.test.ts index fdc325254..a64465c77 100644 --- a/tests/api-resources/beta/assistants.test.ts +++ b/tests/api-resources/beta/assistants.test.ts @@ -30,15 +30,13 @@ describe('resource assistants', () => { response_format: 'auto', temperature: 1, tool_resources: { - code_interpreter: { file_ids: ['string', 'string', 'string'] }, + code_interpreter: { file_ids: ['string'] }, file_search: { vector_store_ids: ['string'], - vector_stores: [ - { chunking_strategy: { type: 'auto' }, file_ids: ['string', 'string', 'string'], metadata: {} }, - ], + vector_stores: [{ chunking_strategy: { type: 'auto' }, file_ids: ['string'], metadata: {} }], }, }, - tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], + tools: [{ type: 'code_interpreter' }], top_p: 1, }); }); diff --git a/tests/api-resources/beta/threads/messages.test.ts b/tests/api-resources/beta/threads/messages.test.ts index bfbcab1cb..c1f5f7b6e 100644 --- a/tests/api-resources/beta/threads/messages.test.ts +++ b/tests/api-resources/beta/threads/messages.test.ts @@ -27,20 +27,7 @@ describe('resource messages', () => { const response = await client.beta.threads.messages.create('thread_id', { content: 'string', role: 'user', - attachments: [ - { - file_id: 'file_id', - tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], - }, - { - file_id: 'file_id', - tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], - }, - { - file_id: 'file_id', - tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], - }, - ], + attachments: [{ file_id: 'file_id', tools: [{ type: 'code_interpreter' }] }], metadata: {}, }); }); diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts index 352d775c0..4fd8261ac 100644 --- a/tests/api-resources/beta/threads/runs/runs.test.ts +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -29,94 +29,7 @@ describe('resource runs', () => { { content: 'string', role: 'user', - attachments: [ - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - ], - metadata: {}, - }, - { - content: 'string', - role: 'user', - attachments: [ - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - ], - metadata: {}, - }, - { - content: 'string', - role: 'user', - attachments: [ - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - ], + attachments: [{ file_id: 'file_id', tools: [{ type: 'code_interpreter' }] }], metadata: {}, }, ], @@ -130,7 +43,7 @@ describe('resource runs', () => { stream: false, temperature: 1, tool_choice: 'none', - tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], + tools: [{ type: 'code_interpreter' }], top_p: 1, truncation_strategy: { type: 'auto', last_messages: 1 }, }); @@ -214,7 +127,7 @@ describe('resource runs', () => { test('submitToolOutputs: only required params', async () => { const responsePromise = client.beta.threads.runs.submitToolOutputs('thread_id', 'run_id', { - tool_outputs: [{}, {}, {}], + tool_outputs: [{}], }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); @@ -227,11 +140,7 @@ describe('resource runs', () => { test('submitToolOutputs: required and optional params', async () => { const response = await client.beta.threads.runs.submitToolOutputs('thread_id', 'run_id', { - tool_outputs: [ - { output: 'output', tool_call_id: 'tool_call_id' }, - { output: 'output', tool_call_id: 'tool_call_id' }, - { output: 'output', tool_call_id: 'tool_call_id' }, - ], + tool_outputs: [{ output: 'output', tool_call_id: 'tool_call_id' }], stream: false, }); }); diff --git a/tests/api-resources/beta/threads/threads.test.ts b/tests/api-resources/beta/threads/threads.test.ts index dc0a94a7d..aba266316 100644 --- a/tests/api-resources/beta/threads/threads.test.ts +++ b/tests/api-resources/beta/threads/threads.test.ts @@ -36,109 +36,16 @@ describe('resource threads', () => { { content: 'string', role: 'user', - attachments: [ - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - ], - metadata: {}, - }, - { - content: 'string', - role: 'user', - attachments: [ - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - ], - metadata: {}, - }, - { - content: 'string', - role: 'user', - attachments: [ - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - ], + attachments: [{ file_id: 'file_id', tools: [{ type: 'code_interpreter' }] }], metadata: {}, }, ], metadata: {}, tool_resources: { - code_interpreter: { file_ids: ['string', 'string', 'string'] }, + code_interpreter: { file_ids: ['string'] }, file_search: { vector_store_ids: ['string'], - vector_stores: [ - { - chunking_strategy: { type: 'auto' }, - file_ids: ['string', 'string', 'string'], - metadata: {}, - }, - ], + vector_stores: [{ chunking_strategy: { type: 'auto' }, file_ids: ['string'], metadata: {} }], }, }, }, @@ -222,114 +129,25 @@ describe('resource threads', () => { { content: 'string', role: 'user', - attachments: [ - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - ], - metadata: {}, - }, - { - content: 'string', - role: 'user', - attachments: [ - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - ], - metadata: {}, - }, - { - content: 'string', - role: 'user', - attachments: [ - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - { - file_id: 'file_id', - tools: [ - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - { type: 'code_interpreter' }, - ], - }, - ], + attachments: [{ file_id: 'file_id', tools: [{ type: 'code_interpreter' }] }], metadata: {}, }, ], metadata: {}, tool_resources: { - code_interpreter: { file_ids: ['string', 'string', 'string'] }, + code_interpreter: { file_ids: ['string'] }, file_search: { vector_store_ids: ['string'], - vector_stores: [ - { chunking_strategy: { type: 'auto' }, file_ids: ['string', 'string', 'string'], metadata: {} }, - ], + vector_stores: [{ chunking_strategy: { type: 'auto' }, file_ids: ['string'], metadata: {} }], }, }, }, tool_choice: 'none', tool_resources: { - code_interpreter: { file_ids: ['string', 'string', 'string'] }, + code_interpreter: { file_ids: ['string'] }, file_search: { vector_store_ids: ['string'] }, }, - tools: [{ type: 'code_interpreter' }, { type: 'code_interpreter' }, { type: 'code_interpreter' }], + tools: [{ type: 'code_interpreter' }], top_p: 1, truncation_strategy: { type: 'auto', last_messages: 1 }, }); diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 180a1d77f..5dcbf9ad6 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -36,7 +36,7 @@ describe('resource completions', () => { max_completion_tokens: 0, max_tokens: 0, metadata: { foo: 'string' }, - modalities: ['text', 'audio'], + modalities: ['text'], n: 1, parallel_tool_calls: true, prediction: { content: 'string', type: 'content' }, @@ -55,14 +55,6 @@ describe('resource completions', () => { function: { name: 'name', description: 'description', parameters: { foo: 'bar' }, strict: true }, type: 'function', }, - { - function: { name: 'name', description: 'description', parameters: { foo: 'bar' }, strict: true }, - type: 'function', - }, - { - function: { name: 'name', description: 'description', parameters: { foo: 'bar' }, strict: true }, - type: 'function', - }, ], top_logprobs: 0, top_p: 1, diff --git a/tests/api-resources/fine-tuning/jobs/jobs.test.ts b/tests/api-resources/fine-tuning/jobs/jobs.test.ts index 646c2f5cf..0ab09768a 100644 --- a/tests/api-resources/fine-tuning/jobs/jobs.test.ts +++ b/tests/api-resources/fine-tuning/jobs/jobs.test.ts @@ -31,30 +31,7 @@ describe('resource jobs', () => { integrations: [ { type: 'wandb', - wandb: { - project: 'my-wandb-project', - entity: 'entity', - name: 'name', - tags: ['custom-tag', 'custom-tag', 'custom-tag'], - }, - }, - { - type: 'wandb', - wandb: { - project: 'my-wandb-project', - entity: 'entity', - name: 'name', - tags: ['custom-tag', 'custom-tag', 'custom-tag'], - }, - }, - { - type: 'wandb', - wandb: { - project: 'my-wandb-project', - entity: 'entity', - name: 'name', - tags: ['custom-tag', 'custom-tag', 'custom-tag'], - }, + wandb: { project: 'my-wandb-project', entity: 'entity', name: 'name', tags: ['custom-tag'] }, }, ], seed: 42, diff --git a/tests/api-resources/uploads/uploads.test.ts b/tests/api-resources/uploads/uploads.test.ts index e4e3c6d30..c9ea4ddd7 100644 --- a/tests/api-resources/uploads/uploads.test.ts +++ b/tests/api-resources/uploads/uploads.test.ts @@ -53,9 +53,7 @@ describe('resource uploads', () => { }); test('complete: only required params', async () => { - const responsePromise = client.uploads.complete('upload_abc123', { - part_ids: ['string', 'string', 'string'], - }); + const responsePromise = client.uploads.complete('upload_abc123', { part_ids: ['string'] }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -66,9 +64,6 @@ describe('resource uploads', () => { }); test('complete: required and optional params', async () => { - const response = await client.uploads.complete('upload_abc123', { - part_ids: ['string', 'string', 'string'], - md5: 'md5', - }); + const response = await client.uploads.complete('upload_abc123', { part_ids: ['string'], md5: 'md5' }); }); }); From 6961c37f2e581bcc12ec2bbe77df2b9b260fe297 Mon Sep 17 00:00:00 2001 From: Young-Jin Park Date: Mon, 18 Nov 2024 16:11:29 -0500 Subject: [PATCH 614/725] feat: bump model in all example snippets to gpt-4o --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2f05654b4..c363eaa98 100644 --- a/README.md +++ b/README.md @@ -173,7 +173,7 @@ const openai = new OpenAI(); async function main() { const stream = await openai.beta.chat.completions.stream({ - model: 'gpt-4', + model: 'gpt-4o', messages: [{ role: 'user', content: 'Say this is a test' }], stream: true, }); @@ -226,7 +226,7 @@ const client = new OpenAI(); async function main() { const runner = client.beta.chat.completions .runTools({ - model: 'gpt-3.5-turbo', + model: 'gpt-4o', messages: [{ role: 'user', content: 'How is the weather this week?' }], tools: [ { @@ -368,7 +368,7 @@ Error codes are as followed: All object responses in the SDK provide a `_request_id` property which is added from the `x-request-id` response header so that you can quickly log failing requests and report them back to OpenAI. ```ts -const completion = await client.chat.completions.create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-4' }); +const completion = await client.chat.completions.create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-4o' }); console.log(completion._request_id) // req_123 ``` @@ -392,7 +392,7 @@ const azureADTokenProvider = getBearerTokenProvider(credential, scope); const openai = new AzureOpenAI({ azureADTokenProvider }); const result = await openai.chat.completions.create({ - model: 'gpt-4-1106-preview', + model: 'gpt-4o', messages: [{ role: 'user', content: 'Say hello!' }], }); From ebdb4f72cc01afbee649aca009fdaf413e61c507 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 19 Nov 2024 17:57:52 +0000 Subject: [PATCH 615/725] docs: improve jsr documentation (#1197) --- README.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c363eaa98..5d6ba1a8b 100644 --- a/README.md +++ b/README.md @@ -14,16 +14,21 @@ To learn how to use the OpenAI API, check out our [API Reference](https://platfo npm install openai ``` -You can also import from jsr: +### Installation from JSR - +```sh +deno add jsr:@openai/openai +npx jsr add @openai/openai +``` + +These commands will make the module importable from the `@openai/openai` scope: + +You can also [import directly from JSR](https://jsr.io/docs/using-packages#importing-with-jsr-specifiers) without an install step if you're using the Deno JavaScript runtime: ```ts import OpenAI from 'jsr:@openai/openai'; ``` - - ## Usage The full API of this library can be found in [api.md file](api.md) along with many [code examples](https://github.com/openai/openai-node/tree/master/examples). The code below shows how to get started using the chat completions API. @@ -622,7 +627,7 @@ TypeScript >= 4.5 is supported. The following runtimes are supported: - Node.js 18 LTS or later ([non-EOL](https://endoflife.date/nodejs)) versions. -- Deno v1.28.0 or higher, using `import OpenAI from "npm:openai"`. +- Deno v1.28.0 or higher. - Bun 1.0 or later. - Cloudflare Workers. - Vercel Edge Runtime. From e34981c00f2f0360baffe870bcc38786030671bf Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 19 Nov 2024 23:41:02 +0000 Subject: [PATCH 616/725] docs: change readme title (#1198) --- README.md | 2 +- scripts/build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5d6ba1a8b..d89e121f1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# OpenAI Node API Library +# OpenAI TypeScript and JavaScript API Library [![NPM version](https://img.shields.io/npm/v/openai.svg)](https://npmjs.org/package/openai) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/openai) [![JSR Version](https://jsr.io/badges/@openai/openai)](https://jsr.io/@openai/openai) diff --git a/scripts/build b/scripts/build index 0246c90e3..4e86f99e2 100755 --- a/scripts/build +++ b/scripts/build @@ -32,7 +32,7 @@ npm exec tsc-multi # copy over handwritten .js/.mjs/.d.ts files cp src/_shims/*.{d.ts,js,mjs,md} dist/_shims cp src/_shims/auto/*.{d.ts,js,mjs} dist/_shims/auto -# we need to add exports = module.exports = OpenAI Node to index.js; +# we need to add exports = module.exports = OpenAI to index.js; # No way to get that from index.ts because it would cause compile errors # when building .mjs node scripts/utils/fix-index-exports.cjs From 3968ef1c4fa860ff246e0e803808752b261c18ce Mon Sep 17 00:00:00 2001 From: Eric He Date: Wed, 20 Nov 2024 02:35:46 -0800 Subject: [PATCH 617/725] docs(readme): fix incorrect fileBatches.uploadAndPoll params (#1200) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d89e121f1..ec17427a6 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ const fileList = [ ... ]; -const batch = await openai.vectorStores.fileBatches.uploadAndPoll(vectorStore.id, fileList); +const batch = await openai.vectorStores.fileBatches.uploadAndPoll(vectorStore.id, {files: fileList}); ``` ### Streaming Helpers From 0feeafd21ba4b6281cc3b9dafa2919b1e2e4d1c3 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 20 Nov 2024 18:17:02 +0000 Subject: [PATCH 618/725] feat(api): add gpt-4o-2024-11-20 model (#1201) --- .stats.yml | 2 +- src/resources/batches.ts | 2 +- src/resources/chat/chat.ts | 1 + src/resources/chat/completions.ts | 5 +++-- src/resources/files.ts | 2 +- 5 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.stats.yml b/.stats.yml index fdef8d274..4827e5388 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-fb9db2d2c1f0d6b39d8ee042db5d5c59acba6ad1daf47c18792c1f5fb24b3401.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-aa9b01fc0c17eb0cbc200533fc20d6a49c5e764ceaf8049e08b294532be6e9ff.yml diff --git a/src/resources/batches.ts b/src/resources/batches.ts index e68e7569c..ec5ca6331 100644 --- a/src/resources/batches.ts +++ b/src/resources/batches.ts @@ -232,7 +232,7 @@ export interface BatchCreateParams { * Your input file must be formatted as a * [JSONL file](https://platform.openai.com/docs/api-reference/batch/request-input), * and must be uploaded with the purpose `batch`. The file can contain up to 50,000 - * requests, and can be up to 100 MB in size. + * requests, and can be up to 200 MB in size. */ input_file_id: string; diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 351430f8c..09cd3d123 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -49,6 +49,7 @@ export type ChatModel = | 'o1-mini' | 'o1-mini-2024-09-12' | 'gpt-4o' + | 'gpt-4o-2024-11-20' | 'gpt-4o-2024-08-06' | 'gpt-4o-2024-05-13' | 'gpt-4o-realtime-preview' diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 9d344744a..8e9a4385e 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -250,8 +250,9 @@ export interface ChatCompletionAudioParam { format: 'wav' | 'mp3' | 'flac' | 'opus' | 'pcm16'; /** - * The voice the model uses to respond. Supported voices are `alloy`, `ash`, - * `ballad`, `coral`, `echo`, `sage`, `shimmer`, and `verse`. + * The voice the model uses to respond. Supported voices are `ash`, `ballad`, + * `coral`, `sage`, and `verse` (also supported but not recommended are `alloy`, + * `echo`, and `shimmer`; these voices are less expressive). */ voice: 'alloy' | 'ash' | 'ballad' | 'coral' | 'echo' | 'sage' | 'shimmer' | 'verse'; } diff --git a/src/resources/files.ts b/src/resources/files.ts index 48d8f8747..42a7bdfba 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -25,7 +25,7 @@ export class Files extends APIResource { * [completions](https://platform.openai.com/docs/api-reference/fine-tuning/completions-input) * models. * - * The Batch API only supports `.jsonl` files up to 100 MB in size. The input also + * The Batch API only supports `.jsonl` files up to 200 MB in size. The input also * has a specific required * [format](https://platform.openai.com/docs/api-reference/batch/request-input). * From 1e9391bc17c29287f2b7bb8acf77390f3e727ad2 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 20 Nov 2024 18:17:37 +0000 Subject: [PATCH 619/725] release: 4.73.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 33 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e53c9dd88..d3e848620 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.72.0" + ".": "4.73.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 951ef0784..51741f552 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # Changelog +## 4.73.0 (2024-11-20) + +Full Changelog: [v4.72.0...v4.73.0](https://github.com/openai/openai-node/compare/v4.72.0...v4.73.0) + +### Features + +* **api:** add gpt-4o-2024-11-20 model ([#1201](https://github.com/openai/openai-node/issues/1201)) ([0feeafd](https://github.com/openai/openai-node/commit/0feeafd21ba4b6281cc3b9dafa2919b1e2e4d1c3)) +* bump model in all example snippets to gpt-4o ([6961c37](https://github.com/openai/openai-node/commit/6961c37f2e581bcc12ec2bbe77df2b9b260fe297)) + + +### Bug Fixes + +* **docs:** add missing await to pagination example ([#1190](https://github.com/openai/openai-node/issues/1190)) ([524b9e8](https://github.com/openai/openai-node/commit/524b9e82ae13a3b5093dcfbfd1169a798cf99ab4)) + + +### Chores + +* **client:** drop unused devDependency ([#1191](https://github.com/openai/openai-node/issues/1191)) ([8ee6c03](https://github.com/openai/openai-node/commit/8ee6c0335673f2ecf84ea11bdfc990adab607e20)) +* **internal:** spec update ([#1195](https://github.com/openai/openai-node/issues/1195)) ([12f9334](https://github.com/openai/openai-node/commit/12f93346857196b93f94865cc3744d769e5e519c)) +* **internal:** use reexports not destructuring ([#1181](https://github.com/openai/openai-node/issues/1181)) ([f555dd6](https://github.com/openai/openai-node/commit/f555dd6503bc4ccd4d13f4e1a1d36fbbfd51c369)) + + +### Documentation + +* bump models in example snippets to gpt-4o ([#1184](https://github.com/openai/openai-node/issues/1184)) ([4ec4027](https://github.com/openai/openai-node/commit/4ec402790cf3cfbccbf3ef9b61d577b0118977e8)) +* change readme title ([#1198](https://github.com/openai/openai-node/issues/1198)) ([e34981c](https://github.com/openai/openai-node/commit/e34981c00f2f0360baffe870bcc38786030671bf)) +* improve jsr documentation ([#1197](https://github.com/openai/openai-node/issues/1197)) ([ebdb4f7](https://github.com/openai/openai-node/commit/ebdb4f72cc01afbee649aca009fdaf413e61c507)) +* **readme:** fix incorrect fileBatches.uploadAndPoll params ([#1200](https://github.com/openai/openai-node/issues/1200)) ([3968ef1](https://github.com/openai/openai-node/commit/3968ef1c4fa860ff246e0e803808752b261c18ce)) + ## 4.72.0 (2024-11-12) Full Changelog: [v4.71.1...v4.72.0](https://github.com/openai/openai-node/compare/v4.71.1...v4.72.0) diff --git a/jsr.json b/jsr.json index ad1751852..f09f5bbab 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.72.0", + "version": "4.73.0", "exports": "./index.ts", "publish": { "exclude": [ diff --git a/package.json b/package.json index 8a61d468f..13e8ee3bc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.72.0", + "version": "4.73.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index cad6e2320..4e3a33b17 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.72.0'; // x-release-please-version +export const VERSION = '4.73.0'; // x-release-please-version From aa5443624b4dc206ede08a743ec276b3a576861f Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Fri, 22 Nov 2024 19:56:39 +0000 Subject: [PATCH 620/725] docs(readme): mention `.withResponse()` for streaming request ID (#1202) --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index ec17427a6..ac9c84a42 100644 --- a/README.md +++ b/README.md @@ -377,6 +377,18 @@ const completion = await client.chat.completions.create({ messages: [{ role: 'us console.log(completion._request_id) // req_123 ``` +You can also access the Request ID using the `.withResponse()` method: + +```ts +const { data: stream, request_id } = await openai.chat.completions + .create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + stream: true, + }) + .withResponse(); +``` + ## Microsoft Azure OpenAI To use this library with [Azure OpenAI](https://learn.microsoft.com/azure/ai-services/openai/overview), use the `AzureOpenAI` From 3f8634ed111782e3090a25d1d8640e050fb2c45b Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 25 Nov 2024 05:07:22 +0000 Subject: [PATCH 621/725] release: 4.73.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d3e848620..92fcace17 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.73.0" + ".": "4.73.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 51741f552..c32a0ce32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.73.1 (2024-11-25) + +Full Changelog: [v4.73.0...v4.73.1](https://github.com/openai/openai-node/compare/v4.73.0...v4.73.1) + +### Documentation + +* **readme:** mention `.withResponse()` for streaming request ID ([#1202](https://github.com/openai/openai-node/issues/1202)) ([b6800d4](https://github.com/openai/openai-node/commit/b6800d4dea2729fe3b0864171ce8fb3b2cc1b21c)) + ## 4.73.0 (2024-11-20) Full Changelog: [v4.72.0...v4.73.0](https://github.com/openai/openai-node/compare/v4.72.0...v4.73.0) diff --git a/jsr.json b/jsr.json index f09f5bbab..0bd5eab3f 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.73.0", + "version": "4.73.1", "exports": "./index.ts", "publish": { "exclude": [ diff --git a/package.json b/package.json index 13e8ee3bc..685d59f56 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.73.0", + "version": "4.73.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 4e3a33b17..28fbb6572 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.73.0'; // x-release-please-version +export const VERSION = '4.73.1'; // x-release-please-version From 2628a0bc6a380478889d94cf6f08cb179eab9e9c Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 27 Nov 2024 16:15:42 +0000 Subject: [PATCH 622/725] feat(internal): make git install file structure match npm (#1204) --- package.json | 2 +- scripts/utils/check-is-in-git-install.sh | 2 +- scripts/utils/git-swap.sh | 13 +++++++++++++ 3 files changed, 15 insertions(+), 2 deletions(-) create mode 100755 scripts/utils/git-swap.sh diff --git a/package.json b/package.json index 685d59f56..87004d273 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "build": "./scripts/build", "prepublishOnly": "echo 'to publish, run yarn build && (cd dist; yarn publish)' && exit 1", "format": "prettier --write --cache --cache-strategy metadata . !dist", - "prepare": "if ./scripts/utils/check-is-in-git-install.sh; then ./scripts/build; fi", + "prepare": "if ./scripts/utils/check-is-in-git-install.sh; then ./scripts/build && ./scripts/utils/git-swap.sh; fi", "tsn": "ts-node -r tsconfig-paths/register", "lint": "./scripts/lint", "fix": "./scripts/format" diff --git a/scripts/utils/check-is-in-git-install.sh b/scripts/utils/check-is-in-git-install.sh index 36bcedc20..1354eb432 100755 --- a/scripts/utils/check-is-in-git-install.sh +++ b/scripts/utils/check-is-in-git-install.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Check if you happen to call prepare for a repository that's already in node_modules. [ "$(basename "$(dirname "$PWD")")" = 'node_modules' ] || # The name of the containing directory that 'npm` uses, which looks like diff --git a/scripts/utils/git-swap.sh b/scripts/utils/git-swap.sh new file mode 100755 index 000000000..79d1888eb --- /dev/null +++ b/scripts/utils/git-swap.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash +set -exuo pipefail +# the package is published to NPM from ./dist +# we want the final file structure for git installs to match the npm installs, so we + +# delete everything except ./dist and ./node_modules +find . -maxdepth 1 -mindepth 1 ! -name 'dist' ! -name 'node_modules' -exec rm -rf '{}' + + +# move everything from ./dist to . +mv dist/* . + +# delete the now-empty ./dist +rmdir dist From d40c61cfc8c4f5f6aea4ffdd3ea3909e02b92bd5 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 2 Dec 2024 05:07:36 +0000 Subject: [PATCH 623/725] release: 4.74.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 92fcace17..8edd9c22e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.73.1" + ".": "4.74.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c32a0ce32..595091ff3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.74.0 (2024-12-02) + +Full Changelog: [v4.73.1...v4.74.0](https://github.com/openai/openai-node/compare/v4.73.1...v4.74.0) + +### Features + +* **internal:** make git install file structure match npm ([#1204](https://github.com/openai/openai-node/issues/1204)) ([e7c4c6d](https://github.com/openai/openai-node/commit/e7c4c6d23adbe52300053a8d35db6e341c438703)) + ## 4.73.1 (2024-11-25) Full Changelog: [v4.73.0...v4.73.1](https://github.com/openai/openai-node/compare/v4.73.0...v4.73.1) diff --git a/jsr.json b/jsr.json index 0bd5eab3f..eb073e7e6 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.73.1", + "version": "4.74.0", "exports": "./index.ts", "publish": { "exclude": [ diff --git a/package.json b/package.json index 87004d273..7e188774a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.73.1", + "version": "4.74.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 28fbb6572..b8dd781be 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.73.1'; // x-release-please-version +export const VERSION = '4.74.0'; // x-release-please-version From d0e210dd43b8cfbc804111b9923a26dd30bcc87f Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 02:02:23 +0000 Subject: [PATCH 624/725] feat: improve docs for jsr README.md (#1208) --- scripts/build-deno | 2 + scripts/utils/convert-jsr-readme.cjs | 140 +++++++++++++++++++++++++++ 2 files changed, 142 insertions(+) create mode 100644 scripts/utils/convert-jsr-readme.cjs diff --git a/scripts/build-deno b/scripts/build-deno index dfce83548..bce31078e 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -25,3 +25,5 @@ done for file in README.md LICENSE CHANGELOG.md; do if [ -e "${file}" ]; then cp "${file}" dist-deno; fi done + +node scripts/utils/convert-jsr-readme.cjs ./dist-deno/README.md diff --git a/scripts/utils/convert-jsr-readme.cjs b/scripts/utils/convert-jsr-readme.cjs new file mode 100644 index 000000000..f9d089c73 --- /dev/null +++ b/scripts/utils/convert-jsr-readme.cjs @@ -0,0 +1,140 @@ +const fs = require('fs'); +const { parse } = require('@typescript-eslint/parser'); +const { TSError } = require('@typescript-eslint/typescript-estree'); + +/** + * Quick and dirty AST traversal + */ +function traverse(node, visitor) { + if (!node || typeof node.type !== 'string') return; + visitor.node?.(node); + visitor[node.type]?.(node); + for (const key in node) { + const value = node[key]; + if (Array.isArray(value)) { + for (const elem of value) traverse(elem, visitor); + } else if (value instanceof Object) { + traverse(value, visitor); + } + } +} + +/** + * Helper method for replacing arbitrary ranges of text in input code. + */ +function replaceRanges(code, replacer) { + const replacements = []; + replacer({ replace: (range, replacement) => replacements.push({ range, replacement }) }); + + if (!replacements.length) return code; + replacements.sort((a, b) => a.range[0] - b.range[0]); + const overlapIndex = replacements.findIndex( + (r, index) => index > 0 && replacements[index - 1].range[1] > r.range[0], + ); + if (overlapIndex >= 0) { + throw new Error( + `replacements overlap: ${JSON.stringify(replacements[overlapIndex - 1])} and ${JSON.stringify( + replacements[overlapIndex], + )}`, + ); + } + + const parts = []; + let end = 0; + for (const { + range: [from, to], + replacement, + } of replacements) { + if (from > end) parts.push(code.substring(end, from)); + parts.push(replacement); + end = to; + } + if (end < code.length) parts.push(code.substring(end)); + return parts.join(''); +} + +function replaceProcessEnv(content) { + // Replace process.env['KEY'] and process.env.KEY with Deno.env.get('KEY') + return content.replace(/process\.env(?:\.|\[['"])(.+?)(?:['"]\])/g, "Deno.env.get('$1')"); +} + +function replaceProcessStdout(content) { + return content.replace(/process\.stdout.write\(([^)]+)\)/g, 'Deno.stdout.writeSync($1)'); +} + +function replaceInstallationDirections(content) { + // Remove npm installation section + return content.replace(/```sh\nnpm install.*?\n```.*### Installation from JSR\n\n/s, ''); +} + +/** + * Maps over module paths in imports and exports + */ +function replaceImports(code, config) { + try { + const ast = parse(code, { sourceType: 'module', range: true }); + return replaceRanges(code, ({ replace }) => + traverse(ast, { + node(node) { + switch (node.type) { + case 'ImportDeclaration': + case 'ExportNamedDeclaration': + case 'ExportAllDeclaration': + case 'ImportExpression': + if (node.source) { + const { range, value } = node.source; + if (value.startsWith(config.npm)) { + replace(range, JSON.stringify(value.replace(config.npm, config.jsr))); + } + } + } + }, + }), + ); + } catch (e) { + if (e instanceof TSError) { + // This can error if the code block is not valid TS, in this case give up trying to transform the imports. + console.warn(`Original codeblock could not be parsed, replace import skipped: ${e}\n\n${code}`); + return code; + } + throw e; + } +} + +function processReadme(config, file) { + try { + let readmeContent = fs.readFileSync(file, 'utf8'); + + // First replace installation directions + readmeContent = replaceInstallationDirections(readmeContent); + + // Replace content in all code blocks with a single regex + readmeContent = readmeContent.replaceAll( + /```(?:typescript|ts|javascript|js)\n([\s\S]*?)```/g, + (match, codeBlock) => { + try { + let transformedCode = codeBlock.trim(); + transformedCode = replaceImports(transformedCode, config); + transformedCode = replaceProcessEnv(transformedCode); + transformedCode = replaceProcessStdout(transformedCode); + return '```typescript\n' + transformedCode + '\n```'; + } catch (error) { + console.warn(`Failed to transform code block: ${error}\n\n${codeBlock}`); + return match; // Return original code block if transformation fails + } + }, + ); + + fs.writeFileSync(file, readmeContent); + } catch (error) { + console.error('Error processing README:', error); + throw error; + } +} + +const config = { + npm: 'openai', + jsr: '@openai/openai', +}; + +processReadme(config, process.argv[2]); From ddb27b660950735f13934759c3db049bcf4dafd5 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 05:07:20 +0000 Subject: [PATCH 625/725] release: 4.75.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8edd9c22e..6258f1481 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.74.0" + ".": "4.75.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 595091ff3..2d91a77c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.75.0 (2024-12-03) + +Full Changelog: [v4.74.0...v4.75.0](https://github.com/openai/openai-node/compare/v4.74.0...v4.75.0) + +### Features + +* improve docs for jsr README.md ([#1208](https://github.com/openai/openai-node/issues/1208)) ([338527e](https://github.com/openai/openai-node/commit/338527e40361e2de899a63f280d4ec2db5e87f3c)) + ## 4.74.0 (2024-12-02) Full Changelog: [v4.73.1...v4.74.0](https://github.com/openai/openai-node/compare/v4.73.1...v4.74.0) diff --git a/jsr.json b/jsr.json index eb073e7e6..a394539d1 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.74.0", + "version": "4.75.0", "exports": "./index.ts", "publish": { "exclude": [ diff --git a/package.json b/package.json index 7e188774a..5738871a3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.74.0", + "version": "4.75.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index b8dd781be..82fc52958 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.74.0'; // x-release-please-version +export const VERSION = '4.75.0'; // x-release-please-version From 0f74bf4576ed26884f9ef9148bd854e60250c1a9 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 4 Dec 2024 20:20:25 +0000 Subject: [PATCH 626/725] chore: bump openapi url (#1210) --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index 4827e5388..19920c8be 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-aa9b01fc0c17eb0cbc200533fc20d6a49c5e764ceaf8049e08b294532be6e9ff.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-d702cba829ceda336f44d0eb89ce61dba353849a40f0193e7007439345daf1bb.yml From f19c56e6087423cb2ef20aaa6b597467f4d81e48 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 4 Dec 2024 20:53:30 +0000 Subject: [PATCH 627/725] feat(api): updates (#1212) --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index 19920c8be..3cc042fe0 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-d702cba829ceda336f44d0eb89ce61dba353849a40f0193e7007439345daf1bb.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-2e0e0678be19d1118fd796af291822075e40538dba326611e177e9f3dc245a53.yml From fbd968576357e635e541a3475a67fb741f603292 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 5 Dec 2024 05:07:39 +0000 Subject: [PATCH 628/725] release: 4.76.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 17 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6258f1481..1cc8c9627 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.75.0" + ".": "4.76.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d91a77c9..e68b45e8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.76.0 (2024-12-05) + +Full Changelog: [v4.75.0...v4.76.0](https://github.com/openai/openai-node/compare/v4.75.0...v4.76.0) + +### Features + +* **api:** updates ([#1212](https://github.com/openai/openai-node/issues/1212)) ([e0fedf2](https://github.com/openai/openai-node/commit/e0fedf2c5a91d0c03d8dad6854b366f77eab4923)) + + +### Chores + +* bump openapi url ([#1210](https://github.com/openai/openai-node/issues/1210)) ([3fa95a4](https://github.com/openai/openai-node/commit/3fa95a429d4b2adecce35a7b96b73f6d5e88eeeb)) + ## 4.75.0 (2024-12-03) Full Changelog: [v4.74.0...v4.75.0](https://github.com/openai/openai-node/compare/v4.74.0...v4.75.0) diff --git a/jsr.json b/jsr.json index a394539d1..2c6820969 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.75.0", + "version": "4.76.0", "exports": "./index.ts", "publish": { "exclude": [ diff --git a/package.json b/package.json index 5738871a3..fae301ee7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.75.0", + "version": "4.76.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 82fc52958..b4cc35ca9 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.75.0'; // x-release-please-version +export const VERSION = '4.76.0'; // x-release-please-version From c35555790a7cba54517f43e080d2b2dc6d8ea404 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 9 Dec 2024 18:32:44 +0000 Subject: [PATCH 629/725] chore(internal): remove unnecessary getRequestClient function (#1215) --- src/core.ts | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/src/core.ts b/src/core.ts index 0c8e69ffc..803496412 100644 --- a/src/core.ts +++ b/src/core.ts @@ -558,19 +558,13 @@ export abstract class APIClient { const timeout = setTimeout(() => controller.abort(), ms); return ( - this.getRequestClient() - // use undefined this binding; fetch errors if bound to something else in browser/cloudflare - .fetch.call(undefined, url, { signal: controller.signal as any, ...options }) - .finally(() => { - clearTimeout(timeout); - }) + // use undefined this binding; fetch errors if bound to something else in browser/cloudflare + this.fetch.call(undefined, url, { signal: controller.signal as any, ...options }).finally(() => { + clearTimeout(timeout); + }) ); } - protected getRequestClient(): RequestClient { - return { fetch: this.fetch }; - } - private shouldRetry(response: Response): boolean { // Note this is not a standard header. const shouldRetryHeader = response.headers.get('x-should-retry'); From fb4820e04a9d579e9a8913dd98cc29cf32a9a7cc Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 10 Dec 2024 13:57:28 +0000 Subject: [PATCH 630/725] chore(internal): bump cross-spawn to v7.0.6 (#1217) Note: it is a dev transitive dependency. --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index e139e1fbe..f86935095 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1370,9 +1370,9 @@ create-require@^1.1.0: integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== cross-spawn@^7.0.2, cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + version "7.0.6" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" + integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== dependencies: path-key "^3.1.0" shebang-command "^2.0.0" From 6e8c1d06dcf098ec3dabe1128d29b22eee4f4b58 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 10 Dec 2024 13:58:00 +0000 Subject: [PATCH 631/725] release: 4.76.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 13 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1cc8c9627..10a72c4fa 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.76.0" + ".": "4.76.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e68b45e8a..7ea1f7f7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 4.76.1 (2024-12-10) + +Full Changelog: [v4.76.0...v4.76.1](https://github.com/openai/openai-node/compare/v4.76.0...v4.76.1) + +### Chores + +* **internal:** bump cross-spawn to v7.0.6 ([#1217](https://github.com/openai/openai-node/issues/1217)) ([c07ad29](https://github.com/openai/openai-node/commit/c07ad298d58e5aeaf816ee3de65fd59bf3fc8b66)) +* **internal:** remove unnecessary getRequestClient function ([#1215](https://github.com/openai/openai-node/issues/1215)) ([bef3925](https://github.com/openai/openai-node/commit/bef392526cd339f45c574bc476649c77be36c612)) + ## 4.76.0 (2024-12-05) Full Changelog: [v4.75.0...v4.76.0](https://github.com/openai/openai-node/compare/v4.75.0...v4.76.0) diff --git a/jsr.json b/jsr.json index 2c6820969..3fa6b07da 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.76.0", + "version": "4.76.1", "exports": "./index.ts", "publish": { "exclude": [ diff --git a/package.json b/package.json index fae301ee7..ddffb2c6a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.76.0", + "version": "4.76.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index b4cc35ca9..4f8b7224e 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.76.0'; // x-release-please-version +export const VERSION = '4.76.1'; // x-release-please-version From 94ef9d75f20699e80c81fb0defd31dc62d8d3585 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Tue, 10 Dec 2024 22:25:12 +0000 Subject: [PATCH 632/725] chore(types): nicer error class types + jsdocs (#1219) --- src/error.ts | 64 ++++++++++++++++++++-------------------------------- 1 file changed, 24 insertions(+), 40 deletions(-) diff --git a/src/error.ts b/src/error.ts index 72b4f7bfd..f3dc57610 100644 --- a/src/error.ts +++ b/src/error.ts @@ -4,10 +4,17 @@ import { castToError, Headers } from './core'; export class OpenAIError extends Error {} -export class APIError extends OpenAIError { - readonly status: number | undefined; - readonly headers: Headers | undefined; - readonly error: Object | undefined; +export class APIError< + TStatus extends number | undefined = number | undefined, + THeaders extends Headers | undefined = Headers | undefined, + TError extends Object | undefined = Object | undefined, +> extends OpenAIError { + /** HTTP status for the response that caused the error */ + readonly status: TStatus; + /** HTTP headers for the response that caused the error */ + readonly headers: THeaders; + /** JSON body of the response that caused the error */ + readonly error: TError; readonly code: string | null | undefined; readonly param: string | null | undefined; @@ -15,19 +22,14 @@ export class APIError extends OpenAIError { readonly request_id: string | null | undefined; - constructor( - status: number | undefined, - error: Object | undefined, - message: string | undefined, - headers: Headers | undefined, - ) { + constructor(status: TStatus, error: TError, message: string | undefined, headers: THeaders) { super(`${APIError.makeMessage(status, error, message)}`); this.status = status; this.headers = headers; this.request_id = headers?.['x-request-id']; + this.error = error; const data = error as Record; - this.error = data; this.code = data?.['code']; this.param = data?.['param']; this.type = data?.['type']; @@ -60,7 +62,7 @@ export class APIError extends OpenAIError { message: string | undefined, headers: Headers | undefined, ): APIError { - if (!status) { + if (!status || !headers) { return new APIConnectionError({ message, cause: castToError(errorResponse) }); } @@ -102,17 +104,13 @@ export class APIError extends OpenAIError { } } -export class APIUserAbortError extends APIError { - override readonly status: undefined = undefined; - +export class APIUserAbortError extends APIError { constructor({ message }: { message?: string } = {}) { super(undefined, undefined, message || 'Request was aborted.', undefined); } } -export class APIConnectionError extends APIError { - override readonly status: undefined = undefined; - +export class APIConnectionError extends APIError { constructor({ message, cause }: { message?: string | undefined; cause?: Error | undefined }) { super(undefined, undefined, message || 'Connection error.', undefined); // in some environments the 'cause' property is already declared @@ -127,35 +125,21 @@ export class APIConnectionTimeoutError extends APIConnectionError { } } -export class BadRequestError extends APIError { - override readonly status: 400 = 400; -} +export class BadRequestError extends APIError<400, Headers> {} -export class AuthenticationError extends APIError { - override readonly status: 401 = 401; -} +export class AuthenticationError extends APIError<401, Headers> {} -export class PermissionDeniedError extends APIError { - override readonly status: 403 = 403; -} +export class PermissionDeniedError extends APIError<403, Headers> {} -export class NotFoundError extends APIError { - override readonly status: 404 = 404; -} +export class NotFoundError extends APIError<404, Headers> {} -export class ConflictError extends APIError { - override readonly status: 409 = 409; -} +export class ConflictError extends APIError<409, Headers> {} -export class UnprocessableEntityError extends APIError { - override readonly status: 422 = 422; -} +export class UnprocessableEntityError extends APIError<422, Headers> {} -export class RateLimitError extends APIError { - override readonly status: 429 = 429; -} +export class RateLimitError extends APIError<429, Headers> {} -export class InternalServerError extends APIError {} +export class InternalServerError extends APIError {} export class LengthFinishReasonError extends OpenAIError { constructor() { From f13fed4137bbbe2e6e0a83c1820ccdeecb6ddf01 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 15:17:57 +0000 Subject: [PATCH 633/725] chore(internal): update isAbsoluteURL (#1223) --- src/core.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core.ts b/src/core.ts index 803496412..e1a93f272 100644 --- a/src/core.ts +++ b/src/core.ts @@ -1013,8 +1013,8 @@ export const safeJSON = (text: string) => { } }; -// https://stackoverflow.com/a/19709846 -const startsWithSchemeRegexp = new RegExp('^(?:[a-z]+:)?//', 'i'); +// https://url.spec.whatwg.org/#url-scheme-string +const startsWithSchemeRegexp = /^[a-z][a-z0-9+.-]*:/i; const isAbsoluteURL = (url: string): boolean => { return startsWithSchemeRegexp.test(url); }; From 6608f957b62a734c93c006bade5e3b0b8b577c4c Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 05:07:38 +0000 Subject: [PATCH 634/725] release: 4.76.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 13 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 10a72c4fa..47a7d26b6 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.76.1" + ".": "4.76.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ea1f7f7f..27946ddea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 4.76.2 (2024-12-12) + +Full Changelog: [v4.76.1...v4.76.2](https://github.com/openai/openai-node/compare/v4.76.1...v4.76.2) + +### Chores + +* **internal:** update isAbsoluteURL ([#1223](https://github.com/openai/openai-node/issues/1223)) ([e908ed7](https://github.com/openai/openai-node/commit/e908ed759996fb7706baf46d094fc77419423971)) +* **types:** nicer error class types + jsdocs ([#1219](https://github.com/openai/openai-node/issues/1219)) ([576d24c](https://github.com/openai/openai-node/commit/576d24cc4b3d766dfe28a6031bdc24ac1b711655)) + ## 4.76.1 (2024-12-10) Full Changelog: [v4.76.0...v4.76.1](https://github.com/openai/openai-node/compare/v4.76.0...v4.76.1) diff --git a/jsr.json b/jsr.json index 3fa6b07da..101edee15 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.76.1", + "version": "4.76.2", "exports": "./index.ts", "publish": { "exclude": [ diff --git a/package.json b/package.json index ddffb2c6a..53b82f070 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.76.1", + "version": "4.76.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 4f8b7224e..7117b1feb 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.76.1'; // x-release-please-version +export const VERSION = '4.76.2'; // x-release-please-version From 28649f8de711c6379edb6b9e656a9ac3bafdf763 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Fri, 13 Dec 2024 09:43:39 +0000 Subject: [PATCH 635/725] chore(internal): better ecosystem test debugging --- ecosystem-tests/cli.ts | 4 ++++ package.json | 3 ++- yarn.lock | 25 +++++++++++++++++++++++++ 3 files changed, 31 insertions(+), 1 deletion(-) diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index 4803b47c2..00120e5f9 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -4,6 +4,10 @@ import yargs from 'yargs'; import assert from 'assert'; import path from 'path'; +// @ts-ignore +var SegfaultHandler = require('segfault-handler'); +SegfaultHandler.registerHandler('crash.log'); + const TAR_NAME = 'openai.tgz'; const PACK_FOLDER = '.pack'; const PACK_FILE = `${PACK_FOLDER}/${TAR_NAME}`; diff --git a/package.json b/package.json index 53b82f070..35873e1c1 100644 --- a/package.json +++ b/package.json @@ -41,11 +41,12 @@ "eslint": "^8.49.0", "eslint-plugin-prettier": "^5.0.1", "eslint-plugin-unused-imports": "^3.0.0", - "iconv-lite": "^0.6.3", "fast-check": "^3.22.0", + "iconv-lite": "^0.6.3", "jest": "^29.4.0", "prettier": "^3.0.0", "prettier-2": "npm:prettier@^2", + "segfault-handler": "^1.3.0", "ts-jest": "^29.1.0", "ts-node": "^10.5.0", "tsc-multi": "^1.1.0", diff --git a/yarn.lock b/yarn.lock index f86935095..c0220f984 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1169,6 +1169,13 @@ big-integer@^1.6.44: resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.52.tgz#60a887f3047614a8e1bffe5d7173490a97dc8c85" integrity sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg== +bindings@^1.2.1: + version "1.5.0" + resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + bplist-parser@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.2.0.tgz#43a9d183e5bf9d545200ceac3e712f79ebbe8d0e" @@ -1746,6 +1753,11 @@ file-entry-cache@^6.0.1: dependencies: flat-cache "^3.0.4" +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + fill-range@^7.1.1: version "7.1.1" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" @@ -2687,6 +2699,11 @@ ms@^2.0.0, ms@^2.1.3: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== +nan@^2.14.0: + version "2.22.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.22.0.tgz#31bc433fc33213c97bad36404bb68063de604de3" + integrity sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw== + natural-compare@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" @@ -3037,6 +3054,14 @@ safe-buffer@~5.2.0: resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== +segfault-handler@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/segfault-handler/-/segfault-handler-1.3.0.tgz#054bc847832fa14f218ba6a79e42877501c8870e" + integrity sha512-p7kVHo+4uoYkr0jmIiTBthwV5L2qmWtben/KDunDZ834mbos+tY+iO0//HpAJpOFSQZZ+wxKWuRo4DxV02B7Lg== + dependencies: + bindings "^1.2.1" + nan "^2.14.0" + semver@^6.3.0, semver@^6.3.1: version "6.3.1" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" From 3a6bfe41e3b7277032844ff12186d6f0d0f83554 Mon Sep 17 00:00:00 2001 From: Guspan Tanadi <36249910+guspan-tanadi@users.noreply.github.com> Date: Fri, 13 Dec 2024 21:27:45 +0700 Subject: [PATCH 636/725] docs(README): fix helpers section links (#1224) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ac9c84a42..b03bcd870 100644 --- a/README.md +++ b/README.md @@ -200,7 +200,7 @@ main(); ``` Streaming with `openai.beta.chat.completions.stream({…})` exposes -[various helpers for your convenience](helpers.md#events) including event handlers and promises. +[various helpers for your convenience](helpers.md#chat-events) including event handlers and promises. Alternatively, you can use `openai.chat.completions.create({ stream: true, … })` which only returns an async iterable of the chunks in the stream and thus uses less memory @@ -285,12 +285,12 @@ main(); // Final content: "It's looking cold and rainy - you might want to wear a jacket!" ``` -Like with `.stream()`, we provide a variety of [helpers and events](helpers.md#events). +Like with `.stream()`, we provide a variety of [helpers and events](helpers.md#chat-events). Note that `runFunctions` was previously available as well, but has been deprecated in favor of `runTools`. Read more about various examples such as with integrating with [zod](helpers.md#integrate-with-zod), -[next.js](helpers.md#integrate-wtih-next-js), and [proxying a stream to the browser](helpers.md#proxy-streaming-to-a-browser). +[next.js](helpers.md#integrate-with-nextjs), and [proxying a stream to the browser](helpers.md#proxy-streaming-to-a-browser). ## File uploads From f361a0c0eb6ae72a902863d6e338f71dc55e416a Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 13 Dec 2024 14:28:16 +0000 Subject: [PATCH 637/725] release: 4.76.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 17 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 47a7d26b6..52c31fe71 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.76.2" + ".": "4.76.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 27946ddea..4b6f57fe4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.76.3 (2024-12-13) + +Full Changelog: [v4.76.2...v4.76.3](https://github.com/openai/openai-node/compare/v4.76.2...v4.76.3) + +### Chores + +* **internal:** better ecosystem test debugging ([86fc0a8](https://github.com/openai/openai-node/commit/86fc0a81ede2780d3fcebaabff3d9fa9a36cc9c0)) + + +### Documentation + +* **README:** fix helpers section links ([#1224](https://github.com/openai/openai-node/issues/1224)) ([efbe30a](https://github.com/openai/openai-node/commit/efbe30a156cec1836d3db28f663066b33be57ba2)) + ## 4.76.2 (2024-12-12) Full Changelog: [v4.76.1...v4.76.2](https://github.com/openai/openai-node/compare/v4.76.1...v4.76.2) diff --git a/jsr.json b/jsr.json index 101edee15..ef9ce6848 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.76.2", + "version": "4.76.3", "exports": "./index.ts", "publish": { "exclude": [ diff --git a/package.json b/package.json index 35873e1c1..47f363ba1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.76.2", + "version": "4.76.3", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 7117b1feb..01cd56405 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.76.2'; // x-release-please-version +export const VERSION = '4.76.3'; // x-release-please-version From bd1a82dc8f867c271fc6f226c7d98f8de439ab7c Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 17:26:31 +0000 Subject: [PATCH 638/725] chore(internal): fix some typos (#1227) --- src/core.ts | 4 ++-- tests/index.test.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core.ts b/src/core.ts index e1a93f272..68f1e676a 100644 --- a/src/core.ts +++ b/src/core.ts @@ -198,7 +198,7 @@ export abstract class APIClient { maxRetries = 2, timeout = 600000, // 10 minutes httpAgent, - fetch: overridenFetch, + fetch: overriddenFetch, }: { baseURL: string; maxRetries?: number | undefined; @@ -211,7 +211,7 @@ export abstract class APIClient { this.timeout = validatePositiveInteger('timeout', timeout); this.httpAgent = httpAgent; - this.fetch = overridenFetch ?? fetch; + this.fetch = overriddenFetch ?? fetch; } protected authHeaders(opts: FinalRequestOptions): Headers { diff --git a/tests/index.test.ts b/tests/index.test.ts index f39571121..bf113e7bb 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -177,7 +177,7 @@ describe('instantiate client', () => { expect(client.apiKey).toBe('My API Key'); }); - test('with overriden environment variable arguments', () => { + test('with overridden environment variable arguments', () => { // set options via env var process.env['OPENAI_API_KEY'] = 'another My API Key'; const client = new OpenAI({ apiKey: 'My API Key' }); From 4984aaccbddcd05349c0c47c608b387b5b1f7ef6 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 17:56:30 +0000 Subject: [PATCH 639/725] feat(api): new o1 and GPT-4o models + preference fine-tuning (#1229) learn more here: https://platform.openai.com/docs/changelog --- .stats.yml | 2 +- api.md | 2 + src/index.ts | 4 + src/resources/chat/chat.ts | 11 +- src/resources/chat/completions.ts | 96 +++++-- src/resources/chat/index.ts | 2 + src/resources/fine-tuning/jobs/jobs.ts | 270 +++++++++++++++++- tests/api-resources/chat/completions.test.ts | 5 +- .../fine-tuning/jobs/jobs.test.ts | 14 + 9 files changed, 372 insertions(+), 34 deletions(-) diff --git a/.stats.yml b/.stats.yml index 3cc042fe0..d4d7d3c40 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-2e0e0678be19d1118fd796af291822075e40538dba326611e177e9f3dc245a53.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-779ea2754025daf5e18eb8ceb203ec321692636bc3a999338556a479178efa6c.yml diff --git a/api.md b/api.md index 465730de8..54bcf08d7 100644 --- a/api.md +++ b/api.md @@ -41,6 +41,7 @@ Types: - ChatCompletionContentPartInputAudio - ChatCompletionContentPartRefusal - ChatCompletionContentPartText +- ChatCompletionDeveloperMessageParam - ChatCompletionFunctionCallOption - ChatCompletionFunctionMessageParam - ChatCompletionMessage @@ -49,6 +50,7 @@ Types: - ChatCompletionModality - ChatCompletionNamedToolChoice - ChatCompletionPredictionContent +- ChatCompletionReasoningEffort - ChatCompletionRole - ChatCompletionStreamOptions - ChatCompletionSystemMessageParam diff --git a/src/index.ts b/src/index.ts index 58d7410e4..2320850fb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -80,6 +80,7 @@ import { ChatCompletionCreateParams, ChatCompletionCreateParamsNonStreaming, ChatCompletionCreateParamsStreaming, + ChatCompletionDeveloperMessageParam, ChatCompletionFunctionCallOption, ChatCompletionFunctionMessageParam, ChatCompletionMessage, @@ -88,6 +89,7 @@ import { ChatCompletionModality, ChatCompletionNamedToolChoice, ChatCompletionPredictionContent, + ChatCompletionReasoningEffort, ChatCompletionRole, ChatCompletionStreamOptions, ChatCompletionSystemMessageParam, @@ -353,6 +355,7 @@ export declare namespace OpenAI { type ChatCompletionContentPartInputAudio as ChatCompletionContentPartInputAudio, type ChatCompletionContentPartRefusal as ChatCompletionContentPartRefusal, type ChatCompletionContentPartText as ChatCompletionContentPartText, + type ChatCompletionDeveloperMessageParam as ChatCompletionDeveloperMessageParam, type ChatCompletionFunctionCallOption as ChatCompletionFunctionCallOption, type ChatCompletionFunctionMessageParam as ChatCompletionFunctionMessageParam, type ChatCompletionMessage as ChatCompletionMessage, @@ -361,6 +364,7 @@ export declare namespace OpenAI { type ChatCompletionModality as ChatCompletionModality, type ChatCompletionNamedToolChoice as ChatCompletionNamedToolChoice, type ChatCompletionPredictionContent as ChatCompletionPredictionContent, + type ChatCompletionReasoningEffort as ChatCompletionReasoningEffort, type ChatCompletionRole as ChatCompletionRole, type ChatCompletionStreamOptions as ChatCompletionStreamOptions, type ChatCompletionSystemMessageParam as ChatCompletionSystemMessageParam, diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 09cd3d123..2230b19bd 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -16,6 +16,7 @@ import { ChatCompletionCreateParams, ChatCompletionCreateParamsNonStreaming, ChatCompletionCreateParamsStreaming, + ChatCompletionDeveloperMessageParam, ChatCompletionFunctionCallOption, ChatCompletionFunctionMessageParam, ChatCompletionMessage, @@ -24,6 +25,7 @@ import { ChatCompletionModality, ChatCompletionNamedToolChoice, ChatCompletionPredictionContent, + ChatCompletionReasoningEffort, ChatCompletionRole, ChatCompletionStreamOptions, ChatCompletionSystemMessageParam, @@ -44,6 +46,8 @@ export class Chat extends APIResource { } export type ChatModel = + | 'o1' + | 'o1-2024-12-17' | 'o1-preview' | 'o1-preview-2024-09-12' | 'o1-mini' @@ -52,10 +56,11 @@ export type ChatModel = | 'gpt-4o-2024-11-20' | 'gpt-4o-2024-08-06' | 'gpt-4o-2024-05-13' - | 'gpt-4o-realtime-preview' - | 'gpt-4o-realtime-preview-2024-10-01' | 'gpt-4o-audio-preview' | 'gpt-4o-audio-preview-2024-10-01' + | 'gpt-4o-audio-preview-2024-12-17' + | 'gpt-4o-mini-audio-preview' + | 'gpt-4o-mini-audio-preview-2024-12-17' | 'chatgpt-4o-latest' | 'gpt-4o-mini' | 'gpt-4o-mini-2024-07-18' @@ -96,6 +101,7 @@ export declare namespace Chat { type ChatCompletionContentPartInputAudio as ChatCompletionContentPartInputAudio, type ChatCompletionContentPartRefusal as ChatCompletionContentPartRefusal, type ChatCompletionContentPartText as ChatCompletionContentPartText, + type ChatCompletionDeveloperMessageParam as ChatCompletionDeveloperMessageParam, type ChatCompletionFunctionCallOption as ChatCompletionFunctionCallOption, type ChatCompletionFunctionMessageParam as ChatCompletionFunctionMessageParam, type ChatCompletionMessage as ChatCompletionMessage, @@ -104,6 +110,7 @@ export declare namespace Chat { type ChatCompletionModality as ChatCompletionModality, type ChatCompletionNamedToolChoice as ChatCompletionNamedToolChoice, type ChatCompletionPredictionContent as ChatCompletionPredictionContent, + type ChatCompletionReasoningEffort as ChatCompletionReasoningEffort, type ChatCompletionRole as ChatCompletionRole, type ChatCompletionStreamOptions as ChatCompletionStreamOptions, type ChatCompletionSystemMessageParam as ChatCompletionSystemMessageParam, diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 8e9a4385e..31f5814cb 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -15,6 +15,12 @@ export class Completions extends APIResource { * [text generation](https://platform.openai.com/docs/guides/text-generation), * [vision](https://platform.openai.com/docs/guides/vision), and * [audio](https://platform.openai.com/docs/guides/audio) guides. + * + * Parameter support can differ depending on the model used to generate the + * response, particularly for newer reasoning models. Parameters that are only + * supported for reasoning models are noted below. For the current state of + * unsupported parameters in reasoning models, + * [refer to the reasoning guide](https://platform.openai.com/docs/guides/reasoning). */ create( body: ChatCompletionCreateParamsNonStreaming, @@ -135,6 +141,9 @@ export namespace ChatCompletion { } } +/** + * Messages sent by the model in response to user messages. + */ export interface ChatCompletionAssistantMessageParam { /** * The role of the messages author, in this case `assistant`. @@ -530,6 +539,29 @@ export interface ChatCompletionContentPartText { type: 'text'; } +/** + * Developer-provided instructions that the model should follow, regardless of + * messages sent by the user. With o1 models and newer, `developer` messages + * replace the previous `system` messages. + */ +export interface ChatCompletionDeveloperMessageParam { + /** + * The contents of the developer message. + */ + content: string | Array; + + /** + * The role of the messages author, in this case `developer`. + */ + role: 'developer'; + + /** + * An optional name for the participant. Provides the model information to + * differentiate between participants of the same role. + */ + name?: string; +} + /** * Specifying a particular function via `{"name": "my_function"}` forces the model * to call that function. @@ -620,7 +652,13 @@ export namespace ChatCompletionMessage { } } +/** + * Developer-provided instructions that the model should follow, regardless of + * messages sent by the user. With o1 models and newer, `developer` messages + * replace the previous `system` messages. + */ export type ChatCompletionMessageParam = + | ChatCompletionDeveloperMessageParam | ChatCompletionSystemMessageParam | ChatCompletionUserMessageParam | ChatCompletionAssistantMessageParam @@ -707,6 +745,16 @@ export interface ChatCompletionPredictionContent { type: 'content'; } +/** + * **o1 models only** + * + * Constrains effort on reasoning for + * [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently + * supported values are `low`, `medium`, and `high`. Reducing reasoning effort can + * result in faster responses and fewer tokens used on reasoning in a response. + */ +export type ChatCompletionReasoningEffort = 'low' | 'medium' | 'high'; + /** * The role of the author of a message */ @@ -725,6 +773,11 @@ export interface ChatCompletionStreamOptions { include_usage?: boolean; } +/** + * Developer-provided instructions that the model should follow, regardless of + * messages sent by the user. With o1 models and newer, use `developer` messages + * for this purpose instead. + */ export interface ChatCompletionSystemMessageParam { /** * The contents of the system message. @@ -835,6 +888,10 @@ export interface ChatCompletionToolMessageParam { tool_call_id: string; } +/** + * Messages sent by an end user, containing prompts or additional context + * information. + */ export interface ChatCompletionUserMessageParam { /** * The contents of the user message. @@ -891,20 +948,22 @@ export interface ChatCompletionCreateParamsBase { * Number between -2.0 and 2.0. Positive values penalize new tokens based on their * existing frequency in the text so far, decreasing the model's likelihood to * repeat the same line verbatim. - * - * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation) */ frequency_penalty?: number | null; /** * Deprecated in favor of `tool_choice`. * - * Controls which (if any) function is called by the model. `none` means the model - * will not call a function and instead generates a message. `auto` means the model - * can pick between generating a message or calling a function. Specifying a - * particular function via `{"name": "my_function"}` forces the model to call that + * Controls which (if any) function is called by the model. + * + * `none` means the model will not call a function and instead generates a message. + * + * `auto` means the model can pick between generating a message or calling a * function. * + * Specifying a particular function via `{"name": "my_function"}` forces the model + * to call that function. + * * `none` is the default when no functions are present. `auto` is the default if * functions are present. */ @@ -998,17 +1057,21 @@ export interface ChatCompletionCreateParamsBase { * Number between -2.0 and 2.0. Positive values penalize new tokens based on * whether they appear in the text so far, increasing the model's likelihood to * talk about new topics. - * - * [See more information about frequency and presence penalties.](https://platform.openai.com/docs/guides/text-generation) */ presence_penalty?: number | null; /** - * An object specifying the format that the model must output. Compatible with - * [GPT-4o](https://platform.openai.com/docs/models#gpt-4o), - * [GPT-4o mini](https://platform.openai.com/docs/models#gpt-4o-mini), - * [GPT-4 Turbo](https://platform.openai.com/docs/models#gpt-4-turbo-and-gpt-4) and - * all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. + * **o1 models only** + * + * Constrains effort on reasoning for + * [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently + * supported values are `low`, `medium`, and `high`. Reducing reasoning effort can + * result in faster responses and fewer tokens used on reasoning in a response. + */ + reasoning_effort?: ChatCompletionReasoningEffort; + + /** + * An object specifying the format that the model must output. * * Setting to `{ "type": "json_schema", "json_schema": {...} }` enables Structured * Outputs which ensures the model will match your supplied JSON schema. Learn more @@ -1088,9 +1151,8 @@ export interface ChatCompletionCreateParamsBase { /** * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will * make the output more random, while lower values like 0.2 will make it more - * focused and deterministic. - * - * We generally recommend altering this or `top_p` but not both. + * focused and deterministic. We generally recommend altering this or `top_p` but + * not both. */ temperature?: number | null; @@ -1223,6 +1285,7 @@ export declare namespace Completions { type ChatCompletionContentPartInputAudio as ChatCompletionContentPartInputAudio, type ChatCompletionContentPartRefusal as ChatCompletionContentPartRefusal, type ChatCompletionContentPartText as ChatCompletionContentPartText, + type ChatCompletionDeveloperMessageParam as ChatCompletionDeveloperMessageParam, type ChatCompletionFunctionCallOption as ChatCompletionFunctionCallOption, type ChatCompletionFunctionMessageParam as ChatCompletionFunctionMessageParam, type ChatCompletionMessage as ChatCompletionMessage, @@ -1231,6 +1294,7 @@ export declare namespace Completions { type ChatCompletionModality as ChatCompletionModality, type ChatCompletionNamedToolChoice as ChatCompletionNamedToolChoice, type ChatCompletionPredictionContent as ChatCompletionPredictionContent, + type ChatCompletionReasoningEffort as ChatCompletionReasoningEffort, type ChatCompletionRole as ChatCompletionRole, type ChatCompletionStreamOptions as ChatCompletionStreamOptions, type ChatCompletionSystemMessageParam as ChatCompletionSystemMessageParam, diff --git a/src/resources/chat/index.ts b/src/resources/chat/index.ts index 262bf75a2..c3be19402 100644 --- a/src/resources/chat/index.ts +++ b/src/resources/chat/index.ts @@ -13,6 +13,7 @@ export { type ChatCompletionContentPartInputAudio, type ChatCompletionContentPartRefusal, type ChatCompletionContentPartText, + type ChatCompletionDeveloperMessageParam, type ChatCompletionFunctionCallOption, type ChatCompletionFunctionMessageParam, type ChatCompletionMessage, @@ -21,6 +22,7 @@ export { type ChatCompletionModality, type ChatCompletionNamedToolChoice, type ChatCompletionPredictionContent, + type ChatCompletionReasoningEffort, type ChatCompletionRole, type ChatCompletionStreamOptions, type ChatCompletionSystemMessageParam, diff --git a/src/resources/fine-tuning/jobs/jobs.ts b/src/resources/fine-tuning/jobs/jobs.ts index 0c320e028..44dd011aa 100644 --- a/src/resources/fine-tuning/jobs/jobs.ts +++ b/src/resources/fine-tuning/jobs/jobs.ts @@ -127,9 +127,8 @@ export interface FineTuningJob { finished_at: number | null; /** - * The hyperparameters used for the fine-tuning job. See the - * [fine-tuning guide](https://platform.openai.com/docs/guides/fine-tuning) for - * more details. + * The hyperparameters used for the fine-tuning job. This value will only be + * returned when running `supervised` jobs. */ hyperparameters: FineTuningJob.Hyperparameters; @@ -195,6 +194,11 @@ export interface FineTuningJob { * A list of integrations to enable for this fine-tuning job. */ integrations?: Array | null; + + /** + * The method used for fine-tuning. + */ + method?: FineTuningJob.Method; } export namespace FineTuningJob { @@ -221,18 +225,125 @@ export namespace FineTuningJob { } /** - * The hyperparameters used for the fine-tuning job. See the - * [fine-tuning guide](https://platform.openai.com/docs/guides/fine-tuning) for - * more details. + * The hyperparameters used for the fine-tuning job. This value will only be + * returned when running `supervised` jobs. */ export interface Hyperparameters { + /** + * Number of examples in each batch. A larger batch size means that model + * parameters are updated less frequently, but with lower variance. + */ + batch_size?: 'auto' | number; + + /** + * Scaling factor for the learning rate. A smaller learning rate may be useful to + * avoid overfitting. + */ + learning_rate_multiplier?: 'auto' | number; + /** * The number of epochs to train the model for. An epoch refers to one full cycle - * through the training dataset. "auto" decides the optimal number of epochs based - * on the size of the dataset. If setting the number manually, we support any - * number between 1 and 50 epochs. + * through the training dataset. + */ + n_epochs?: 'auto' | number; + } + + /** + * The method used for fine-tuning. + */ + export interface Method { + /** + * Configuration for the DPO fine-tuning method. + */ + dpo?: Method.Dpo; + + /** + * Configuration for the supervised fine-tuning method. */ - n_epochs: 'auto' | number; + supervised?: Method.Supervised; + + /** + * The type of method. Is either `supervised` or `dpo`. + */ + type?: 'supervised' | 'dpo'; + } + + export namespace Method { + /** + * Configuration for the DPO fine-tuning method. + */ + export interface Dpo { + /** + * The hyperparameters used for the fine-tuning job. + */ + hyperparameters?: Dpo.Hyperparameters; + } + + export namespace Dpo { + /** + * The hyperparameters used for the fine-tuning job. + */ + export interface Hyperparameters { + /** + * Number of examples in each batch. A larger batch size means that model + * parameters are updated less frequently, but with lower variance. + */ + batch_size?: 'auto' | number; + + /** + * The beta value for the DPO method. A higher beta value will increase the weight + * of the penalty between the policy and reference model. + */ + beta?: 'auto' | number; + + /** + * Scaling factor for the learning rate. A smaller learning rate may be useful to + * avoid overfitting. + */ + learning_rate_multiplier?: 'auto' | number; + + /** + * The number of epochs to train the model for. An epoch refers to one full cycle + * through the training dataset. + */ + n_epochs?: 'auto' | number; + } + } + + /** + * Configuration for the supervised fine-tuning method. + */ + export interface Supervised { + /** + * The hyperparameters used for the fine-tuning job. + */ + hyperparameters?: Supervised.Hyperparameters; + } + + export namespace Supervised { + /** + * The hyperparameters used for the fine-tuning job. + */ + export interface Hyperparameters { + /** + * Number of examples in each batch. A larger batch size means that model + * parameters are updated less frequently, but with lower variance. + */ + batch_size?: 'auto' | number; + + /** + * Scaling factor for the learning rate. A smaller learning rate may be useful to + * avoid overfitting. + */ + learning_rate_multiplier?: 'auto' | number; + + /** + * The number of epochs to train the model for. An epoch refers to one full cycle + * through the training dataset. + */ + n_epochs?: 'auto' | number; + } + } } } @@ -240,15 +351,40 @@ export namespace FineTuningJob { * Fine-tuning job event object */ export interface FineTuningJobEvent { + /** + * The object identifier. + */ id: string; + /** + * The Unix timestamp (in seconds) for when the fine-tuning job was created. + */ created_at: number; + /** + * The log level of the event. + */ level: 'info' | 'warn' | 'error'; + /** + * The message of the event. + */ message: string; + /** + * The object type, which is always "fine_tuning.job.event". + */ object: 'fine_tuning.job.event'; + + /** + * The data associated with the event. + */ + data?: unknown; + + /** + * The type of event. + */ + type?: 'message' | 'metrics'; } export type FineTuningJobIntegration = FineTuningJobWandbIntegrationObject; @@ -318,8 +454,10 @@ export interface JobCreateParams { * your file with the purpose `fine-tune`. * * The contents of the file should differ depending on if the model uses the - * [chat](https://platform.openai.com/docs/api-reference/fine-tuning/chat-input) or + * [chat](https://platform.openai.com/docs/api-reference/fine-tuning/chat-input), * [completions](https://platform.openai.com/docs/api-reference/fine-tuning/completions-input) + * format, or if the fine-tuning method uses the + * [preference](https://platform.openai.com/docs/api-reference/fine-tuning/preference-input) * format. * * See the [fine-tuning guide](https://platform.openai.com/docs/guides/fine-tuning) @@ -328,7 +466,8 @@ export interface JobCreateParams { training_file: string; /** - * The hyperparameters used for the fine-tuning job. + * The hyperparameters used for the fine-tuning job. This value is now deprecated + * in favor of `method`, and should be passed in under the `method` parameter. */ hyperparameters?: JobCreateParams.Hyperparameters; @@ -337,6 +476,11 @@ export interface JobCreateParams { */ integrations?: Array | null; + /** + * The method used for fine-tuning. + */ + method?: JobCreateParams.Method; + /** * The seed controls the reproducibility of the job. Passing in the same seed and * job parameters should produce the same results, but may differ in rare cases. If @@ -372,7 +516,9 @@ export interface JobCreateParams { export namespace JobCreateParams { /** - * The hyperparameters used for the fine-tuning job. + * @deprecated: The hyperparameters used for the fine-tuning job. This value is now + * deprecated in favor of `method`, and should be passed in under the `method` + * parameter. */ export interface Hyperparameters { /** @@ -444,6 +590,104 @@ export namespace JobCreateParams { tags?: Array; } } + + /** + * The method used for fine-tuning. + */ + export interface Method { + /** + * Configuration for the DPO fine-tuning method. + */ + dpo?: Method.Dpo; + + /** + * Configuration for the supervised fine-tuning method. + */ + supervised?: Method.Supervised; + + /** + * The type of method. Is either `supervised` or `dpo`. + */ + type?: 'supervised' | 'dpo'; + } + + export namespace Method { + /** + * Configuration for the DPO fine-tuning method. + */ + export interface Dpo { + /** + * The hyperparameters used for the fine-tuning job. + */ + hyperparameters?: Dpo.Hyperparameters; + } + + export namespace Dpo { + /** + * The hyperparameters used for the fine-tuning job. + */ + export interface Hyperparameters { + /** + * Number of examples in each batch. A larger batch size means that model + * parameters are updated less frequently, but with lower variance. + */ + batch_size?: 'auto' | number; + + /** + * The beta value for the DPO method. A higher beta value will increase the weight + * of the penalty between the policy and reference model. + */ + beta?: 'auto' | number; + + /** + * Scaling factor for the learning rate. A smaller learning rate may be useful to + * avoid overfitting. + */ + learning_rate_multiplier?: 'auto' | number; + + /** + * The number of epochs to train the model for. An epoch refers to one full cycle + * through the training dataset. + */ + n_epochs?: 'auto' | number; + } + } + + /** + * Configuration for the supervised fine-tuning method. + */ + export interface Supervised { + /** + * The hyperparameters used for the fine-tuning job. + */ + hyperparameters?: Supervised.Hyperparameters; + } + + export namespace Supervised { + /** + * The hyperparameters used for the fine-tuning job. + */ + export interface Hyperparameters { + /** + * Number of examples in each batch. A larger batch size means that model + * parameters are updated less frequently, but with lower variance. + */ + batch_size?: 'auto' | number; + + /** + * Scaling factor for the learning rate. A smaller learning rate may be useful to + * avoid overfitting. + */ + learning_rate_multiplier?: 'auto' | number; + + /** + * The number of epochs to train the model for. An epoch refers to one full cycle + * through the training dataset. + */ + n_epochs?: 'auto' | number; + } + } + } } export interface JobListParams extends CursorPageParams {} diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 5dcbf9ad6..dfc09f69b 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -11,7 +11,7 @@ const client = new OpenAI({ describe('resource completions', () => { test('create: only required params', async () => { const responsePromise = client.chat.completions.create({ - messages: [{ content: 'string', role: 'system' }], + messages: [{ content: 'string', role: 'developer' }], model: 'gpt-4o', }); const rawResponse = await responsePromise.asResponse(); @@ -25,7 +25,7 @@ describe('resource completions', () => { test('create: required and optional params', async () => { const response = await client.chat.completions.create({ - messages: [{ content: 'string', role: 'system', name: 'name' }], + messages: [{ content: 'string', role: 'developer', name: 'name' }], model: 'gpt-4o', audio: { format: 'wav', voice: 'alloy' }, frequency_penalty: -2, @@ -41,6 +41,7 @@ describe('resource completions', () => { parallel_tool_calls: true, prediction: { content: 'string', type: 'content' }, presence_penalty: -2, + reasoning_effort: 'low', response_format: { type: 'text' }, seed: -9007199254740991, service_tier: 'auto', diff --git a/tests/api-resources/fine-tuning/jobs/jobs.test.ts b/tests/api-resources/fine-tuning/jobs/jobs.test.ts index 0ab09768a..4de83a8b7 100644 --- a/tests/api-resources/fine-tuning/jobs/jobs.test.ts +++ b/tests/api-resources/fine-tuning/jobs/jobs.test.ts @@ -34,6 +34,20 @@ describe('resource jobs', () => { wandb: { project: 'my-wandb-project', entity: 'entity', name: 'name', tags: ['custom-tag'] }, }, ], + method: { + dpo: { + hyperparameters: { + batch_size: 'auto', + beta: 'auto', + learning_rate_multiplier: 'auto', + n_epochs: 'auto', + }, + }, + supervised: { + hyperparameters: { batch_size: 'auto', learning_rate_multiplier: 'auto', n_epochs: 'auto' }, + }, + type: 'supervised', + }, seed: 42, suffix: 'x', validation_file: 'file-abc123', From 13fa61db5e3407be684868db488c46d95f6805bf Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 18:05:03 +0000 Subject: [PATCH 640/725] chore(internal): spec update (#1230) --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index d4d7d3c40..7b5235e3c 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-779ea2754025daf5e18eb8ceb203ec321692636bc3a999338556a479178efa6c.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-0d64ca9e45f51b4279f87b205eeb3a3576df98407698ce053f2e2302c1c08df1.yml From 21c3ed6db585433880c2462b3c62abcbe7ec6903 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 18:05:30 +0000 Subject: [PATCH 641/725] release: 4.77.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 18 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 52c31fe71..6b843f931 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.76.3" + ".": "4.77.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b6f57fe4..d33ce4c1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 4.77.0 (2024-12-17) + +Full Changelog: [v4.76.3...v4.77.0](https://github.com/openai/openai-node/compare/v4.76.3...v4.77.0) + +### Features + +* **api:** new o1 and GPT-4o models + preference fine-tuning ([#1229](https://github.com/openai/openai-node/issues/1229)) ([2e872d4](https://github.com/openai/openai-node/commit/2e872d4ac3717ab8f61741efffb7a31acd798338)) + + +### Chores + +* **internal:** fix some typos ([#1227](https://github.com/openai/openai-node/issues/1227)) ([d51fcfe](https://github.com/openai/openai-node/commit/d51fcfe3a66550a684eeeb0e6f17e1d9825cdf78)) +* **internal:** spec update ([#1230](https://github.com/openai/openai-node/issues/1230)) ([ed2b61d](https://github.com/openai/openai-node/commit/ed2b61d32703b64d9f91223bc02627a607f60483)) + ## 4.76.3 (2024-12-13) Full Changelog: [v4.76.2...v4.76.3](https://github.com/openai/openai-node/compare/v4.76.2...v4.76.3) diff --git a/jsr.json b/jsr.json index ef9ce6848..d76a2040e 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.76.3", + "version": "4.77.0", "exports": "./index.ts", "publish": { "exclude": [ diff --git a/package.json b/package.json index 47f363ba1..54633aa5d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.76.3", + "version": "4.77.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 01cd56405..fdf4e5224 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.76.3'; // x-release-please-version +export const VERSION = '4.77.0'; // x-release-please-version From d70f6e835be4cef980e8e4026ec709177d3d3931 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 22:16:46 +0000 Subject: [PATCH 642/725] chore(internal): spec update (#1231) --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index 7b5235e3c..248cc366d 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-0d64ca9e45f51b4279f87b205eeb3a3576df98407698ce053f2e2302c1c08df1.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-a39aca84ed97ebafb707ebd5221e2787c5a42ff3d98f2ffaea8a0dcd84cbcbcb.yml From 0f715f281715da744e01c2c08932008d0cfde614 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 22:07:12 +0000 Subject: [PATCH 643/725] fix(client): normalize method (#1235) --- src/core.ts | 12 +++++++++++- tests/index.test.ts | 13 +++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/src/core.ts b/src/core.ts index 68f1e676a..972cceaec 100644 --- a/src/core.ts +++ b/src/core.ts @@ -557,9 +557,19 @@ export abstract class APIClient { const timeout = setTimeout(() => controller.abort(), ms); + const fetchOptions = { + signal: controller.signal as any, + ...options, + }; + if (fetchOptions.method) { + // Custom methods like 'patch' need to be uppercased + // See https://github.com/nodejs/undici/issues/2294 + fetchOptions.method = fetchOptions.method.toUpperCase(); + } + return ( // use undefined this binding; fetch errors if bound to something else in browser/cloudflare - this.fetch.call(undefined, url, { signal: controller.signal as any, ...options }).finally(() => { + this.fetch.call(undefined, url, fetchOptions).finally(() => { clearTimeout(timeout); }) ); diff --git a/tests/index.test.ts b/tests/index.test.ts index bf113e7bb..a6f0040a4 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -122,6 +122,19 @@ describe('instantiate client', () => { expect(spy).toHaveBeenCalledTimes(1); }); + test('normalized method', async () => { + let capturedRequest: RequestInit | undefined; + const testFetch = async (url: RequestInfo, init: RequestInit = {}): Promise => { + capturedRequest = init; + return new Response(JSON.stringify({}), { headers: { 'Content-Type': 'application/json' } }); + }; + + const client = new OpenAI({ baseURL: 'http://localhost:5000/', apiKey: 'My API Key', fetch: testFetch }); + + await client.patch('/foo'); + expect(capturedRequest?.method).toEqual('PATCH'); + }); + describe('baseUrl', () => { test('trailing slash', () => { const client = new OpenAI({ baseURL: 'http://localhost:5000/custom/path/', apiKey: 'My API Key' }); From 4df92af7cace12c2134fbfb3db1ed5887dec0a4c Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 11:54:17 +0000 Subject: [PATCH 644/725] docs: minor formatting changes (#1236) --- CONTRIBUTING.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e8bbc1b07..dde09d52d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ ## Setting up the environment -This repository uses [`yarn@v1`](https://classic.yarnpkg.com/lang/en/docs/install/#mac-stable). +This repository uses [`yarn@v1`](https://classic.yarnpkg.com/lang/en/docs/install). Other package managers may work but are not officially supported for development. To set up the repository, run: @@ -29,10 +29,10 @@ All files in the `examples/` directory are not modified by the generator and can … ``` -``` -chmod +x examples/.ts +```sh +$ chmod +x examples/.ts # run the example against your api -yarn tsn -T examples/.ts +$ yarn tsn -T examples/.ts ``` ## Using the repository from source From b6e4d947c69d255cd332bf247a2faedf578438c4 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Fri, 20 Dec 2024 21:28:36 +0000 Subject: [PATCH 645/725] docs(readme): add alpha callout --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index b03bcd870..c926688f0 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,9 @@ +> [!IMPORTANT] +> We're actively working on a new alpha version that migrates from `node-fetch` to builtin fetch. +> +> Please try it out and let us know if you run into any issues! +> https://community.openai.com/t/your-feedback-requested-node-js-sdk-5-0-0-alpha/1063774 + # OpenAI TypeScript and JavaScript API Library [![NPM version](https://img.shields.io/npm/v/openai.svg)](https://npmjs.org/package/openai) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/openai) [![JSR Version](https://jsr.io/badges/@openai/openai)](https://jsr.io/@openai/openai) From 3fdc7d4f67a6ceea51723684dcc0bc1895088259 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 05:06:15 +0000 Subject: [PATCH 646/725] release: 4.77.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 19 +++++++++++++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 23 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6b843f931..40491ea3b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.77.0" + ".": "4.77.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d33ce4c1a..e2ed8756c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## 4.77.1 (2024-12-21) + +Full Changelog: [v4.77.0...v4.77.1](https://github.com/openai/openai-node/compare/v4.77.0...v4.77.1) + +### Bug Fixes + +* **client:** normalize method ([#1235](https://github.com/openai/openai-node/issues/1235)) ([4a213da](https://github.com/openai/openai-node/commit/4a213dad6f2104dc02a75724acc62134d25db472)) + + +### Chores + +* **internal:** spec update ([#1231](https://github.com/openai/openai-node/issues/1231)) ([a97ea73](https://github.com/openai/openai-node/commit/a97ea73cafcb56e94be7ff691c4022da575cf60e)) + + +### Documentation + +* minor formatting changes ([#1236](https://github.com/openai/openai-node/issues/1236)) ([6387968](https://github.com/openai/openai-node/commit/63879681ccaca3dc1e17b27464e2f830b8f63b4f)) +* **readme:** add alpha callout ([f2eff37](https://github.com/openai/openai-node/commit/f2eff3780e1216f7f420f7b86d47f4e21986b10e)) + ## 4.77.0 (2024-12-17) Full Changelog: [v4.76.3...v4.77.0](https://github.com/openai/openai-node/compare/v4.76.3...v4.77.0) diff --git a/jsr.json b/jsr.json index d76a2040e..f80d0a575 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.77.0", + "version": "4.77.1", "exports": "./index.ts", "publish": { "exclude": [ diff --git a/package.json b/package.json index 54633aa5d..44030acd3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.77.0", + "version": "4.77.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index fdf4e5224..a7b84d0c2 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.77.0'; // x-release-please-version +export const VERSION = '4.77.1'; // x-release-please-version From c0ae6fc24957b1c3962b75f1d17c0d85ea2b298c Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 2 Jan 2025 01:44:21 +0000 Subject: [PATCH 647/725] chore: bump license year (#1246) --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 621a6becf..f011417af 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2024 OpenAI + Copyright 2025 OpenAI Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. From 9acdf8a3c44a4cce785b9dfa9efd32f8c47fa6d5 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 2 Jan 2025 05:06:49 +0000 Subject: [PATCH 648/725] release: 4.77.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 40491ea3b..c5f60a579 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.77.1" + ".": "4.77.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e2ed8756c..d5143492e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.77.2 (2025-01-02) + +Full Changelog: [v4.77.1...v4.77.2](https://github.com/openai/openai-node/compare/v4.77.1...v4.77.2) + +### Chores + +* bump license year ([#1246](https://github.com/openai/openai-node/issues/1246)) ([13197c1](https://github.com/openai/openai-node/commit/13197c1698f492529bd00b62d95f83c039ef0ac7)) + ## 4.77.1 (2024-12-21) Full Changelog: [v4.77.0...v4.77.1](https://github.com/openai/openai-node/compare/v4.77.0...v4.77.1) diff --git a/jsr.json b/jsr.json index f80d0a575..6e735f0b0 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.77.1", + "version": "4.77.2", "exports": "./index.ts", "publish": { "exclude": [ diff --git a/package.json b/package.json index 44030acd3..947aad8d4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.77.1", + "version": "4.77.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index a7b84d0c2..e1984f01e 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.77.1'; // x-release-please-version +export const VERSION = '4.77.2'; // x-release-please-version From db16121d2db5a3104c2b9d85c6b7b3281f6f6299 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 3 Jan 2025 22:57:05 +0000 Subject: [PATCH 649/725] chore(api): bump spec version (#1248) --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index 248cc366d..d223c8f1f 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-a39aca84ed97ebafb707ebd5221e2787c5a42ff3d98f2ffaea8a0dcd84cbcbcb.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-02200a58ed631064b6419711da99fefd6e97bdbbeb577a80a1a6e0c8dbcb18f5.yml From f4066e1af907586946a5e6befee9459268425680 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 3 Jan 2025 22:57:37 +0000 Subject: [PATCH 650/725] release: 4.77.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c5f60a579..e98ace9d7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.77.2" + ".": "4.77.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d5143492e..1f928b366 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.77.3 (2025-01-03) + +Full Changelog: [v4.77.2...v4.77.3](https://github.com/openai/openai-node/compare/v4.77.2...v4.77.3) + +### Chores + +* **api:** bump spec version ([#1248](https://github.com/openai/openai-node/issues/1248)) ([37b3df9](https://github.com/openai/openai-node/commit/37b3df9ac6af76fea6eace8307aab9f0565e5660)) + ## 4.77.2 (2025-01-02) Full Changelog: [v4.77.1...v4.77.2](https://github.com/openai/openai-node/compare/v4.77.1...v4.77.2) diff --git a/jsr.json b/jsr.json index 6e735f0b0..57eb55bf8 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.77.2", + "version": "4.77.3", "exports": "./index.ts", "publish": { "exclude": [ diff --git a/package.json b/package.json index 947aad8d4..2ad833206 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.77.2", + "version": "4.77.3", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index e1984f01e..81ee8f0d6 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.77.2'; // x-release-please-version +export const VERSION = '4.77.3'; // x-release-please-version From 017d6010d40e84ea390293a46485beefcc8d386c Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 8 Jan 2025 15:22:26 +0000 Subject: [PATCH 651/725] docs(readme): fix misplaced period (#1252) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c926688f0..3039857a1 100644 --- a/README.md +++ b/README.md @@ -631,7 +631,7 @@ await client.models.list({ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions: 1. Changes that only affect static types, without breaking runtime behavior. -2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals)_. +2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals.)_ 3. Changes that we do not expect to impact the vast majority of users in practice. We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience. From bb6ac193b7d9d45155d7e7bc93d40ea0a79645cc Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 8 Jan 2025 15:23:01 +0000 Subject: [PATCH 652/725] release: 4.77.4 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e98ace9d7..e66c326a9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.77.3" + ".": "4.77.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f928b366..7a811f188 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.77.4 (2025-01-08) + +Full Changelog: [v4.77.3...v4.77.4](https://github.com/openai/openai-node/compare/v4.77.3...v4.77.4) + +### Documentation + +* **readme:** fix misplaced period ([#1252](https://github.com/openai/openai-node/issues/1252)) ([c2fe465](https://github.com/openai/openai-node/commit/c2fe46522d59d1611ba8bb2b7e070f9be7264df0)) + ## 4.77.3 (2025-01-03) Full Changelog: [v4.77.2...v4.77.3](https://github.com/openai/openai-node/compare/v4.77.2...v4.77.3) diff --git a/jsr.json b/jsr.json index 57eb55bf8..da442da31 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.77.3", + "version": "4.77.4", "exports": "./index.ts", "publish": { "exclude": [ diff --git a/package.json b/package.json index 2ad833206..453859b6b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.77.3", + "version": "4.77.4", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 81ee8f0d6..7f6adc9bc 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.77.3'; // x-release-please-version +export const VERSION = '4.77.4'; // x-release-please-version From d3736066a0a277ba544617cbf8d2ea057a9f0ecf Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 8 Jan 2025 16:58:16 +0000 Subject: [PATCH 653/725] feat(client): add realtime types (#1254) note this just defines types, there is no websocket interface provided yet --- .stats.yml | 4 +- api.md | 60 + src/resources/beta/beta.ts | 6 + src/resources/beta/index.ts | 1 + src/resources/beta/realtime/index.ts | 4 + src/resources/beta/realtime/realtime.ts | 1904 +++++++++++++++++ src/resources/beta/realtime/sessions.ts | 546 +++++ .../beta/realtime/sessions.test.ts | 45 + 8 files changed, 2568 insertions(+), 2 deletions(-) create mode 100644 src/resources/beta/realtime/index.ts create mode 100644 src/resources/beta/realtime/realtime.ts create mode 100644 src/resources/beta/realtime/sessions.ts create mode 100644 tests/api-resources/beta/realtime/sessions.test.ts diff --git a/.stats.yml b/.stats.yml index d223c8f1f..9600edae3 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ -configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-02200a58ed631064b6419711da99fefd6e97bdbbeb577a80a1a6e0c8dbcb18f5.yml +configured_endpoints: 69 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-b5b0e2c794b012919701c3fd43286af10fa25d33ceb8a881bec2636028f446e0.yml diff --git a/api.md b/api.md index 54bcf08d7..a885628a3 100644 --- a/api.md +++ b/api.md @@ -213,6 +213,66 @@ Methods: # Beta +## Realtime + +Types: + +- ConversationCreatedEvent +- ConversationItem +- ConversationItemContent +- ConversationItemCreateEvent +- ConversationItemCreatedEvent +- ConversationItemDeleteEvent +- ConversationItemDeletedEvent +- ConversationItemInputAudioTranscriptionCompletedEvent +- ConversationItemInputAudioTranscriptionFailedEvent +- ConversationItemTruncateEvent +- ConversationItemTruncatedEvent +- ErrorEvent +- InputAudioBufferAppendEvent +- InputAudioBufferClearEvent +- InputAudioBufferClearedEvent +- InputAudioBufferCommitEvent +- InputAudioBufferCommittedEvent +- InputAudioBufferSpeechStartedEvent +- InputAudioBufferSpeechStoppedEvent +- RateLimitsUpdatedEvent +- RealtimeClientEvent +- RealtimeResponse +- RealtimeResponseStatus +- RealtimeResponseUsage +- RealtimeServerEvent +- ResponseAudioDeltaEvent +- ResponseAudioDoneEvent +- ResponseAudioTranscriptDeltaEvent +- ResponseAudioTranscriptDoneEvent +- ResponseCancelEvent +- ResponseContentPartAddedEvent +- ResponseContentPartDoneEvent +- ResponseCreateEvent +- ResponseCreatedEvent +- ResponseDoneEvent +- ResponseFunctionCallArgumentsDeltaEvent +- ResponseFunctionCallArgumentsDoneEvent +- ResponseOutputItemAddedEvent +- ResponseOutputItemDoneEvent +- ResponseTextDeltaEvent +- ResponseTextDoneEvent +- SessionCreatedEvent +- SessionUpdateEvent +- SessionUpdatedEvent + +### Sessions + +Types: + +- Session +- SessionCreateResponse + +Methods: + +- client.beta.realtime.sessions.create({ ...params }) -> SessionCreateResponse + ## VectorStores Types: diff --git a/src/resources/beta/beta.ts b/src/resources/beta/beta.ts index b904abe4a..ccd043243 100644 --- a/src/resources/beta/beta.ts +++ b/src/resources/beta/beta.ts @@ -21,6 +21,8 @@ import { RunStreamEvent, ThreadStreamEvent, } from './assistants'; +import * as RealtimeAPI from './realtime/realtime'; +import { Realtime } from './realtime/realtime'; import * as ThreadsAPI from './threads/threads'; import { AssistantResponseFormatOption, @@ -58,12 +60,14 @@ import { import { Chat } from './chat/chat'; export class Beta extends APIResource { + realtime: RealtimeAPI.Realtime = new RealtimeAPI.Realtime(this._client); vectorStores: VectorStoresAPI.VectorStores = new VectorStoresAPI.VectorStores(this._client); chat: ChatAPI.Chat = new ChatAPI.Chat(this._client); assistants: AssistantsAPI.Assistants = new AssistantsAPI.Assistants(this._client); threads: ThreadsAPI.Threads = new ThreadsAPI.Threads(this._client); } +Beta.Realtime = Realtime; Beta.VectorStores = VectorStores; Beta.VectorStoresPage = VectorStoresPage; Beta.Assistants = Assistants; @@ -71,6 +75,8 @@ Beta.AssistantsPage = AssistantsPage; Beta.Threads = Threads; export declare namespace Beta { + export { Realtime as Realtime }; + export { VectorStores as VectorStores, type AutoFileChunkingStrategyParam as AutoFileChunkingStrategyParam, diff --git a/src/resources/beta/index.ts b/src/resources/beta/index.ts index d7111288f..aa2e52d4c 100644 --- a/src/resources/beta/index.ts +++ b/src/resources/beta/index.ts @@ -19,6 +19,7 @@ export { type AssistantListParams, } from './assistants'; export { Beta } from './beta'; +export { Realtime } from './realtime/index'; export { Chat } from './chat/index'; export { Threads, diff --git a/src/resources/beta/realtime/index.ts b/src/resources/beta/realtime/index.ts new file mode 100644 index 000000000..66c3ecaae --- /dev/null +++ b/src/resources/beta/realtime/index.ts @@ -0,0 +1,4 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +export { Realtime } from './realtime'; +export { Sessions, type Session, type SessionCreateResponse, type SessionCreateParams } from './sessions'; diff --git a/src/resources/beta/realtime/realtime.ts b/src/resources/beta/realtime/realtime.ts new file mode 100644 index 000000000..5de06917a --- /dev/null +++ b/src/resources/beta/realtime/realtime.ts @@ -0,0 +1,1904 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import { APIResource } from '../../../resource'; +import * as RealtimeAPI from './realtime'; +import * as SessionsAPI from './sessions'; +import { + Session as SessionsAPISession, + SessionCreateParams, + SessionCreateResponse, + Sessions, +} from './sessions'; + +export class Realtime extends APIResource { + sessions: SessionsAPI.Sessions = new SessionsAPI.Sessions(this._client); +} + +/** + * Returned when a conversation is created. Emitted right after session creation. + */ +export interface ConversationCreatedEvent { + /** + * The conversation resource. + */ + conversation: ConversationCreatedEvent.Conversation; + + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The event type, must be `conversation.created`. + */ + type: 'conversation.created'; +} + +export namespace ConversationCreatedEvent { + /** + * The conversation resource. + */ + export interface Conversation { + /** + * The unique ID of the conversation. + */ + id?: string; + + /** + * The object type, must be `realtime.conversation`. + */ + object?: 'realtime.conversation'; + } +} + +/** + * The item to add to the conversation. + */ +export interface ConversationItem { + /** + * The unique ID of the item, this can be generated by the client to help manage + * server-side context, but is not required because the server will generate one if + * not provided. + */ + id?: string; + + /** + * The arguments of the function call (for `function_call` items). + */ + arguments?: string; + + /** + * The ID of the function call (for `function_call` and `function_call_output` + * items). If passed on a `function_call_output` item, the server will check that a + * `function_call` item with the same ID exists in the conversation history. + */ + call_id?: string; + + /** + * The content of the message, applicable for `message` items. + * + * - Message items of role `system` support only `input_text` content + * - Message items of role `user` support `input_text` and `input_audio` content + * - Message items of role `assistant` support `text` content. + */ + content?: Array; + + /** + * The name of the function being called (for `function_call` items). + */ + name?: string; + + /** + * Identifier for the API object being returned - always `realtime.item`. + */ + object?: 'realtime.item'; + + /** + * The output of the function call (for `function_call_output` items). + */ + output?: string; + + /** + * The role of the message sender (`user`, `assistant`, `system`), only applicable + * for `message` items. + */ + role?: 'user' | 'assistant' | 'system'; + + /** + * The status of the item (`completed`, `incomplete`). These have no effect on the + * conversation, but are accepted for consistency with the + * `conversation.item.created` event. + */ + status?: 'completed' | 'incomplete'; + + /** + * The type of the item (`message`, `function_call`, `function_call_output`). + */ + type?: 'message' | 'function_call' | 'function_call_output'; +} + +export interface ConversationItemContent { + /** + * ID of a previous conversation item to reference (for `item_reference` content + * types in `response.create` events). These can reference both client and server + * created items. + */ + id?: string; + + /** + * Base64-encoded audio bytes, used for `input_audio` content type. + */ + audio?: string; + + /** + * The text content, used for `input_text` and `text` content types. + */ + text?: string; + + /** + * The transcript of the audio, used for `input_audio` content type. + */ + transcript?: string; + + /** + * The content type (`input_text`, `input_audio`, `item_reference`, `text`). + */ + type?: 'input_text' | 'input_audio' | 'item_reference' | 'text'; +} + +/** + * Add a new Item to the Conversation's context, including messages, function + * calls, and function call responses. This event can be used both to populate a + * "history" of the conversation and to add new items mid-stream, but has the + * current limitation that it cannot populate assistant audio messages. + * + * If successful, the server will respond with a `conversation.item.created` event, + * otherwise an `error` event will be sent. + */ +export interface ConversationItemCreateEvent { + /** + * The item to add to the conversation. + */ + item: ConversationItem; + + /** + * The event type, must be `conversation.item.create`. + */ + type: 'conversation.item.create'; + + /** + * Optional client-generated ID used to identify this event. + */ + event_id?: string; + + /** + * The ID of the preceding item after which the new item will be inserted. If not + * set, the new item will be appended to the end of the conversation. If set, it + * allows an item to be inserted mid-conversation. If the ID cannot be found, an + * error will be returned and the item will not be added. + */ + previous_item_id?: string; +} + +/** + * Returned when a conversation item is created. There are several scenarios that + * produce this event: + * + * - The server is generating a Response, which if successful will produce either + * one or two Items, which will be of type `message` (role `assistant`) or type + * `function_call`. + * - The input audio buffer has been committed, either by the client or the server + * (in `server_vad` mode). The server will take the content of the input audio + * buffer and add it to a new user message Item. + * - The client has sent a `conversation.item.create` event to add a new Item to + * the Conversation. + */ +export interface ConversationItemCreatedEvent { + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The item to add to the conversation. + */ + item: ConversationItem; + + /** + * The ID of the preceding item in the Conversation context, allows the client to + * understand the order of the conversation. + */ + previous_item_id: string; + + /** + * The event type, must be `conversation.item.created`. + */ + type: 'conversation.item.created'; +} + +/** + * Send this event when you want to remove any item from the conversation history. + * The server will respond with a `conversation.item.deleted` event, unless the + * item does not exist in the conversation history, in which case the server will + * respond with an error. + */ +export interface ConversationItemDeleteEvent { + /** + * The ID of the item to delete. + */ + item_id: string; + + /** + * The event type, must be `conversation.item.delete`. + */ + type: 'conversation.item.delete'; + + /** + * Optional client-generated ID used to identify this event. + */ + event_id?: string; +} + +/** + * Returned when an item in the conversation is deleted by the client with a + * `conversation.item.delete` event. This event is used to synchronize the server's + * understanding of the conversation history with the client's view. + */ +export interface ConversationItemDeletedEvent { + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The ID of the item that was deleted. + */ + item_id: string; + + /** + * The event type, must be `conversation.item.deleted`. + */ + type: 'conversation.item.deleted'; +} + +/** + * This event is the output of audio transcription for user audio written to the + * user audio buffer. Transcription begins when the input audio buffer is committed + * by the client or server (in `server_vad` mode). Transcription runs + * asynchronously with Response creation, so this event may come before or after + * the Response events. + * + * Realtime API models accept audio natively, and thus input transcription is a + * separate process run on a separate ASR (Automatic Speech Recognition) model, + * currently always `whisper-1`. Thus the transcript may diverge somewhat from the + * model's interpretation, and should be treated as a rough guide. + */ +export interface ConversationItemInputAudioTranscriptionCompletedEvent { + /** + * The index of the content part containing the audio. + */ + content_index: number; + + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The ID of the user message item containing the audio. + */ + item_id: string; + + /** + * The transcribed text. + */ + transcript: string; + + /** + * The event type, must be `conversation.item.input_audio_transcription.completed`. + */ + type: 'conversation.item.input_audio_transcription.completed'; +} + +/** + * Returned when input audio transcription is configured, and a transcription + * request for a user message failed. These events are separate from other `error` + * events so that the client can identify the related Item. + */ +export interface ConversationItemInputAudioTranscriptionFailedEvent { + /** + * The index of the content part containing the audio. + */ + content_index: number; + + /** + * Details of the transcription error. + */ + error: ConversationItemInputAudioTranscriptionFailedEvent.Error; + + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The ID of the user message item. + */ + item_id: string; + + /** + * The event type, must be `conversation.item.input_audio_transcription.failed`. + */ + type: 'conversation.item.input_audio_transcription.failed'; +} + +export namespace ConversationItemInputAudioTranscriptionFailedEvent { + /** + * Details of the transcription error. + */ + export interface Error { + /** + * Error code, if any. + */ + code?: string; + + /** + * A human-readable error message. + */ + message?: string; + + /** + * Parameter related to the error, if any. + */ + param?: string; + + /** + * The type of error. + */ + type?: string; + } +} + +/** + * Send this event to truncate a previous assistant message’s audio. The server + * will produce audio faster than realtime, so this event is useful when the user + * interrupts to truncate audio that has already been sent to the client but not + * yet played. This will synchronize the server's understanding of the audio with + * the client's playback. + * + * Truncating audio will delete the server-side text transcript to ensure there is + * not text in the context that hasn't been heard by the user. + * + * If successful, the server will respond with a `conversation.item.truncated` + * event. + */ +export interface ConversationItemTruncateEvent { + /** + * Inclusive duration up to which audio is truncated, in milliseconds. If the + * audio_end_ms is greater than the actual audio duration, the server will respond + * with an error. + */ + audio_end_ms: number; + + /** + * The index of the content part to truncate. Set this to 0. + */ + content_index: number; + + /** + * The ID of the assistant message item to truncate. Only assistant message items + * can be truncated. + */ + item_id: string; + + /** + * The event type, must be `conversation.item.truncate`. + */ + type: 'conversation.item.truncate'; + + /** + * Optional client-generated ID used to identify this event. + */ + event_id?: string; +} + +/** + * Returned when an earlier assistant audio message item is truncated by the client + * with a `conversation.item.truncate` event. This event is used to synchronize the + * server's understanding of the audio with the client's playback. + * + * This action will truncate the audio and remove the server-side text transcript + * to ensure there is no text in the context that hasn't been heard by the user. + */ +export interface ConversationItemTruncatedEvent { + /** + * The duration up to which the audio was truncated, in milliseconds. + */ + audio_end_ms: number; + + /** + * The index of the content part that was truncated. + */ + content_index: number; + + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The ID of the assistant message item that was truncated. + */ + item_id: string; + + /** + * The event type, must be `conversation.item.truncated`. + */ + type: 'conversation.item.truncated'; +} + +/** + * Returned when an error occurs, which could be a client problem or a server + * problem. Most errors are recoverable and the session will stay open, we + * recommend to implementors to monitor and log error messages by default. + */ +export interface ErrorEvent { + /** + * Details of the error. + */ + error: ErrorEvent.Error; + + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The event type, must be `error`. + */ + type: 'error'; +} + +export namespace ErrorEvent { + /** + * Details of the error. + */ + export interface Error { + /** + * A human-readable error message. + */ + message: string; + + /** + * The type of error (e.g., "invalid_request_error", "server_error"). + */ + type: string; + + /** + * Error code, if any. + */ + code?: string | null; + + /** + * The event_id of the client event that caused the error, if applicable. + */ + event_id?: string | null; + + /** + * Parameter related to the error, if any. + */ + param?: string | null; + } +} + +/** + * Send this event to append audio bytes to the input audio buffer. The audio + * buffer is temporary storage you can write to and later commit. In Server VAD + * mode, the audio buffer is used to detect speech and the server will decide when + * to commit. When Server VAD is disabled, you must commit the audio buffer + * manually. + * + * The client may choose how much audio to place in each event up to a maximum of + * 15 MiB, for example streaming smaller chunks from the client may allow the VAD + * to be more responsive. Unlike made other client events, the server will not send + * a confirmation response to this event. + */ +export interface InputAudioBufferAppendEvent { + /** + * Base64-encoded audio bytes. This must be in the format specified by the + * `input_audio_format` field in the session configuration. + */ + audio: string; + + /** + * The event type, must be `input_audio_buffer.append`. + */ + type: 'input_audio_buffer.append'; + + /** + * Optional client-generated ID used to identify this event. + */ + event_id?: string; +} + +/** + * Send this event to clear the audio bytes in the buffer. The server will respond + * with an `input_audio_buffer.cleared` event. + */ +export interface InputAudioBufferClearEvent { + /** + * The event type, must be `input_audio_buffer.clear`. + */ + type: 'input_audio_buffer.clear'; + + /** + * Optional client-generated ID used to identify this event. + */ + event_id?: string; +} + +/** + * Returned when the input audio buffer is cleared by the client with a + * `input_audio_buffer.clear` event. + */ +export interface InputAudioBufferClearedEvent { + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The event type, must be `input_audio_buffer.cleared`. + */ + type: 'input_audio_buffer.cleared'; +} + +/** + * Send this event to commit the user input audio buffer, which will create a new + * user message item in the conversation. This event will produce an error if the + * input audio buffer is empty. When in Server VAD mode, the client does not need + * to send this event, the server will commit the audio buffer automatically. + * + * Committing the input audio buffer will trigger input audio transcription (if + * enabled in session configuration), but it will not create a response from the + * model. The server will respond with an `input_audio_buffer.committed` event. + */ +export interface InputAudioBufferCommitEvent { + /** + * The event type, must be `input_audio_buffer.commit`. + */ + type: 'input_audio_buffer.commit'; + + /** + * Optional client-generated ID used to identify this event. + */ + event_id?: string; +} + +/** + * Returned when an input audio buffer is committed, either by the client or + * automatically in server VAD mode. The `item_id` property is the ID of the user + * message item that will be created, thus a `conversation.item.created` event will + * also be sent to the client. + */ +export interface InputAudioBufferCommittedEvent { + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The ID of the user message item that will be created. + */ + item_id: string; + + /** + * The ID of the preceding item after which the new item will be inserted. + */ + previous_item_id: string; + + /** + * The event type, must be `input_audio_buffer.committed`. + */ + type: 'input_audio_buffer.committed'; +} + +/** + * Sent by the server when in `server_vad` mode to indicate that speech has been + * detected in the audio buffer. This can happen any time audio is added to the + * buffer (unless speech is already detected). The client may want to use this + * event to interrupt audio playback or provide visual feedback to the user. + * + * The client should expect to receive a `input_audio_buffer.speech_stopped` event + * when speech stops. The `item_id` property is the ID of the user message item + * that will be created when speech stops and will also be included in the + * `input_audio_buffer.speech_stopped` event (unless the client manually commits + * the audio buffer during VAD activation). + */ +export interface InputAudioBufferSpeechStartedEvent { + /** + * Milliseconds from the start of all audio written to the buffer during the + * session when speech was first detected. This will correspond to the beginning of + * audio sent to the model, and thus includes the `prefix_padding_ms` configured in + * the Session. + */ + audio_start_ms: number; + + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The ID of the user message item that will be created when speech stops. + */ + item_id: string; + + /** + * The event type, must be `input_audio_buffer.speech_started`. + */ + type: 'input_audio_buffer.speech_started'; +} + +/** + * Returned in `server_vad` mode when the server detects the end of speech in the + * audio buffer. The server will also send an `conversation.item.created` event + * with the user message item that is created from the audio buffer. + */ +export interface InputAudioBufferSpeechStoppedEvent { + /** + * Milliseconds since the session started when speech stopped. This will correspond + * to the end of audio sent to the model, and thus includes the + * `min_silence_duration_ms` configured in the Session. + */ + audio_end_ms: number; + + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The ID of the user message item that will be created. + */ + item_id: string; + + /** + * The event type, must be `input_audio_buffer.speech_stopped`. + */ + type: 'input_audio_buffer.speech_stopped'; +} + +/** + * Emitted at the beginning of a Response to indicate the updated rate limits. When + * a Response is created some tokens will be "reserved" for the output tokens, the + * rate limits shown here reflect that reservation, which is then adjusted + * accordingly once the Response is completed. + */ +export interface RateLimitsUpdatedEvent { + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * List of rate limit information. + */ + rate_limits: Array; + + /** + * The event type, must be `rate_limits.updated`. + */ + type: 'rate_limits.updated'; +} + +export namespace RateLimitsUpdatedEvent { + export interface RateLimit { + /** + * The maximum allowed value for the rate limit. + */ + limit?: number; + + /** + * The name of the rate limit (`requests`, `tokens`). + */ + name?: 'requests' | 'tokens'; + + /** + * The remaining value before the limit is reached. + */ + remaining?: number; + + /** + * Seconds until the rate limit resets. + */ + reset_seconds?: number; + } +} + +/** + * All events that the client can send to the Realtime API + */ +export type RealtimeClientEvent = + | SessionUpdateEvent + | InputAudioBufferAppendEvent + | InputAudioBufferCommitEvent + | InputAudioBufferClearEvent + | ConversationItemCreateEvent + | ConversationItemTruncateEvent + | ConversationItemDeleteEvent + | ResponseCreateEvent + | ResponseCancelEvent; + +/** + * The response resource. + */ +export interface RealtimeResponse { + /** + * The unique ID of the response. + */ + id?: string; + + /** + * Developer-provided string key-value pairs associated with this response. + */ + metadata?: unknown | null; + + /** + * The object type, must be `realtime.response`. + */ + object?: 'realtime.response'; + + /** + * The list of output items generated by the response. + */ + output?: Array; + + /** + * The final status of the response (`completed`, `cancelled`, `failed`, or + * `incomplete`). + */ + status?: 'completed' | 'cancelled' | 'failed' | 'incomplete'; + + /** + * Additional details about the status. + */ + status_details?: RealtimeResponseStatus; + + /** + * Usage statistics for the Response, this will correspond to billing. A Realtime + * API session will maintain a conversation context and append new Items to the + * Conversation, thus output from previous turns (text and audio tokens) will + * become the input for later turns. + */ + usage?: RealtimeResponseUsage; +} + +/** + * Additional details about the status. + */ +export interface RealtimeResponseStatus { + /** + * A description of the error that caused the response to fail, populated when the + * `status` is `failed`. + */ + error?: RealtimeResponseStatus.Error; + + /** + * The reason the Response did not complete. For a `cancelled` Response, one of + * `turn_detected` (the server VAD detected a new start of speech) or + * `client_cancelled` (the client sent a cancel event). For an `incomplete` + * Response, one of `max_output_tokens` or `content_filter` (the server-side safety + * filter activated and cut off the response). + */ + reason?: 'turn_detected' | 'client_cancelled' | 'max_output_tokens' | 'content_filter'; + + /** + * The type of error that caused the response to fail, corresponding with the + * `status` field (`completed`, `cancelled`, `incomplete`, `failed`). + */ + type?: 'completed' | 'cancelled' | 'incomplete' | 'failed'; +} + +export namespace RealtimeResponseStatus { + /** + * A description of the error that caused the response to fail, populated when the + * `status` is `failed`. + */ + export interface Error { + /** + * Error code, if any. + */ + code?: string; + + /** + * The type of error. + */ + type?: string; + } +} + +/** + * Usage statistics for the Response, this will correspond to billing. A Realtime + * API session will maintain a conversation context and append new Items to the + * Conversation, thus output from previous turns (text and audio tokens) will + * become the input for later turns. + */ +export interface RealtimeResponseUsage { + /** + * Details about the input tokens used in the Response. + */ + input_token_details?: RealtimeResponseUsage.InputTokenDetails; + + /** + * The number of input tokens used in the Response, including text and audio + * tokens. + */ + input_tokens?: number; + + /** + * Details about the output tokens used in the Response. + */ + output_token_details?: RealtimeResponseUsage.OutputTokenDetails; + + /** + * The number of output tokens sent in the Response, including text and audio + * tokens. + */ + output_tokens?: number; + + /** + * The total number of tokens in the Response including input and output text and + * audio tokens. + */ + total_tokens?: number; +} + +export namespace RealtimeResponseUsage { + /** + * Details about the input tokens used in the Response. + */ + export interface InputTokenDetails { + /** + * The number of audio tokens used in the Response. + */ + audio_tokens?: number; + + /** + * The number of cached tokens used in the Response. + */ + cached_tokens?: number; + + /** + * The number of text tokens used in the Response. + */ + text_tokens?: number; + } + + /** + * Details about the output tokens used in the Response. + */ + export interface OutputTokenDetails { + /** + * The number of audio tokens used in the Response. + */ + audio_tokens?: number; + + /** + * The number of text tokens used in the Response. + */ + text_tokens?: number; + } +} + +/** + * All events that the Realtime API can send back + */ +export type RealtimeServerEvent = + | ErrorEvent + | SessionCreatedEvent + | SessionUpdatedEvent + | ConversationCreatedEvent + | InputAudioBufferCommittedEvent + | InputAudioBufferClearedEvent + | InputAudioBufferSpeechStartedEvent + | InputAudioBufferSpeechStoppedEvent + | ConversationItemCreatedEvent + | ConversationItemInputAudioTranscriptionCompletedEvent + | ConversationItemInputAudioTranscriptionFailedEvent + | ConversationItemTruncatedEvent + | ConversationItemDeletedEvent + | ResponseCreatedEvent + | ResponseDoneEvent + | ResponseOutputItemAddedEvent + | ResponseOutputItemDoneEvent + | ResponseContentPartAddedEvent + | ResponseContentPartDoneEvent + | ResponseTextDeltaEvent + | ResponseTextDoneEvent + | ResponseAudioTranscriptDeltaEvent + | ResponseAudioTranscriptDoneEvent + | ResponseAudioDeltaEvent + | ResponseAudioDoneEvent + | ResponseFunctionCallArgumentsDeltaEvent + | ResponseFunctionCallArgumentsDoneEvent + | RateLimitsUpdatedEvent; + +/** + * Returned when the model-generated audio is updated. + */ +export interface ResponseAudioDeltaEvent { + /** + * The index of the content part in the item's content array. + */ + content_index: number; + + /** + * Base64-encoded audio data delta. + */ + delta: string; + + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The ID of the item. + */ + item_id: string; + + /** + * The index of the output item in the response. + */ + output_index: number; + + /** + * The ID of the response. + */ + response_id: string; + + /** + * The event type, must be `response.audio.delta`. + */ + type: 'response.audio.delta'; +} + +/** + * Returned when the model-generated audio is done. Also emitted when a Response is + * interrupted, incomplete, or cancelled. + */ +export interface ResponseAudioDoneEvent { + /** + * The index of the content part in the item's content array. + */ + content_index: number; + + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The ID of the item. + */ + item_id: string; + + /** + * The index of the output item in the response. + */ + output_index: number; + + /** + * The ID of the response. + */ + response_id: string; + + /** + * The event type, must be `response.audio.done`. + */ + type: 'response.audio.done'; +} + +/** + * Returned when the model-generated transcription of audio output is updated. + */ +export interface ResponseAudioTranscriptDeltaEvent { + /** + * The index of the content part in the item's content array. + */ + content_index: number; + + /** + * The transcript delta. + */ + delta: string; + + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The ID of the item. + */ + item_id: string; + + /** + * The index of the output item in the response. + */ + output_index: number; + + /** + * The ID of the response. + */ + response_id: string; + + /** + * The event type, must be `response.audio_transcript.delta`. + */ + type: 'response.audio_transcript.delta'; +} + +/** + * Returned when the model-generated transcription of audio output is done + * streaming. Also emitted when a Response is interrupted, incomplete, or + * cancelled. + */ +export interface ResponseAudioTranscriptDoneEvent { + /** + * The index of the content part in the item's content array. + */ + content_index: number; + + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The ID of the item. + */ + item_id: string; + + /** + * The index of the output item in the response. + */ + output_index: number; + + /** + * The ID of the response. + */ + response_id: string; + + /** + * The final transcript of the audio. + */ + transcript: string; + + /** + * The event type, must be `response.audio_transcript.done`. + */ + type: 'response.audio_transcript.done'; +} + +/** + * Send this event to cancel an in-progress response. The server will respond with + * a `response.cancelled` event or an error if there is no response to cancel. + */ +export interface ResponseCancelEvent { + /** + * The event type, must be `response.cancel`. + */ + type: 'response.cancel'; + + /** + * Optional client-generated ID used to identify this event. + */ + event_id?: string; + + /** + * A specific response ID to cancel - if not provided, will cancel an in-progress + * response in the default conversation. + */ + response_id?: string; +} + +/** + * Returned when a new content part is added to an assistant message item during + * response generation. + */ +export interface ResponseContentPartAddedEvent { + /** + * The index of the content part in the item's content array. + */ + content_index: number; + + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The ID of the item to which the content part was added. + */ + item_id: string; + + /** + * The index of the output item in the response. + */ + output_index: number; + + /** + * The content part that was added. + */ + part: ResponseContentPartAddedEvent.Part; + + /** + * The ID of the response. + */ + response_id: string; + + /** + * The event type, must be `response.content_part.added`. + */ + type: 'response.content_part.added'; +} + +export namespace ResponseContentPartAddedEvent { + /** + * The content part that was added. + */ + export interface Part { + /** + * Base64-encoded audio data (if type is "audio"). + */ + audio?: string; + + /** + * The text content (if type is "text"). + */ + text?: string; + + /** + * The transcript of the audio (if type is "audio"). + */ + transcript?: string; + + /** + * The content type ("text", "audio"). + */ + type?: 'text' | 'audio'; + } +} + +/** + * Returned when a content part is done streaming in an assistant message item. + * Also emitted when a Response is interrupted, incomplete, or cancelled. + */ +export interface ResponseContentPartDoneEvent { + /** + * The index of the content part in the item's content array. + */ + content_index: number; + + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The ID of the item. + */ + item_id: string; + + /** + * The index of the output item in the response. + */ + output_index: number; + + /** + * The content part that is done. + */ + part: ResponseContentPartDoneEvent.Part; + + /** + * The ID of the response. + */ + response_id: string; + + /** + * The event type, must be `response.content_part.done`. + */ + type: 'response.content_part.done'; +} + +export namespace ResponseContentPartDoneEvent { + /** + * The content part that is done. + */ + export interface Part { + /** + * Base64-encoded audio data (if type is "audio"). + */ + audio?: string; + + /** + * The text content (if type is "text"). + */ + text?: string; + + /** + * The transcript of the audio (if type is "audio"). + */ + transcript?: string; + + /** + * The content type ("text", "audio"). + */ + type?: 'text' | 'audio'; + } +} + +/** + * This event instructs the server to create a Response, which means triggering + * model inference. When in Server VAD mode, the server will create Responses + * automatically. + * + * A Response will include at least one Item, and may have two, in which case the + * second will be a function call. These Items will be appended to the conversation + * history. + * + * The server will respond with a `response.created` event, events for Items and + * content created, and finally a `response.done` event to indicate the Response is + * complete. + * + * The `response.create` event includes inference configuration like + * `instructions`, and `temperature`. These fields will override the Session's + * configuration for this Response only. + */ +export interface ResponseCreateEvent { + /** + * The event type, must be `response.create`. + */ + type: 'response.create'; + + /** + * Optional client-generated ID used to identify this event. + */ + event_id?: string; + + /** + * Create a new Realtime response with these parameters + */ + response?: ResponseCreateEvent.Response; +} + +export namespace ResponseCreateEvent { + /** + * Create a new Realtime response with these parameters + */ + export interface Response { + /** + * Controls which conversation the response is added to. Currently supports `auto` + * and `none`, with `auto` as the default value. The `auto` value means that the + * contents of the response will be added to the default conversation. Set this to + * `none` to create an out-of-band response which will not add items to default + * conversation. + */ + conversation?: (string & {}) | 'auto' | 'none'; + + /** + * Input items to include in the prompt for the model. Creates a new context for + * this response, without including the default conversation. Can include + * references to items from the default conversation. + */ + input?: Array; + + /** + * The default system instructions (i.e. system message) prepended to model calls. + * This field allows the client to guide the model on desired responses. The model + * can be instructed on response content and format, (e.g. "be extremely succinct", + * "act friendly", "here are examples of good responses") and on audio behavior + * (e.g. "talk quickly", "inject emotion into your voice", "laugh frequently"). The + * instructions are not guaranteed to be followed by the model, but they provide + * guidance to the model on the desired behavior. + * + * Note that the server sets default instructions which will be used if this field + * is not set and are visible in the `session.created` event at the start of the + * session. + */ + instructions?: string; + + /** + * Maximum number of output tokens for a single assistant response, inclusive of + * tool calls. Provide an integer between 1 and 4096 to limit output tokens, or + * `inf` for the maximum available tokens for a given model. Defaults to `inf`. + */ + max_response_output_tokens?: number | 'inf'; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format. Keys + * can be a maximum of 64 characters long and values can be a maximum of 512 + * characters long. + */ + metadata?: unknown | null; + + /** + * The set of modalities the model can respond with. To disable audio, set this to + * ["text"]. + */ + modalities?: Array<'text' | 'audio'>; + + /** + * The format of output audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. + */ + output_audio_format?: 'pcm16' | 'g711_ulaw' | 'g711_alaw'; + + /** + * Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8. + */ + temperature?: number; + + /** + * How the model chooses tools. Options are `auto`, `none`, `required`, or specify + * a function, like `{"type": "function", "function": {"name": "my_function"}}`. + */ + tool_choice?: string; + + /** + * Tools (functions) available to the model. + */ + tools?: Array; + + /** + * The voice the model uses to respond. Voice cannot be changed during the session + * once the model has responded with audio at least once. Current voice options are + * `alloy`, `ash`, `ballad`, `coral`, `echo` `sage`, `shimmer` and `verse`. + */ + voice?: 'alloy' | 'ash' | 'ballad' | 'coral' | 'echo' | 'sage' | 'shimmer' | 'verse'; + } + + export namespace Response { + export interface Tool { + /** + * The description of the function, including guidance on when and how to call it, + * and guidance about what to tell the user when calling (if anything). + */ + description?: string; + + /** + * The name of the function. + */ + name?: string; + + /** + * Parameters of the function in JSON Schema. + */ + parameters?: unknown; + + /** + * The type of the tool, i.e. `function`. + */ + type?: 'function'; + } + } +} + +/** + * Returned when a new Response is created. The first event of response creation, + * where the response is in an initial state of `in_progress`. + */ +export interface ResponseCreatedEvent { + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The response resource. + */ + response: RealtimeResponse; + + /** + * The event type, must be `response.created`. + */ + type: 'response.created'; +} + +/** + * Returned when a Response is done streaming. Always emitted, no matter the final + * state. The Response object included in the `response.done` event will include + * all output Items in the Response but will omit the raw audio data. + */ +export interface ResponseDoneEvent { + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The response resource. + */ + response: RealtimeResponse; + + /** + * The event type, must be `response.done`. + */ + type: 'response.done'; +} + +/** + * Returned when the model-generated function call arguments are updated. + */ +export interface ResponseFunctionCallArgumentsDeltaEvent { + /** + * The ID of the function call. + */ + call_id: string; + + /** + * The arguments delta as a JSON string. + */ + delta: string; + + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The ID of the function call item. + */ + item_id: string; + + /** + * The index of the output item in the response. + */ + output_index: number; + + /** + * The ID of the response. + */ + response_id: string; + + /** + * The event type, must be `response.function_call_arguments.delta`. + */ + type: 'response.function_call_arguments.delta'; +} + +/** + * Returned when the model-generated function call arguments are done streaming. + * Also emitted when a Response is interrupted, incomplete, or cancelled. + */ +export interface ResponseFunctionCallArgumentsDoneEvent { + /** + * The final arguments as a JSON string. + */ + arguments: string; + + /** + * The ID of the function call. + */ + call_id: string; + + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The ID of the function call item. + */ + item_id: string; + + /** + * The index of the output item in the response. + */ + output_index: number; + + /** + * The ID of the response. + */ + response_id: string; + + /** + * The event type, must be `response.function_call_arguments.done`. + */ + type: 'response.function_call_arguments.done'; +} + +/** + * Returned when a new Item is created during Response generation. + */ +export interface ResponseOutputItemAddedEvent { + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The item to add to the conversation. + */ + item: ConversationItem; + + /** + * The index of the output item in the Response. + */ + output_index: number; + + /** + * The ID of the Response to which the item belongs. + */ + response_id: string; + + /** + * The event type, must be `response.output_item.added`. + */ + type: 'response.output_item.added'; +} + +/** + * Returned when an Item is done streaming. Also emitted when a Response is + * interrupted, incomplete, or cancelled. + */ +export interface ResponseOutputItemDoneEvent { + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The item to add to the conversation. + */ + item: ConversationItem; + + /** + * The index of the output item in the Response. + */ + output_index: number; + + /** + * The ID of the Response to which the item belongs. + */ + response_id: string; + + /** + * The event type, must be `response.output_item.done`. + */ + type: 'response.output_item.done'; +} + +/** + * Returned when the text value of a "text" content part is updated. + */ +export interface ResponseTextDeltaEvent { + /** + * The index of the content part in the item's content array. + */ + content_index: number; + + /** + * The text delta. + */ + delta: string; + + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The ID of the item. + */ + item_id: string; + + /** + * The index of the output item in the response. + */ + output_index: number; + + /** + * The ID of the response. + */ + response_id: string; + + /** + * The event type, must be `response.text.delta`. + */ + type: 'response.text.delta'; +} + +/** + * Returned when the text value of a "text" content part is done streaming. Also + * emitted when a Response is interrupted, incomplete, or cancelled. + */ +export interface ResponseTextDoneEvent { + /** + * The index of the content part in the item's content array. + */ + content_index: number; + + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * The ID of the item. + */ + item_id: string; + + /** + * The index of the output item in the response. + */ + output_index: number; + + /** + * The ID of the response. + */ + response_id: string; + + /** + * The final text content. + */ + text: string; + + /** + * The event type, must be `response.text.done`. + */ + type: 'response.text.done'; +} + +/** + * Returned when a Session is created. Emitted automatically when a new connection + * is established as the first server event. This event will contain the default + * Session configuration. + */ +export interface SessionCreatedEvent { + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * Realtime session object configuration. + */ + session: SessionsAPI.Session; + + /** + * The event type, must be `session.created`. + */ + type: 'session.created'; +} + +/** + * Send this event to update the session’s default configuration. The client may + * send this event at any time to update the session configuration, and any field + * may be updated at any time, except for "voice". The server will respond with a + * `session.updated` event that shows the full effective configuration. Only fields + * that are present are updated, thus the correct way to clear a field like + * "instructions" is to pass an empty string. + */ +export interface SessionUpdateEvent { + /** + * Realtime session object configuration. + */ + session: SessionUpdateEvent.Session; + + /** + * The event type, must be `session.update`. + */ + type: 'session.update'; + + /** + * Optional client-generated ID used to identify this event. + */ + event_id?: string; +} + +export namespace SessionUpdateEvent { + /** + * Realtime session object configuration. + */ + export interface Session { + /** + * The Realtime model used for this session. + */ + model: + | 'gpt-4o-realtime-preview' + | 'gpt-4o-realtime-preview-2024-10-01' + | 'gpt-4o-realtime-preview-2024-12-17' + | 'gpt-4o-mini-realtime-preview' + | 'gpt-4o-mini-realtime-preview-2024-12-17'; + + /** + * The format of input audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. + */ + input_audio_format?: 'pcm16' | 'g711_ulaw' | 'g711_alaw'; + + /** + * Configuration for input audio transcription, defaults to off and can be set to + * `null` to turn off once on. Input audio transcription is not native to the + * model, since the model consumes audio directly. Transcription runs + * asynchronously through Whisper and should be treated as rough guidance rather + * than the representation understood by the model. + */ + input_audio_transcription?: Session.InputAudioTranscription; + + /** + * The default system instructions (i.e. system message) prepended to model calls. + * This field allows the client to guide the model on desired responses. The model + * can be instructed on response content and format, (e.g. "be extremely succinct", + * "act friendly", "here are examples of good responses") and on audio behavior + * (e.g. "talk quickly", "inject emotion into your voice", "laugh frequently"). The + * instructions are not guaranteed to be followed by the model, but they provide + * guidance to the model on the desired behavior. + * + * Note that the server sets default instructions which will be used if this field + * is not set and are visible in the `session.created` event at the start of the + * session. + */ + instructions?: string; + + /** + * Maximum number of output tokens for a single assistant response, inclusive of + * tool calls. Provide an integer between 1 and 4096 to limit output tokens, or + * `inf` for the maximum available tokens for a given model. Defaults to `inf`. + */ + max_response_output_tokens?: number | 'inf'; + + /** + * The set of modalities the model can respond with. To disable audio, set this to + * ["text"]. + */ + modalities?: Array<'text' | 'audio'>; + + /** + * The format of output audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. + */ + output_audio_format?: 'pcm16' | 'g711_ulaw' | 'g711_alaw'; + + /** + * Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8. + */ + temperature?: number; + + /** + * How the model chooses tools. Options are `auto`, `none`, `required`, or specify + * a function. + */ + tool_choice?: string; + + /** + * Tools (functions) available to the model. + */ + tools?: Array; + + /** + * Configuration for turn detection. Can be set to `null` to turn off. Server VAD + * means that the model will detect the start and end of speech based on audio + * volume and respond at the end of user speech. + */ + turn_detection?: Session.TurnDetection; + + /** + * The voice the model uses to respond. Voice cannot be changed during the session + * once the model has responded with audio at least once. Current voice options are + * `alloy`, `ash`, `ballad`, `coral`, `echo` `sage`, `shimmer` and `verse`. + */ + voice?: 'alloy' | 'ash' | 'ballad' | 'coral' | 'echo' | 'sage' | 'shimmer' | 'verse'; + } + + export namespace Session { + /** + * Configuration for input audio transcription, defaults to off and can be set to + * `null` to turn off once on. Input audio transcription is not native to the + * model, since the model consumes audio directly. Transcription runs + * asynchronously through Whisper and should be treated as rough guidance rather + * than the representation understood by the model. + */ + export interface InputAudioTranscription { + /** + * The model to use for transcription, `whisper-1` is the only currently supported + * model. + */ + model?: string; + } + + export interface Tool { + /** + * The description of the function, including guidance on when and how to call it, + * and guidance about what to tell the user when calling (if anything). + */ + description?: string; + + /** + * The name of the function. + */ + name?: string; + + /** + * Parameters of the function in JSON Schema. + */ + parameters?: unknown; + + /** + * The type of the tool, i.e. `function`. + */ + type?: 'function'; + } + + /** + * Configuration for turn detection. Can be set to `null` to turn off. Server VAD + * means that the model will detect the start and end of speech based on audio + * volume and respond at the end of user speech. + */ + export interface TurnDetection { + /** + * Whether or not to automatically generate a response when VAD is enabled. `true` + * by default. + */ + create_response?: boolean; + + /** + * Amount of audio to include before the VAD detected speech (in milliseconds). + * Defaults to 300ms. + */ + prefix_padding_ms?: number; + + /** + * Duration of silence to detect speech stop (in milliseconds). Defaults to 500ms. + * With shorter values the model will respond more quickly, but may jump in on + * short pauses from the user. + */ + silence_duration_ms?: number; + + /** + * Activation threshold for VAD (0.0 to 1.0), this defaults to 0.5. A higher + * threshold will require louder audio to activate the model, and thus might + * perform better in noisy environments. + */ + threshold?: number; + + /** + * Type of turn detection, only `server_vad` is currently supported. + */ + type?: string; + } + } +} + +/** + * Returned when a session is updated with a `session.update` event, unless there + * is an error. + */ +export interface SessionUpdatedEvent { + /** + * The unique ID of the server event. + */ + event_id: string; + + /** + * Realtime session object configuration. + */ + session: SessionsAPI.Session; + + /** + * The event type, must be `session.updated`. + */ + type: 'session.updated'; +} + +Realtime.Sessions = Sessions; + +export declare namespace Realtime { + export { + Sessions as Sessions, + type SessionsAPISession as Session, + type SessionCreateResponse as SessionCreateResponse, + type SessionCreateParams as SessionCreateParams, + }; +} diff --git a/src/resources/beta/realtime/sessions.ts b/src/resources/beta/realtime/sessions.ts new file mode 100644 index 000000000..c1082d236 --- /dev/null +++ b/src/resources/beta/realtime/sessions.ts @@ -0,0 +1,546 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import { APIResource } from '../../../resource'; +import * as Core from '../../../core'; + +export class Sessions extends APIResource { + /** + * Create an ephemeral API token for use in client-side applications with the + * Realtime API. Can be configured with the same session parameters as the + * `session.update` client event. + * + * It responds with a session object, plus a `client_secret` key which contains a + * usable ephemeral API token that can be used to authenticate browser clients for + * the Realtime API. + */ + create(body: SessionCreateParams, options?: Core.RequestOptions): Core.APIPromise { + return this._client.post('/realtime/sessions', { + body, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, + }); + } +} + +/** + * Realtime session object configuration. + */ +export interface Session { + /** + * Unique identifier for the session object. + */ + id?: string; + + /** + * The format of input audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. + */ + input_audio_format?: 'pcm16' | 'g711_ulaw' | 'g711_alaw'; + + /** + * Configuration for input audio transcription, defaults to off and can be set to + * `null` to turn off once on. Input audio transcription is not native to the + * model, since the model consumes audio directly. Transcription runs + * asynchronously through Whisper and should be treated as rough guidance rather + * than the representation understood by the model. + */ + input_audio_transcription?: Session.InputAudioTranscription; + + /** + * The default system instructions (i.e. system message) prepended to model calls. + * This field allows the client to guide the model on desired responses. The model + * can be instructed on response content and format, (e.g. "be extremely succinct", + * "act friendly", "here are examples of good responses") and on audio behavior + * (e.g. "talk quickly", "inject emotion into your voice", "laugh frequently"). The + * instructions are not guaranteed to be followed by the model, but they provide + * guidance to the model on the desired behavior. + * + * Note that the server sets default instructions which will be used if this field + * is not set and are visible in the `session.created` event at the start of the + * session. + */ + instructions?: string; + + /** + * Maximum number of output tokens for a single assistant response, inclusive of + * tool calls. Provide an integer between 1 and 4096 to limit output tokens, or + * `inf` for the maximum available tokens for a given model. Defaults to `inf`. + */ + max_response_output_tokens?: number | 'inf'; + + /** + * The set of modalities the model can respond with. To disable audio, set this to + * ["text"]. + */ + modalities?: Array<'text' | 'audio'>; + + /** + * The Realtime model used for this session. + */ + model?: + | (string & {}) + | 'gpt-4o-realtime-preview' + | 'gpt-4o-realtime-preview-2024-10-01' + | 'gpt-4o-realtime-preview-2024-12-17' + | 'gpt-4o-mini-realtime-preview' + | 'gpt-4o-mini-realtime-preview-2024-12-17'; + + /** + * The format of output audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. + */ + output_audio_format?: 'pcm16' | 'g711_ulaw' | 'g711_alaw'; + + /** + * Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8. + */ + temperature?: number; + + /** + * How the model chooses tools. Options are `auto`, `none`, `required`, or specify + * a function. + */ + tool_choice?: string; + + /** + * Tools (functions) available to the model. + */ + tools?: Array; + + /** + * Configuration for turn detection. Can be set to `null` to turn off. Server VAD + * means that the model will detect the start and end of speech based on audio + * volume and respond at the end of user speech. + */ + turn_detection?: Session.TurnDetection | null; + + /** + * The voice the model uses to respond. Voice cannot be changed during the session + * once the model has responded with audio at least once. Current voice options are + * `alloy`, `ash`, `ballad`, `coral`, `echo` `sage`, `shimmer` and `verse`. + */ + voice?: 'alloy' | 'ash' | 'ballad' | 'coral' | 'echo' | 'sage' | 'shimmer' | 'verse'; +} + +export namespace Session { + /** + * Configuration for input audio transcription, defaults to off and can be set to + * `null` to turn off once on. Input audio transcription is not native to the + * model, since the model consumes audio directly. Transcription runs + * asynchronously through Whisper and should be treated as rough guidance rather + * than the representation understood by the model. + */ + export interface InputAudioTranscription { + /** + * The model to use for transcription, `whisper-1` is the only currently supported + * model. + */ + model?: string; + } + + export interface Tool { + /** + * The description of the function, including guidance on when and how to call it, + * and guidance about what to tell the user when calling (if anything). + */ + description?: string; + + /** + * The name of the function. + */ + name?: string; + + /** + * Parameters of the function in JSON Schema. + */ + parameters?: unknown; + + /** + * The type of the tool, i.e. `function`. + */ + type?: 'function'; + } + + /** + * Configuration for turn detection. Can be set to `null` to turn off. Server VAD + * means that the model will detect the start and end of speech based on audio + * volume and respond at the end of user speech. + */ + export interface TurnDetection { + /** + * Amount of audio to include before the VAD detected speech (in milliseconds). + * Defaults to 300ms. + */ + prefix_padding_ms?: number; + + /** + * Duration of silence to detect speech stop (in milliseconds). Defaults to 500ms. + * With shorter values the model will respond more quickly, but may jump in on + * short pauses from the user. + */ + silence_duration_ms?: number; + + /** + * Activation threshold for VAD (0.0 to 1.0), this defaults to 0.5. A higher + * threshold will require louder audio to activate the model, and thus might + * perform better in noisy environments. + */ + threshold?: number; + + /** + * Type of turn detection, only `server_vad` is currently supported. + */ + type?: 'server_vad'; + } +} + +/** + * A new Realtime session configuration, with an ephermeral key. Default TTL for + * keys is one minute. + */ +export interface SessionCreateResponse { + /** + * Ephemeral key returned by the API. + */ + client_secret?: SessionCreateResponse.ClientSecret; + + /** + * The format of input audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. + */ + input_audio_format?: string; + + /** + * Configuration for input audio transcription, defaults to off and can be set to + * `null` to turn off once on. Input audio transcription is not native to the + * model, since the model consumes audio directly. Transcription runs + * asynchronously through Whisper and should be treated as rough guidance rather + * than the representation understood by the model. + */ + input_audio_transcription?: SessionCreateResponse.InputAudioTranscription; + + /** + * The default system instructions (i.e. system message) prepended to model calls. + * This field allows the client to guide the model on desired responses. The model + * can be instructed on response content and format, (e.g. "be extremely succinct", + * "act friendly", "here are examples of good responses") and on audio behavior + * (e.g. "talk quickly", "inject emotion into your voice", "laugh frequently"). The + * instructions are not guaranteed to be followed by the model, but they provide + * guidance to the model on the desired behavior. + * + * Note that the server sets default instructions which will be used if this field + * is not set and are visible in the `session.created` event at the start of the + * session. + */ + instructions?: string; + + /** + * Maximum number of output tokens for a single assistant response, inclusive of + * tool calls. Provide an integer between 1 and 4096 to limit output tokens, or + * `inf` for the maximum available tokens for a given model. Defaults to `inf`. + */ + max_response_output_tokens?: number | 'inf'; + + /** + * The set of modalities the model can respond with. To disable audio, set this to + * ["text"]. + */ + modalities?: Array<'text' | 'audio'>; + + /** + * The format of output audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. + */ + output_audio_format?: string; + + /** + * Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8. + */ + temperature?: number; + + /** + * How the model chooses tools. Options are `auto`, `none`, `required`, or specify + * a function. + */ + tool_choice?: string; + + /** + * Tools (functions) available to the model. + */ + tools?: Array; + + /** + * Configuration for turn detection. Can be set to `null` to turn off. Server VAD + * means that the model will detect the start and end of speech based on audio + * volume and respond at the end of user speech. + */ + turn_detection?: SessionCreateResponse.TurnDetection; + + /** + * The voice the model uses to respond. Voice cannot be changed during the session + * once the model has responded with audio at least once. Current voice options are + * `alloy`, `ash`, `ballad`, `coral`, `echo` `sage`, `shimmer` and `verse`. + */ + voice?: 'alloy' | 'ash' | 'ballad' | 'coral' | 'echo' | 'sage' | 'shimmer' | 'verse'; +} + +export namespace SessionCreateResponse { + /** + * Ephemeral key returned by the API. + */ + export interface ClientSecret { + /** + * Timestamp for when the token expires. Currently, all tokens expire after one + * minute. + */ + expires_at?: number; + + /** + * Ephemeral key usable in client environments to authenticate connections to the + * Realtime API. Use this in client-side environments rather than a standard API + * token, which should only be used server-side. + */ + value?: string; + } + + /** + * Configuration for input audio transcription, defaults to off and can be set to + * `null` to turn off once on. Input audio transcription is not native to the + * model, since the model consumes audio directly. Transcription runs + * asynchronously through Whisper and should be treated as rough guidance rather + * than the representation understood by the model. + */ + export interface InputAudioTranscription { + /** + * The model to use for transcription, `whisper-1` is the only currently supported + * model. + */ + model?: string; + } + + export interface Tool { + /** + * The description of the function, including guidance on when and how to call it, + * and guidance about what to tell the user when calling (if anything). + */ + description?: string; + + /** + * The name of the function. + */ + name?: string; + + /** + * Parameters of the function in JSON Schema. + */ + parameters?: unknown; + + /** + * The type of the tool, i.e. `function`. + */ + type?: 'function'; + } + + /** + * Configuration for turn detection. Can be set to `null` to turn off. Server VAD + * means that the model will detect the start and end of speech based on audio + * volume and respond at the end of user speech. + */ + export interface TurnDetection { + /** + * Amount of audio to include before the VAD detected speech (in milliseconds). + * Defaults to 300ms. + */ + prefix_padding_ms?: number; + + /** + * Duration of silence to detect speech stop (in milliseconds). Defaults to 500ms. + * With shorter values the model will respond more quickly, but may jump in on + * short pauses from the user. + */ + silence_duration_ms?: number; + + /** + * Activation threshold for VAD (0.0 to 1.0), this defaults to 0.5. A higher + * threshold will require louder audio to activate the model, and thus might + * perform better in noisy environments. + */ + threshold?: number; + + /** + * Type of turn detection, only `server_vad` is currently supported. + */ + type?: string; + } +} + +export interface SessionCreateParams { + /** + * The Realtime model used for this session. + */ + model: + | 'gpt-4o-realtime-preview' + | 'gpt-4o-realtime-preview-2024-10-01' + | 'gpt-4o-realtime-preview-2024-12-17' + | 'gpt-4o-mini-realtime-preview' + | 'gpt-4o-mini-realtime-preview-2024-12-17'; + + /** + * The format of input audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. + */ + input_audio_format?: 'pcm16' | 'g711_ulaw' | 'g711_alaw'; + + /** + * Configuration for input audio transcription, defaults to off and can be set to + * `null` to turn off once on. Input audio transcription is not native to the + * model, since the model consumes audio directly. Transcription runs + * asynchronously through Whisper and should be treated as rough guidance rather + * than the representation understood by the model. + */ + input_audio_transcription?: SessionCreateParams.InputAudioTranscription; + + /** + * The default system instructions (i.e. system message) prepended to model calls. + * This field allows the client to guide the model on desired responses. The model + * can be instructed on response content and format, (e.g. "be extremely succinct", + * "act friendly", "here are examples of good responses") and on audio behavior + * (e.g. "talk quickly", "inject emotion into your voice", "laugh frequently"). The + * instructions are not guaranteed to be followed by the model, but they provide + * guidance to the model on the desired behavior. + * + * Note that the server sets default instructions which will be used if this field + * is not set and are visible in the `session.created` event at the start of the + * session. + */ + instructions?: string; + + /** + * Maximum number of output tokens for a single assistant response, inclusive of + * tool calls. Provide an integer between 1 and 4096 to limit output tokens, or + * `inf` for the maximum available tokens for a given model. Defaults to `inf`. + */ + max_response_output_tokens?: number | 'inf'; + + /** + * The set of modalities the model can respond with. To disable audio, set this to + * ["text"]. + */ + modalities?: Array<'text' | 'audio'>; + + /** + * The format of output audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. + */ + output_audio_format?: 'pcm16' | 'g711_ulaw' | 'g711_alaw'; + + /** + * Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8. + */ + temperature?: number; + + /** + * How the model chooses tools. Options are `auto`, `none`, `required`, or specify + * a function. + */ + tool_choice?: string; + + /** + * Tools (functions) available to the model. + */ + tools?: Array; + + /** + * Configuration for turn detection. Can be set to `null` to turn off. Server VAD + * means that the model will detect the start and end of speech based on audio + * volume and respond at the end of user speech. + */ + turn_detection?: SessionCreateParams.TurnDetection; + + /** + * The voice the model uses to respond. Voice cannot be changed during the session + * once the model has responded with audio at least once. Current voice options are + * `alloy`, `ash`, `ballad`, `coral`, `echo` `sage`, `shimmer` and `verse`. + */ + voice?: 'alloy' | 'ash' | 'ballad' | 'coral' | 'echo' | 'sage' | 'shimmer' | 'verse'; +} + +export namespace SessionCreateParams { + /** + * Configuration for input audio transcription, defaults to off and can be set to + * `null` to turn off once on. Input audio transcription is not native to the + * model, since the model consumes audio directly. Transcription runs + * asynchronously through Whisper and should be treated as rough guidance rather + * than the representation understood by the model. + */ + export interface InputAudioTranscription { + /** + * The model to use for transcription, `whisper-1` is the only currently supported + * model. + */ + model?: string; + } + + export interface Tool { + /** + * The description of the function, including guidance on when and how to call it, + * and guidance about what to tell the user when calling (if anything). + */ + description?: string; + + /** + * The name of the function. + */ + name?: string; + + /** + * Parameters of the function in JSON Schema. + */ + parameters?: unknown; + + /** + * The type of the tool, i.e. `function`. + */ + type?: 'function'; + } + + /** + * Configuration for turn detection. Can be set to `null` to turn off. Server VAD + * means that the model will detect the start and end of speech based on audio + * volume and respond at the end of user speech. + */ + export interface TurnDetection { + /** + * Whether or not to automatically generate a response when VAD is enabled. `true` + * by default. + */ + create_response?: boolean; + + /** + * Amount of audio to include before the VAD detected speech (in milliseconds). + * Defaults to 300ms. + */ + prefix_padding_ms?: number; + + /** + * Duration of silence to detect speech stop (in milliseconds). Defaults to 500ms. + * With shorter values the model will respond more quickly, but may jump in on + * short pauses from the user. + */ + silence_duration_ms?: number; + + /** + * Activation threshold for VAD (0.0 to 1.0), this defaults to 0.5. A higher + * threshold will require louder audio to activate the model, and thus might + * perform better in noisy environments. + */ + threshold?: number; + + /** + * Type of turn detection, only `server_vad` is currently supported. + */ + type?: string; + } +} + +export declare namespace Sessions { + export { + type Session as Session, + type SessionCreateResponse as SessionCreateResponse, + type SessionCreateParams as SessionCreateParams, + }; +} diff --git a/tests/api-resources/beta/realtime/sessions.test.ts b/tests/api-resources/beta/realtime/sessions.test.ts new file mode 100644 index 000000000..0ed998c27 --- /dev/null +++ b/tests/api-resources/beta/realtime/sessions.test.ts @@ -0,0 +1,45 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import OpenAI from 'openai'; +import { Response } from 'node-fetch'; + +const client = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('resource sessions', () => { + test('create: only required params', async () => { + const responsePromise = client.beta.realtime.sessions.create({ model: 'gpt-4o-realtime-preview' }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('create: required and optional params', async () => { + const response = await client.beta.realtime.sessions.create({ + model: 'gpt-4o-realtime-preview', + input_audio_format: 'pcm16', + input_audio_transcription: { model: 'model' }, + instructions: 'instructions', + max_response_output_tokens: 0, + modalities: ['text'], + output_audio_format: 'pcm16', + temperature: 0, + tool_choice: 'tool_choice', + tools: [{ description: 'description', name: 'name', parameters: {}, type: 'function' }], + turn_detection: { + create_response: true, + prefix_padding_ms: 0, + silence_duration_ms: 0, + threshold: 0, + type: 'type', + }, + voice: 'alloy', + }); + }); +}); From 66c9715482827f7f28f5b6b8592185ae338b5379 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 9 Jan 2025 05:07:17 +0000 Subject: [PATCH 654/725] release: 4.78.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e66c326a9..9785f7c4a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.77.4" + ".": "4.78.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a811f188..fbc82e722 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.78.0 (2025-01-09) + +Full Changelog: [v4.77.4...v4.78.0](https://github.com/openai/openai-node/compare/v4.77.4...v4.78.0) + +### Features + +* **client:** add realtime types ([#1254](https://github.com/openai/openai-node/issues/1254)) ([7130995](https://github.com/openai/openai-node/commit/71309957a9a0883cac84b8b57697b796a9df3503)) + ## 4.77.4 (2025-01-08) Full Changelog: [v4.77.3...v4.77.4](https://github.com/openai/openai-node/compare/v4.77.3...v4.77.4) diff --git a/jsr.json b/jsr.json index da442da31..e26f2d5d8 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.77.4", + "version": "4.78.0", "exports": "./index.ts", "publish": { "exclude": [ diff --git a/package.json b/package.json index 453859b6b..ab06be9cf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.77.4", + "version": "4.78.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 7f6adc9bc..7ab855b86 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.77.4'; // x-release-please-version +export const VERSION = '4.78.0'; // x-release-please-version From 6070d964f6d62789f7deb670daa49f3c4f0a6f40 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 10 Jan 2025 15:56:22 +0000 Subject: [PATCH 655/725] fix: send correct Accept header for certain endpoints (#1257) --- src/resources/audio/speech.ts | 7 ++++++- src/resources/files.ts | 11 ++++++----- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/src/resources/audio/speech.ts b/src/resources/audio/speech.ts index 1cda80f79..bd2ed9f65 100644 --- a/src/resources/audio/speech.ts +++ b/src/resources/audio/speech.ts @@ -9,7 +9,12 @@ export class Speech extends APIResource { * Generates audio from the input text. */ create(body: SpeechCreateParams, options?: Core.RequestOptions): Core.APIPromise { - return this._client.post('/audio/speech', { body, ...options, __binaryResponse: true }); + return this._client.post('/audio/speech', { + body, + ...options, + headers: { Accept: 'application/octet-stream', ...options?.headers }, + __binaryResponse: true, + }); } } diff --git a/src/resources/files.ts b/src/resources/files.ts index 42a7bdfba..43708310b 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -69,7 +69,11 @@ export class Files extends APIResource { * Returns the contents of the specified file. */ content(fileId: string, options?: Core.RequestOptions): Core.APIPromise { - return this._client.get(`/files/${fileId}/content`, { ...options, __binaryResponse: true }); + return this._client.get(`/files/${fileId}/content`, { + ...options, + headers: { Accept: 'application/binary', ...options?.headers }, + __binaryResponse: true, + }); } /** @@ -78,10 +82,7 @@ export class Files extends APIResource { * @deprecated The `.content()` method should be used instead */ retrieveContent(fileId: string, options?: Core.RequestOptions): Core.APIPromise { - return this._client.get(`/files/${fileId}/content`, { - ...options, - headers: { Accept: 'application/json', ...options?.headers }, - }); + return this._client.get(`/files/${fileId}/content`, options); } /** From 14784f95797d4d525dafecfd4ec9c7a133540da0 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 10 Jan 2025 15:56:57 +0000 Subject: [PATCH 656/725] release: 4.78.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9785f7c4a..3218ab333 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.78.0" + ".": "4.78.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index fbc82e722..320d00140 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.78.1 (2025-01-10) + +Full Changelog: [v4.78.0...v4.78.1](https://github.com/openai/openai-node/compare/v4.78.0...v4.78.1) + +### Bug Fixes + +* send correct Accept header for certain endpoints ([#1257](https://github.com/openai/openai-node/issues/1257)) ([8756693](https://github.com/openai/openai-node/commit/8756693c5690b16045cdd8d33636fe7643d45f3a)) + ## 4.78.0 (2025-01-09) Full Changelog: [v4.77.4...v4.78.0](https://github.com/openai/openai-node/compare/v4.77.4...v4.78.0) diff --git a/jsr.json b/jsr.json index e26f2d5d8..257faa02d 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.78.0", + "version": "4.78.1", "exports": "./index.ts", "publish": { "exclude": [ diff --git a/package.json b/package.json index ab06be9cf..ff6ec16bc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.78.0", + "version": "4.78.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 7ab855b86..a8ac58ba2 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.78.0'; // x-release-please-version +export const VERSION = '4.78.1'; // x-release-please-version From b08a846a9aae3686574527fa2a8d91bb0e6c7aaf Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 16:19:51 +0000 Subject: [PATCH 657/725] chore(internal): streaming refactors (#1261) --- src/streaming.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/streaming.ts b/src/streaming.ts index 2891e6ac3..da633f7fd 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -38,9 +38,7 @@ export class Stream implements AsyncIterable { if (sse.data.startsWith('[DONE]')) { done = true; continue; - } - - if (sse.event === null) { + } else { let data; try { From 55f084dfcae4229075ad7ebc33fff2ef4cd095e5 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Mon, 13 Jan 2025 16:28:31 +0000 Subject: [PATCH 658/725] chore: fix streaming --- src/streaming.ts | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/src/streaming.ts b/src/streaming.ts index da633f7fd..9cfd18176 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -52,22 +52,12 @@ export class Stream implements AsyncIterable { if (data && data.error) { throw new APIError(undefined, data.error, undefined, undefined); } - - yield data; - } else { - let data; - try { - data = JSON.parse(sse.data); - } catch (e) { - console.error(`Could not parse message into JSON:`, sse.data); - console.error(`From chunk:`, sse.raw); - throw e; - } // TODO: Is this where the error should be thrown? if (sse.event == 'error') { throw new APIError(undefined, data.error, data.message, undefined); } - yield { event: sse.event, data: data } as any; + + yield data; } } done = true; From 620ecd506fbf379018cf8f7a7fe92253ac49c9af Mon Sep 17 00:00:00 2001 From: Minh-Anh Phan <111523473+minhanh-phan@users.noreply.github.com> Date: Mon, 13 Jan 2025 11:42:15 -0800 Subject: [PATCH 659/725] fix(logs/azure): redact sensitive header when DEBUG is set (#1218) --- src/core.ts | 36 ++++++++++++++++- tests/index.test.ts | 94 ++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 128 insertions(+), 2 deletions(-) diff --git a/src/core.ts b/src/core.ts index 972cceaec..3d2d029a5 100644 --- a/src/core.ts +++ b/src/core.ts @@ -1148,9 +1148,43 @@ function applyHeadersMut(targetHeaders: Headers, newHeaders: Headers): void { } } +const SENSITIVE_HEADERS = new Set(['authorization', 'api-key']); + export function debug(action: string, ...args: any[]) { if (typeof process !== 'undefined' && process?.env?.['DEBUG'] === 'true') { - console.log(`OpenAI:DEBUG:${action}`, ...args); + const modifiedArgs = args.map((arg) => { + if (!arg) { + return arg; + } + + // Check for sensitive headers in request body 'headers' object + if (arg['headers']) { + // clone so we don't mutate + const modifiedArg = { ...arg, headers: { ...arg['headers'] } }; + + for (const header in arg['headers']) { + if (SENSITIVE_HEADERS.has(header.toLowerCase())) { + modifiedArg['headers'][header] = 'REDACTED'; + } + } + + return modifiedArg; + } + + let modifiedArg = null; + + // Check for sensitive headers in headers object + for (const header in arg) { + if (SENSITIVE_HEADERS.has(header.toLowerCase())) { + // avoid making a copy until we need to + modifiedArg ??= { ...arg }; + modifiedArg[header] = 'REDACTED'; + } + } + + return modifiedArg ?? arg; + }); + console.log(`OpenAI:DEBUG:${action}`, ...modifiedArgs); } } diff --git a/tests/index.test.ts b/tests/index.test.ts index a6f0040a4..016d525f5 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -2,7 +2,7 @@ import OpenAI from 'openai'; import { APIUserAbortError } from 'openai'; -import { Headers } from 'openai/core'; +import { debug, Headers } from 'openai/core'; import defaultFetch, { Response, type RequestInit, type RequestInfo } from 'node-fetch'; describe('instantiate client', () => { @@ -424,3 +424,95 @@ describe('retries', () => { expect(count).toEqual(3); }); }); + +describe('debug()', () => { + const env = process.env; + const spy = jest.spyOn(console, 'log'); + + beforeEach(() => { + jest.resetModules(); + process.env = { ...env }; + process.env['DEBUG'] = 'true'; + }); + + afterEach(() => { + process.env = env; + }); + + test('body request object with Authorization header', function () { + // Test request body includes headers object with Authorization + const headersTest = { + headers: { + Authorization: 'fakeAuthorization', + }, + }; + debug('request', headersTest); + expect(spy).toHaveBeenCalledWith('OpenAI:DEBUG:request', { + headers: { + Authorization: 'REDACTED', + }, + }); + }); + + test('body request object with api-key header', function () { + // Test request body includes headers object with api-ley + const apiKeyTest = { + headers: { + 'api-key': 'fakeKey', + }, + }; + debug('request', apiKeyTest); + expect(spy).toHaveBeenCalledWith('OpenAI:DEBUG:request', { + headers: { + 'api-key': 'REDACTED', + }, + }); + }); + + test('header object with Authorization header', function () { + // Test headers object with authorization header + const authorizationTest = { + authorization: 'fakeValue', + }; + debug('request', authorizationTest); + expect(spy).toHaveBeenCalledWith('OpenAI:DEBUG:request', { + authorization: 'REDACTED', + }); + }); + + test('input args are not mutated', function () { + const authorizationTest = { + authorization: 'fakeValue', + }; + const client = new OpenAI({ + baseURL: 'http://localhost:5000/', + defaultHeaders: authorizationTest, + apiKey: 'api-key', + }); + + const { req } = client.buildRequest({ path: '/foo', method: 'post' }); + debug('request', authorizationTest); + expect((req.headers as Headers)['authorization']).toEqual('fakeValue'); + expect(spy).toHaveBeenCalledWith('OpenAI:DEBUG:request', { + authorization: 'REDACTED', + }); + }); + + test('input headers are not mutated', function () { + const authorizationTest = { + authorization: 'fakeValue', + }; + const client = new OpenAI({ + baseURL: 'http://localhost:5000/', + defaultHeaders: authorizationTest, + apiKey: 'api-key', + }); + + const { req } = client.buildRequest({ path: '/foo', method: 'post' }); + debug('request', { headers: req.headers }); + expect((req.headers as Headers)['authorization']).toEqual('fakeValue'); + expect(spy).toHaveBeenCalledWith('OpenAI:DEBUG:request', { + authorization: 'REDACTED', + }); + }); +}); From 2bc96529a32fbddc8a86c53dbd8bbb93f703e056 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Mon, 13 Jan 2025 20:23:42 +0000 Subject: [PATCH 660/725] Revert "chore(internal): streaming refactors (#1261)" This reverts commit dd4af939792583854a313367c5fe2f98eea2f3c8. --- src/streaming.ts | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/src/streaming.ts b/src/streaming.ts index 9cfd18176..2891e6ac3 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -38,7 +38,9 @@ export class Stream implements AsyncIterable { if (sse.data.startsWith('[DONE]')) { done = true; continue; - } else { + } + + if (sse.event === null) { let data; try { @@ -52,12 +54,22 @@ export class Stream implements AsyncIterable { if (data && data.error) { throw new APIError(undefined, data.error, undefined, undefined); } + + yield data; + } else { + let data; + try { + data = JSON.parse(sse.data); + } catch (e) { + console.error(`Could not parse message into JSON:`, sse.data); + console.error(`From chunk:`, sse.raw); + throw e; + } // TODO: Is this where the error should be thrown? if (sse.event == 'error') { throw new APIError(undefined, data.error, data.message, undefined); } - - yield data; + yield { event: sse.event, data: data } as any; } } done = true; From 5df77388f6a8cfc3ac465f77825f01ceb41fa505 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 11:59:41 +0000 Subject: [PATCH 661/725] chore(types): rename vector store chunking strategy (#1263) --- api.md | 2 +- src/resources/beta/beta.ts | 4 ++-- src/resources/beta/index.ts | 2 +- src/resources/beta/vector-stores/index.ts | 2 +- src/resources/beta/vector-stores/vector-stores.ts | 6 +++--- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/api.md b/api.md index a885628a3..33ab95ef6 100644 --- a/api.md +++ b/api.md @@ -283,7 +283,7 @@ Types: - OtherFileChunkingStrategyObject - StaticFileChunkingStrategy - StaticFileChunkingStrategyObject -- StaticFileChunkingStrategyParam +- StaticFileChunkingStrategyObjectParam - VectorStore - VectorStoreDeleted diff --git a/src/resources/beta/beta.ts b/src/resources/beta/beta.ts index ccd043243..df929b2f7 100644 --- a/src/resources/beta/beta.ts +++ b/src/resources/beta/beta.ts @@ -48,7 +48,7 @@ import { OtherFileChunkingStrategyObject, StaticFileChunkingStrategy, StaticFileChunkingStrategyObject, - StaticFileChunkingStrategyParam, + StaticFileChunkingStrategyObjectParam, VectorStore, VectorStoreCreateParams, VectorStoreDeleted, @@ -85,7 +85,7 @@ export declare namespace Beta { type OtherFileChunkingStrategyObject as OtherFileChunkingStrategyObject, type StaticFileChunkingStrategy as StaticFileChunkingStrategy, type StaticFileChunkingStrategyObject as StaticFileChunkingStrategyObject, - type StaticFileChunkingStrategyParam as StaticFileChunkingStrategyParam, + type StaticFileChunkingStrategyObjectParam as StaticFileChunkingStrategyObjectParam, type VectorStore as VectorStore, type VectorStoreDeleted as VectorStoreDeleted, VectorStoresPage as VectorStoresPage, diff --git a/src/resources/beta/index.ts b/src/resources/beta/index.ts index aa2e52d4c..babca0016 100644 --- a/src/resources/beta/index.ts +++ b/src/resources/beta/index.ts @@ -46,7 +46,7 @@ export { type OtherFileChunkingStrategyObject, type StaticFileChunkingStrategy, type StaticFileChunkingStrategyObject, - type StaticFileChunkingStrategyParam, + type StaticFileChunkingStrategyObjectParam, type VectorStore, type VectorStoreDeleted, type VectorStoreCreateParams, diff --git a/src/resources/beta/vector-stores/index.ts b/src/resources/beta/vector-stores/index.ts index 89fc0cde0..d587bd160 100644 --- a/src/resources/beta/vector-stores/index.ts +++ b/src/resources/beta/vector-stores/index.ts @@ -23,7 +23,7 @@ export { type OtherFileChunkingStrategyObject, type StaticFileChunkingStrategy, type StaticFileChunkingStrategyObject, - type StaticFileChunkingStrategyParam, + type StaticFileChunkingStrategyObjectParam, type VectorStore, type VectorStoreDeleted, type VectorStoreCreateParams, diff --git a/src/resources/beta/vector-stores/vector-stores.ts b/src/resources/beta/vector-stores/vector-stores.ts index 35ad8c369..cbff2d562 100644 --- a/src/resources/beta/vector-stores/vector-stores.ts +++ b/src/resources/beta/vector-stores/vector-stores.ts @@ -116,7 +116,7 @@ export type FileChunkingStrategy = StaticFileChunkingStrategyObject | OtherFileC * The chunking strategy used to chunk the file(s). If not set, will use the `auto` * strategy. Only applicable if `file_ids` is non-empty. */ -export type FileChunkingStrategyParam = AutoFileChunkingStrategyParam | StaticFileChunkingStrategyParam; +export type FileChunkingStrategyParam = AutoFileChunkingStrategyParam | StaticFileChunkingStrategyObjectParam; /** * This is returned when the chunking strategy is unknown. Typically, this is @@ -154,7 +154,7 @@ export interface StaticFileChunkingStrategyObject { type: 'static'; } -export interface StaticFileChunkingStrategyParam { +export interface StaticFileChunkingStrategyObjectParam { static: StaticFileChunkingStrategy; /** @@ -397,7 +397,7 @@ export declare namespace VectorStores { type OtherFileChunkingStrategyObject as OtherFileChunkingStrategyObject, type StaticFileChunkingStrategy as StaticFileChunkingStrategy, type StaticFileChunkingStrategyObject as StaticFileChunkingStrategyObject, - type StaticFileChunkingStrategyParam as StaticFileChunkingStrategyParam, + type StaticFileChunkingStrategyObjectParam as StaticFileChunkingStrategyObjectParam, type VectorStore as VectorStore, type VectorStoreDeleted as VectorStoreDeleted, VectorStoresPage as VectorStoresPage, From 66067d37a4189f838f31ed9ca06ee335aef67616 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 15 Jan 2025 13:58:18 +0000 Subject: [PATCH 662/725] chore(types): add `| undefined` to client options properties (#1264) --- src/index.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/index.ts b/src/index.ts index 2320850fb..cf6aa89e3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -137,7 +137,7 @@ export interface ClientOptions { * Note that request timeouts are retried by default, so in a worst-case scenario you may wait * much longer than this timeout before the promise succeeds or fails. */ - timeout?: number; + timeout?: number | undefined; /** * An HTTP agent used to manage HTTP(S) connections. @@ -145,7 +145,7 @@ export interface ClientOptions { * If not provided, an agent will be constructed by default in the Node.js environment, * otherwise no agent is used. */ - httpAgent?: Agent; + httpAgent?: Agent | undefined; /** * Specify a custom `fetch` function implementation. @@ -161,7 +161,7 @@ export interface ClientOptions { * * @default 2 */ - maxRetries?: number; + maxRetries?: number | undefined; /** * Default headers to include with every request to the API. @@ -169,7 +169,7 @@ export interface ClientOptions { * These can be removed in individual requests by explicitly setting the * header to `undefined` or `null` in request options. */ - defaultHeaders?: Core.Headers; + defaultHeaders?: Core.Headers | undefined; /** * Default query parameters to include with every request to the API. @@ -177,13 +177,13 @@ export interface ClientOptions { * These can be removed in individual requests by explicitly setting the * param to `undefined` in request options. */ - defaultQuery?: Core.DefaultQuery; + defaultQuery?: Core.DefaultQuery | undefined; /** * By default, client-side use of this library is not allowed, as it risks exposing your secret API credentials to attackers. * Only set this option to `true` if you understand the risks and have appropriate mitigations in place. */ - dangerouslyAllowBrowser?: boolean; + dangerouslyAllowBrowser?: boolean | undefined; } /** From a796d21f06307419f352da8b9943f6745ff4084f Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Thu, 16 Jan 2025 16:33:38 +0000 Subject: [PATCH 663/725] feat(client): add Realtime API support (#1266) --- README.md | 87 ++++++++++++++++++++++++++ examples/package.json | 7 ++- examples/realtime/websocket.ts | 48 +++++++++++++++ examples/realtime/ws.ts | 55 +++++++++++++++++ package.json | 6 ++ src/beta/realtime/index.ts | 1 + src/beta/realtime/internal-base.ts | 83 +++++++++++++++++++++++++ src/beta/realtime/websocket.ts | 97 +++++++++++++++++++++++++++++ src/beta/realtime/ws.ts | 69 +++++++++++++++++++++ src/lib/EventEmitter.ts | 98 ++++++++++++++++++++++++++++++ yarn.lock | 12 ++++ 11 files changed, 560 insertions(+), 3 deletions(-) create mode 100644 examples/realtime/websocket.ts create mode 100644 examples/realtime/ws.ts create mode 100644 src/beta/realtime/index.ts create mode 100644 src/beta/realtime/internal-base.ts create mode 100644 src/beta/realtime/websocket.ts create mode 100644 src/beta/realtime/ws.ts create mode 100644 src/lib/EventEmitter.ts diff --git a/README.md b/README.md index 3039857a1..e7d69a669 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,93 @@ main(); If you need to cancel a stream, you can `break` from the loop or call `stream.controller.abort()`. +## Realtime API beta + +The Realtime API enables you to build low-latency, multi-modal conversational experiences. It currently supports text and audio as both input and output, as well as [function calling](https://platform.openai.com/docs/guides/function-calling) through a `WebSocket` connection. + +The Realtime API works through a combination of client-sent events and server-sent events. Clients can send events to do things like update session configuration or send text and audio inputs. Server events confirm when audio responses have completed, or when a text response from the model has been received. A full event reference can be found [here](https://platform.openai.com/docs/api-reference/realtime-client-events) and a guide can be found [here](https://platform.openai.com/docs/guides/realtime). + +This SDK supports accessing the Realtime API through the [WebSocket API](https://developer.mozilla.org/en-US/docs/Web/API/WebSocket) or with [ws](https://github.com/websockets/ws). + +Basic text based example with `ws`: + +```ts +// requires `yarn add ws @types/ws` +import { OpenAIRealtimeWS } from 'openai/beta/realtime/ws'; + +const rt = new OpenAIRealtimeWS({ model: 'gpt-4o-realtime-preview-2024-12-17' }); + +// access the underlying `ws.WebSocket` instance +rt.socket.on('open', () => { + console.log('Connection opened!'); + rt.send({ + type: 'session.update', + session: { + modalities: ['text'], + model: 'gpt-4o-realtime-preview', + }, + }); + + rt.send({ + type: 'conversation.item.create', + item: { + type: 'message', + role: 'user', + content: [{ type: 'input_text', text: 'Say a couple paragraphs!' }], + }, + }); + + rt.send({ type: 'response.create' }); +}); + +rt.on('error', (err) => { + // in a real world scenario this should be logged somewhere as you + // likely want to continue procesing events regardless of any errors + throw err; +}); + +rt.on('session.created', (event) => { + console.log('session created!', event.session); + console.log(); +}); + +rt.on('response.text.delta', (event) => process.stdout.write(event.delta)); +rt.on('response.text.done', () => console.log()); + +rt.on('response.done', () => rt.close()); + +rt.socket.on('close', () => console.log('\nConnection closed!')); +``` + +To use the web API `WebSocket` implementation, replace `OpenAIRealtimeWS` with `OpenAIRealtimeWebSocket` and adjust any `rt.socket` access: + +```ts +import { OpenAIRealtimeWebSocket } from 'openai/beta/realtime/websocket'; + +const rt = new OpenAIRealtimeWebSocket({ model: 'gpt-4o-realtime-preview-2024-12-17' }); +// ... +rt.socket.addEventListener('open', () => { + // ... +}); +``` + +A full example can be found [here](https://github.com/openai/openai-node/blob/master/examples/realtime/web.ts). + +### Realtime error handling + +When an error is encountered, either on the client side or returned from the server through the [`error` event](https://platform.openai.com/docs/guides/realtime/realtime-api-beta#handling-errors), the `error` event listener will be fired. However, if you haven't registered an `error` event listener then an `unhandled Promise rejection` error will be thrown. + +It is **highly recommended** that you register an `error` event listener and handle errors approriately as typically the underlying connection is still usable. + +```ts +const rt = new OpenAIRealtimeWS({ model: 'gpt-4o-realtime-preview-2024-12-17' }); +rt.on('error', (err) => { + // in a real world scenario this should be logged somewhere as you + // likely want to continue procesing events regardless of any errors + throw err; +}); +``` + ### Request & Response types This library includes TypeScript definitions for all request params and response fields. You may import and use them like so: diff --git a/examples/package.json b/examples/package.json index c8a5f7087..b8c34ac45 100644 --- a/examples/package.json +++ b/examples/package.json @@ -6,14 +6,15 @@ "license": "MIT", "private": true, "dependencies": { + "@azure/identity": "^4.2.0", "express": "^4.18.2", "next": "^14.1.1", "openai": "file:..", - "zod-to-json-schema": "^3.21.4", - "@azure/identity": "^4.2.0" + "zod-to-json-schema": "^3.21.4" }, "devDependencies": { "@types/body-parser": "^1.19.3", - "@types/express": "^4.17.19" + "@types/express": "^4.17.19", + "@types/web": "^0.0.194" } } diff --git a/examples/realtime/websocket.ts b/examples/realtime/websocket.ts new file mode 100644 index 000000000..0da131bc3 --- /dev/null +++ b/examples/realtime/websocket.ts @@ -0,0 +1,48 @@ +import { OpenAIRealtimeWebSocket } from 'openai/beta/realtime/websocket'; + +async function main() { + const rt = new OpenAIRealtimeWebSocket({ model: 'gpt-4o-realtime-preview-2024-12-17' }); + + // access the underlying `ws.WebSocket` instance + rt.socket.addEventListener('open', () => { + console.log('Connection opened!'); + rt.send({ + type: 'session.update', + session: { + modalities: ['text'], + model: 'gpt-4o-realtime-preview', + }, + }); + + rt.send({ + type: 'conversation.item.create', + item: { + type: 'message', + role: 'user', + content: [{ type: 'input_text', text: 'Say a couple paragraphs!' }], + }, + }); + + rt.send({ type: 'response.create' }); + }); + + rt.on('error', (err) => { + // in a real world scenario this should be logged somewhere as you + // likely want to continue procesing events regardless of any errors + throw err; + }); + + rt.on('session.created', (event) => { + console.log('session created!', event.session); + console.log(); + }); + + rt.on('response.text.delta', (event) => process.stdout.write(event.delta)); + rt.on('response.text.done', () => console.log()); + + rt.on('response.done', () => rt.close()); + + rt.socket.addEventListener('close', () => console.log('\nConnection closed!')); +} + +main(); diff --git a/examples/realtime/ws.ts b/examples/realtime/ws.ts new file mode 100644 index 000000000..4bbe85e5d --- /dev/null +++ b/examples/realtime/ws.ts @@ -0,0 +1,55 @@ +import { OpenAIRealtimeWS } from 'openai/beta/realtime/ws'; + +async function main() { + const rt = new OpenAIRealtimeWS({ model: 'gpt-4o-realtime-preview-2024-12-17' }); + + // access the underlying `ws.WebSocket` instance + rt.socket.on('open', () => { + console.log('Connection opened!'); + rt.send({ + type: 'session.update', + session: { + modalities: ['foo'] as any, + model: 'gpt-4o-realtime-preview', + }, + }); + rt.send({ + type: 'session.update', + session: { + modalities: ['text'], + model: 'gpt-4o-realtime-preview', + }, + }); + + rt.send({ + type: 'conversation.item.create', + item: { + type: 'message', + role: 'user', + content: [{ type: 'input_text', text: 'Say a couple paragraphs!' }], + }, + }); + + rt.send({ type: 'response.create' }); + }); + + rt.on('error', (err) => { + // in a real world scenario this should be logged somewhere as you + // likely want to continue procesing events regardless of any errors + throw err; + }); + + rt.on('session.created', (event) => { + console.log('session created!', event.session); + console.log(); + }); + + rt.on('response.text.delta', (event) => process.stdout.write(event.delta)); + rt.on('response.text.done', () => console.log()); + + rt.on('response.done', () => rt.close()); + + rt.socket.on('close', () => console.log('\nConnection closed!')); +} + +main(); diff --git a/package.json b/package.json index ff6ec16bc..77e2d609f 100644 --- a/package.json +++ b/package.json @@ -36,6 +36,7 @@ "@swc/core": "^1.3.102", "@swc/jest": "^0.2.29", "@types/jest": "^29.4.0", + "@types/ws": "^8.5.13", "@typescript-eslint/eslint-plugin": "^6.7.0", "@typescript-eslint/parser": "^6.7.0", "eslint": "^8.49.0", @@ -52,6 +53,7 @@ "tsc-multi": "^1.1.0", "tsconfig-paths": "^4.0.0", "typescript": "^4.8.2", + "ws": "^8.18.0", "zod": "^3.23.8" }, "sideEffects": [ @@ -126,9 +128,13 @@ }, "bin": "./bin/cli", "peerDependencies": { + "ws": "^8.18.0", "zod": "^3.23.8" }, "peerDependenciesMeta": { + "ws": { + "optional": true + }, "zod": { "optional": true } diff --git a/src/beta/realtime/index.ts b/src/beta/realtime/index.ts new file mode 100644 index 000000000..75f0f3088 --- /dev/null +++ b/src/beta/realtime/index.ts @@ -0,0 +1 @@ +export { OpenAIRealtimeError } from './internal-base'; diff --git a/src/beta/realtime/internal-base.ts b/src/beta/realtime/internal-base.ts new file mode 100644 index 000000000..391d69911 --- /dev/null +++ b/src/beta/realtime/internal-base.ts @@ -0,0 +1,83 @@ +import { RealtimeClientEvent, RealtimeServerEvent, ErrorEvent } from '../../resources/beta/realtime/realtime'; +import { EventEmitter } from '../../lib/EventEmitter'; +import { OpenAIError } from '../../error'; + +export class OpenAIRealtimeError extends OpenAIError { + /** + * The error data that the API sent back in an `error` event. + */ + error?: ErrorEvent.Error | undefined; + + /** + * The unique ID of the server event. + */ + event_id?: string | undefined; + + constructor(message: string, event: ErrorEvent | null) { + super(message); + + this.error = event?.error; + this.event_id = event?.event_id; + } +} + +type Simplify = { [KeyType in keyof T]: T[KeyType] } & {}; + +type RealtimeEvents = Simplify< + { + event: (event: RealtimeServerEvent) => void; + error: (error: OpenAIRealtimeError) => void; + } & { + [EventType in Exclude]: ( + event: Extract, + ) => unknown; + } +>; + +export abstract class OpenAIRealtimeEmitter extends EventEmitter { + /** + * Send an event to the API. + */ + abstract send(event: RealtimeClientEvent): void; + + /** + * Close the websocket connection. + */ + abstract close(props?: { code: number; reason: string }): void; + + protected _onError(event: null, message: string, cause: any): void; + protected _onError(event: ErrorEvent, message?: string | undefined): void; + protected _onError(event: ErrorEvent | null, message?: string | undefined, cause?: any): void { + message = + event?.error ? + `${event.error.message} code=${event.error.code} param=${event.error.param} type=${event.error.type} event_id=${event.error.event_id}` + : message ?? 'unknown error'; + + if (!this._hasListener('error')) { + const error = new OpenAIRealtimeError( + message + + `\n\nTo resolve these unhandled rejection errors you should bind an \`error\` callback, e.g. \`rt.on('error', (error) => ...)\` `, + event, + ); + // @ts-ignore + error.cause = cause; + Promise.reject(error); + return; + } + + const error = new OpenAIRealtimeError(message, event); + // @ts-ignore + error.cause = cause; + + this._emit('error', error); + } +} + +export function buildRealtimeURL(props: { baseURL: string; model: string }): URL { + const path = '/realtime'; + + const url = new URL(props.baseURL + (props.baseURL.endsWith('/') ? path.slice(1) : path)); + url.protocol = 'wss'; + url.searchParams.set('model', props.model); + return url; +} diff --git a/src/beta/realtime/websocket.ts b/src/beta/realtime/websocket.ts new file mode 100644 index 000000000..e0853779d --- /dev/null +++ b/src/beta/realtime/websocket.ts @@ -0,0 +1,97 @@ +import { OpenAI } from '../../index'; +import { OpenAIError } from '../../error'; +import * as Core from '../../core'; +import type { RealtimeClientEvent, RealtimeServerEvent } from '../../resources/beta/realtime/realtime'; +import { OpenAIRealtimeEmitter, buildRealtimeURL } from './internal-base'; + +interface MessageEvent { + data: string; +} + +type _WebSocket = + typeof globalThis extends ( + { + WebSocket: infer ws; + } + ) ? + // @ts-ignore + InstanceType + : any; + +export class OpenAIRealtimeWebSocket extends OpenAIRealtimeEmitter { + url: URL; + socket: _WebSocket; + + constructor( + props: { + model: string; + dangerouslyAllowBrowser?: boolean; + }, + client?: Pick, + ) { + super(); + + const dangerouslyAllowBrowser = + props.dangerouslyAllowBrowser ?? + (client as any)?._options?.dangerouslyAllowBrowser ?? + (client?.apiKey.startsWith('ek_') ? true : null); + + if (!dangerouslyAllowBrowser && Core.isRunningInBrowser()) { + throw new OpenAIError( + "It looks like you're running in a browser-like environment.\n\nThis is disabled by default, as it risks exposing your secret API credentials to attackers.\n\nYou can avoid this error by creating an ephemeral session token:\nhttps://platform.openai.com/docs/api-reference/realtime-sessions\n", + ); + } + + client ??= new OpenAI({ dangerouslyAllowBrowser }); + + this.url = buildRealtimeURL({ baseURL: client.baseURL, model: props.model }); + // @ts-ignore + this.socket = new WebSocket(this.url, [ + 'realtime', + `openai-insecure-api-key.${client.apiKey}`, + 'openai-beta.realtime-v1', + ]); + + this.socket.addEventListener('message', (websocketEvent: MessageEvent) => { + const event = (() => { + try { + return JSON.parse(websocketEvent.data.toString()) as RealtimeServerEvent; + } catch (err) { + this._onError(null, 'could not parse websocket event', err); + return null; + } + })(); + + if (event) { + this._emit('event', event); + + if (event.type === 'error') { + this._onError(event); + } else { + // @ts-expect-error TS isn't smart enough to get the relationship right here + this._emit(event.type, event); + } + } + }); + + this.socket.addEventListener('error', (event: any) => { + this._onError(null, event.message, null); + }); + } + + send(event: RealtimeClientEvent) { + try { + this.socket.send(JSON.stringify(event)); + } catch (err) { + this._onError(null, 'could not send data', err); + } + } + + close(props?: { code: number; reason: string }) { + try { + this.socket.close(props?.code ?? 1000, props?.reason ?? 'OK'); + } catch (err) { + this._onError(null, 'could not close the connection', err); + } + } +} diff --git a/src/beta/realtime/ws.ts b/src/beta/realtime/ws.ts new file mode 100644 index 000000000..33bb11ad9 --- /dev/null +++ b/src/beta/realtime/ws.ts @@ -0,0 +1,69 @@ +import WS from 'ws'; +import { OpenAI } from '../../index'; +import type { RealtimeClientEvent, RealtimeServerEvent } from '../../resources/beta/realtime/realtime'; +import { OpenAIRealtimeEmitter, buildRealtimeURL } from './internal-base'; + +export class OpenAIRealtimeWS extends OpenAIRealtimeEmitter { + url: URL; + socket: WS.WebSocket; + + constructor( + props: { model: string; options?: WS.ClientOptions | undefined }, + client?: Pick, + ) { + super(); + client ??= new OpenAI(); + + this.url = buildRealtimeURL({ baseURL: client.baseURL, model: props.model }); + this.socket = new WS.WebSocket(this.url, { + ...props.options, + headers: { + ...props.options?.headers, + Authorization: `Bearer ${client.apiKey}`, + 'OpenAI-Beta': 'realtime=v1', + }, + }); + + this.socket.on('message', (wsEvent) => { + const event = (() => { + try { + return JSON.parse(wsEvent.toString()) as RealtimeServerEvent; + } catch (err) { + this._onError(null, 'could not parse websocket event', err); + return null; + } + })(); + + if (event) { + this._emit('event', event); + + if (event.type === 'error') { + this._onError(event); + } else { + // @ts-expect-error TS isn't smart enough to get the relationship right here + this._emit(event.type, event); + } + } + }); + + this.socket.on('error', (err) => { + this._onError(null, err.message, err); + }); + } + + send(event: RealtimeClientEvent) { + try { + this.socket.send(JSON.stringify(event)); + } catch (err) { + this._onError(null, 'could not send data', err); + } + } + + close(props?: { code: number; reason: string }) { + try { + this.socket.close(props?.code ?? 1000, props?.reason ?? 'OK'); + } catch (err) { + this._onError(null, 'could not close the connection', err); + } + } +} diff --git a/src/lib/EventEmitter.ts b/src/lib/EventEmitter.ts new file mode 100644 index 000000000..9adeebdc3 --- /dev/null +++ b/src/lib/EventEmitter.ts @@ -0,0 +1,98 @@ +type EventListener = Events[EventType]; + +type EventListeners = Array<{ + listener: EventListener; + once?: boolean; +}>; + +export type EventParameters = { + [Event in EventType]: EventListener extends (...args: infer P) => any ? P : never; +}[EventType]; + +export class EventEmitter any>> { + #listeners: { + [Event in keyof EventTypes]?: EventListeners; + } = {}; + + /** + * Adds the listener function to the end of the listeners array for the event. + * No checks are made to see if the listener has already been added. Multiple calls passing + * the same combination of event and listener will result in the listener being added, and + * called, multiple times. + * @returns this, so that calls can be chained + */ + on(event: Event, listener: EventListener): this { + const listeners: EventListeners = + this.#listeners[event] || (this.#listeners[event] = []); + listeners.push({ listener }); + return this; + } + + /** + * Removes the specified listener from the listener array for the event. + * off() will remove, at most, one instance of a listener from the listener array. If any single + * listener has been added multiple times to the listener array for the specified event, then + * off() must be called multiple times to remove each instance. + * @returns this, so that calls can be chained + */ + off(event: Event, listener: EventListener): this { + const listeners = this.#listeners[event]; + if (!listeners) return this; + const index = listeners.findIndex((l) => l.listener === listener); + if (index >= 0) listeners.splice(index, 1); + return this; + } + + /** + * Adds a one-time listener function for the event. The next time the event is triggered, + * this listener is removed and then invoked. + * @returns this, so that calls can be chained + */ + once(event: Event, listener: EventListener): this { + const listeners: EventListeners = + this.#listeners[event] || (this.#listeners[event] = []); + listeners.push({ listener, once: true }); + return this; + } + + /** + * This is similar to `.once()`, but returns a Promise that resolves the next time + * the event is triggered, instead of calling a listener callback. + * @returns a Promise that resolves the next time given event is triggered, + * or rejects if an error is emitted. (If you request the 'error' event, + * returns a promise that resolves with the error). + * + * Example: + * + * const message = await stream.emitted('message') // rejects if the stream errors + */ + emitted( + event: Event, + ): Promise< + EventParameters extends [infer Param] ? Param + : EventParameters extends [] ? void + : EventParameters + > { + return new Promise((resolve, reject) => { + // TODO: handle errors + this.once(event, resolve as any); + }); + } + + protected _emit( + this: EventEmitter, + event: Event, + ...args: EventParameters + ) { + const listeners: EventListeners | undefined = this.#listeners[event]; + if (listeners) { + this.#listeners[event] = listeners.filter((l) => !l.once) as any; + listeners.forEach(({ listener }: any) => listener(...(args as any))); + } + } + + protected _hasListener(event: keyof EventTypes): boolean { + const listeners = this.#listeners[event]; + return listeners && listeners.length > 0; + } +} diff --git a/yarn.lock b/yarn.lock index c0220f984..0a4307f70 100644 --- a/yarn.lock +++ b/yarn.lock @@ -881,6 +881,13 @@ resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.3.tgz#6209321eb2c1712a7e7466422b8cb1fc0d9dd5d8" integrity sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw== +"@types/ws@^8.5.13": + version "8.5.13" + resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.13.tgz#6414c280875e2691d0d1e080b05addbf5cb91e20" + integrity sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA== + dependencies: + "@types/node" "*" + "@types/yargs-parser@*": version "21.0.3" resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz#815e30b786d2e8f0dcd85fd5bcf5e1a04d008f15" @@ -3472,6 +3479,11 @@ write-file-atomic@^4.0.2: imurmurhash "^0.1.4" signal-exit "^3.0.7" +ws@^8.18.0: + version "8.18.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc" + integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw== + y18n@^5.0.5: version "5.0.8" resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" From 9d214eac82509028787b6ad148fec46689af74d3 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 17 Jan 2025 05:06:39 +0000 Subject: [PATCH 664/725] release: 4.79.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 21 +++++++++++++++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 25 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3218ab333..a4062b378 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.78.1" + ".": "4.79.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 320d00140..c2021f78a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## 4.79.0 (2025-01-17) + +Full Changelog: [v4.78.1...v4.79.0](https://github.com/openai/openai-node/compare/v4.78.1...v4.79.0) + +### Features + +* **client:** add Realtime API support ([#1266](https://github.com/openai/openai-node/issues/1266)) ([7160ebe](https://github.com/openai/openai-node/commit/7160ebe647769fbf48a600c9961d1a6f86dc9622)) + + +### Bug Fixes + +* **logs/azure:** redact sensitive header when DEBUG is set ([#1218](https://github.com/openai/openai-node/issues/1218)) ([6a72fd7](https://github.com/openai/openai-node/commit/6a72fd736733db19504a829bf203b39d5b9e3644)) + + +### Chores + +* fix streaming ([379c743](https://github.com/openai/openai-node/commit/379c7435ed5d508458e9cdc22386039b84fcec5e)) +* **internal:** streaming refactors ([#1261](https://github.com/openai/openai-node/issues/1261)) ([dd4af93](https://github.com/openai/openai-node/commit/dd4af939792583854a313367c5fe2f98eea2f3c8)) +* **types:** add `| undefined` to client options properties ([#1264](https://github.com/openai/openai-node/issues/1264)) ([5e56979](https://github.com/openai/openai-node/commit/5e569799b9ac8f915b16de90d91d38b568c1edce)) +* **types:** rename vector store chunking strategy ([#1263](https://github.com/openai/openai-node/issues/1263)) ([d31acee](https://github.com/openai/openai-node/commit/d31acee860c80ba945d4e70b956c7ed75f5f849a)) + ## 4.78.1 (2025-01-10) Full Changelog: [v4.78.0...v4.78.1](https://github.com/openai/openai-node/compare/v4.78.0...v4.78.1) diff --git a/jsr.json b/jsr.json index 257faa02d..ac02a7435 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.78.1", + "version": "4.79.0", "exports": "./index.ts", "publish": { "exclude": [ diff --git a/package.json b/package.json index 77e2d609f..3b01be9fe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.78.1", + "version": "4.79.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index a8ac58ba2..afc5d7104 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.78.1'; // x-release-please-version +export const VERSION = '4.79.0'; // x-release-please-version From 6cd83178324271763c3b3ba236ea5406c1447dd4 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Fri, 17 Jan 2025 19:39:08 +0000 Subject: [PATCH 665/725] fix(realtime): correct import syntax (#1267) --- src/beta/realtime/ws.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/beta/realtime/ws.ts b/src/beta/realtime/ws.ts index 33bb11ad9..631a36cd2 100644 --- a/src/beta/realtime/ws.ts +++ b/src/beta/realtime/ws.ts @@ -1,4 +1,4 @@ -import WS from 'ws'; +import * as WS from 'ws'; import { OpenAI } from '../../index'; import type { RealtimeClientEvent, RealtimeServerEvent } from '../../resources/beta/realtime/realtime'; import { OpenAIRealtimeEmitter, buildRealtimeURL } from './internal-base'; From 8383975a2e45aa222fcf56a45b38834bcf8b31c7 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 17 Jan 2025 19:39:37 +0000 Subject: [PATCH 666/725] release: 4.79.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a4062b378..8d95306a8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.79.0" + ".": "4.79.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c2021f78a..d24eeffa5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.79.1 (2025-01-17) + +Full Changelog: [v4.79.0...v4.79.1](https://github.com/openai/openai-node/compare/v4.79.0...v4.79.1) + +### Bug Fixes + +* **realtime:** correct import syntax ([#1267](https://github.com/openai/openai-node/issues/1267)) ([74702a7](https://github.com/openai/openai-node/commit/74702a739f566810d2b6c4e0832cfa17a1d1e272)) + ## 4.79.0 (2025-01-17) Full Changelog: [v4.78.1...v4.79.0](https://github.com/openai/openai-node/compare/v4.78.1...v4.79.0) diff --git a/jsr.json b/jsr.json index ac02a7435..9f4dbe4b6 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.79.0", + "version": "4.79.1", "exports": "./index.ts", "publish": { "exclude": [ diff --git a/package.json b/package.json index 3b01be9fe..2984cf2d8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.79.0", + "version": "4.79.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index afc5d7104..587a3c245 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.79.0'; // x-release-please-version +export const VERSION = '4.79.1'; // x-release-please-version From 6f3ad43ac1bbb8f8f6c8fae9e83398d85cead56c Mon Sep 17 00:00:00 2001 From: Kevin Whinnery Date: Fri, 17 Jan 2025 15:12:04 -0600 Subject: [PATCH 667/725] Create export for WebSocket on Deno/JSR --- jsr.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/jsr.json b/jsr.json index 9f4dbe4b6..72575a407 100644 --- a/jsr.json +++ b/jsr.json @@ -1,7 +1,10 @@ { "name": "@openai/openai", "version": "4.79.1", - "exports": "./index.ts", + "exports": { + ".": "./index.ts", + "./beta/realtime/websocket": "./beta/realtime/websocket.ts" + }, "publish": { "exclude": [ "!." From 4640dc608f7f55624656007207c49feb5f3047e3 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 20 Jan 2025 17:59:02 +0000 Subject: [PATCH 668/725] chore(internal): add test (#1270) --- tests/index.test.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/index.test.ts b/tests/index.test.ts index 016d525f5..6227d6fbe 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -96,6 +96,15 @@ describe('instantiate client', () => { expect(response).toEqual({ url: 'http://localhost:5000/foo', custom: true }); }); + test('explicit global fetch', async () => { + // make sure the global fetch type is assignable to our Fetch type + const client = new OpenAI({ + baseURL: 'http://localhost:5000/', + apiKey: 'My API Key', + fetch: defaultFetch, + }); + }); + test('custom signal', async () => { const client = new OpenAI({ baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', From 95886b57b1373c16e12a0ee1288d68cd8520695d Mon Sep 17 00:00:00 2001 From: Ali Tabesh Date: Tue, 21 Jan 2025 13:19:22 +0330 Subject: [PATCH 669/725] docs(readme): fix Realtime API example link (#1272) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e7d69a669..3bd386e99 100644 --- a/README.md +++ b/README.md @@ -153,7 +153,7 @@ rt.socket.addEventListener('open', () => { }); ``` -A full example can be found [here](https://github.com/openai/openai-node/blob/master/examples/realtime/web.ts). +A full example can be found [here](https://github.com/openai/openai-node/blob/master/examples/realtime/websocket.ts). ### Realtime error handling From 53149de69e19836568c1f1083ee7ee3c07123d1a Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 21 Jan 2025 09:49:52 +0000 Subject: [PATCH 670/725] release: 4.79.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 17 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8d95306a8..06a612d67 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.79.1" + ".": "4.79.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d24eeffa5..9151619f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.79.2 (2025-01-21) + +Full Changelog: [v4.79.1...v4.79.2](https://github.com/openai/openai-node/compare/v4.79.1...v4.79.2) + +### Chores + +* **internal:** add test ([#1270](https://github.com/openai/openai-node/issues/1270)) ([b7c2d3d](https://github.com/openai/openai-node/commit/b7c2d3d9abd315f1452a578b0fd0d82e6ac4ff60)) + + +### Documentation + +* **readme:** fix Realtime API example link ([#1272](https://github.com/openai/openai-node/issues/1272)) ([d0653c7](https://github.com/openai/openai-node/commit/d0653c7fef48360d137a7411dfdfb95d477cdbc5)) + ## 4.79.1 (2025-01-17) Full Changelog: [v4.79.0...v4.79.1](https://github.com/openai/openai-node/compare/v4.79.0...v4.79.1) diff --git a/jsr.json b/jsr.json index 9f4dbe4b6..ce967d67a 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.79.1", + "version": "4.79.2", "exports": "./index.ts", "publish": { "exclude": [ diff --git a/package.json b/package.json index 2984cf2d8..07b2da77d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.79.1", + "version": "4.79.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 587a3c245..2cedb894b 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.79.1'; // x-release-please-version +export const VERSION = '4.79.2'; // x-release-please-version From e5e682f11783b14323f03ff9bf3298b8c6868136 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Tue, 21 Jan 2025 15:35:13 +0000 Subject: [PATCH 671/725] fix(jsr): export zod helpers --- jsr.json | 1 + 1 file changed, 1 insertion(+) diff --git a/jsr.json b/jsr.json index 35ee4e7ea..5819f2fa3 100644 --- a/jsr.json +++ b/jsr.json @@ -3,6 +3,7 @@ "version": "4.79.2", "exports": { ".": "./index.ts", + "./helpers/zod": "./helpers/zod.ts", "./beta/realtime/websocket": "./beta/realtime/websocket.ts" }, "publish": { From f5139d4aa281bd9a20b8cf5c801843f4d6c4bb3b Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 21 Jan 2025 15:53:54 +0000 Subject: [PATCH 672/725] release: 4.79.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 06a612d67..cdd63a113 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.79.2" + ".": "4.79.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9151619f9..8a1ce156f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.79.3 (2025-01-21) + +Full Changelog: [v4.79.2...v4.79.3](https://github.com/openai/openai-node/compare/v4.79.2...v4.79.3) + +### Bug Fixes + +* **jsr:** export zod helpers ([9dc55b6](https://github.com/openai/openai-node/commit/9dc55b62b564ad5ad1d4a60fe520b68235d05296)) + ## 4.79.2 (2025-01-21) Full Changelog: [v4.79.1...v4.79.2](https://github.com/openai/openai-node/compare/v4.79.1...v4.79.2) diff --git a/jsr.json b/jsr.json index 5819f2fa3..c070e4983 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.79.2", + "version": "4.79.3", "exports": { ".": "./index.ts", "./helpers/zod": "./helpers/zod.ts", diff --git a/package.json b/package.json index 07b2da77d..342f7c539 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.79.2", + "version": "4.79.3", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 2cedb894b..c2097ae42 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.79.2'; // x-release-please-version +export const VERSION = '4.79.3'; // x-release-please-version From a1d0ddc3b27b15700e355a476e8d183dae43987c Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 21 Jan 2025 17:22:40 +0000 Subject: [PATCH 673/725] docs: update deprecation messages (#1275) --- src/resources/chat/completions.ts | 24 ++++++++++++------------ src/resources/files.ts | 4 ++-- src/resources/fine-tuning/jobs/jobs.ts | 2 +- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 31f5814cb..88c778036 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -163,8 +163,8 @@ export interface ChatCompletionAssistantMessageParam { content?: string | Array | null; /** - * @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of - * a function that should be called, as generated by the model. + * @deprecated Deprecated and replaced by `tool_calls`. The name and arguments of a + * function that should be called, as generated by the model. */ function_call?: ChatCompletionAssistantMessageParam.FunctionCall | null; @@ -198,8 +198,8 @@ export namespace ChatCompletionAssistantMessageParam { } /** - * @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of - * a function that should be called, as generated by the model. + * @deprecated Deprecated and replaced by `tool_calls`. The name and arguments of a + * function that should be called, as generated by the model. */ export interface FunctionCall { /** @@ -360,8 +360,8 @@ export namespace ChatCompletionChunk { content?: string | null; /** - * @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of - * a function that should be called, as generated by the model. + * @deprecated Deprecated and replaced by `tool_calls`. The name and arguments of a + * function that should be called, as generated by the model. */ function_call?: Delta.FunctionCall; @@ -380,8 +380,8 @@ export namespace ChatCompletionChunk { export namespace Delta { /** - * @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of - * a function that should be called, as generated by the model. + * @deprecated Deprecated and replaced by `tool_calls`. The name and arguments of a + * function that should be called, as generated by the model. */ export interface FunctionCall { /** @@ -620,8 +620,8 @@ export interface ChatCompletionMessage { audio?: ChatCompletionAudio | null; /** - * @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of - * a function that should be called, as generated by the model. + * @deprecated Deprecated and replaced by `tool_calls`. The name and arguments of a + * function that should be called, as generated by the model. */ function_call?: ChatCompletionMessage.FunctionCall | null; @@ -633,8 +633,8 @@ export interface ChatCompletionMessage { export namespace ChatCompletionMessage { /** - * @deprecated: Deprecated and replaced by `tool_calls`. The name and arguments of - * a function that should be called, as generated by the model. + * @deprecated Deprecated and replaced by `tool_calls`. The name and arguments of a + * function that should be called, as generated by the model. */ export interface FunctionCall { /** diff --git a/src/resources/files.ts b/src/resources/files.ts index 43708310b..67bc95469 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -168,13 +168,13 @@ export interface FileObject { | 'vision'; /** - * @deprecated: Deprecated. The current status of the file, which can be either + * @deprecated Deprecated. The current status of the file, which can be either * `uploaded`, `processed`, or `error`. */ status: 'uploaded' | 'processed' | 'error'; /** - * @deprecated: Deprecated. For details on why a fine-tuning training file failed + * @deprecated Deprecated. For details on why a fine-tuning training file failed * validation, see the `error` field on `fine_tuning.job`. */ status_details?: string; diff --git a/src/resources/fine-tuning/jobs/jobs.ts b/src/resources/fine-tuning/jobs/jobs.ts index 44dd011aa..9be03c302 100644 --- a/src/resources/fine-tuning/jobs/jobs.ts +++ b/src/resources/fine-tuning/jobs/jobs.ts @@ -516,7 +516,7 @@ export interface JobCreateParams { export namespace JobCreateParams { /** - * @deprecated: The hyperparameters used for the fine-tuning job. This value is now + * @deprecated The hyperparameters used for the fine-tuning job. This value is now * deprecated in favor of `method`, and should be passed in under the `method` * parameter. */ From c85dc9793ab6fb318b9ece1a557c4e00024265c1 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 21 Jan 2025 21:00:49 +0000 Subject: [PATCH 674/725] chore(internal): minor restructuring (#1278) --- src/internal/decoders/line.ts | 2 +- src/internal/stream-utils.ts | 32 +++++++++++++++++++++++++++++ src/streaming.ts | 38 +++-------------------------------- 3 files changed, 36 insertions(+), 36 deletions(-) create mode 100644 src/internal/stream-utils.ts diff --git a/src/internal/decoders/line.ts b/src/internal/decoders/line.ts index 1e0bbf390..34e41d1dc 100644 --- a/src/internal/decoders/line.ts +++ b/src/internal/decoders/line.ts @@ -1,6 +1,6 @@ import { OpenAIError } from '../../error'; -type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined; +export type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined; /** * A re-implementation of httpx's `LineDecoder` in Python that handles incrementally diff --git a/src/internal/stream-utils.ts b/src/internal/stream-utils.ts new file mode 100644 index 000000000..37f7793cf --- /dev/null +++ b/src/internal/stream-utils.ts @@ -0,0 +1,32 @@ +/** + * Most browsers don't yet have async iterable support for ReadableStream, + * and Node has a very different way of reading bytes from its "ReadableStream". + * + * This polyfill was pulled from https://github.com/MattiasBuelens/web-streams-polyfill/pull/122#issuecomment-1627354490 + */ +export function ReadableStreamToAsyncIterable(stream: any): AsyncIterableIterator { + if (stream[Symbol.asyncIterator]) return stream; + + const reader = stream.getReader(); + return { + async next() { + try { + const result = await reader.read(); + if (result?.done) reader.releaseLock(); // release lock when stream becomes closed + return result; + } catch (e) { + reader.releaseLock(); // release lock when stream becomes errored + throw e; + } + }, + async return() { + const cancelPromise = reader.cancel(); + reader.releaseLock(); + await cancelPromise; + return { done: true, value: undefined }; + }, + [Symbol.asyncIterator]() { + return this; + }, + }; +} diff --git a/src/streaming.ts b/src/streaming.ts index 2891e6ac3..6a57a50a0 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -1,6 +1,7 @@ import { ReadableStream, type Response } from './_shims/index'; import { OpenAIError } from './error'; import { LineDecoder } from './internal/decoders/line'; +import { ReadableStreamToAsyncIterable } from './internal/stream-utils'; import { APIError } from './error'; @@ -96,7 +97,7 @@ export class Stream implements AsyncIterable { async function* iterLines(): AsyncGenerator { const lineDecoder = new LineDecoder(); - const iter = readableStreamAsyncIterable(readableStream); + const iter = ReadableStreamToAsyncIterable(readableStream); for await (const chunk of iter) { for (const line of lineDecoder.decode(chunk)) { yield line; @@ -210,7 +211,7 @@ export async function* _iterSSEMessages( const sseDecoder = new SSEDecoder(); const lineDecoder = new LineDecoder(); - const iter = readableStreamAsyncIterable(response.body); + const iter = ReadableStreamToAsyncIterable(response.body); for await (const sseChunk of iterSSEChunks(iter)) { for (const line of lineDecoder.decode(sseChunk)) { const sse = sseDecoder.decode(line); @@ -363,36 +364,3 @@ function partition(str: string, delimiter: string): [string, string, string] { return [str, '', '']; } - -/** - * Most browsers don't yet have async iterable support for ReadableStream, - * and Node has a very different way of reading bytes from its "ReadableStream". - * - * This polyfill was pulled from https://github.com/MattiasBuelens/web-streams-polyfill/pull/122#issuecomment-1627354490 - */ -export function readableStreamAsyncIterable(stream: any): AsyncIterableIterator { - if (stream[Symbol.asyncIterator]) return stream; - - const reader = stream.getReader(); - return { - async next() { - try { - const result = await reader.read(); - if (result?.done) reader.releaseLock(); // release lock when stream becomes closed - return result; - } catch (e) { - reader.releaseLock(); // release lock when stream becomes errored - throw e; - } - }, - async return() { - const cancelPromise = reader.cancel(); - reader.releaseLock(); - await cancelPromise; - return { done: true, value: undefined }; - }, - [Symbol.asyncIterator]() { - return this; - }, - }; -} From e5aba740d98541e9ca7cb01998c27033c0f03c5f Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Tue, 21 Jan 2025 22:36:52 +0000 Subject: [PATCH 675/725] fix(jsr): correct zod config --- jsr.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jsr.json b/jsr.json index c070e4983..8c24896f7 100644 --- a/jsr.json +++ b/jsr.json @@ -6,6 +6,9 @@ "./helpers/zod": "./helpers/zod.ts", "./beta/realtime/websocket": "./beta/realtime/websocket.ts" }, + "imports": { + "zod": "npm:zod@3" + }, "publish": { "exclude": [ "!." From 0fae08b33e6963c6b46e6318f23bada01d18f19f Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 21 Jan 2025 22:37:23 +0000 Subject: [PATCH 676/725] release: 4.79.4 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 18 ++++++++++++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 22 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index cdd63a113..b1ab5c7b9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.79.3" + ".": "4.79.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a1ce156f..4254a9b8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## 4.79.4 (2025-01-21) + +Full Changelog: [v4.79.3...v4.79.4](https://github.com/openai/openai-node/compare/v4.79.3...v4.79.4) + +### Bug Fixes + +* **jsr:** correct zod config ([e45fa5f](https://github.com/openai/openai-node/commit/e45fa5f535ca74789636001e60e33edcad4db83c)) + + +### Chores + +* **internal:** minor restructuring ([#1278](https://github.com/openai/openai-node/issues/1278)) ([58ea92a](https://github.com/openai/openai-node/commit/58ea92a7464a04223f24ba31dbc0f7d0cf99cc19)) + + +### Documentation + +* update deprecation messages ([#1275](https://github.com/openai/openai-node/issues/1275)) ([1c6599e](https://github.com/openai/openai-node/commit/1c6599e47ef75a71cb309a1e14d97bc97bd036d0)) + ## 4.79.3 (2025-01-21) Full Changelog: [v4.79.2...v4.79.3](https://github.com/openai/openai-node/compare/v4.79.2...v4.79.3) diff --git a/jsr.json b/jsr.json index 8c24896f7..e6d772116 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.79.3", + "version": "4.79.4", "exports": { ".": "./index.ts", "./helpers/zod": "./helpers/zod.ts", diff --git a/package.json b/package.json index 342f7c539..d7a5555e5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.79.3", + "version": "4.79.4", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index c2097ae42..e8b9601ed 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.79.3'; // x-release-please-version +export const VERSION = '4.79.4'; // x-release-please-version From 74776c6923b36b8b610063e0f5d8773bbd94313f Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 22 Jan 2025 13:20:44 +0000 Subject: [PATCH 677/725] feat(api): update enum values, comments, and examples (#1280) --- .stats.yml | 2 +- src/resources/audio/speech.ts | 8 ++--- src/resources/beta/realtime/realtime.ts | 32 +++++++++++-------- src/resources/beta/realtime/sessions.ts | 30 ++++++++++------- src/resources/chat/completions.ts | 9 ++---- src/resources/embeddings.ts | 3 +- .../beta/realtime/sessions.test.ts | 27 ++-------------- tests/api-resources/chat/completions.test.ts | 2 +- tests/api-resources/completions.test.ts | 2 +- 9 files changed, 49 insertions(+), 66 deletions(-) diff --git a/.stats.yml b/.stats.yml index 9600edae3..d518bac58 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 69 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-b5b0e2c794b012919701c3fd43286af10fa25d33ceb8a881bec2636028f446e0.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-3904ef6b29a89c98f93a9b7da19879695f3c440564be6384db7af1b734611ede.yml diff --git a/src/resources/audio/speech.ts b/src/resources/audio/speech.ts index bd2ed9f65..35e82c4c1 100644 --- a/src/resources/audio/speech.ts +++ b/src/resources/audio/speech.ts @@ -33,12 +33,12 @@ export interface SpeechCreateParams { model: (string & {}) | SpeechModel; /** - * The voice to use when generating the audio. Supported voices are `alloy`, - * `echo`, `fable`, `onyx`, `nova`, and `shimmer`. Previews of the voices are - * available in the + * The voice to use when generating the audio. Supported voices are `alloy`, `ash`, + * `coral`, `echo`, `fable`, `onyx`, `nova`, `sage` and `shimmer`. Previews of the + * voices are available in the * [Text to speech guide](https://platform.openai.com/docs/guides/text-to-speech#voice-options). */ - voice: 'alloy' | 'echo' | 'fable' | 'onyx' | 'nova' | 'shimmer'; + voice: 'alloy' | 'ash' | 'coral' | 'echo' | 'fable' | 'onyx' | 'nova' | 'sage' | 'shimmer'; /** * The format to audio in. Supported formats are `mp3`, `opus`, `aac`, `flac`, diff --git a/src/resources/beta/realtime/realtime.ts b/src/resources/beta/realtime/realtime.ts index 5de06917a..0fb66eb49 100644 --- a/src/resources/beta/realtime/realtime.ts +++ b/src/resources/beta/realtime/realtime.ts @@ -173,9 +173,10 @@ export interface ConversationItemCreateEvent { /** * The ID of the preceding item after which the new item will be inserted. If not - * set, the new item will be appended to the end of the conversation. If set, it - * allows an item to be inserted mid-conversation. If the ID cannot be found, an - * error will be returned and the item will not be added. + * set, the new item will be appended to the end of the conversation. If set to + * `root`, the new item will be added to the beginning of the conversation. If set + * to an existing ID, it allows an item to be inserted mid-conversation. If the ID + * cannot be found, an error will be returned and the item will not be added. */ previous_item_id?: string; } @@ -1705,17 +1706,9 @@ export namespace SessionUpdateEvent { */ export interface Session { /** - * The Realtime model used for this session. - */ - model: - | 'gpt-4o-realtime-preview' - | 'gpt-4o-realtime-preview-2024-10-01' - | 'gpt-4o-realtime-preview-2024-12-17' - | 'gpt-4o-mini-realtime-preview' - | 'gpt-4o-mini-realtime-preview-2024-12-17'; - - /** - * The format of input audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. + * The format of input audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. For + * `pcm16`, input audio must be 16-bit PCM at a 24kHz sample rate, single channel + * (mono), and little-endian byte order. */ input_audio_format?: 'pcm16' | 'g711_ulaw' | 'g711_alaw'; @@ -1756,8 +1749,19 @@ export namespace SessionUpdateEvent { */ modalities?: Array<'text' | 'audio'>; + /** + * The Realtime model used for this session. + */ + model?: + | 'gpt-4o-realtime-preview' + | 'gpt-4o-realtime-preview-2024-10-01' + | 'gpt-4o-realtime-preview-2024-12-17' + | 'gpt-4o-mini-realtime-preview' + | 'gpt-4o-mini-realtime-preview-2024-12-17'; + /** * The format of output audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. + * For `pcm16`, output audio is sampled at a rate of 24kHz. */ output_audio_format?: 'pcm16' | 'g711_ulaw' | 'g711_alaw'; diff --git a/src/resources/beta/realtime/sessions.ts b/src/resources/beta/realtime/sessions.ts index c1082d236..68c48db59 100644 --- a/src/resources/beta/realtime/sessions.ts +++ b/src/resources/beta/realtime/sessions.ts @@ -32,7 +32,9 @@ export interface Session { id?: string; /** - * The format of input audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. + * The format of input audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. For + * `pcm16`, input audio must be 16-bit PCM at a 24kHz sample rate, single channel + * (mono), and little-endian byte order. */ input_audio_format?: 'pcm16' | 'g711_ulaw' | 'g711_alaw'; @@ -86,6 +88,7 @@ export interface Session { /** * The format of output audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. + * For `pcm16`, output audio is sampled at a rate of 24kHz. */ output_audio_format?: 'pcm16' | 'g711_ulaw' | 'g711_alaw'; @@ -372,17 +375,9 @@ export namespace SessionCreateResponse { export interface SessionCreateParams { /** - * The Realtime model used for this session. - */ - model: - | 'gpt-4o-realtime-preview' - | 'gpt-4o-realtime-preview-2024-10-01' - | 'gpt-4o-realtime-preview-2024-12-17' - | 'gpt-4o-mini-realtime-preview' - | 'gpt-4o-mini-realtime-preview-2024-12-17'; - - /** - * The format of input audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. + * The format of input audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. For + * `pcm16`, input audio must be 16-bit PCM at a 24kHz sample rate, single channel + * (mono), and little-endian byte order. */ input_audio_format?: 'pcm16' | 'g711_ulaw' | 'g711_alaw'; @@ -423,8 +418,19 @@ export interface SessionCreateParams { */ modalities?: Array<'text' | 'audio'>; + /** + * The Realtime model used for this session. + */ + model?: + | 'gpt-4o-realtime-preview' + | 'gpt-4o-realtime-preview-2024-10-01' + | 'gpt-4o-realtime-preview-2024-12-17' + | 'gpt-4o-mini-realtime-preview' + | 'gpt-4o-mini-realtime-preview-2024-12-17'; + /** * The format of output audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. + * For `pcm16`, output audio is sampled at a rate of 24kHz. */ output_audio_format?: 'pcm16' | 'g711_ulaw' | 'g711_alaw'; diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 88c778036..683eb5ed4 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -76,8 +76,7 @@ export interface ChatCompletion { object: 'chat.completion'; /** - * The service tier used for processing the request. This field is only included if - * the `service_tier` parameter is specified in the request. + * The service tier used for processing the request. */ service_tier?: 'scale' | 'default' | null; @@ -300,8 +299,7 @@ export interface ChatCompletionChunk { object: 'chat.completion.chunk'; /** - * The service tier used for processing the request. This field is only included if - * the `service_tier` parameter is specified in the request. + * The service tier used for processing the request. */ service_tier?: 'scale' | 'default' | null; @@ -1115,9 +1113,6 @@ export interface ChatCompletionCreateParamsBase { * - If set to 'default', the request will be processed using the default service * tier with a lower uptime SLA and no latency guarentee. * - When not set, the default behavior is 'auto'. - * - * When this parameter is set, the response body will include the `service_tier` - * utilized. */ service_tier?: 'auto' | 'default' | null; diff --git a/src/resources/embeddings.ts b/src/resources/embeddings.ts index 4b1644a68..d01ffc807 100644 --- a/src/resources/embeddings.ts +++ b/src/resources/embeddings.ts @@ -86,7 +86,8 @@ export interface EmbeddingCreateParams { * `text-embedding-ada-002`), cannot be an empty string, and any array must be 2048 * dimensions or less. * [Example Python code](https://cookbook.openai.com/examples/how_to_count_tokens_with_tiktoken) - * for counting tokens. + * for counting tokens. Some models may also impose a limit on total number of + * tokens summed across inputs. */ input: string | Array | Array | Array>; diff --git a/tests/api-resources/beta/realtime/sessions.test.ts b/tests/api-resources/beta/realtime/sessions.test.ts index 0ed998c27..dbb92ead3 100644 --- a/tests/api-resources/beta/realtime/sessions.test.ts +++ b/tests/api-resources/beta/realtime/sessions.test.ts @@ -9,8 +9,8 @@ const client = new OpenAI({ }); describe('resource sessions', () => { - test('create: only required params', async () => { - const responsePromise = client.beta.realtime.sessions.create({ model: 'gpt-4o-realtime-preview' }); + test('create', async () => { + const responsePromise = client.beta.realtime.sessions.create({}); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -19,27 +19,4 @@ describe('resource sessions', () => { expect(dataAndResponse.data).toBe(response); expect(dataAndResponse.response).toBe(rawResponse); }); - - test('create: required and optional params', async () => { - const response = await client.beta.realtime.sessions.create({ - model: 'gpt-4o-realtime-preview', - input_audio_format: 'pcm16', - input_audio_transcription: { model: 'model' }, - instructions: 'instructions', - max_response_output_tokens: 0, - modalities: ['text'], - output_audio_format: 'pcm16', - temperature: 0, - tool_choice: 'tool_choice', - tools: [{ description: 'description', name: 'name', parameters: {}, type: 'function' }], - turn_detection: { - create_response: true, - prefix_padding_ms: 0, - silence_duration_ms: 0, - threshold: 0, - type: 'type', - }, - voice: 'alloy', - }); - }); }); diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index dfc09f69b..8f1bc7d4c 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -43,7 +43,7 @@ describe('resource completions', () => { presence_penalty: -2, reasoning_effort: 'low', response_format: { type: 'text' }, - seed: -9007199254740991, + seed: 0, service_tier: 'auto', stop: 'string', store: true, diff --git a/tests/api-resources/completions.test.ts b/tests/api-resources/completions.test.ts index 82322dc3a..c98501a87 100644 --- a/tests/api-resources/completions.test.ts +++ b/tests/api-resources/completions.test.ts @@ -32,7 +32,7 @@ describe('resource completions', () => { max_tokens: 16, n: 1, presence_penalty: -2, - seed: -9007199254740991, + seed: 0, stop: '\n', stream: false, stream_options: { include_usage: true }, From 180b9ca1b5472d7697202a9220960a948bfbb9c8 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 22 Jan 2025 13:21:16 +0000 Subject: [PATCH 678/725] release: 4.80.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b1ab5c7b9..a21d67d78 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.79.4" + ".": "4.80.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4254a9b8f..9126bf6a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.80.0 (2025-01-22) + +Full Changelog: [v4.79.4...v4.80.0](https://github.com/openai/openai-node/compare/v4.79.4...v4.80.0) + +### Features + +* **api:** update enum values, comments, and examples ([#1280](https://github.com/openai/openai-node/issues/1280)) ([d38f2c2](https://github.com/openai/openai-node/commit/d38f2c2648b6990f217c3c7d83ca31f3739641d3)) + ## 4.79.4 (2025-01-21) Full Changelog: [v4.79.3...v4.79.4](https://github.com/openai/openai-node/compare/v4.79.3...v4.79.4) diff --git a/jsr.json b/jsr.json index e6d772116..d79b07c2f 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.79.4", + "version": "4.80.0", "exports": { ".": "./index.ts", "./helpers/zod": "./helpers/zod.ts", diff --git a/package.json b/package.json index d7a5555e5..fd85ffdd0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.79.4", + "version": "4.80.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index e8b9601ed..c9b6787c2 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.79.4'; // x-release-please-version +export const VERSION = '4.80.0'; // x-release-please-version From b7ab6bb304973ade94830f37eb646e800226d5ef Mon Sep 17 00:00:00 2001 From: hi019 <65871571+hi019@users.noreply.github.com> Date: Wed, 22 Jan 2025 12:57:18 -0800 Subject: [PATCH 679/725] docs: fix typo, "zodFunctionTool" -> "zodFunction" (#1128) --- helpers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers.md b/helpers.md index abf980c82..aa3775a54 100644 --- a/helpers.md +++ b/helpers.md @@ -49,7 +49,7 @@ if (message?.parsed) { The `.parse()` method will also automatically parse `function` tool calls if: -- You use the `zodFunctionTool()` helper method +- You use the `zodFunction()` helper method - You mark your tool schema with `"strict": True` For example: From 9bfb778d547c34a6b7ed4168251786b1d6723985 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Wed, 22 Jan 2025 20:34:34 +0000 Subject: [PATCH 680/725] fix(azure): include retry count header --- src/index.ts | 7 +++++-- tests/lib/azure.test.ts | 12 ++++++++++++ 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index cf6aa89e3..944def00f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -577,7 +577,10 @@ export class AzureOpenAI extends OpenAI { this._deployment = deployment; } - override buildRequest(options: Core.FinalRequestOptions): { + override buildRequest( + options: Core.FinalRequestOptions, + props: { retryCount?: number } = {}, + ): { req: RequestInit; url: string; timeout: number; @@ -591,7 +594,7 @@ export class AzureOpenAI extends OpenAI { options.path = `/deployments/${model}${options.path}`; } } - return super.buildRequest(options); + return super.buildRequest(options, props); } private async _getAzureADToken(): Promise { diff --git a/tests/lib/azure.test.ts b/tests/lib/azure.test.ts index 064a0098c..0e3c2c5a3 100644 --- a/tests/lib/azure.test.ts +++ b/tests/lib/azure.test.ts @@ -51,6 +51,18 @@ describe('instantiate azure client', () => { }); expect(req.headers as Headers).not.toHaveProperty('x-my-default-header'); }); + + test('includes retry count', () => { + const { req } = client.buildRequest( + { + path: '/foo', + method: 'post', + headers: { 'X-My-Default-Header': null }, + }, + { retryCount: 1 }, + ); + expect((req.headers as Headers)['x-stainless-retry-count']).toEqual('1'); + }); }); describe('defaultQuery', () => { From 654a2ac33d6b0bab723ec30ab734bbd9b693bbf3 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Wed, 22 Jan 2025 20:53:36 +0000 Subject: [PATCH 681/725] docs(helpers): fix type annotation --- helpers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers.md b/helpers.md index aa3775a54..16bc1f277 100644 --- a/helpers.md +++ b/helpers.md @@ -226,7 +226,7 @@ on in the documentation page [Message](https://platform.openai.com/docs/api-refe ```ts .on('textCreated', (content: Text) => ...) -.on('textDelta', (delta: RunStepDelta, snapshot: Text) => ...) +.on('textDelta', (delta: TextDelta, snapshot: Text) => ...) .on('textDone', (content: Text, snapshot: Message) => ...) ``` From 3fcded9eb387e39bdf03a06b701710cf3075f990 Mon Sep 17 00:00:00 2001 From: Guspan Tanadi <36249910+guspan-tanadi@users.noreply.github.com> Date: Fri, 24 Jan 2025 19:16:27 +0700 Subject: [PATCH 682/725] docs(readme): fix realtime errors docs link (#1286) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3bd386e99..012511412 100644 --- a/README.md +++ b/README.md @@ -157,7 +157,7 @@ A full example can be found [here](https://github.com/openai/openai-node/blob/ma ### Realtime error handling -When an error is encountered, either on the client side or returned from the server through the [`error` event](https://platform.openai.com/docs/guides/realtime/realtime-api-beta#handling-errors), the `error` event listener will be fired. However, if you haven't registered an `error` event listener then an `unhandled Promise rejection` error will be thrown. +When an error is encountered, either on the client side or returned from the server through the [`error` event](https://platform.openai.com/docs/guides/realtime-model-capabilities#error-handling), the `error` event listener will be fired. However, if you haven't registered an `error` event listener then an `unhandled Promise rejection` error will be thrown. It is **highly recommended** that you register an `error` event listener and handle errors approriately as typically the underlying connection is still usable. From fb61fc2db45d2fb1f25016b70608714a93a80c9d Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 24 Jan 2025 12:16:56 +0000 Subject: [PATCH 683/725] release: 4.80.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 15 +++++++++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 19 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a21d67d78..d140407b9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.80.0" + ".": "4.80.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9126bf6a2..e4d4d73b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 4.80.1 (2025-01-24) + +Full Changelog: [v4.80.0...v4.80.1](https://github.com/openai/openai-node/compare/v4.80.0...v4.80.1) + +### Bug Fixes + +* **azure:** include retry count header ([3e0ba40](https://github.com/openai/openai-node/commit/3e0ba409e57ce276fb1f95cd11c801e4ccaad572)) + + +### Documentation + +* fix typo, "zodFunctionTool" -> "zodFunction" ([#1128](https://github.com/openai/openai-node/issues/1128)) ([b7ab6bb](https://github.com/openai/openai-node/commit/b7ab6bb304973ade94830f37eb646e800226d5ef)) +* **helpers:** fix type annotation ([fc019df](https://github.com/openai/openai-node/commit/fc019df1d9cc276e8f8e689742853a09aa94991a)) +* **readme:** fix realtime errors docs link ([#1286](https://github.com/openai/openai-node/issues/1286)) ([d1d50c8](https://github.com/openai/openai-node/commit/d1d50c897c18cefea964e8057fe1acfd766ae2bf)) + ## 4.80.0 (2025-01-22) Full Changelog: [v4.79.4...v4.80.0](https://github.com/openai/openai-node/compare/v4.79.4...v4.80.0) diff --git a/jsr.json b/jsr.json index d79b07c2f..e2ecad87f 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.80.0", + "version": "4.80.1", "exports": { ".": "./index.ts", "./helpers/zod": "./helpers/zod.ts", diff --git a/package.json b/package.json index fd85ffdd0..497c7fae9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.80.0", + "version": "4.80.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index c9b6787c2..7d762daed 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.80.0'; // x-release-please-version +export const VERSION = '4.80.1'; // x-release-please-version From b4bb01ddd9f1c1f6ae41ddc11a9e1b707ef04764 Mon Sep 17 00:00:00 2001 From: Deyaaeldeen Almahallawi Date: Wed, 29 Jan 2025 09:45:25 -0600 Subject: [PATCH 684/725] feat(azure): Realtime API support (#1287) --- README.md | 22 ++++++++- examples/{azure.ts => azure/chat.ts} | 3 +- examples/azure/realtime/websocket.ts | 60 +++++++++++++++++++++++++ examples/azure/realtime/ws.ts | 67 ++++++++++++++++++++++++++++ examples/package.json | 1 + examples/realtime/ws.ts | 2 +- src/beta/realtime/internal-base.ts | 18 ++++++-- src/beta/realtime/websocket.ts | 54 ++++++++++++++++++++-- src/beta/realtime/ws.ts | 35 +++++++++++++-- src/index.ts | 8 ++-- 10 files changed, 251 insertions(+), 19 deletions(-) rename examples/{azure.ts => azure/chat.ts} (91%) create mode 100644 examples/azure/realtime/websocket.ts create mode 100644 examples/azure/realtime/ws.ts diff --git a/README.md b/README.md index 012511412..a1f4bf760 100644 --- a/README.md +++ b/README.md @@ -499,7 +499,7 @@ const credential = new DefaultAzureCredential(); const scope = 'https://cognitiveservices.azure.com/.default'; const azureADTokenProvider = getBearerTokenProvider(credential, scope); -const openai = new AzureOpenAI({ azureADTokenProvider }); +const openai = new AzureOpenAI({ azureADTokenProvider, apiVersion: "" }); const result = await openai.chat.completions.create({ model: 'gpt-4o', @@ -509,6 +509,26 @@ const result = await openai.chat.completions.create({ console.log(result.choices[0]!.message?.content); ``` +### Realtime API +This SDK provides real-time streaming capabilities for Azure OpenAI through the `OpenAIRealtimeWS` and `OpenAIRealtimeWebSocket` clients described previously. + +To utilize the real-time features, begin by creating a fully configured `AzureOpenAI` client and passing it into either `OpenAIRealtimeWS.azure` or `OpenAIRealtimeWebSocket.azure`. For example: + +```ts +const cred = new DefaultAzureCredential(); +const scope = 'https://cognitiveservices.azure.com/.default'; +const deploymentName = 'gpt-4o-realtime-preview-1001'; +const azureADTokenProvider = getBearerTokenProvider(cred, scope); +const client = new AzureOpenAI({ + azureADTokenProvider, + apiVersion: '2024-10-01-preview', + deployment: deploymentName, +}); +const rt = await OpenAIRealtimeWS.azure(client); +``` + +Once the instance has been created, you can then begin sending requests and receiving streaming responses in real time. + ### Retries Certain errors will be automatically retried 2 times by default, with a short exponential backoff. diff --git a/examples/azure.ts b/examples/azure/chat.ts similarity index 91% rename from examples/azure.ts rename to examples/azure/chat.ts index 5fe1718fa..46df820f8 100755 --- a/examples/azure.ts +++ b/examples/azure/chat.ts @@ -2,6 +2,7 @@ import { AzureOpenAI } from 'openai'; import { getBearerTokenProvider, DefaultAzureCredential } from '@azure/identity'; +import 'dotenv/config'; // Corresponds to your Model deployment within your OpenAI resource, e.g. gpt-4-1106-preview // Navigate to the Azure OpenAI Studio to deploy a model. @@ -13,7 +14,7 @@ const azureADTokenProvider = getBearerTokenProvider(credential, scope); // Make sure to set AZURE_OPENAI_ENDPOINT with the endpoint of your Azure resource. // You can find it in the Azure Portal. -const openai = new AzureOpenAI({ azureADTokenProvider }); +const openai = new AzureOpenAI({ azureADTokenProvider, apiVersion: '2024-10-01-preview' }); async function main() { console.log('Non-streaming:'); diff --git a/examples/azure/realtime/websocket.ts b/examples/azure/realtime/websocket.ts new file mode 100644 index 000000000..bec74e654 --- /dev/null +++ b/examples/azure/realtime/websocket.ts @@ -0,0 +1,60 @@ +import { OpenAIRealtimeWebSocket } from 'openai/beta/realtime/websocket'; +import { AzureOpenAI } from 'openai'; +import { DefaultAzureCredential, getBearerTokenProvider } from '@azure/identity'; +import 'dotenv/config'; + +async function main() { + const cred = new DefaultAzureCredential(); + const scope = 'https://cognitiveservices.azure.com/.default'; + const deploymentName = 'gpt-4o-realtime-preview-1001'; + const azureADTokenProvider = getBearerTokenProvider(cred, scope); + const client = new AzureOpenAI({ + azureADTokenProvider, + apiVersion: '2024-10-01-preview', + deployment: deploymentName, + }); + const rt = await OpenAIRealtimeWebSocket.azure(client); + + // access the underlying `ws.WebSocket` instance + rt.socket.addEventListener('open', () => { + console.log('Connection opened!'); + rt.send({ + type: 'session.update', + session: { + modalities: ['text'], + model: 'gpt-4o-realtime-preview', + }, + }); + + rt.send({ + type: 'conversation.item.create', + item: { + type: 'message', + role: 'user', + content: [{ type: 'input_text', text: 'Say a couple paragraphs!' }], + }, + }); + + rt.send({ type: 'response.create' }); + }); + + rt.on('error', (err) => { + // in a real world scenario this should be logged somewhere as you + // likely want to continue procesing events regardless of any errors + throw err; + }); + + rt.on('session.created', (event) => { + console.log('session created!', event.session); + console.log(); + }); + + rt.on('response.text.delta', (event) => process.stdout.write(event.delta)); + rt.on('response.text.done', () => console.log()); + + rt.on('response.done', () => rt.close()); + + rt.socket.addEventListener('close', () => console.log('\nConnection closed!')); +} + +main(); diff --git a/examples/azure/realtime/ws.ts b/examples/azure/realtime/ws.ts new file mode 100644 index 000000000..ae20a1438 --- /dev/null +++ b/examples/azure/realtime/ws.ts @@ -0,0 +1,67 @@ +import { DefaultAzureCredential, getBearerTokenProvider } from '@azure/identity'; +import { OpenAIRealtimeWS } from 'openai/beta/realtime/ws'; +import { AzureOpenAI } from 'openai'; +import 'dotenv/config'; + +async function main() { + const cred = new DefaultAzureCredential(); + const scope = 'https://cognitiveservices.azure.com/.default'; + const deploymentName = 'gpt-4o-realtime-preview-1001'; + const azureADTokenProvider = getBearerTokenProvider(cred, scope); + const client = new AzureOpenAI({ + azureADTokenProvider, + apiVersion: '2024-10-01-preview', + deployment: deploymentName, + }); + const rt = await OpenAIRealtimeWS.azure(client); + + // access the underlying `ws.WebSocket` instance + rt.socket.on('open', () => { + console.log('Connection opened!'); + rt.send({ + type: 'session.update', + session: { + modalities: ['text'], + model: 'gpt-4o-realtime-preview', + }, + }); + rt.send({ + type: 'session.update', + session: { + modalities: ['text'], + model: 'gpt-4o-realtime-preview', + }, + }); + + rt.send({ + type: 'conversation.item.create', + item: { + type: 'message', + role: 'user', + content: [{ type: 'input_text', text: 'Say a couple paragraphs!' }], + }, + }); + + rt.send({ type: 'response.create' }); + }); + + rt.on('error', (err) => { + // in a real world scenario this should be logged somewhere as you + // likely want to continue procesing events regardless of any errors + throw err; + }); + + rt.on('session.created', (event) => { + console.log('session created!', event.session); + console.log(); + }); + + rt.on('response.text.delta', (event) => process.stdout.write(event.delta)); + rt.on('response.text.done', () => console.log()); + + rt.on('response.done', () => rt.close()); + + rt.socket.on('close', () => console.log('\nConnection closed!')); +} + +main(); diff --git a/examples/package.json b/examples/package.json index b8c34ac45..70ec2c523 100644 --- a/examples/package.json +++ b/examples/package.json @@ -7,6 +7,7 @@ "private": true, "dependencies": { "@azure/identity": "^4.2.0", + "dotenv": "^16.4.7", "express": "^4.18.2", "next": "^14.1.1", "openai": "file:..", diff --git a/examples/realtime/ws.ts b/examples/realtime/ws.ts index 4bbe85e5d..bba140800 100644 --- a/examples/realtime/ws.ts +++ b/examples/realtime/ws.ts @@ -9,7 +9,7 @@ async function main() { rt.send({ type: 'session.update', session: { - modalities: ['foo'] as any, + modalities: ['text'], model: 'gpt-4o-realtime-preview', }, }); diff --git a/src/beta/realtime/internal-base.ts b/src/beta/realtime/internal-base.ts index 391d69911..b704812ee 100644 --- a/src/beta/realtime/internal-base.ts +++ b/src/beta/realtime/internal-base.ts @@ -1,6 +1,7 @@ import { RealtimeClientEvent, RealtimeServerEvent, ErrorEvent } from '../../resources/beta/realtime/realtime'; import { EventEmitter } from '../../lib/EventEmitter'; import { OpenAIError } from '../../error'; +import OpenAI, { AzureOpenAI } from '../../index'; export class OpenAIRealtimeError extends OpenAIError { /** @@ -73,11 +74,20 @@ export abstract class OpenAIRealtimeEmitter extends EventEmitter } } -export function buildRealtimeURL(props: { baseURL: string; model: string }): URL { - const path = '/realtime'; +export function isAzure(client: Pick): client is AzureOpenAI { + return client instanceof AzureOpenAI; +} - const url = new URL(props.baseURL + (props.baseURL.endsWith('/') ? path.slice(1) : path)); +export function buildRealtimeURL(client: Pick, model: string): URL { + const path = '/realtime'; + const baseURL = client.baseURL; + const url = new URL(baseURL + (baseURL.endsWith('/') ? path.slice(1) : path)); url.protocol = 'wss'; - url.searchParams.set('model', props.model); + if (isAzure(client)) { + url.searchParams.set('api-version', client.apiVersion); + url.searchParams.set('deployment', model); + } else { + url.searchParams.set('model', model); + } return url; } diff --git a/src/beta/realtime/websocket.ts b/src/beta/realtime/websocket.ts index e0853779d..349cf5760 100644 --- a/src/beta/realtime/websocket.ts +++ b/src/beta/realtime/websocket.ts @@ -1,8 +1,8 @@ -import { OpenAI } from '../../index'; +import { AzureOpenAI, OpenAI } from '../../index'; import { OpenAIError } from '../../error'; import * as Core from '../../core'; import type { RealtimeClientEvent, RealtimeServerEvent } from '../../resources/beta/realtime/realtime'; -import { OpenAIRealtimeEmitter, buildRealtimeURL } from './internal-base'; +import { OpenAIRealtimeEmitter, buildRealtimeURL, isAzure } from './internal-base'; interface MessageEvent { data: string; @@ -26,6 +26,11 @@ export class OpenAIRealtimeWebSocket extends OpenAIRealtimeEmitter { props: { model: string; dangerouslyAllowBrowser?: boolean; + /** + * Callback to mutate the URL, needed for Azure. + * @internal + */ + onURL?: (url: URL) => void; }, client?: Pick, ) { @@ -44,11 +49,13 @@ export class OpenAIRealtimeWebSocket extends OpenAIRealtimeEmitter { client ??= new OpenAI({ dangerouslyAllowBrowser }); - this.url = buildRealtimeURL({ baseURL: client.baseURL, model: props.model }); + this.url = buildRealtimeURL(client, props.model); + props.onURL?.(this.url); + // @ts-ignore this.socket = new WebSocket(this.url, [ 'realtime', - `openai-insecure-api-key.${client.apiKey}`, + ...(isAzure(client) ? [] : [`openai-insecure-api-key.${client.apiKey}`]), 'openai-beta.realtime-v1', ]); @@ -77,6 +84,45 @@ export class OpenAIRealtimeWebSocket extends OpenAIRealtimeEmitter { this.socket.addEventListener('error', (event: any) => { this._onError(null, event.message, null); }); + + if (isAzure(client)) { + if (this.url.searchParams.get('Authorization') !== null) { + this.url.searchParams.set('Authorization', ''); + } else { + this.url.searchParams.set('api-key', ''); + } + } + } + + static async azure( + client: AzureOpenAI, + options: { deploymentName?: string; dangerouslyAllowBrowser?: boolean } = {}, + ): Promise { + const token = await client._getAzureADToken(); + function onURL(url: URL) { + if (client.apiKey !== '') { + url.searchParams.set('api-key', client.apiKey); + } else { + if (token) { + url.searchParams.set('Authorization', `Bearer ${token}`); + } else { + throw new Error('AzureOpenAI is not instantiated correctly. No API key or token provided.'); + } + } + } + const deploymentName = options.deploymentName ?? client.deploymentName; + if (!deploymentName) { + throw new Error('No deployment name provided'); + } + const { dangerouslyAllowBrowser } = options; + return new OpenAIRealtimeWebSocket( + { + model: deploymentName, + onURL, + ...(dangerouslyAllowBrowser ? { dangerouslyAllowBrowser } : {}), + }, + client, + ); } send(event: RealtimeClientEvent) { diff --git a/src/beta/realtime/ws.ts b/src/beta/realtime/ws.ts index 631a36cd2..51339089c 100644 --- a/src/beta/realtime/ws.ts +++ b/src/beta/realtime/ws.ts @@ -1,7 +1,7 @@ import * as WS from 'ws'; -import { OpenAI } from '../../index'; +import { AzureOpenAI, OpenAI } from '../../index'; import type { RealtimeClientEvent, RealtimeServerEvent } from '../../resources/beta/realtime/realtime'; -import { OpenAIRealtimeEmitter, buildRealtimeURL } from './internal-base'; +import { OpenAIRealtimeEmitter, buildRealtimeURL, isAzure } from './internal-base'; export class OpenAIRealtimeWS extends OpenAIRealtimeEmitter { url: URL; @@ -14,12 +14,12 @@ export class OpenAIRealtimeWS extends OpenAIRealtimeEmitter { super(); client ??= new OpenAI(); - this.url = buildRealtimeURL({ baseURL: client.baseURL, model: props.model }); + this.url = buildRealtimeURL(client, props.model); this.socket = new WS.WebSocket(this.url, { ...props.options, headers: { ...props.options?.headers, - Authorization: `Bearer ${client.apiKey}`, + ...(isAzure(client) ? {} : { Authorization: `Bearer ${client.apiKey}` }), 'OpenAI-Beta': 'realtime=v1', }, }); @@ -51,6 +51,20 @@ export class OpenAIRealtimeWS extends OpenAIRealtimeEmitter { }); } + static async azure( + client: AzureOpenAI, + options: { deploymentName?: string; options?: WS.ClientOptions | undefined } = {}, + ): Promise { + const deploymentName = options.deploymentName ?? client.deploymentName; + if (!deploymentName) { + throw new Error('No deployment name provided'); + } + return new OpenAIRealtimeWS( + { model: deploymentName, options: { headers: await getAzureHeaders(client) } }, + client, + ); + } + send(event: RealtimeClientEvent) { try { this.socket.send(JSON.stringify(event)); @@ -67,3 +81,16 @@ export class OpenAIRealtimeWS extends OpenAIRealtimeEmitter { } } } + +async function getAzureHeaders(client: AzureOpenAI) { + if (client.apiKey !== '') { + return { 'api-key': client.apiKey }; + } else { + const token = await client._getAzureADToken(); + if (token) { + return { Authorization: `Bearer ${token}` }; + } else { + throw new Error('AzureOpenAI is not instantiated correctly. No API key or token provided.'); + } + } +} diff --git a/src/index.ts b/src/index.ts index 944def00f..3de224d90 100644 --- a/src/index.ts +++ b/src/index.ts @@ -491,7 +491,7 @@ export interface AzureClientOptions extends ClientOptions { /** API Client for interfacing with the Azure OpenAI API. */ export class AzureOpenAI extends OpenAI { private _azureADTokenProvider: (() => Promise) | undefined; - private _deployment: string | undefined; + deploymentName: string | undefined; apiVersion: string = ''; /** * API Client for interfacing with the Azure OpenAI API. @@ -574,7 +574,7 @@ export class AzureOpenAI extends OpenAI { this._azureADTokenProvider = azureADTokenProvider; this.apiVersion = apiVersion; - this._deployment = deployment; + this.deploymentName = deployment; } override buildRequest( @@ -589,7 +589,7 @@ export class AzureOpenAI extends OpenAI { if (!Core.isObj(options.body)) { throw new Error('Expected request body to be an object'); } - const model = this._deployment || options.body['model']; + const model = this.deploymentName || options.body['model']; if (model !== undefined && !this.baseURL.includes('/deployments')) { options.path = `/deployments/${model}${options.path}`; } @@ -597,7 +597,7 @@ export class AzureOpenAI extends OpenAI { return super.buildRequest(options, props); } - private async _getAzureADToken(): Promise { + async _getAzureADToken(): Promise { if (typeof this._azureADTokenProvider === 'function') { const token = await this._azureADTokenProvider(); if (!token || typeof token !== 'string') { From 6f89573f9b334960195b074e17ad70df32329e8e Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 29 Jan 2025 15:45:55 +0000 Subject: [PATCH 685/725] release: 4.81.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d140407b9..de35570a8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.80.1" + ".": "4.81.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e4d4d73b7..b24c0869d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.81.0 (2025-01-29) + +Full Changelog: [v4.80.1...v4.81.0](https://github.com/openai/openai-node/compare/v4.80.1...v4.81.0) + +### Features + +* **azure:** Realtime API support ([#1287](https://github.com/openai/openai-node/issues/1287)) ([fe090c0](https://github.com/openai/openai-node/commit/fe090c0a57570217eb0b431e2cce40bf61de2b75)) + ## 4.80.1 (2025-01-24) Full Changelog: [v4.80.0...v4.80.1](https://github.com/openai/openai-node/compare/v4.80.0...v4.80.1) diff --git a/jsr.json b/jsr.json index e2ecad87f..18d000862 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.80.1", + "version": "4.81.0", "exports": { ".": "./index.ts", "./helpers/zod": "./helpers/zod.ts", diff --git a/package.json b/package.json index 497c7fae9..07faa0019 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.80.1", + "version": "4.81.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 7d762daed..3b4d4eee5 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.80.1'; // x-release-please-version +export const VERSION = '4.81.0'; // x-release-please-version From a0519f5882e4ed1df388f5c7014a6e0d408cdc40 Mon Sep 17 00:00:00 2001 From: Deyaaeldeen Almahallawi Date: Fri, 31 Jan 2025 04:26:47 -0600 Subject: [PATCH 686/725] fix(examples/realtime): remove duplicate `session.update` call (#1293) --- examples/azure/realtime/ws.ts | 7 ------- examples/realtime/ws.ts | 7 ------- 2 files changed, 14 deletions(-) diff --git a/examples/azure/realtime/ws.ts b/examples/azure/realtime/ws.ts index ae20a1438..6ab7b742a 100644 --- a/examples/azure/realtime/ws.ts +++ b/examples/azure/realtime/ws.ts @@ -25,13 +25,6 @@ async function main() { model: 'gpt-4o-realtime-preview', }, }); - rt.send({ - type: 'session.update', - session: { - modalities: ['text'], - model: 'gpt-4o-realtime-preview', - }, - }); rt.send({ type: 'conversation.item.create', diff --git a/examples/realtime/ws.ts b/examples/realtime/ws.ts index bba140800..08c6fbcb6 100644 --- a/examples/realtime/ws.ts +++ b/examples/realtime/ws.ts @@ -13,13 +13,6 @@ async function main() { model: 'gpt-4o-realtime-preview', }, }); - rt.send({ - type: 'session.update', - session: { - modalities: ['text'], - model: 'gpt-4o-realtime-preview', - }, - }); rt.send({ type: 'conversation.item.create', From 608200f7cfdeca079a9a6457f9c306baf96c4712 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 31 Jan 2025 19:08:33 +0000 Subject: [PATCH 687/725] feat(api): add o3-mini (#1295) fix(types): correct metadata type + other fixes --- .stats.yml | 2 +- api.md | 1 + src/index.ts | 1 + src/resources/audio/transcriptions.ts | 4 +- src/resources/batches.ts | 20 ++-- src/resources/beta/assistants.ts | 42 +++++--- src/resources/beta/realtime/realtime.ts | 89 ++++++++++++++-- src/resources/beta/realtime/sessions.ts | 35 ++++-- src/resources/beta/threads/messages.ts | 31 +++--- src/resources/beta/threads/runs/runs.ts | 39 ++++--- src/resources/beta/threads/runs/steps.ts | 11 +- src/resources/beta/threads/threads.ts | 100 +++++++++++------- .../beta/vector-stores/vector-stores.ts | 31 +++--- src/resources/chat/chat.ts | 2 + src/resources/chat/completions.ts | 14 ++- src/resources/shared.ts | 10 ++ src/resources/uploads/uploads.ts | 2 +- tests/api-resources/beta/assistants.test.ts | 6 +- .../beta/threads/messages.test.ts | 2 +- .../beta/threads/runs/runs.test.ts | 4 +- .../beta/threads/threads.test.ts | 18 ++-- 21 files changed, 320 insertions(+), 144 deletions(-) diff --git a/.stats.yml b/.stats.yml index d518bac58..e49b5c56e 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 69 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-3904ef6b29a89c98f93a9b7da19879695f3c440564be6384db7af1b734611ede.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-6204952a29973265b9c0d66fc67ffaf53c6a90ae4d75cdacf9d147676f5274c9.yml diff --git a/api.md b/api.md index 33ab95ef6..516188b20 100644 --- a/api.md +++ b/api.md @@ -5,6 +5,7 @@ Types: - ErrorObject - FunctionDefinition - FunctionParameters +- Metadata - ResponseFormatJSONObject - ResponseFormatJSONSchema - ResponseFormatText diff --git a/src/index.ts b/src/index.ts index 3de224d90..f860579d3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -451,6 +451,7 @@ export declare namespace OpenAI { export type ErrorObject = API.ErrorObject; export type FunctionDefinition = API.FunctionDefinition; export type FunctionParameters = API.FunctionParameters; + export type Metadata = API.Metadata; export type ResponseFormatJSONObject = API.ResponseFormatJSONObject; export type ResponseFormatJSONSchema = API.ResponseFormatJSONSchema; export type ResponseFormatText = API.ResponseFormatText; diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index 0b6da4620..6d0a07e1e 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -166,8 +166,8 @@ export interface TranscriptionCreateParams< /** * The language of the input audio. Supplying the input language in - * [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will - * improve accuracy and latency. + * [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) + * format will improve accuracy and latency. */ language?: string; diff --git a/src/resources/batches.ts b/src/resources/batches.ts index ec5ca6331..aadda83a6 100644 --- a/src/resources/batches.ts +++ b/src/resources/batches.ts @@ -4,6 +4,7 @@ import { APIResource } from '../resource'; import { isRequestOptions } from '../core'; import * as Core from '../core'; import * as BatchesAPI from './batches'; +import * as Shared from './shared'; import { CursorPage, type CursorPageParams } from '../pagination'; export class Batches extends APIResource { @@ -138,11 +139,13 @@ export interface Batch { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: unknown | null; + metadata?: Shared.Metadata | null; /** * The ID of the file containing the outputs of successfully executed requests. @@ -237,9 +240,14 @@ export interface BatchCreateParams { input_file_id: string; /** - * Optional custom metadata for the batch. + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: Record | null; + metadata?: Shared.Metadata | null; } export interface BatchListParams extends CursorPageParams {} diff --git a/src/resources/beta/assistants.ts b/src/resources/beta/assistants.ts index 0e657b1d4..69a5db520 100644 --- a/src/resources/beta/assistants.ts +++ b/src/resources/beta/assistants.ts @@ -111,11 +111,13 @@ export interface Assistant { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata: unknown | null; + metadata: Shared.Metadata | null; /** * ID of the model to use. You can use the @@ -1118,11 +1120,13 @@ export interface AssistantCreateParams { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: unknown | null; + metadata?: Shared.Metadata | null; /** * The name of the assistant. The maximum length is 256 characters. @@ -1242,12 +1246,14 @@ export namespace AssistantCreateParams { file_ids?: Array; /** - * Set of 16 key-value pairs that can be attached to a vector store. This can be - * useful for storing additional information about the vector store in a structured - * format. Keys can be a maximum of 64 characters long and values can be a maxium - * of 512 characters long. + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: unknown; + metadata?: Shared.Metadata | null; } } } @@ -1267,11 +1273,13 @@ export interface AssistantUpdateParams { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: unknown | null; + metadata?: Shared.Metadata | null; /** * ID of the model to use. You can use the diff --git a/src/resources/beta/realtime/realtime.ts b/src/resources/beta/realtime/realtime.ts index 0fb66eb49..c666221e1 100644 --- a/src/resources/beta/realtime/realtime.ts +++ b/src/resources/beta/realtime/realtime.ts @@ -2,6 +2,7 @@ import { APIResource } from '../../../resource'; import * as RealtimeAPI from './realtime'; +import * as Shared from '../../shared'; import * as SessionsAPI from './sessions'; import { Session as SessionsAPISession, @@ -741,9 +742,38 @@ export interface RealtimeResponse { id?: string; /** - * Developer-provided string key-value pairs associated with this response. + * Which conversation the response is added to, determined by the `conversation` + * field in the `response.create` event. If `auto`, the response will be added to + * the default conversation and the value of `conversation_id` will be an id like + * `conv_1234`. If `none`, the response will not be added to any conversation and + * the value of `conversation_id` will be `null`. If responses are being triggered + * by server VAD, the response will be added to the default conversation, thus the + * `conversation_id` will be an id like `conv_1234`. */ - metadata?: unknown | null; + conversation_id?: string; + + /** + * Maximum number of output tokens for a single assistant response, inclusive of + * tool calls, that was used in this response. + */ + max_output_tokens?: number | 'inf'; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. + */ + metadata?: Shared.Metadata | null; + + /** + * The set of modalities the model used to respond. If there are multiple + * modalities, the model will pick one, for example if `modalities` is + * `["text", "audio"]`, the model could be responding in either text or audio. + */ + modalities?: Array<'text' | 'audio'>; /** * The object type, must be `realtime.response`. @@ -755,6 +785,11 @@ export interface RealtimeResponse { */ output?: Array; + /** + * The format of output audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. + */ + output_audio_format?: 'pcm16' | 'g711_ulaw' | 'g711_alaw'; + /** * The final status of the response (`completed`, `cancelled`, `failed`, or * `incomplete`). @@ -766,6 +801,11 @@ export interface RealtimeResponse { */ status_details?: RealtimeResponseStatus; + /** + * Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8. + */ + temperature?: number; + /** * Usage statistics for the Response, this will correspond to billing. A Realtime * API session will maintain a conversation context and append new Items to the @@ -773,6 +813,12 @@ export interface RealtimeResponse { * become the input for later turns. */ usage?: RealtimeResponseUsage; + + /** + * The voice the model used to respond. Current voice options are `alloy`, `ash`, + * `ballad`, `coral`, `echo` `sage`, `shimmer` and `verse`. + */ + voice?: 'alloy' | 'ash' | 'ballad' | 'coral' | 'echo' | 'sage' | 'shimmer' | 'verse'; } /** @@ -1320,11 +1366,13 @@ export namespace ResponseCreateEvent { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maximum of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: unknown | null; + metadata?: Shared.Metadata | null; /** * The set of modalities the model can respond with. To disable audio, set this to @@ -1716,8 +1764,11 @@ export namespace SessionUpdateEvent { * Configuration for input audio transcription, defaults to off and can be set to * `null` to turn off once on. Input audio transcription is not native to the * model, since the model consumes audio directly. Transcription runs - * asynchronously through Whisper and should be treated as rough guidance rather - * than the representation understood by the model. + * asynchronously through + * [OpenAI Whisper transcription](https://platform.openai.com/docs/api-reference/audio/createTranscription) + * and should be treated as rough guidance rather than the representation + * understood by the model. The client can optionally set the language and prompt + * for transcription, these fields will be passed to the Whisper API. */ input_audio_transcription?: Session.InputAudioTranscription; @@ -1801,15 +1852,33 @@ export namespace SessionUpdateEvent { * Configuration for input audio transcription, defaults to off and can be set to * `null` to turn off once on. Input audio transcription is not native to the * model, since the model consumes audio directly. Transcription runs - * asynchronously through Whisper and should be treated as rough guidance rather - * than the representation understood by the model. + * asynchronously through + * [OpenAI Whisper transcription](https://platform.openai.com/docs/api-reference/audio/createTranscription) + * and should be treated as rough guidance rather than the representation + * understood by the model. The client can optionally set the language and prompt + * for transcription, these fields will be passed to the Whisper API. */ export interface InputAudioTranscription { + /** + * The language of the input audio. Supplying the input language in + * [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) + * format will improve accuracy and latency. + */ + language?: string; + /** * The model to use for transcription, `whisper-1` is the only currently supported * model. */ model?: string; + + /** + * An optional text to guide the model's style or continue a previous audio + * segment. The + * [prompt](https://platform.openai.com/docs/guides/speech-to-text#prompting) + * should match the audio language. + */ + prompt?: string; } export interface Tool { diff --git a/src/resources/beta/realtime/sessions.ts b/src/resources/beta/realtime/sessions.ts index 68c48db59..d2afa25b1 100644 --- a/src/resources/beta/realtime/sessions.ts +++ b/src/resources/beta/realtime/sessions.ts @@ -203,7 +203,7 @@ export interface SessionCreateResponse { /** * Ephemeral key returned by the API. */ - client_secret?: SessionCreateResponse.ClientSecret; + client_secret: SessionCreateResponse.ClientSecret; /** * The format of input audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. @@ -292,14 +292,14 @@ export namespace SessionCreateResponse { * Timestamp for when the token expires. Currently, all tokens expire after one * minute. */ - expires_at?: number; + expires_at: number; /** * Ephemeral key usable in client environments to authenticate connections to the * Realtime API. Use this in client-side environments rather than a standard API * token, which should only be used server-side. */ - value?: string; + value: string; } /** @@ -385,8 +385,11 @@ export interface SessionCreateParams { * Configuration for input audio transcription, defaults to off and can be set to * `null` to turn off once on. Input audio transcription is not native to the * model, since the model consumes audio directly. Transcription runs - * asynchronously through Whisper and should be treated as rough guidance rather - * than the representation understood by the model. + * asynchronously through + * [OpenAI Whisper transcription](https://platform.openai.com/docs/api-reference/audio/createTranscription) + * and should be treated as rough guidance rather than the representation + * understood by the model. The client can optionally set the language and prompt + * for transcription, these fields will be passed to the Whisper API. */ input_audio_transcription?: SessionCreateParams.InputAudioTranscription; @@ -470,15 +473,33 @@ export namespace SessionCreateParams { * Configuration for input audio transcription, defaults to off and can be set to * `null` to turn off once on. Input audio transcription is not native to the * model, since the model consumes audio directly. Transcription runs - * asynchronously through Whisper and should be treated as rough guidance rather - * than the representation understood by the model. + * asynchronously through + * [OpenAI Whisper transcription](https://platform.openai.com/docs/api-reference/audio/createTranscription) + * and should be treated as rough guidance rather than the representation + * understood by the model. The client can optionally set the language and prompt + * for transcription, these fields will be passed to the Whisper API. */ export interface InputAudioTranscription { + /** + * The language of the input audio. Supplying the input language in + * [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) + * format will improve accuracy and latency. + */ + language?: string; + /** * The model to use for transcription, `whisper-1` is the only currently supported * model. */ model?: string; + + /** + * An optional text to guide the model's style or continue a previous audio + * segment. The + * [prompt](https://platform.openai.com/docs/guides/speech-to-text#prompting) + * should match the audio language. + */ + prompt?: string; } export interface Tool { diff --git a/src/resources/beta/threads/messages.ts b/src/resources/beta/threads/messages.ts index 8124f56cd..29fd2b29f 100644 --- a/src/resources/beta/threads/messages.ts +++ b/src/resources/beta/threads/messages.ts @@ -3,6 +3,7 @@ import { APIResource } from '../../../resource'; import { isRequestOptions } from '../../../core'; import * as Core from '../../../core'; +import * as Shared from '../../shared'; import * as AssistantsAPI from '../assistants'; import { CursorPage, type CursorPageParams } from '../../../pagination'; @@ -407,11 +408,13 @@ export interface Message { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata: unknown | null; + metadata: Shared.Metadata | null; /** * The object type, which is always `thread.message`. @@ -660,11 +663,13 @@ export interface MessageCreateParams { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: unknown | null; + metadata?: Shared.Metadata | null; } export namespace MessageCreateParams { @@ -693,11 +698,13 @@ export namespace MessageCreateParams { export interface MessageUpdateParams { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: unknown | null; + metadata?: Shared.Metadata | null; } export interface MessageListParams extends CursorPageParams { diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 814ad3e89..84ba7b63c 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -8,6 +8,7 @@ import { AssistantStream, RunCreateParamsBaseStream } from '../../../../lib/Assi import { sleep } from '../../../../core'; import { RunSubmitToolOutputsParamsStream } from '../../../../lib/AssistantStream'; import * as RunsAPI from './runs'; +import * as Shared from '../../../shared'; import * as AssistantsAPI from '../../assistants'; import * as ChatAPI from '../../../chat/chat'; import * as MessagesAPI from '../messages'; @@ -415,11 +416,13 @@ export interface Run { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata: unknown | null; + metadata: Shared.Metadata | null; /** * The model that the @@ -705,10 +708,12 @@ export interface RunCreateParamsBase { /** * Body param: Set of 16 key-value pairs that can be attached to an object. This * can be useful for storing additional information about the object in a - * structured format. Keys can be a maximum of 64 characters long and values can be - * a maxium of 512 characters long. + * structured format, and querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: unknown | null; + metadata?: Shared.Metadata | null; /** * Body param: The ID of the @@ -823,11 +828,13 @@ export namespace RunCreateParams { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: unknown | null; + metadata?: Shared.Metadata | null; } export namespace AdditionalMessage { @@ -898,11 +905,13 @@ export interface RunCreateParamsStreaming extends RunCreateParamsBase { export interface RunUpdateParams { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: unknown | null; + metadata?: Shared.Metadata | null; } export interface RunListParams extends CursorPageParams { diff --git a/src/resources/beta/threads/runs/steps.ts b/src/resources/beta/threads/runs/steps.ts index 6c6722b62..c491b4e83 100644 --- a/src/resources/beta/threads/runs/steps.ts +++ b/src/resources/beta/threads/runs/steps.ts @@ -4,6 +4,7 @@ import { APIResource } from '../../../../resource'; import { isRequestOptions } from '../../../../core'; import * as Core from '../../../../core'; import * as StepsAPI from './steps'; +import * as Shared from '../../../shared'; import { CursorPage, type CursorPageParams } from '../../../../pagination'; export class Steps extends APIResource { @@ -515,11 +516,13 @@ export interface RunStep { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata: unknown | null; + metadata: Shared.Metadata | null; /** * The object type, which is always `thread.run.step`. diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 453d8fa10..3f69c6e60 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -250,11 +250,13 @@ export interface Thread { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata: unknown | null; + metadata: Shared.Metadata | null; /** * The object type, which is always `thread`. @@ -322,11 +324,13 @@ export interface ThreadCreateParams { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: unknown | null; + metadata?: Shared.Metadata | null; /** * A set of resources that are made available to the assistant's tools in this @@ -361,11 +365,13 @@ export namespace ThreadCreateParams { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: unknown | null; + metadata?: Shared.Metadata | null; } export namespace Message { @@ -447,12 +453,14 @@ export namespace ThreadCreateParams { file_ids?: Array; /** - * Set of 16 key-value pairs that can be attached to a vector store. This can be - * useful for storing additional information about the vector store in a structured - * format. Keys can be a maximum of 64 characters long and values can be a maxium - * of 512 characters long. + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: unknown; + metadata?: Shared.Metadata | null; } } } @@ -461,11 +469,13 @@ export namespace ThreadCreateParams { export interface ThreadUpdateParams { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: unknown | null; + metadata?: Shared.Metadata | null; /** * A set of resources that are made available to the assistant's tools in this @@ -549,11 +559,13 @@ export interface ThreadCreateAndRunParamsBase { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: unknown | null; + metadata?: Shared.Metadata | null; /** * The ID of the [Model](https://platform.openai.com/docs/api-reference/models) to @@ -609,7 +621,8 @@ export interface ThreadCreateAndRunParamsBase { temperature?: number | null; /** - * If no thread is provided, an empty thread will be created. + * Options to create a new thread. If no thread is provided when running a request, + * an empty thread will be created. */ thread?: ThreadCreateAndRunParams.Thread; @@ -658,7 +671,8 @@ export interface ThreadCreateAndRunParamsBase { export namespace ThreadCreateAndRunParams { /** - * If no thread is provided, an empty thread will be created. + * Options to create a new thread. If no thread is provided when running a request, + * an empty thread will be created. */ export interface Thread { /** @@ -669,11 +683,13 @@ export namespace ThreadCreateAndRunParams { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: unknown | null; + metadata?: Shared.Metadata | null; /** * A set of resources that are made available to the assistant's tools in this @@ -708,11 +724,13 @@ export namespace ThreadCreateAndRunParams { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: unknown | null; + metadata?: Shared.Metadata | null; } export namespace Message { @@ -794,12 +812,14 @@ export namespace ThreadCreateAndRunParams { file_ids?: Array; /** - * Set of 16 key-value pairs that can be attached to a vector store. This can be - * useful for storing additional information about the vector store in a structured - * format. Keys can be a maximum of 64 characters long and values can be a maxium - * of 512 characters long. + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: unknown; + metadata?: Shared.Metadata | null; } } } diff --git a/src/resources/beta/vector-stores/vector-stores.ts b/src/resources/beta/vector-stores/vector-stores.ts index cbff2d562..8438b79da 100644 --- a/src/resources/beta/vector-stores/vector-stores.ts +++ b/src/resources/beta/vector-stores/vector-stores.ts @@ -3,6 +3,7 @@ import { APIResource } from '../../../resource'; import { isRequestOptions } from '../../../core'; import * as Core from '../../../core'; +import * as Shared from '../../shared'; import * as FileBatchesAPI from './file-batches'; import { FileBatchCreateParams, @@ -187,11 +188,13 @@ export interface VectorStore { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata: unknown | null; + metadata: Shared.Metadata | null; /** * The name of the vector store. @@ -300,11 +303,13 @@ export interface VectorStoreCreateParams { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: unknown | null; + metadata?: Shared.Metadata | null; /** * The name of the vector store. @@ -338,11 +343,13 @@ export interface VectorStoreUpdateParams { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful - * for storing additional information about the object in a structured format. Keys - * can be a maximum of 64 characters long and values can be a maxium of 512 - * characters long. + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: unknown | null; + metadata?: Shared.Metadata | null; /** * The name of the vector store. diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 2230b19bd..d4a18929c 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -46,6 +46,8 @@ export class Chat extends APIResource { } export type ChatModel = + | 'o3-mini' + | 'o3-mini-2025-01-31' | 'o1' | 'o1-2024-12-17' | 'o1-preview' diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 683eb5ed4..d2de11458 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -1012,10 +1012,14 @@ export interface ChatCompletionCreateParamsBase { max_tokens?: number | null; /** - * Developer-defined tags and values used for filtering completions in the - * [dashboard](https://platform.openai.com/chat-completions). + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. */ - metadata?: Record | null; + metadata?: Shared.Metadata | null; /** * Output types that you would like the model to generate for this request. Most @@ -1109,9 +1113,9 @@ export interface ChatCompletionCreateParamsBase { * utilize scale tier credits until they are exhausted. * - If set to 'auto', and the Project is not Scale tier enabled, the request will * be processed using the default service tier with a lower uptime SLA and no - * latency guarentee. + * latency guarantee. * - If set to 'default', the request will be processed using the default service - * tier with a lower uptime SLA and no latency guarentee. + * tier with a lower uptime SLA and no latency guarantee. * - When not set, the default behavior is 'auto'. */ service_tier?: 'auto' | 'default' | null; diff --git a/src/resources/shared.ts b/src/resources/shared.ts index f44fda8a7..3bb11582f 100644 --- a/src/resources/shared.ts +++ b/src/resources/shared.ts @@ -55,6 +55,16 @@ export interface FunctionDefinition { */ export type FunctionParameters = Record; +/** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. + */ +export type Metadata = Record; + export interface ResponseFormatJSONObject { /** * The type of response format being defined: `json_object` diff --git a/src/resources/uploads/uploads.ts b/src/resources/uploads/uploads.ts index 8491d0fe2..bfe752cd7 100644 --- a/src/resources/uploads/uploads.ts +++ b/src/resources/uploads/uploads.ts @@ -113,7 +113,7 @@ export interface Upload { status: 'pending' | 'completed' | 'cancelled' | 'expired'; /** - * The ready File object after the Upload is completed. + * The `File` object represents a document that has been uploaded to OpenAI. */ file?: FilesAPI.FileObject | null; } diff --git a/tests/api-resources/beta/assistants.test.ts b/tests/api-resources/beta/assistants.test.ts index a64465c77..88a10ba8f 100644 --- a/tests/api-resources/beta/assistants.test.ts +++ b/tests/api-resources/beta/assistants.test.ts @@ -25,7 +25,7 @@ describe('resource assistants', () => { model: 'gpt-4o', description: 'description', instructions: 'instructions', - metadata: {}, + metadata: { foo: 'string' }, name: 'name', response_format: 'auto', temperature: 1, @@ -33,7 +33,9 @@ describe('resource assistants', () => { code_interpreter: { file_ids: ['string'] }, file_search: { vector_store_ids: ['string'], - vector_stores: [{ chunking_strategy: { type: 'auto' }, file_ids: ['string'], metadata: {} }], + vector_stores: [ + { chunking_strategy: { type: 'auto' }, file_ids: ['string'], metadata: { foo: 'string' } }, + ], }, }, tools: [{ type: 'code_interpreter' }], diff --git a/tests/api-resources/beta/threads/messages.test.ts b/tests/api-resources/beta/threads/messages.test.ts index c1f5f7b6e..e125edd84 100644 --- a/tests/api-resources/beta/threads/messages.test.ts +++ b/tests/api-resources/beta/threads/messages.test.ts @@ -28,7 +28,7 @@ describe('resource messages', () => { content: 'string', role: 'user', attachments: [{ file_id: 'file_id', tools: [{ type: 'code_interpreter' }] }], - metadata: {}, + metadata: { foo: 'string' }, }); }); diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts index 4fd8261ac..9b728403f 100644 --- a/tests/api-resources/beta/threads/runs/runs.test.ts +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -30,13 +30,13 @@ describe('resource runs', () => { content: 'string', role: 'user', attachments: [{ file_id: 'file_id', tools: [{ type: 'code_interpreter' }] }], - metadata: {}, + metadata: { foo: 'string' }, }, ], instructions: 'instructions', max_completion_tokens: 256, max_prompt_tokens: 256, - metadata: {}, + metadata: { foo: 'string' }, model: 'gpt-4o', parallel_tool_calls: true, response_format: 'auto', diff --git a/tests/api-resources/beta/threads/threads.test.ts b/tests/api-resources/beta/threads/threads.test.ts index aba266316..f26d6ec44 100644 --- a/tests/api-resources/beta/threads/threads.test.ts +++ b/tests/api-resources/beta/threads/threads.test.ts @@ -37,15 +37,17 @@ describe('resource threads', () => { content: 'string', role: 'user', attachments: [{ file_id: 'file_id', tools: [{ type: 'code_interpreter' }] }], - metadata: {}, + metadata: { foo: 'string' }, }, ], - metadata: {}, + metadata: { foo: 'string' }, tool_resources: { code_interpreter: { file_ids: ['string'] }, file_search: { vector_store_ids: ['string'], - vector_stores: [{ chunking_strategy: { type: 'auto' }, file_ids: ['string'], metadata: {} }], + vector_stores: [ + { chunking_strategy: { type: 'auto' }, file_ids: ['string'], metadata: { foo: 'string' } }, + ], }, }, }, @@ -118,7 +120,7 @@ describe('resource threads', () => { instructions: 'instructions', max_completion_tokens: 256, max_prompt_tokens: 256, - metadata: {}, + metadata: { foo: 'string' }, model: 'gpt-4o', parallel_tool_calls: true, response_format: 'auto', @@ -130,15 +132,17 @@ describe('resource threads', () => { content: 'string', role: 'user', attachments: [{ file_id: 'file_id', tools: [{ type: 'code_interpreter' }] }], - metadata: {}, + metadata: { foo: 'string' }, }, ], - metadata: {}, + metadata: { foo: 'string' }, tool_resources: { code_interpreter: { file_ids: ['string'] }, file_search: { vector_store_ids: ['string'], - vector_stores: [{ chunking_strategy: { type: 'auto' }, file_ids: ['string'], metadata: {} }], + vector_stores: [ + { chunking_strategy: { type: 'auto' }, file_ids: ['string'], metadata: { foo: 'string' } }, + ], }, }, }, From 145ff671d3a8111c81497f6bc9cd0cb5053a6cb0 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 31 Jan 2025 19:09:24 +0000 Subject: [PATCH 688/725] release: 4.82.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 18 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index de35570a8..b2ee58e08 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.81.0" + ".": "4.82.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b24c0869d..7565cb01a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 4.82.0 (2025-01-31) + +Full Changelog: [v4.81.0...v4.82.0](https://github.com/openai/openai-node/compare/v4.81.0...v4.82.0) + +### Features + +* **api:** add o3-mini ([#1295](https://github.com/openai/openai-node/issues/1295)) ([378e2f7](https://github.com/openai/openai-node/commit/378e2f7af62c570adb4c7644a4d49576b698de41)) + + +### Bug Fixes + +* **examples/realtime:** remove duplicate `session.update` call ([#1293](https://github.com/openai/openai-node/issues/1293)) ([ad800b4](https://github.com/openai/openai-node/commit/ad800b4f9410c6838994c24a3386ea708717f72b)) +* **types:** correct metadata type + other fixes ([378e2f7](https://github.com/openai/openai-node/commit/378e2f7af62c570adb4c7644a4d49576b698de41)) + ## 4.81.0 (2025-01-29) Full Changelog: [v4.80.1...v4.81.0](https://github.com/openai/openai-node/compare/v4.80.1...v4.81.0) diff --git a/jsr.json b/jsr.json index 18d000862..7569332ce 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.81.0", + "version": "4.82.0", "exports": { ".": "./index.ts", "./helpers/zod": "./helpers/zod.ts", diff --git a/package.json b/package.json index 07faa0019..42e00822d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.81.0", + "version": "4.82.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 3b4d4eee5..07241a8cf 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.81.0'; // x-release-please-version +export const VERSION = '4.82.0'; // x-release-please-version From 7cf2a8571fb3c40ce3e67759af314e37bc3467e0 Mon Sep 17 00:00:00 2001 From: Deyaaeldeen Almahallawi Date: Mon, 3 Feb 2025 11:22:06 -0600 Subject: [PATCH 689/725] fix(azure/audio): use model param for deployments (#1297) --- src/core.ts | 2 ++ src/index.ts | 2 +- src/resources/audio/transcriptions.ts | 5 ++++- src/resources/audio/translations.ts | 5 ++++- tests/lib/azure.test.ts | 10 ++++++---- 5 files changed, 17 insertions(+), 7 deletions(-) diff --git a/src/core.ts b/src/core.ts index 3d2d029a5..23d19b5bd 100644 --- a/src/core.ts +++ b/src/core.ts @@ -814,6 +814,7 @@ export type RequestOptions< signal?: AbortSignal | undefined | null; idempotencyKey?: string; + __metadata?: Record; __binaryRequest?: boolean | undefined; __binaryResponse?: boolean | undefined; __streamClass?: typeof Stream; @@ -836,6 +837,7 @@ const requestOptionsKeys: KeysEnum = { signal: true, idempotencyKey: true, + __metadata: true, __binaryRequest: true, __binaryResponse: true, __streamClass: true, diff --git a/src/index.ts b/src/index.ts index f860579d3..f4e940af8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -590,7 +590,7 @@ export class AzureOpenAI extends OpenAI { if (!Core.isObj(options.body)) { throw new Error('Expected request body to be an object'); } - const model = this.deploymentName || options.body['model']; + const model = this.deploymentName || options.body['model'] || options.__metadata?.['model']; if (model !== undefined && !this.baseURL.includes('/deployments')) { options.path = `/deployments/${model}${options.path}`; } diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index 6d0a07e1e..d0e671243 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -25,7 +25,10 @@ export class Transcriptions extends APIResource { body: TranscriptionCreateParams, options?: Core.RequestOptions, ): Core.APIPromise { - return this._client.post('/audio/transcriptions', Core.multipartFormRequestOptions({ body, ...options })); + return this._client.post( + '/audio/transcriptions', + Core.multipartFormRequestOptions({ body, ...options, __metadata: { model: body.model } }), + ); } } diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index c6bf7c870..0621deecb 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -26,7 +26,10 @@ export class Translations extends APIResource { body: TranslationCreateParams, options?: Core.RequestOptions, ): Core.APIPromise { - return this._client.post('/audio/translations', Core.multipartFormRequestOptions({ body, ...options })); + return this._client.post( + '/audio/translations', + Core.multipartFormRequestOptions({ body, ...options, __metadata: { model: body.model } }), + ); } } diff --git a/tests/lib/azure.test.ts b/tests/lib/azure.test.ts index 0e3c2c5a3..430efbe57 100644 --- a/tests/lib/azure.test.ts +++ b/tests/lib/azure.test.ts @@ -495,21 +495,23 @@ describe('azure request building', () => { ); }); - test('Audio translations is not handled', async () => { + test('handles audio translations', async () => { const { url } = (await client.audio.translations.create({ model: deployment, file: { url: 'https://example.com/', blob: () => 0 as any }, })) as any; - expect(url).toStrictEqual(`https://example.com/openai/audio/translations?api-version=${apiVersion}`); + expect(url).toStrictEqual( + `https://example.com/openai/deployments/${deployment}/audio/translations?api-version=${apiVersion}`, + ); }); - test('Audio transcriptions is not handled', async () => { + test('handles audio transcriptions', async () => { const { url } = (await client.audio.transcriptions.create({ model: deployment, file: { url: 'https://example.com/', blob: () => 0 as any }, })) as any; expect(url).toStrictEqual( - `https://example.com/openai/audio/transcriptions?api-version=${apiVersion}`, + `https://example.com/openai/deployments/${deployment}/audio/transcriptions?api-version=${apiVersion}`, ); }); From 29a86274c3965826e132373fccbea430efb3bacd Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 4 Feb 2025 18:39:40 +0000 Subject: [PATCH 690/725] feat(client): send `X-Stainless-Timeout` header (#1299) --- src/core.ts | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/src/core.ts b/src/core.ts index 23d19b5bd..6578c0781 100644 --- a/src/core.ts +++ b/src/core.ts @@ -315,6 +315,7 @@ export abstract class APIClient { options: FinalRequestOptions, { retryCount = 0 }: { retryCount?: number } = {}, ): { req: RequestInit; url: string; timeout: number } { + options = { ...options }; const { method, path, query, headers: headers = {} } = options; const body = @@ -327,9 +328,9 @@ export abstract class APIClient { const url = this.buildURL(path!, query); if ('timeout' in options) validatePositiveInteger('timeout', options.timeout); - const timeout = options.timeout ?? this.timeout; + options.timeout = options.timeout ?? this.timeout; const httpAgent = options.httpAgent ?? this.httpAgent ?? getDefaultAgent(url); - const minAgentTimeout = timeout + 1000; + const minAgentTimeout = options.timeout + 1000; if ( typeof (httpAgent as any)?.options?.timeout === 'number' && minAgentTimeout > ((httpAgent as any).options.timeout ?? 0) @@ -358,7 +359,7 @@ export abstract class APIClient { signal: options.signal ?? null, }; - return { req, url, timeout }; + return { req, url, timeout: options.timeout }; } private buildHeaders({ @@ -386,15 +387,22 @@ export abstract class APIClient { delete reqHeaders['content-type']; } - // Don't set the retry count header if it was already set or removed through default headers or by the - // caller. We check `defaultHeaders` and `headers`, which can contain nulls, instead of `reqHeaders` to - // account for the removal case. + // Don't set theses headers if they were already set or removed through default headers or by the caller. + // We check `defaultHeaders` and `headers`, which can contain nulls, instead of `reqHeaders` to account + // for the removal case. if ( getHeader(defaultHeaders, 'x-stainless-retry-count') === undefined && getHeader(headers, 'x-stainless-retry-count') === undefined ) { reqHeaders['x-stainless-retry-count'] = String(retryCount); } + if ( + getHeader(defaultHeaders, 'x-stainless-timeout') === undefined && + getHeader(headers, 'x-stainless-timeout') === undefined && + options.timeout + ) { + reqHeaders['x-stainless-timeout'] = String(options.timeout); + } this.validateHeaders(reqHeaders, headers); From bcf459fb5594d3d7198d95c5569cac4aa6bd483e Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 5 Feb 2025 11:26:36 +0000 Subject: [PATCH 691/725] fix(api/types): correct audio duration & role types (#1300) --- .stats.yml | 2 +- api.md | 1 + src/lib/ChatCompletionStream.ts | 3 +- src/resources/audio/transcriptions.ts | 2 +- src/resources/audio/translations.ts | 2 +- src/resources/beta/realtime/realtime.ts | 79 +++++++++++++++++++++++-- src/resources/chat/completions.ts | 4 +- 7 files changed, 83 insertions(+), 10 deletions(-) diff --git a/.stats.yml b/.stats.yml index e49b5c56e..df7877dfd 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 69 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-6204952a29973265b9c0d66fc67ffaf53c6a90ae4d75cdacf9d147676f5274c9.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-fc5dbc19505b0035f9e7f88868619f4fb519b048bde011f6154f3132d4be71fb.yml diff --git a/api.md b/api.md index 516188b20..01854a8e0 100644 --- a/api.md +++ b/api.md @@ -229,6 +229,7 @@ Types: - ConversationItemInputAudioTranscriptionFailedEvent - ConversationItemTruncateEvent - ConversationItemTruncatedEvent +- ConversationItemWithReference - ErrorEvent - InputAudioBufferAppendEvent - InputAudioBufferClearEvent diff --git a/src/lib/ChatCompletionStream.ts b/src/lib/ChatCompletionStream.ts index a88f8a23b..6c846f70b 100644 --- a/src/lib/ChatCompletionStream.ts +++ b/src/lib/ChatCompletionStream.ts @@ -12,6 +12,7 @@ import { type ChatCompletionCreateParams, type ChatCompletionCreateParamsStreaming, type ChatCompletionCreateParamsBase, + type ChatCompletionRole, } from '../resources/chat/completions'; import { AbstractChatCompletionRunner, @@ -797,7 +798,7 @@ export namespace ChatCompletionSnapshot { /** * The role of the author of this message. */ - role?: 'system' | 'user' | 'assistant' | 'function' | 'tool'; + role?: ChatCompletionRole; } export namespace Message { diff --git a/src/resources/audio/transcriptions.ts b/src/resources/audio/transcriptions.ts index d0e671243..6fbe96b58 100644 --- a/src/resources/audio/transcriptions.ts +++ b/src/resources/audio/transcriptions.ts @@ -106,7 +106,7 @@ export interface TranscriptionVerbose { /** * The duration of the input audio. */ - duration: string; + duration: number; /** * The language of the input audio. diff --git a/src/resources/audio/translations.ts b/src/resources/audio/translations.ts index 0621deecb..dac519ede 100644 --- a/src/resources/audio/translations.ts +++ b/src/resources/audio/translations.ts @@ -41,7 +41,7 @@ export interface TranslationVerbose { /** * The duration of the input audio. */ - duration: string; + duration: number; /** * The language of the output translation (always `english`). diff --git a/src/resources/beta/realtime/realtime.ts b/src/resources/beta/realtime/realtime.ts index c666221e1..e46dcdaaf 100644 --- a/src/resources/beta/realtime/realtime.ts +++ b/src/resources/beta/realtime/realtime.ts @@ -439,6 +439,76 @@ export interface ConversationItemTruncatedEvent { type: 'conversation.item.truncated'; } +/** + * The item to add to the conversation. + */ +export interface ConversationItemWithReference { + /** + * For an item of type (`message` | `function_call` | `function_call_output`) this + * field allows the client to assign the unique ID of the item. It is not required + * because the server will generate one if not provided. + * + * For an item of type `item_reference`, this field is required and is a reference + * to any item that has previously existed in the conversation. + */ + id?: string; + + /** + * The arguments of the function call (for `function_call` items). + */ + arguments?: string; + + /** + * The ID of the function call (for `function_call` and `function_call_output` + * items). If passed on a `function_call_output` item, the server will check that a + * `function_call` item with the same ID exists in the conversation history. + */ + call_id?: string; + + /** + * The content of the message, applicable for `message` items. + * + * - Message items of role `system` support only `input_text` content + * - Message items of role `user` support `input_text` and `input_audio` content + * - Message items of role `assistant` support `text` content. + */ + content?: Array; + + /** + * The name of the function being called (for `function_call` items). + */ + name?: string; + + /** + * Identifier for the API object being returned - always `realtime.item`. + */ + object?: 'realtime.item'; + + /** + * The output of the function call (for `function_call_output` items). + */ + output?: string; + + /** + * The role of the message sender (`user`, `assistant`, `system`), only applicable + * for `message` items. + */ + role?: 'user' | 'assistant' | 'system'; + + /** + * The status of the item (`completed`, `incomplete`). These have no effect on the + * conversation, but are accepted for consistency with the + * `conversation.item.created` event. + */ + status?: 'completed' | 'incomplete'; + + /** + * The type of the item (`message`, `function_call`, `function_call_output`, + * `item_reference`). + */ + type?: 'message' | 'function_call' | 'function_call_output' | 'item_reference'; +} + /** * Returned when an error occurs, which could be a client problem or a server * problem. Most errors are recoverable and the session will stay open, we @@ -1336,11 +1406,12 @@ export namespace ResponseCreateEvent { conversation?: (string & {}) | 'auto' | 'none'; /** - * Input items to include in the prompt for the model. Creates a new context for - * this response, without including the default conversation. Can include - * references to items from the default conversation. + * Input items to include in the prompt for the model. Using this field creates a + * new context for this Response instead of using the default conversation. An + * empty array `[]` will clear the context for this Response. Note that this can + * include references to items from the default conversation. */ - input?: Array; + input?: Array; /** * The default system instructions (i.e. system message) prepended to model calls. diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index d2de11458..55b008cf0 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -371,7 +371,7 @@ export namespace ChatCompletionChunk { /** * The role of the author of this message. */ - role?: 'system' | 'user' | 'assistant' | 'tool'; + role?: 'developer' | 'system' | 'user' | 'assistant' | 'tool'; tool_calls?: Array; } @@ -756,7 +756,7 @@ export type ChatCompletionReasoningEffort = 'low' | 'medium' | 'high'; /** * The role of the author of a message */ -export type ChatCompletionRole = 'system' | 'user' | 'assistant' | 'tool' | 'function'; +export type ChatCompletionRole = 'developer' | 'system' | 'user' | 'assistant' | 'tool' | 'function'; /** * Options for streaming response. Only set this when you set `stream: true`. From 41a7ce315f3ee4495ae259d9bbed77701dc52430 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 5 Feb 2025 12:26:03 +0000 Subject: [PATCH 692/725] release: 4.83.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 18 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b2ee58e08..6eb0f130e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.82.0" + ".": "4.83.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7565cb01a..f61def5e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 4.83.0 (2025-02-05) + +Full Changelog: [v4.82.0...v4.83.0](https://github.com/openai/openai-node/compare/v4.82.0...v4.83.0) + +### Features + +* **client:** send `X-Stainless-Timeout` header ([#1299](https://github.com/openai/openai-node/issues/1299)) ([ddfc686](https://github.com/openai/openai-node/commit/ddfc686f43a3420c3adf8dec2e82b4d10a121eb8)) + + +### Bug Fixes + +* **api/types:** correct audio duration & role types ([#1300](https://github.com/openai/openai-node/issues/1300)) ([a955ac2](https://github.com/openai/openai-node/commit/a955ac2bf5bee663d530d0c82b0005bf3ce6fc47)) +* **azure/audio:** use model param for deployments ([#1297](https://github.com/openai/openai-node/issues/1297)) ([85de382](https://github.com/openai/openai-node/commit/85de382db17cbe5f112650e79d0fc1cc841efbb2)) + ## 4.82.0 (2025-01-31) Full Changelog: [v4.81.0...v4.82.0](https://github.com/openai/openai-node/compare/v4.81.0...v4.82.0) diff --git a/jsr.json b/jsr.json index 7569332ce..6fa05e624 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.82.0", + "version": "4.83.0", "exports": { ".": "./index.ts", "./helpers/zod": "./helpers/zod.ts", diff --git a/package.json b/package.json index 42e00822d..bd507e9f8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.82.0", + "version": "4.83.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 07241a8cf..13c764d7d 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.82.0'; // x-release-please-version +export const VERSION = '4.83.0'; // x-release-please-version From 2a43456b2e085f79ff3ebebdfa55c65f68dfbe56 Mon Sep 17 00:00:00 2001 From: Minh Anh Date: Wed, 5 Feb 2025 11:29:45 -0800 Subject: [PATCH 693/725] Fix Azure OpenAI client import --- src/beta/realtime/websocket.ts | 2 +- src/beta/realtime/ws.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/beta/realtime/websocket.ts b/src/beta/realtime/websocket.ts index 349cf5760..e8143fdbf 100644 --- a/src/beta/realtime/websocket.ts +++ b/src/beta/realtime/websocket.ts @@ -95,7 +95,7 @@ export class OpenAIRealtimeWebSocket extends OpenAIRealtimeEmitter { } static async azure( - client: AzureOpenAI, + client: Pick, options: { deploymentName?: string; dangerouslyAllowBrowser?: boolean } = {}, ): Promise { const token = await client._getAzureADToken(); diff --git a/src/beta/realtime/ws.ts b/src/beta/realtime/ws.ts index 51339089c..3f51dfc4b 100644 --- a/src/beta/realtime/ws.ts +++ b/src/beta/realtime/ws.ts @@ -52,7 +52,7 @@ export class OpenAIRealtimeWS extends OpenAIRealtimeEmitter { } static async azure( - client: AzureOpenAI, + client: Pick, options: { deploymentName?: string; options?: WS.ClientOptions | undefined } = {}, ): Promise { const deploymentName = options.deploymentName ?? client.deploymentName; @@ -82,7 +82,7 @@ export class OpenAIRealtimeWS extends OpenAIRealtimeEmitter { } } -async function getAzureHeaders(client: AzureOpenAI) { +async function getAzureHeaders(client: Pick) { if (client.apiKey !== '') { return { 'api-key': client.apiKey }; } else { From 27d354a363d3c8dc5056bd28f8f1073757046f48 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 5 Feb 2025 21:25:41 +0000 Subject: [PATCH 694/725] fix(api): add missing reasoning effort + model enums (#1302) --- .stats.yml | 2 +- src/resources/beta/assistants.ts | 51 ++++++++++++++++++- src/resources/beta/threads/runs/runs.ts | 10 ++++ src/resources/chat/completions.ts | 8 +-- tests/api-resources/beta/assistants.test.ts | 1 + .../beta/threads/runs/runs.test.ts | 1 + 6 files changed, 67 insertions(+), 6 deletions(-) diff --git a/.stats.yml b/.stats.yml index df7877dfd..8a5d2c06b 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 69 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-fc5dbc19505b0035f9e7f88868619f4fb519b048bde011f6154f3132d4be71fb.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-7c699d4503077d06a4a44f52c0c1f902d19a87c766b8be75b97c8dfd484ad4aa.yml diff --git a/src/resources/beta/assistants.ts b/src/resources/beta/assistants.ts index 69a5db520..0cc63d691 100644 --- a/src/resources/beta/assistants.ts +++ b/src/resources/beta/assistants.ts @@ -1133,6 +1133,16 @@ export interface AssistantCreateParams { */ name?: string | null; + /** + * **o1 and o3-mini models only** + * + * Constrains effort on reasoning for + * [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently + * supported values are `low`, `medium`, and `high`. Reducing reasoning effort can + * result in faster responses and fewer tokens used on reasoning in a response. + */ + reasoning_effort?: 'low' | 'medium' | 'high' | null; + /** * Specifies the format that the model must output. Compatible with * [GPT-4o](https://platform.openai.com/docs/models#gpt-4o), @@ -1288,13 +1298,52 @@ export interface AssistantUpdateParams { * [Model overview](https://platform.openai.com/docs/models) for descriptions of * them. */ - model?: string; + model?: + | (string & {}) + | 'o3-mini' + | 'o3-mini-2025-01-31' + | 'o1' + | 'o1-2024-12-17' + | 'gpt-4o' + | 'gpt-4o-2024-11-20' + | 'gpt-4o-2024-08-06' + | 'gpt-4o-2024-05-13' + | 'gpt-4o-mini' + | 'gpt-4o-mini-2024-07-18' + | 'gpt-4-turbo' + | 'gpt-4-turbo-2024-04-09' + | 'gpt-4-0125-preview' + | 'gpt-4-turbo-preview' + | 'gpt-4-1106-preview' + | 'gpt-4-vision-preview' + | 'gpt-4' + | 'gpt-4-0314' + | 'gpt-4-0613' + | 'gpt-4-32k' + | 'gpt-4-32k-0314' + | 'gpt-4-32k-0613' + | 'gpt-3.5-turbo' + | 'gpt-3.5-turbo-16k' + | 'gpt-3.5-turbo-0613' + | 'gpt-3.5-turbo-1106' + | 'gpt-3.5-turbo-0125' + | 'gpt-3.5-turbo-16k-0613'; /** * The name of the assistant. The maximum length is 256 characters. */ name?: string | null; + /** + * **o1 and o3-mini models only** + * + * Constrains effort on reasoning for + * [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently + * supported values are `low`, `medium`, and `high`. Reducing reasoning effort can + * result in faster responses and fewer tokens used on reasoning in a response. + */ + reasoning_effort?: 'low' | 'medium' | 'high' | null; + /** * Specifies the format that the model must output. Compatible with * [GPT-4o](https://platform.openai.com/docs/models#gpt-4o), diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 84ba7b63c..8ab94cc99 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -731,6 +731,16 @@ export interface RunCreateParamsBase { */ parallel_tool_calls?: boolean; + /** + * Body param: **o1 and o3-mini models only** + * + * Constrains effort on reasoning for + * [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently + * supported values are `low`, `medium`, and `high`. Reducing reasoning effort can + * result in faster responses and fewer tokens used on reasoning in a response. + */ + reasoning_effort?: 'low' | 'medium' | 'high' | null; + /** * Body param: Specifies the format that the model must output. Compatible with * [GPT-4o](https://platform.openai.com/docs/models#gpt-4o), diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts index 55b008cf0..2586845c3 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions.ts @@ -744,14 +744,14 @@ export interface ChatCompletionPredictionContent { } /** - * **o1 models only** + * **o1 and o3-mini models only** * * Constrains effort on reasoning for * [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently * supported values are `low`, `medium`, and `high`. Reducing reasoning effort can * result in faster responses and fewer tokens used on reasoning in a response. */ -export type ChatCompletionReasoningEffort = 'low' | 'medium' | 'high'; +export type ChatCompletionReasoningEffort = 'low' | 'medium' | 'high' | null; /** * The role of the author of a message @@ -1063,14 +1063,14 @@ export interface ChatCompletionCreateParamsBase { presence_penalty?: number | null; /** - * **o1 models only** + * **o1 and o3-mini models only** * * Constrains effort on reasoning for * [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently * supported values are `low`, `medium`, and `high`. Reducing reasoning effort can * result in faster responses and fewer tokens used on reasoning in a response. */ - reasoning_effort?: ChatCompletionReasoningEffort; + reasoning_effort?: ChatCompletionReasoningEffort | null; /** * An object specifying the format that the model must output. diff --git a/tests/api-resources/beta/assistants.test.ts b/tests/api-resources/beta/assistants.test.ts index 88a10ba8f..16bc9f942 100644 --- a/tests/api-resources/beta/assistants.test.ts +++ b/tests/api-resources/beta/assistants.test.ts @@ -27,6 +27,7 @@ describe('resource assistants', () => { instructions: 'instructions', metadata: { foo: 'string' }, name: 'name', + reasoning_effort: 'low', response_format: 'auto', temperature: 1, tool_resources: { diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts index 9b728403f..13ae89a00 100644 --- a/tests/api-resources/beta/threads/runs/runs.test.ts +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -39,6 +39,7 @@ describe('resource runs', () => { metadata: { foo: 'string' }, model: 'gpt-4o', parallel_tool_calls: true, + reasoning_effort: 'low', response_format: 'auto', stream: false, temperature: 1, From f44641236e9f90758c535cc948d5734ae20fd5a5 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Wed, 5 Feb 2025 20:33:57 +0000 Subject: [PATCH 695/725] docs(readme): cleanup into multiple files --- README.md | 421 +++++++++++----------------------------------------- azure.md | 49 ++++++ helpers.md | 122 ++++++++++----- realtime.md | 87 +++++++++++ 4 files changed, 313 insertions(+), 366 deletions(-) create mode 100644 azure.md create mode 100644 realtime.md diff --git a/README.md b/README.md index a1f4bf760..166e35e22 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ import OpenAI from 'jsr:@openai/openai'; The full API of this library can be found in [api.md file](api.md) along with many [code examples](https://github.com/openai/openai-node/tree/master/examples). The code below shows how to get started using the chat completions API. -```js +```ts import OpenAI from 'openai'; const client = new OpenAI({ @@ -80,189 +80,11 @@ async function main() { main(); ``` -If you need to cancel a stream, you can `break` from the loop -or call `stream.controller.abort()`. - -## Realtime API beta - -The Realtime API enables you to build low-latency, multi-modal conversational experiences. It currently supports text and audio as both input and output, as well as [function calling](https://platform.openai.com/docs/guides/function-calling) through a `WebSocket` connection. - -The Realtime API works through a combination of client-sent events and server-sent events. Clients can send events to do things like update session configuration or send text and audio inputs. Server events confirm when audio responses have completed, or when a text response from the model has been received. A full event reference can be found [here](https://platform.openai.com/docs/api-reference/realtime-client-events) and a guide can be found [here](https://platform.openai.com/docs/guides/realtime). - -This SDK supports accessing the Realtime API through the [WebSocket API](https://developer.mozilla.org/en-US/docs/Web/API/WebSocket) or with [ws](https://github.com/websockets/ws). - -Basic text based example with `ws`: - -```ts -// requires `yarn add ws @types/ws` -import { OpenAIRealtimeWS } from 'openai/beta/realtime/ws'; - -const rt = new OpenAIRealtimeWS({ model: 'gpt-4o-realtime-preview-2024-12-17' }); - -// access the underlying `ws.WebSocket` instance -rt.socket.on('open', () => { - console.log('Connection opened!'); - rt.send({ - type: 'session.update', - session: { - modalities: ['text'], - model: 'gpt-4o-realtime-preview', - }, - }); - - rt.send({ - type: 'conversation.item.create', - item: { - type: 'message', - role: 'user', - content: [{ type: 'input_text', text: 'Say a couple paragraphs!' }], - }, - }); - - rt.send({ type: 'response.create' }); -}); - -rt.on('error', (err) => { - // in a real world scenario this should be logged somewhere as you - // likely want to continue procesing events regardless of any errors - throw err; -}); - -rt.on('session.created', (event) => { - console.log('session created!', event.session); - console.log(); -}); - -rt.on('response.text.delta', (event) => process.stdout.write(event.delta)); -rt.on('response.text.done', () => console.log()); - -rt.on('response.done', () => rt.close()); - -rt.socket.on('close', () => console.log('\nConnection closed!')); -``` - -To use the web API `WebSocket` implementation, replace `OpenAIRealtimeWS` with `OpenAIRealtimeWebSocket` and adjust any `rt.socket` access: - -```ts -import { OpenAIRealtimeWebSocket } from 'openai/beta/realtime/websocket'; - -const rt = new OpenAIRealtimeWebSocket({ model: 'gpt-4o-realtime-preview-2024-12-17' }); -// ... -rt.socket.addEventListener('open', () => { - // ... -}); -``` - -A full example can be found [here](https://github.com/openai/openai-node/blob/master/examples/realtime/websocket.ts). - -### Realtime error handling - -When an error is encountered, either on the client side or returned from the server through the [`error` event](https://platform.openai.com/docs/guides/realtime-model-capabilities#error-handling), the `error` event listener will be fired. However, if you haven't registered an `error` event listener then an `unhandled Promise rejection` error will be thrown. - -It is **highly recommended** that you register an `error` event listener and handle errors approriately as typically the underlying connection is still usable. - -```ts -const rt = new OpenAIRealtimeWS({ model: 'gpt-4o-realtime-preview-2024-12-17' }); -rt.on('error', (err) => { - // in a real world scenario this should be logged somewhere as you - // likely want to continue procesing events regardless of any errors - throw err; -}); -``` - -### Request & Response types - -This library includes TypeScript definitions for all request params and response fields. You may import and use them like so: - - -```ts -import OpenAI from 'openai'; - -const client = new OpenAI({ - apiKey: process.env['OPENAI_API_KEY'], // This is the default and can be omitted -}); - -async function main() { - const params: OpenAI.Chat.ChatCompletionCreateParams = { - messages: [{ role: 'user', content: 'Say this is a test' }], - model: 'gpt-4o', - }; - const chatCompletion: OpenAI.Chat.ChatCompletion = await client.chat.completions.create(params); -} - -main(); -``` - -Documentation for each method, request param, and response field are available in docstrings and will appear on hover in most modern editors. - -> [!IMPORTANT] -> Previous versions of this SDK used a `Configuration` class. See the [v3 to v4 migration guide](https://github.com/openai/openai-node/discussions/217). - -### Polling Helpers - -When interacting with the API some actions such as starting a Run and adding files to vector stores are asynchronous and take time to complete. The SDK includes -helper functions which will poll the status until it reaches a terminal state and then return the resulting object. -If an API method results in an action which could benefit from polling there will be a corresponding version of the -method ending in 'AndPoll'. - -For instance to create a Run and poll until it reaches a terminal state you can run: - -```ts -const run = await openai.beta.threads.runs.createAndPoll(thread.id, { - assistant_id: assistantId, -}); -``` - -More information on the lifecycle of a Run can be found in the [Run Lifecycle Documentation](https://platform.openai.com/docs/assistants/deep-dive/run-lifecycle) - -### Bulk Upload Helpers - -When creating and interacting with vector stores, you can use the polling helpers to monitor the status of operations. -For convenience, we also provide a bulk upload helper to allow you to simultaneously upload several files at once. - -```ts -const fileList = [ - createReadStream('/home/data/example.pdf'), - ... -]; - -const batch = await openai.vectorStores.fileBatches.uploadAndPoll(vectorStore.id, {files: fileList}); -``` - -### Streaming Helpers - -The SDK also includes helpers to process streams and handle the incoming events. - -```ts -const run = openai.beta.threads.runs - .stream(thread.id, { - assistant_id: assistant.id, - }) - .on('textCreated', (text) => process.stdout.write('\nassistant > ')) - .on('textDelta', (textDelta, snapshot) => process.stdout.write(textDelta.value)) - .on('toolCallCreated', (toolCall) => process.stdout.write(`\nassistant > ${toolCall.type}\n\n`)) - .on('toolCallDelta', (toolCallDelta, snapshot) => { - if (toolCallDelta.type === 'code_interpreter') { - if (toolCallDelta.code_interpreter.input) { - process.stdout.write(toolCallDelta.code_interpreter.input); - } - if (toolCallDelta.code_interpreter.outputs) { - process.stdout.write('\noutput >\n'); - toolCallDelta.code_interpreter.outputs.forEach((output) => { - if (output.type === 'logs') { - process.stdout.write(`\n${output.logs}\n`); - } - }); - } - } - }); -``` - -More information on streaming helpers can be found in the dedicated documentation: [helpers.md](helpers.md) +If you need to cancel a stream, you can `break` from the loop or call `stream.controller.abort()`. -### Streaming responses +### Chat Completion streaming helpers -This library provides several conveniences for streaming chat completions, for example: +This library also provides several conveniences for streaming chat completions, for example: ```ts import OpenAI from 'openai'; @@ -292,98 +114,32 @@ async function main() { main(); ``` -Streaming with `openai.beta.chat.completions.stream({…})` exposes -[various helpers for your convenience](helpers.md#chat-events) including event handlers and promises. - -Alternatively, you can use `openai.chat.completions.create({ stream: true, … })` -which only returns an async iterable of the chunks in the stream and thus uses less memory -(it does not build up a final chat completion object for you). - -If you need to cancel a stream, you can `break` from a `for await` loop or call `stream.abort()`. - -### Automated function calls +See [helpers.md](helpers.md#chat-events) for more details. -We provide the `openai.beta.chat.completions.runTools({…})` -convenience helper for using function tool calls with the `/chat/completions` endpoint -which automatically call the JavaScript functions you provide -and sends their results back to the `/chat/completions` endpoint, -looping as long as the model requests tool calls. - -If you pass a `parse` function, it will automatically parse the `arguments` for you -and returns any parsing errors to the model to attempt auto-recovery. -Otherwise, the args will be passed to the function you provide as a string. +### Request & Response types -If you pass `tool_choice: {function: {name: …}}` instead of `auto`, -it returns immediately after calling that function (and only loops to auto-recover parsing errors). +This library includes TypeScript definitions for all request params and response fields. You may import and use them like so: + ```ts import OpenAI from 'openai'; -const client = new OpenAI(); +const client = new OpenAI({ + apiKey: process.env['OPENAI_API_KEY'], // This is the default and can be omitted +}); async function main() { - const runner = client.beta.chat.completions - .runTools({ - model: 'gpt-4o', - messages: [{ role: 'user', content: 'How is the weather this week?' }], - tools: [ - { - type: 'function', - function: { - function: getCurrentLocation, - parameters: { type: 'object', properties: {} }, - }, - }, - { - type: 'function', - function: { - function: getWeather, - parse: JSON.parse, // or use a validation library like zod for typesafe parsing. - parameters: { - type: 'object', - properties: { - location: { type: 'string' }, - }, - }, - }, - }, - ], - }) - .on('message', (message) => console.log(message)); - - const finalContent = await runner.finalContent(); - console.log(); - console.log('Final content:', finalContent); -} - -async function getCurrentLocation() { - return 'Boston'; // Simulate lookup -} - -async function getWeather(args: { location: string }) { - const { location } = args; - // … do lookup … - return { temperature, precipitation }; + const params: OpenAI.Chat.ChatCompletionCreateParams = { + messages: [{ role: 'user', content: 'Say this is a test' }], + model: 'gpt-4o', + }; + const chatCompletion: OpenAI.Chat.ChatCompletion = await client.chat.completions.create(params); } main(); - -// {role: "user", content: "How's the weather this week?"} -// {role: "assistant", tool_calls: [{type: "function", function: {name: "getCurrentLocation", arguments: "{}"}, id: "123"} -// {role: "tool", name: "getCurrentLocation", content: "Boston", tool_call_id: "123"} -// {role: "assistant", tool_calls: [{type: "function", function: {name: "getWeather", arguments: '{"location": "Boston"}'}, id: "1234"}]} -// {role: "tool", name: "getWeather", content: '{"temperature": "50degF", "preciptation": "high"}', tool_call_id: "1234"} -// {role: "assistant", content: "It's looking cold and rainy - you might want to wear a jacket!"} -// -// Final content: "It's looking cold and rainy - you might want to wear a jacket!" ``` -Like with `.stream()`, we provide a variety of [helpers and events](helpers.md#chat-events). - -Note that `runFunctions` was previously available as well, but has been deprecated in favor of `runTools`. - -Read more about various examples such as with integrating with [zod](helpers.md#integrate-with-zod), -[next.js](helpers.md#integrate-with-nextjs), and [proxying a stream to the browser](helpers.md#proxy-streaming-to-a-browser). +Documentation for each method, request param, and response field are available in docstrings and will appear on hover in most modern editors. ## File uploads @@ -434,6 +190,7 @@ async function main() { .create({ model: 'gpt-4o', training_file: 'file-abc123' }) .catch(async (err) => { if (err instanceof OpenAI.APIError) { + console.log(err.request_id); console.log(err.status); // 400 console.log(err.name); // BadRequestError console.log(err.headers); // {server: 'nginx', ...} @@ -459,76 +216,6 @@ Error codes are as followed: | >=500 | `InternalServerError` | | N/A | `APIConnectionError` | -## Request IDs - -> For more information on debugging requests, see [these docs](https://platform.openai.com/docs/api-reference/debugging-requests) - -All object responses in the SDK provide a `_request_id` property which is added from the `x-request-id` response header so that you can quickly log failing requests and report them back to OpenAI. - -```ts -const completion = await client.chat.completions.create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-4o' }); -console.log(completion._request_id) // req_123 -``` - -You can also access the Request ID using the `.withResponse()` method: - -```ts -const { data: stream, request_id } = await openai.chat.completions - .create({ - model: 'gpt-4', - messages: [{ role: 'user', content: 'Say this is a test' }], - stream: true, - }) - .withResponse(); -``` - -## Microsoft Azure OpenAI - -To use this library with [Azure OpenAI](https://learn.microsoft.com/azure/ai-services/openai/overview), use the `AzureOpenAI` -class instead of the `OpenAI` class. - -> [!IMPORTANT] -> The Azure API shape slightly differs from the core API shape which means that the static types for responses / params -> won't always be correct. - -```ts -import { AzureOpenAI } from 'openai'; -import { getBearerTokenProvider, DefaultAzureCredential } from '@azure/identity'; - -const credential = new DefaultAzureCredential(); -const scope = 'https://cognitiveservices.azure.com/.default'; -const azureADTokenProvider = getBearerTokenProvider(credential, scope); - -const openai = new AzureOpenAI({ azureADTokenProvider, apiVersion: "" }); - -const result = await openai.chat.completions.create({ - model: 'gpt-4o', - messages: [{ role: 'user', content: 'Say hello!' }], -}); - -console.log(result.choices[0]!.message?.content); -``` - -### Realtime API -This SDK provides real-time streaming capabilities for Azure OpenAI through the `OpenAIRealtimeWS` and `OpenAIRealtimeWebSocket` clients described previously. - -To utilize the real-time features, begin by creating a fully configured `AzureOpenAI` client and passing it into either `OpenAIRealtimeWS.azure` or `OpenAIRealtimeWebSocket.azure`. For example: - -```ts -const cred = new DefaultAzureCredential(); -const scope = 'https://cognitiveservices.azure.com/.default'; -const deploymentName = 'gpt-4o-realtime-preview-1001'; -const azureADTokenProvider = getBearerTokenProvider(cred, scope); -const client = new AzureOpenAI({ - azureADTokenProvider, - apiVersion: '2024-10-01-preview', - deployment: deploymentName, -}); -const rt = await OpenAIRealtimeWS.azure(client); -``` - -Once the instance has been created, you can then begin sending requests and receiving streaming responses in real time. - ### Retries Certain errors will be automatically retried 2 times by default, with a short exponential backoff. @@ -571,6 +258,29 @@ On timeout, an `APIConnectionTimeoutError` is thrown. Note that requests which time out will be [retried twice by default](#retries). +## Request IDs + +> For more information on debugging requests, see [these docs](https://platform.openai.com/docs/api-reference/debugging-requests) + +All object responses in the SDK provide a `_request_id` property which is added from the `x-request-id` response header so that you can quickly log failing requests and report them back to OpenAI. + +```ts +const completion = await client.chat.completions.create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-4o' }); +console.log(completion._request_id) // req_123 +``` + +You can also access the Request ID using the `.withResponse()` method: + +```ts +const { data: stream, request_id } = await openai.chat.completions + .create({ + model: 'gpt-4', + messages: [{ role: 'user', content: 'Say this is a test' }], + stream: true, + }) + .withResponse(); +``` + ## Auto-pagination List methods in the OpenAI API are paginated. @@ -602,6 +312,55 @@ while (page.hasNextPage()) { } ``` +## Realtime API Beta + +The Realtime API enables you to build low-latency, multi-modal conversational experiences. It currently supports text and audio as both input and output, as well as [function calling](https://platform.openai.com/docs/guides/function-calling) through a `WebSocket` connection. + +```ts +import { OpenAIRealtimeWebSocket } from 'openai/beta/realtime/websocket'; + +const rt = new OpenAIRealtimeWebSocket({ model: 'gpt-4o-realtime-preview-2024-12-17' }); + +rt.on('response.text.delta', (event) => process.stdout.write(event.delta)); +``` + +For more information see [realtime.md](realtime.md). + +## Microsoft Azure OpenAI + +To use this library with [Azure OpenAI](https://learn.microsoft.com/azure/ai-services/openai/overview), use the `AzureOpenAI` +class instead of the `OpenAI` class. + +> [!IMPORTANT] +> The Azure API shape slightly differs from the core API shape which means that the static types for responses / params +> won't always be correct. + +```ts +import { AzureOpenAI } from 'openai'; +import { getBearerTokenProvider, DefaultAzureCredential } from '@azure/identity'; + +const credential = new DefaultAzureCredential(); +const scope = 'https://cognitiveservices.azure.com/.default'; +const azureADTokenProvider = getBearerTokenProvider(credential, scope); + +const openai = new AzureOpenAI({ azureADTokenProvider, apiVersion: "" }); + +const result = await openai.chat.completions.create({ + model: 'gpt-4o', + messages: [{ role: 'user', content: 'Say hello!' }], +}); + +console.log(result.choices[0]!.message?.content); +``` + +For more information on support for the Azure API, see [azure.md](azure.md). + +## Automated function calls + +We provide the `openai.beta.chat.completions.runTools({…})` convenience helper for using function tool calls with the `/chat/completions` endpoint which automatically call the JavaScript functions you provide and sends their results back to the `/chat/completions` endpoint, looping as long as the model requests tool calls. + +For more information see [helpers.md](helpers.md#automated-function-calls). + ## Advanced Usage ### Accessing raw Response data (e.g., headers) diff --git a/azure.md b/azure.md new file mode 100644 index 000000000..df06c2985 --- /dev/null +++ b/azure.md @@ -0,0 +1,49 @@ +# Microsoft Azure OpenAI + +To use this library with [Azure OpenAI](https://learn.microsoft.com/azure/ai-services/openai/overview), use the `AzureOpenAI` +class instead of the `OpenAI` class. + +> [!IMPORTANT] +> The Azure API shape slightly differs from the core API shape which means that the static types for responses / params +> won't always be correct. + +```ts +import { AzureOpenAI } from 'openai'; +import { getBearerTokenProvider, DefaultAzureCredential } from '@azure/identity'; + +const credential = new DefaultAzureCredential(); +const scope = 'https://cognitiveservices.azure.com/.default'; +const azureADTokenProvider = getBearerTokenProvider(credential, scope); + +const openai = new AzureOpenAI({ azureADTokenProvider, apiVersion: "" }); + +const result = await openai.chat.completions.create({ + model: 'gpt-4o', + messages: [{ role: 'user', content: 'Say hello!' }], +}); + +console.log(result.choices[0]!.message?.content); +``` + +For more information on support for the Azure API, see [azure.md](azure.md). + +## Realtime API + +This SDK provides real-time streaming capabilities for Azure OpenAI through the `OpenAIRealtimeWS` and `OpenAIRealtimeWebSocket` clients described previously. + +To utilize the real-time features, begin by creating a fully configured `AzureOpenAI` client and passing it into either `OpenAIRealtimeWS.azure` or `OpenAIRealtimeWebSocket.azure`. For example: + +```ts +const cred = new DefaultAzureCredential(); +const scope = 'https://cognitiveservices.azure.com/.default'; +const deploymentName = 'gpt-4o-realtime-preview-1001'; +const azureADTokenProvider = getBearerTokenProvider(cred, scope); +const client = new AzureOpenAI({ + azureADTokenProvider, + apiVersion: '2024-10-01-preview', + deployment: deploymentName, +}); +const rt = await OpenAIRealtimeWS.azure(client); +``` + +Once the instance has been created, you can then begin sending requests and receiving streaming responses in real time. diff --git a/helpers.md b/helpers.md index 16bc1f277..41b352e5e 100644 --- a/helpers.md +++ b/helpers.md @@ -142,9 +142,7 @@ More information can be found in the documentation: [Assistant Streaming](https: ```ts const run = openai.beta.threads.runs - .stream(thread.id, { - assistant_id: assistant.id, - }) + .stream(thread.id, { assistant_id: assistant.id }) .on('textCreated', (text) => process.stdout.write('\nassistant > ')) .on('textDelta', (textDelta, snapshot) => process.stdout.write(textDelta.value)) .on('toolCallCreated', (toolCall) => process.stdout.write(`\nassistant > ${toolCall.type}\n\n`)) @@ -304,47 +302,87 @@ If you need to cancel a stream, you can `break` from a `for await` loop or call See an example of streaming helpers in action in [`examples/stream.ts`](examples/stream.ts). -### Automated Function Calls +### Automated function calls -```ts -openai.chat.completions.runTools({ stream: false, … }, options?): ChatCompletionRunner -openai.chat.completions.runTools({ stream: true, … }, options?): ChatCompletionStreamingRunner -``` +We provide the `openai.beta.chat.completions.runTools({…})` +convenience helper for using function tool calls with the `/chat/completions` endpoint +which automatically call the JavaScript functions you provide +and sends their results back to the `/chat/completions` endpoint, +looping as long as the model requests tool calls. -`openai.chat.completions.runTools()` returns a Runner -for automating function calls with chat completions. -The runner automatically calls the JavaScript functions you provide and sends their results back -to the API, looping as long as the model requests function calls. +If you pass a `parse` function, it will automatically parse the `arguments` for you +and returns any parsing errors to the model to attempt auto-recovery. +Otherwise, the args will be passed to the function you provide as a string. -If you pass a `parse` function, it will automatically parse the `arguments` for you and returns any parsing -errors to the model to attempt auto-recovery. Otherwise, the args will be passed to the function you provide -as a string. +If you pass `tool_choice: {function: {name: …}}` instead of `auto`, +it returns immediately after calling that function (and only loops to auto-recover parsing errors). ```ts -client.chat.completions.runTools({ - model: 'gpt-3.5-turbo', - messages: [{ role: 'user', content: 'How is the weather this week?' }], - tools: [ - { - type: 'function', - function: { - function: getWeather as (args: { location: string; time: Date }) => any, - parse: parseFunction as (args: strings) => { location: string; time: Date }, - parameters: { - type: 'object', - properties: { - location: { type: 'string' }, - time: { type: 'string', format: 'date-time' }, +import OpenAI from 'openai'; + +const client = new OpenAI(); + +async function main() { + const runner = client.beta.chat.completions + .runTools({ + model: 'gpt-4o', + messages: [{ role: 'user', content: 'How is the weather this week?' }], + tools: [ + { + type: 'function', + function: { + function: getCurrentLocation, + parameters: { type: 'object', properties: {} }, }, }, - }, - }, - ], -}); + { + type: 'function', + function: { + function: getWeather, + parse: JSON.parse, // or use a validation library like zod for typesafe parsing. + parameters: { + type: 'object', + properties: { + location: { type: 'string' }, + }, + }, + }, + }, + ], + }) + .on('message', (message) => console.log(message)); + + const finalContent = await runner.finalContent(); + console.log(); + console.log('Final content:', finalContent); +} + +async function getCurrentLocation() { + return 'Boston'; // Simulate lookup +} + +async function getWeather(args: { location: string }) { + const { location } = args; + // … do lookup … + return { temperature, precipitation }; +} + +main(); + +// {role: "user", content: "How's the weather this week?"} +// {role: "assistant", tool_calls: [{type: "function", function: {name: "getCurrentLocation", arguments: "{}"}, id: "123"} +// {role: "tool", name: "getCurrentLocation", content: "Boston", tool_call_id: "123"} +// {role: "assistant", tool_calls: [{type: "function", function: {name: "getWeather", arguments: '{"location": "Boston"}'}, id: "1234"}]} +// {role: "tool", name: "getWeather", content: '{"temperature": "50degF", "preciptation": "high"}', tool_call_id: "1234"} +// {role: "assistant", content: "It's looking cold and rainy - you might want to wear a jacket!"} +// +// Final content: "It's looking cold and rainy - you might want to wear a jacket!" ``` -If you pass `function_call: {name: …}` instead of `auto`, it returns immediately after calling that -function (and only loops to auto-recover parsing errors). +Like with `.stream()`, we provide a variety of [helpers and events](helpers.md#chat-events). + +Read more about various examples such as with integrating with [zod](#integrate-with-zod), +[next.js](#integrate-with-nextjs), and [proxying a stream to the browser](#proxy-streaming-to-a-browser). By default, we run the loop up to 10 chat completions from the API. You can change this behavior by adjusting `maxChatCompletions` in the request options object. Note that `max_tokens` is the limit per @@ -662,3 +700,17 @@ client.beta.vectorStores.files.createAndPoll((...) client.beta.vectorStores.fileBatches.createAndPoll((...) client.beta.vectorStores.fileBatches.uploadAndPoll((...) ``` + +# Bulk Upload Helpers + +When creating and interacting with vector stores, you can use the polling helpers to monitor the status of operations. +For convenience, we also provide a bulk upload helper to allow you to simultaneously upload several files at once. + +```ts +const fileList = [ + createReadStream('/home/data/example.pdf'), + ... +]; + +const batch = await openai.vectorStores.fileBatches.uploadAndPoll(vectorStore.id, {files: fileList}); +``` diff --git a/realtime.md b/realtime.md new file mode 100644 index 000000000..2fcd17e9e --- /dev/null +++ b/realtime.md @@ -0,0 +1,87 @@ +## Realtime API beta + +The Realtime API enables you to build low-latency, multi-modal conversational experiences. It currently supports text and audio as both input and output, as well as [function calling](https://platform.openai.com/docs/guides/function-calling) through a `WebSocket` connection. + +The Realtime API works through a combination of client-sent events and server-sent events. Clients can send events to do things like update session configuration or send text and audio inputs. Server events confirm when audio responses have completed, or when a text response from the model has been received. A full event reference can be found [here](https://platform.openai.com/docs/api-reference/realtime-client-events) and a guide can be found [here](https://platform.openai.com/docs/guides/realtime). + +This SDK supports accessing the Realtime API through the [WebSocket API](https://developer.mozilla.org/en-US/docs/Web/API/WebSocket) or with [ws](https://github.com/websockets/ws). + +Basic text based example with `ws`: + +```ts +// requires `yarn add ws @types/ws` +import { OpenAIRealtimeWS } from 'openai/beta/realtime/ws'; + +const rt = new OpenAIRealtimeWS({ model: 'gpt-4o-realtime-preview-2024-12-17' }); + +// access the underlying `ws.WebSocket` instance +rt.socket.on('open', () => { + console.log('Connection opened!'); + rt.send({ + type: 'session.update', + session: { + modalities: ['text'], + model: 'gpt-4o-realtime-preview', + }, + }); + + rt.send({ + type: 'conversation.item.create', + item: { + type: 'message', + role: 'user', + content: [{ type: 'input_text', text: 'Say a couple paragraphs!' }], + }, + }); + + rt.send({ type: 'response.create' }); +}); + +rt.on('error', (err) => { + // in a real world scenario this should be logged somewhere as you + // likely want to continue procesing events regardless of any errors + throw err; +}); + +rt.on('session.created', (event) => { + console.log('session created!', event.session); + console.log(); +}); + +rt.on('response.text.delta', (event) => process.stdout.write(event.delta)); +rt.on('response.text.done', () => console.log()); + +rt.on('response.done', () => rt.close()); + +rt.socket.on('close', () => console.log('\nConnection closed!')); +``` + +To use the web API `WebSocket` implementation, replace `OpenAIRealtimeWS` with `OpenAIRealtimeWebSocket` and adjust any `rt.socket` access: + +```ts +import { OpenAIRealtimeWebSocket } from 'openai/beta/realtime/websocket'; + +const rt = new OpenAIRealtimeWebSocket({ model: 'gpt-4o-realtime-preview-2024-12-17' }); +// ... +rt.socket.addEventListener('open', () => { + // ... +}); +``` + +A full example can be found [here](https://github.com/openai/openai-node/blob/master/examples/realtime/websocket.ts). + +### Realtime error handling + +When an error is encountered, either on the client side or returned from the server through the [`error` event](https://platform.openai.com/docs/guides/realtime-model-capabilities#error-handling), the `error` event listener will be fired. However, if you haven't registered an `error` event listener then an `unhandled Promise rejection` error will be thrown. + +It is **highly recommended** that you register an `error` event listener and handle errors approriately as typically the underlying connection is still usable. + +```ts +const rt = new OpenAIRealtimeWS({ model: 'gpt-4o-realtime-preview-2024-12-17' }); +rt.on('error', (err) => { + // in a real world scenario this should be logged somewhere as you + // likely want to continue procesing events regardless of any errors + throw err; +}); +``` + From 23c194b4b927e50d0f5a78272e9ac50b181c53eb Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 6 Feb 2025 15:16:31 +0000 Subject: [PATCH 696/725] feat(pagination): avoid fetching when has_more: false (#1305) --- .stats.yml | 2 +- src/pagination.ts | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index 8a5d2c06b..d59a86d22 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 69 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-7c699d4503077d06a4a44f52c0c1f902d19a87c766b8be75b97c8dfd484ad4aa.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-dfb00c627f58e5180af7a9b29ed2f2aa0764a3b9daa6a32a1cc45bc8e48dfe15.yml diff --git a/src/pagination.ts b/src/pagination.ts index 63644e333..ad90a3a74 100644 --- a/src/pagination.ts +++ b/src/pagination.ts @@ -43,6 +43,8 @@ export class Page extends AbstractPage implements PageResponse export interface CursorPageResponse { data: Array; + + has_more: boolean; } export interface CursorPageParams { @@ -57,6 +59,8 @@ export class CursorPage { data: Array; + has_more: boolean; + constructor( client: APIClient, response: Response, @@ -66,12 +70,21 @@ export class CursorPage super(client, response, body, options); this.data = body.data || []; + this.has_more = body.has_more || false; } getPaginatedItems(): Item[] { return this.data ?? []; } + override hasNextPage() { + if (this.has_more === false) { + return false; + } + + return super.hasNextPage(); + } + // @deprecated Please use `nextPageInfo()` instead nextPageParams(): Partial | null { const info = this.nextPageInfo(); From 2d071dfd9e507e3a37177d1f96a5438ba9ac1268 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Mon, 10 Feb 2025 12:12:44 +0000 Subject: [PATCH 697/725] chore(internal): remove segfault-handler dependency --- ecosystem-tests/cli.ts | 4 ---- package.json | 1 - yarn.lock | 25 ------------------------- 3 files changed, 30 deletions(-) diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index 00120e5f9..4803b47c2 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -4,10 +4,6 @@ import yargs from 'yargs'; import assert from 'assert'; import path from 'path'; -// @ts-ignore -var SegfaultHandler = require('segfault-handler'); -SegfaultHandler.registerHandler('crash.log'); - const TAR_NAME = 'openai.tgz'; const PACK_FOLDER = '.pack'; const PACK_FILE = `${PACK_FOLDER}/${TAR_NAME}`; diff --git a/package.json b/package.json index bd507e9f8..df2dcd2bc 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,6 @@ "jest": "^29.4.0", "prettier": "^3.0.0", "prettier-2": "npm:prettier@^2", - "segfault-handler": "^1.3.0", "ts-jest": "^29.1.0", "ts-node": "^10.5.0", "tsc-multi": "^1.1.0", diff --git a/yarn.lock b/yarn.lock index 0a4307f70..ad5fb7630 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1176,13 +1176,6 @@ big-integer@^1.6.44: resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.52.tgz#60a887f3047614a8e1bffe5d7173490a97dc8c85" integrity sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg== -bindings@^1.2.1: - version "1.5.0" - resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" - integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== - dependencies: - file-uri-to-path "1.0.0" - bplist-parser@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.2.0.tgz#43a9d183e5bf9d545200ceac3e712f79ebbe8d0e" @@ -1760,11 +1753,6 @@ file-entry-cache@^6.0.1: dependencies: flat-cache "^3.0.4" -file-uri-to-path@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" - integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== - fill-range@^7.1.1: version "7.1.1" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" @@ -2706,11 +2694,6 @@ ms@^2.0.0, ms@^2.1.3: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== -nan@^2.14.0: - version "2.22.0" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.22.0.tgz#31bc433fc33213c97bad36404bb68063de604de3" - integrity sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw== - natural-compare@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" @@ -3061,14 +3044,6 @@ safe-buffer@~5.2.0: resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== -segfault-handler@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/segfault-handler/-/segfault-handler-1.3.0.tgz#054bc847832fa14f218ba6a79e42877501c8870e" - integrity sha512-p7kVHo+4uoYkr0jmIiTBthwV5L2qmWtben/KDunDZ834mbos+tY+iO0//HpAJpOFSQZZ+wxKWuRo4DxV02B7Lg== - dependencies: - bindings "^1.2.1" - nan "^2.14.0" - semver@^6.3.0, semver@^6.3.1: version "6.3.1" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" From 85ff876a75147490e60c70c2f36e964513f1086a Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 10 Feb 2025 20:06:34 +0000 Subject: [PATCH 698/725] fix: correctly decode multi-byte characters over multiple chunks (#1316) --- src/internal/decoders/line.ts | 107 ++++++++++++++++++++++------------ src/streaming.ts | 6 +- tests/streaming.test.ts | 53 ++++++++++++++++- 3 files changed, 126 insertions(+), 40 deletions(-) diff --git a/src/internal/decoders/line.ts b/src/internal/decoders/line.ts index 34e41d1dc..66f62c057 100644 --- a/src/internal/decoders/line.ts +++ b/src/internal/decoders/line.ts @@ -13,52 +13,58 @@ export class LineDecoder { static NEWLINE_CHARS = new Set(['\n', '\r']); static NEWLINE_REGEXP = /\r\n|[\n\r]/g; - buffer: string[]; - trailingCR: boolean; + buffer: Uint8Array; + #carriageReturnIndex: number | null; textDecoder: any; // TextDecoder found in browsers; not typed to avoid pulling in either "dom" or "node" types. constructor() { - this.buffer = []; - this.trailingCR = false; + this.buffer = new Uint8Array(); + this.#carriageReturnIndex = null; } decode(chunk: Bytes): string[] { - let text = this.decodeText(chunk); - - if (this.trailingCR) { - text = '\r' + text; - this.trailingCR = false; - } - if (text.endsWith('\r')) { - this.trailingCR = true; - text = text.slice(0, -1); - } - - if (!text) { + if (chunk == null) { return []; } - const trailingNewline = LineDecoder.NEWLINE_CHARS.has(text[text.length - 1] || ''); - let lines = text.split(LineDecoder.NEWLINE_REGEXP); + const binaryChunk = + chunk instanceof ArrayBuffer ? new Uint8Array(chunk) + : typeof chunk === 'string' ? new TextEncoder().encode(chunk) + : chunk; + + let newData = new Uint8Array(this.buffer.length + binaryChunk.length); + newData.set(this.buffer); + newData.set(binaryChunk, this.buffer.length); + this.buffer = newData; + + const lines: string[] = []; + let patternIndex; + while ((patternIndex = findNewlineIndex(this.buffer, this.#carriageReturnIndex)) != null) { + if (patternIndex.carriage && this.#carriageReturnIndex == null) { + // skip until we either get a corresponding `\n`, a new `\r` or nothing + this.#carriageReturnIndex = patternIndex.index; + continue; + } - // if there is a trailing new line then the last entry will be an empty - // string which we don't care about - if (trailingNewline) { - lines.pop(); - } + // we got double \r or \rtext\n + if ( + this.#carriageReturnIndex != null && + (patternIndex.index !== this.#carriageReturnIndex + 1 || patternIndex.carriage) + ) { + lines.push(this.decodeText(this.buffer.slice(0, this.#carriageReturnIndex - 1))); + this.buffer = this.buffer.slice(this.#carriageReturnIndex); + this.#carriageReturnIndex = null; + continue; + } - if (lines.length === 1 && !trailingNewline) { - this.buffer.push(lines[0]!); - return []; - } + const endIndex = + this.#carriageReturnIndex !== null ? patternIndex.preceding - 1 : patternIndex.preceding; - if (this.buffer.length > 0) { - lines = [this.buffer.join('') + lines[0], ...lines.slice(1)]; - this.buffer = []; - } + const line = this.decodeText(this.buffer.slice(0, endIndex)); + lines.push(line); - if (!trailingNewline) { - this.buffer = [lines.pop() || '']; + this.buffer = this.buffer.slice(patternIndex.index); + this.#carriageReturnIndex = null; } return lines; @@ -102,13 +108,38 @@ export class LineDecoder { } flush(): string[] { - if (!this.buffer.length && !this.trailingCR) { + if (!this.buffer.length) { return []; } + return this.decode('\n'); + } +} - const lines = [this.buffer.join('')]; - this.buffer = []; - this.trailingCR = false; - return lines; +/** + * This function searches the buffer for the end patterns, (\r or \n) + * and returns an object with the index preceding the matched newline and the + * index after the newline char. `null` is returned if no new line is found. + * + * ```ts + * findNewLineIndex('abc\ndef') -> { preceding: 2, index: 3 } + * ``` + */ +function findNewlineIndex( + buffer: Uint8Array, + startIndex: number | null, +): { preceding: number; index: number; carriage: boolean } | null { + const newline = 0x0a; // \n + const carriage = 0x0d; // \r + + for (let i = startIndex ?? 0; i < buffer.length; i++) { + if (buffer[i] === newline) { + return { preceding: i, index: i + 1, carriage: false }; + } + + if (buffer[i] === carriage) { + return { preceding: i, index: i + 1, carriage: true }; + } } + + return null; } diff --git a/src/streaming.ts b/src/streaming.ts index 6a57a50a0..1d1ae344b 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -346,13 +346,17 @@ class SSEDecoder { } /** This is an internal helper function that's just used for testing */ -export function _decodeChunks(chunks: string[]): string[] { +export function _decodeChunks(chunks: string[], { flush }: { flush: boolean } = { flush: false }): string[] { const decoder = new LineDecoder(); const lines: string[] = []; for (const chunk of chunks) { lines.push(...decoder.decode(chunk)); } + if (flush) { + lines.push(...decoder.flush()); + } + return lines; } diff --git a/tests/streaming.test.ts b/tests/streaming.test.ts index 6fe9a5781..8e5d0ca31 100644 --- a/tests/streaming.test.ts +++ b/tests/streaming.test.ts @@ -2,6 +2,7 @@ import { Response } from 'node-fetch'; import { PassThrough } from 'stream'; import assert from 'assert'; import { _iterSSEMessages, _decodeChunks as decodeChunks } from 'openai/streaming'; +import { LineDecoder } from 'openai/internal/decoders/line'; describe('line decoder', () => { test('basic', () => { @@ -10,8 +11,8 @@ describe('line decoder', () => { }); test('basic with \\r', () => { - // baz is not included because the line hasn't ended yet expect(decodeChunks(['foo', ' bar\r\nbaz'])).toEqual(['foo bar']); + expect(decodeChunks(['foo', ' bar\r\nbaz'], { flush: true })).toEqual(['foo bar', 'baz']); }); test('trailing new lines', () => { @@ -29,6 +30,56 @@ describe('line decoder', () => { test('escaped new lines with \\r', () => { expect(decodeChunks(['foo', ' bar\\r\\nbaz\n'])).toEqual(['foo bar\\r\\nbaz']); }); + + test('\\r & \\n split across multiple chunks', () => { + expect(decodeChunks(['foo\r', '\n', 'bar'], { flush: true })).toEqual(['foo', 'bar']); + }); + + test('single \\r', () => { + expect(decodeChunks(['foo\r', 'bar'], { flush: true })).toEqual(['foo', 'bar']); + }); + + test('double \\r', () => { + expect(decodeChunks(['foo\r', 'bar\r'], { flush: true })).toEqual(['foo', 'bar']); + expect(decodeChunks(['foo\r', '\r', 'bar'], { flush: true })).toEqual(['foo', '', 'bar']); + // implementation detail that we don't yield the single \r line until a new \r or \n is encountered + expect(decodeChunks(['foo\r', '\r', 'bar'], { flush: false })).toEqual(['foo']); + }); + + test('double \\r then \\r\\n', () => { + expect(decodeChunks(['foo\r', '\r', '\r', '\n', 'bar', '\n'])).toEqual(['foo', '', '', 'bar']); + expect(decodeChunks(['foo\n', '\n', '\n', 'bar', '\n'])).toEqual(['foo', '', '', 'bar']); + }); + + test('double newline', () => { + expect(decodeChunks(['foo\n\nbar'], { flush: true })).toEqual(['foo', '', 'bar']); + expect(decodeChunks(['foo', '\n', '\nbar'], { flush: true })).toEqual(['foo', '', 'bar']); + expect(decodeChunks(['foo\n', '\n', 'bar'], { flush: true })).toEqual(['foo', '', 'bar']); + expect(decodeChunks(['foo', '\n', '\n', 'bar'], { flush: true })).toEqual(['foo', '', 'bar']); + }); + + test('multi-byte characters across chunks', () => { + const decoder = new LineDecoder(); + + // bytes taken from the string 'известни' and arbitrarily split + // so that some multi-byte characters span multiple chunks + expect(decoder.decode(new Uint8Array([0xd0]))).toHaveLength(0); + expect(decoder.decode(new Uint8Array([0xb8, 0xd0, 0xb7, 0xd0]))).toHaveLength(0); + expect( + decoder.decode(new Uint8Array([0xb2, 0xd0, 0xb5, 0xd1, 0x81, 0xd1, 0x82, 0xd0, 0xbd, 0xd0, 0xb8])), + ).toHaveLength(0); + + const decoded = decoder.decode(new Uint8Array([0xa])); + expect(decoded).toEqual(['известни']); + }); + + test('flushing trailing newlines', () => { + expect(decodeChunks(['foo\n', '\nbar'], { flush: true })).toEqual(['foo', '', 'bar']); + }); + + test('flushing empty buffer', () => { + expect(decodeChunks([], { flush: true })).toEqual([]); + }); }); describe('streaming decoding', () => { From 5e5a38a3f5bd45e74eb624fe85664294247bf580 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Tue, 11 Feb 2025 11:19:35 +0000 Subject: [PATCH 699/725] fix(assistants): handle `thread.run.incomplete` event --- src/lib/AssistantStream.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/lib/AssistantStream.ts b/src/lib/AssistantStream.ts index caf68e7dd..9b6cc20c5 100644 --- a/src/lib/AssistantStream.ts +++ b/src/lib/AssistantStream.ts @@ -370,6 +370,7 @@ export class AssistantStream case 'thread.run.in_progress': case 'thread.run.requires_action': case 'thread.run.completed': + case 'thread.run.incomplete': case 'thread.run.failed': case 'thread.run.cancelling': case 'thread.run.cancelled': @@ -400,6 +401,8 @@ export class AssistantStream throw new Error( 'Encountered an error event in event processing - errors should be processed earlier', ); + default: + assertNever(event); } } @@ -772,3 +775,5 @@ export class AssistantStream return await this._createToolAssistantStream(runs, threadId, runId, params, options); } } + +function assertNever(_x: never) {} From 0ea723831b52ed22cadfc997ddb45a758e2247db Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 12 Feb 2025 05:07:11 +0000 Subject: [PATCH 700/725] release: 4.84.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 25 +++++++++++++++++++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 29 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6eb0f130e..063dfb8fd 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.83.0" + ".": "4.84.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f61def5e4..d18ddf815 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # Changelog +## 4.84.0 (2025-02-12) + +Full Changelog: [v4.83.0...v4.84.0](https://github.com/openai/openai-node/compare/v4.83.0...v4.84.0) + +### Features + +* **pagination:** avoid fetching when has_more: false ([#1305](https://github.com/openai/openai-node/issues/1305)) ([b6944c6](https://github.com/openai/openai-node/commit/b6944c634b53c9084f2ccf777c2491e89b2cc7af)) + + +### Bug Fixes + +* **api:** add missing reasoning effort + model enums ([#1302](https://github.com/openai/openai-node/issues/1302)) ([14c55c3](https://github.com/openai/openai-node/commit/14c55c312e31f1ed46d02f39a99049f785504a53)) +* **assistants:** handle `thread.run.incomplete` event ([7032cc4](https://github.com/openai/openai-node/commit/7032cc40b8aa0a58459cf114bceb8028a8517400)) +* correctly decode multi-byte characters over multiple chunks ([#1316](https://github.com/openai/openai-node/issues/1316)) ([dd776c4](https://github.com/openai/openai-node/commit/dd776c4867401f527f699bd4b9e567890256e849)) + + +### Chores + +* **internal:** remove segfault-handler dependency ([3521ca3](https://github.com/openai/openai-node/commit/3521ca34e7f5bd51542084e27c084a5d7cc5448b)) + + +### Documentation + +* **readme:** cleanup into multiple files ([da94424](https://github.com/openai/openai-node/commit/da944242e542e9e5e51cb11853c621fc6825ac02)) + ## 4.83.0 (2025-02-05) Full Changelog: [v4.82.0...v4.83.0](https://github.com/openai/openai-node/compare/v4.82.0...v4.83.0) diff --git a/jsr.json b/jsr.json index 6fa05e624..47c478074 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.83.0", + "version": "4.84.0", "exports": { ".": "./index.ts", "./helpers/zod": "./helpers/zod.ts", diff --git a/package.json b/package.json index df2dcd2bc..96e9b048f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.83.0", + "version": "4.84.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 13c764d7d..b67556e78 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.83.0'; // x-release-please-version +export const VERSION = '4.84.0'; // x-release-please-version From 0e1981a128b4db5db657f22a54b711420ebbdb32 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Wed, 12 Feb 2025 16:01:16 +0000 Subject: [PATCH 701/725] fix(realtime): correct websocket type var constraint (#1321) --- src/beta/realtime/websocket.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/beta/realtime/websocket.ts b/src/beta/realtime/websocket.ts index e8143fdbf..b10a2519d 100644 --- a/src/beta/realtime/websocket.ts +++ b/src/beta/realtime/websocket.ts @@ -11,7 +11,7 @@ interface MessageEvent { type _WebSocket = typeof globalThis extends ( { - WebSocket: infer ws; + WebSocket: infer ws extends abstract new (...args: any) => any; } ) ? // @ts-ignore From c91ebef762fd55a553e15d7e4a1908243ea3e007 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 13 Feb 2025 05:07:08 +0000 Subject: [PATCH 702/725] release: 4.84.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 063dfb8fd..023314f41 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.84.0" + ".": "4.84.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d18ddf815..444430307 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.84.1 (2025-02-13) + +Full Changelog: [v4.84.0...v4.84.1](https://github.com/openai/openai-node/compare/v4.84.0...v4.84.1) + +### Bug Fixes + +* **realtime:** correct websocket type var constraint ([#1321](https://github.com/openai/openai-node/issues/1321)) ([afb17ea](https://github.com/openai/openai-node/commit/afb17ea6497b860ebbe5d8e68e4a97681dd307ff)) + ## 4.84.0 (2025-02-12) Full Changelog: [v4.83.0...v4.84.0](https://github.com/openai/openai-node/compare/v4.83.0...v4.84.0) diff --git a/jsr.json b/jsr.json index 47c478074..3148d6fca 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.84.0", + "version": "4.84.1", "exports": { ".": "./index.ts", "./helpers/zod": "./helpers/zod.ts", diff --git a/package.json b/package.json index 96e9b048f..4686e3a97 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.84.0", + "version": "4.84.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index b67556e78..767424b0e 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.84.0'; // x-release-please-version +export const VERSION = '4.84.1'; // x-release-please-version From 6e9444c6c77a93ff4ce06bd5b27a9c236ba6f307 Mon Sep 17 00:00:00 2001 From: Jamon Holmgren Date: Thu, 13 Feb 2025 05:27:35 -0800 Subject: [PATCH 703/725] fix(realtime): call .toString() on WebSocket url (#1324) The [WebSocket spec at WHATWG](https://websockets.spec.whatwg.org/#ref-for-dom-websocket-websocket%E2%91%A0) indicates that the `url` parameter of the WebSocket constructor is a string. Some implementations (like Chrome) will accept a URL object, but calling .toString() should work for all cases. Fixes #1323. --- src/beta/realtime/websocket.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/beta/realtime/websocket.ts b/src/beta/realtime/websocket.ts index b10a2519d..e8900e809 100644 --- a/src/beta/realtime/websocket.ts +++ b/src/beta/realtime/websocket.ts @@ -53,7 +53,7 @@ export class OpenAIRealtimeWebSocket extends OpenAIRealtimeEmitter { props.onURL?.(this.url); // @ts-ignore - this.socket = new WebSocket(this.url, [ + this.socket = new WebSocket(this.url.toString(), [ 'realtime', ...(isAzure(client) ? [] : [`openai-insecure-api-key.${client.apiKey}`]), 'openai-beta.realtime-v1', From be1ca6b9a6732214ac21ca375b5b0a9b7f492fd6 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 13 Feb 2025 19:41:49 +0000 Subject: [PATCH 704/725] feat(api): add support for storing chat completions (#1327) --- .stats.yml | 4 +- api.md | 72 ++++---- src/index.ts | 27 ++- src/lib/ChatCompletionStream.ts | 2 +- src/resources/chat/chat.ts | 19 +- .../chat/{ => completions}/completions.ts | 170 ++++++++++++++++-- src/resources/chat/completions/index.ts | 49 +++++ src/resources/chat/completions/messages.ts | 52 ++++++ src/resources/chat/index.ts | 10 +- src/resources/completions.ts | 4 +- src/resources/moderations.ts | 4 +- tests/api-resources/chat/completions.test.ts | 65 ------- .../chat/completions/completions.test.ts | 144 +++++++++++++++ .../chat/completions/messages.test.ts | 40 +++++ 14 files changed, 534 insertions(+), 128 deletions(-) rename src/resources/chat/{ => completions}/completions.ts (88%) create mode 100644 src/resources/chat/completions/index.ts create mode 100644 src/resources/chat/completions/messages.ts delete mode 100644 tests/api-resources/chat/completions.test.ts create mode 100644 tests/api-resources/chat/completions/completions.test.ts create mode 100644 tests/api-resources/chat/completions/messages.test.ts diff --git a/.stats.yml b/.stats.yml index d59a86d22..658877d3b 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ -configured_endpoints: 69 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-dfb00c627f58e5180af7a9b29ed2f2aa0764a3b9daa6a32a1cc45bc8e48dfe15.yml +configured_endpoints: 74 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-4aa6ee65ba9efc789e05e6a5ef0883b2cadf06def8efd863dbf75e9e233067e1.yml diff --git a/api.md b/api.md index 01854a8e0..63f239628 100644 --- a/api.md +++ b/api.md @@ -32,39 +32,51 @@ Types: Types: -- ChatCompletion -- ChatCompletionAssistantMessageParam -- ChatCompletionAudio -- ChatCompletionAudioParam -- ChatCompletionChunk -- ChatCompletionContentPart -- ChatCompletionContentPartImage -- ChatCompletionContentPartInputAudio -- ChatCompletionContentPartRefusal -- ChatCompletionContentPartText -- ChatCompletionDeveloperMessageParam -- ChatCompletionFunctionCallOption -- ChatCompletionFunctionMessageParam -- ChatCompletionMessage -- ChatCompletionMessageParam -- ChatCompletionMessageToolCall -- ChatCompletionModality -- ChatCompletionNamedToolChoice -- ChatCompletionPredictionContent -- ChatCompletionReasoningEffort -- ChatCompletionRole -- ChatCompletionStreamOptions -- ChatCompletionSystemMessageParam -- ChatCompletionTokenLogprob -- ChatCompletionTool -- ChatCompletionToolChoiceOption -- ChatCompletionToolMessageParam -- ChatCompletionUserMessageParam -- CreateChatCompletionRequestMessage +- ChatCompletion +- ChatCompletionAssistantMessageParam +- ChatCompletionAudio +- ChatCompletionAudioParam +- ChatCompletionChunk +- ChatCompletionContentPart +- ChatCompletionContentPartImage +- ChatCompletionContentPartInputAudio +- ChatCompletionContentPartRefusal +- ChatCompletionContentPartText +- ChatCompletionDeleted +- ChatCompletionDeveloperMessageParam +- ChatCompletionFunctionCallOption +- ChatCompletionFunctionMessageParam +- ChatCompletionMessage +- ChatCompletionMessageParam +- ChatCompletionMessageToolCall +- ChatCompletionModality +- ChatCompletionNamedToolChoice +- ChatCompletionPredictionContent +- ChatCompletionReasoningEffort +- ChatCompletionRole +- ChatCompletionStoreMessage +- ChatCompletionStreamOptions +- ChatCompletionSystemMessageParam +- ChatCompletionTokenLogprob +- ChatCompletionTool +- ChatCompletionToolChoiceOption +- ChatCompletionToolMessageParam +- ChatCompletionUserMessageParam +- CreateChatCompletionRequestMessage Methods: -- client.chat.completions.create({ ...params }) -> ChatCompletion +- client.chat.completions.create({ ...params }) -> ChatCompletion +- client.chat.completions.retrieve(completionId) -> ChatCompletion +- client.chat.completions.update(completionId, { ...params }) -> ChatCompletion +- client.chat.completions.list({ ...params }) -> ChatCompletionsPage +- client.chat.completions.del(completionId) -> ChatCompletionDeleted + +### Messages + +Methods: + +- client.chat.completions.messages.list(completionId, { ...params }) -> ChatCompletionStoreMessagesPage # Embeddings diff --git a/src/index.ts b/src/index.ts index f4e940af8..debefce8c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -66,6 +66,13 @@ import { import { Audio, AudioModel, AudioResponseFormat } from './resources/audio/audio'; import { Beta } from './resources/beta/beta'; import { Chat, ChatModel } from './resources/chat/chat'; +import { FineTuning } from './resources/fine-tuning/fine-tuning'; +import { + Upload, + UploadCompleteParams, + UploadCreateParams, + Uploads as UploadsAPIUploads, +} from './resources/uploads/uploads'; import { ChatCompletion, ChatCompletionAssistantMessageParam, @@ -80,9 +87,11 @@ import { ChatCompletionCreateParams, ChatCompletionCreateParamsNonStreaming, ChatCompletionCreateParamsStreaming, + ChatCompletionDeleted, ChatCompletionDeveloperMessageParam, ChatCompletionFunctionCallOption, ChatCompletionFunctionMessageParam, + ChatCompletionListParams, ChatCompletionMessage, ChatCompletionMessageParam, ChatCompletionMessageToolCall, @@ -91,21 +100,17 @@ import { ChatCompletionPredictionContent, ChatCompletionReasoningEffort, ChatCompletionRole, + ChatCompletionStoreMessage, ChatCompletionStreamOptions, ChatCompletionSystemMessageParam, ChatCompletionTokenLogprob, ChatCompletionTool, ChatCompletionToolChoiceOption, ChatCompletionToolMessageParam, + ChatCompletionUpdateParams, ChatCompletionUserMessageParam, -} from './resources/chat/completions'; -import { FineTuning } from './resources/fine-tuning/fine-tuning'; -import { - Upload, - UploadCompleteParams, - UploadCreateParams, - Uploads as UploadsAPIUploads, -} from './resources/uploads/uploads'; + ChatCompletionsPage, +} from './resources/chat/completions/completions'; export interface ClientOptions { /** @@ -310,6 +315,7 @@ export class OpenAI extends Core.APIClient { OpenAI.Completions = Completions; OpenAI.Chat = Chat; +OpenAI.ChatCompletionsPage = ChatCompletionsPage; OpenAI.Embeddings = Embeddings; OpenAI.Files = Files; OpenAI.FileObjectsPage = FileObjectsPage; @@ -355,6 +361,7 @@ export declare namespace OpenAI { type ChatCompletionContentPartInputAudio as ChatCompletionContentPartInputAudio, type ChatCompletionContentPartRefusal as ChatCompletionContentPartRefusal, type ChatCompletionContentPartText as ChatCompletionContentPartText, + type ChatCompletionDeleted as ChatCompletionDeleted, type ChatCompletionDeveloperMessageParam as ChatCompletionDeveloperMessageParam, type ChatCompletionFunctionCallOption as ChatCompletionFunctionCallOption, type ChatCompletionFunctionMessageParam as ChatCompletionFunctionMessageParam, @@ -366,6 +373,7 @@ export declare namespace OpenAI { type ChatCompletionPredictionContent as ChatCompletionPredictionContent, type ChatCompletionReasoningEffort as ChatCompletionReasoningEffort, type ChatCompletionRole as ChatCompletionRole, + type ChatCompletionStoreMessage as ChatCompletionStoreMessage, type ChatCompletionStreamOptions as ChatCompletionStreamOptions, type ChatCompletionSystemMessageParam as ChatCompletionSystemMessageParam, type ChatCompletionTokenLogprob as ChatCompletionTokenLogprob, @@ -373,9 +381,12 @@ export declare namespace OpenAI { type ChatCompletionToolChoiceOption as ChatCompletionToolChoiceOption, type ChatCompletionToolMessageParam as ChatCompletionToolMessageParam, type ChatCompletionUserMessageParam as ChatCompletionUserMessageParam, + ChatCompletionsPage as ChatCompletionsPage, type ChatCompletionCreateParams as ChatCompletionCreateParams, type ChatCompletionCreateParamsNonStreaming as ChatCompletionCreateParamsNonStreaming, type ChatCompletionCreateParamsStreaming as ChatCompletionCreateParamsStreaming, + type ChatCompletionUpdateParams as ChatCompletionUpdateParams, + type ChatCompletionListParams as ChatCompletionListParams, }; export { diff --git a/src/lib/ChatCompletionStream.ts b/src/lib/ChatCompletionStream.ts index 6c846f70b..35648c27b 100644 --- a/src/lib/ChatCompletionStream.ts +++ b/src/lib/ChatCompletionStream.ts @@ -13,7 +13,7 @@ import { type ChatCompletionCreateParamsStreaming, type ChatCompletionCreateParamsBase, type ChatCompletionRole, -} from '../resources/chat/completions'; +} from '../resources/chat/completions/completions'; import { AbstractChatCompletionRunner, type AbstractChatCompletionRunnerEvents, diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index d4a18929c..5bceec45a 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -1,7 +1,7 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from '../../resource'; -import * as CompletionsAPI from './completions'; +import * as CompletionsAPI from './completions/completions'; import { ChatCompletion, ChatCompletionAssistantMessageParam, @@ -16,9 +16,11 @@ import { ChatCompletionCreateParams, ChatCompletionCreateParamsNonStreaming, ChatCompletionCreateParamsStreaming, + ChatCompletionDeleted, ChatCompletionDeveloperMessageParam, ChatCompletionFunctionCallOption, ChatCompletionFunctionMessageParam, + ChatCompletionListParams, ChatCompletionMessage, ChatCompletionMessageParam, ChatCompletionMessageToolCall, @@ -27,19 +29,24 @@ import { ChatCompletionPredictionContent, ChatCompletionReasoningEffort, ChatCompletionRole, + ChatCompletionStoreMessage, ChatCompletionStreamOptions, ChatCompletionSystemMessageParam, ChatCompletionTokenLogprob, ChatCompletionTool, ChatCompletionToolChoiceOption, ChatCompletionToolMessageParam, + ChatCompletionUpdateParams, ChatCompletionUserMessageParam, + ChatCompletionsPage, CompletionCreateParams, CompletionCreateParamsNonStreaming, CompletionCreateParamsStreaming, + CompletionListParams, + CompletionUpdateParams, Completions, CreateChatCompletionRequestMessage, -} from './completions'; +} from './completions/completions'; export class Chat extends APIResource { completions: CompletionsAPI.Completions = new CompletionsAPI.Completions(this._client); @@ -87,6 +94,7 @@ export type ChatModel = | 'gpt-3.5-turbo-16k-0613'; Chat.Completions = Completions; +Chat.ChatCompletionsPage = ChatCompletionsPage; export declare namespace Chat { export { type ChatModel as ChatModel }; @@ -103,6 +111,7 @@ export declare namespace Chat { type ChatCompletionContentPartInputAudio as ChatCompletionContentPartInputAudio, type ChatCompletionContentPartRefusal as ChatCompletionContentPartRefusal, type ChatCompletionContentPartText as ChatCompletionContentPartText, + type ChatCompletionDeleted as ChatCompletionDeleted, type ChatCompletionDeveloperMessageParam as ChatCompletionDeveloperMessageParam, type ChatCompletionFunctionCallOption as ChatCompletionFunctionCallOption, type ChatCompletionFunctionMessageParam as ChatCompletionFunctionMessageParam, @@ -114,6 +123,7 @@ export declare namespace Chat { type ChatCompletionPredictionContent as ChatCompletionPredictionContent, type ChatCompletionReasoningEffort as ChatCompletionReasoningEffort, type ChatCompletionRole as ChatCompletionRole, + type ChatCompletionStoreMessage as ChatCompletionStoreMessage, type ChatCompletionStreamOptions as ChatCompletionStreamOptions, type ChatCompletionSystemMessageParam as ChatCompletionSystemMessageParam, type ChatCompletionTokenLogprob as ChatCompletionTokenLogprob, @@ -122,11 +132,16 @@ export declare namespace Chat { type ChatCompletionToolMessageParam as ChatCompletionToolMessageParam, type ChatCompletionUserMessageParam as ChatCompletionUserMessageParam, type CreateChatCompletionRequestMessage as CreateChatCompletionRequestMessage, + ChatCompletionsPage as ChatCompletionsPage, type ChatCompletionCreateParams as ChatCompletionCreateParams, type CompletionCreateParams as CompletionCreateParams, type ChatCompletionCreateParamsNonStreaming as ChatCompletionCreateParamsNonStreaming, type CompletionCreateParamsNonStreaming as CompletionCreateParamsNonStreaming, type ChatCompletionCreateParamsStreaming as ChatCompletionCreateParamsStreaming, type CompletionCreateParamsStreaming as CompletionCreateParamsStreaming, + type ChatCompletionUpdateParams as ChatCompletionUpdateParams, + type CompletionUpdateParams as CompletionUpdateParams, + type ChatCompletionListParams as ChatCompletionListParams, + type CompletionListParams as CompletionListParams, }; } diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions/completions.ts similarity index 88% rename from src/resources/chat/completions.ts rename to src/resources/chat/completions/completions.ts index 2586845c3..3af4a3a1d 100644 --- a/src/resources/chat/completions.ts +++ b/src/resources/chat/completions/completions.ts @@ -1,15 +1,21 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import { APIResource } from '../../resource'; -import { APIPromise } from '../../core'; -import * as Core from '../../core'; -import * as ChatCompletionsAPI from './completions'; -import * as CompletionsAPI from '../completions'; -import * as Shared from '../shared'; -import * as ChatAPI from './chat'; -import { Stream } from '../../streaming'; +import { APIResource } from '../../../resource'; +import { isRequestOptions } from '../../../core'; +import { APIPromise } from '../../../core'; +import * as Core from '../../../core'; +import * as CompletionsCompletionsAPI from './completions'; +import * as CompletionsAPI from '../../completions'; +import * as Shared from '../../shared'; +import * as ChatAPI from '../chat'; +import * as MessagesAPI from './messages'; +import { MessageListParams, Messages } from './messages'; +import { CursorPage, type CursorPageParams } from '../../../pagination'; +import { Stream } from '../../../streaming'; export class Completions extends APIResource { + messages: MessagesAPI.Messages = new MessagesAPI.Messages(this._client); + /** * Creates a model response for the given chat conversation. Learn more in the * [text generation](https://platform.openai.com/docs/guides/text-generation), @@ -42,8 +48,60 @@ export class Completions extends APIResource { | APIPromise | APIPromise>; } + + /** + * Get a stored chat completion. Only chat completions that have been created with + * the `store` parameter set to `true` will be returned. + */ + retrieve(completionId: string, options?: Core.RequestOptions): Core.APIPromise { + return this._client.get(`/chat/completions/${completionId}`, options); + } + + /** + * Modify a stored chat completion. Only chat completions that have been created + * with the `store` parameter set to `true` can be modified. Currently, the only + * supported modification is to update the `metadata` field. + */ + update( + completionId: string, + body: ChatCompletionUpdateParams, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this._client.post(`/chat/completions/${completionId}`, { body, ...options }); + } + + /** + * List stored chat completions. Only chat completions that have been stored with + * the `store` parameter set to `true` will be returned. + */ + list( + query?: ChatCompletionListParams, + options?: Core.RequestOptions, + ): Core.PagePromise; + list(options?: Core.RequestOptions): Core.PagePromise; + list( + query: ChatCompletionListParams | Core.RequestOptions = {}, + options?: Core.RequestOptions, + ): Core.PagePromise { + if (isRequestOptions(query)) { + return this.list({}, query); + } + return this._client.getAPIList('/chat/completions', ChatCompletionsPage, { query, ...options }); + } + + /** + * Delete a stored chat completion. Only chat completions that have been created + * with the `store` parameter set to `true` can be deleted. + */ + del(completionId: string, options?: Core.RequestOptions): Core.APIPromise { + return this._client.delete(`/chat/completions/${completionId}`, options); + } } +export class ChatCompletionsPage extends CursorPage {} + +export class ChatCompletionStoreMessagesPage extends CursorPage {} + /** * Represents a chat completion response returned by model, based on the provided * input. @@ -119,7 +177,7 @@ export namespace ChatCompletion { /** * A chat completion message generated by the model. */ - message: ChatCompletionsAPI.ChatCompletionMessage; + message: CompletionsCompletionsAPI.ChatCompletionMessage; } export namespace Choice { @@ -130,12 +188,12 @@ export namespace ChatCompletion { /** * A list of message content tokens with log probability information. */ - content: Array | null; + content: Array | null; /** * A list of message refusal tokens with log probability information. */ - refusal: Array | null; + refusal: Array | null; } } } @@ -437,12 +495,12 @@ export namespace ChatCompletionChunk { /** * A list of message content tokens with log probability information. */ - content: Array | null; + content: Array | null; /** * A list of message refusal tokens with log probability information. */ - refusal: Array | null; + refusal: Array | null; } } } @@ -537,6 +595,23 @@ export interface ChatCompletionContentPartText { type: 'text'; } +export interface ChatCompletionDeleted { + /** + * The ID of the chat completion that was deleted. + */ + id: string; + + /** + * Whether the chat completion was deleted. + */ + deleted: boolean; + + /** + * The type of object being deleted. + */ + object: 'chat.completion.deleted'; +} + /** * Developer-provided instructions that the model should follow, regardless of * messages sent by the user. With o1 models and newer, `developer` messages @@ -758,6 +833,16 @@ export type ChatCompletionReasoningEffort = 'low' | 'medium' | 'high' | null; */ export type ChatCompletionRole = 'developer' | 'system' | 'user' | 'assistant' | 'tool' | 'function'; +/** + * A chat completion message generated by the model. + */ +export interface ChatCompletionStoreMessage extends ChatCompletionMessage { + /** + * The identifier of the chat message. + */ + id: string; +} + /** * Options for streaming response. Only set this when you set `stream: true`. */ @@ -1229,8 +1314,9 @@ export namespace ChatCompletionCreateParams { } export type ChatCompletionCreateParamsNonStreaming = - ChatCompletionsAPI.ChatCompletionCreateParamsNonStreaming; - export type ChatCompletionCreateParamsStreaming = ChatCompletionsAPI.ChatCompletionCreateParamsStreaming; + CompletionsCompletionsAPI.ChatCompletionCreateParamsNonStreaming; + export type ChatCompletionCreateParamsStreaming = + CompletionsCompletionsAPI.ChatCompletionCreateParamsStreaming; } /** @@ -1272,6 +1358,51 @@ export interface ChatCompletionCreateParamsStreaming extends ChatCompletionCreat */ export type CompletionCreateParamsStreaming = ChatCompletionCreateParamsStreaming; +export interface ChatCompletionUpdateParams { + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. + */ + metadata: Shared.Metadata | null; +} + +/** + * @deprecated Use ChatCompletionUpdateParams instead + */ +export type CompletionUpdateParams = ChatCompletionUpdateParams; + +export interface ChatCompletionListParams extends CursorPageParams { + /** + * A list of metadata keys to filter the chat completions by. Example: + * + * `metadata[key1]=value1&metadata[key2]=value2` + */ + metadata?: Shared.Metadata | null; + + /** + * The model used to generate the chat completions. + */ + model?: string; + + /** + * Sort order for chat completions by timestamp. Use `asc` for ascending order or + * `desc` for descending order. Defaults to `asc`. + */ + order?: 'asc' | 'desc'; +} + +/** + * @deprecated Use ChatCompletionListParams instead + */ +export type CompletionListParams = ChatCompletionListParams; + +Completions.ChatCompletionsPage = ChatCompletionsPage; +Completions.Messages = Messages; + export declare namespace Completions { export { type ChatCompletion as ChatCompletion, @@ -1284,6 +1415,7 @@ export declare namespace Completions { type ChatCompletionContentPartInputAudio as ChatCompletionContentPartInputAudio, type ChatCompletionContentPartRefusal as ChatCompletionContentPartRefusal, type ChatCompletionContentPartText as ChatCompletionContentPartText, + type ChatCompletionDeleted as ChatCompletionDeleted, type ChatCompletionDeveloperMessageParam as ChatCompletionDeveloperMessageParam, type ChatCompletionFunctionCallOption as ChatCompletionFunctionCallOption, type ChatCompletionFunctionMessageParam as ChatCompletionFunctionMessageParam, @@ -1295,6 +1427,7 @@ export declare namespace Completions { type ChatCompletionPredictionContent as ChatCompletionPredictionContent, type ChatCompletionReasoningEffort as ChatCompletionReasoningEffort, type ChatCompletionRole as ChatCompletionRole, + type ChatCompletionStoreMessage as ChatCompletionStoreMessage, type ChatCompletionStreamOptions as ChatCompletionStreamOptions, type ChatCompletionSystemMessageParam as ChatCompletionSystemMessageParam, type ChatCompletionTokenLogprob as ChatCompletionTokenLogprob, @@ -1303,11 +1436,18 @@ export declare namespace Completions { type ChatCompletionToolMessageParam as ChatCompletionToolMessageParam, type ChatCompletionUserMessageParam as ChatCompletionUserMessageParam, type CreateChatCompletionRequestMessage as CreateChatCompletionRequestMessage, + ChatCompletionsPage as ChatCompletionsPage, type ChatCompletionCreateParams as ChatCompletionCreateParams, type CompletionCreateParams as CompletionCreateParams, type ChatCompletionCreateParamsNonStreaming as ChatCompletionCreateParamsNonStreaming, type CompletionCreateParamsNonStreaming as CompletionCreateParamsNonStreaming, type ChatCompletionCreateParamsStreaming as ChatCompletionCreateParamsStreaming, type CompletionCreateParamsStreaming as CompletionCreateParamsStreaming, + type ChatCompletionUpdateParams as ChatCompletionUpdateParams, + type CompletionUpdateParams as CompletionUpdateParams, + type ChatCompletionListParams as ChatCompletionListParams, + type CompletionListParams as CompletionListParams, }; + + export { Messages as Messages, type MessageListParams as MessageListParams }; } diff --git a/src/resources/chat/completions/index.ts b/src/resources/chat/completions/index.ts new file mode 100644 index 000000000..3691f41d8 --- /dev/null +++ b/src/resources/chat/completions/index.ts @@ -0,0 +1,49 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +export { + ChatCompletionStoreMessagesPage, + ChatCompletionsPage, + Completions, + type ChatCompletion, + type ChatCompletionAssistantMessageParam, + type ChatCompletionAudio, + type ChatCompletionAudioParam, + type ChatCompletionChunk, + type ChatCompletionContentPart, + type ChatCompletionContentPartImage, + type ChatCompletionContentPartInputAudio, + type ChatCompletionContentPartRefusal, + type ChatCompletionContentPartText, + type ChatCompletionDeleted, + type ChatCompletionDeveloperMessageParam, + type ChatCompletionFunctionCallOption, + type ChatCompletionFunctionMessageParam, + type ChatCompletionMessage, + type ChatCompletionMessageParam, + type ChatCompletionMessageToolCall, + type ChatCompletionModality, + type ChatCompletionNamedToolChoice, + type ChatCompletionPredictionContent, + type ChatCompletionReasoningEffort, + type ChatCompletionRole, + type ChatCompletionStoreMessage, + type ChatCompletionStreamOptions, + type ChatCompletionSystemMessageParam, + type ChatCompletionTokenLogprob, + type ChatCompletionTool, + type ChatCompletionToolChoiceOption, + type ChatCompletionToolMessageParam, + type ChatCompletionUserMessageParam, + type CreateChatCompletionRequestMessage, + type ChatCompletionCreateParams, + type CompletionCreateParams, + type ChatCompletionCreateParamsNonStreaming, + type CompletionCreateParamsNonStreaming, + type ChatCompletionCreateParamsStreaming, + type CompletionCreateParamsStreaming, + type ChatCompletionUpdateParams, + type CompletionUpdateParams, + type ChatCompletionListParams, + type CompletionListParams, +} from './completions'; +export { Messages, type MessageListParams } from './messages'; diff --git a/src/resources/chat/completions/messages.ts b/src/resources/chat/completions/messages.ts new file mode 100644 index 000000000..fc1cc5d94 --- /dev/null +++ b/src/resources/chat/completions/messages.ts @@ -0,0 +1,52 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import { APIResource } from '../../../resource'; +import { isRequestOptions } from '../../../core'; +import * as Core from '../../../core'; +import * as CompletionsAPI from './completions'; +import { ChatCompletionStoreMessagesPage } from './completions'; +import { type CursorPageParams } from '../../../pagination'; + +export class Messages extends APIResource { + /** + * Get the messages in a stored chat completion. Only chat completions that have + * been created with the `store` parameter set to `true` will be returned. + */ + list( + completionId: string, + query?: MessageListParams, + options?: Core.RequestOptions, + ): Core.PagePromise; + list( + completionId: string, + options?: Core.RequestOptions, + ): Core.PagePromise; + list( + completionId: string, + query: MessageListParams | Core.RequestOptions = {}, + options?: Core.RequestOptions, + ): Core.PagePromise { + if (isRequestOptions(query)) { + return this.list(completionId, {}, query); + } + return this._client.getAPIList( + `/chat/completions/${completionId}/messages`, + ChatCompletionStoreMessagesPage, + { query, ...options }, + ); + } +} + +export interface MessageListParams extends CursorPageParams { + /** + * Sort order for messages by timestamp. Use `asc` for ascending order or `desc` + * for descending order. Defaults to `asc`. + */ + order?: 'asc' | 'desc'; +} + +export declare namespace Messages { + export { type MessageListParams as MessageListParams }; +} + +export { ChatCompletionStoreMessagesPage }; diff --git a/src/resources/chat/index.ts b/src/resources/chat/index.ts index c3be19402..a9b5b46fb 100644 --- a/src/resources/chat/index.ts +++ b/src/resources/chat/index.ts @@ -2,6 +2,8 @@ export { Chat, type ChatModel } from './chat'; export { + ChatCompletionStoreMessagesPage, + ChatCompletionsPage, Completions, type ChatCompletion, type ChatCompletionAssistantMessageParam, @@ -13,6 +15,7 @@ export { type ChatCompletionContentPartInputAudio, type ChatCompletionContentPartRefusal, type ChatCompletionContentPartText, + type ChatCompletionDeleted, type ChatCompletionDeveloperMessageParam, type ChatCompletionFunctionCallOption, type ChatCompletionFunctionMessageParam, @@ -24,6 +27,7 @@ export { type ChatCompletionPredictionContent, type ChatCompletionReasoningEffort, type ChatCompletionRole, + type ChatCompletionStoreMessage, type ChatCompletionStreamOptions, type ChatCompletionSystemMessageParam, type ChatCompletionTokenLogprob, @@ -38,4 +42,8 @@ export { type CompletionCreateParamsNonStreaming, type ChatCompletionCreateParamsStreaming, type CompletionCreateParamsStreaming, -} from './completions'; + type ChatCompletionUpdateParams, + type CompletionUpdateParams, + type ChatCompletionListParams, + type CompletionListParams, +} from './completions/index'; diff --git a/src/resources/completions.ts b/src/resources/completions.ts index be75a46f0..664e39d9d 100644 --- a/src/resources/completions.ts +++ b/src/resources/completions.ts @@ -4,7 +4,7 @@ import { APIResource } from '../resource'; import { APIPromise } from '../core'; import * as Core from '../core'; import * as CompletionsAPI from './completions'; -import * as ChatCompletionsAPI from './chat/completions'; +import * as CompletionsCompletionsAPI from './chat/completions/completions'; import { Stream } from '../streaming'; export class Completions extends APIResource { @@ -311,7 +311,7 @@ export interface CompletionCreateParamsBase { /** * Options for streaming response. Only set this when you set `stream: true`. */ - stream_options?: ChatCompletionsAPI.ChatCompletionStreamOptions | null; + stream_options?: CompletionsCompletionsAPI.ChatCompletionStreamOptions | null; /** * The suffix that comes after a completion of inserted text. diff --git a/src/resources/moderations.ts b/src/resources/moderations.ts index f7b16166d..86e90376d 100644 --- a/src/resources/moderations.ts +++ b/src/resources/moderations.ts @@ -75,14 +75,14 @@ export namespace Moderation { * execution of wrongdoing, or that gives advice or instruction on how to commit * illicit acts. For example, "how to shoplift" would fit this category. */ - illicit: boolean; + illicit: boolean | null; /** * Content that includes instructions or advice that facilitate the planning or * execution of wrongdoing that also includes violence, or that gives advice or * instruction on the procurement of any weapon. */ - 'illicit/violent': boolean; + 'illicit/violent': boolean | null; /** * Content that promotes, encourages, or depicts acts of self-harm, such as diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts deleted file mode 100644 index 8f1bc7d4c..000000000 --- a/tests/api-resources/chat/completions.test.ts +++ /dev/null @@ -1,65 +0,0 @@ -// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. - -import OpenAI from 'openai'; -import { Response } from 'node-fetch'; - -const client = new OpenAI({ - apiKey: 'My API Key', - baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', -}); - -describe('resource completions', () => { - test('create: only required params', async () => { - const responsePromise = client.chat.completions.create({ - messages: [{ content: 'string', role: 'developer' }], - model: 'gpt-4o', - }); - const rawResponse = await responsePromise.asResponse(); - expect(rawResponse).toBeInstanceOf(Response); - const response = await responsePromise; - expect(response).not.toBeInstanceOf(Response); - const dataAndResponse = await responsePromise.withResponse(); - expect(dataAndResponse.data).toBe(response); - expect(dataAndResponse.response).toBe(rawResponse); - }); - - test('create: required and optional params', async () => { - const response = await client.chat.completions.create({ - messages: [{ content: 'string', role: 'developer', name: 'name' }], - model: 'gpt-4o', - audio: { format: 'wav', voice: 'alloy' }, - frequency_penalty: -2, - function_call: 'none', - functions: [{ name: 'name', description: 'description', parameters: { foo: 'bar' } }], - logit_bias: { foo: 0 }, - logprobs: true, - max_completion_tokens: 0, - max_tokens: 0, - metadata: { foo: 'string' }, - modalities: ['text'], - n: 1, - parallel_tool_calls: true, - prediction: { content: 'string', type: 'content' }, - presence_penalty: -2, - reasoning_effort: 'low', - response_format: { type: 'text' }, - seed: 0, - service_tier: 'auto', - stop: 'string', - store: true, - stream: false, - stream_options: { include_usage: true }, - temperature: 1, - tool_choice: 'none', - tools: [ - { - function: { name: 'name', description: 'description', parameters: { foo: 'bar' }, strict: true }, - type: 'function', - }, - ], - top_logprobs: 0, - top_p: 1, - user: 'user-1234', - }); - }); -}); diff --git a/tests/api-resources/chat/completions/completions.test.ts b/tests/api-resources/chat/completions/completions.test.ts new file mode 100644 index 000000000..acdd631db --- /dev/null +++ b/tests/api-resources/chat/completions/completions.test.ts @@ -0,0 +1,144 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import OpenAI from 'openai'; +import { Response } from 'node-fetch'; + +const client = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('resource completions', () => { + test('create: only required params', async () => { + const responsePromise = client.chat.completions.create({ + messages: [{ content: 'string', role: 'developer' }], + model: 'gpt-4o', + }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('create: required and optional params', async () => { + const response = await client.chat.completions.create({ + messages: [{ content: 'string', role: 'developer', name: 'name' }], + model: 'gpt-4o', + audio: { format: 'wav', voice: 'alloy' }, + frequency_penalty: -2, + function_call: 'none', + functions: [{ name: 'name', description: 'description', parameters: { foo: 'bar' } }], + logit_bias: { foo: 0 }, + logprobs: true, + max_completion_tokens: 0, + max_tokens: 0, + metadata: { foo: 'string' }, + modalities: ['text'], + n: 1, + parallel_tool_calls: true, + prediction: { content: 'string', type: 'content' }, + presence_penalty: -2, + reasoning_effort: 'low', + response_format: { type: 'text' }, + seed: 0, + service_tier: 'auto', + stop: 'string', + store: true, + stream: false, + stream_options: { include_usage: true }, + temperature: 1, + tool_choice: 'none', + tools: [ + { + function: { name: 'name', description: 'description', parameters: { foo: 'bar' }, strict: true }, + type: 'function', + }, + ], + top_logprobs: 0, + top_p: 1, + user: 'user-1234', + }); + }); + + test('retrieve', async () => { + const responsePromise = client.chat.completions.retrieve('completion_id'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('retrieve: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + client.chat.completions.retrieve('completion_id', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('update: only required params', async () => { + const responsePromise = client.chat.completions.update('completion_id', { metadata: { foo: 'string' } }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('update: required and optional params', async () => { + const response = await client.chat.completions.update('completion_id', { metadata: { foo: 'string' } }); + }); + + test('list', async () => { + const responsePromise = client.chat.completions.list(); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('list: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect(client.chat.completions.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( + OpenAI.NotFoundError, + ); + }); + + test('list: request options and params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + client.chat.completions.list( + { after: 'after', limit: 0, metadata: { foo: 'string' }, model: 'model', order: 'asc' }, + { path: '/_stainless_unknown_path' }, + ), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('del', async () => { + const responsePromise = client.chat.completions.del('completion_id'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('del: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + client.chat.completions.del('completion_id', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); +}); diff --git a/tests/api-resources/chat/completions/messages.test.ts b/tests/api-resources/chat/completions/messages.test.ts new file mode 100644 index 000000000..664106cb9 --- /dev/null +++ b/tests/api-resources/chat/completions/messages.test.ts @@ -0,0 +1,40 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import OpenAI from 'openai'; +import { Response } from 'node-fetch'; + +const client = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('resource messages', () => { + test('list', async () => { + const responsePromise = client.chat.completions.messages.list('completion_id'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('list: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + client.chat.completions.messages.list('completion_id', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('list: request options and params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + client.chat.completions.messages.list( + 'completion_id', + { after: 'after', limit: 0, order: 'asc' }, + { path: '/_stainless_unknown_path' }, + ), + ).rejects.toThrow(OpenAI.NotFoundError); + }); +}); From f9897464738ddd6c3207be3530b03db7e522e52e Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 13 Feb 2025 19:53:06 +0000 Subject: [PATCH 705/725] release: 4.85.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 17 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 023314f41..f48cc7f57 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.84.1" + ".": "4.85.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 444430307..290b2414d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.85.0 (2025-02-13) + +Full Changelog: [v4.84.1...v4.85.0](https://github.com/openai/openai-node/compare/v4.84.1...v4.85.0) + +### Features + +* **api:** add support for storing chat completions ([#1327](https://github.com/openai/openai-node/issues/1327)) ([8d77f8e](https://github.com/openai/openai-node/commit/8d77f8e3c4801b7fa1e7c6f50b48c1de1f43f3e6)) + + +### Bug Fixes + +* **realtime:** call .toString() on WebSocket url ([#1324](https://github.com/openai/openai-node/issues/1324)) ([09bc50d](https://github.com/openai/openai-node/commit/09bc50d439679b6acfd2441e69ee5aa18c00e5d9)) + ## 4.84.1 (2025-02-13) Full Changelog: [v4.84.0...v4.84.1](https://github.com/openai/openai-node/compare/v4.84.0...v4.84.1) diff --git a/jsr.json b/jsr.json index 3148d6fca..368f86c0b 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.84.1", + "version": "4.85.0", "exports": { ".": "./index.ts", "./helpers/zod": "./helpers/zod.ts", diff --git a/package.json b/package.json index 4686e3a97..dc61af02c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.84.1", + "version": "4.85.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 767424b0e..6483fa72b 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.84.1'; // x-release-please-version +export const VERSION = '4.85.0'; // x-release-please-version From 26d5868dd53045bc820a607100eab1070785f50c Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 13 Feb 2025 22:37:36 +0000 Subject: [PATCH 706/725] fix(client): fix export map for index exports (#1328) --- package.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index dc61af02c..46f58814d 100644 --- a/package.json +++ b/package.json @@ -112,17 +112,17 @@ "default": "./dist/index.mjs" }, "./*.mjs": { - "types": "./dist/*.d.ts", - "default": "./dist/*.mjs" + "types": ["./dist/*.d.ts", "./dist/*/index.d.ts"], + "default": ["./dist/*.mjs", "./dist/*/index.mjs"] }, "./*.js": { - "types": "./dist/*.d.ts", - "default": "./dist/*.js" + "types": ["./dist/*.d.ts", "./dist/*/index.d.ts"], + "default": ["./dist/*.js", "./dist/*/index.js"] }, "./*": { - "types": "./dist/*.d.ts", - "require": "./dist/*.js", - "default": "./dist/*.mjs" + "types": ["./dist/*.d.ts", "./dist/*/index.d.ts"], + "require": ["./dist/*.js", "./dist/*/index.js"], + "default": ["./dist/*.mjs", "./dist/*/index.mjs"] } }, "bin": "./bin/cli", From 1f38cc1976f4091a90a38d49e6ddc1c22e5c39ab Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Fri, 14 Feb 2025 10:19:22 +0000 Subject: [PATCH 707/725] fix(package): add chat/completions.ts back in (#1333) --- src/resources/chat/completions.ts | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/resources/chat/completions.ts diff --git a/src/resources/chat/completions.ts b/src/resources/chat/completions.ts new file mode 100644 index 000000000..55b151e8b --- /dev/null +++ b/src/resources/chat/completions.ts @@ -0,0 +1 @@ +export * from './completions/completions'; From 13aab101588c2eee1250d7c50b2abfeca1c5fa3d Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Fri, 14 Feb 2025 10:30:35 +0000 Subject: [PATCH 708/725] chore(internal): add missing return type annotation (#1334) --- src/pagination.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pagination.ts b/src/pagination.ts index ad90a3a74..7a513fc44 100644 --- a/src/pagination.ts +++ b/src/pagination.ts @@ -77,7 +77,7 @@ export class CursorPage return this.data ?? []; } - override hasNextPage() { + override hasNextPage(): boolean { if (this.has_more === false) { return false; } From b9460fbc7ca9639df91c0b7184eea9c7631ae313 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Fri, 14 Feb 2025 10:28:44 +0000 Subject: [PATCH 709/725] CI: add ecosystem tests (#1332) --- .github/workflows/ci.yml | 33 +++++++++++++++++++++++++++++++++ .gitignore | 2 +- ecosystem-tests/cli.ts | 1 + 3 files changed, 35 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6798e38a..85d792c44 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,3 +64,36 @@ jobs: - name: Run tests run: ./scripts/test + + ecosystem_tests: + name: ecosystem tests (v${{ matrix.node-version }}) + runs-on: ubuntu-latest + if: github.repository == 'openai/openai-node' + timeout-minutes: 20 + strategy: + fail-fast: false + matrix: + node-version: ['20'] + + steps: + - uses: actions/checkout@v4 + + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: '${{ matrix.node-version }}' + + - uses: denoland/setup-deno@v1 + with: + deno-version: v1.39.0 + + - uses: oven-sh/setup-bun@v2 + + - name: Bootstrap + run: ./scripts/bootstrap + + - name: Run ecosystem tests + run: | + yarn tsn ecosystem-tests/cli.ts --live --verbose --parallel --jobs=4 --retry=3 + env: + OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} diff --git a/.gitignore b/.gitignore index 81c4c41ca..3fdab1cb7 100644 --- a/.gitignore +++ b/.gitignore @@ -11,4 +11,4 @@ tmp .pack ecosystem-tests/deno/package.json ecosystem-tests/*/openai.tgz - +.dev.vars diff --git a/ecosystem-tests/cli.ts b/ecosystem-tests/cli.ts index 4803b47c2..77faddec5 100644 --- a/ecosystem-tests/cli.ts +++ b/ecosystem-tests/cli.ts @@ -70,6 +70,7 @@ const projectRunners = { 'cloudflare-worker': async () => { await installPackage(); + await fs.writeFile('.dev.vars', `OPENAI_API_KEY='${process.env['OPENAI_API_KEY']}'`); await run('npm', ['run', 'tsc']); if (state.live) { From 212710db8c8c139392c6532c0eccfd13558ef2d4 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 14 Feb 2025 10:31:06 +0000 Subject: [PATCH 710/725] release: 4.85.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 +++++++++++++ jsr.json | 2 +- package.json | 37 +++++++++++++++++++++++++++-------- src/version.ts | 2 +- 5 files changed, 46 insertions(+), 11 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f48cc7f57..89f1ce153 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.85.0" + ".": "4.85.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 290b2414d..9850ac460 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 4.85.1 (2025-02-14) + +Full Changelog: [v4.85.0...v4.85.1](https://github.com/openai/openai-node/compare/v4.85.0...v4.85.1) + +### Bug Fixes + +* **client:** fix export map for index exports ([#1328](https://github.com/openai/openai-node/issues/1328)) ([647ba7a](https://github.com/openai/openai-node/commit/647ba7a52311928f604c72b2cc95698c0837887f)) +* **package:** add chat/completions.ts back in ([#1333](https://github.com/openai/openai-node/issues/1333)) ([e4b5546](https://github.com/openai/openai-node/commit/e4b554632ab1646da831f29413fefb3378c49cc1)) + + +### Chores + +* **internal:** add missing return type annotation ([#1334](https://github.com/openai/openai-node/issues/1334)) ([53e0856](https://github.com/openai/openai-node/commit/53e0856ec4d36deee4d71b5aaf436df0a59b9402)) + ## 4.85.0 (2025-02-13) Full Changelog: [v4.84.1...v4.85.0](https://github.com/openai/openai-node/compare/v4.84.1...v4.85.0) diff --git a/jsr.json b/jsr.json index 368f86c0b..0e1eea3b3 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.85.0", + "version": "4.85.1", "exports": { ".": "./index.ts", "./helpers/zod": "./helpers/zod.ts", diff --git a/package.json b/package.json index 46f58814d..45337f85d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.85.0", + "version": "4.85.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", @@ -112,17 +112,38 @@ "default": "./dist/index.mjs" }, "./*.mjs": { - "types": ["./dist/*.d.ts", "./dist/*/index.d.ts"], - "default": ["./dist/*.mjs", "./dist/*/index.mjs"] + "types": [ + "./dist/*.d.ts", + "./dist/*/index.d.ts" + ], + "default": [ + "./dist/*.mjs", + "./dist/*/index.mjs" + ] }, "./*.js": { - "types": ["./dist/*.d.ts", "./dist/*/index.d.ts"], - "default": ["./dist/*.js", "./dist/*/index.js"] + "types": [ + "./dist/*.d.ts", + "./dist/*/index.d.ts" + ], + "default": [ + "./dist/*.js", + "./dist/*/index.js" + ] }, "./*": { - "types": ["./dist/*.d.ts", "./dist/*/index.d.ts"], - "require": ["./dist/*.js", "./dist/*/index.js"], - "default": ["./dist/*.mjs", "./dist/*/index.mjs"] + "types": [ + "./dist/*.d.ts", + "./dist/*/index.d.ts" + ], + "require": [ + "./dist/*.js", + "./dist/*/index.js" + ], + "default": [ + "./dist/*.mjs", + "./dist/*/index.mjs" + ] } }, "bin": "./bin/cli", diff --git a/src/version.ts b/src/version.ts index 6483fa72b..52fb45056 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.85.0'; // x-release-please-version +export const VERSION = '4.85.1'; // x-release-please-version From b0b4189420e1c5bb5fc4bbb8925f88fe65f9b217 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 18 Feb 2025 18:03:31 +0000 Subject: [PATCH 711/725] fix: optimize sse chunk reading off-by-one error (#1339) --- src/internal/decoders/line.ts | 31 +++++++ src/streaming.ts | 48 +--------- tests/internal/decoders/line.test.ts | 128 +++++++++++++++++++++++++++ tests/streaming.test.ts | 81 +---------------- 4 files changed, 161 insertions(+), 127 deletions(-) create mode 100644 tests/internal/decoders/line.test.ts diff --git a/src/internal/decoders/line.ts b/src/internal/decoders/line.ts index 66f62c057..947f240b3 100644 --- a/src/internal/decoders/line.ts +++ b/src/internal/decoders/line.ts @@ -143,3 +143,34 @@ function findNewlineIndex( return null; } + +export function findDoubleNewlineIndex(buffer: Uint8Array): number { + // This function searches the buffer for the end patterns (\r\r, \n\n, \r\n\r\n) + // and returns the index right after the first occurrence of any pattern, + // or -1 if none of the patterns are found. + const newline = 0x0a; // \n + const carriage = 0x0d; // \r + + for (let i = 0; i < buffer.length - 1; i++) { + if (buffer[i] === newline && buffer[i + 1] === newline) { + // \n\n + return i + 2; + } + if (buffer[i] === carriage && buffer[i + 1] === carriage) { + // \r\r + return i + 2; + } + if ( + buffer[i] === carriage && + buffer[i + 1] === newline && + i + 3 < buffer.length && + buffer[i + 2] === carriage && + buffer[i + 3] === newline + ) { + // \r\n\r\n + return i + 4; + } + } + + return -1; +} diff --git a/src/streaming.ts b/src/streaming.ts index 1d1ae344b..52266154c 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -1,6 +1,6 @@ import { ReadableStream, type Response } from './_shims/index'; import { OpenAIError } from './error'; -import { LineDecoder } from './internal/decoders/line'; +import { findDoubleNewlineIndex, LineDecoder } from './internal/decoders/line'; import { ReadableStreamToAsyncIterable } from './internal/stream-utils'; import { APIError } from './error'; @@ -259,37 +259,6 @@ async function* iterSSEChunks(iterator: AsyncIterableIterator): AsyncGene } } -function findDoubleNewlineIndex(buffer: Uint8Array): number { - // This function searches the buffer for the end patterns (\r\r, \n\n, \r\n\r\n) - // and returns the index right after the first occurrence of any pattern, - // or -1 if none of the patterns are found. - const newline = 0x0a; // \n - const carriage = 0x0d; // \r - - for (let i = 0; i < buffer.length - 2; i++) { - if (buffer[i] === newline && buffer[i + 1] === newline) { - // \n\n - return i + 2; - } - if (buffer[i] === carriage && buffer[i + 1] === carriage) { - // \r\r - return i + 2; - } - if ( - buffer[i] === carriage && - buffer[i + 1] === newline && - i + 3 < buffer.length && - buffer[i + 2] === carriage && - buffer[i + 3] === newline - ) { - // \r\n\r\n - return i + 4; - } - } - - return -1; -} - class SSEDecoder { private data: string[]; private event: string | null; @@ -345,21 +314,6 @@ class SSEDecoder { } } -/** This is an internal helper function that's just used for testing */ -export function _decodeChunks(chunks: string[], { flush }: { flush: boolean } = { flush: false }): string[] { - const decoder = new LineDecoder(); - const lines: string[] = []; - for (const chunk of chunks) { - lines.push(...decoder.decode(chunk)); - } - - if (flush) { - lines.push(...decoder.flush()); - } - - return lines; -} - function partition(str: string, delimiter: string): [string, string, string] { const index = str.indexOf(delimiter); if (index !== -1) { diff --git a/tests/internal/decoders/line.test.ts b/tests/internal/decoders/line.test.ts new file mode 100644 index 000000000..e76858e55 --- /dev/null +++ b/tests/internal/decoders/line.test.ts @@ -0,0 +1,128 @@ +import { findDoubleNewlineIndex, LineDecoder } from 'openai/internal/decoders/line'; + +function decodeChunks(chunks: string[], { flush }: { flush: boolean } = { flush: false }): string[] { + const decoder = new LineDecoder(); + const lines: string[] = []; + for (const chunk of chunks) { + lines.push(...decoder.decode(chunk)); + } + + if (flush) { + lines.push(...decoder.flush()); + } + + return lines; +} + +describe('line decoder', () => { + test('basic', () => { + // baz is not included because the line hasn't ended yet + expect(decodeChunks(['foo', ' bar\nbaz'])).toEqual(['foo bar']); + }); + + test('basic with \\r', () => { + expect(decodeChunks(['foo', ' bar\r\nbaz'])).toEqual(['foo bar']); + expect(decodeChunks(['foo', ' bar\r\nbaz'], { flush: true })).toEqual(['foo bar', 'baz']); + }); + + test('trailing new lines', () => { + expect(decodeChunks(['foo', ' bar', 'baz\n', 'thing\n'])).toEqual(['foo barbaz', 'thing']); + }); + + test('trailing new lines with \\r', () => { + expect(decodeChunks(['foo', ' bar', 'baz\r\n', 'thing\r\n'])).toEqual(['foo barbaz', 'thing']); + }); + + test('escaped new lines', () => { + expect(decodeChunks(['foo', ' bar\\nbaz\n'])).toEqual(['foo bar\\nbaz']); + }); + + test('escaped new lines with \\r', () => { + expect(decodeChunks(['foo', ' bar\\r\\nbaz\n'])).toEqual(['foo bar\\r\\nbaz']); + }); + + test('\\r & \\n split across multiple chunks', () => { + expect(decodeChunks(['foo\r', '\n', 'bar'], { flush: true })).toEqual(['foo', 'bar']); + }); + + test('single \\r', () => { + expect(decodeChunks(['foo\r', 'bar'], { flush: true })).toEqual(['foo', 'bar']); + }); + + test('double \\r', () => { + expect(decodeChunks(['foo\r', 'bar\r'], { flush: true })).toEqual(['foo', 'bar']); + expect(decodeChunks(['foo\r', '\r', 'bar'], { flush: true })).toEqual(['foo', '', 'bar']); + // implementation detail that we don't yield the single \r line until a new \r or \n is encountered + expect(decodeChunks(['foo\r', '\r', 'bar'], { flush: false })).toEqual(['foo']); + }); + + test('double \\r then \\r\\n', () => { + expect(decodeChunks(['foo\r', '\r', '\r', '\n', 'bar', '\n'])).toEqual(['foo', '', '', 'bar']); + expect(decodeChunks(['foo\n', '\n', '\n', 'bar', '\n'])).toEqual(['foo', '', '', 'bar']); + }); + + test('double newline', () => { + expect(decodeChunks(['foo\n\nbar'], { flush: true })).toEqual(['foo', '', 'bar']); + expect(decodeChunks(['foo', '\n', '\nbar'], { flush: true })).toEqual(['foo', '', 'bar']); + expect(decodeChunks(['foo\n', '\n', 'bar'], { flush: true })).toEqual(['foo', '', 'bar']); + expect(decodeChunks(['foo', '\n', '\n', 'bar'], { flush: true })).toEqual(['foo', '', 'bar']); + }); + + test('multi-byte characters across chunks', () => { + const decoder = new LineDecoder(); + + // bytes taken from the string 'известни' and arbitrarily split + // so that some multi-byte characters span multiple chunks + expect(decoder.decode(new Uint8Array([0xd0]))).toHaveLength(0); + expect(decoder.decode(new Uint8Array([0xb8, 0xd0, 0xb7, 0xd0]))).toHaveLength(0); + expect( + decoder.decode(new Uint8Array([0xb2, 0xd0, 0xb5, 0xd1, 0x81, 0xd1, 0x82, 0xd0, 0xbd, 0xd0, 0xb8])), + ).toHaveLength(0); + + const decoded = decoder.decode(new Uint8Array([0xa])); + expect(decoded).toEqual(['известни']); + }); + + test('flushing trailing newlines', () => { + expect(decodeChunks(['foo\n', '\nbar'], { flush: true })).toEqual(['foo', '', 'bar']); + }); + + test('flushing empty buffer', () => { + expect(decodeChunks([], { flush: true })).toEqual([]); + }); +}); + +describe('findDoubleNewlineIndex', () => { + test('finds \\n\\n', () => { + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\n\nbar'))).toBe(5); + expect(findDoubleNewlineIndex(new TextEncoder().encode('\n\nbar'))).toBe(2); + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\n\n'))).toBe(5); + expect(findDoubleNewlineIndex(new TextEncoder().encode('\n\n'))).toBe(2); + }); + + test('finds \\r\\r', () => { + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\r\rbar'))).toBe(5); + expect(findDoubleNewlineIndex(new TextEncoder().encode('\r\rbar'))).toBe(2); + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\r\r'))).toBe(5); + expect(findDoubleNewlineIndex(new TextEncoder().encode('\r\r'))).toBe(2); + }); + + test('finds \\r\\n\\r\\n', () => { + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\r\n\r\nbar'))).toBe(7); + expect(findDoubleNewlineIndex(new TextEncoder().encode('\r\n\r\nbar'))).toBe(4); + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\r\n\r\n'))).toBe(7); + expect(findDoubleNewlineIndex(new TextEncoder().encode('\r\n\r\n'))).toBe(4); + }); + + test('returns -1 when no double newline found', () => { + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\nbar'))).toBe(-1); + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\rbar'))).toBe(-1); + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\r\nbar'))).toBe(-1); + expect(findDoubleNewlineIndex(new TextEncoder().encode(''))).toBe(-1); + }); + + test('handles incomplete patterns', () => { + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\r\n\r'))).toBe(-1); + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\r\n'))).toBe(-1); + }); +}); diff --git a/tests/streaming.test.ts b/tests/streaming.test.ts index 8e5d0ca31..b9a38f208 100644 --- a/tests/streaming.test.ts +++ b/tests/streaming.test.ts @@ -1,86 +1,7 @@ import { Response } from 'node-fetch'; import { PassThrough } from 'stream'; import assert from 'assert'; -import { _iterSSEMessages, _decodeChunks as decodeChunks } from 'openai/streaming'; -import { LineDecoder } from 'openai/internal/decoders/line'; - -describe('line decoder', () => { - test('basic', () => { - // baz is not included because the line hasn't ended yet - expect(decodeChunks(['foo', ' bar\nbaz'])).toEqual(['foo bar']); - }); - - test('basic with \\r', () => { - expect(decodeChunks(['foo', ' bar\r\nbaz'])).toEqual(['foo bar']); - expect(decodeChunks(['foo', ' bar\r\nbaz'], { flush: true })).toEqual(['foo bar', 'baz']); - }); - - test('trailing new lines', () => { - expect(decodeChunks(['foo', ' bar', 'baz\n', 'thing\n'])).toEqual(['foo barbaz', 'thing']); - }); - - test('trailing new lines with \\r', () => { - expect(decodeChunks(['foo', ' bar', 'baz\r\n', 'thing\r\n'])).toEqual(['foo barbaz', 'thing']); - }); - - test('escaped new lines', () => { - expect(decodeChunks(['foo', ' bar\\nbaz\n'])).toEqual(['foo bar\\nbaz']); - }); - - test('escaped new lines with \\r', () => { - expect(decodeChunks(['foo', ' bar\\r\\nbaz\n'])).toEqual(['foo bar\\r\\nbaz']); - }); - - test('\\r & \\n split across multiple chunks', () => { - expect(decodeChunks(['foo\r', '\n', 'bar'], { flush: true })).toEqual(['foo', 'bar']); - }); - - test('single \\r', () => { - expect(decodeChunks(['foo\r', 'bar'], { flush: true })).toEqual(['foo', 'bar']); - }); - - test('double \\r', () => { - expect(decodeChunks(['foo\r', 'bar\r'], { flush: true })).toEqual(['foo', 'bar']); - expect(decodeChunks(['foo\r', '\r', 'bar'], { flush: true })).toEqual(['foo', '', 'bar']); - // implementation detail that we don't yield the single \r line until a new \r or \n is encountered - expect(decodeChunks(['foo\r', '\r', 'bar'], { flush: false })).toEqual(['foo']); - }); - - test('double \\r then \\r\\n', () => { - expect(decodeChunks(['foo\r', '\r', '\r', '\n', 'bar', '\n'])).toEqual(['foo', '', '', 'bar']); - expect(decodeChunks(['foo\n', '\n', '\n', 'bar', '\n'])).toEqual(['foo', '', '', 'bar']); - }); - - test('double newline', () => { - expect(decodeChunks(['foo\n\nbar'], { flush: true })).toEqual(['foo', '', 'bar']); - expect(decodeChunks(['foo', '\n', '\nbar'], { flush: true })).toEqual(['foo', '', 'bar']); - expect(decodeChunks(['foo\n', '\n', 'bar'], { flush: true })).toEqual(['foo', '', 'bar']); - expect(decodeChunks(['foo', '\n', '\n', 'bar'], { flush: true })).toEqual(['foo', '', 'bar']); - }); - - test('multi-byte characters across chunks', () => { - const decoder = new LineDecoder(); - - // bytes taken from the string 'известни' and arbitrarily split - // so that some multi-byte characters span multiple chunks - expect(decoder.decode(new Uint8Array([0xd0]))).toHaveLength(0); - expect(decoder.decode(new Uint8Array([0xb8, 0xd0, 0xb7, 0xd0]))).toHaveLength(0); - expect( - decoder.decode(new Uint8Array([0xb2, 0xd0, 0xb5, 0xd1, 0x81, 0xd1, 0x82, 0xd0, 0xbd, 0xd0, 0xb8])), - ).toHaveLength(0); - - const decoded = decoder.decode(new Uint8Array([0xa])); - expect(decoded).toEqual(['известни']); - }); - - test('flushing trailing newlines', () => { - expect(decodeChunks(['foo\n', '\nbar'], { flush: true })).toEqual(['foo', '', 'bar']); - }); - - test('flushing empty buffer', () => { - expect(decodeChunks([], { flush: true })).toEqual([]); - }); -}); +import { _iterSSEMessages } from 'openai/streaming'; describe('streaming decoding', () => { test('basic', async () => { From 2bce86509a45d96d17cfc837ddfd8ddc5995df8e Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 18 Feb 2025 18:04:10 +0000 Subject: [PATCH 712/725] release: 4.85.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 89f1ce153..541794534 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.85.1" + ".": "4.85.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9850ac460..70a447b0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.85.2 (2025-02-18) + +Full Changelog: [v4.85.1...v4.85.2](https://github.com/openai/openai-node/compare/v4.85.1...v4.85.2) + +### Bug Fixes + +* optimize sse chunk reading off-by-one error ([#1339](https://github.com/openai/openai-node/issues/1339)) ([c82795b](https://github.com/openai/openai-node/commit/c82795b189c73d1c0e3bc3a40d0d4a2558b0483a)) + ## 4.85.1 (2025-02-14) Full Changelog: [v4.85.0...v4.85.1](https://github.com/openai/openai-node/compare/v4.85.0...v4.85.1) diff --git a/jsr.json b/jsr.json index 0e1eea3b3..8f83c0ff2 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.85.1", + "version": "4.85.2", "exports": { ".": "./index.ts", "./helpers/zod": "./helpers/zod.ts", diff --git a/package.json b/package.json index 45337f85d..661bc2938 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.85.1", + "version": "4.85.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 52fb45056..4fdc11dc7 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.85.1'; // x-release-please-version +export const VERSION = '4.85.2'; // x-release-please-version From 6d056bf95c9be4046decf20ec4c98dfa2bea2723 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Thu, 20 Feb 2025 11:09:29 +0000 Subject: [PATCH 713/725] fix(parsing): remove tool_calls default empty array (#1341) --- src/lib/parser.ts | 17 +++++++++++++++-- src/resources/beta/chat/completions.ts | 2 +- tests/lib/ChatCompletionRunFunctions.test.ts | 20 ++++++++++---------- tests/lib/ChatCompletionStream.test.ts | 3 --- tests/lib/parser.test.ts | 6 ------ 5 files changed, 26 insertions(+), 22 deletions(-) diff --git a/src/lib/parser.ts b/src/lib/parser.ts index f2678e312..a750375dc 100644 --- a/src/lib/parser.ts +++ b/src/lib/parser.ts @@ -119,7 +119,15 @@ export function maybeParseChatCompletion< ...completion, choices: completion.choices.map((choice) => ({ ...choice, - message: { ...choice.message, parsed: null, tool_calls: choice.message.tool_calls ?? [] }, + message: { + ...choice.message, + parsed: null, + ...(choice.message.tool_calls ? + { + tool_calls: choice.message.tool_calls, + } + : undefined), + }, })), }; } @@ -144,7 +152,12 @@ export function parseChatCompletion< ...choice, message: { ...choice.message, - tool_calls: choice.message.tool_calls?.map((toolCall) => parseToolCall(params, toolCall)) ?? [], + ...(choice.message.tool_calls ? + { + tool_calls: + choice.message.tool_calls?.map((toolCall) => parseToolCall(params, toolCall)) ?? undefined, + } + : undefined), parsed: choice.message.content && !choice.message.refusal ? parseResponseFormat(params, choice.message.content) diff --git a/src/resources/beta/chat/completions.ts b/src/resources/beta/chat/completions.ts index c9360a95c..083b9914e 100644 --- a/src/resources/beta/chat/completions.ts +++ b/src/resources/beta/chat/completions.ts @@ -50,7 +50,7 @@ export interface ParsedFunctionToolCall extends ChatCompletionMessageToolCall { export interface ParsedChatCompletionMessage extends ChatCompletionMessage { parsed: ParsedT | null; - tool_calls: Array; + tool_calls?: Array; } export interface ParsedChoice extends ChatCompletion.Choice { diff --git a/tests/lib/ChatCompletionRunFunctions.test.ts b/tests/lib/ChatCompletionRunFunctions.test.ts index b684f204d..496501a86 100644 --- a/tests/lib/ChatCompletionRunFunctions.test.ts +++ b/tests/lib/ChatCompletionRunFunctions.test.ts @@ -628,7 +628,7 @@ describe('resource completions', () => { content: "it's raining", parsed: null, refusal: null, - tool_calls: [], + tool_calls: undefined, }, ]); expect(listener.functionCallResults).toEqual([`it's raining`]); @@ -876,7 +876,7 @@ describe('resource completions', () => { content: 'there are 3 properties in {"a": 1, "b": 2, "c": 3}', parsed: null, refusal: null, - tool_calls: [], + tool_calls: undefined, }, ]); expect(listener.functionCallResults).toEqual(['3']); @@ -1125,7 +1125,7 @@ describe('resource completions', () => { content: 'there are 3 properties in {"a": 1, "b": 2, "c": 3}', parsed: null, refusal: null, - tool_calls: [], + tool_calls: undefined, }, ]); expect(listener.functionCallResults).toEqual([`must be an object`, '3']); @@ -1443,7 +1443,7 @@ describe('resource completions', () => { content: "it's raining", parsed: null, refusal: null, - tool_calls: [], + tool_calls: undefined, }, ]); expect(listener.functionCallResults).toEqual([ @@ -1572,7 +1572,7 @@ describe('resource completions', () => { content: "it's raining", parsed: null, refusal: null, - tool_calls: [], + tool_calls: undefined, }, ]); expect(listener.eventFunctionCallResults).toEqual([`it's raining`]); @@ -1795,7 +1795,7 @@ describe('resource completions', () => { content: 'there are 3 properties in {"a": 1, "b": 2, "c": 3}', parsed: null, refusal: null, - tool_calls: [], + tool_calls: undefined, }, ]); expect(listener.eventFunctionCallResults).toEqual(['3']); @@ -1997,7 +1997,7 @@ describe('resource completions', () => { content: 'there are 3 properties in {"a": 1, "b": 2, "c": 3}', parsed: null, refusal: null, - tool_calls: [], + tool_calls: undefined, }, ]); expect(listener.eventFunctionCallResults).toEqual([`must be an object`, '3']); @@ -2301,7 +2301,7 @@ describe('resource completions', () => { content: "it's raining", parsed: null, refusal: null, - tool_calls: [], + tool_calls: undefined, }, ]); expect(listener.eventFunctionCallResults).toEqual([ @@ -2347,7 +2347,7 @@ describe('resource completions', () => { content: 'The weather is great today!', parsed: null, refusal: null, - tool_calls: [], + tool_calls: undefined, }); await listener.sanityCheck(); }); @@ -2386,7 +2386,7 @@ describe('resource completions', () => { content: 'The weather is great today!', parsed: null, refusal: null, - tool_calls: [], + tool_calls: undefined, }); await listener.sanityCheck(); }); diff --git a/tests/lib/ChatCompletionStream.test.ts b/tests/lib/ChatCompletionStream.test.ts index e5ef20c9e..34c5fd204 100644 --- a/tests/lib/ChatCompletionStream.test.ts +++ b/tests/lib/ChatCompletionStream.test.ts @@ -39,7 +39,6 @@ describe('.stream()', () => { }, "refusal": null, "role": "assistant", - "tool_calls": [], }, } `); @@ -198,7 +197,6 @@ describe('.stream()', () => { }, "refusal": null, "role": "assistant", - "tool_calls": [], }, } `); @@ -386,7 +384,6 @@ describe('.stream()', () => { "parsed": null, "refusal": "I'm very sorry, but I can't assist with that request.", "role": "assistant", - "tool_calls": [], }, } `); diff --git a/tests/lib/parser.test.ts b/tests/lib/parser.test.ts index b220e92d3..fa8123f5c 100644 --- a/tests/lib/parser.test.ts +++ b/tests/lib/parser.test.ts @@ -39,7 +39,6 @@ describe('.parse()', () => { }, "refusal": null, "role": "assistant", - "tool_calls": [], }, } `); @@ -154,7 +153,6 @@ describe('.parse()', () => { }, "refusal": null, "role": "assistant", - "tool_calls": [], } `); @@ -488,7 +486,6 @@ describe('.parse()', () => { }, "refusal": null, "role": "assistant", - "tool_calls": [], } `); }); @@ -787,7 +784,6 @@ describe('.parse()', () => { }, "refusal": null, "role": "assistant", - "tool_calls": [], } `); }); @@ -947,7 +943,6 @@ describe('.parse()', () => { }, "refusal": null, "role": "assistant", - "tool_calls": [], } `); }); @@ -1061,7 +1056,6 @@ describe('.parse()', () => { }, "refusal": null, "role": "assistant", - "tool_calls": [], } `); }); From d92fd953309951f4d6dcc9858d8782ea1bff4c79 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 20 Feb 2025 11:10:00 +0000 Subject: [PATCH 714/725] release: 4.85.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 541794534..712720117 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.85.2" + ".": "4.85.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 70a447b0a..36debfad1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.85.3 (2025-02-20) + +Full Changelog: [v4.85.2...v4.85.3](https://github.com/openai/openai-node/compare/v4.85.2...v4.85.3) + +### Bug Fixes + +* **parsing:** remove tool_calls default empty array ([#1341](https://github.com/openai/openai-node/issues/1341)) ([2672160](https://github.com/openai/openai-node/commit/26721608e61949daa9592483e89b79230bb9198a)) + ## 4.85.2 (2025-02-18) Full Changelog: [v4.85.1...v4.85.2](https://github.com/openai/openai-node/compare/v4.85.1...v4.85.2) diff --git a/jsr.json b/jsr.json index 8f83c0ff2..3c480dc70 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.85.2", + "version": "4.85.3", "exports": { ".": "./index.ts", "./helpers/zod": "./helpers/zod.ts", diff --git a/package.json b/package.json index 661bc2938..5fdd39fdc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.85.2", + "version": "4.85.3", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 4fdc11dc7..679cac2c7 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.85.2'; // x-release-please-version +export const VERSION = '4.85.3'; // x-release-please-version From 9485f5d4d6718bff7f579223c9aa528898451533 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 21 Feb 2025 15:08:12 +0000 Subject: [PATCH 715/725] chore(internal): fix devcontainers setup (#1343) --- .devcontainer/Dockerfile | 23 ----------------------- .devcontainer/devcontainer.json | 27 ++++++++++++--------------- 2 files changed, 12 insertions(+), 38 deletions(-) delete mode 100644 .devcontainer/Dockerfile diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile deleted file mode 100644 index 8ea34be96..000000000 --- a/.devcontainer/Dockerfile +++ /dev/null @@ -1,23 +0,0 @@ -# syntax=docker/dockerfile:1 -FROM debian:bookworm-slim AS stainless - -RUN apt-get update && apt-get install -y \ - nodejs \ - npm \ - yarnpkg \ - && apt-get clean autoclean - -# Ensure UTF-8 encoding -ENV LANG=C.UTF-8 -ENV LC_ALL=C.UTF-8 - -# Yarn -RUN ln -sf /usr/bin/yarnpkg /usr/bin/yarn - -WORKDIR /workspace - -COPY package.json yarn.lock /workspace/ - -RUN yarn install - -COPY . /workspace diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index d55fc4d67..763462fad 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,20 +1,17 @@ // For format details, see https://aka.ms/devcontainer.json. For config options, see the // README at: https://github.com/devcontainers/templates/tree/main/src/debian { - "name": "Debian", - "build": { - "dockerfile": "Dockerfile" + "name": "Development", + "image": "mcr.microsoft.com/devcontainers/typescript-node:latest", + "features": { + "ghcr.io/devcontainers/features/node:1": {} + }, + "postCreateCommand": "yarn install", + "customizations": { + "vscode": { + "extensions": [ + "esbenp.prettier-vscode" + ] + } } - - // Features to add to the dev container. More info: https://containers.dev/features. - // "features": {}, - - // Use 'forwardPorts' to make a list of ports inside the container available locally. - // "forwardPorts": [], - - // Configure tool-specific properties. - // "customizations": {}, - - // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. - // "remoteUser": "root" } From a1a125349ba9c9c2bb602c8c8f368e086c41ac1e Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Sat, 22 Feb 2025 05:06:15 +0000 Subject: [PATCH 716/725] release: 4.85.4 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 712720117..6fc92ed1e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.85.3" + ".": "4.85.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 36debfad1..e2f920af7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.85.4 (2025-02-22) + +Full Changelog: [v4.85.3...v4.85.4](https://github.com/openai/openai-node/compare/v4.85.3...v4.85.4) + +### Chores + +* **internal:** fix devcontainers setup ([#1343](https://github.com/openai/openai-node/issues/1343)) ([cb1ec90](https://github.com/openai/openai-node/commit/cb1ec907832e325bc29abe94ae325e0477cb87d1)) + ## 4.85.3 (2025-02-20) Full Changelog: [v4.85.2...v4.85.3](https://github.com/openai/openai-node/compare/v4.85.2...v4.85.3) diff --git a/jsr.json b/jsr.json index 3c480dc70..7ced58a9c 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.85.3", + "version": "4.85.4", "exports": { ".": "./index.ts", "./helpers/zod": "./helpers/zod.ts", diff --git a/package.json b/package.json index 5fdd39fdc..38572079f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.85.3", + "version": "4.85.4", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 679cac2c7..ebfb680f1 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.85.3'; // x-release-please-version +export const VERSION = '4.85.4'; // x-release-please-version From bb269a1a6fda11c533fb88fa1250a342a5a11ed0 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 27 Feb 2025 20:05:21 +0000 Subject: [PATCH 717/725] feat(api): add gpt-4.5-preview (#1349) --- .stats.yml | 2 +- src/resources/beta/assistants.ts | 2 ++ src/resources/beta/realtime/realtime.ts | 24 +++++++++++++++++------- src/resources/beta/realtime/sessions.ts | 24 ++++++++++++++++++++++-- src/resources/chat/chat.ts | 2 ++ src/resources/files.ts | 5 +++++ src/resources/uploads/uploads.ts | 2 +- 7 files changed, 50 insertions(+), 11 deletions(-) diff --git a/.stats.yml b/.stats.yml index 658877d3b..163146e38 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 74 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-4aa6ee65ba9efc789e05e6a5ef0883b2cadf06def8efd863dbf75e9e233067e1.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-5d30684c3118d049682ea30cdb4dbef39b97d51667da484689193dc40162af32.yml diff --git a/src/resources/beta/assistants.ts b/src/resources/beta/assistants.ts index 0cc63d691..919bf53b3 100644 --- a/src/resources/beta/assistants.ts +++ b/src/resources/beta/assistants.ts @@ -1310,6 +1310,8 @@ export interface AssistantUpdateParams { | 'gpt-4o-2024-05-13' | 'gpt-4o-mini' | 'gpt-4o-mini-2024-07-18' + | 'gpt-4.5-preview' + | 'gpt-4.5-preview-2025-02-27' | 'gpt-4-turbo' | 'gpt-4-turbo-2024-04-09' | 'gpt-4-0125-preview' diff --git a/src/resources/beta/realtime/realtime.ts b/src/resources/beta/realtime/realtime.ts index e46dcdaaf..5e2b1c833 100644 --- a/src/resources/beta/realtime/realtime.ts +++ b/src/resources/beta/realtime/realtime.ts @@ -1796,11 +1796,14 @@ export interface SessionCreatedEvent { /** * Send this event to update the session’s default configuration. The client may - * send this event at any time to update the session configuration, and any field - * may be updated at any time, except for "voice". The server will respond with a - * `session.updated` event that shows the full effective configuration. Only fields - * that are present are updated, thus the correct way to clear a field like - * "instructions" is to pass an empty string. + * send this event at any time to update any field, except for `voice`. However, + * note that once a session has been initialized with a particular `model`, it + * can’t be changed to another model using `session.update`. + * + * When the server receives a `session.update`, it will respond with a + * `session.updated` event showing the full, effective configuration. Only the + * fields that are present are updated. To clear a field like `instructions`, pass + * an empty string. */ export interface SessionUpdateEvent { /** @@ -1982,11 +1985,18 @@ export namespace SessionUpdateEvent { */ export interface TurnDetection { /** - * Whether or not to automatically generate a response when VAD is enabled. `true` - * by default. + * Whether or not to automatically generate a response when a VAD stop event + * occurs. `true` by default. */ create_response?: boolean; + /** + * Whether or not to automatically interrupt any ongoing response with output to + * the default conversation (i.e. `conversation` of `auto`) when a VAD start event + * occurs. `true` by default. + */ + interrupt_response?: boolean; + /** * Amount of audio to include before the VAD detected speech (in milliseconds). * Defaults to 300ms. diff --git a/src/resources/beta/realtime/sessions.ts b/src/resources/beta/realtime/sessions.ts index d2afa25b1..a99c9e045 100644 --- a/src/resources/beta/realtime/sessions.ts +++ b/src/resources/beta/realtime/sessions.ts @@ -168,6 +168,19 @@ export namespace Session { * volume and respond at the end of user speech. */ export interface TurnDetection { + /** + * Whether or not to automatically generate a response when a VAD stop event + * occurs. `true` by default. + */ + create_response?: boolean; + + /** + * Whether or not to automatically interrupt any ongoing response with output to + * the default conversation (i.e. `conversation` of `auto`) when a VAD start event + * occurs. `true` by default. + */ + interrupt_response?: boolean; + /** * Amount of audio to include before the VAD detected speech (in milliseconds). * Defaults to 300ms. @@ -532,11 +545,18 @@ export namespace SessionCreateParams { */ export interface TurnDetection { /** - * Whether or not to automatically generate a response when VAD is enabled. `true` - * by default. + * Whether or not to automatically generate a response when a VAD stop event + * occurs. `true` by default. */ create_response?: boolean; + /** + * Whether or not to automatically interrupt any ongoing response with output to + * the default conversation (i.e. `conversation` of `auto`) when a VAD start event + * occurs. `true` by default. + */ + interrupt_response?: boolean; + /** * Amount of audio to include before the VAD detected speech (in milliseconds). * Defaults to 300ms. diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 5bceec45a..627b4fc23 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -61,6 +61,8 @@ export type ChatModel = | 'o1-preview-2024-09-12' | 'o1-mini' | 'o1-mini-2024-09-12' + | 'gpt-4.5-preview' + | 'gpt-4.5-preview-2025-02-27' | 'gpt-4o' | 'gpt-4o-2024-11-20' | 'gpt-4o-2024-08-06' diff --git a/src/resources/files.ts b/src/resources/files.ts index 67bc95469..f5f23dcad 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -173,6 +173,11 @@ export interface FileObject { */ status: 'uploaded' | 'processed' | 'error'; + /** + * The Unix timestamp (in seconds) for when the file will expire. + */ + expires_at?: number; + /** * @deprecated Deprecated. For details on why a fine-tuning training file failed * validation, see the `error` field on `fine_tuning.job`. diff --git a/src/resources/uploads/uploads.ts b/src/resources/uploads/uploads.ts index bfe752cd7..f977e18f6 100644 --- a/src/resources/uploads/uploads.ts +++ b/src/resources/uploads/uploads.ts @@ -86,7 +86,7 @@ export interface Upload { created_at: number; /** - * The Unix timestamp (in seconds) for when the Upload was created. + * The Unix timestamp (in seconds) for when the Upload will expire. */ expires_at: number; From f93c5bc81d2b58dd821b9c11a789d2750951837d Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 27 Feb 2025 20:05:52 +0000 Subject: [PATCH 718/725] release: 4.86.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6fc92ed1e..28ebbc3ab 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.85.4" + ".": "4.86.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e2f920af7..48445f98a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.86.0 (2025-02-27) + +Full Changelog: [v4.85.4...v4.86.0](https://github.com/openai/openai-node/compare/v4.85.4...v4.86.0) + +### Features + +* **api:** add gpt-4.5-preview ([#1349](https://github.com/openai/openai-node/issues/1349)) ([2a1d36b](https://github.com/openai/openai-node/commit/2a1d36b560323fca058f98607775642370e90a47)) + ## 4.85.4 (2025-02-22) Full Changelog: [v4.85.3...v4.85.4](https://github.com/openai/openai-node/compare/v4.85.3...v4.85.4) diff --git a/jsr.json b/jsr.json index 7ced58a9c..28a13dd6b 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.85.4", + "version": "4.86.0", "exports": { ".": "./index.ts", "./helpers/zod": "./helpers/zod.ts", diff --git a/package.json b/package.json index 38572079f..be7052b15 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.85.4", + "version": "4.86.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index ebfb680f1..d342ca5d3 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.85.4'; // x-release-please-version +export const VERSION = '4.86.0'; // x-release-please-version From 634a209a6025640e2849133f6997af8faa28d4d8 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 27 Feb 2025 22:00:53 +0000 Subject: [PATCH 719/725] docs: update URLs from stainlessapi.com to stainless.com (#1352) More details at https://www.stainless.com/changelog/stainless-com --- SECURITY.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SECURITY.md b/SECURITY.md index c54acaf33..3b3bd8a66 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -2,9 +2,9 @@ ## Reporting Security Issues -This SDK is generated by [Stainless Software Inc](http://stainlessapi.com). Stainless takes security seriously, and encourages you to report any security vulnerability promptly so that appropriate action can be taken. +This SDK is generated by [Stainless Software Inc](http://stainless.com). Stainless takes security seriously, and encourages you to report any security vulnerability promptly so that appropriate action can be taken. -To report a security issue, please contact the Stainless team at security@stainlessapi.com. +To report a security issue, please contact the Stainless team at security@stainless.com. ## Responsible Disclosure From 0d3045ea19e34712fb395000545fcce3f9201149 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 27 Feb 2025 22:01:25 +0000 Subject: [PATCH 720/725] release: 4.86.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 28ebbc3ab..92b3782ff 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.86.0" + ".": "4.86.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 48445f98a..9dd57c5ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.86.1 (2025-02-27) + +Full Changelog: [v4.86.0...v4.86.1](https://github.com/openai/openai-node/compare/v4.86.0...v4.86.1) + +### Documentation + +* update URLs from stainlessapi.com to stainless.com ([#1352](https://github.com/openai/openai-node/issues/1352)) ([8294e9e](https://github.com/openai/openai-node/commit/8294e9ef57ed98722105b56d205ebea9d028f671)) + ## 4.86.0 (2025-02-27) Full Changelog: [v4.85.4...v4.86.0](https://github.com/openai/openai-node/compare/v4.85.4...v4.86.0) diff --git a/jsr.json b/jsr.json index 28a13dd6b..c3addf639 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.86.0", + "version": "4.86.1", "exports": { ".": "./index.ts", "./helpers/zod": "./helpers/zod.ts", diff --git a/package.json b/package.json index be7052b15..236815732 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.86.0", + "version": "4.86.1", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index d342ca5d3..759b28a99 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.86.0'; // x-release-please-version +export const VERSION = '4.86.1'; // x-release-please-version From 1044c487566569e773d5f6c1a94ce6b614e62b80 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 4 Mar 2025 21:17:33 +0000 Subject: [PATCH 721/725] chore(internal): run example files in CI (#1357) --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85d792c44..fe24c0dcb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,6 +65,26 @@ jobs: - name: Run tests run: ./scripts/test + examples: + name: examples + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: '18' + - name: Install dependencies + run: | + yarn install + + - env: + OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} + run: | + yarn tsn examples/demo.ts + ecosystem_tests: name: ecosystem tests (v${{ matrix.node-version }}) runs-on: ubuntu-latest From 6e00ac242554d5f2b86852a082cab2538c605bc9 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 5 Mar 2025 05:07:14 +0000 Subject: [PATCH 722/725] release: 4.86.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 92b3782ff..a889d24b4 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.86.1" + ".": "4.86.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dd57c5ae..38d54fdc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.86.2 (2025-03-05) + +Full Changelog: [v4.86.1...v4.86.2](https://github.com/openai/openai-node/compare/v4.86.1...v4.86.2) + +### Chores + +* **internal:** run example files in CI ([#1357](https://github.com/openai/openai-node/issues/1357)) ([88d0050](https://github.com/openai/openai-node/commit/88d0050336749deb3810b4cb43473de1f84e42bd)) + ## 4.86.1 (2025-02-27) Full Changelog: [v4.86.0...v4.86.1](https://github.com/openai/openai-node/compare/v4.86.0...v4.86.1) diff --git a/jsr.json b/jsr.json index c3addf639..1c0948aaa 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.86.1", + "version": "4.86.2", "exports": { ".": "./index.ts", "./helpers/zod": "./helpers/zod.ts", diff --git a/package.json b/package.json index 236815732..78afb8946 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.86.1", + "version": "4.86.2", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 759b28a99..c43a3c320 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.86.1'; // x-release-please-version +export const VERSION = '4.86.2'; // x-release-please-version From 06122424a4d783aff07b7089b64986fb35bc24e4 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Tue, 11 Mar 2025 11:29:02 -0400 Subject: [PATCH 723/725] feat(api): add /v1/responses and built-in tools [platform.openai.com/docs/changelog](http://platform.openai.com/docs/changelog) --- .stats.yml | 4 +- README.md | 151 +- api.md | 224 +- examples/responses/stream.ts | 24 + examples/responses/streaming-tools.ts | 52 + .../responses/structured-outputs-tools.ts | 60 + examples/responses/structured-outputs.ts | 32 + examples/yarn.lock | 0 scripts/bootstrap | 2 +- src/core.ts | 4 +- src/helpers/zod.ts | 46 + src/index.ts | 58 +- src/lib/ResponsesParser.ts | 262 ++ src/lib/parser.ts | 28 + src/lib/responses/EventTypes.ts | 76 + src/lib/responses/ResponseStream.ts | 298 ++ src/resources/beta/assistants.ts | 55 +- src/resources/beta/beta.ts | 37 - src/resources/beta/index.ts | 16 - src/resources/beta/threads/runs/runs.ts | 7 +- src/resources/beta/threads/threads.ts | 90 +- src/resources/chat/chat.ts | 46 +- src/resources/chat/completions/completions.ts | 290 +- src/resources/chat/completions/index.ts | 1 - src/resources/chat/completions/messages.ts | 2 +- src/resources/chat/index.ts | 3 +- src/resources/files.ts | 26 +- src/resources/index.ts | 20 + src/resources/responses/index.ts | 9 + src/resources/responses/input-items.ts | 276 ++ src/resources/responses/responses.ts | 2761 +++++++++++++++++ src/resources/shared.ts | 156 +- src/resources/uploads/uploads.ts | 7 +- .../{beta => }/vector-stores/file-batches.ts | 23 +- .../{beta => }/vector-stores/files.ts | 89 +- .../{beta => }/vector-stores/index.ts | 6 + .../{beta => }/vector-stores/vector-stores.ts | 130 +- src/streaming.ts | 2 +- .../chat/completions/completions.test.ts | 11 +- .../responses/input-items.test.ts | 40 + .../responses.test.ts} | 68 +- .../vector-stores/file-batches.test.ts | 21 +- .../api-resources/vector-stores/files.test.ts | 132 + .../vector-stores/vector-stores.test.ts | 39 +- 44 files changed, 5226 insertions(+), 458 deletions(-) create mode 100755 examples/responses/stream.ts create mode 100755 examples/responses/streaming-tools.ts create mode 100755 examples/responses/structured-outputs-tools.ts create mode 100755 examples/responses/structured-outputs.ts create mode 100644 examples/yarn.lock create mode 100644 src/lib/ResponsesParser.ts create mode 100644 src/lib/responses/EventTypes.ts create mode 100644 src/lib/responses/ResponseStream.ts create mode 100644 src/resources/responses/index.ts create mode 100644 src/resources/responses/input-items.ts create mode 100644 src/resources/responses/responses.ts rename src/resources/{beta => }/vector-stores/file-batches.ts (92%) rename src/resources/{beta => }/vector-stores/files.ts (74%) rename src/resources/{beta => }/vector-stores/index.ts (82%) rename src/resources/{beta => }/vector-stores/vector-stores.ts (77%) create mode 100644 tests/api-resources/responses/input-items.test.ts rename tests/api-resources/{beta/vector-stores/files.test.ts => responses/responses.test.ts} (58%) rename tests/api-resources/{beta => }/vector-stores/file-batches.test.ts (81%) create mode 100644 tests/api-resources/vector-stores/files.test.ts rename tests/api-resources/{beta => }/vector-stores/vector-stores.test.ts (71%) diff --git a/.stats.yml b/.stats.yml index 163146e38..455874212 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ -configured_endpoints: 74 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-5d30684c3118d049682ea30cdb4dbef39b97d51667da484689193dc40162af32.yml +configured_endpoints: 81 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-be834d63e326a82494e819085137f5eb15866f3fc787db1f3afe7168d419e18a.yml diff --git a/README.md b/README.md index 166e35e22..8515c81ed 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,3 @@ -> [!IMPORTANT] -> We're actively working on a new alpha version that migrates from `node-fetch` to builtin fetch. -> -> Please try it out and let us know if you run into any issues! -> https://community.openai.com/t/your-feedback-requested-node-js-sdk-5-0-0-alpha/1063774 - # OpenAI TypeScript and JavaScript API Library [![NPM version](https://img.shields.io/npm/v/openai.svg)](https://npmjs.org/package/openai) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/openai) [![JSR Version](https://jsr.io/badges/@openai/openai)](https://jsr.io/@openai/openai) @@ -27,9 +21,7 @@ deno add jsr:@openai/openai npx jsr add @openai/openai ``` -These commands will make the module importable from the `@openai/openai` scope: - -You can also [import directly from JSR](https://jsr.io/docs/using-packages#importing-with-jsr-specifiers) without an install step if you're using the Deno JavaScript runtime: +These commands will make the module importable from the `@openai/openai` scope. You can also [import directly from JSR](https://jsr.io/docs/using-packages#importing-with-jsr-specifiers) without an install step if you're using the Deno JavaScript runtime: ```ts import OpenAI from 'jsr:@openai/openai'; @@ -37,9 +29,10 @@ import OpenAI from 'jsr:@openai/openai'; ## Usage -The full API of this library can be found in [api.md file](api.md) along with many [code examples](https://github.com/openai/openai-node/tree/master/examples). The code below shows how to get started using the chat completions API. +The full API of this library can be found in [api.md file](api.md) along with many [code examples](https://github.com/openai/openai-node/tree/master/examples). + +The primary API for interacting with OpenAI models is the [Responses API](https://platform.openai.com/docs/api-reference/responses). You can generate text from the model with the code below. - ```ts import OpenAI from 'openai'; @@ -47,100 +40,55 @@ const client = new OpenAI({ apiKey: process.env['OPENAI_API_KEY'], // This is the default and can be omitted }); -async function main() { - const chatCompletion = await client.chat.completions.create({ - messages: [{ role: 'user', content: 'Say this is a test' }], - model: 'gpt-4o', - }); -} +const response = await client.responses.create({ + model: 'gpt-4o', + instructions: 'You are a coding assistant that talks like a pirate', + input: 'Are semicolons optional in JavaScript?', +}); -main(); +console.log(response.output_text); ``` -## Streaming responses - -We provide support for streaming responses using Server Sent Events (SSE). +The previous standard (supported indefinitely) for generating text is the [Chat Completions API](https://platform.openai.com/docs/api-reference/chat). You can use that API to generate text from the model with the code below. ```ts import OpenAI from 'openai'; -const client = new OpenAI(); +const client = new OpenAI({ + apiKey: process.env['OPENAI_API_KEY'], // This is the default and can be omitted +}); -async function main() { - const stream = await client.chat.completions.create({ - model: 'gpt-4o', - messages: [{ role: 'user', content: 'Say this is a test' }], - stream: true, - }); - for await (const chunk of stream) { - process.stdout.write(chunk.choices[0]?.delta?.content || ''); - } -} +const completion = await client.chat.completions.create({ + model: 'gpt-4o', + messages: [ + { role: 'developer', content: 'Talk like a pirate.' }, + { role: 'user', content: 'Are semicolons optional in JavaScript?' }, + ], +}); -main(); +console.log(completion.choices[0].message.content); ``` -If you need to cancel a stream, you can `break` from the loop or call `stream.controller.abort()`. - -### Chat Completion streaming helpers +## Streaming responses -This library also provides several conveniences for streaming chat completions, for example: +We provide support for streaming responses using Server Sent Events (SSE). ```ts import OpenAI from 'openai'; -const openai = new OpenAI(); - -async function main() { - const stream = await openai.beta.chat.completions.stream({ - model: 'gpt-4o', - messages: [{ role: 'user', content: 'Say this is a test' }], - stream: true, - }); - - stream.on('content', (delta, snapshot) => { - process.stdout.write(delta); - }); - - // or, equivalently: - for await (const chunk of stream) { - process.stdout.write(chunk.choices[0]?.delta?.content || ''); - } - - const chatCompletion = await stream.finalChatCompletion(); - console.log(chatCompletion); // {id: "…", choices: […], …} -} - -main(); -``` - -See [helpers.md](helpers.md#chat-events) for more details. - -### Request & Response types - -This library includes TypeScript definitions for all request params and response fields. You may import and use them like so: - - -```ts -import OpenAI from 'openai'; +const client = new OpenAI(); -const client = new OpenAI({ - apiKey: process.env['OPENAI_API_KEY'], // This is the default and can be omitted +const stream = await client.responses.create({ + model: 'gpt-4o', + input: 'Say "Sheep sleep deep" ten times fast!', + stream: true, }); -async function main() { - const params: OpenAI.Chat.ChatCompletionCreateParams = { - messages: [{ role: 'user', content: 'Say this is a test' }], - model: 'gpt-4o', - }; - const chatCompletion: OpenAI.Chat.ChatCompletion = await client.chat.completions.create(params); +for await (const event of stream) { + console.log(event); } - -main(); ``` -Documentation for each method, request param, and response field are available in docstrings and will appear on hover in most modern editors. - ## File uploads Request parameters that correspond to file uploads can be passed in many different forms: @@ -265,17 +213,17 @@ Note that requests which time out will be [retried twice by default](#retries). All object responses in the SDK provide a `_request_id` property which is added from the `x-request-id` response header so that you can quickly log failing requests and report them back to OpenAI. ```ts -const completion = await client.chat.completions.create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-4o' }); -console.log(completion._request_id) // req_123 +const response = await client.responses.create({ model: 'gpt-4o', input: 'testing 123' }); +console.log(response._request_id) // req_123 ``` You can also access the Request ID using the `.withResponse()` method: ```ts -const { data: stream, request_id } = await openai.chat.completions +const { data: stream, request_id } = await openai.responses .create({ - model: 'gpt-4', - messages: [{ role: 'user', content: 'Say this is a test' }], + model: 'gpt-4o', + input: 'Say this is a test', stream: true, }) .withResponse(); @@ -355,12 +303,6 @@ console.log(result.choices[0]!.message?.content); For more information on support for the Azure API, see [azure.md](azure.md). -## Automated function calls - -We provide the `openai.beta.chat.completions.runTools({…})` convenience helper for using function tool calls with the `/chat/completions` endpoint which automatically call the JavaScript functions you provide and sends their results back to the `/chat/completions` endpoint, looping as long as the model requests tool calls. - -For more information see [helpers.md](helpers.md#automated-function-calls). - ## Advanced Usage ### Accessing raw Response data (e.g., headers) @@ -373,17 +315,19 @@ You can also use the `.withResponse()` method to get the raw `Response` along wi ```ts const client = new OpenAI(); -const response = await client.chat.completions - .create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-4o' }) +const httpResponse = await client.responses + .create({ model: 'gpt-4o', input: 'say this is a test.' }) .asResponse(); -console.log(response.headers.get('X-My-Header')); -console.log(response.statusText); // access the underlying Response object -const { data: chatCompletion, response: raw } = await client.chat.completions - .create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'gpt-4o' }) +// access the underlying web standard Response object +console.log(httpResponse.headers.get('X-My-Header')); +console.log(httpResponse.statusText); + +const { data: modelResponse, response: raw } = await client.responses + .create({ model: 'gpt-4o', input: 'say this is a test.' }) .withResponse(); console.log(raw.headers.get('X-My-Header')); -console.log(chatCompletion); +console.log(modelResponse); ``` ### Making custom/undocumented requests @@ -432,6 +376,11 @@ validate or strip extra properties from the response from the API. ### Customizing the fetch client +> We're actively working on a new alpha version that migrates from `node-fetch` to builtin fetch. +> +> Please try it out and let us know if you run into any issues! +> https://community.openai.com/t/your-feedback-requested-node-js-sdk-5-0-0-alpha/1063774 + By default, this library uses `node-fetch` in Node, and expects a global `fetch` function in other environments. If you would prefer to use a global, web-standards-compliant `fetch` function even in a Node environment, diff --git a/api.md b/api.md index 63f239628..b21ac2d5f 100644 --- a/api.md +++ b/api.md @@ -2,10 +2,15 @@ Types: +- ChatModel +- ComparisonFilter +- CompoundFilter - ErrorObject - FunctionDefinition - FunctionParameters - Metadata +- Reasoning +- ReasoningEffort - ResponseFormatJSONObject - ResponseFormatJSONSchema - ResponseFormatText @@ -52,7 +57,6 @@ Types: - ChatCompletionModality - ChatCompletionNamedToolChoice - ChatCompletionPredictionContent -- ChatCompletionReasoningEffort - ChatCompletionRole - ChatCompletionStoreMessage - ChatCompletionStreamOptions @@ -63,6 +67,7 @@ Types: - ChatCompletionToolMessageParam - ChatCompletionUserMessageParam - CreateChatCompletionRequestMessage +- ChatCompletionReasoningEffort Methods: @@ -224,6 +229,67 @@ Methods: - client.fineTuning.jobs.checkpoints.list(fineTuningJobId, { ...params }) -> FineTuningJobCheckpointsPage +# VectorStores + +Types: + +- AutoFileChunkingStrategyParam +- FileChunkingStrategy +- FileChunkingStrategyParam +- OtherFileChunkingStrategyObject +- StaticFileChunkingStrategy +- StaticFileChunkingStrategyObject +- StaticFileChunkingStrategyObjectParam +- VectorStore +- VectorStoreDeleted +- VectorStoreSearchResponse + +Methods: + +- client.vectorStores.create({ ...params }) -> VectorStore +- client.vectorStores.retrieve(vectorStoreId) -> VectorStore +- client.vectorStores.update(vectorStoreId, { ...params }) -> VectorStore +- client.vectorStores.list({ ...params }) -> VectorStoresPage +- client.vectorStores.del(vectorStoreId) -> VectorStoreDeleted +- client.vectorStores.search(vectorStoreId, { ...params }) -> VectorStoreSearchResponsesPage + +## Files + +Types: + +- VectorStoreFile +- VectorStoreFileDeleted +- FileContentResponse + +Methods: + +- client.vectorStores.files.create(vectorStoreId, { ...params }) -> VectorStoreFile +- client.vectorStores.files.retrieve(vectorStoreId, fileId) -> VectorStoreFile +- client.vectorStores.files.update(vectorStoreId, fileId, { ...params }) -> VectorStoreFile +- client.vectorStores.files.list(vectorStoreId, { ...params }) -> VectorStoreFilesPage +- client.vectorStores.files.del(vectorStoreId, fileId) -> VectorStoreFileDeleted +- client.vectorStores.files.content(vectorStoreId, fileId) -> FileContentResponsesPage +- client.beta.vectorStores.files.createAndPoll(vectorStoreId, body, options?) -> Promise<VectorStoreFile> +- client.beta.vectorStores.files.poll(vectorStoreId, fileId, options?) -> Promise<VectorStoreFile> +- client.beta.vectorStores.files.upload(vectorStoreId, file, options?) -> Promise<VectorStoreFile> +- client.beta.vectorStores.files.uploadAndPoll(vectorStoreId, file, options?) -> Promise<VectorStoreFile> + +## FileBatches + +Types: + +- VectorStoreFileBatch + +Methods: + +- client.vectorStores.fileBatches.create(vectorStoreId, { ...params }) -> VectorStoreFileBatch +- client.vectorStores.fileBatches.retrieve(vectorStoreId, batchId) -> VectorStoreFileBatch +- client.vectorStores.fileBatches.cancel(vectorStoreId, batchId) -> VectorStoreFileBatch +- client.vectorStores.fileBatches.listFiles(vectorStoreId, batchId, { ...params }) -> VectorStoreFilesPage +- client.beta.vectorStores.fileBatches.createAndPoll(vectorStoreId, body, options?) -> Promise<VectorStoreFileBatch> +- client.beta.vectorStores.fileBatches.poll(vectorStoreId, batchId, options?) -> Promise<VectorStoreFileBatch> +- client.beta.vectorStores.fileBatches.uploadAndPoll(vectorStoreId, { files, fileIds = [] }, options?) -> Promise<VectorStoreFileBatch> + # Beta ## Realtime @@ -287,72 +353,6 @@ Methods: - client.beta.realtime.sessions.create({ ...params }) -> SessionCreateResponse -## VectorStores - -Types: - -- AutoFileChunkingStrategyParam -- FileChunkingStrategy -- FileChunkingStrategyParam -- OtherFileChunkingStrategyObject -- StaticFileChunkingStrategy -- StaticFileChunkingStrategyObject -- StaticFileChunkingStrategyObjectParam -- VectorStore -- VectorStoreDeleted - -Methods: - -- client.beta.vectorStores.create({ ...params }) -> VectorStore -- client.beta.vectorStores.retrieve(vectorStoreId) -> VectorStore -- client.beta.vectorStores.update(vectorStoreId, { ...params }) -> VectorStore -- client.beta.vectorStores.list({ ...params }) -> VectorStoresPage -- client.beta.vectorStores.del(vectorStoreId) -> VectorStoreDeleted - -### Files - -Types: - -- VectorStoreFile -- VectorStoreFileDeleted - -Methods: - -- client.beta.vectorStores.files.create(vectorStoreId, { ...params }) -> VectorStoreFile -- client.beta.vectorStores.files.retrieve(vectorStoreId, fileId) -> VectorStoreFile -- client.beta.vectorStores.files.list(vectorStoreId, { ...params }) -> VectorStoreFilesPage -- client.beta.vectorStores.files.del(vectorStoreId, fileId) -> VectorStoreFileDeleted -- client.beta.vectorStores.files.createAndPoll(vectorStoreId, body, options?) -> Promise<VectorStoreFile> -- client.beta.vectorStores.files.poll(vectorStoreId, fileId, options?) -> Promise<VectorStoreFile> -- client.beta.vectorStores.files.upload(vectorStoreId, file, options?) -> Promise<VectorStoreFile> -- client.beta.vectorStores.files.uploadAndPoll(vectorStoreId, file, options?) -> Promise<VectorStoreFile> - -### FileBatches - -Types: - -- VectorStoreFileBatch - -Methods: - -- client.beta.vectorStores.fileBatches.create(vectorStoreId, { ...params }) -> VectorStoreFileBatch -- client.beta.vectorStores.fileBatches.retrieve(vectorStoreId, batchId) -> VectorStoreFileBatch -- client.beta.vectorStores.fileBatches.cancel(vectorStoreId, batchId) -> VectorStoreFileBatch -- client.beta.vectorStores.fileBatches.listFiles(vectorStoreId, batchId, { ...params }) -> VectorStoreFilesPage -- client.beta.vectorStores.fileBatches.createAndPoll(vectorStoreId, body, options?) -> Promise<VectorStoreFileBatch> -- client.beta.vectorStores.fileBatches.poll(vectorStoreId, batchId, options?) -> Promise<VectorStoreFileBatch> -- client.beta.vectorStores.fileBatches.uploadAndPoll(vectorStoreId, { files, fileIds = [] }, options?) -> Promise<VectorStoreFileBatch> - -## Chat - -### Completions - -Methods: - -- client.beta.chat.completions.runFunctions(body, options?) -> ChatCompletionRunner | ChatCompletionStreamingRunner -- client.beta.chat.completions.runTools(body, options?) -> ChatCompletionRunner | ChatCompletionStreamingRunner -- client.beta.chat.completions.stream(body, options?) -> ChatCompletionStream - ## Assistants Types: @@ -526,3 +526,93 @@ Types: Methods: - client.uploads.parts.create(uploadId, { ...params }) -> UploadPart + +# Responses + +Types: + +- ComputerTool +- EasyInputMessage +- FileSearchTool +- FunctionTool +- Response +- ResponseAudioDeltaEvent +- ResponseAudioDoneEvent +- ResponseAudioTranscriptDeltaEvent +- ResponseAudioTranscriptDoneEvent +- ResponseCodeInterpreterCallCodeDeltaEvent +- ResponseCodeInterpreterCallCodeDoneEvent +- ResponseCodeInterpreterCallCompletedEvent +- ResponseCodeInterpreterCallInProgressEvent +- ResponseCodeInterpreterCallInterpretingEvent +- ResponseCodeInterpreterToolCall +- ResponseCompletedEvent +- ResponseComputerToolCall +- ResponseContent +- ResponseContentPartAddedEvent +- ResponseContentPartDoneEvent +- ResponseCreatedEvent +- ResponseError +- ResponseErrorEvent +- ResponseFailedEvent +- ResponseFileSearchCallCompletedEvent +- ResponseFileSearchCallInProgressEvent +- ResponseFileSearchCallSearchingEvent +- ResponseFileSearchToolCall +- ResponseFormatTextConfig +- ResponseFormatTextJSONSchemaConfig +- ResponseFunctionCallArgumentsDeltaEvent +- ResponseFunctionCallArgumentsDoneEvent +- ResponseFunctionToolCall +- ResponseFunctionWebSearch +- ResponseInProgressEvent +- ResponseIncludable +- ResponseIncompleteEvent +- ResponseInput +- ResponseInputAudio +- ResponseInputContent +- ResponseInputFile +- ResponseInputImage +- ResponseInputItem +- ResponseInputMessageContentList +- ResponseInputText +- ResponseOutputAudio +- ResponseOutputItem +- ResponseOutputItemAddedEvent +- ResponseOutputItemDoneEvent +- ResponseOutputMessage +- ResponseOutputRefusal +- ResponseOutputText +- ResponseRefusalDeltaEvent +- ResponseRefusalDoneEvent +- ResponseStatus +- ResponseStreamEvent +- ResponseTextAnnotationDeltaEvent +- ResponseTextConfig +- ResponseTextDeltaEvent +- ResponseTextDoneEvent +- ResponseUsage +- ResponseWebSearchCallCompletedEvent +- ResponseWebSearchCallInProgressEvent +- ResponseWebSearchCallSearchingEvent +- Tool +- ToolChoiceFunction +- ToolChoiceOptions +- ToolChoiceTypes +- WebSearchTool + +Methods: + +- client.responses.create({ ...params }) -> Response +- client.responses.retrieve(responseId, { ...params }) -> Response +- client.responses.del(responseId) -> void + +## InputItems + +Types: + +- ResponseItemList + +Methods: + +- client.responses.inputItems.list(responseId, { ...params }) -> ResponseItemListDataPage diff --git a/examples/responses/stream.ts b/examples/responses/stream.ts new file mode 100755 index 000000000..ea3d0849e --- /dev/null +++ b/examples/responses/stream.ts @@ -0,0 +1,24 @@ +#!/usr/bin/env -S npm run tsn -T + +import OpenAI from 'openai'; + +const openai = new OpenAI(); + +async function main() { + const runner = openai.responses + .stream({ + model: 'gpt-4o-2024-08-06', + input: 'solve 8x + 31 = 2', + }) + .on('event', (event) => console.log(event)) + .on('response.output_text.delta', (diff) => process.stdout.write(diff.delta)); + + for await (const event of runner) { + console.log('event', event); + } + + const result = await runner.finalResponse(); + console.log(result); +} + +main(); diff --git a/examples/responses/streaming-tools.ts b/examples/responses/streaming-tools.ts new file mode 100755 index 000000000..87a48d0c3 --- /dev/null +++ b/examples/responses/streaming-tools.ts @@ -0,0 +1,52 @@ +#!/usr/bin/env -S npm run tsn -T + +import { OpenAI } from 'openai'; +import { zodResponsesFunction } from 'openai/helpers/zod'; +import { z } from 'zod'; + +const Table = z.enum(['orders', 'customers', 'products']); +const Column = z.enum([ + 'id', + 'status', + 'expected_delivery_date', + 'delivered_at', + 'shipped_at', + 'ordered_at', + 'canceled_at', +]); +const Operator = z.enum(['=', '>', '<', '<=', '>=', '!=']); +const OrderBy = z.enum(['asc', 'desc']); +const DynamicValue = z.object({ + column_name: Column, +}); + +const Condition = z.object({ + column: Column, + operator: Operator, + value: z.union([z.string(), z.number(), DynamicValue]), +}); + +const Query = z.object({ + table_name: Table, + columns: z.array(Column), + conditions: z.array(Condition), + order_by: OrderBy, +}); + +async function main() { + const client = new OpenAI(); + + const tool = zodResponsesFunction({ name: 'query', parameters: Query }); + + const stream = client.responses.stream({ + model: 'gpt-4o-2024-08-06', + input: 'look up all my orders in november of last year that were fulfilled but not delivered on time', + tools: [tool], + }); + + for await (const event of stream) { + console.dir(event, { depth: 10 }); + } +} + +main(); diff --git a/examples/responses/structured-outputs-tools.ts b/examples/responses/structured-outputs-tools.ts new file mode 100755 index 000000000..29eaabf93 --- /dev/null +++ b/examples/responses/structured-outputs-tools.ts @@ -0,0 +1,60 @@ +#!/usr/bin/env -S npm run tsn -T + +import { OpenAI } from 'openai'; +import { zodResponsesFunction } from 'openai/helpers/zod'; +import { z } from 'zod'; + +const Table = z.enum(['orders', 'customers', 'products']); +const Column = z.enum([ + 'id', + 'status', + 'expected_delivery_date', + 'delivered_at', + 'shipped_at', + 'ordered_at', + 'canceled_at', +]); +const Operator = z.enum(['=', '>', '<', '<=', '>=', '!=']); +const OrderBy = z.enum(['asc', 'desc']); +const DynamicValue = z.object({ + column_name: Column, +}); + +const Condition = z.object({ + column: Column, + operator: Operator, + value: z.union([z.string(), z.number(), DynamicValue]), +}); + +const Query = z.object({ + table_name: Table, + columns: z.array(Column), + conditions: z.array(Condition), + order_by: OrderBy, +}); + +async function main() { + const client = new OpenAI(); + + const tool = zodResponsesFunction({ name: 'query', parameters: Query }); + + const rsp = await client.responses.parse({ + model: 'gpt-4o-2024-08-06', + input: 'look up all my orders in november of last year that were fulfilled but not delivered on time', + tools: [tool], + }); + + console.log(rsp); + + const functionCall = rsp.output[0]!; + + if (functionCall.type !== 'function_call') { + throw new Error('Expected function call'); + } + + const query = functionCall.parsed_arguments; + + console.log(query); +} + +main(); diff --git a/examples/responses/structured-outputs.ts b/examples/responses/structured-outputs.ts new file mode 100755 index 000000000..07ff93a60 --- /dev/null +++ b/examples/responses/structured-outputs.ts @@ -0,0 +1,32 @@ +#!/usr/bin/env -S npm run tsn -T + +import { OpenAI } from 'openai'; +import { zodTextFormat } from 'openai/helpers/zod'; +import { z } from 'zod'; + +const Step = z.object({ + explanation: z.string(), + output: z.string(), +}); + +const MathResponse = z.object({ + steps: z.array(Step), + final_answer: z.string(), +}); + +const client = new OpenAI(); + +async function main() { + const rsp = await client.responses.parse({ + input: 'solve 8x + 31 = 2', + model: 'gpt-4o-2024-08-06', + text: { + format: zodTextFormat(MathResponse, 'math_response'), + }, + }); + + console.log(rsp.output_parsed); + console.log('answer: ', rsp.output_parsed?.final_answer); +} + +main().catch(console.error); diff --git a/examples/yarn.lock b/examples/yarn.lock new file mode 100644 index 000000000..e69de29bb diff --git a/scripts/bootstrap b/scripts/bootstrap index 033156d3a..f107c3a24 100755 --- a/scripts/bootstrap +++ b/scripts/bootstrap @@ -4,7 +4,7 @@ set -e cd "$(dirname "$0")/.." -if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ]; then +if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ] && [ "$SKIP_BREW" != "1" ]; then brew bundle check >/dev/null 2>&1 || { echo "==> Installing Homebrew dependencies…" brew bundle diff --git a/src/core.ts b/src/core.ts index 6578c0781..a41eaa3fa 100644 --- a/src/core.ts +++ b/src/core.ts @@ -62,8 +62,8 @@ async function defaultParseResponse(props: APIResponseProps): Promise { return _zodToJsonSchema(schema, { @@ -74,6 +78,23 @@ export function zodResponseFormat( ); } +export function zodTextFormat( + zodObject: ZodInput, + name: string, + props?: Omit, +): AutoParseableTextFormat> { + return makeParseableTextFormat( + { + type: 'json_schema', + ...props, + name, + strict: true, + schema: zodToJsonSchema(zodObject, { name }), + }, + (content) => zodObject.parse(JSON.parse(content)), + ); +} + /** * Creates a chat completion `function` tool that can be invoked * automatically by the chat completion `.runTools()` method or automatically @@ -106,3 +127,28 @@ export function zodFunction(options: { }, ); } + +export function zodResponsesFunction(options: { + name: string; + parameters: Parameters; + function?: ((args: zodInfer) => unknown | Promise) | undefined; + description?: string | undefined; +}): AutoParseableResponseTool<{ + arguments: Parameters; + name: string; + function: (args: zodInfer) => unknown; +}> { + return makeParseableResponseTool( + { + type: 'function', + name: options.name, + parameters: zodToJsonSchema(options.parameters, { name: options.name }), + strict: true, + ...(options.description ? { description: options.description } : undefined), + }, + { + callback: options.function, + parser: (args) => options.parameters.parse(JSON.parse(args)), + }, + ); +} diff --git a/src/index.ts b/src/index.ts index debefce8c..c3abed2db 100644 --- a/src/index.ts +++ b/src/index.ts @@ -65,14 +65,34 @@ import { } from './resources/moderations'; import { Audio, AudioModel, AudioResponseFormat } from './resources/audio/audio'; import { Beta } from './resources/beta/beta'; -import { Chat, ChatModel } from './resources/chat/chat'; +import { Chat } from './resources/chat/chat'; import { FineTuning } from './resources/fine-tuning/fine-tuning'; +import { Responses } from './resources/responses/responses'; import { Upload, UploadCompleteParams, UploadCreateParams, Uploads as UploadsAPIUploads, } from './resources/uploads/uploads'; +import { + AutoFileChunkingStrategyParam, + FileChunkingStrategy, + FileChunkingStrategyParam, + OtherFileChunkingStrategyObject, + StaticFileChunkingStrategy, + StaticFileChunkingStrategyObject, + StaticFileChunkingStrategyObjectParam, + VectorStore, + VectorStoreCreateParams, + VectorStoreDeleted, + VectorStoreListParams, + VectorStoreSearchParams, + VectorStoreSearchResponse, + VectorStoreSearchResponsesPage, + VectorStoreUpdateParams, + VectorStores, + VectorStoresPage, +} from './resources/vector-stores/vector-stores'; import { ChatCompletion, ChatCompletionAssistantMessageParam, @@ -98,7 +118,6 @@ import { ChatCompletionModality, ChatCompletionNamedToolChoice, ChatCompletionPredictionContent, - ChatCompletionReasoningEffort, ChatCompletionRole, ChatCompletionStoreMessage, ChatCompletionStreamOptions, @@ -267,9 +286,11 @@ export class OpenAI extends Core.APIClient { moderations: API.Moderations = new API.Moderations(this); models: API.Models = new API.Models(this); fineTuning: API.FineTuning = new API.FineTuning(this); + vectorStores: API.VectorStores = new API.VectorStores(this); beta: API.Beta = new API.Beta(this); batches: API.Batches = new API.Batches(this); uploads: API.Uploads = new API.Uploads(this); + responses: API.Responses = new API.Responses(this); protected override defaultQuery(): Core.DefaultQuery | undefined { return this._options.defaultQuery; @@ -325,10 +346,14 @@ OpenAI.Moderations = Moderations; OpenAI.Models = Models; OpenAI.ModelsPage = ModelsPage; OpenAI.FineTuning = FineTuning; +OpenAI.VectorStores = VectorStores; +OpenAI.VectorStoresPage = VectorStoresPage; +OpenAI.VectorStoreSearchResponsesPage = VectorStoreSearchResponsesPage; OpenAI.Beta = Beta; OpenAI.Batches = Batches; OpenAI.BatchesPage = BatchesPage; OpenAI.Uploads = UploadsAPIUploads; +OpenAI.Responses = Responses; export declare namespace OpenAI { export type RequestOptions = Core.RequestOptions; @@ -350,7 +375,6 @@ export declare namespace OpenAI { export { Chat as Chat, - type ChatModel as ChatModel, type ChatCompletion as ChatCompletion, type ChatCompletionAssistantMessageParam as ChatCompletionAssistantMessageParam, type ChatCompletionAudio as ChatCompletionAudio, @@ -371,7 +395,6 @@ export declare namespace OpenAI { type ChatCompletionModality as ChatCompletionModality, type ChatCompletionNamedToolChoice as ChatCompletionNamedToolChoice, type ChatCompletionPredictionContent as ChatCompletionPredictionContent, - type ChatCompletionReasoningEffort as ChatCompletionReasoningEffort, type ChatCompletionRole as ChatCompletionRole, type ChatCompletionStoreMessage as ChatCompletionStoreMessage, type ChatCompletionStreamOptions as ChatCompletionStreamOptions, @@ -440,6 +463,26 @@ export declare namespace OpenAI { export { FineTuning as FineTuning }; + export { + VectorStores as VectorStores, + type AutoFileChunkingStrategyParam as AutoFileChunkingStrategyParam, + type FileChunkingStrategy as FileChunkingStrategy, + type FileChunkingStrategyParam as FileChunkingStrategyParam, + type OtherFileChunkingStrategyObject as OtherFileChunkingStrategyObject, + type StaticFileChunkingStrategy as StaticFileChunkingStrategy, + type StaticFileChunkingStrategyObject as StaticFileChunkingStrategyObject, + type StaticFileChunkingStrategyObjectParam as StaticFileChunkingStrategyObjectParam, + type VectorStore as VectorStore, + type VectorStoreDeleted as VectorStoreDeleted, + type VectorStoreSearchResponse as VectorStoreSearchResponse, + VectorStoresPage as VectorStoresPage, + VectorStoreSearchResponsesPage as VectorStoreSearchResponsesPage, + type VectorStoreCreateParams as VectorStoreCreateParams, + type VectorStoreUpdateParams as VectorStoreUpdateParams, + type VectorStoreListParams as VectorStoreListParams, + type VectorStoreSearchParams as VectorStoreSearchParams, + }; + export { Beta as Beta }; export { @@ -459,10 +502,17 @@ export declare namespace OpenAI { type UploadCompleteParams as UploadCompleteParams, }; + export { Responses as Responses }; + + export type ChatModel = API.ChatModel; + export type ComparisonFilter = API.ComparisonFilter; + export type CompoundFilter = API.CompoundFilter; export type ErrorObject = API.ErrorObject; export type FunctionDefinition = API.FunctionDefinition; export type FunctionParameters = API.FunctionParameters; export type Metadata = API.Metadata; + export type Reasoning = API.Reasoning; + export type ReasoningEffort = API.ReasoningEffort; export type ResponseFormatJSONObject = API.ResponseFormatJSONObject; export type ResponseFormatJSONSchema = API.ResponseFormatJSONSchema; export type ResponseFormatText = API.ResponseFormatText; diff --git a/src/lib/ResponsesParser.ts b/src/lib/ResponsesParser.ts new file mode 100644 index 000000000..780b779ff --- /dev/null +++ b/src/lib/ResponsesParser.ts @@ -0,0 +1,262 @@ +import { OpenAIError } from '../error'; +import { type ChatCompletionTool } from '../resources'; +import { + type FunctionTool, + type ParsedContent, + type ParsedResponse, + type ParsedResponseFunctionToolCall, + type ParsedResponseOutputItem, + type Response, + type ResponseCreateParamsBase, + type ResponseCreateParamsNonStreaming, + type ResponseFunctionToolCall, + type Tool, +} from '../resources/responses/responses'; +import { type AutoParseableTextFormat, isAutoParsableResponseFormat } from '../lib/parser'; + +type ParseableToolsParams = Array | ChatCompletionTool | null; + +export type ResponseCreateParamsWithTools = ResponseCreateParamsBase & { + tools?: ParseableToolsParams; +}; + +export type ExtractParsedContentFromParams = + NonNullable['format'] extends AutoParseableTextFormat ? P : null; + +export function maybeParseResponse< + Params extends ResponseCreateParamsBase | null, + ParsedT = Params extends null ? null : ExtractParsedContentFromParams>, +>(response: Response, params: Params): ParsedResponse { + if (!params || !hasAutoParseableInput(params)) { + return { + ...response, + output_parsed: null, + output: response.output.map((item) => { + if (item.type === 'function_call') { + return { + ...item, + parsed_arguments: null, + }; + } + + if (item.type === 'message') { + return { + ...item, + content: item.content.map((content) => ({ + ...content, + parsed: null, + })), + }; + } else { + return item; + } + }), + }; + } + + return parseResponse(response, params); +} + +export function parseResponse< + Params extends ResponseCreateParamsBase, + ParsedT = ExtractParsedContentFromParams, +>(response: Response, params: Params): ParsedResponse { + const output: Array> = response.output.map( + (item): ParsedResponseOutputItem => { + if (item.type === 'function_call') { + return { + ...item, + parsed_arguments: parseToolCall(params, item), + }; + } + if (item.type === 'message') { + const content: Array> = item.content.map((content) => { + if (content.type === 'output_text') { + return { + ...content, + parsed: parseTextFormat(params, content.text), + }; + } + + return content; + }); + + return { + ...item, + content, + }; + } + + return item; + }, + ); + + const parsed: Omit, 'output_parsed'> = Object.assign({}, response, { output }); + if (!Object.getOwnPropertyDescriptor(response, 'output_text')) { + addOutputText(parsed); + } + + Object.defineProperty(parsed, 'output_parsed', { + enumerable: true, + get() { + for (const output of parsed.output) { + if (output.type !== 'message') { + continue; + } + + for (const content of output.content) { + if (content.type === 'output_text' && content.parsed !== null) { + return content.parsed; + } + } + } + + return null; + }, + }); + + return parsed as ParsedResponse; +} + +function parseTextFormat< + Params extends ResponseCreateParamsBase, + ParsedT = ExtractParsedContentFromParams, +>(params: Params, content: string): ParsedT | null { + if (params.text?.format?.type !== 'json_schema') { + return null; + } + + if ('$parseRaw' in params.text?.format) { + const text_format = params.text?.format as unknown as AutoParseableTextFormat; + return text_format.$parseRaw(content); + } + + return JSON.parse(content); +} + +export function hasAutoParseableInput(params: ResponseCreateParamsWithTools): boolean { + if (isAutoParsableResponseFormat(params.text?.format)) { + return true; + } + + return false; +} + +type ToolOptions = { + name: string; + arguments: any; + function?: ((args: any) => any) | undefined; +}; + +export type AutoParseableResponseTool< + OptionsT extends ToolOptions, + HasFunction = OptionsT['function'] extends Function ? true : false, +> = FunctionTool & { + __arguments: OptionsT['arguments']; // type-level only + __name: OptionsT['name']; // type-level only + + $brand: 'auto-parseable-tool'; + $callback: ((args: OptionsT['arguments']) => any) | undefined; + $parseRaw(args: string): OptionsT['arguments']; +}; + +export function makeParseableResponseTool( + tool: FunctionTool, + { + parser, + callback, + }: { + parser: (content: string) => OptionsT['arguments']; + callback: ((args: any) => any) | undefined; + }, +): AutoParseableResponseTool { + const obj = { ...tool }; + + Object.defineProperties(obj, { + $brand: { + value: 'auto-parseable-tool', + enumerable: false, + }, + $parseRaw: { + value: parser, + enumerable: false, + }, + $callback: { + value: callback, + enumerable: false, + }, + }); + + return obj as AutoParseableResponseTool; +} + +export function isAutoParsableTool(tool: any): tool is AutoParseableResponseTool { + return tool?.['$brand'] === 'auto-parseable-tool'; +} + +function getInputToolByName(input_tools: Array, name: string): FunctionTool | undefined { + return input_tools.find((tool) => tool.type === 'function' && tool.name === name) as + | FunctionTool + | undefined; +} + +function parseToolCall( + params: Params, + toolCall: ResponseFunctionToolCall, +): ParsedResponseFunctionToolCall { + const inputTool = getInputToolByName(params.tools ?? [], toolCall.name); + + return { + ...toolCall, + ...toolCall, + parsed_arguments: + isAutoParsableTool(inputTool) ? inputTool.$parseRaw(toolCall.arguments) + : inputTool?.strict ? JSON.parse(toolCall.arguments) + : null, + }; +} + +export function shouldParseToolCall( + params: ResponseCreateParamsNonStreaming | null | undefined, + toolCall: ResponseFunctionToolCall, +): boolean { + if (!params) { + return false; + } + + const inputTool = getInputToolByName(params.tools ?? [], toolCall.name); + return isAutoParsableTool(inputTool) || inputTool?.strict || false; +} + +export function validateInputTools(tools: ChatCompletionTool[] | undefined) { + for (const tool of tools ?? []) { + if (tool.type !== 'function') { + throw new OpenAIError( + `Currently only \`function\` tool types support auto-parsing; Received \`${tool.type}\``, + ); + } + + if (tool.function.strict !== true) { + throw new OpenAIError( + `The \`${tool.function.name}\` tool is not marked with \`strict: true\`. Only strict function tools can be auto-parsed`, + ); + } + } +} + +export function addOutputText(rsp: Response): void { + const texts: string[] = []; + for (const output of rsp.output) { + if (output.type !== 'message') { + continue; + } + + for (const content of output.content) { + if (content.type === 'output_text') { + texts.push(content.text); + } + } + } + + rsp.output_text = texts.join(''); +} diff --git a/src/lib/parser.ts b/src/lib/parser.ts index a750375dc..d75d32a40 100644 --- a/src/lib/parser.ts +++ b/src/lib/parser.ts @@ -14,6 +14,7 @@ import { } from '../resources/beta/chat/completions'; import { ResponseFormatJSONSchema } from '../resources/shared'; import { ContentFilterFinishReasonError, LengthFinishReasonError, OpenAIError } from '../error'; +import { type ResponseFormatTextJSONSchemaConfig } from '../resources/responses/responses'; type AnyChatCompletionCreateParams = | ChatCompletionCreateParams @@ -51,6 +52,33 @@ export function makeParseableResponseFormat( return obj as AutoParseableResponseFormat; } +export type AutoParseableTextFormat = ResponseFormatTextJSONSchemaConfig & { + __output: ParsedT; // type-level only + + $brand: 'auto-parseable-response-format'; + $parseRaw(content: string): ParsedT; +}; + +export function makeParseableTextFormat( + response_format: ResponseFormatTextJSONSchemaConfig, + parser: (content: string) => ParsedT, +): AutoParseableTextFormat { + const obj = { ...response_format }; + + Object.defineProperties(obj, { + $brand: { + value: 'auto-parseable-response-format', + enumerable: false, + }, + $parseRaw: { + value: parser, + enumerable: false, + }, + }); + + return obj as AutoParseableTextFormat; +} + export function isAutoParsableResponseFormat( response_format: any, ): response_format is AutoParseableResponseFormat { diff --git a/src/lib/responses/EventTypes.ts b/src/lib/responses/EventTypes.ts new file mode 100644 index 000000000..fc1620988 --- /dev/null +++ b/src/lib/responses/EventTypes.ts @@ -0,0 +1,76 @@ +import { + ResponseAudioDeltaEvent, + ResponseAudioDoneEvent, + ResponseAudioTranscriptDeltaEvent, + ResponseAudioTranscriptDoneEvent, + ResponseCodeInterpreterCallCodeDeltaEvent, + ResponseCodeInterpreterCallCodeDoneEvent, + ResponseCodeInterpreterCallCompletedEvent, + ResponseCodeInterpreterCallInProgressEvent, + ResponseCodeInterpreterCallInterpretingEvent, + ResponseCompletedEvent, + ResponseContentPartAddedEvent, + ResponseContentPartDoneEvent, + ResponseCreatedEvent, + ResponseErrorEvent, + ResponseFailedEvent, + ResponseFileSearchCallCompletedEvent, + ResponseFileSearchCallInProgressEvent, + ResponseFileSearchCallSearchingEvent, + ResponseFunctionCallArgumentsDeltaEvent as RawResponseFunctionCallArgumentsDeltaEvent, + ResponseFunctionCallArgumentsDoneEvent, + ResponseInProgressEvent, + ResponseOutputItemAddedEvent, + ResponseOutputItemDoneEvent, + ResponseRefusalDeltaEvent, + ResponseRefusalDoneEvent, + ResponseTextAnnotationDeltaEvent, + ResponseTextDeltaEvent as RawResponseTextDeltaEvent, + ResponseTextDoneEvent, + ResponseIncompleteEvent, + ResponseWebSearchCallCompletedEvent, + ResponseWebSearchCallInProgressEvent, + ResponseWebSearchCallSearchingEvent, +} from '../../resources/responses/responses'; + +export type ResponseFunctionCallArgumentsDeltaEvent = RawResponseFunctionCallArgumentsDeltaEvent & { + snapshot: string; +}; + +export type ResponseTextDeltaEvent = RawResponseTextDeltaEvent & { + snapshot: string; +}; + +export type ParsedResponseStreamEvent = + | ResponseAudioDeltaEvent + | ResponseAudioDoneEvent + | ResponseAudioTranscriptDeltaEvent + | ResponseAudioTranscriptDoneEvent + | ResponseCodeInterpreterCallCodeDeltaEvent + | ResponseCodeInterpreterCallCodeDoneEvent + | ResponseCodeInterpreterCallCompletedEvent + | ResponseCodeInterpreterCallInProgressEvent + | ResponseCodeInterpreterCallInterpretingEvent + | ResponseCompletedEvent + | ResponseContentPartAddedEvent + | ResponseContentPartDoneEvent + | ResponseCreatedEvent + | ResponseErrorEvent + | ResponseFileSearchCallCompletedEvent + | ResponseFileSearchCallInProgressEvent + | ResponseFileSearchCallSearchingEvent + | ResponseFunctionCallArgumentsDeltaEvent + | ResponseFunctionCallArgumentsDoneEvent + | ResponseInProgressEvent + | ResponseFailedEvent + | ResponseIncompleteEvent + | ResponseOutputItemAddedEvent + | ResponseOutputItemDoneEvent + | ResponseRefusalDeltaEvent + | ResponseRefusalDoneEvent + | ResponseTextAnnotationDeltaEvent + | ResponseTextDeltaEvent + | ResponseTextDoneEvent + | ResponseWebSearchCallCompletedEvent + | ResponseWebSearchCallInProgressEvent + | ResponseWebSearchCallSearchingEvent; diff --git a/src/lib/responses/ResponseStream.ts b/src/lib/responses/ResponseStream.ts new file mode 100644 index 000000000..0d6cd47dd --- /dev/null +++ b/src/lib/responses/ResponseStream.ts @@ -0,0 +1,298 @@ +import { + type ParsedResponse, + type Response, + type ResponseCreateParamsBase, + type ResponseCreateParamsStreaming, + type ResponseStreamEvent, +} from 'openai/resources/responses/responses'; +import * as Core from '../../core'; +import { APIUserAbortError, OpenAIError } from '../../error'; +import OpenAI from '../../index'; +import { type BaseEvents, EventStream } from '../EventStream'; +import { type ResponseFunctionCallArgumentsDeltaEvent, type ResponseTextDeltaEvent } from './EventTypes'; +import { maybeParseResponse } from '../ResponsesParser'; + +export type ResponseStreamParams = Omit & { + stream?: true; +}; + +type ResponseEvents = BaseEvents & + Omit< + { + [K in ResponseStreamEvent['type']]: (event: Extract) => void; + }, + 'response.output_text.delta' | 'response.function_call_arguments.delta' + > & { + event: (event: ResponseStreamEvent) => void; + 'response.output_text.delta': (event: ResponseTextDeltaEvent) => void; + 'response.function_call_arguments.delta': (event: ResponseFunctionCallArgumentsDeltaEvent) => void; + }; + +export type ResponseStreamingParams = Omit & { + stream?: true; +}; + +export class ResponseStream + extends EventStream + implements AsyncIterable +{ + #params: ResponseStreamingParams | null; + #currentResponseSnapshot: Response | undefined; + #finalResponse: ParsedResponse | undefined; + + constructor(params: ResponseStreamingParams | null) { + super(); + this.#params = params; + } + + static createResponse( + client: OpenAI, + params: ResponseStreamParams, + options?: Core.RequestOptions, + ): ResponseStream { + const runner = new ResponseStream(params as ResponseCreateParamsStreaming); + runner._run(() => + runner._createResponse(client, params, { + ...options, + headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'stream' }, + }), + ); + return runner; + } + + #beginRequest() { + if (this.ended) return; + this.#currentResponseSnapshot = undefined; + } + + #addEvent(this: ResponseStream, event: ResponseStreamEvent) { + if (this.ended) return; + + const response = this.#accumulateResponse(event); + this._emit('event', event); + + switch (event.type) { + case 'response.output_text.delta': { + const output = response.output[event.output_index]; + if (!output) { + throw new OpenAIError(`missing output at index ${event.output_index}`); + } + if (output.type === 'message') { + const content = output.content[event.content_index]; + if (!content) { + throw new OpenAIError(`missing content at index ${event.content_index}`); + } + if (content.type !== 'output_text') { + throw new OpenAIError(`expected content to be 'output_text', got ${content.type}`); + } + + this._emit('response.output_text.delta', { + ...event, + snapshot: content.text, + }); + } + break; + } + case 'response.function_call_arguments.delta': { + const output = response.output[event.output_index]; + if (!output) { + throw new OpenAIError(`missing output at index ${event.output_index}`); + } + if (output.type === 'function_call') { + this._emit('response.function_call_arguments.delta', { + ...event, + snapshot: output.arguments, + }); + } + break; + } + default: + // @ts-ignore + this._emit(event.type, event); + break; + } + } + + #endRequest(): ParsedResponse { + if (this.ended) { + throw new OpenAIError(`stream has ended, this shouldn't happen`); + } + const snapshot = this.#currentResponseSnapshot; + if (!snapshot) { + throw new OpenAIError(`request ended without sending any events`); + } + this.#currentResponseSnapshot = undefined; + const parsedResponse = finalizeResponse(snapshot, this.#params); + this.#finalResponse = parsedResponse; + + return parsedResponse; + } + + protected async _createResponse( + client: OpenAI, + params: ResponseStreamingParams, + options?: Core.RequestOptions, + ): Promise> { + const signal = options?.signal; + if (signal) { + if (signal.aborted) this.controller.abort(); + signal.addEventListener('abort', () => this.controller.abort()); + } + this.#beginRequest(); + + const stream = await client.responses.create( + { ...params, stream: true }, + { ...options, signal: this.controller.signal }, + ); + this._connected(); + for await (const event of stream) { + this.#addEvent(event); + } + if (stream.controller.signal?.aborted) { + throw new APIUserAbortError(); + } + return this.#endRequest(); + } + + #accumulateResponse(event: ResponseStreamEvent): Response { + let snapshot = this.#currentResponseSnapshot; + if (!snapshot) { + if (event.type !== 'response.created') { + throw new OpenAIError( + `When snapshot hasn't been set yet, expected 'response.created' event, got ${event.type}`, + ); + } + snapshot = this.#currentResponseSnapshot = event.response; + return snapshot; + } + + switch (event.type) { + case 'response.output_item.added': { + snapshot.output.push(event.item); + break; + } + case 'response.content_part.added': { + const output = snapshot.output[event.output_index]; + if (!output) { + throw new OpenAIError(`missing output at index ${event.output_index}`); + } + if (output.type === 'message') { + output.content.push(event.part); + } + break; + } + case 'response.output_text.delta': { + const output = snapshot.output[event.output_index]; + if (!output) { + throw new OpenAIError(`missing output at index ${event.output_index}`); + } + if (output.type === 'message') { + const content = output.content[event.content_index]; + if (!content) { + throw new OpenAIError(`missing content at index ${event.content_index}`); + } + if (content.type !== 'output_text') { + throw new OpenAIError(`expected content to be 'output_text', got ${content.type}`); + } + content.text += event.delta; + } + break; + } + case 'response.function_call_arguments.delta': { + const output = snapshot.output[event.output_index]; + if (!output) { + throw new OpenAIError(`missing output at index ${event.output_index}`); + } + if (output.type === 'function_call') { + output.arguments += event.delta; + } + break; + } + case 'response.completed': { + this.#currentResponseSnapshot = event.response; + break; + } + } + + return snapshot; + } + + [Symbol.asyncIterator](this: ResponseStream): AsyncIterator { + const pushQueue: ResponseStreamEvent[] = []; + const readQueue: { + resolve: (event: ResponseStreamEvent | undefined) => void; + reject: (err: unknown) => void; + }[] = []; + let done = false; + + this.on('event', (event) => { + const reader = readQueue.shift(); + if (reader) { + reader.resolve(event); + } else { + pushQueue.push(event); + } + }); + + this.on('end', () => { + done = true; + for (const reader of readQueue) { + reader.resolve(undefined); + } + readQueue.length = 0; + }); + + this.on('abort', (err) => { + done = true; + for (const reader of readQueue) { + reader.reject(err); + } + readQueue.length = 0; + }); + + this.on('error', (err) => { + done = true; + for (const reader of readQueue) { + reader.reject(err); + } + readQueue.length = 0; + }); + + return { + next: async (): Promise> => { + if (!pushQueue.length) { + if (done) { + return { value: undefined, done: true }; + } + return new Promise((resolve, reject) => + readQueue.push({ resolve, reject }), + ).then((event) => (event ? { value: event, done: false } : { value: undefined, done: true })); + } + const event = pushQueue.shift()!; + return { value: event, done: false }; + }, + return: async () => { + this.abort(); + return { value: undefined, done: true }; + }, + }; + } + + /** + * @returns a promise that resolves with the final Response, or rejects + * if an error occurred or the stream ended prematurely without producing a REsponse. + */ + async finalResponse(): Promise> { + await this.done(); + const response = this.#finalResponse; + if (!response) throw new OpenAIError('stream ended without producing a ChatCompletion'); + return response; + } +} + +function finalizeResponse( + snapshot: Response, + params: ResponseStreamingParams | null, +): ParsedResponse { + return maybeParseResponse(snapshot, params); +} diff --git a/src/resources/beta/assistants.ts b/src/resources/beta/assistants.ts index 919bf53b3..0668dcf54 100644 --- a/src/resources/beta/assistants.ts +++ b/src/resources/beta/assistants.ts @@ -4,10 +4,8 @@ import { APIResource } from '../../resource'; import { isRequestOptions } from '../../core'; import * as Core from '../../core'; import * as Shared from '../shared'; -import * as ChatAPI from '../chat/chat'; import * as MessagesAPI from './threads/messages'; import * as ThreadsAPI from './threads/threads'; -import * as VectorStoresAPI from './vector-stores/vector-stores'; import * as RunsAPI from './threads/runs/runs'; import * as StepsAPI from './threads/runs/steps'; import { CursorPage, type CursorPageParams } from '../../pagination'; @@ -1105,7 +1103,7 @@ export interface AssistantCreateParams { * [Model overview](https://platform.openai.com/docs/models) for descriptions of * them. */ - model: (string & {}) | ChatAPI.ChatModel; + model: (string & {}) | Shared.ChatModel; /** * The description of the assistant. The maximum length is 512 characters. @@ -1134,14 +1132,14 @@ export interface AssistantCreateParams { name?: string | null; /** - * **o1 and o3-mini models only** + * **o-series models only** * * Constrains effort on reasoning for * [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently * supported values are `low`, `medium`, and `high`. Reducing reasoning effort can * result in faster responses and fewer tokens used on reasoning in a response. */ - reasoning_effort?: 'low' | 'medium' | 'high' | null; + reasoning_effort?: Shared.ReasoningEffort | null; /** * Specifies the format that the model must output. Compatible with @@ -1244,9 +1242,9 @@ export namespace AssistantCreateParams { export interface VectorStore { /** * The chunking strategy used to chunk the file(s). If not set, will use the `auto` - * strategy. Only applicable if `file_ids` is non-empty. + * strategy. */ - chunking_strategy?: VectorStoresAPI.FileChunkingStrategyParam; + chunking_strategy?: VectorStore.Auto | VectorStore.Static; /** * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs to @@ -1265,6 +1263,45 @@ export namespace AssistantCreateParams { */ metadata?: Shared.Metadata | null; } + + export namespace VectorStore { + /** + * The default strategy. This strategy currently uses a `max_chunk_size_tokens` of + * `800` and `chunk_overlap_tokens` of `400`. + */ + export interface Auto { + /** + * Always `auto`. + */ + type: 'auto'; + } + + export interface Static { + static: Static.Static; + + /** + * Always `static`. + */ + type: 'static'; + } + + export namespace Static { + export interface Static { + /** + * The number of tokens that overlap between chunks. The default value is `400`. + * + * Note that the overlap must not exceed half of `max_chunk_size_tokens`. + */ + chunk_overlap_tokens: number; + + /** + * The maximum number of tokens in each chunk. The default value is `800`. The + * minimum value is `100` and the maximum value is `4096`. + */ + max_chunk_size_tokens: number; + } + } + } } } } @@ -1337,14 +1374,14 @@ export interface AssistantUpdateParams { name?: string | null; /** - * **o1 and o3-mini models only** + * **o-series models only** * * Constrains effort on reasoning for * [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently * supported values are `low`, `medium`, and `high`. Reducing reasoning effort can * result in faster responses and fewer tokens used on reasoning in a response. */ - reasoning_effort?: 'low' | 'medium' | 'high' | null; + reasoning_effort?: Shared.ReasoningEffort | null; /** * Specifies the format that the model must output. Compatible with diff --git a/src/resources/beta/beta.ts b/src/resources/beta/beta.ts index df929b2f7..0b909de18 100644 --- a/src/resources/beta/beta.ts +++ b/src/resources/beta/beta.ts @@ -40,36 +40,16 @@ import { ThreadUpdateParams, Threads, } from './threads/threads'; -import * as VectorStoresAPI from './vector-stores/vector-stores'; -import { - AutoFileChunkingStrategyParam, - FileChunkingStrategy, - FileChunkingStrategyParam, - OtherFileChunkingStrategyObject, - StaticFileChunkingStrategy, - StaticFileChunkingStrategyObject, - StaticFileChunkingStrategyObjectParam, - VectorStore, - VectorStoreCreateParams, - VectorStoreDeleted, - VectorStoreListParams, - VectorStoreUpdateParams, - VectorStores, - VectorStoresPage, -} from './vector-stores/vector-stores'; import { Chat } from './chat/chat'; export class Beta extends APIResource { realtime: RealtimeAPI.Realtime = new RealtimeAPI.Realtime(this._client); - vectorStores: VectorStoresAPI.VectorStores = new VectorStoresAPI.VectorStores(this._client); chat: ChatAPI.Chat = new ChatAPI.Chat(this._client); assistants: AssistantsAPI.Assistants = new AssistantsAPI.Assistants(this._client); threads: ThreadsAPI.Threads = new ThreadsAPI.Threads(this._client); } Beta.Realtime = Realtime; -Beta.VectorStores = VectorStores; -Beta.VectorStoresPage = VectorStoresPage; Beta.Assistants = Assistants; Beta.AssistantsPage = AssistantsPage; Beta.Threads = Threads; @@ -77,23 +57,6 @@ Beta.Threads = Threads; export declare namespace Beta { export { Realtime as Realtime }; - export { - VectorStores as VectorStores, - type AutoFileChunkingStrategyParam as AutoFileChunkingStrategyParam, - type FileChunkingStrategy as FileChunkingStrategy, - type FileChunkingStrategyParam as FileChunkingStrategyParam, - type OtherFileChunkingStrategyObject as OtherFileChunkingStrategyObject, - type StaticFileChunkingStrategy as StaticFileChunkingStrategy, - type StaticFileChunkingStrategyObject as StaticFileChunkingStrategyObject, - type StaticFileChunkingStrategyObjectParam as StaticFileChunkingStrategyObjectParam, - type VectorStore as VectorStore, - type VectorStoreDeleted as VectorStoreDeleted, - VectorStoresPage as VectorStoresPage, - type VectorStoreCreateParams as VectorStoreCreateParams, - type VectorStoreUpdateParams as VectorStoreUpdateParams, - type VectorStoreListParams as VectorStoreListParams, - }; - export { Chat }; export { diff --git a/src/resources/beta/index.ts b/src/resources/beta/index.ts index babca0016..b9cef17cb 100644 --- a/src/resources/beta/index.ts +++ b/src/resources/beta/index.ts @@ -37,19 +37,3 @@ export { type ThreadCreateAndRunPollParams, type ThreadCreateAndRunStreamParams, } from './threads/index'; -export { - VectorStoresPage, - VectorStores, - type AutoFileChunkingStrategyParam, - type FileChunkingStrategy, - type FileChunkingStrategyParam, - type OtherFileChunkingStrategyObject, - type StaticFileChunkingStrategy, - type StaticFileChunkingStrategyObject, - type StaticFileChunkingStrategyObjectParam, - type VectorStore, - type VectorStoreDeleted, - type VectorStoreCreateParams, - type VectorStoreUpdateParams, - type VectorStoreListParams, -} from './vector-stores/index'; diff --git a/src/resources/beta/threads/runs/runs.ts b/src/resources/beta/threads/runs/runs.ts index 8ab94cc99..15bfb4204 100644 --- a/src/resources/beta/threads/runs/runs.ts +++ b/src/resources/beta/threads/runs/runs.ts @@ -10,7 +10,6 @@ import { RunSubmitToolOutputsParamsStream } from '../../../../lib/AssistantStrea import * as RunsAPI from './runs'; import * as Shared from '../../../shared'; import * as AssistantsAPI from '../../assistants'; -import * as ChatAPI from '../../../chat/chat'; import * as MessagesAPI from '../messages'; import * as ThreadsAPI from '../threads'; import * as StepsAPI from './steps'; @@ -722,7 +721,7 @@ export interface RunCreateParamsBase { * associated with the assistant. If not, the model associated with the assistant * will be used. */ - model?: (string & {}) | ChatAPI.ChatModel | null; + model?: (string & {}) | Shared.ChatModel | null; /** * Body param: Whether to enable @@ -732,14 +731,14 @@ export interface RunCreateParamsBase { parallel_tool_calls?: boolean; /** - * Body param: **o1 and o3-mini models only** + * Body param: **o-series models only** * * Constrains effort on reasoning for * [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently * supported values are `low`, `medium`, and `high`. Reducing reasoning effort can * result in faster responses and fewer tokens used on reasoning in a response. */ - reasoning_effort?: 'low' | 'medium' | 'high' | null; + reasoning_effort?: Shared.ReasoningEffort | null; /** * Body param: Specifies the format that the model must output. Compatible with diff --git a/src/resources/beta/threads/threads.ts b/src/resources/beta/threads/threads.ts index 3f69c6e60..8075ba0ac 100644 --- a/src/resources/beta/threads/threads.ts +++ b/src/resources/beta/threads/threads.ts @@ -8,7 +8,6 @@ import * as Core from '../../../core'; import * as ThreadsAPI from './threads'; import * as Shared from '../../shared'; import * as AssistantsAPI from '../assistants'; -import * as ChatAPI from '../../chat/chat'; import * as MessagesAPI from './messages'; import { Annotation, @@ -45,7 +44,6 @@ import { TextDelta, TextDeltaBlock, } from './messages'; -import * as VectorStoresAPI from '../vector-stores/vector-stores'; import * as RunsAPI from './runs/runs'; import { RequiredActionFunctionToolCall, @@ -441,9 +439,9 @@ export namespace ThreadCreateParams { export interface VectorStore { /** * The chunking strategy used to chunk the file(s). If not set, will use the `auto` - * strategy. Only applicable if `file_ids` is non-empty. + * strategy. */ - chunking_strategy?: VectorStoresAPI.FileChunkingStrategyParam; + chunking_strategy?: VectorStore.Auto | VectorStore.Static; /** * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs to @@ -462,6 +460,45 @@ export namespace ThreadCreateParams { */ metadata?: Shared.Metadata | null; } + + export namespace VectorStore { + /** + * The default strategy. This strategy currently uses a `max_chunk_size_tokens` of + * `800` and `chunk_overlap_tokens` of `400`. + */ + export interface Auto { + /** + * Always `auto`. + */ + type: 'auto'; + } + + export interface Static { + static: Static.Static; + + /** + * Always `static`. + */ + type: 'static'; + } + + export namespace Static { + export interface Static { + /** + * The number of tokens that overlap between chunks. The default value is `400`. + * + * Note that the overlap must not exceed half of `max_chunk_size_tokens`. + */ + chunk_overlap_tokens: number; + + /** + * The maximum number of tokens in each chunk. The default value is `800`. The + * minimum value is `100` and the maximum value is `4096`. + */ + max_chunk_size_tokens: number; + } + } + } } } } @@ -573,7 +610,7 @@ export interface ThreadCreateAndRunParamsBase { * model associated with the assistant. If not, the model associated with the * assistant will be used. */ - model?: (string & {}) | ChatAPI.ChatModel | null; + model?: (string & {}) | Shared.ChatModel | null; /** * Whether to enable @@ -800,9 +837,9 @@ export namespace ThreadCreateAndRunParams { export interface VectorStore { /** * The chunking strategy used to chunk the file(s). If not set, will use the `auto` - * strategy. Only applicable if `file_ids` is non-empty. + * strategy. */ - chunking_strategy?: VectorStoresAPI.FileChunkingStrategyParam; + chunking_strategy?: VectorStore.Auto | VectorStore.Static; /** * A list of [file](https://platform.openai.com/docs/api-reference/files) IDs to @@ -821,6 +858,45 @@ export namespace ThreadCreateAndRunParams { */ metadata?: Shared.Metadata | null; } + + export namespace VectorStore { + /** + * The default strategy. This strategy currently uses a `max_chunk_size_tokens` of + * `800` and `chunk_overlap_tokens` of `400`. + */ + export interface Auto { + /** + * Always `auto`. + */ + type: 'auto'; + } + + export interface Static { + static: Static.Static; + + /** + * Always `static`. + */ + type: 'static'; + } + + export namespace Static { + export interface Static { + /** + * The number of tokens that overlap between chunks. The default value is `400`. + * + * Note that the overlap must not exceed half of `max_chunk_size_tokens`. + */ + chunk_overlap_tokens: number; + + /** + * The maximum number of tokens in each chunk. The default value is `800`. The + * minimum value is `100` and the maximum value is `4096`. + */ + max_chunk_size_tokens: number; + } + } + } } } } diff --git a/src/resources/chat/chat.ts b/src/resources/chat/chat.ts index 627b4fc23..9dbc636d8 100644 --- a/src/resources/chat/chat.ts +++ b/src/resources/chat/chat.ts @@ -1,6 +1,7 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from '../../resource'; +import * as Shared from '../shared'; import * as CompletionsAPI from './completions/completions'; import { ChatCompletion, @@ -52,48 +53,7 @@ export class Chat extends APIResource { completions: CompletionsAPI.Completions = new CompletionsAPI.Completions(this._client); } -export type ChatModel = - | 'o3-mini' - | 'o3-mini-2025-01-31' - | 'o1' - | 'o1-2024-12-17' - | 'o1-preview' - | 'o1-preview-2024-09-12' - | 'o1-mini' - | 'o1-mini-2024-09-12' - | 'gpt-4.5-preview' - | 'gpt-4.5-preview-2025-02-27' - | 'gpt-4o' - | 'gpt-4o-2024-11-20' - | 'gpt-4o-2024-08-06' - | 'gpt-4o-2024-05-13' - | 'gpt-4o-audio-preview' - | 'gpt-4o-audio-preview-2024-10-01' - | 'gpt-4o-audio-preview-2024-12-17' - | 'gpt-4o-mini-audio-preview' - | 'gpt-4o-mini-audio-preview-2024-12-17' - | 'chatgpt-4o-latest' - | 'gpt-4o-mini' - | 'gpt-4o-mini-2024-07-18' - | 'gpt-4-turbo' - | 'gpt-4-turbo-2024-04-09' - | 'gpt-4-0125-preview' - | 'gpt-4-turbo-preview' - | 'gpt-4-1106-preview' - | 'gpt-4-vision-preview' - | 'gpt-4' - | 'gpt-4-0314' - | 'gpt-4-0613' - | 'gpt-4-32k' - | 'gpt-4-32k-0314' - | 'gpt-4-32k-0613' - | 'gpt-3.5-turbo' - | 'gpt-3.5-turbo-16k' - | 'gpt-3.5-turbo-0301' - | 'gpt-3.5-turbo-0613' - | 'gpt-3.5-turbo-1106' - | 'gpt-3.5-turbo-0125' - | 'gpt-3.5-turbo-16k-0613'; +export type ChatModel = Shared.ChatModel; Chat.Completions = Completions; Chat.ChatCompletionsPage = ChatCompletionsPage; @@ -123,7 +83,6 @@ export declare namespace Chat { type ChatCompletionModality as ChatCompletionModality, type ChatCompletionNamedToolChoice as ChatCompletionNamedToolChoice, type ChatCompletionPredictionContent as ChatCompletionPredictionContent, - type ChatCompletionReasoningEffort as ChatCompletionReasoningEffort, type ChatCompletionRole as ChatCompletionRole, type ChatCompletionStoreMessage as ChatCompletionStoreMessage, type ChatCompletionStreamOptions as ChatCompletionStreamOptions, @@ -134,6 +93,7 @@ export declare namespace Chat { type ChatCompletionToolMessageParam as ChatCompletionToolMessageParam, type ChatCompletionUserMessageParam as ChatCompletionUserMessageParam, type CreateChatCompletionRequestMessage as CreateChatCompletionRequestMessage, + type ChatCompletionReasoningEffort as ChatCompletionReasoningEffort, ChatCompletionsPage as ChatCompletionsPage, type ChatCompletionCreateParams as ChatCompletionCreateParams, type CompletionCreateParams as CompletionCreateParams, diff --git a/src/resources/chat/completions/completions.ts b/src/resources/chat/completions/completions.ts index 3af4a3a1d..7b1c353e2 100644 --- a/src/resources/chat/completions/completions.ts +++ b/src/resources/chat/completions/completions.ts @@ -7,7 +7,6 @@ import * as Core from '../../../core'; import * as CompletionsCompletionsAPI from './completions'; import * as CompletionsAPI from '../../completions'; import * as Shared from '../../shared'; -import * as ChatAPI from '../chat'; import * as MessagesAPI from './messages'; import { MessageListParams, Messages } from './messages'; import { CursorPage, type CursorPageParams } from '../../../pagination'; @@ -17,6 +16,13 @@ export class Completions extends APIResource { messages: MessagesAPI.Messages = new MessagesAPI.Messages(this._client); /** + * **Starting a new project?** We recommend trying + * [Responses](https://platform.openai.com/docs/api-reference/responses) to take + * advantage of the latest OpenAI platform features. Compare + * [Chat Completions with Responses](https://platform.openai.com/docs/guides/responses-vs-chat-completions?api-mode=responses). + * + * --- + * * Creates a model response for the given chat conversation. Learn more in the * [text generation](https://platform.openai.com/docs/guides/text-generation), * [vision](https://platform.openai.com/docs/guides/vision), and @@ -50,7 +56,7 @@ export class Completions extends APIResource { } /** - * Get a stored chat completion. Only chat completions that have been created with + * Get a stored chat completion. Only Chat Completions that have been created with * the `store` parameter set to `true` will be returned. */ retrieve(completionId: string, options?: Core.RequestOptions): Core.APIPromise { @@ -58,7 +64,7 @@ export class Completions extends APIResource { } /** - * Modify a stored chat completion. Only chat completions that have been created + * Modify a stored chat completion. Only Chat Completions that have been created * with the `store` parameter set to `true` can be modified. Currently, the only * supported modification is to update the `metadata` field. */ @@ -71,7 +77,7 @@ export class Completions extends APIResource { } /** - * List stored chat completions. Only chat completions that have been stored with + * List stored Chat Completions. Only Chat Completions that have been stored with * the `store` parameter set to `true` will be returned. */ list( @@ -90,7 +96,7 @@ export class Completions extends APIResource { } /** - * Delete a stored chat completion. Only chat completions that have been created + * Delete a stored chat completion. Only Chat Completions that have been created * with the `store` parameter set to `true` can be deleted. */ del(completionId: string, options?: Core.RequestOptions): Core.APIPromise { @@ -316,16 +322,16 @@ export interface ChatCompletionAudioParam { format: 'wav' | 'mp3' | 'flac' | 'opus' | 'pcm16'; /** - * The voice the model uses to respond. Supported voices are `ash`, `ballad`, - * `coral`, `sage`, and `verse` (also supported but not recommended are `alloy`, - * `echo`, and `shimmer`; these voices are less expressive). + * The voice the model uses to respond. Supported voices are `alloy`, `ash`, + * `ballad`, `coral`, `echo`, `sage`, and `shimmer`. */ voice: 'alloy' | 'ash' | 'ballad' | 'coral' | 'echo' | 'sage' | 'shimmer' | 'verse'; } /** - * Represents a streamed chunk of a chat completion response returned by model, + * Represents a streamed chunk of a chat completion response returned by the model, * based on the provided input. + * [Learn more](https://platform.openai.com/docs/guides/streaming-responses). */ export interface ChatCompletionChunk { /** @@ -512,7 +518,43 @@ export namespace ChatCompletionChunk { export type ChatCompletionContentPart = | ChatCompletionContentPartText | ChatCompletionContentPartImage - | ChatCompletionContentPartInputAudio; + | ChatCompletionContentPartInputAudio + | ChatCompletionContentPart.File; + +export namespace ChatCompletionContentPart { + /** + * Learn about [file inputs](https://platform.openai.com/docs/guides/text) for text + * generation. + */ + export interface File { + file: File.File; + + /** + * The type of the content part. Always `file`. + */ + type: 'file'; + } + + export namespace File { + export interface File { + /** + * The base64 encoded file data, used when passing the file to the model as a + * string. + */ + file_data?: string; + + /** + * The ID of an uploaded file to use as input. + */ + file_id?: string; + + /** + * The name of the file, used when passing the file to the model as a string. + */ + file_name?: string; + } + } +} /** * Learn about [image inputs](https://platform.openai.com/docs/guides/vision). @@ -685,6 +727,12 @@ export interface ChatCompletionMessage { */ role: 'assistant'; + /** + * Annotations for the message, when applicable, as when using the + * [web search tool](https://platform.openai.com/docs/guides/tools-web-search?api-mode=chat). + */ + annotations?: Array; + /** * If the audio output modality is requested, this object contains data about the * audio response from the model. @@ -705,6 +753,48 @@ export interface ChatCompletionMessage { } export namespace ChatCompletionMessage { + /** + * A URL citation when using web search. + */ + export interface Annotation { + /** + * The type of the URL citation. Always `url_citation`. + */ + type: 'url_citation'; + + /** + * A URL citation when using web search. + */ + url_citation: Annotation.URLCitation; + } + + export namespace Annotation { + /** + * A URL citation when using web search. + */ + export interface URLCitation { + /** + * The index of the last character of the URL citation in the message. + */ + end_index: number; + + /** + * The index of the first character of the URL citation in the message. + */ + start_index: number; + + /** + * The title of the web resource. + */ + title: string; + + /** + * The URL of the web resource. + */ + url: string; + } + } + /** * @deprecated Deprecated and replaced by `tool_calls`. The name and arguments of a * function that should be called, as generated by the model. @@ -818,16 +908,6 @@ export interface ChatCompletionPredictionContent { type: 'content'; } -/** - * **o1 and o3-mini models only** - * - * Constrains effort on reasoning for - * [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently - * supported values are `low`, `medium`, and `high`. Reducing reasoning effort can - * result in faster responses and fewer tokens used on reasoning in a response. - */ -export type ChatCompletionReasoningEffort = 'low' | 'medium' | 'high' | null; - /** * The role of the author of a message */ @@ -998,6 +1078,8 @@ export interface ChatCompletionUserMessageParam { */ export type CreateChatCompletionRequestMessage = ChatCompletionMessageParam; +export type ChatCompletionReasoningEffort = Shared.ReasoningEffort | null; + export type ChatCompletionCreateParams = | ChatCompletionCreateParamsNonStreaming | ChatCompletionCreateParamsStreaming; @@ -1014,11 +1096,13 @@ export interface ChatCompletionCreateParamsBase { messages: Array; /** - * ID of the model to use. See the - * [model endpoint compatibility](https://platform.openai.com/docs/models#model-endpoint-compatibility) - * table for details on which models work with the Chat API. + * Model ID used to generate the response, like `gpt-4o` or `o1`. OpenAI offers a + * wide range of models with different capabilities, performance characteristics, + * and price points. Refer to the + * [model guide](https://platform.openai.com/docs/models) to browse and compare + * available models. */ - model: (string & {}) | ChatAPI.ChatModel; + model: (string & {}) | Shared.ChatModel; /** * Parameters for audio output. Required when audio output is requested with @@ -1107,8 +1191,8 @@ export interface ChatCompletionCreateParamsBase { metadata?: Shared.Metadata | null; /** - * Output types that you would like the model to generate for this request. Most - * models are capable of generating text, which is the default: + * Output types that you would like the model to generate. Most models are capable + * of generating text, which is the default: * * `["text"]` * @@ -1118,7 +1202,7 @@ export interface ChatCompletionCreateParamsBase { * * `["text", "audio"]` */ - modalities?: Array | null; + modalities?: Array<'text' | 'audio'> | null; /** * How many chat completion choices to generate for each input message. Note that @@ -1148,14 +1232,14 @@ export interface ChatCompletionCreateParamsBase { presence_penalty?: number | null; /** - * **o1 and o3-mini models only** + * **o-series models only** * * Constrains effort on reasoning for * [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently * supported values are `low`, `medium`, and `high`. Reducing reasoning effort can * result in faster responses and fewer tokens used on reasoning in a response. */ - reasoning_effort?: ChatCompletionReasoningEffort | null; + reasoning_effort?: Shared.ReasoningEffort | null; /** * An object specifying the format that the model must output. @@ -1165,21 +1249,14 @@ export interface ChatCompletionCreateParamsBase { * in the * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). * - * Setting to `{ "type": "json_object" }` enables JSON mode, which ensures the - * message the model generates is valid JSON. - * - * **Important:** when using JSON mode, you **must** also instruct the model to - * produce JSON yourself via a system or user message. Without this, the model may - * generate an unending stream of whitespace until the generation reaches the token - * limit, resulting in a long-running and seemingly "stuck" request. Also note that - * the message content may be partially cut off if `finish_reason="length"`, which - * indicates the generation exceeded `max_tokens` or the conversation exceeded the - * max context length. + * Setting to `{ "type": "json_object" }` enables the older JSON mode, which + * ensures the message the model generates is valid JSON. Using `json_schema` is + * preferred for models that support it. */ response_format?: | Shared.ResponseFormatText - | Shared.ResponseFormatJSONObject - | Shared.ResponseFormatJSONSchema; + | Shared.ResponseFormatJSONSchema + | Shared.ResponseFormatJSONObject; /** * This feature is in Beta. If specified, our system will make a best effort to @@ -1198,15 +1275,19 @@ export interface ChatCompletionCreateParamsBase { * utilize scale tier credits until they are exhausted. * - If set to 'auto', and the Project is not Scale tier enabled, the request will * be processed using the default service tier with a lower uptime SLA and no - * latency guarantee. + * latency guarentee. * - If set to 'default', the request will be processed using the default service - * tier with a lower uptime SLA and no latency guarantee. + * tier with a lower uptime SLA and no latency guarentee. * - When not set, the default behavior is 'auto'. + * + * When this parameter is set, the response body will include the `service_tier` + * utilized. */ service_tier?: 'auto' | 'default' | null; /** - * Up to 4 sequences where the API will stop generating further tokens. + * Up to 4 sequences where the API will stop generating further tokens. The + * returned text will not contain the stop sequence. */ stop?: string | null | Array; @@ -1218,12 +1299,14 @@ export interface ChatCompletionCreateParamsBase { store?: boolean | null; /** - * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be - * sent as data-only - * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) - * as they become available, with the stream terminated by a `data: [DONE]` - * message. - * [Example Python code](https://cookbook.openai.com/examples/how_to_stream_completions). + * If set to true, the model response data will be streamed to the client as it is + * generated using + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format). + * See the + * [Streaming section below](https://platform.openai.com/docs/api-reference/chat/streaming) + * for more information, along with the + * [streaming responses](https://platform.openai.com/docs/guides/streaming-responses) + * guide for more information on how to handle the streaming events. */ stream?: boolean | null; @@ -1282,6 +1365,13 @@ export interface ChatCompletionCreateParamsBase { * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#end-user-ids). */ user?: string; + + /** + * This tool searches the web for relevant results to use in a response. Learn more + * about the + * [web search tool](https://platform.openai.com/docs/guides/tools-web-search?api-mode=chat). + */ + web_search_options?: ChatCompletionCreateParams.WebSearchOptions; } export namespace ChatCompletionCreateParams { @@ -1313,6 +1403,70 @@ export namespace ChatCompletionCreateParams { parameters?: Shared.FunctionParameters; } + /** + * This tool searches the web for relevant results to use in a response. Learn more + * about the + * [web search tool](https://platform.openai.com/docs/guides/tools-web-search?api-mode=chat). + */ + export interface WebSearchOptions { + /** + * High level guidance for the amount of context window space to use for the + * search. One of `low`, `medium`, or `high`. `medium` is the default. + */ + search_context_size?: 'low' | 'medium' | 'high'; + + /** + * Approximate location parameters for the search. + */ + user_location?: WebSearchOptions.UserLocation | null; + } + + export namespace WebSearchOptions { + /** + * Approximate location parameters for the search. + */ + export interface UserLocation { + /** + * Approximate location parameters for the search. + */ + approximate: UserLocation.Approximate; + + /** + * The type of location approximation. Always `approximate`. + */ + type: 'approximate'; + } + + export namespace UserLocation { + /** + * Approximate location parameters for the search. + */ + export interface Approximate { + /** + * Free text input for the city of the user, e.g. `San Francisco`. + */ + city?: string; + + /** + * The two-letter [ISO country code](https://en.wikipedia.org/wiki/ISO_3166-1) of + * the user, e.g. `US`. + */ + country?: string; + + /** + * Free text input for the region of the user, e.g. `California`. + */ + region?: string; + + /** + * The [IANA timezone](https://timeapi.io/documentation/iana-timezones) of the + * user, e.g. `America/Los_Angeles`. + */ + timezone?: string; + } + } + } + export type ChatCompletionCreateParamsNonStreaming = CompletionsCompletionsAPI.ChatCompletionCreateParamsNonStreaming; export type ChatCompletionCreateParamsStreaming = @@ -1326,12 +1480,14 @@ export type CompletionCreateParams = ChatCompletionCreateParams; export interface ChatCompletionCreateParamsNonStreaming extends ChatCompletionCreateParamsBase { /** - * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be - * sent as data-only - * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) - * as they become available, with the stream terminated by a `data: [DONE]` - * message. - * [Example Python code](https://cookbook.openai.com/examples/how_to_stream_completions). + * If set to true, the model response data will be streamed to the client as it is + * generated using + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format). + * See the + * [Streaming section below](https://platform.openai.com/docs/api-reference/chat/streaming) + * for more information, along with the + * [streaming responses](https://platform.openai.com/docs/guides/streaming-responses) + * guide for more information on how to handle the streaming events. */ stream?: false | null; } @@ -1343,12 +1499,14 @@ export type CompletionCreateParamsNonStreaming = ChatCompletionCreateParamsNonSt export interface ChatCompletionCreateParamsStreaming extends ChatCompletionCreateParamsBase { /** - * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be - * sent as data-only - * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) - * as they become available, with the stream terminated by a `data: [DONE]` - * message. - * [Example Python code](https://cookbook.openai.com/examples/how_to_stream_completions). + * If set to true, the model response data will be streamed to the client as it is + * generated using + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format). + * See the + * [Streaming section below](https://platform.openai.com/docs/api-reference/chat/streaming) + * for more information, along with the + * [streaming responses](https://platform.openai.com/docs/guides/streaming-responses) + * guide for more information on how to handle the streaming events. */ stream: true; } @@ -1377,19 +1535,19 @@ export type CompletionUpdateParams = ChatCompletionUpdateParams; export interface ChatCompletionListParams extends CursorPageParams { /** - * A list of metadata keys to filter the chat completions by. Example: + * A list of metadata keys to filter the Chat Completions by. Example: * * `metadata[key1]=value1&metadata[key2]=value2` */ metadata?: Shared.Metadata | null; /** - * The model used to generate the chat completions. + * The model used to generate the Chat Completions. */ model?: string; /** - * Sort order for chat completions by timestamp. Use `asc` for ascending order or + * Sort order for Chat Completions by timestamp. Use `asc` for ascending order or * `desc` for descending order. Defaults to `asc`. */ order?: 'asc' | 'desc'; @@ -1425,7 +1583,6 @@ export declare namespace Completions { type ChatCompletionModality as ChatCompletionModality, type ChatCompletionNamedToolChoice as ChatCompletionNamedToolChoice, type ChatCompletionPredictionContent as ChatCompletionPredictionContent, - type ChatCompletionReasoningEffort as ChatCompletionReasoningEffort, type ChatCompletionRole as ChatCompletionRole, type ChatCompletionStoreMessage as ChatCompletionStoreMessage, type ChatCompletionStreamOptions as ChatCompletionStreamOptions, @@ -1436,6 +1593,7 @@ export declare namespace Completions { type ChatCompletionToolMessageParam as ChatCompletionToolMessageParam, type ChatCompletionUserMessageParam as ChatCompletionUserMessageParam, type CreateChatCompletionRequestMessage as CreateChatCompletionRequestMessage, + type ChatCompletionReasoningEffort as ChatCompletionReasoningEffort, ChatCompletionsPage as ChatCompletionsPage, type ChatCompletionCreateParams as ChatCompletionCreateParams, type CompletionCreateParams as CompletionCreateParams, diff --git a/src/resources/chat/completions/index.ts b/src/resources/chat/completions/index.ts index 3691f41d8..994d6f880 100644 --- a/src/resources/chat/completions/index.ts +++ b/src/resources/chat/completions/index.ts @@ -24,7 +24,6 @@ export { type ChatCompletionModality, type ChatCompletionNamedToolChoice, type ChatCompletionPredictionContent, - type ChatCompletionReasoningEffort, type ChatCompletionRole, type ChatCompletionStoreMessage, type ChatCompletionStreamOptions, diff --git a/src/resources/chat/completions/messages.ts b/src/resources/chat/completions/messages.ts index fc1cc5d94..519a33aff 100644 --- a/src/resources/chat/completions/messages.ts +++ b/src/resources/chat/completions/messages.ts @@ -9,7 +9,7 @@ import { type CursorPageParams } from '../../../pagination'; export class Messages extends APIResource { /** - * Get the messages in a stored chat completion. Only chat completions that have + * Get the messages in a stored chat completion. Only Chat Completions that have * been created with the `store` parameter set to `true` will be returned. */ list( diff --git a/src/resources/chat/index.ts b/src/resources/chat/index.ts index a9b5b46fb..62ca758e0 100644 --- a/src/resources/chat/index.ts +++ b/src/resources/chat/index.ts @@ -1,6 +1,6 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -export { Chat, type ChatModel } from './chat'; +export { Chat } from './chat'; export { ChatCompletionStoreMessagesPage, ChatCompletionsPage, @@ -25,7 +25,6 @@ export { type ChatCompletionModality, type ChatCompletionNamedToolChoice, type ChatCompletionPredictionContent, - type ChatCompletionReasoningEffort, type ChatCompletionRole, type ChatCompletionStoreMessage, type ChatCompletionStreamOptions, diff --git a/src/resources/files.ts b/src/resources/files.ts index f5f23dcad..723ac4cde 100644 --- a/src/resources/files.ts +++ b/src/resources/files.ts @@ -186,16 +186,12 @@ export interface FileObject { } /** - * The intended purpose of the uploaded file. - * - * Use "assistants" for - * [Assistants](https://platform.openai.com/docs/api-reference/assistants) and - * [Message](https://platform.openai.com/docs/api-reference/messages) files, - * "vision" for Assistants image file inputs, "batch" for - * [Batch API](https://platform.openai.com/docs/guides/batch), and "fine-tune" for - * [Fine-tuning](https://platform.openai.com/docs/api-reference/fine-tuning). + * The intended purpose of the uploaded file. One of: - `assistants`: Used in the + * Assistants API - `batch`: Used in the Batch API - `fine-tune`: Used for + * fine-tuning - `vision`: Images used for vision fine-tuning - `user_data`: + * Flexible file type for any purpose - `evals`: Used for eval data sets */ -export type FilePurpose = 'assistants' | 'batch' | 'fine-tune' | 'vision'; +export type FilePurpose = 'assistants' | 'batch' | 'fine-tune' | 'vision' | 'user_data' | 'evals'; export interface FileCreateParams { /** @@ -204,14 +200,10 @@ export interface FileCreateParams { file: Core.Uploadable; /** - * The intended purpose of the uploaded file. - * - * Use "assistants" for - * [Assistants](https://platform.openai.com/docs/api-reference/assistants) and - * [Message](https://platform.openai.com/docs/api-reference/messages) files, - * "vision" for Assistants image file inputs, "batch" for - * [Batch API](https://platform.openai.com/docs/guides/batch), and "fine-tune" for - * [Fine-tuning](https://platform.openai.com/docs/api-reference/fine-tuning). + * The intended purpose of the uploaded file. One of: - `assistants`: Used in the + * Assistants API - `batch`: Used in the Batch API - `fine-tune`: Used for + * fine-tuning - `vision`: Images used for vision fine-tuning - `user_data`: + * Flexible file type for any purpose - `evals`: Used for eval data sets */ purpose: FilePurpose; } diff --git a/src/resources/index.ts b/src/resources/index.ts index ad0302357..04c2c887b 100644 --- a/src/resources/index.ts +++ b/src/resources/index.ts @@ -60,4 +60,24 @@ export { type ModerationCreateResponse, type ModerationCreateParams, } from './moderations'; +export { Responses } from './responses/responses'; export { Uploads, type Upload, type UploadCreateParams, type UploadCompleteParams } from './uploads/uploads'; +export { + VectorStoresPage, + VectorStoreSearchResponsesPage, + VectorStores, + type AutoFileChunkingStrategyParam, + type FileChunkingStrategy, + type FileChunkingStrategyParam, + type OtherFileChunkingStrategyObject, + type StaticFileChunkingStrategy, + type StaticFileChunkingStrategyObject, + type StaticFileChunkingStrategyObjectParam, + type VectorStore, + type VectorStoreDeleted, + type VectorStoreSearchResponse, + type VectorStoreCreateParams, + type VectorStoreUpdateParams, + type VectorStoreListParams, + type VectorStoreSearchParams, +} from './vector-stores/vector-stores'; diff --git a/src/resources/responses/index.ts b/src/resources/responses/index.ts new file mode 100644 index 000000000..84f761a93 --- /dev/null +++ b/src/resources/responses/index.ts @@ -0,0 +1,9 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +export { + ResponseItemListDataPage, + InputItems, + type ResponseItemList, + type InputItemListParams, +} from './input-items'; +export { Responses } from './responses'; diff --git a/src/resources/responses/input-items.ts b/src/resources/responses/input-items.ts new file mode 100644 index 000000000..9704be89a --- /dev/null +++ b/src/resources/responses/input-items.ts @@ -0,0 +1,276 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import { APIResource } from '../../resource'; +import { isRequestOptions } from '../../core'; +import * as Core from '../../core'; +import * as ResponsesAPI from './responses'; +import { CursorPage, type CursorPageParams } from '../../pagination'; + +export class InputItems extends APIResource { + /** + * Returns a list of input items for a given response. + */ + list( + responseId: string, + query?: InputItemListParams, + options?: Core.RequestOptions, + ): Core.PagePromise< + ResponseItemListDataPage, + | ResponseItemList.Message + | ResponsesAPI.ResponseOutputMessage + | ResponsesAPI.ResponseFileSearchToolCall + | ResponsesAPI.ResponseComputerToolCall + | ResponseItemList.ComputerCallOutput + | ResponsesAPI.ResponseFunctionWebSearch + | ResponsesAPI.ResponseFunctionToolCall + | ResponseItemList.FunctionCallOutput + >; + list( + responseId: string, + options?: Core.RequestOptions, + ): Core.PagePromise< + ResponseItemListDataPage, + | ResponseItemList.Message + | ResponsesAPI.ResponseOutputMessage + | ResponsesAPI.ResponseFileSearchToolCall + | ResponsesAPI.ResponseComputerToolCall + | ResponseItemList.ComputerCallOutput + | ResponsesAPI.ResponseFunctionWebSearch + | ResponsesAPI.ResponseFunctionToolCall + | ResponseItemList.FunctionCallOutput + >; + list( + responseId: string, + query: InputItemListParams | Core.RequestOptions = {}, + options?: Core.RequestOptions, + ): Core.PagePromise< + ResponseItemListDataPage, + | ResponseItemList.Message + | ResponsesAPI.ResponseOutputMessage + | ResponsesAPI.ResponseFileSearchToolCall + | ResponsesAPI.ResponseComputerToolCall + | ResponseItemList.ComputerCallOutput + | ResponsesAPI.ResponseFunctionWebSearch + | ResponsesAPI.ResponseFunctionToolCall + | ResponseItemList.FunctionCallOutput + > { + if (isRequestOptions(query)) { + return this.list(responseId, {}, query); + } + return this._client.getAPIList(`/responses/${responseId}/input_items`, ResponseItemListDataPage, { + query, + ...options, + }); + } +} + +export class ResponseItemListDataPage extends CursorPage< + | ResponseItemList.Message + | ResponsesAPI.ResponseOutputMessage + | ResponsesAPI.ResponseFileSearchToolCall + | ResponsesAPI.ResponseComputerToolCall + | ResponseItemList.ComputerCallOutput + | ResponsesAPI.ResponseFunctionWebSearch + | ResponsesAPI.ResponseFunctionToolCall + | ResponseItemList.FunctionCallOutput +> {} + +/** + * A list of Response items. + */ +export interface ResponseItemList { + /** + * A list of items used to generate this response. + */ + data: Array< + | ResponseItemList.Message + | ResponsesAPI.ResponseOutputMessage + | ResponsesAPI.ResponseFileSearchToolCall + | ResponsesAPI.ResponseComputerToolCall + | ResponseItemList.ComputerCallOutput + | ResponsesAPI.ResponseFunctionWebSearch + | ResponsesAPI.ResponseFunctionToolCall + | ResponseItemList.FunctionCallOutput + >; + + /** + * The ID of the first item in the list. + */ + first_id: string; + + /** + * Whether there are more items available. + */ + has_more: boolean; + + /** + * The ID of the last item in the list. + */ + last_id: string; + + /** + * The type of object returned, must be `list`. + */ + object: 'list'; +} + +export namespace ResponseItemList { + export interface Message { + /** + * The unique ID of the message input. + */ + id: string; + + /** + * A list of one or many input items to the model, containing different content + * types. + */ + content: ResponsesAPI.ResponseInputMessageContentList; + + /** + * The role of the message input. One of `user`, `system`, or `developer`. + */ + role: 'user' | 'system' | 'developer'; + + /** + * The status of item. One of `in_progress`, `completed`, or `incomplete`. + * Populated when items are returned via API. + */ + status?: 'in_progress' | 'completed' | 'incomplete'; + + /** + * The type of the message input. Always set to `message`. + */ + type?: 'message'; + } + + export interface ComputerCallOutput { + /** + * The unique ID of the computer call tool output. + */ + id: string; + + /** + * The ID of the computer tool call that produced the output. + */ + call_id: string; + + /** + * A computer screenshot image used with the computer use tool. + */ + output: ComputerCallOutput.Output; + + /** + * The type of the computer tool call output. Always `computer_call_output`. + */ + type: 'computer_call_output'; + + /** + * The safety checks reported by the API that have been acknowledged by the + * developer. + */ + acknowledged_safety_checks?: Array; + + /** + * The status of the message input. One of `in_progress`, `completed`, or + * `incomplete`. Populated when input items are returned via API. + */ + status?: 'in_progress' | 'completed' | 'incomplete'; + } + + export namespace ComputerCallOutput { + /** + * A computer screenshot image used with the computer use tool. + */ + export interface Output { + /** + * Specifies the event type. For a computer screenshot, this property is always set + * to `computer_screenshot`. + */ + type: 'computer_screenshot'; + + /** + * The identifier of an uploaded file that contains the screenshot. + */ + file_id?: string; + + /** + * The URL of the screenshot image. + */ + image_url?: string; + } + + /** + * A pending safety check for the computer call. + */ + export interface AcknowledgedSafetyCheck { + /** + * The ID of the pending safety check. + */ + id: string; + + /** + * The type of the pending safety check. + */ + code: string; + + /** + * Details about the pending safety check. + */ + message: string; + } + } + + export interface FunctionCallOutput { + /** + * The unique ID of the function call tool output. + */ + id: string; + + /** + * The unique ID of the function tool call generated by the model. + */ + call_id: string; + + /** + * A JSON string of the output of the function tool call. + */ + output: string; + + /** + * The type of the function tool call output. Always `function_call_output`. + */ + type: 'function_call_output'; + + /** + * The status of the item. One of `in_progress`, `completed`, or `incomplete`. + * Populated when items are returned via API. + */ + status?: 'in_progress' | 'completed' | 'incomplete'; + } +} + +export interface InputItemListParams extends CursorPageParams { + /** + * An item ID to list items before, used in pagination. + */ + before?: string; + + /** + * The order to return the input items in. Default is `asc`. + * + * - `asc`: Return the input items in ascending order. + * - `desc`: Return the input items in descending order. + */ + order?: 'asc' | 'desc'; +} + +InputItems.ResponseItemListDataPage = ResponseItemListDataPage; + +export declare namespace InputItems { + export { + type ResponseItemList as ResponseItemList, + ResponseItemListDataPage as ResponseItemListDataPage, + type InputItemListParams as InputItemListParams, + }; +} diff --git a/src/resources/responses/responses.ts b/src/resources/responses/responses.ts new file mode 100644 index 000000000..2ad146873 --- /dev/null +++ b/src/resources/responses/responses.ts @@ -0,0 +1,2761 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import { + type ExtractParsedContentFromParams, + parseResponse, + type ResponseCreateParamsWithTools, + addOutputText, +} from '../../lib/ResponsesParser'; +import * as Core from '../../core'; +import { APIPromise, isRequestOptions } from '../../core'; +import { APIResource } from '../../resource'; +import { Stream } from '../../streaming'; +import * as Shared from '../shared'; +import * as InputItemsAPI from './input-items'; +import { InputItemListParams, InputItems, ResponseItemList, ResponseItemListDataPage } from './input-items'; +import * as ResponsesAPI from './responses'; +import { ResponseStream, ResponseStreamParams } from '../../lib/responses/ResponseStream'; + +export interface ParsedResponseOutputText extends ResponseOutputText { + parsed: ParsedT | null; +} + +export type ParsedContent = ParsedResponseOutputText | ResponseOutputRefusal; + +export interface ParsedResponseOutputMessage extends ResponseOutputMessage { + content: ParsedContent[]; +} + +export interface ParsedResponseFunctionToolCall extends ResponseFunctionToolCall { + parsed_arguments: any; +} + +export type ParsedResponseOutputItem = + | ParsedResponseOutputMessage + | ParsedResponseFunctionToolCall + | ResponseFileSearchToolCall + | ResponseFunctionWebSearch + | ResponseComputerToolCall + | ResponseOutputItem.Reasoning; + +export interface ParsedResponse extends Response { + output: Array>; + + output_parsed: ParsedT | null; +} + +export type ResponseParseParams = ResponseCreateParamsNonStreaming; +export class Responses extends APIResource { + inputItems: InputItemsAPI.InputItems = new InputItemsAPI.InputItems(this._client); + + /** + * Creates a model response. Provide + * [text](https://platform.openai.com/docs/guides/text) or + * [image](https://platform.openai.com/docs/guides/images) inputs to generate + * [text](https://platform.openai.com/docs/guides/text) or + * [JSON](https://platform.openai.com/docs/guides/structured-outputs) outputs. Have + * the model call your own + * [custom code](https://platform.openai.com/docs/guides/function-calling) or use + * built-in [tools](https://platform.openai.com/docs/guides/tools) like + * [web search](https://platform.openai.com/docs/guides/tools-web-search) or + * [file search](https://platform.openai.com/docs/guides/tools-file-search) to use + * your own data as input for the model's response. + */ + create(body: ResponseCreateParamsNonStreaming, options?: Core.RequestOptions): APIPromise; + create( + body: ResponseCreateParamsStreaming, + options?: Core.RequestOptions, + ): APIPromise>; + create( + body: ResponseCreateParamsBase, + options?: Core.RequestOptions, + ): APIPromise | Response>; + create( + body: ResponseCreateParams, + options?: Core.RequestOptions, + ): APIPromise | APIPromise> { + return ( + this._client.post('/responses', { body, ...options, stream: body.stream ?? false }) as + | APIPromise + | APIPromise> + )._thenUnwrap((rsp) => { + if ('type' in rsp && rsp.type === 'response') { + addOutputText(rsp as Response); + } + + return rsp; + }) as APIPromise | APIPromise>; + } + + /** + * Retrieves a model response with the given ID. + */ + retrieve( + responseId: string, + query?: ResponseRetrieveParams, + options?: Core.RequestOptions, + ): Core.APIPromise; + retrieve(responseId: string, options?: Core.RequestOptions): Core.APIPromise; + retrieve( + responseId: string, + query: ResponseRetrieveParams | Core.RequestOptions = {}, + options?: Core.RequestOptions, + ): Core.APIPromise { + if (isRequestOptions(query)) { + return this.retrieve(responseId, {}, query); + } + return this._client.get(`/responses/${responseId}`, { query, ...options }); + } + + /** + * Deletes a model response with the given ID. + */ + del(responseId: string, options?: Core.RequestOptions): Core.APIPromise { + return this._client.delete(`/responses/${responseId}`, { + ...options, + headers: { Accept: '*/*', ...options?.headers }, + }); + } + + parse>( + body: Params, + options?: Core.RequestOptions, + ): Core.APIPromise> { + return this._client.responses + .create(body, options) + ._thenUnwrap((response) => parseResponse(response as Response, body)); + } + + /** + * Creates a chat completion stream + */ + stream>( + body: Params, + options?: Core.RequestOptions, + ): ResponseStream { + return ResponseStream.createResponse(this._client, body, options); + } +} + +/** + * A tool that controls a virtual computer. Learn more about the + * [computer tool](https://platform.openai.com/docs/guides/tools-computer-use). + */ +export interface ComputerTool { + /** + * The height of the computer display. + */ + display_height: number; + + /** + * The width of the computer display. + */ + display_width: number; + + /** + * The type of computer environment to control. + */ + environment: 'mac' | 'windows' | 'ubuntu' | 'browser'; + + /** + * The type of the computer use tool. Always `computer_use_preview`. + */ + type: 'computer-preview'; +} + +/** + * A message input to the model with a role indicating instruction following + * hierarchy. Instructions given with the `developer` or `system` role take + * precedence over instructions given with the `user` role. Messages with the + * `assistant` role are presumed to have been generated by the model in previous + * interactions. + */ +export interface EasyInputMessage { + /** + * Text, image, or audio input to the model, used to generate a response. Can also + * contain previous assistant responses. + */ + content: string | ResponseInputMessageContentList; + + /** + * The role of the message input. One of `user`, `assistant`, `system`, or + * `developer`. + */ + role: 'user' | 'assistant' | 'system' | 'developer'; + + /** + * The type of the message input. Always `message`. + */ + type?: 'message'; +} + +/** + * A tool that searches for relevant content from uploaded files. Learn more about + * the + * [file search tool](https://platform.openai.com/docs/guides/tools-file-search). + */ +export interface FileSearchTool { + /** + * The type of the file search tool. Always `file_search`. + */ + type: 'file_search'; + + /** + * The IDs of the vector stores to search. + */ + vector_store_ids: Array; + + /** + * A filter to apply based on file attributes. + */ + filters?: Shared.ComparisonFilter | Shared.CompoundFilter; + + /** + * The maximum number of results to return. This number should be between 1 and 50 + * inclusive. + */ + max_num_results?: number; + + /** + * Ranking options for search. + */ + ranking_options?: FileSearchTool.RankingOptions; +} + +export namespace FileSearchTool { + /** + * Ranking options for search. + */ + export interface RankingOptions { + /** + * The ranker to use for the file search. + */ + ranker?: 'auto' | 'default-2024-11-15'; + + /** + * The score threshold for the file search, a number between 0 and 1. Numbers + * closer to 1 will attempt to return only the most relevant results, but may + * return fewer results. + */ + score_threshold?: number; + } +} + +/** + * Defines a function in your own code the model can choose to call. Learn more + * about + * [function calling](https://platform.openai.com/docs/guides/function-calling). + */ +export interface FunctionTool { + /** + * The name of the function to call. + */ + name: string; + + /** + * A JSON schema object describing the parameters of the function. + */ + parameters: Record; + + /** + * Whether to enforce strict parameter validation. Default `true`. + */ + strict: boolean; + + /** + * The type of the function tool. Always `function`. + */ + type: 'function'; + + /** + * A description of the function. Used by the model to determine whether or not to + * call the function. + */ + description?: string | null; +} + +export interface Response { + /** + * Unique identifier for this Response. + */ + id: string; + + /** + * Unix timestamp (in seconds) of when this Response was created. + */ + created_at: number; + + output_text: string; + + /** + * An error object returned when the model fails to generate a Response. + */ + error: ResponseError | null; + + /** + * Details about why the response is incomplete. + */ + incomplete_details: Response.IncompleteDetails | null; + + /** + * Inserts a system (or developer) message as the first item in the model's + * context. + * + * When using along with `previous_response_id`, the instructions from a previous + * response will be not be carried over to the next response. This makes it simple + * to swap out system (or developer) messages in new responses. + */ + instructions: string | null; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. + */ + metadata: Shared.Metadata | null; + + /** + * Model ID used to generate the response, like `gpt-4o` or `o1`. OpenAI offers a + * wide range of models with different capabilities, performance characteristics, + * and price points. Refer to the + * [model guide](https://platform.openai.com/docs/models) to browse and compare + * available models. + */ + model: (string & {}) | Shared.ChatModel; + + /** + * The object type of this resource - always set to `response`. + */ + object: 'response'; + + /** + * An array of content items generated by the model. + * + * - The length and order of items in the `output` array is dependent on the + * model's response. + * - Rather than accessing the first item in the `output` array and assuming it's + * an `assistant` message with the content generated by the model, you might + * consider using the `output_text` property where supported in SDKs. + */ + output: Array; + + /** + * Whether to allow the model to run tool calls in parallel. + */ + parallel_tool_calls: boolean; + + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. We generally recommend altering this or `top_p` but + * not both. + */ + temperature: number | null; + + /** + * How the model should select which tool (or tools) to use when generating a + * response. See the `tools` parameter to see how to specify which tools the model + * can call. + */ + tool_choice: ToolChoiceOptions | ToolChoiceTypes | ToolChoiceFunction; + + /** + * An array of tools the model may call while generating a response. You can + * specify which tool to use by setting the `tool_choice` parameter. + * + * The two categories of tools you can provide the model are: + * + * - **Built-in tools**: Tools that are provided by OpenAI that extend the model's + * capabilities, like + * [web search](https://platform.openai.com/docs/guides/tools-web-search) or + * [file search](https://platform.openai.com/docs/guides/tools-file-search). + * Learn more about + * [built-in tools](https://platform.openai.com/docs/guides/tools). + * - **Function calls (custom tools)**: Functions that are defined by you, enabling + * the model to call your own code. Learn more about + * [function calling](https://platform.openai.com/docs/guides/function-calling). + */ + tools: Array; + + /** + * An alternative to sampling with temperature, called nucleus sampling, where the + * model considers the results of the tokens with top_p probability mass. So 0.1 + * means only the tokens comprising the top 10% probability mass are considered. + * + * We generally recommend altering this or `temperature` but not both. + */ + top_p: number | null; + + /** + * An upper bound for the number of tokens that can be generated for a response, + * including visible output tokens and + * [reasoning tokens](https://platform.openai.com/docs/guides/reasoning). + */ + max_output_tokens?: number | null; + + /** + * The unique ID of the previous response to the model. Use this to create + * multi-turn conversations. Learn more about + * [conversation state](https://platform.openai.com/docs/guides/conversation-state). + */ + previous_response_id?: string | null; + + /** + * **o-series models only** + * + * Configuration options for + * [reasoning models](https://platform.openai.com/docs/guides/reasoning). + */ + reasoning?: Shared.Reasoning | null; + + /** + * The status of the response generation. One of `completed`, `failed`, + * `in_progress`, or `incomplete`. + */ + status?: ResponseStatus; + + /** + * Configuration options for a text response from the model. Can be plain text or + * structured JSON data. Learn more: + * + * - [Text inputs and outputs](https://platform.openai.com/docs/guides/text) + * - [Structured Outputs](https://platform.openai.com/docs/guides/structured-outputs) + */ + text?: ResponseTextConfig; + + /** + * The truncation strategy to use for the model response. + * + * - `auto`: If the context of this response and previous ones exceeds the model's + * context window size, the model will truncate the response to fit the context + * window by dropping input items in the middle of the conversation. + * - `disabled` (default): If a model response will exceed the context window size + * for a model, the request will fail with a 400 error. + */ + truncation?: 'auto' | 'disabled' | null; + + /** + * Represents token usage details including input tokens, output tokens, a + * breakdown of output tokens, and the total tokens used. + */ + usage?: ResponseUsage; + + /** + * A unique identifier representing your end-user, which can help OpenAI to monitor + * and detect abuse. + * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#end-user-ids). + */ + user?: string; +} + +export namespace Response { + /** + * Details about why the response is incomplete. + */ + export interface IncompleteDetails { + /** + * The reason why the response is incomplete. + */ + reason?: 'max_output_tokens' | 'content_filter'; + } +} + +/** + * Emitted when there is a partial audio response. + */ +export interface ResponseAudioDeltaEvent { + /** + * A chunk of Base64 encoded response audio bytes. + */ + delta: string; + + /** + * The type of the event. Always `response.audio.delta`. + */ + type: 'response.audio.delta'; +} + +/** + * Emitted when the audio response is complete. + */ +export interface ResponseAudioDoneEvent { + /** + * The type of the event. Always `response.audio.done`. + */ + type: 'response.audio.done'; +} + +/** + * Emitted when there is a partial transcript of audio. + */ +export interface ResponseAudioTranscriptDeltaEvent { + /** + * The partial transcript of the audio response. + */ + delta: string; + + /** + * The type of the event. Always `response.audio.transcript.delta`. + */ + type: 'response.audio.transcript.delta'; +} + +/** + * Emitted when the full audio transcript is completed. + */ +export interface ResponseAudioTranscriptDoneEvent { + /** + * The type of the event. Always `response.audio.transcript.done`. + */ + type: 'response.audio.transcript.done'; +} + +/** + * Emitted when a partial code snippet is added by the code interpreter. + */ +export interface ResponseCodeInterpreterCallCodeDeltaEvent { + /** + * The partial code snippet added by the code interpreter. + */ + delta: string; + + /** + * The index of the output item that the code interpreter call is in progress. + */ + output_index: number; + + /** + * The type of the event. Always `response.code_interpreter_call.code.delta`. + */ + type: 'response.code_interpreter_call.code.delta'; +} + +/** + * Emitted when code snippet output is finalized by the code interpreter. + */ +export interface ResponseCodeInterpreterCallCodeDoneEvent { + /** + * The final code snippet output by the code interpreter. + */ + code: string; + + /** + * The index of the output item that the code interpreter call is in progress. + */ + output_index: number; + + /** + * The type of the event. Always `response.code_interpreter_call.code.done`. + */ + type: 'response.code_interpreter_call.code.done'; +} + +/** + * Emitted when the code interpreter call is completed. + */ +export interface ResponseCodeInterpreterCallCompletedEvent { + /** + * A tool call to run code. + */ + code_interpreter_call: ResponseCodeInterpreterToolCall; + + /** + * The index of the output item that the code interpreter call is in progress. + */ + output_index: number; + + /** + * The type of the event. Always `response.code_interpreter_call.completed`. + */ + type: 'response.code_interpreter_call.completed'; +} + +/** + * Emitted when a code interpreter call is in progress. + */ +export interface ResponseCodeInterpreterCallInProgressEvent { + /** + * A tool call to run code. + */ + code_interpreter_call: ResponseCodeInterpreterToolCall; + + /** + * The index of the output item that the code interpreter call is in progress. + */ + output_index: number; + + /** + * The type of the event. Always `response.code_interpreter_call.in_progress`. + */ + type: 'response.code_interpreter_call.in_progress'; +} + +/** + * Emitted when the code interpreter is actively interpreting the code snippet. + */ +export interface ResponseCodeInterpreterCallInterpretingEvent { + /** + * A tool call to run code. + */ + code_interpreter_call: ResponseCodeInterpreterToolCall; + + /** + * The index of the output item that the code interpreter call is in progress. + */ + output_index: number; + + /** + * The type of the event. Always `response.code_interpreter_call.interpreting`. + */ + type: 'response.code_interpreter_call.interpreting'; +} + +/** + * A tool call to run code. + */ +export interface ResponseCodeInterpreterToolCall { + /** + * The unique ID of the code interpreter tool call. + */ + id: string; + + /** + * The code to run. + */ + code: string; + + /** + * The results of the code interpreter tool call. + */ + results: Array; + + /** + * The status of the code interpreter tool call. + */ + status: 'in_progress' | 'interpreting' | 'completed'; + + /** + * The type of the code interpreter tool call. Always `code_interpreter_call`. + */ + type: 'code_interpreter_call'; +} + +export namespace ResponseCodeInterpreterToolCall { + /** + * The output of a code interpreter tool call that is text. + */ + export interface Logs { + /** + * The logs of the code interpreter tool call. + */ + logs: string; + + /** + * The type of the code interpreter text output. Always `logs`. + */ + type: 'logs'; + } + + /** + * The output of a code interpreter tool call that is a file. + */ + export interface Files { + files: Array; + + /** + * The type of the code interpreter file output. Always `files`. + */ + type: 'files'; + } + + export namespace Files { + export interface File { + /** + * The ID of the file. + */ + file_id: string; + + /** + * The MIME type of the file. + */ + mime_type: string; + } + } +} + +/** + * Emitted when the model response is complete. + */ +export interface ResponseCompletedEvent { + /** + * Properties of the completed response. + */ + response: Response; + + /** + * The type of the event. Always `response.completed`. + */ + type: 'response.completed'; +} + +/** + * A tool call to a computer use tool. See the + * [computer use guide](https://platform.openai.com/docs/guides/tools-computer-use) + * for more information. + */ +export interface ResponseComputerToolCall { + /** + * The unique ID of the computer call. + */ + id: string; + + /** + * A click action. + */ + action: + | ResponseComputerToolCall.Click + | ResponseComputerToolCall.DoubleClick + | ResponseComputerToolCall.Drag + | ResponseComputerToolCall.Keypress + | ResponseComputerToolCall.Move + | ResponseComputerToolCall.Screenshot + | ResponseComputerToolCall.Scroll + | ResponseComputerToolCall.Type + | ResponseComputerToolCall.Wait; + + /** + * An identifier used when responding to the tool call with output. + */ + call_id: string; + + /** + * The pending safety checks for the computer call. + */ + pending_safety_checks: Array; + + /** + * The status of the item. One of `in_progress`, `completed`, or `incomplete`. + * Populated when items are returned via API. + */ + status: 'in_progress' | 'completed' | 'incomplete'; + + /** + * The type of the computer call. Always `computer_call`. + */ + type: 'computer_call'; +} + +export namespace ResponseComputerToolCall { + /** + * A click action. + */ + export interface Click { + /** + * Indicates which mouse button was pressed during the click. One of `left`, + * `right`, `wheel`, `back`, or `forward`. + */ + button: 'left' | 'right' | 'wheel' | 'back' | 'forward'; + + /** + * Specifies the event type. For a click action, this property is always set to + * `click`. + */ + type: 'click'; + + /** + * The x-coordinate where the click occurred. + */ + x: number; + + /** + * The y-coordinate where the click occurred. + */ + y: number; + } + + /** + * A double click action. + */ + export interface DoubleClick { + /** + * Specifies the event type. For a double click action, this property is always set + * to `double_click`. + */ + type: 'double_click'; + + /** + * The x-coordinate where the double click occurred. + */ + x: number; + + /** + * The y-coordinate where the double click occurred. + */ + y: number; + } + + /** + * A drag action. + */ + export interface Drag { + /** + * An array of coordinates representing the path of the drag action. Coordinates + * will appear as an array of objects, eg + * + * ``` + * [ + * { x: 100, y: 200 }, + * { x: 200, y: 300 } + * ] + * ``` + */ + path: Array; + + /** + * Specifies the event type. For a drag action, this property is always set to + * `drag`. + */ + type: 'drag'; + } + + export namespace Drag { + /** + * A series of x/y coordinate pairs in the drag path. + */ + export interface Path { + /** + * The x-coordinate. + */ + x: number; + + /** + * The y-coordinate. + */ + y: number; + } + } + + /** + * A collection of keypresses the model would like to perform. + */ + export interface Keypress { + /** + * The combination of keys the model is requesting to be pressed. This is an array + * of strings, each representing a key. + */ + keys: Array; + + /** + * Specifies the event type. For a keypress action, this property is always set to + * `keypress`. + */ + type: 'keypress'; + } + + /** + * A mouse move action. + */ + export interface Move { + /** + * Specifies the event type. For a move action, this property is always set to + * `move`. + */ + type: 'move'; + + /** + * The x-coordinate to move to. + */ + x: number; + + /** + * The y-coordinate to move to. + */ + y: number; + } + + /** + * A screenshot action. + */ + export interface Screenshot { + /** + * Specifies the event type. For a screenshot action, this property is always set + * to `screenshot`. + */ + type: 'screenshot'; + } + + /** + * A scroll action. + */ + export interface Scroll { + /** + * The horizontal scroll distance. + */ + scroll_x: number; + + /** + * The vertical scroll distance. + */ + scroll_y: number; + + /** + * Specifies the event type. For a scroll action, this property is always set to + * `scroll`. + */ + type: 'scroll'; + + /** + * The x-coordinate where the scroll occurred. + */ + x: number; + + /** + * The y-coordinate where the scroll occurred. + */ + y: number; + } + + /** + * An action to type in text. + */ + export interface Type { + /** + * The text to type. + */ + text: string; + + /** + * Specifies the event type. For a type action, this property is always set to + * `type`. + */ + type: 'type'; + } + + /** + * A wait action. + */ + export interface Wait { + /** + * Specifies the event type. For a wait action, this property is always set to + * `wait`. + */ + type: 'wait'; + } + + /** + * A pending safety check for the computer call. + */ + export interface PendingSafetyCheck { + /** + * The ID of the pending safety check. + */ + id: string; + + /** + * The type of the pending safety check. + */ + code: string; + + /** + * Details about the pending safety check. + */ + message: string; + } +} + +/** + * Multi-modal input and output contents. + */ +export type ResponseContent = + | ResponseInputText + | ResponseInputImage + | ResponseInputFile + | ResponseOutputText + | ResponseOutputRefusal; + +/** + * Emitted when a new content part is added. + */ +export interface ResponseContentPartAddedEvent { + /** + * The index of the content part that was added. + */ + content_index: number; + + /** + * The ID of the output item that the content part was added to. + */ + item_id: string; + + /** + * The index of the output item that the content part was added to. + */ + output_index: number; + + /** + * The content part that was added. + */ + part: ResponseOutputText | ResponseOutputRefusal; + + /** + * The type of the event. Always `response.content_part.added`. + */ + type: 'response.content_part.added'; +} + +/** + * Emitted when a content part is done. + */ +export interface ResponseContentPartDoneEvent { + /** + * The index of the content part that is done. + */ + content_index: number; + + /** + * The ID of the output item that the content part was added to. + */ + item_id: string; + + /** + * The index of the output item that the content part was added to. + */ + output_index: number; + + /** + * The content part that is done. + */ + part: ResponseOutputText | ResponseOutputRefusal; + + /** + * The type of the event. Always `response.content_part.done`. + */ + type: 'response.content_part.done'; +} + +/** + * An event that is emitted when a response is created. + */ +export interface ResponseCreatedEvent { + /** + * The response that was created. + */ + response: Response; + + /** + * The type of the event. Always `response.created`. + */ + type: 'response.created'; +} + +/** + * An error object returned when the model fails to generate a Response. + */ +export interface ResponseError { + /** + * The error code for the response. + */ + code: + | 'server_error' + | 'rate_limit_exceeded' + | 'invalid_prompt' + | 'vector_store_timeout' + | 'invalid_image' + | 'invalid_image_format' + | 'invalid_base64_image' + | 'invalid_image_url' + | 'image_too_large' + | 'image_too_small' + | 'image_parse_error' + | 'image_content_policy_violation' + | 'invalid_image_mode' + | 'image_file_too_large' + | 'unsupported_image_media_type' + | 'empty_image_file' + | 'failed_to_download_image' + | 'image_file_not_found'; + + /** + * A human-readable description of the error. + */ + message: string; +} + +/** + * Emitted when an error occurs. + */ +export interface ResponseErrorEvent { + /** + * The error code. + */ + code: string | null; + + /** + * The error message. + */ + message: string; + + /** + * The error parameter. + */ + param: string | null; + + /** + * The type of the event. Always `error`. + */ + type: 'error'; +} + +/** + * An event that is emitted when a response fails. + */ +export interface ResponseFailedEvent { + /** + * The response that failed. + */ + response: Response; + + /** + * The type of the event. Always `response.failed`. + */ + type: 'response.failed'; +} + +/** + * Emitted when a file search call is completed (results found). + */ +export interface ResponseFileSearchCallCompletedEvent { + /** + * The ID of the output item that the file search call is initiated. + */ + item_id: string; + + /** + * The index of the output item that the file search call is initiated. + */ + output_index: number; + + /** + * The type of the event. Always `response.file_search_call.completed`. + */ + type: 'response.file_search_call.completed'; +} + +/** + * Emitted when a file search call is initiated. + */ +export interface ResponseFileSearchCallInProgressEvent { + /** + * The ID of the output item that the file search call is initiated. + */ + item_id: string; + + /** + * The index of the output item that the file search call is initiated. + */ + output_index: number; + + /** + * The type of the event. Always `response.file_search_call.in_progress`. + */ + type: 'response.file_search_call.in_progress'; +} + +/** + * Emitted when a file search is currently searching. + */ +export interface ResponseFileSearchCallSearchingEvent { + /** + * The ID of the output item that the file search call is initiated. + */ + item_id: string; + + /** + * The index of the output item that the file search call is searching. + */ + output_index: number; + + /** + * The type of the event. Always `response.file_search_call.searching`. + */ + type: 'response.file_search_call.searching'; +} + +/** + * The results of a file search tool call. See the + * [file search guide](https://platform.openai.com/docs/guides/tools-file-search) + * for more information. + */ +export interface ResponseFileSearchToolCall { + /** + * The unique ID of the file search tool call. + */ + id: string; + + /** + * The queries used to search for files. + */ + queries: Array; + + /** + * The status of the file search tool call. One of `in_progress`, `searching`, + * `incomplete` or `failed`, + */ + status: 'in_progress' | 'searching' | 'completed' | 'incomplete' | 'failed'; + + /** + * The type of the file search tool call. Always `file_search_call`. + */ + type: 'file_search_call'; + + /** + * The results of the file search tool call. + */ + results?: Array | null; +} + +export namespace ResponseFileSearchToolCall { + export interface Result { + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. Keys are strings with a maximum + * length of 64 characters. Values are strings with a maximum length of 512 + * characters, booleans, or numbers. + */ + attributes?: Record | null; + + /** + * The unique ID of the file. + */ + file_id?: string; + + /** + * The name of the file. + */ + filename?: string; + + /** + * The relevance score of the file - a value between 0 and 1. + */ + score?: number; + + /** + * The text that was retrieved from the file. + */ + text?: string; + } +} + +/** + * An object specifying the format that the model must output. + * + * Configuring `{ "type": "json_schema" }` enables Structured Outputs, which + * ensures the model will match your supplied JSON schema. Learn more in the + * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). + * + * The default format is `{ "type": "text" }` with no additional options. + * + * **Not recommended for gpt-4o and newer models:** + * + * Setting to `{ "type": "json_object" }` enables the older JSON mode, which + * ensures the message the model generates is valid JSON. Using `json_schema` is + * preferred for models that support it. + */ +export type ResponseFormatTextConfig = + | Shared.ResponseFormatText + | ResponseFormatTextJSONSchemaConfig + | Shared.ResponseFormatJSONObject; + +/** + * JSON Schema response format. Used to generate structured JSON responses. Learn + * more about + * [Structured Outputs](https://platform.openai.com/docs/guides/structured-outputs). + */ +export interface ResponseFormatTextJSONSchemaConfig { + /** + * The schema for the response format, described as a JSON Schema object. Learn how + * to build JSON schemas [here](https://json-schema.org/). + */ + schema: Record; + + /** + * The type of response format being defined. Always `json_schema`. + */ + type: 'json_schema'; + + /** + * A description of what the response format is for, used by the model to determine + * how to respond in the format. + */ + description?: string; + + /** + * The name of the response format. Must be a-z, A-Z, 0-9, or contain underscores + * and dashes, with a maximum length of 64. + */ + name?: string; + + /** + * Whether to enable strict schema adherence when generating the output. If set to + * true, the model will always follow the exact schema defined in the `schema` + * field. Only a subset of JSON Schema is supported when `strict` is `true`. To + * learn more, read the + * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). + */ + strict?: boolean | null; +} + +/** + * Emitted when there is a partial function-call arguments delta. + */ +export interface ResponseFunctionCallArgumentsDeltaEvent { + /** + * The function-call arguments delta that is added. + */ + delta: string; + + /** + * The ID of the output item that the function-call arguments delta is added to. + */ + item_id: string; + + /** + * The index of the output item that the function-call arguments delta is added to. + */ + output_index: number; + + /** + * The type of the event. Always `response.function_call_arguments.delta`. + */ + type: 'response.function_call_arguments.delta'; +} + +/** + * Emitted when function-call arguments are finalized. + */ +export interface ResponseFunctionCallArgumentsDoneEvent { + /** + * The function-call arguments. + */ + arguments: string; + + /** + * The ID of the item. + */ + item_id: string; + + /** + * The index of the output item. + */ + output_index: number; + + type: 'response.function_call_arguments.done'; +} + +/** + * A tool call to run a function. See the + * [function calling guide](https://platform.openai.com/docs/guides/function-calling) + * for more information. + */ +export interface ResponseFunctionToolCall { + /** + * The unique ID of the function tool call. + */ + id: string; + + /** + * A JSON string of the arguments to pass to the function. + */ + arguments: string; + + /** + * The unique ID of the function tool call generated by the model. + */ + call_id: string; + + /** + * The name of the function to run. + */ + name: string; + + /** + * The type of the function tool call. Always `function_call`. + */ + type: 'function_call'; + + /** + * The status of the item. One of `in_progress`, `completed`, or `incomplete`. + * Populated when items are returned via API. + */ + status?: 'in_progress' | 'completed' | 'incomplete'; +} + +/** + * The results of a web search tool call. See the + * [web search guide](https://platform.openai.com/docs/guides/tools-web-search) for + * more information. + */ +export interface ResponseFunctionWebSearch { + /** + * The unique ID of the web search tool call. + */ + id: string; + + /** + * The status of the web search tool call. + */ + status: 'in_progress' | 'searching' | 'completed' | 'failed'; + + /** + * The type of the web search tool call. Always `web_search_call`. + */ + type: 'web_search_call'; +} + +/** + * Emitted when the response is in progress. + */ +export interface ResponseInProgressEvent { + /** + * The response that is in progress. + */ + response: Response; + + /** + * The type of the event. Always `response.in_progress`. + */ + type: 'response.in_progress'; +} + +/** + * Specify additional output data to include in the model response. Currently + * supported values are: + * + * - `file_search_call.results`: Include the search results of the file search tool + * call. + * - `message.input_image.image_url`: Include image urls from the input message. + * - `computer_call_output.output.image_url`: Include image urls from the computer + * call output. + */ +export type ResponseIncludable = + | 'file_search_call.results' + | 'message.input_image.image_url' + | 'computer_call_output.output.image_url'; + +/** + * An event that is emitted when a response finishes as incomplete. + */ +export interface ResponseIncompleteEvent { + /** + * The response that was incomplete. + */ + response: Response; + + /** + * The type of the event. Always `response.incomplete`. + */ + type: 'response.incomplete'; +} + +/** + * A list of one or many input items to the model, containing different content + * types. + */ +export type ResponseInput = Array; + +/** + * An audio input to the model. + */ +export interface ResponseInputAudio { + /** + * Base64-encoded audio data. + */ + data: string; + + /** + * The format of the audio data. Currently supported formats are `mp3` and `wav`. + */ + format: 'mp3' | 'wav'; + + /** + * The type of the input item. Always `input_audio`. + */ + type: 'input_audio'; +} + +/** + * A text input to the model. + */ +export type ResponseInputContent = ResponseInputText | ResponseInputImage | ResponseInputFile; + +/** + * A file input to the model. + */ +export interface ResponseInputFile { + /** + * The type of the input item. Always `input_file`. + */ + type: 'input_file'; + + /** + * The content of the file to be sent to the model. + */ + file_data?: string; + + /** + * The ID of the file to be sent to the model. + */ + file_id?: string; + + /** + * The name of the file to be sent to the model. + */ + filename?: string; +} + +/** + * An image input to the model. Learn about + * [image inputs](https://platform.openai.com/docs/guides/vision). + */ +export interface ResponseInputImage { + /** + * The detail level of the image to be sent to the model. One of `high`, `low`, or + * `auto`. Defaults to `auto`. + */ + detail: 'high' | 'low' | 'auto'; + + /** + * The type of the input item. Always `input_image`. + */ + type: 'input_image'; + + /** + * The ID of the file to be sent to the model. + */ + file_id?: string | null; + + /** + * The URL of the image to be sent to the model. A fully qualified URL or base64 + * encoded image in a data URL. + */ + image_url?: string | null; +} + +/** + * A message input to the model with a role indicating instruction following + * hierarchy. Instructions given with the `developer` or `system` role take + * precedence over instructions given with the `user` role. Messages with the + * `assistant` role are presumed to have been generated by the model in previous + * interactions. + */ +export type ResponseInputItem = + | EasyInputMessage + | ResponseInputItem.Message + | ResponseOutputMessage + | ResponseFileSearchToolCall + | ResponseComputerToolCall + | ResponseInputItem.ComputerCallOutput + | ResponseFunctionWebSearch + | ResponseFunctionToolCall + | ResponseInputItem.FunctionCallOutput + | ResponseInputItem.Reasoning + | ResponseInputItem.ItemReference; + +export namespace ResponseInputItem { + /** + * A message input to the model with a role indicating instruction following + * hierarchy. Instructions given with the `developer` or `system` role take + * precedence over instructions given with the `user` role. + */ + export interface Message { + /** + * A list of one or many input items to the model, containing different content + * types. + */ + content: ResponsesAPI.ResponseInputMessageContentList; + + /** + * The role of the message input. One of `user`, `system`, or `developer`. + */ + role: 'user' | 'system' | 'developer'; + + /** + * The status of item. One of `in_progress`, `completed`, or `incomplete`. + * Populated when items are returned via API. + */ + status?: 'in_progress' | 'completed' | 'incomplete'; + + /** + * The type of the message input. Always set to `message`. + */ + type?: 'message'; + } + + /** + * The output of a computer tool call. + */ + export interface ComputerCallOutput { + /** + * The ID of the computer tool call that produced the output. + */ + call_id: string; + + /** + * A computer screenshot image used with the computer use tool. + */ + output: ComputerCallOutput.Output; + + /** + * The type of the computer tool call output. Always `computer_call_output`. + */ + type: 'computer_call_output'; + + /** + * The ID of the computer tool call output. + */ + id?: string; + + /** + * The safety checks reported by the API that have been acknowledged by the + * developer. + */ + acknowledged_safety_checks?: Array; + + /** + * The status of the message input. One of `in_progress`, `completed`, or + * `incomplete`. Populated when input items are returned via API. + */ + status?: 'in_progress' | 'completed' | 'incomplete'; + } + + export namespace ComputerCallOutput { + /** + * A computer screenshot image used with the computer use tool. + */ + export interface Output { + /** + * Specifies the event type. For a computer screenshot, this property is always set + * to `computer_screenshot`. + */ + type: 'computer_screenshot'; + + /** + * The identifier of an uploaded file that contains the screenshot. + */ + file_id?: string; + + /** + * The URL of the screenshot image. + */ + image_url?: string; + } + + /** + * A pending safety check for the computer call. + */ + export interface AcknowledgedSafetyCheck { + /** + * The ID of the pending safety check. + */ + id: string; + + /** + * The type of the pending safety check. + */ + code: string; + + /** + * Details about the pending safety check. + */ + message: string; + } + } + + /** + * The output of a function tool call. + */ + export interface FunctionCallOutput { + /** + * The unique ID of the function tool call generated by the model. + */ + call_id: string; + + /** + * A JSON string of the output of the function tool call. + */ + output: string; + + /** + * The type of the function tool call output. Always `function_call_output`. + */ + type: 'function_call_output'; + + /** + * The unique ID of the function tool call output. Populated when this item is + * returned via API. + */ + id?: string; + + /** + * The status of the item. One of `in_progress`, `completed`, or `incomplete`. + * Populated when items are returned via API. + */ + status?: 'in_progress' | 'completed' | 'incomplete'; + } + + /** + * A description of the chain of thought used by a reasoning model while generating + * a response. + */ + export interface Reasoning { + /** + * The unique identifier of the reasoning content. + */ + id: string; + + /** + * Reasoning text contents. + */ + content: Array; + + /** + * The type of the object. Always `reasoning`. + */ + type: 'reasoning'; + + /** + * The status of the item. One of `in_progress`, `completed`, or `incomplete`. + * Populated when items are returned via API. + */ + status?: 'in_progress' | 'completed' | 'incomplete'; + } + + export namespace Reasoning { + export interface Content { + /** + * A short summary of the reasoning used by the model when generating the response. + */ + text: string; + + /** + * The type of the object. Always `text`. + */ + type: 'reasoning_summary'; + } + } + + /** + * An internal identifier for an item to reference. + */ + export interface ItemReference { + /** + * The ID of the item to reference. + */ + id: string; + + /** + * The type of item to reference. Always `item_reference`. + */ + type: 'item_reference'; + } +} + +/** + * A list of one or many input items to the model, containing different content + * types. + */ +export type ResponseInputMessageContentList = Array; + +/** + * A text input to the model. + */ +export interface ResponseInputText { + /** + * The text input to the model. + */ + text: string; + + /** + * The type of the input item. Always `input_text`. + */ + type: 'input_text'; +} + +/** + * An audio output from the model. + */ +export interface ResponseOutputAudio { + /** + * Base64-encoded audio data from the model. + */ + data: string; + + /** + * The transcript of the audio data from the model. + */ + transcript: string; + + /** + * The type of the output audio. Always `output_audio`. + */ + type: 'output_audio'; +} + +/** + * An output message from the model. + */ +export type ResponseOutputItem = + | ResponseOutputMessage + | ResponseFileSearchToolCall + | ResponseFunctionToolCall + | ResponseFunctionWebSearch + | ResponseComputerToolCall + | ResponseOutputItem.Reasoning; + +export namespace ResponseOutputItem { + /** + * A description of the chain of thought used by a reasoning model while generating + * a response. + */ + export interface Reasoning { + /** + * The unique identifier of the reasoning content. + */ + id: string; + + /** + * Reasoning text contents. + */ + content: Array; + + /** + * The type of the object. Always `reasoning`. + */ + type: 'reasoning'; + + /** + * The status of the item. One of `in_progress`, `completed`, or `incomplete`. + * Populated when items are returned via API. + */ + status?: 'in_progress' | 'completed' | 'incomplete'; + } + + export namespace Reasoning { + export interface Content { + /** + * A short summary of the reasoning used by the model when generating the response. + */ + text: string; + + /** + * The type of the object. Always `text`. + */ + type: 'reasoning_summary'; + } + } +} + +/** + * Emitted when a new output item is added. + */ +export interface ResponseOutputItemAddedEvent { + /** + * The output item that was added. + */ + item: ResponseOutputItem; + + /** + * The index of the output item that was added. + */ + output_index: number; + + /** + * The type of the event. Always `response.output_item.added`. + */ + type: 'response.output_item.added'; +} + +/** + * Emitted when an output item is marked done. + */ +export interface ResponseOutputItemDoneEvent { + /** + * The output item that was marked done. + */ + item: ResponseOutputItem; + + /** + * The index of the output item that was marked done. + */ + output_index: number; + + /** + * The type of the event. Always `response.output_item.done`. + */ + type: 'response.output_item.done'; +} + +/** + * An output message from the model. + */ +export interface ResponseOutputMessage { + /** + * The unique ID of the output message. + */ + id: string; + + /** + * The content of the output message. + */ + content: Array; + + /** + * The role of the output message. Always `assistant`. + */ + role: 'assistant'; + + /** + * The status of the message input. One of `in_progress`, `completed`, or + * `incomplete`. Populated when input items are returned via API. + */ + status: 'in_progress' | 'completed' | 'incomplete'; + + /** + * The type of the output message. Always `message`. + */ + type: 'message'; +} + +/** + * A refusal from the model. + */ +export interface ResponseOutputRefusal { + /** + * The refusal explanationfrom the model. + */ + refusal: string; + + /** + * The type of the refusal. Always `refusal`. + */ + type: 'refusal'; +} + +/** + * A text output from the model. + */ +export interface ResponseOutputText { + /** + * The annotations of the text output. + */ + annotations: Array< + ResponseOutputText.FileCitation | ResponseOutputText.URLCitation | ResponseOutputText.FilePath + >; + + /** + * The text output from the model. + */ + text: string; + + /** + * The type of the output text. Always `output_text`. + */ + type: 'output_text'; +} + +export namespace ResponseOutputText { + /** + * A citation to a file. + */ + export interface FileCitation { + /** + * The ID of the file. + */ + file_id: string; + + /** + * The index of the file in the list of files. + */ + index: number; + + /** + * The type of the file citation. Always `file_citation`. + */ + type: 'file_citation'; + } + + /** + * A citation for a web resource used to generate a model response. + */ + export interface URLCitation { + /** + * The index of the last character of the URL citation in the message. + */ + end_index: number; + + /** + * The index of the first character of the URL citation in the message. + */ + start_index: number; + + /** + * The title of the web resource. + */ + title: string; + + /** + * The type of the URL citation. Always `url_citation`. + */ + type: 'url_citation'; + + /** + * The URL of the web resource. + */ + url: string; + } + + /** + * A path to a file. + */ + export interface FilePath { + /** + * The ID of the file. + */ + file_id: string; + + /** + * The index of the file in the list of files. + */ + index: number; + + /** + * The type of the file path. Always `file_path`. + */ + type: 'file_path'; + } +} + +/** + * Emitted when there is a partial refusal text. + */ +export interface ResponseRefusalDeltaEvent { + /** + * The index of the content part that the refusal text is added to. + */ + content_index: number; + + /** + * The refusal text that is added. + */ + delta: string; + + /** + * The ID of the output item that the refusal text is added to. + */ + item_id: string; + + /** + * The index of the output item that the refusal text is added to. + */ + output_index: number; + + /** + * The type of the event. Always `response.refusal.delta`. + */ + type: 'response.refusal.delta'; +} + +/** + * Emitted when refusal text is finalized. + */ +export interface ResponseRefusalDoneEvent { + /** + * The index of the content part that the refusal text is finalized. + */ + content_index: number; + + /** + * The ID of the output item that the refusal text is finalized. + */ + item_id: string; + + /** + * The index of the output item that the refusal text is finalized. + */ + output_index: number; + + /** + * The refusal text that is finalized. + */ + refusal: string; + + /** + * The type of the event. Always `response.refusal.done`. + */ + type: 'response.refusal.done'; +} + +/** + * The status of the response generation. One of `completed`, `failed`, + * `in_progress`, or `incomplete`. + */ +export type ResponseStatus = 'completed' | 'failed' | 'in_progress' | 'incomplete'; + +/** + * Emitted when there is a partial audio response. + */ +export type ResponseStreamEvent = + | ResponseAudioDeltaEvent + | ResponseAudioDoneEvent + | ResponseAudioTranscriptDeltaEvent + | ResponseAudioTranscriptDoneEvent + | ResponseCodeInterpreterCallCodeDeltaEvent + | ResponseCodeInterpreterCallCodeDoneEvent + | ResponseCodeInterpreterCallCompletedEvent + | ResponseCodeInterpreterCallInProgressEvent + | ResponseCodeInterpreterCallInterpretingEvent + | ResponseCompletedEvent + | ResponseContentPartAddedEvent + | ResponseContentPartDoneEvent + | ResponseCreatedEvent + | ResponseErrorEvent + | ResponseFileSearchCallCompletedEvent + | ResponseFileSearchCallInProgressEvent + | ResponseFileSearchCallSearchingEvent + | ResponseFunctionCallArgumentsDeltaEvent + | ResponseFunctionCallArgumentsDoneEvent + | ResponseInProgressEvent + | ResponseFailedEvent + | ResponseIncompleteEvent + | ResponseOutputItemAddedEvent + | ResponseOutputItemDoneEvent + | ResponseRefusalDeltaEvent + | ResponseRefusalDoneEvent + | ResponseTextAnnotationDeltaEvent + | ResponseTextDeltaEvent + | ResponseTextDoneEvent + | ResponseWebSearchCallCompletedEvent + | ResponseWebSearchCallInProgressEvent + | ResponseWebSearchCallSearchingEvent; + +/** + * Emitted when a text annotation is added. + */ +export interface ResponseTextAnnotationDeltaEvent { + /** + * A citation to a file. + */ + annotation: + | ResponseTextAnnotationDeltaEvent.FileCitation + | ResponseTextAnnotationDeltaEvent.URLCitation + | ResponseTextAnnotationDeltaEvent.FilePath; + + /** + * The index of the annotation that was added. + */ + annotation_index: number; + + /** + * The index of the content part that the text annotation was added to. + */ + content_index: number; + + /** + * The ID of the output item that the text annotation was added to. + */ + item_id: string; + + /** + * The index of the output item that the text annotation was added to. + */ + output_index: number; + + /** + * The type of the event. Always `response.output_text.annotation.added`. + */ + type: 'response.output_text.annotation.added'; +} + +export namespace ResponseTextAnnotationDeltaEvent { + /** + * A citation to a file. + */ + export interface FileCitation { + /** + * The ID of the file. + */ + file_id: string; + + /** + * The index of the file in the list of files. + */ + index: number; + + /** + * The type of the file citation. Always `file_citation`. + */ + type: 'file_citation'; + } + + /** + * A citation for a web resource used to generate a model response. + */ + export interface URLCitation { + /** + * The index of the last character of the URL citation in the message. + */ + end_index: number; + + /** + * The index of the first character of the URL citation in the message. + */ + start_index: number; + + /** + * The title of the web resource. + */ + title: string; + + /** + * The type of the URL citation. Always `url_citation`. + */ + type: 'url_citation'; + + /** + * The URL of the web resource. + */ + url: string; + } + + /** + * A path to a file. + */ + export interface FilePath { + /** + * The ID of the file. + */ + file_id: string; + + /** + * The index of the file in the list of files. + */ + index: number; + + /** + * The type of the file path. Always `file_path`. + */ + type: 'file_path'; + } +} + +/** + * Configuration options for a text response from the model. Can be plain text or + * structured JSON data. Learn more: + * + * - [Text inputs and outputs](https://platform.openai.com/docs/guides/text) + * - [Structured Outputs](https://platform.openai.com/docs/guides/structured-outputs) + */ +export interface ResponseTextConfig { + /** + * An object specifying the format that the model must output. + * + * Configuring `{ "type": "json_schema" }` enables Structured Outputs, which + * ensures the model will match your supplied JSON schema. Learn more in the + * [Structured Outputs guide](https://platform.openai.com/docs/guides/structured-outputs). + * + * The default format is `{ "type": "text" }` with no additional options. + * + * **Not recommended for gpt-4o and newer models:** + * + * Setting to `{ "type": "json_object" }` enables the older JSON mode, which + * ensures the message the model generates is valid JSON. Using `json_schema` is + * preferred for models that support it. + */ + format?: ResponseFormatTextConfig; +} + +/** + * Emitted when there is an additional text delta. + */ +export interface ResponseTextDeltaEvent { + /** + * The index of the content part that the text delta was added to. + */ + content_index: number; + + /** + * The text delta that was added. + */ + delta: string; + + /** + * The ID of the output item that the text delta was added to. + */ + item_id: string; + + /** + * The index of the output item that the text delta was added to. + */ + output_index: number; + + /** + * The type of the event. Always `response.output_text.delta`. + */ + type: 'response.output_text.delta'; +} + +/** + * Emitted when text content is finalized. + */ +export interface ResponseTextDoneEvent { + /** + * The index of the content part that the text content is finalized. + */ + content_index: number; + + /** + * The ID of the output item that the text content is finalized. + */ + item_id: string; + + /** + * The index of the output item that the text content is finalized. + */ + output_index: number; + + /** + * The text content that is finalized. + */ + text: string; + + /** + * The type of the event. Always `response.output_text.done`. + */ + type: 'response.output_text.done'; +} + +/** + * Represents token usage details including input tokens, output tokens, a + * breakdown of output tokens, and the total tokens used. + */ +export interface ResponseUsage { + /** + * The number of input tokens. + */ + input_tokens: number; + + /** + * The number of output tokens. + */ + output_tokens: number; + + /** + * A detailed breakdown of the output tokens. + */ + output_tokens_details: ResponseUsage.OutputTokensDetails; + + /** + * The total number of tokens used. + */ + total_tokens: number; +} + +export namespace ResponseUsage { + /** + * A detailed breakdown of the output tokens. + */ + export interface OutputTokensDetails { + /** + * The number of reasoning tokens. + */ + reasoning_tokens: number; + } +} + +/** + * Emitted when a web search call is completed. + */ +export interface ResponseWebSearchCallCompletedEvent { + /** + * Unique ID for the output item associated with the web search call. + */ + item_id: string; + + /** + * The index of the output item that the web search call is associated with. + */ + output_index: number; + + /** + * The type of the event. Always `response.web_search_call.completed`. + */ + type: 'response.web_search_call.completed'; +} + +/** + * Emitted when a web search call is initiated. + */ +export interface ResponseWebSearchCallInProgressEvent { + /** + * Unique ID for the output item associated with the web search call. + */ + item_id: string; + + /** + * The index of the output item that the web search call is associated with. + */ + output_index: number; + + /** + * The type of the event. Always `response.web_search_call.in_progress`. + */ + type: 'response.web_search_call.in_progress'; +} + +/** + * Emitted when a web search call is executing. + */ +export interface ResponseWebSearchCallSearchingEvent { + /** + * Unique ID for the output item associated with the web search call. + */ + item_id: string; + + /** + * The index of the output item that the web search call is associated with. + */ + output_index: number; + + /** + * The type of the event. Always `response.web_search_call.searching`. + */ + type: 'response.web_search_call.searching'; +} + +/** + * A tool that searches for relevant content from uploaded files. Learn more about + * the + * [file search tool](https://platform.openai.com/docs/guides/tools-file-search). + */ +export type Tool = FileSearchTool | FunctionTool | ComputerTool | WebSearchTool; + +/** + * Use this option to force the model to call a specific function. + */ +export interface ToolChoiceFunction { + /** + * The name of the function to call. + */ + name: string; + + /** + * For function calling, the type is always `function`. + */ + type: 'function'; +} + +/** + * Controls which (if any) tool is called by the model. + * + * `none` means the model will not call any tool and instead generates a message. + * + * `auto` means the model can pick between generating a message or calling one or + * more tools. + * + * `required` means the model must call one or more tools. + */ +export type ToolChoiceOptions = 'none' | 'auto' | 'required'; + +/** + * Indicates that the model should use a built-in tool to generate a response. + * [Learn more about built-in tools](https://platform.openai.com/docs/guides/tools). + */ +export interface ToolChoiceTypes { + /** + * The type of hosted tool the model should to use. Learn more about + * [built-in tools](https://platform.openai.com/docs/guides/tools). + * + * Allowed values are: + * + * - `file_search` + * - `web_search_preview` + * - `computer_use_preview` + */ + type: 'file_search' | 'web_search_preview' | 'computer_use_preview' | 'web_search_preview_2025_03_11'; +} + +/** + * This tool searches the web for relevant results to use in a response. Learn more + * about the + * [web search tool](https://platform.openai.com/docs/guides/tools-web-search). + */ +export interface WebSearchTool { + /** + * The type of the web search tool. One of: + * + * - `web_search_preview` + * - `web_search_preview_2025_03_11` + */ + type: 'web_search_preview' | 'web_search_preview_2025_03_11'; + + /** + * High level guidance for the amount of context window space to use for the + * search. One of `low`, `medium`, or `high`. `medium` is the default. + */ + search_context_size?: 'low' | 'medium' | 'high'; + + user_location?: WebSearchTool.UserLocation | null; +} + +export namespace WebSearchTool { + export interface UserLocation { + /** + * The type of location approximation. Always `approximate`. + */ + type: 'approximate'; + + /** + * Free text input for the city of the user, e.g. `San Francisco`. + */ + city?: string; + + /** + * The two-letter [ISO country code](https://en.wikipedia.org/wiki/ISO_3166-1) of + * the user, e.g. `US`. + */ + country?: string; + + /** + * Free text input for the region of the user, e.g. `California`. + */ + region?: string; + + /** + * The [IANA timezone](https://timeapi.io/documentation/iana-timezones) of the + * user, e.g. `America/Los_Angeles`. + */ + timezone?: string; + } +} + +export type ResponseCreateParams = ResponseCreateParamsNonStreaming | ResponseCreateParamsStreaming; + +export interface ResponseCreateParamsBase { + /** + * Text, image, or file inputs to the model, used to generate a response. + * + * Learn more: + * + * - [Text inputs and outputs](https://platform.openai.com/docs/guides/text) + * - [Image inputs](https://platform.openai.com/docs/guides/images) + * - [File inputs](https://platform.openai.com/docs/guides/pdf-files) + * - [Conversation state](https://platform.openai.com/docs/guides/conversation-state) + * - [Function calling](https://platform.openai.com/docs/guides/function-calling) + */ + input: string | ResponseInput; + + /** + * Model ID used to generate the response, like `gpt-4o` or `o1`. OpenAI offers a + * wide range of models with different capabilities, performance characteristics, + * and price points. Refer to the + * [model guide](https://platform.openai.com/docs/models) to browse and compare + * available models. + */ + model: (string & {}) | Shared.ChatModel; + + /** + * Specify additional output data to include in the model response. Currently + * supported values are: + * + * - `file_search_call.results`: Include the search results of the file search tool + * call. + * - `message.input_image.image_url`: Include image urls from the input message. + * - `computer_call_output.output.image_url`: Include image urls from the computer + * call output. + */ + include?: Array | null; + + /** + * Inserts a system (or developer) message as the first item in the model's + * context. + * + * When using along with `previous_response_id`, the instructions from a previous + * response will be not be carried over to the next response. This makes it simple + * to swap out system (or developer) messages in new responses. + */ + instructions?: string | null; + + /** + * An upper bound for the number of tokens that can be generated for a response, + * including visible output tokens and + * [reasoning tokens](https://platform.openai.com/docs/guides/reasoning). + */ + max_output_tokens?: number | null; + + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. + * + * Keys are strings with a maximum length of 64 characters. Values are strings with + * a maximum length of 512 characters. + */ + metadata?: Shared.Metadata | null; + + /** + * Whether to allow the model to run tool calls in parallel. + */ + parallel_tool_calls?: boolean | null; + + /** + * The unique ID of the previous response to the model. Use this to create + * multi-turn conversations. Learn more about + * [conversation state](https://platform.openai.com/docs/guides/conversation-state). + */ + previous_response_id?: string | null; + + /** + * **o-series models only** + * + * Configuration options for + * [reasoning models](https://platform.openai.com/docs/guides/reasoning). + */ + reasoning?: Shared.Reasoning | null; + + /** + * Whether to store the generated model response for later retrieval via API. + */ + store?: boolean | null; + + /** + * If set to true, the model response data will be streamed to the client as it is + * generated using + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format). + * See the + * [Streaming section below](https://platform.openai.com/docs/api-reference/responses-streaming) + * for more information. + */ + stream?: boolean | null; + + /** + * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will + * make the output more random, while lower values like 0.2 will make it more + * focused and deterministic. We generally recommend altering this or `top_p` but + * not both. + */ + temperature?: number | null; + + /** + * Configuration options for a text response from the model. Can be plain text or + * structured JSON data. Learn more: + * + * - [Text inputs and outputs](https://platform.openai.com/docs/guides/text) + * - [Structured Outputs](https://platform.openai.com/docs/guides/structured-outputs) + */ + text?: ResponseTextConfig; + + /** + * How the model should select which tool (or tools) to use when generating a + * response. See the `tools` parameter to see how to specify which tools the model + * can call. + */ + tool_choice?: ToolChoiceOptions | ToolChoiceTypes | ToolChoiceFunction; + + /** + * An array of tools the model may call while generating a response. You can + * specify which tool to use by setting the `tool_choice` parameter. + * + * The two categories of tools you can provide the model are: + * + * - **Built-in tools**: Tools that are provided by OpenAI that extend the model's + * capabilities, like + * [web search](https://platform.openai.com/docs/guides/tools-web-search) or + * [file search](https://platform.openai.com/docs/guides/tools-file-search). + * Learn more about + * [built-in tools](https://platform.openai.com/docs/guides/tools). + * - **Function calls (custom tools)**: Functions that are defined by you, enabling + * the model to call your own code. Learn more about + * [function calling](https://platform.openai.com/docs/guides/function-calling). + */ + tools?: Array; + + /** + * An alternative to sampling with temperature, called nucleus sampling, where the + * model considers the results of the tokens with top_p probability mass. So 0.1 + * means only the tokens comprising the top 10% probability mass are considered. + * + * We generally recommend altering this or `temperature` but not both. + */ + top_p?: number | null; + + /** + * The truncation strategy to use for the model response. + * + * - `auto`: If the context of this response and previous ones exceeds the model's + * context window size, the model will truncate the response to fit the context + * window by dropping input items in the middle of the conversation. + * - `disabled` (default): If a model response will exceed the context window size + * for a model, the request will fail with a 400 error. + */ + truncation?: 'auto' | 'disabled' | null; + + /** + * A unique identifier representing your end-user, which can help OpenAI to monitor + * and detect abuse. + * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#end-user-ids). + */ + user?: string; +} + +export namespace ResponseCreateParams { + export type ResponseCreateParamsNonStreaming = ResponsesAPI.ResponseCreateParamsNonStreaming; + export type ResponseCreateParamsStreaming = ResponsesAPI.ResponseCreateParamsStreaming; +} + +export interface ResponseCreateParamsNonStreaming extends ResponseCreateParamsBase { + /** + * If set to true, the model response data will be streamed to the client as it is + * generated using + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format). + * See the + * [Streaming section below](https://platform.openai.com/docs/api-reference/responses-streaming) + * for more information. + */ + stream?: false | null; +} + +export interface ResponseCreateParamsStreaming extends ResponseCreateParamsBase { + /** + * If set to true, the model response data will be streamed to the client as it is + * generated using + * [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format). + * See the + * [Streaming section below](https://platform.openai.com/docs/api-reference/responses-streaming) + * for more information. + */ + stream: true; +} + +export interface ResponseRetrieveParams { + /** + * Additional fields to include in the response. See the `include` parameter for + * Response creation above for more information. + */ + include?: Array; +} + +Responses.InputItems = InputItems; +Responses.ResponseItemListDataPage = ResponseItemListDataPage; + +export declare namespace Responses { + export { + InputItems as InputItems, + type ResponseItemList as ResponseItemList, + ResponseItemListDataPage as ResponseItemListDataPage, + type InputItemListParams as InputItemListParams, + }; +} diff --git a/src/resources/shared.ts b/src/resources/shared.ts index 3bb11582f..86b2d2dee 100644 --- a/src/resources/shared.ts +++ b/src/resources/shared.ts @@ -1,5 +1,96 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. +export type ChatModel = + | 'o3-mini' + | 'o3-mini-2025-01-31' + | 'o1' + | 'o1-2024-12-17' + | 'o1-preview' + | 'o1-preview-2024-09-12' + | 'o1-mini' + | 'o1-mini-2024-09-12' + | 'computer-use-preview' + | 'computer-use-preview-2025-02-04' + | 'computer-use-preview-2025-03-11' + | 'gpt-4.5-preview' + | 'gpt-4.5-preview-2025-02-27' + | 'gpt-4o' + | 'gpt-4o-2024-11-20' + | 'gpt-4o-2024-08-06' + | 'gpt-4o-2024-05-13' + | 'gpt-4o-audio-preview' + | 'gpt-4o-audio-preview-2024-10-01' + | 'gpt-4o-audio-preview-2024-12-17' + | 'gpt-4o-mini-audio-preview' + | 'gpt-4o-mini-audio-preview-2024-12-17' + | 'chatgpt-4o-latest' + | 'gpt-4o-mini' + | 'gpt-4o-mini-2024-07-18' + | 'gpt-4-turbo' + | 'gpt-4-turbo-2024-04-09' + | 'gpt-4-0125-preview' + | 'gpt-4-turbo-preview' + | 'gpt-4-1106-preview' + | 'gpt-4-vision-preview' + | 'gpt-4' + | 'gpt-4-0314' + | 'gpt-4-0613' + | 'gpt-4-32k' + | 'gpt-4-32k-0314' + | 'gpt-4-32k-0613' + | 'gpt-3.5-turbo' + | 'gpt-3.5-turbo-16k' + | 'gpt-3.5-turbo-0301' + | 'gpt-3.5-turbo-0613' + | 'gpt-3.5-turbo-1106' + | 'gpt-3.5-turbo-0125' + | 'gpt-3.5-turbo-16k-0613'; + +/** + * A filter used to compare a specified attribute key to a given value using a + * defined comparison operation. + */ +export interface ComparisonFilter { + /** + * The key to compare against the value. + */ + key: string; + + /** + * Specifies the comparison operator: `eq`, `ne`, `gt`, `gte`, `lt`, `lte`. + * + * - `eq`: equals + * - `ne`: not equal + * - `gt`: greater than + * - `gte`: greater than or equal + * - `lt`: less than + * - `lte`: less than or equal + */ + type: 'eq' | 'ne' | 'gt' | 'gte' | 'lt' | 'lte'; + + /** + * The value to compare against the attribute key; supports string, number, or + * boolean types. + */ + value: string | number | boolean; +} + +/** + * Combine multiple filters using `and` or `or`. + */ +export interface CompoundFilter { + /** + * Array of filters to combine. Items can be `ComparisonFilter` or + * `CompoundFilter`. + */ + filters: Array; + + /** + * Type of operation: `and` or `or`. + */ + type: 'and' | 'or'; +} + export interface ErrorObject { code: string | null; @@ -65,23 +156,76 @@ export type FunctionParameters = Record; */ export type Metadata = Record; +/** + * **o-series models only** + * + * Configuration options for + * [reasoning models](https://platform.openai.com/docs/guides/reasoning). + */ +export interface Reasoning { + /** + * **o-series models only** + * + * Constrains effort on reasoning for + * [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently + * supported values are `low`, `medium`, and `high`. Reducing reasoning effort can + * result in faster responses and fewer tokens used on reasoning in a response. + */ + effort: ReasoningEffort | null; + + /** + * **o-series models only** + * + * A summary of the reasoning performed by the model. This can be useful for + * debugging and understanding the model's reasoning process. One of `concise` or + * `detailed`. + */ + generate_summary?: 'concise' | 'detailed' | null; +} + +/** + * **o-series models only** + * + * Constrains effort on reasoning for + * [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently + * supported values are `low`, `medium`, and `high`. Reducing reasoning effort can + * result in faster responses and fewer tokens used on reasoning in a response. + */ +export type ReasoningEffort = 'low' | 'medium' | 'high' | null; + +/** + * JSON object response format. An older method of generating JSON responses. Using + * `json_schema` is recommended for models that support it. Note that the model + * will not generate JSON without a system or user message instructing it to do so. + */ export interface ResponseFormatJSONObject { /** - * The type of response format being defined: `json_object` + * The type of response format being defined. Always `json_object`. */ type: 'json_object'; } +/** + * JSON Schema response format. Used to generate structured JSON responses. Learn + * more about + * [Structured Outputs](https://platform.openai.com/docs/guides/structured-outputs). + */ export interface ResponseFormatJSONSchema { + /** + * Structured Outputs configuration options, including a JSON Schema. + */ json_schema: ResponseFormatJSONSchema.JSONSchema; /** - * The type of response format being defined: `json_schema` + * The type of response format being defined. Always `json_schema`. */ type: 'json_schema'; } export namespace ResponseFormatJSONSchema { + /** + * Structured Outputs configuration options, including a JSON Schema. + */ export interface JSONSchema { /** * The name of the response format. Must be a-z, A-Z, 0-9, or contain underscores @@ -96,7 +240,8 @@ export namespace ResponseFormatJSONSchema { description?: string; /** - * The schema for the response format, described as a JSON Schema object. + * The schema for the response format, described as a JSON Schema object. Learn how + * to build JSON schemas [here](https://json-schema.org/). */ schema?: Record; @@ -111,9 +256,12 @@ export namespace ResponseFormatJSONSchema { } } +/** + * Default response format. Used to generate text responses. + */ export interface ResponseFormatText { /** - * The type of response format being defined: `text` + * The type of response format being defined. Always `text`. */ type: 'text'; } diff --git a/src/resources/uploads/uploads.ts b/src/resources/uploads/uploads.ts index f977e18f6..9e046b48d 100644 --- a/src/resources/uploads/uploads.ts +++ b/src/resources/uploads/uploads.ts @@ -22,10 +22,9 @@ export class Uploads extends APIResource { * contains all the parts you uploaded. This File is usable in the rest of our * platform as a regular File object. * - * For certain `purpose`s, the correct `mime_type` must be specified. Please refer - * to documentation for the supported MIME types for your use case: - * - * - [Assistants](https://platform.openai.com/docs/assistants/tools/file-search#supported-files) + * For certain `purpose` values, the correct `mime_type` must be specified. Please + * refer to documentation for the + * [supported MIME types for your use case](https://platform.openai.com/docs/assistants/tools/file-search#supported-files). * * For guidance on the proper filename extensions for each purpose, please follow * the documentation on diff --git a/src/resources/beta/vector-stores/file-batches.ts b/src/resources/vector-stores/file-batches.ts similarity index 92% rename from src/resources/beta/vector-stores/file-batches.ts rename to src/resources/vector-stores/file-batches.ts index 2c47cb9c2..9be1d81a3 100644 --- a/src/resources/beta/vector-stores/file-batches.ts +++ b/src/resources/vector-stores/file-batches.ts @@ -1,15 +1,15 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import { APIResource } from '../../../resource'; -import { isRequestOptions } from '../../../core'; -import { sleep } from '../../../core'; -import { Uploadable } from '../../../core'; -import { allSettledWithThrow } from '../../../lib/Util'; -import * as Core from '../../../core'; +import { APIResource } from '../../resource'; +import { isRequestOptions } from '../../core'; +import { sleep } from '../../core'; +import { Uploadable } from '../../core'; +import { allSettledWithThrow } from '../../lib/Util'; +import * as Core from '../../core'; import * as FilesAPI from './files'; import { VectorStoreFilesPage } from './files'; import * as VectorStoresAPI from './vector-stores'; -import { type CursorPageParams } from '../../../pagination'; +import { type CursorPageParams } from '../../pagination'; export class FileBatches extends APIResource { /** @@ -265,6 +265,15 @@ export interface FileBatchCreateParams { */ file_ids: Array; + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. Keys are strings with a maximum + * length of 64 characters. Values are strings with a maximum length of 512 + * characters, booleans, or numbers. + */ + attributes?: Record | null; + /** * The chunking strategy used to chunk the file(s). If not set, will use the `auto` * strategy. Only applicable if `file_ids` is non-empty. diff --git a/src/resources/beta/vector-stores/files.ts b/src/resources/vector-stores/files.ts similarity index 74% rename from src/resources/beta/vector-stores/files.ts rename to src/resources/vector-stores/files.ts index 1fda9a99b..28caf9781 100644 --- a/src/resources/beta/vector-stores/files.ts +++ b/src/resources/vector-stores/files.ts @@ -1,10 +1,10 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import { APIResource } from '../../../resource'; -import { sleep, Uploadable, isRequestOptions } from '../../../core'; -import * as Core from '../../../core'; +import { APIResource } from '../../resource'; +import { sleep, Uploadable, isRequestOptions } from '../../core'; +import * as Core from '../../core'; import * as VectorStoresAPI from './vector-stores'; -import { CursorPage, type CursorPageParams } from '../../../pagination'; +import { CursorPage, type CursorPageParams, Page } from '../../pagination'; export class Files extends APIResource { /** @@ -38,6 +38,22 @@ export class Files extends APIResource { }); } + /** + * Update attributes on a vector store file. + */ + update( + vectorStoreId: string, + fileId: string, + body: FileUpdateParams, + options?: Core.RequestOptions, + ): Core.APIPromise { + return this._client.post(`/vector_stores/${vectorStoreId}/files/${fileId}`, { + body, + ...options, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, + }); + } + /** * Returns a list of vector store files. */ @@ -167,10 +183,30 @@ export class Files extends APIResource { const fileInfo = await this.upload(vectorStoreId, file, options); return await this.poll(vectorStoreId, fileInfo.id, options); } + + /** + * Retrieve the parsed contents of a vector store file. + */ + content( + vectorStoreId: string, + fileId: string, + options?: Core.RequestOptions, + ): Core.PagePromise { + return this._client.getAPIList( + `/vector_stores/${vectorStoreId}/files/${fileId}/content`, + FileContentResponsesPage, + { ...options, headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers } }, + ); + } } export class VectorStoreFilesPage extends CursorPage {} +/** + * Note: no pagination actually occurs yet, this is for forwards-compatibility. + */ +export class FileContentResponsesPage extends Page {} + /** * A list of files attached to a vector store. */ @@ -217,6 +253,15 @@ export interface VectorStoreFile { */ vector_store_id: string; + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. Keys are strings with a maximum + * length of 64 characters. Values are strings with a maximum length of 512 + * characters, booleans, or numbers. + */ + attributes?: Record | null; + /** * The strategy used to chunk the file. */ @@ -249,6 +294,18 @@ export interface VectorStoreFileDeleted { object: 'vector_store.file.deleted'; } +export interface FileContentResponse { + /** + * The text content + */ + text?: string; + + /** + * The content type (currently only `"text"`) + */ + type?: string; +} + export interface FileCreateParams { /** * A [File](https://platform.openai.com/docs/api-reference/files) ID that the @@ -257,6 +314,15 @@ export interface FileCreateParams { */ file_id: string; + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. Keys are strings with a maximum + * length of 64 characters. Values are strings with a maximum length of 512 + * characters, booleans, or numbers. + */ + attributes?: Record | null; + /** * The chunking strategy used to chunk the file(s). If not set, will use the `auto` * strategy. Only applicable if `file_ids` is non-empty. @@ -264,6 +330,17 @@ export interface FileCreateParams { chunking_strategy?: VectorStoresAPI.FileChunkingStrategyParam; } +export interface FileUpdateParams { + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. Keys are strings with a maximum + * length of 64 characters. Values are strings with a maximum length of 512 + * characters, booleans, or numbers. + */ + attributes: Record | null; +} + export interface FileListParams extends CursorPageParams { /** * A cursor for use in pagination. `before` is an object ID that defines your place @@ -286,13 +363,17 @@ export interface FileListParams extends CursorPageParams { } Files.VectorStoreFilesPage = VectorStoreFilesPage; +Files.FileContentResponsesPage = FileContentResponsesPage; export declare namespace Files { export { type VectorStoreFile as VectorStoreFile, type VectorStoreFileDeleted as VectorStoreFileDeleted, + type FileContentResponse as FileContentResponse, VectorStoreFilesPage as VectorStoreFilesPage, + FileContentResponsesPage as FileContentResponsesPage, type FileCreateParams as FileCreateParams, + type FileUpdateParams as FileUpdateParams, type FileListParams as FileListParams, }; } diff --git a/src/resources/beta/vector-stores/index.ts b/src/resources/vector-stores/index.ts similarity index 82% rename from src/resources/beta/vector-stores/index.ts rename to src/resources/vector-stores/index.ts index d587bd160..9cbcbc0b2 100644 --- a/src/resources/beta/vector-stores/index.ts +++ b/src/resources/vector-stores/index.ts @@ -8,14 +8,18 @@ export { } from './file-batches'; export { VectorStoreFilesPage, + FileContentResponsesPage, Files, type VectorStoreFile, type VectorStoreFileDeleted, + type FileContentResponse, type FileCreateParams, + type FileUpdateParams, type FileListParams, } from './files'; export { VectorStoresPage, + VectorStoreSearchResponsesPage, VectorStores, type AutoFileChunkingStrategyParam, type FileChunkingStrategy, @@ -26,7 +30,9 @@ export { type StaticFileChunkingStrategyObjectParam, type VectorStore, type VectorStoreDeleted, + type VectorStoreSearchResponse, type VectorStoreCreateParams, type VectorStoreUpdateParams, type VectorStoreListParams, + type VectorStoreSearchParams, } from './vector-stores'; diff --git a/src/resources/beta/vector-stores/vector-stores.ts b/src/resources/vector-stores/vector-stores.ts similarity index 77% rename from src/resources/beta/vector-stores/vector-stores.ts rename to src/resources/vector-stores/vector-stores.ts index 8438b79da..7d61e7fd6 100644 --- a/src/resources/beta/vector-stores/vector-stores.ts +++ b/src/resources/vector-stores/vector-stores.ts @@ -1,9 +1,9 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. -import { APIResource } from '../../../resource'; -import { isRequestOptions } from '../../../core'; -import * as Core from '../../../core'; -import * as Shared from '../../shared'; +import { APIResource } from '../../resource'; +import { isRequestOptions } from '../../core'; +import * as Core from '../../core'; +import * as Shared from '../shared'; import * as FileBatchesAPI from './file-batches'; import { FileBatchCreateParams, @@ -13,14 +13,17 @@ import { } from './file-batches'; import * as FilesAPI from './files'; import { + FileContentResponse, + FileContentResponsesPage, FileCreateParams, FileListParams, + FileUpdateParams, Files, VectorStoreFile, VectorStoreFileDeleted, VectorStoreFilesPage, } from './files'; -import { CursorPage, type CursorPageParams } from '../../../pagination'; +import { CursorPage, type CursorPageParams, Page } from '../../pagination'; export class VectorStores extends APIResource { files: FilesAPI.Files = new FilesAPI.Files(this._client); @@ -93,10 +96,32 @@ export class VectorStores extends APIResource { headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, }); } + + /** + * Search a vector store for relevant chunks based on a query and file attributes + * filter. + */ + search( + vectorStoreId: string, + body: VectorStoreSearchParams, + options?: Core.RequestOptions, + ): Core.PagePromise { + return this._client.getAPIList(`/vector_stores/${vectorStoreId}/search`, VectorStoreSearchResponsesPage, { + body, + method: 'post', + ...options, + headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers }, + }); + } } export class VectorStoresPage extends CursorPage {} +/** + * Note: no pagination actually occurs yet, this is for forwards-compatibility. + */ +export class VectorStoreSearchResponsesPage extends Page {} + /** * The default strategy. This strategy currently uses a `max_chunk_size_tokens` of * `800` and `chunk_overlap_tokens` of `400`. @@ -155,6 +180,9 @@ export interface StaticFileChunkingStrategyObject { type: 'static'; } +/** + * Customize your own chunking strategy by setting chunk size and chunk overlap. + */ export interface StaticFileChunkingStrategyObjectParam { static: StaticFileChunkingStrategy; @@ -282,6 +310,51 @@ export interface VectorStoreDeleted { object: 'vector_store.deleted'; } +export interface VectorStoreSearchResponse { + /** + * Set of 16 key-value pairs that can be attached to an object. This can be useful + * for storing additional information about the object in a structured format, and + * querying for objects via API or the dashboard. Keys are strings with a maximum + * length of 64 characters. Values are strings with a maximum length of 512 + * characters, booleans, or numbers. + */ + attributes: Record | null; + + /** + * Content chunks from the file. + */ + content: Array; + + /** + * The ID of the vector store file. + */ + file_id: string; + + /** + * The name of the vector store file. + */ + filename: string; + + /** + * The similarity score for the result. + */ + score: number; +} + +export namespace VectorStoreSearchResponse { + export interface Content { + /** + * The text content returned from search. + */ + text: string; + + /** + * The type of content. + */ + type: 'text'; + } +} + export interface VectorStoreCreateParams { /** * The chunking strategy used to chunk the file(s). If not set, will use the `auto` @@ -391,9 +464,50 @@ export interface VectorStoreListParams extends CursorPageParams { order?: 'asc' | 'desc'; } +export interface VectorStoreSearchParams { + /** + * A query string for a search + */ + query: string | Array; + + /** + * A filter to apply based on file attributes. + */ + filters?: Shared.ComparisonFilter | Shared.CompoundFilter; + + /** + * The maximum number of results to return. This number should be between 1 and 50 + * inclusive. + */ + max_num_results?: number; + + /** + * Ranking options for search. + */ + ranking_options?: VectorStoreSearchParams.RankingOptions; + + /** + * Whether to rewrite the natural language query for vector search. + */ + rewrite_query?: boolean; +} + +export namespace VectorStoreSearchParams { + /** + * Ranking options for search. + */ + export interface RankingOptions { + ranker?: 'auto' | 'default-2024-11-15'; + + score_threshold?: number; + } +} + VectorStores.VectorStoresPage = VectorStoresPage; +VectorStores.VectorStoreSearchResponsesPage = VectorStoreSearchResponsesPage; VectorStores.Files = Files; VectorStores.VectorStoreFilesPage = VectorStoreFilesPage; +VectorStores.FileContentResponsesPage = FileContentResponsesPage; VectorStores.FileBatches = FileBatches; export declare namespace VectorStores { @@ -407,18 +521,24 @@ export declare namespace VectorStores { type StaticFileChunkingStrategyObjectParam as StaticFileChunkingStrategyObjectParam, type VectorStore as VectorStore, type VectorStoreDeleted as VectorStoreDeleted, + type VectorStoreSearchResponse as VectorStoreSearchResponse, VectorStoresPage as VectorStoresPage, + VectorStoreSearchResponsesPage as VectorStoreSearchResponsesPage, type VectorStoreCreateParams as VectorStoreCreateParams, type VectorStoreUpdateParams as VectorStoreUpdateParams, type VectorStoreListParams as VectorStoreListParams, + type VectorStoreSearchParams as VectorStoreSearchParams, }; export { Files as Files, type VectorStoreFile as VectorStoreFile, type VectorStoreFileDeleted as VectorStoreFileDeleted, + type FileContentResponse as FileContentResponse, VectorStoreFilesPage as VectorStoreFilesPage, + FileContentResponsesPage as FileContentResponsesPage, type FileCreateParams as FileCreateParams, + type FileUpdateParams as FileUpdateParams, type FileListParams as FileListParams, }; diff --git a/src/streaming.ts b/src/streaming.ts index 52266154c..25b960314 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -41,7 +41,7 @@ export class Stream implements AsyncIterable { continue; } - if (sse.event === null) { + if (sse.event === null || sse.event.startsWith('response.')) { let data; try { diff --git a/tests/api-resources/chat/completions/completions.test.ts b/tests/api-resources/chat/completions/completions.test.ts index acdd631db..eddf252b1 100644 --- a/tests/api-resources/chat/completions/completions.test.ts +++ b/tests/api-resources/chat/completions/completions.test.ts @@ -43,9 +43,9 @@ describe('resource completions', () => { presence_penalty: -2, reasoning_effort: 'low', response_format: { type: 'text' }, - seed: 0, + seed: -9007199254740991, service_tier: 'auto', - stop: 'string', + stop: '\n', store: true, stream: false, stream_options: { include_usage: true }, @@ -60,6 +60,13 @@ describe('resource completions', () => { top_logprobs: 0, top_p: 1, user: 'user-1234', + web_search_options: { + search_context_size: 'low', + user_location: { + approximate: { city: 'city', country: 'country', region: 'region', timezone: 'timezone' }, + type: 'approximate', + }, + }, }); }); diff --git a/tests/api-resources/responses/input-items.test.ts b/tests/api-resources/responses/input-items.test.ts new file mode 100644 index 000000000..51b86f1b3 --- /dev/null +++ b/tests/api-resources/responses/input-items.test.ts @@ -0,0 +1,40 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import OpenAI from 'openai'; +import { Response } from 'node-fetch'; + +const client = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('resource inputItems', () => { + test('list', async () => { + const responsePromise = client.responses.inputItems.list('response_id'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('list: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + client.responses.inputItems.list('response_id', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('list: request options and params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + client.responses.inputItems.list( + 'response_id', + { after: 'after', before: 'before', limit: 0, order: 'asc' }, + { path: '/_stainless_unknown_path' }, + ), + ).rejects.toThrow(OpenAI.NotFoundError); + }); +}); diff --git a/tests/api-resources/beta/vector-stores/files.test.ts b/tests/api-resources/responses/responses.test.ts similarity index 58% rename from tests/api-resources/beta/vector-stores/files.test.ts rename to tests/api-resources/responses/responses.test.ts index 7c14d4de3..e10722738 100644 --- a/tests/api-resources/beta/vector-stores/files.test.ts +++ b/tests/api-resources/responses/responses.test.ts @@ -8,9 +8,9 @@ const client = new OpenAI({ baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', }); -describe('resource files', () => { +describe('resource responses', () => { test('create: only required params', async () => { - const responsePromise = client.beta.vectorStores.files.create('vs_abc123', { file_id: 'file_id' }); + const responsePromise = client.responses.create({ input: 'string', model: 'gpt-4o' }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -21,14 +21,38 @@ describe('resource files', () => { }); test('create: required and optional params', async () => { - const response = await client.beta.vectorStores.files.create('vs_abc123', { - file_id: 'file_id', - chunking_strategy: { type: 'auto' }, + const response = await client.responses.create({ + input: 'string', + model: 'gpt-4o', + include: ['file_search_call.results'], + instructions: 'instructions', + max_output_tokens: 0, + metadata: { foo: 'string' }, + parallel_tool_calls: true, + previous_response_id: 'previous_response_id', + reasoning: { effort: 'low', generate_summary: 'concise' }, + store: true, + stream: false, + temperature: 1, + text: { format: { type: 'text' } }, + tool_choice: 'none', + tools: [ + { + type: 'file_search', + vector_store_ids: ['string'], + filters: { key: 'key', type: 'eq', value: 'string' }, + max_num_results: 0, + ranking_options: { ranker: 'auto', score_threshold: 0 }, + }, + ], + top_p: 1, + truncation: 'auto', + user: 'user-1234', }); }); test('retrieve', async () => { - const responsePromise = client.beta.vectorStores.files.retrieve('vs_abc123', 'file-abc123'); + const responsePromise = client.responses.retrieve('resp_677efb5139a88190b512bc3fef8e535d'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -41,43 +65,25 @@ describe('resource files', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - client.beta.vectorStores.files.retrieve('vs_abc123', 'file-abc123', { + client.responses.retrieve('resp_677efb5139a88190b512bc3fef8e535d', { path: '/_stainless_unknown_path', }), ).rejects.toThrow(OpenAI.NotFoundError); }); - test('list', async () => { - const responsePromise = client.beta.vectorStores.files.list('vector_store_id'); - const rawResponse = await responsePromise.asResponse(); - expect(rawResponse).toBeInstanceOf(Response); - const response = await responsePromise; - expect(response).not.toBeInstanceOf(Response); - const dataAndResponse = await responsePromise.withResponse(); - expect(dataAndResponse.data).toBe(response); - expect(dataAndResponse.response).toBe(rawResponse); - }); - - test('list: request options instead of params are passed correctly', async () => { - // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect( - client.beta.vectorStores.files.list('vector_store_id', { path: '/_stainless_unknown_path' }), - ).rejects.toThrow(OpenAI.NotFoundError); - }); - - test('list: request options and params are passed correctly', async () => { + test('retrieve: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - client.beta.vectorStores.files.list( - 'vector_store_id', - { after: 'after', before: 'before', filter: 'in_progress', limit: 0, order: 'asc' }, + client.responses.retrieve( + 'resp_677efb5139a88190b512bc3fef8e535d', + { include: ['file_search_call.results'] }, { path: '/_stainless_unknown_path' }, ), ).rejects.toThrow(OpenAI.NotFoundError); }); test('del', async () => { - const responsePromise = client.beta.vectorStores.files.del('vector_store_id', 'file_id'); + const responsePromise = client.responses.del('resp_677efb5139a88190b512bc3fef8e535d'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -90,7 +96,7 @@ describe('resource files', () => { test('del: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - client.beta.vectorStores.files.del('vector_store_id', 'file_id', { path: '/_stainless_unknown_path' }), + client.responses.del('resp_677efb5139a88190b512bc3fef8e535d', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); }); diff --git a/tests/api-resources/beta/vector-stores/file-batches.test.ts b/tests/api-resources/vector-stores/file-batches.test.ts similarity index 81% rename from tests/api-resources/beta/vector-stores/file-batches.test.ts rename to tests/api-resources/vector-stores/file-batches.test.ts index b714049b4..c0447a838 100644 --- a/tests/api-resources/beta/vector-stores/file-batches.test.ts +++ b/tests/api-resources/vector-stores/file-batches.test.ts @@ -10,9 +10,7 @@ const client = new OpenAI({ describe('resource fileBatches', () => { test('create: only required params', async () => { - const responsePromise = client.beta.vectorStores.fileBatches.create('vs_abc123', { - file_ids: ['string'], - }); + const responsePromise = client.vectorStores.fileBatches.create('vs_abc123', { file_ids: ['string'] }); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -23,14 +21,15 @@ describe('resource fileBatches', () => { }); test('create: required and optional params', async () => { - const response = await client.beta.vectorStores.fileBatches.create('vs_abc123', { + const response = await client.vectorStores.fileBatches.create('vs_abc123', { file_ids: ['string'], + attributes: { foo: 'string' }, chunking_strategy: { type: 'auto' }, }); }); test('retrieve', async () => { - const responsePromise = client.beta.vectorStores.fileBatches.retrieve('vs_abc123', 'vsfb_abc123'); + const responsePromise = client.vectorStores.fileBatches.retrieve('vs_abc123', 'vsfb_abc123'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -43,14 +42,14 @@ describe('resource fileBatches', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - client.beta.vectorStores.fileBatches.retrieve('vs_abc123', 'vsfb_abc123', { + client.vectorStores.fileBatches.retrieve('vs_abc123', 'vsfb_abc123', { path: '/_stainless_unknown_path', }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('cancel', async () => { - const responsePromise = client.beta.vectorStores.fileBatches.cancel('vector_store_id', 'batch_id'); + const responsePromise = client.vectorStores.fileBatches.cancel('vector_store_id', 'batch_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -63,14 +62,14 @@ describe('resource fileBatches', () => { test('cancel: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - client.beta.vectorStores.fileBatches.cancel('vector_store_id', 'batch_id', { + client.vectorStores.fileBatches.cancel('vector_store_id', 'batch_id', { path: '/_stainless_unknown_path', }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('listFiles', async () => { - const responsePromise = client.beta.vectorStores.fileBatches.listFiles('vector_store_id', 'batch_id'); + const responsePromise = client.vectorStores.fileBatches.listFiles('vector_store_id', 'batch_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -83,7 +82,7 @@ describe('resource fileBatches', () => { test('listFiles: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - client.beta.vectorStores.fileBatches.listFiles('vector_store_id', 'batch_id', { + client.vectorStores.fileBatches.listFiles('vector_store_id', 'batch_id', { path: '/_stainless_unknown_path', }), ).rejects.toThrow(OpenAI.NotFoundError); @@ -92,7 +91,7 @@ describe('resource fileBatches', () => { test('listFiles: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - client.beta.vectorStores.fileBatches.listFiles( + client.vectorStores.fileBatches.listFiles( 'vector_store_id', 'batch_id', { after: 'after', before: 'before', filter: 'in_progress', limit: 0, order: 'asc' }, diff --git a/tests/api-resources/vector-stores/files.test.ts b/tests/api-resources/vector-stores/files.test.ts new file mode 100644 index 000000000..86a8f9bb4 --- /dev/null +++ b/tests/api-resources/vector-stores/files.test.ts @@ -0,0 +1,132 @@ +// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. + +import OpenAI from 'openai'; +import { Response } from 'node-fetch'; + +const client = new OpenAI({ + apiKey: 'My API Key', + baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010/', +}); + +describe('resource files', () => { + test('create: only required params', async () => { + const responsePromise = client.vectorStores.files.create('vs_abc123', { file_id: 'file_id' }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('create: required and optional params', async () => { + const response = await client.vectorStores.files.create('vs_abc123', { + file_id: 'file_id', + attributes: { foo: 'string' }, + chunking_strategy: { type: 'auto' }, + }); + }); + + test('retrieve', async () => { + const responsePromise = client.vectorStores.files.retrieve('vs_abc123', 'file-abc123'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('retrieve: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + client.vectorStores.files.retrieve('vs_abc123', 'file-abc123', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('update: only required params', async () => { + const responsePromise = client.vectorStores.files.update('vs_abc123', 'file-abc123', { + attributes: { foo: 'string' }, + }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('update: required and optional params', async () => { + const response = await client.vectorStores.files.update('vs_abc123', 'file-abc123', { + attributes: { foo: 'string' }, + }); + }); + + test('list', async () => { + const responsePromise = client.vectorStores.files.list('vector_store_id'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('list: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + client.vectorStores.files.list('vector_store_id', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('list: request options and params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + client.vectorStores.files.list( + 'vector_store_id', + { after: 'after', before: 'before', filter: 'in_progress', limit: 0, order: 'asc' }, + { path: '/_stainless_unknown_path' }, + ), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('del', async () => { + const responsePromise = client.vectorStores.files.del('vector_store_id', 'file_id'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('del: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + client.vectorStores.files.del('vector_store_id', 'file_id', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); + + test('content', async () => { + const responsePromise = client.vectorStores.files.content('vs_abc123', 'file-abc123'); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('content: request options instead of params are passed correctly', async () => { + // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error + await expect( + client.vectorStores.files.content('vs_abc123', 'file-abc123', { path: '/_stainless_unknown_path' }), + ).rejects.toThrow(OpenAI.NotFoundError); + }); +}); diff --git a/tests/api-resources/beta/vector-stores/vector-stores.test.ts b/tests/api-resources/vector-stores/vector-stores.test.ts similarity index 71% rename from tests/api-resources/beta/vector-stores/vector-stores.test.ts rename to tests/api-resources/vector-stores/vector-stores.test.ts index 806098de8..465904a00 100644 --- a/tests/api-resources/beta/vector-stores/vector-stores.test.ts +++ b/tests/api-resources/vector-stores/vector-stores.test.ts @@ -10,7 +10,7 @@ const client = new OpenAI({ describe('resource vectorStores', () => { test('create', async () => { - const responsePromise = client.beta.vectorStores.create({}); + const responsePromise = client.vectorStores.create({}); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -21,7 +21,7 @@ describe('resource vectorStores', () => { }); test('retrieve', async () => { - const responsePromise = client.beta.vectorStores.retrieve('vector_store_id'); + const responsePromise = client.vectorStores.retrieve('vector_store_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -34,12 +34,12 @@ describe('resource vectorStores', () => { test('retrieve: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - client.beta.vectorStores.retrieve('vector_store_id', { path: '/_stainless_unknown_path' }), + client.vectorStores.retrieve('vector_store_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); test('update', async () => { - const responsePromise = client.beta.vectorStores.update('vector_store_id', {}); + const responsePromise = client.vectorStores.update('vector_store_id', {}); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -50,7 +50,7 @@ describe('resource vectorStores', () => { }); test('list', async () => { - const responsePromise = client.beta.vectorStores.list(); + const responsePromise = client.vectorStores.list(); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -62,7 +62,7 @@ describe('resource vectorStores', () => { test('list: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error - await expect(client.beta.vectorStores.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( + await expect(client.vectorStores.list({ path: '/_stainless_unknown_path' })).rejects.toThrow( OpenAI.NotFoundError, ); }); @@ -70,7 +70,7 @@ describe('resource vectorStores', () => { test('list: request options and params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - client.beta.vectorStores.list( + client.vectorStores.list( { after: 'after', before: 'before', limit: 0, order: 'asc' }, { path: '/_stainless_unknown_path' }, ), @@ -78,7 +78,7 @@ describe('resource vectorStores', () => { }); test('del', async () => { - const responsePromise = client.beta.vectorStores.del('vector_store_id'); + const responsePromise = client.vectorStores.del('vector_store_id'); const rawResponse = await responsePromise.asResponse(); expect(rawResponse).toBeInstanceOf(Response); const response = await responsePromise; @@ -91,7 +91,28 @@ describe('resource vectorStores', () => { test('del: request options instead of params are passed correctly', async () => { // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error await expect( - client.beta.vectorStores.del('vector_store_id', { path: '/_stainless_unknown_path' }), + client.vectorStores.del('vector_store_id', { path: '/_stainless_unknown_path' }), ).rejects.toThrow(OpenAI.NotFoundError); }); + + test('search: only required params', async () => { + const responsePromise = client.vectorStores.search('vs_abc123', { query: 'string' }); + const rawResponse = await responsePromise.asResponse(); + expect(rawResponse).toBeInstanceOf(Response); + const response = await responsePromise; + expect(response).not.toBeInstanceOf(Response); + const dataAndResponse = await responsePromise.withResponse(); + expect(dataAndResponse.data).toBe(response); + expect(dataAndResponse.response).toBe(rawResponse); + }); + + test('search: required and optional params', async () => { + const response = await client.vectorStores.search('vs_abc123', { + query: 'string', + filters: { key: 'key', type: 'eq', value: 'string' }, + max_num_results: 1, + ranking_options: { ranker: 'auto', score_threshold: 0 }, + rewrite_query: true, + }); + }); }); From b0930694021fb07c03782387cf3ba9d8df6fb975 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 11 Mar 2025 16:32:03 +0000 Subject: [PATCH 724/725] release: 4.87.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ jsr.json | 2 +- package.json | 2 +- src/version.ts | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a889d24b4..e8984a56c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.86.2" + ".": "4.87.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 38d54fdc1..2ec7edb2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.87.0 (2025-03-11) + +Full Changelog: [v4.86.2...v4.87.0](https://github.com/openai/openai-node/compare/v4.86.2...v4.87.0) + +### Features + +* **api:** add /v1/responses and built-in tools ([119b584](https://github.com/openai/openai-node/commit/119b5843a18b8014167c8d2031d75c08dbf400a3)) + ## 4.86.2 (2025-03-05) Full Changelog: [v4.86.1...v4.86.2](https://github.com/openai/openai-node/compare/v4.86.1...v4.86.2) diff --git a/jsr.json b/jsr.json index 1c0948aaa..4ac1601e7 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@openai/openai", - "version": "4.86.2", + "version": "4.87.0", "exports": { ".": "./index.ts", "./helpers/zod": "./helpers/zod.ts", diff --git a/package.json b/package.json index 78afb8946..7cf4a385d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.86.2", + "version": "4.87.0", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index c43a3c320..2b1fd6541 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.86.2'; // x-release-please-version +export const VERSION = '4.87.0'; // x-release-please-version From 2a2f5d40c4518f88add6c94507936777fa6692c2 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Tue, 11 Mar 2025 12:42:29 -0400 Subject: [PATCH 725/725] fix: correct chat completions import --- src/lib/ResponsesParser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/ResponsesParser.ts b/src/lib/ResponsesParser.ts index 780b779ff..8d762d5bb 100644 --- a/src/lib/ResponsesParser.ts +++ b/src/lib/ResponsesParser.ts @@ -1,5 +1,5 @@ import { OpenAIError } from '../error'; -import { type ChatCompletionTool } from '../resources'; +import type { ChatCompletionTool } from '../resources/chat/completions'; import { type FunctionTool, type ParsedContent,